diff --git a/.env.example b/.env.example index 43551374b..341b790f1 100644 --- a/.env.example +++ b/.env.example @@ -3,6 +3,7 @@ APP_ENV=local APP_KEY= APP_DEBUG=true APP_URL=http://localhost +VITE_APP_NAME="${APP_NAME}" OWNER_COMPANY_ID=1 diff --git a/.gitignore b/.gitignore index f42c292e2..fd8cd57c2 100644 --- a/.gitignore +++ b/.gitignore @@ -24,6 +24,7 @@ Homestead.yaml .php_cs.cache npm-debug.log yarn-error.log +.phpunit.cache # code editors /.idea diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index bddc0ad92..96263d404 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -12,7 +12,7 @@ class Kernel extends ConsoleKernel private Schedule $schedule; - protected function schedule(Schedule $schedule) + protected function schedule(Schedule $schedule): void { if (App::runningUnitTests()) { return; @@ -28,7 +28,7 @@ protected function schedule(Schedule $schedule) } } - protected function commands() + protected function commands(): void { $this->load(__DIR__.'/Commands'); diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php index 03f49f3d5..5bc482b88 100644 --- a/app/Exceptions/Handler.php +++ b/app/Exceptions/Handler.php @@ -20,17 +20,10 @@ class Handler extends ExceptionHandler public function report(Throwable $exception) { - if (App::bound('sentry') && $this->shouldReport($exception)) { - Sentry::report($exception); - } + // if (App::bound('sentry') && $this->shouldReport($exception)) { + // Sentry::report($exception); + // } parent::report($exception); } - - // public function register() - // { - // $this->reportable(function (Throwable $e) { - // - // }); - // } } diff --git a/app/Http/Kernel.php b/app/Http/Kernel.php index 0021d62fc..243a39c3a 100644 --- a/app/Http/Kernel.php +++ b/app/Http/Kernel.php @@ -32,11 +32,11 @@ class Kernel extends HttpKernel 'api' => [ \LaravelEnso\Core\Http\Middleware\EnsureFrontendRequestsAreStateful::class, \Illuminate\Routing\Middleware\SubstituteBindings::class, - 'throttle:api', + \Illuminate\Routing\Middleware\ThrottleRequests::class.':api', ], ]; - protected $routeMiddleware = [ + protected $middlewareAliases = [ 'auth' => \App\Http\Middleware\Authenticate::class, 'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class, 'bindings' => \Illuminate\Routing\Middleware\SubstituteBindings::class, @@ -44,6 +44,7 @@ class Kernel extends HttpKernel 'can' => \Illuminate\Auth\Middleware\Authorize::class, 'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class, 'password.confirm' => \Illuminate\Auth\Middleware\RequirePassword::class, + 'precognitive' => \Illuminate\Foundation\Http\Middleware\HandlePrecognitiveRequests::class, 'signed' => \Illuminate\Routing\Middleware\ValidateSignature::class, 'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class, 'verified' => \Illuminate\Auth\Middleware\EnsureEmailIsVerified::class, diff --git a/app/Http/Middleware/Authenticate.php b/app/Http/Middleware/Authenticate.php index eb627a4bd..c44a5f298 100644 --- a/app/Http/Middleware/Authenticate.php +++ b/app/Http/Middleware/Authenticate.php @@ -3,11 +3,12 @@ namespace App\Http\Middleware; use Illuminate\Auth\Middleware\Authenticate as Middleware; +use Illuminate\Http\Request; class Authenticate extends Middleware { - protected function redirectTo($request) + protected function redirectTo(Request $request): ?string { - return route('login'); + return $request->expectsJson() ? null : route('login'); } } diff --git a/app/Http/Middleware/RedirectIfAuthenticated.php b/app/Http/Middleware/RedirectIfAuthenticated.php index a73dacef4..39e8f46e4 100644 --- a/app/Http/Middleware/RedirectIfAuthenticated.php +++ b/app/Http/Middleware/RedirectIfAuthenticated.php @@ -6,10 +6,11 @@ use Closure; use Illuminate\Http\Request; use Illuminate\Support\Facades\Auth; +use Symfony\Component\HttpFoundation\Response; class RedirectIfAuthenticated { - public function handle(Request $request, Closure $next, ...$guards) + public function handle(Request $request, Closure $next, string ...$guards): Response { $guards = empty($guards) ? [null] : $guards; diff --git a/app/Http/Middleware/TrustHosts.php b/app/Http/Middleware/TrustHosts.php index 963906460..c897d9c89 100644 --- a/app/Http/Middleware/TrustHosts.php +++ b/app/Http/Middleware/TrustHosts.php @@ -6,7 +6,7 @@ class TrustHosts extends Middleware { - public function hosts() + public function hosts(): array { return [ $this->allSubdomainsOfApplicationUrl(), diff --git a/app/Providers/AuthServiceProvider.php b/app/Providers/AuthServiceProvider.php index 74c6c6fe8..1a39b04ba 100644 --- a/app/Providers/AuthServiceProvider.php +++ b/app/Providers/AuthServiceProvider.php @@ -7,9 +7,4 @@ class AuthServiceProvider extends ServiceProvider { protected $policies = []; - - public function boot() - { - $this->registerPolicies(); - } } diff --git a/app/Providers/RouteServiceProvider.php b/app/Providers/RouteServiceProvider.php index 65be4ac5b..ad9ca3331 100644 --- a/app/Providers/RouteServiceProvider.php +++ b/app/Providers/RouteServiceProvider.php @@ -12,7 +12,7 @@ class RouteServiceProvider extends ServiceProvider { public const HOME = '/'; - public function boot() + public function boot(): void { $this->configureRateLimiting(); diff --git a/app/Upgrades/PasswordResetTokens.php b/app/Upgrades/PasswordResetTokens.php new file mode 100644 index 000000000..9e198a679 --- /dev/null +++ b/app/Upgrades/PasswordResetTokens.php @@ -0,0 +1,31 @@ +whereMigration('2014_10_12_100000_create_password_resets_table') + ->update([ + 'migration' => '2014_10_12_100000_create_password_reset_tokens_table', + ]); + } +} diff --git a/app/Upgrades/SancumV3.php b/app/Upgrades/SancumV3.php new file mode 100644 index 000000000..713d80230 --- /dev/null +++ b/app/Upgrades/SancumV3.php @@ -0,0 +1,22 @@ +timestamp('expires_at')->nullable()->after('last_used_at'); + }); + } +} diff --git a/composer.json b/composer.json index e2dba29fa..61222b1f6 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "laravel-enso/enso", "type": "project", - "description": "Laravel Enso can be a solid start for any SPA based on Laravel 7.x, Vue and Bulma", + "description": "Laravel Enso can be a solid start for any SPA based on Laravel 10.x, Vue and Bulma", "keywords": [ "framework", "laravel" @@ -37,20 +37,24 @@ "require-dev": { "fakerphp/faker": "^1.9.1", "barryvdh/laravel-debugbar": "^3.5", - "brianium/paratest": "^6.3", + "brianium/paratest": "^7.4", "filp/whoops": "^2.1.0", "laravel-enso/cli": "^5.0", - "laravel-enso/phpunit-pretty-print": "^1.0", + "laravel-enso/phpunit-pretty-print": "^1.2", "mockery/mockery": "^1.4.4", - "nunomaduro/collision": "^6.1", + "nunomaduro/collision": "^7.0", "nunomaduro/phpinsights": "dev-master", - "phpunit/phpunit": "^9.5.10", + "phpunit/phpunit": "^10.0", "spatie/laravel-ignition": "^2.0" }, "config": { "optimize-autoloader": true, "preferred-install": "dist", - "sort-packages": true + "sort-packages": true, + "allow-plugins": { + "php-http/discovery": true, + "dealerdirect/phpcodesniffer-composer-installer": true + } }, "extra": { "laravel": { @@ -72,7 +76,7 @@ "LaravelEnso\\Tables\\Tests\\": "vendor/laravel-enso/tables/tests/" } }, - "minimum-stability": "dev", + "minimum-stability": "stable", "prefer-stable": true, "scripts": { "post-autoload-dump": [ @@ -93,4 +97,4 @@ "php artisan enso:upgrade:status" ] } -} +} \ No newline at end of file diff --git a/composer.lock b/composer.lock index 51d6a4693..15f9f43aa 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "a3882c12812af40dcb1801d71b17a5bc", + "content-hash": "9d30e87aa6ab0efbeab9ef1ac5484c7c", "packages": [ { "name": "barryvdh/laravel-snappy", @@ -704,16 +704,16 @@ }, { "name": "doctrine/inflector", - "version": "2.0.9", + "version": "2.0.10", "source": { "type": "git", "url": "https://github.com/doctrine/inflector.git", - "reference": "2930cd5ef353871c821d5c43ed030d39ac8cfe65" + "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/inflector/zipball/2930cd5ef353871c821d5c43ed030d39ac8cfe65", - "reference": "2930cd5ef353871c821d5c43ed030d39ac8cfe65", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc", + "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc", "shasum": "" }, "require": { @@ -775,7 +775,7 @@ ], "support": { "issues": "https://github.com/doctrine/inflector/issues", - "source": "https://github.com/doctrine/inflector/tree/2.0.9" + "source": "https://github.com/doctrine/inflector/tree/2.0.10" }, "funding": [ { @@ -791,7 +791,7 @@ "type": "tidelift" } ], - "time": "2024-01-15T18:05:13+00:00" + "time": "2024-02-18T20:23:39+00:00" }, { "name": "doctrine/lexer", @@ -2142,16 +2142,16 @@ }, { "name": "laravel-enso/calendar", - "version": "3.1.0", + "version": "3.1.2", "source": { "type": "git", "url": "https://github.com/laravel-enso/calendar.git", - "reference": "2de2ca23b6b2de1221883c09e15fadd71ce144a3" + "reference": "ab05f04be0540d26b4935cb60bd002af6148d178" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/calendar/zipball/2de2ca23b6b2de1221883c09e15fadd71ce144a3", - "reference": "2de2ca23b6b2de1221883c09e15fadd71ce144a3", + "url": "https://api.github.com/repos/laravel-enso/calendar/zipball/ab05f04be0540d26b4935cb60bd002af6148d178", + "reference": "ab05f04be0540d26b4935cb60bd002af6148d178", "shasum": "" }, "require": { @@ -2216,9 +2216,9 @@ ], "support": { "issues": "https://github.com/laravel-enso/calendar/issues", - "source": "https://github.com/laravel-enso/calendar/tree/3.1.0" + "source": "https://github.com/laravel-enso/calendar/tree/3.1.2" }, - "time": "2024-01-17T07:25:04+00:00" + "time": "2024-02-22T12:39:20+00:00" }, { "name": "laravel-enso/charts", @@ -5067,16 +5067,16 @@ }, { "name": "laravel/framework", - "version": "v10.44.0", + "version": "v10.45.1", "source": { "type": "git", "url": "https://github.com/laravel/framework.git", - "reference": "1199dbe361787bbe9648131a79f53921b4148cf6" + "reference": "dcf5d1d722b84ad38a5e053289130b6962f830bd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/framework/zipball/1199dbe361787bbe9648131a79f53921b4148cf6", - "reference": "1199dbe361787bbe9648131a79f53921b4148cf6", + "url": "https://api.github.com/repos/laravel/framework/zipball/dcf5d1d722b84ad38a5e053289130b6962f830bd", + "reference": "dcf5d1d722b84ad38a5e053289130b6962f830bd", "shasum": "" }, "require": { @@ -5269,20 +5269,20 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2024-02-13T16:01:16+00:00" + "time": "2024-02-21T14:07:36+00:00" }, { "name": "laravel/horizon", - "version": "v5.23.0", + "version": "v5.23.1", "source": { "type": "git", "url": "https://github.com/laravel/horizon.git", - "reference": "0b1bf46b21c397fdbe80b1ab54451fd227934508" + "reference": "7475de7eb5b465c2da84218002fe1a62b8175da0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/horizon/zipball/0b1bf46b21c397fdbe80b1ab54451fd227934508", - "reference": "0b1bf46b21c397fdbe80b1ab54451fd227934508", + "url": "https://api.github.com/repos/laravel/horizon/zipball/7475de7eb5b465c2da84218002fe1a62b8175da0", + "reference": "7475de7eb5b465c2da84218002fe1a62b8175da0", "shasum": "" }, "require": { @@ -5345,9 +5345,9 @@ ], "support": { "issues": "https://github.com/laravel/horizon/issues", - "source": "https://github.com/laravel/horizon/tree/v5.23.0" + "source": "https://github.com/laravel/horizon/tree/v5.23.1" }, - "time": "2024-02-12T18:36:34+00:00" + "time": "2024-02-20T15:14:10+00:00" }, { "name": "laravel/prompts", @@ -6629,16 +6629,16 @@ }, { "name": "nikic/php-parser", - "version": "v5.0.0", + "version": "v5.0.1", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "4a21235f7e56e713259a6f76bf4b5ea08502b9dc" + "reference": "2218c2252c874a4624ab2f613d86ac32d227bc69" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4a21235f7e56e713259a6f76bf4b5ea08502b9dc", - "reference": "4a21235f7e56e713259a6f76bf4b5ea08502b9dc", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/2218c2252c874a4624ab2f613d86ac32d227bc69", + "reference": "2218c2252c874a4624ab2f613d86ac32d227bc69", "shasum": "" }, "require": { @@ -6681,9 +6681,9 @@ ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v5.0.0" + "source": "https://github.com/nikic/PHP-Parser/tree/v5.0.1" }, - "time": "2024-01-07T17:17:35+00:00" + "time": "2024-02-21T19:24:10+00:00" }, { "name": "nunomaduro/termwind", @@ -8283,20 +8283,20 @@ }, { "name": "symfony/css-selector", - "version": "v6.4.3", + "version": "v7.0.3", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", - "reference": "ee0f7ed5cf298cc019431bb3b3977ebc52b86229" + "reference": "ec60a4edf94e63b0556b6a0888548bb400a3a3be" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/ee0f7ed5cf298cc019431bb3b3977ebc52b86229", - "reference": "ee0f7ed5cf298cc019431bb3b3977ebc52b86229", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/ec60a4edf94e63b0556b6a0888548bb400a3a3be", + "reference": "ec60a4edf94e63b0556b6a0888548bb400a3a3be", "shasum": "" }, "require": { - "php": ">=8.1" + "php": ">=8.2" }, "type": "library", "autoload": { @@ -8328,7 +8328,7 @@ "description": "Converts CSS selectors to XPath expressions", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/css-selector/tree/v6.4.3" + "source": "https://github.com/symfony/css-selector/tree/v7.0.3" }, "funding": [ { @@ -8344,7 +8344,7 @@ "type": "tidelift" } ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2024-01-23T15:02:46+00:00" }, { "name": "symfony/deprecation-contracts", @@ -8490,24 +8490,24 @@ }, { "name": "symfony/event-dispatcher", - "version": "v6.4.3", + "version": "v7.0.3", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "ae9d3a6f3003a6caf56acd7466d8d52378d44fef" + "reference": "834c28d533dd0636f910909d01b9ff45cc094b5e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/ae9d3a6f3003a6caf56acd7466d8d52378d44fef", - "reference": "ae9d3a6f3003a6caf56acd7466d8d52378d44fef", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/834c28d533dd0636f910909d01b9ff45cc094b5e", + "reference": "834c28d533dd0636f910909d01b9ff45cc094b5e", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "symfony/event-dispatcher-contracts": "^2.5|^3" }, "conflict": { - "symfony/dependency-injection": "<5.4", + "symfony/dependency-injection": "<6.4", "symfony/service-contracts": "<2.5" }, "provide": { @@ -8516,13 +8516,13 @@ }, "require-dev": { "psr/log": "^1|^2|^3", - "symfony/config": "^5.4|^6.0|^7.0", - "symfony/dependency-injection": "^5.4|^6.0|^7.0", - "symfony/error-handler": "^5.4|^6.0|^7.0", - "symfony/expression-language": "^5.4|^6.0|^7.0", - "symfony/http-foundation": "^5.4|^6.0|^7.0", + "symfony/config": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/error-handler": "^6.4|^7.0", + "symfony/expression-language": "^6.4|^7.0", + "symfony/http-foundation": "^6.4|^7.0", "symfony/service-contracts": "^2.5|^3", - "symfony/stopwatch": "^5.4|^6.0|^7.0" + "symfony/stopwatch": "^6.4|^7.0" }, "type": "library", "autoload": { @@ -8550,7 +8550,7 @@ "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/v6.4.3" + "source": "https://github.com/symfony/event-dispatcher/tree/v7.0.3" }, "funding": [ { @@ -8566,7 +8566,7 @@ "type": "tidelift" } ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2024-01-23T15:02:46+00:00" }, { "name": "symfony/event-dispatcher-contracts", @@ -9304,20 +9304,20 @@ }, { "name": "symfony/options-resolver", - "version": "v6.4.0", + "version": "v7.0.0", "source": { "type": "git", "url": "https://github.com/symfony/options-resolver.git", - "reference": "22301f0e7fdeaacc14318928612dee79be99860e" + "reference": "700ff4096e346f54cb628ea650767c8130f1001f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/options-resolver/zipball/22301f0e7fdeaacc14318928612dee79be99860e", - "reference": "22301f0e7fdeaacc14318928612dee79be99860e", + "url": "https://api.github.com/repos/symfony/options-resolver/zipball/700ff4096e346f54cb628ea650767c8130f1001f", + "reference": "700ff4096e346f54cb628ea650767c8130f1001f", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "symfony/deprecation-contracts": "^2.5|^3" }, "type": "library", @@ -9351,7 +9351,7 @@ "options" ], "support": { - "source": "https://github.com/symfony/options-resolver/tree/v6.4.0" + "source": "https://github.com/symfony/options-resolver/tree/v7.0.0" }, "funding": [ { @@ -9367,7 +9367,7 @@ "type": "tidelift" } ], - "time": "2023-08-08T10:16:24+00:00" + "time": "2023-08-08T10:20:21+00:00" }, { "name": "symfony/polyfill-ctype", @@ -10223,36 +10223,36 @@ }, { "name": "symfony/psr-http-message-bridge", - "version": "v6.4.3", + "version": "v7.0.3", "source": { "type": "git", "url": "https://github.com/symfony/psr-http-message-bridge.git", - "reference": "49cfb0223ec64379f7154214dcc1f7c46f3c7a47" + "reference": "d9fadaf9541d7c01c307e48905d7ce1dbee6bf38" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/49cfb0223ec64379f7154214dcc1f7c46f3c7a47", - "reference": "49cfb0223ec64379f7154214dcc1f7c46f3c7a47", + "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/d9fadaf9541d7c01c307e48905d7ce1dbee6bf38", + "reference": "d9fadaf9541d7c01c307e48905d7ce1dbee6bf38", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "psr/http-message": "^1.0|^2.0", - "symfony/http-foundation": "^5.4|^6.0|^7.0" + "symfony/http-foundation": "^6.4|^7.0" }, "conflict": { "php-http/discovery": "<1.15", - "symfony/http-kernel": "<6.2" + "symfony/http-kernel": "<6.4" }, "require-dev": { "nyholm/psr7": "^1.1", "php-http/discovery": "^1.15", "psr/log": "^1.1.4|^2|^3", - "symfony/browser-kit": "^5.4|^6.0|^7.0", - "symfony/config": "^5.4|^6.0|^7.0", - "symfony/event-dispatcher": "^5.4|^6.0|^7.0", - "symfony/framework-bundle": "^6.2|^7.0", - "symfony/http-kernel": "^6.2|^7.0" + "symfony/browser-kit": "^6.4|^7.0", + "symfony/config": "^6.4|^7.0", + "symfony/event-dispatcher": "^6.4|^7.0", + "symfony/framework-bundle": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0" }, "type": "symfony-bridge", "autoload": { @@ -10286,7 +10286,7 @@ "psr-7" ], "support": { - "source": "https://github.com/symfony/psr-http-message-bridge/tree/v6.4.3" + "source": "https://github.com/symfony/psr-http-message-bridge/tree/v7.0.3" }, "funding": [ { @@ -10302,7 +10302,7 @@ "type": "tidelift" } ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2024-01-23T15:02:46+00:00" }, { "name": "symfony/routing", @@ -10471,20 +10471,20 @@ }, { "name": "symfony/string", - "version": "v6.4.3", + "version": "v7.0.3", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "7a14736fb179876575464e4658fce0c304e8c15b" + "reference": "524aac4a280b90a4420d8d6a040718d0586505ac" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/7a14736fb179876575464e4658fce0c304e8c15b", - "reference": "7a14736fb179876575464e4658fce0c304e8c15b", + "url": "https://api.github.com/repos/symfony/string/zipball/524aac4a280b90a4420d8d6a040718d0586505ac", + "reference": "524aac4a280b90a4420d8d6a040718d0586505ac", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "symfony/polyfill-ctype": "~1.8", "symfony/polyfill-intl-grapheme": "~1.0", "symfony/polyfill-intl-normalizer": "~1.0", @@ -10494,11 +10494,11 @@ "symfony/translation-contracts": "<2.5" }, "require-dev": { - "symfony/error-handler": "^5.4|^6.0|^7.0", - "symfony/http-client": "^5.4|^6.0|^7.0", - "symfony/intl": "^6.2|^7.0", + "symfony/error-handler": "^6.4|^7.0", + "symfony/http-client": "^6.4|^7.0", + "symfony/intl": "^6.4|^7.0", "symfony/translation-contracts": "^2.5|^3.0", - "symfony/var-exporter": "^5.4|^6.0|^7.0" + "symfony/var-exporter": "^6.4|^7.0" }, "type": "library", "autoload": { @@ -10537,7 +10537,7 @@ "utf8" ], "support": { - "source": "https://github.com/symfony/string/tree/v6.4.3" + "source": "https://github.com/symfony/string/tree/v7.0.3" }, "funding": [ { @@ -10553,7 +10553,7 @@ "type": "tidelift" } ], - "time": "2024-01-25T09:26:29+00:00" + "time": "2024-01-29T15:41:16+00:00" }, { "name": "symfony/translation", @@ -11430,16 +11430,16 @@ }, { "name": "brianium/paratest", - "version": "v6.11.0", + "version": "v7.4.3", "source": { "type": "git", "url": "https://github.com/paratestphp/paratest.git", - "reference": "8083a421cee7dad847ee7c464529043ba30de380" + "reference": "64fcfd0e28a6b8078a19dbf9127be2ee645b92ec" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/paratestphp/paratest/zipball/8083a421cee7dad847ee7c464529043ba30de380", - "reference": "8083a421cee7dad847ee7c464529043ba30de380", + "url": "https://api.github.com/repos/paratestphp/paratest/zipball/64fcfd0e28a6b8078a19dbf9127be2ee645b92ec", + "reference": "64fcfd0e28a6b8078a19dbf9127be2ee645b92ec", "shasum": "" }, "require": { @@ -11447,25 +11447,27 @@ "ext-pcre": "*", "ext-reflection": "*", "ext-simplexml": "*", - "fidry/cpu-core-counter": "^0.4.1 || ^0.5.1 || ^1.0.0", + "fidry/cpu-core-counter": "^1.1.0", "jean85/pretty-package-versions": "^2.0.5", - "php": "^7.3 || ^8.0", - "phpunit/php-code-coverage": "^9.2.25", - "phpunit/php-file-iterator": "^3.0.6", - "phpunit/php-timer": "^5.0.3", - "phpunit/phpunit": "^9.6.4", - "sebastian/environment": "^5.1.5", - "symfony/console": "^5.4.28 || ^6.3.4 || ^7.0.0", - "symfony/process": "^5.4.28 || ^6.3.4 || ^7.0.0" + "php": "~8.2.0 || ~8.3.0", + "phpunit/php-code-coverage": "^10.1.11 || ^11.0.0", + "phpunit/php-file-iterator": "^4.1.0 || ^5.0.0", + "phpunit/php-timer": "^6.0.0 || ^7.0.0", + "phpunit/phpunit": "^10.5.9 || ^11.0.3", + "sebastian/environment": "^6.0.1 || ^7.0.0", + "symfony/console": "^6.4.3 || ^7.0.3", + "symfony/process": "^6.4.3 || ^7.0.3" }, "require-dev": { "doctrine/coding-standard": "^12.0.0", "ext-pcov": "*", "ext-posix": "*", - "infection/infection": "^0.27.6", - "squizlabs/php_codesniffer": "^3.7.2", - "symfony/filesystem": "^5.4.25 || ^6.3.1 || ^7.0.0", - "vimeo/psalm": "^5.7.7" + "phpstan/phpstan": "^1.10.58", + "phpstan/phpstan-deprecation-rules": "^1.1.4", + "phpstan/phpstan-phpunit": "^1.3.15", + "phpstan/phpstan-strict-rules": "^1.5.2", + "squizlabs/php_codesniffer": "^3.9.0", + "symfony/filesystem": "^6.4.3 || ^7.0.3" }, "bin": [ "bin/paratest", @@ -11506,7 +11508,7 @@ ], "support": { "issues": "https://github.com/paratestphp/paratest/issues", - "source": "https://github.com/paratestphp/paratest/tree/v6.11.0" + "source": "https://github.com/paratestphp/paratest/tree/v7.4.3" }, "funding": [ { @@ -11518,7 +11520,7 @@ "type": "paypal" } ], - "time": "2023-10-31T09:13:57+00:00" + "time": "2024-02-20T07:24:02+00:00" }, { "name": "cmgmyr/phploc", @@ -11881,76 +11883,6 @@ }, "time": "2023-01-05T11:28:13+00:00" }, - { - "name": "doctrine/instantiator", - "version": "2.0.0", - "source": { - "type": "git", - "url": "https://github.com/doctrine/instantiator.git", - "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0", - "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0", - "shasum": "" - }, - "require": { - "php": "^8.1" - }, - "require-dev": { - "doctrine/coding-standard": "^11", - "ext-pdo": "*", - "ext-phar": "*", - "phpbench/phpbench": "^1.2", - "phpstan/phpstan": "^1.9.4", - "phpstan/phpstan-phpunit": "^1.3", - "phpunit/phpunit": "^9.5.27", - "vimeo/psalm": "^5.4" - }, - "type": "library", - "autoload": { - "psr-4": { - "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Marco Pivetta", - "email": "ocramius@gmail.com", - "homepage": "https://ocramius.github.io/" - } - ], - "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", - "homepage": "https://www.doctrine-project.org/projects/instantiator.html", - "keywords": [ - "constructor", - "instantiate" - ], - "support": { - "issues": "https://github.com/doctrine/instantiator/issues", - "source": "https://github.com/doctrine/instantiator/tree/2.0.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%2Finstantiator", - "type": "tidelift" - } - ], - "time": "2022-12-30T00:23:10+00:00" - }, { "name": "fakerphp/faker", "version": "v1.23.1", @@ -12148,16 +12080,16 @@ }, { "name": "friendsofphp/php-cs-fixer", - "version": "v3.49.0", + "version": "v3.50.0", "source": { "type": "git", "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git", - "reference": "8742f7aa6f72a399688b65e4f58992c2d4681fc2" + "reference": "dbea11dcb6d9a1f6c8d51c0e580ab4a8876f524c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/8742f7aa6f72a399688b65e4f58992c2d4681fc2", - "reference": "8742f7aa6f72a399688b65e4f58992c2d4681fc2", + "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/dbea11dcb6d9a1f6c8d51c0e580ab4a8876f524c", + "reference": "dbea11dcb6d9a1f6c8d51c0e580ab4a8876f524c", "shasum": "" }, "require": { @@ -12167,7 +12099,7 @@ "ext-json": "*", "ext-tokenizer": "*", "php": "^7.4 || ^8.0", - "sebastian/diff": "^4.0 || ^5.0", + "sebastian/diff": "^4.0 || ^5.0 || ^6.0", "symfony/console": "^5.4 || ^6.0 || ^7.0", "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0", "symfony/filesystem": "^5.4 || ^6.0 || ^7.0", @@ -12188,7 +12120,8 @@ "php-cs-fixer/accessible-object": "^1.1", "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.4", "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.4", - "phpunit/phpunit": "^9.6 || ^10.5.5", + "phpunit/phpunit": "^9.6 || ^10.5.5 || ^11.0.2", + "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0", "symfony/yaml": "^5.4 || ^6.0 || ^7.0" }, "suggest": { @@ -12227,7 +12160,7 @@ ], "support": { "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues", - "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.49.0" + "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.50.0" }, "funding": [ { @@ -12235,7 +12168,7 @@ "type": "github" } ], - "time": "2024-02-02T00:41:40+00:00" + "time": "2024-02-23T23:17:45+00:00" }, { "name": "hamcrest/hamcrest-php", @@ -12419,59 +12352,6 @@ }, "time": "2024-01-17T12:29:04+00:00" }, - { - "name": "laravel-enso/phpunit-pretty-print", - "version": "1.2.0", - "source": { - "type": "git", - "url": "https://github.com/laravel-enso/phpunit-pretty-print.git", - "reference": "3a7fff5765275f010b0305c910e66afa3373a260" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/phpunit-pretty-print/zipball/3a7fff5765275f010b0305c910e66afa3373a260", - "reference": "3a7fff5765275f010b0305c910e66afa3373a260", - "shasum": "" - }, - "require": { - "laravel/framework": "^10.0", - "php": "^8.0", - "phpunit/phpunit": "^9.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "LaravelEnso\\PHPUnitPrettyPrint\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Adrian Ocneanu", - "email": "aocneanu@gmail.com", - "homepage": "https://laravel-enso.com", - "role": "Developer" - } - ], - "description": "PHPUnit Pretty Print for Laravel", - "homepage": "https://github.com/laravel-enso/PHPUnitPrettyPrint", - "keywords": [ - "laravel", - "laravel-enso", - "phpunit", - "phpunit-pretty-print", - "pretty-print", - "validator" - ], - "support": { - "issues": "https://github.com/laravel-enso/phpunit-pretty-print/issues", - "source": "https://github.com/laravel-enso/phpunit-pretty-print/tree/1.2.0" - }, - "time": "2024-01-31T13:27:44+00:00" - }, { "name": "league/container", "version": "4.2.0", @@ -12764,38 +12644,43 @@ }, { "name": "nunomaduro/collision", - "version": "v6.4.0", + "version": "v7.10.0", "source": { "type": "git", "url": "https://github.com/nunomaduro/collision.git", - "reference": "f05978827b9343cba381ca05b8c7deee346b6015" + "reference": "49ec67fa7b002712da8526678abd651c09f375b2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f05978827b9343cba381ca05b8c7deee346b6015", - "reference": "f05978827b9343cba381ca05b8c7deee346b6015", + "url": "https://api.github.com/repos/nunomaduro/collision/zipball/49ec67fa7b002712da8526678abd651c09f375b2", + "reference": "49ec67fa7b002712da8526678abd651c09f375b2", "shasum": "" }, "require": { - "filp/whoops": "^2.14.5", - "php": "^8.0.0", - "symfony/console": "^6.0.2" + "filp/whoops": "^2.15.3", + "nunomaduro/termwind": "^1.15.1", + "php": "^8.1.0", + "symfony/console": "^6.3.4" + }, + "conflict": { + "laravel/framework": ">=11.0.0" }, "require-dev": { - "brianium/paratest": "^6.4.1", - "laravel/framework": "^9.26.1", - "laravel/pint": "^1.1.1", - "nunomaduro/larastan": "^1.0.3", - "nunomaduro/mock-final-classes": "^1.1.0", - "orchestra/testbench": "^7.7", - "phpunit/phpunit": "^9.5.23", - "spatie/ignition": "^1.4.1" + "brianium/paratest": "^7.3.0", + "laravel/framework": "^10.28.0", + "laravel/pint": "^1.13.3", + "laravel/sail": "^1.25.0", + "laravel/sanctum": "^3.3.1", + "laravel/tinker": "^2.8.2", + "nunomaduro/larastan": "^2.6.4", + "orchestra/testbench-core": "^8.13.0", + "pestphp/pest": "^2.23.2", + "phpunit/phpunit": "^10.4.1", + "sebastian/environment": "^6.0.1", + "spatie/laravel-ignition": "^2.3.1" }, "type": "library", "extra": { - "branch-alias": { - "dev-develop": "6.x-dev" - }, "laravel": { "providers": [ "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider" @@ -12803,6 +12688,9 @@ } }, "autoload": { + "files": [ + "./src/Adapters/Phpunit/Autoload.php" + ], "psr-4": { "NunoMaduro\\Collision\\": "src/" } @@ -12848,7 +12736,7 @@ "type": "patreon" } ], - "time": "2023-01-03T12:54:54+00:00" + "time": "2023-10-11T15:45:01+00:00" }, { "name": "nunomaduro/phpinsights", @@ -13127,16 +13015,16 @@ }, { "name": "phpstan/phpdoc-parser", - "version": "1.25.0", + "version": "1.26.0", "source": { "type": "git", "url": "https://github.com/phpstan/phpdoc-parser.git", - "reference": "bd84b629c8de41aa2ae82c067c955e06f1b00240" + "reference": "231e3186624c03d7e7c890ec662b81e6b0405227" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/bd84b629c8de41aa2ae82c067c955e06f1b00240", - "reference": "bd84b629c8de41aa2ae82c067c955e06f1b00240", + "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/231e3186624c03d7e7c890ec662b81e6b0405227", + "reference": "231e3186624c03d7e7c890ec662b81e6b0405227", "shasum": "" }, "require": { @@ -13168,22 +13056,22 @@ "description": "PHPDoc parser with support for nullable, intersection and generic types", "support": { "issues": "https://github.com/phpstan/phpdoc-parser/issues", - "source": "https://github.com/phpstan/phpdoc-parser/tree/1.25.0" + "source": "https://github.com/phpstan/phpdoc-parser/tree/1.26.0" }, - "time": "2024-01-04T17:06:16+00:00" + "time": "2024-02-23T16:05:55+00:00" }, { "name": "phpunit/php-code-coverage", - "version": "9.2.30", + "version": "10.1.11", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089" + "reference": "78c3b7625965c2513ee96569a4dbb62601784145" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ca2bd87d2f9215904682a9cb9bb37dda98e76089", - "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/78c3b7625965c2513ee96569a4dbb62601784145", + "reference": "78c3b7625965c2513ee96569a4dbb62601784145", "shasum": "" }, "require": { @@ -13191,18 +13079,18 @@ "ext-libxml": "*", "ext-xmlwriter": "*", "nikic/php-parser": "^4.18 || ^5.0", - "php": ">=7.3", - "phpunit/php-file-iterator": "^3.0.3", - "phpunit/php-text-template": "^2.0.2", - "sebastian/code-unit-reverse-lookup": "^2.0.2", - "sebastian/complexity": "^2.0", - "sebastian/environment": "^5.1.2", - "sebastian/lines-of-code": "^1.0.3", - "sebastian/version": "^3.0.1", + "php": ">=8.1", + "phpunit/php-file-iterator": "^4.0", + "phpunit/php-text-template": "^3.0", + "sebastian/code-unit-reverse-lookup": "^3.0", + "sebastian/complexity": "^3.0", + "sebastian/environment": "^6.0", + "sebastian/lines-of-code": "^2.0", + "sebastian/version": "^4.0", "theseer/tokenizer": "^1.2.0" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.1" }, "suggest": { "ext-pcov": "PHP extension that provides line coverage", @@ -13211,7 +13099,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "9.2-dev" + "dev-main": "10.1-dev" } }, "autoload": { @@ -13240,7 +13128,7 @@ "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/9.2.30" + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.11" }, "funding": [ { @@ -13248,32 +13136,32 @@ "type": "github" } ], - "time": "2023-12-22T06:47:57+00:00" + "time": "2023-12-21T15:38:30+00:00" }, { "name": "phpunit/php-file-iterator", - "version": "3.0.6", + "version": "4.1.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-file-iterator.git", - "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf" + "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf", - "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c", + "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev" + "dev-main": "4.0-dev" } }, "autoload": { @@ -13300,7 +13188,8 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", - "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6" + "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy", + "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0" }, "funding": [ { @@ -13308,28 +13197,28 @@ "type": "github" } ], - "time": "2021-12-02T12:48:52+00:00" + "time": "2023-08-31T06:24:48+00:00" }, { "name": "phpunit/php-invoker", - "version": "3.1.1", + "version": "4.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-invoker.git", - "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67" + "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67", - "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67", + "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7", + "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { "ext-pcntl": "*", - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "suggest": { "ext-pcntl": "*" @@ -13337,7 +13226,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.1-dev" + "dev-main": "4.0-dev" } }, "autoload": { @@ -13363,7 +13252,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/php-invoker/issues", - "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1" + "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0" }, "funding": [ { @@ -13371,32 +13260,32 @@ "type": "github" } ], - "time": "2020-09-28T05:58:55+00:00" + "time": "2023-02-03T06:56:09+00:00" }, { "name": "phpunit/php-text-template", - "version": "2.0.4", + "version": "3.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-text-template.git", - "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28" + "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28", - "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748", + "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-main": "3.0-dev" } }, "autoload": { @@ -13422,7 +13311,8 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/php-text-template/issues", - "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4" + "security": "https://github.com/sebastianbergmann/php-text-template/security/policy", + "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1" }, "funding": [ { @@ -13430,32 +13320,32 @@ "type": "github" } ], - "time": "2020-10-26T05:33:50+00:00" + "time": "2023-08-31T14:07:24+00:00" }, { "name": "phpunit/php-timer", - "version": "5.0.3", + "version": "6.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-timer.git", - "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2" + "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2", - "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d", + "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "5.0-dev" + "dev-main": "6.0-dev" } }, "autoload": { @@ -13481,7 +13371,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/php-timer/issues", - "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3" + "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0" }, "funding": [ { @@ -13489,24 +13379,23 @@ "type": "github" } ], - "time": "2020-10-26T13:16:10+00:00" + "time": "2023-02-03T06:57:52+00:00" }, { "name": "phpunit/phpunit", - "version": "9.6.16", + "version": "10.5.11", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "3767b2c56ce02d01e3491046f33466a1ae60a37f" + "reference": "0d968f6323deb3dbfeba5bfd4929b9415eb7a9a4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/3767b2c56ce02d01e3491046f33466a1ae60a37f", - "reference": "3767b2c56ce02d01e3491046f33466a1ae60a37f", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/0d968f6323deb3dbfeba5bfd4929b9415eb7a9a4", + "reference": "0d968f6323deb3dbfeba5bfd4929b9415eb7a9a4", "shasum": "" }, "require": { - "doctrine/instantiator": "^1.3.1 || ^2", "ext-dom": "*", "ext-json": "*", "ext-libxml": "*", @@ -13516,27 +13405,26 @@ "myclabs/deep-copy": "^1.10.1", "phar-io/manifest": "^2.0.3", "phar-io/version": "^3.0.2", - "php": ">=7.3", - "phpunit/php-code-coverage": "^9.2.28", - "phpunit/php-file-iterator": "^3.0.5", - "phpunit/php-invoker": "^3.1.1", - "phpunit/php-text-template": "^2.0.3", - "phpunit/php-timer": "^5.0.2", - "sebastian/cli-parser": "^1.0.1", - "sebastian/code-unit": "^1.0.6", - "sebastian/comparator": "^4.0.8", - "sebastian/diff": "^4.0.3", - "sebastian/environment": "^5.1.3", - "sebastian/exporter": "^4.0.5", - "sebastian/global-state": "^5.0.1", - "sebastian/object-enumerator": "^4.0.3", - "sebastian/resource-operations": "^3.0.3", - "sebastian/type": "^3.2", - "sebastian/version": "^3.0.2" + "php": ">=8.1", + "phpunit/php-code-coverage": "^10.1.5", + "phpunit/php-file-iterator": "^4.0", + "phpunit/php-invoker": "^4.0", + "phpunit/php-text-template": "^3.0", + "phpunit/php-timer": "^6.0", + "sebastian/cli-parser": "^2.0", + "sebastian/code-unit": "^2.0", + "sebastian/comparator": "^5.0", + "sebastian/diff": "^5.0", + "sebastian/environment": "^6.0", + "sebastian/exporter": "^5.1", + "sebastian/global-state": "^6.0.1", + "sebastian/object-enumerator": "^5.0", + "sebastian/recursion-context": "^5.0", + "sebastian/type": "^4.0", + "sebastian/version": "^4.0" }, "suggest": { - "ext-soap": "To be able to generate mocks based on WSDL files", - "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" + "ext-soap": "To be able to generate mocks based on WSDL files" }, "bin": [ "phpunit" @@ -13544,7 +13432,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "9.6-dev" + "dev-main": "10.5-dev" } }, "autoload": { @@ -13576,7 +13464,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", "security": "https://github.com/sebastianbergmann/phpunit/security/policy", - "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.16" + "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.11" }, "funding": [ { @@ -13592,32 +13480,32 @@ "type": "tidelift" } ], - "time": "2024-01-19T07:03:14+00:00" + "time": "2024-02-25T14:05:00+00:00" }, { "name": "sebastian/cli-parser", - "version": "1.0.1", + "version": "2.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/cli-parser.git", - "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2" + "reference": "efdc130dbbbb8ef0b545a994fd811725c5282cae" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2", - "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2", + "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/efdc130dbbbb8ef0b545a994fd811725c5282cae", + "reference": "efdc130dbbbb8ef0b545a994fd811725c5282cae", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0-dev" + "dev-main": "2.0-dev" } }, "autoload": { @@ -13640,7 +13528,7 @@ "homepage": "https://github.com/sebastianbergmann/cli-parser", "support": { "issues": "https://github.com/sebastianbergmann/cli-parser/issues", - "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1" + "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.0" }, "funding": [ { @@ -13648,32 +13536,32 @@ "type": "github" } ], - "time": "2020-09-28T06:08:49+00:00" + "time": "2023-02-03T06:58:15+00:00" }, { "name": "sebastian/code-unit", - "version": "1.0.8", + "version": "2.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/code-unit.git", - "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120" + "reference": "a81fee9eef0b7a76af11d121767abc44c104e503" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120", - "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503", + "reference": "a81fee9eef0b7a76af11d121767abc44c104e503", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0-dev" + "dev-main": "2.0-dev" } }, "autoload": { @@ -13696,7 +13584,7 @@ "homepage": "https://github.com/sebastianbergmann/code-unit", "support": { "issues": "https://github.com/sebastianbergmann/code-unit/issues", - "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8" + "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0" }, "funding": [ { @@ -13704,32 +13592,32 @@ "type": "github" } ], - "time": "2020-10-26T13:08:54+00:00" + "time": "2023-02-03T06:58:43+00:00" }, { "name": "sebastian/code-unit-reverse-lookup", - "version": "2.0.3", + "version": "3.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", - "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5" + "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", - "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d", + "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-main": "3.0-dev" } }, "autoload": { @@ -13751,7 +13639,7 @@ "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", "support": { "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", - "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3" + "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0" }, "funding": [ { @@ -13759,34 +13647,36 @@ "type": "github" } ], - "time": "2020-09-28T05:30:19+00:00" + "time": "2023-02-03T06:59:15+00:00" }, { "name": "sebastian/comparator", - "version": "4.0.8", + "version": "5.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/comparator.git", - "reference": "fa0f136dd2334583309d32b62544682ee972b51a" + "reference": "2db5010a484d53ebf536087a70b4a5423c102372" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a", - "reference": "fa0f136dd2334583309d32b62544682ee972b51a", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2db5010a484d53ebf536087a70b4a5423c102372", + "reference": "2db5010a484d53ebf536087a70b4a5423c102372", "shasum": "" }, "require": { - "php": ">=7.3", - "sebastian/diff": "^4.0", - "sebastian/exporter": "^4.0" + "ext-dom": "*", + "ext-mbstring": "*", + "php": ">=8.1", + "sebastian/diff": "^5.0", + "sebastian/exporter": "^5.0" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.0-dev" + "dev-main": "5.0-dev" } }, "autoload": { @@ -13825,7 +13715,8 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/comparator/issues", - "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8" + "security": "https://github.com/sebastianbergmann/comparator/security/policy", + "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.1" }, "funding": [ { @@ -13833,33 +13724,33 @@ "type": "github" } ], - "time": "2022-09-14T12:41:17+00:00" + "time": "2023-08-14T13:18:12+00:00" }, { "name": "sebastian/complexity", - "version": "2.0.3", + "version": "3.2.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/complexity.git", - "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a" + "reference": "68ff824baeae169ec9f2137158ee529584553799" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a", - "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a", + "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799", + "reference": "68ff824baeae169ec9f2137158ee529584553799", "shasum": "" }, "require": { "nikic/php-parser": "^4.18 || ^5.0", - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-main": "3.2-dev" } }, "autoload": { @@ -13882,7 +13773,8 @@ "homepage": "https://github.com/sebastianbergmann/complexity", "support": { "issues": "https://github.com/sebastianbergmann/complexity/issues", - "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3" + "security": "https://github.com/sebastianbergmann/complexity/security/policy", + "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0" }, "funding": [ { @@ -13890,33 +13782,33 @@ "type": "github" } ], - "time": "2023-12-22T06:19:30+00:00" + "time": "2023-12-21T08:37:17+00:00" }, { "name": "sebastian/diff", - "version": "4.0.5", + "version": "5.1.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/diff.git", - "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131" + "reference": "fbf413a49e54f6b9b17e12d900ac7f6101591b7f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131", - "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/fbf413a49e54f6b9b17e12d900ac7f6101591b7f", + "reference": "fbf413a49e54f6b9b17e12d900ac7f6101591b7f", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^9.3", + "phpunit/phpunit": "^10.0", "symfony/process": "^4.2 || ^5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.0-dev" + "dev-main": "5.1-dev" } }, "autoload": { @@ -13948,7 +13840,8 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/diff/issues", - "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5" + "security": "https://github.com/sebastianbergmann/diff/security/policy", + "source": "https://github.com/sebastianbergmann/diff/tree/5.1.0" }, "funding": [ { @@ -13956,27 +13849,27 @@ "type": "github" } ], - "time": "2023-05-07T05:35:17+00:00" + "time": "2023-12-22T10:55:06+00:00" }, { "name": "sebastian/environment", - "version": "5.1.5", + "version": "6.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/environment.git", - "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed" + "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed", - "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/43c751b41d74f96cbbd4e07b7aec9675651e2951", + "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "suggest": { "ext-posix": "*" @@ -13984,7 +13877,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "5.1-dev" + "dev-main": "6.0-dev" } }, "autoload": { @@ -14003,7 +13896,7 @@ } ], "description": "Provides functionality to handle HHVM/PHP environments", - "homepage": "http://www.github.com/sebastianbergmann/environment", + "homepage": "https://github.com/sebastianbergmann/environment", "keywords": [ "Xdebug", "environment", @@ -14011,7 +13904,8 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/environment/issues", - "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5" + "security": "https://github.com/sebastianbergmann/environment/security/policy", + "source": "https://github.com/sebastianbergmann/environment/tree/6.0.1" }, "funding": [ { @@ -14019,34 +13913,34 @@ "type": "github" } ], - "time": "2023-02-03T06:03:51+00:00" + "time": "2023-04-11T05:39:26+00:00" }, { "name": "sebastian/exporter", - "version": "4.0.5", + "version": "5.1.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/exporter.git", - "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d" + "reference": "64f51654862e0f5e318db7e9dcc2292c63cdbddc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d", - "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/64f51654862e0f5e318db7e9dcc2292c63cdbddc", + "reference": "64f51654862e0f5e318db7e9dcc2292c63cdbddc", "shasum": "" }, "require": { - "php": ">=7.3", - "sebastian/recursion-context": "^4.0" + "ext-mbstring": "*", + "php": ">=8.1", + "sebastian/recursion-context": "^5.0" }, "require-dev": { - "ext-mbstring": "*", - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.0-dev" + "dev-main": "5.1-dev" } }, "autoload": { @@ -14088,7 +13982,8 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/exporter/issues", - "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5" + "security": "https://github.com/sebastianbergmann/exporter/security/policy", + "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.1" }, "funding": [ { @@ -14096,38 +13991,35 @@ "type": "github" } ], - "time": "2022-09-14T06:03:37+00:00" + "time": "2023-09-24T13:22:09+00:00" }, { "name": "sebastian/global-state", - "version": "5.0.6", + "version": "6.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/global-state.git", - "reference": "bde739e7565280bda77be70044ac1047bc007e34" + "reference": "7ea9ead78f6d380d2a667864c132c2f7b83055e4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bde739e7565280bda77be70044ac1047bc007e34", - "reference": "bde739e7565280bda77be70044ac1047bc007e34", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/7ea9ead78f6d380d2a667864c132c2f7b83055e4", + "reference": "7ea9ead78f6d380d2a667864c132c2f7b83055e4", "shasum": "" }, "require": { - "php": ">=7.3", - "sebastian/object-reflector": "^2.0", - "sebastian/recursion-context": "^4.0" + "php": ">=8.1", + "sebastian/object-reflector": "^3.0", + "sebastian/recursion-context": "^5.0" }, "require-dev": { "ext-dom": "*", - "phpunit/phpunit": "^9.3" - }, - "suggest": { - "ext-uopz": "*" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "5.0-dev" + "dev-main": "6.0-dev" } }, "autoload": { @@ -14152,7 +14044,8 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/global-state/issues", - "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.6" + "security": "https://github.com/sebastianbergmann/global-state/security/policy", + "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.1" }, "funding": [ { @@ -14160,33 +14053,33 @@ "type": "github" } ], - "time": "2023-08-02T09:26:13+00:00" + "time": "2023-07-19T07:19:23+00:00" }, { "name": "sebastian/lines-of-code", - "version": "1.0.4", + "version": "2.0.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/lines-of-code.git", - "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5" + "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5", - "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5", + "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0", + "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0", "shasum": "" }, "require": { "nikic/php-parser": "^4.18 || ^5.0", - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0-dev" + "dev-main": "2.0-dev" } }, "autoload": { @@ -14209,7 +14102,8 @@ "homepage": "https://github.com/sebastianbergmann/lines-of-code", "support": { "issues": "https://github.com/sebastianbergmann/lines-of-code/issues", - "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4" + "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy", + "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2" }, "funding": [ { @@ -14217,34 +14111,34 @@ "type": "github" } ], - "time": "2023-12-22T06:20:34+00:00" + "time": "2023-12-21T08:38:20+00:00" }, { "name": "sebastian/object-enumerator", - "version": "4.0.4", + "version": "5.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/object-enumerator.git", - "reference": "5c9eeac41b290a3712d88851518825ad78f45c71" + "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71", - "reference": "5c9eeac41b290a3712d88851518825ad78f45c71", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906", + "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906", "shasum": "" }, "require": { - "php": ">=7.3", - "sebastian/object-reflector": "^2.0", - "sebastian/recursion-context": "^4.0" + "php": ">=8.1", + "sebastian/object-reflector": "^3.0", + "sebastian/recursion-context": "^5.0" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.0-dev" + "dev-main": "5.0-dev" } }, "autoload": { @@ -14266,7 +14160,7 @@ "homepage": "https://github.com/sebastianbergmann/object-enumerator/", "support": { "issues": "https://github.com/sebastianbergmann/object-enumerator/issues", - "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4" + "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0" }, "funding": [ { @@ -14274,32 +14168,32 @@ "type": "github" } ], - "time": "2020-10-26T13:12:34+00:00" + "time": "2023-02-03T07:08:32+00:00" }, { "name": "sebastian/object-reflector", - "version": "2.0.4", + "version": "3.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/object-reflector.git", - "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7" + "reference": "24ed13d98130f0e7122df55d06c5c4942a577957" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7", - "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957", + "reference": "24ed13d98130f0e7122df55d06c5c4942a577957", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-main": "3.0-dev" } }, "autoload": { @@ -14321,7 +14215,7 @@ "homepage": "https://github.com/sebastianbergmann/object-reflector/", "support": { "issues": "https://github.com/sebastianbergmann/object-reflector/issues", - "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4" + "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0" }, "funding": [ { @@ -14329,32 +14223,32 @@ "type": "github" } ], - "time": "2020-10-26T13:14:26+00:00" + "time": "2023-02-03T07:06:18+00:00" }, { "name": "sebastian/recursion-context", - "version": "4.0.5", + "version": "5.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/recursion-context.git", - "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1" + "reference": "05909fb5bc7df4c52992396d0116aed689f93712" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1", - "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712", + "reference": "05909fb5bc7df4c52992396d0116aed689f93712", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.0-dev" + "dev-main": "5.0-dev" } }, "autoload": { @@ -14384,62 +14278,7 @@ "homepage": "https://github.com/sebastianbergmann/recursion-context", "support": { "issues": "https://github.com/sebastianbergmann/recursion-context/issues", - "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5" - }, - "funding": [ - { - "url": "https://github.com/sebastianbergmann", - "type": "github" - } - ], - "time": "2023-02-03T06:07:39+00:00" - }, - { - "name": "sebastian/resource-operations", - "version": "3.0.3", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/resource-operations.git", - "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8", - "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8", - "shasum": "" - }, - "require": { - "php": ">=7.3" - }, - "require-dev": { - "phpunit/phpunit": "^9.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.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 a list of PHP built-in functions that operate on resources", - "homepage": "https://www.github.com/sebastianbergmann/resource-operations", - "support": { - "issues": "https://github.com/sebastianbergmann/resource-operations/issues", - "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3" + "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0" }, "funding": [ { @@ -14447,32 +14286,32 @@ "type": "github" } ], - "time": "2020-09-28T06:45:17+00:00" + "time": "2023-02-03T07:05:40+00:00" }, { "name": "sebastian/type", - "version": "3.2.1", + "version": "4.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/type.git", - "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7" + "reference": "462699a16464c3944eefc02ebdd77882bd3925bf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7", - "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf", + "reference": "462699a16464c3944eefc02ebdd77882bd3925bf", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^9.5" + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.2-dev" + "dev-main": "4.0-dev" } }, "autoload": { @@ -14495,7 +14334,7 @@ "homepage": "https://github.com/sebastianbergmann/type", "support": { "issues": "https://github.com/sebastianbergmann/type/issues", - "source": "https://github.com/sebastianbergmann/type/tree/3.2.1" + "source": "https://github.com/sebastianbergmann/type/tree/4.0.0" }, "funding": [ { @@ -14503,29 +14342,29 @@ "type": "github" } ], - "time": "2023-02-03T06:13:03+00:00" + "time": "2023-02-03T07:10:45+00:00" }, { "name": "sebastian/version", - "version": "3.0.2", + "version": "4.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/version.git", - "reference": "c6c1022351a901512170118436c764e473f6de8c" + "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c", - "reference": "c6c1022351a901512170118436c764e473f6de8c", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17", + "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=8.1" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev" + "dev-main": "4.0-dev" } }, "autoload": { @@ -14548,7 +14387,7 @@ "homepage": "https://github.com/sebastianbergmann/version", "support": { "issues": "https://github.com/sebastianbergmann/version/issues", - "source": "https://github.com/sebastianbergmann/version/tree/3.0.2" + "source": "https://github.com/sebastianbergmann/version/tree/4.0.1" }, "funding": [ { @@ -14556,7 +14395,7 @@ "type": "github" } ], - "time": "2020-09-28T06:39:44+00:00" + "time": "2023-02-07T11:34:05+00:00" }, { "name": "slevomat/coding-standard", @@ -14931,16 +14770,16 @@ }, { "name": "squizlabs/php_codesniffer", - "version": "3.8.1", + "version": "3.9.0", "source": { "type": "git", "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git", - "reference": "14f5fff1e64118595db5408e946f3a22c75807f7" + "reference": "d63cee4890a8afaf86a22e51ad4d97c91dd4579b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/14f5fff1e64118595db5408e946f3a22c75807f7", - "reference": "14f5fff1e64118595db5408e946f3a22c75807f7", + "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/d63cee4890a8afaf86a22e51ad4d97c91dd4579b", + "reference": "d63cee4890a8afaf86a22e51ad4d97c91dd4579b", "shasum": "" }, "require": { @@ -15007,35 +14846,35 @@ "type": "open_collective" } ], - "time": "2024-01-11T20:47:48+00:00" + "time": "2024-02-16T15:06:51+00:00" }, { "name": "symfony/cache", - "version": "v6.4.3", + "version": "v7.0.3", "source": { "type": "git", "url": "https://github.com/symfony/cache.git", - "reference": "49f8cdee544a621a621cd21b6cda32a38926d310" + "reference": "2207eceb2433d74df81232d97439bf508cb9e050" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/cache/zipball/49f8cdee544a621a621cd21b6cda32a38926d310", - "reference": "49f8cdee544a621a621cd21b6cda32a38926d310", + "url": "https://api.github.com/repos/symfony/cache/zipball/2207eceb2433d74df81232d97439bf508cb9e050", + "reference": "2207eceb2433d74df81232d97439bf508cb9e050", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "psr/cache": "^2.0|^3.0", "psr/log": "^1.1|^2|^3", "symfony/cache-contracts": "^2.5|^3", "symfony/service-contracts": "^2.5|^3", - "symfony/var-exporter": "^6.3.6|^7.0" + "symfony/var-exporter": "^6.4|^7.0" }, "conflict": { - "doctrine/dbal": "<2.13.1", - "symfony/dependency-injection": "<5.4", - "symfony/http-kernel": "<5.4", - "symfony/var-dumper": "<5.4" + "doctrine/dbal": "<3.6", + "symfony/dependency-injection": "<6.4", + "symfony/http-kernel": "<6.4", + "symfony/var-dumper": "<6.4" }, "provide": { "psr/cache-implementation": "2.0|3.0", @@ -15044,15 +14883,15 @@ }, "require-dev": { "cache/integration-tests": "dev-master", - "doctrine/dbal": "^2.13.1|^3|^4", + "doctrine/dbal": "^3.6|^4", "predis/predis": "^1.1|^2.0", "psr/simple-cache": "^1.0|^2.0|^3.0", - "symfony/config": "^5.4|^6.0|^7.0", - "symfony/dependency-injection": "^5.4|^6.0|^7.0", - "symfony/filesystem": "^5.4|^6.0|^7.0", - "symfony/http-kernel": "^5.4|^6.0|^7.0", - "symfony/messenger": "^5.4|^6.0|^7.0", - "symfony/var-dumper": "^5.4|^6.0|^7.0" + "symfony/config": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/filesystem": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/messenger": "^6.4|^7.0", + "symfony/var-dumper": "^6.4|^7.0" }, "type": "library", "autoload": { @@ -15087,7 +14926,7 @@ "psr6" ], "support": { - "source": "https://github.com/symfony/cache/tree/v6.4.3" + "source": "https://github.com/symfony/cache/tree/v7.0.3" }, "funding": [ { @@ -15103,7 +14942,7 @@ "type": "tidelift" } ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2024-01-23T15:02:46+00:00" }, { "name": "symfony/cache-contracts", @@ -15183,20 +15022,20 @@ }, { "name": "symfony/filesystem", - "version": "v6.4.3", + "version": "v7.0.3", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb" + "reference": "2890e3a825bc0c0558526c04499c13f83e1b6b12" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb", - "reference": "7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/2890e3a825bc0c0558526c04499c13f83e1b6b12", + "reference": "2890e3a825bc0c0558526c04499c13f83e1b6b12", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "symfony/polyfill-ctype": "~1.8", "symfony/polyfill-mbstring": "~1.8" }, @@ -15226,7 +15065,7 @@ "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/filesystem/tree/v6.4.3" + "source": "https://github.com/symfony/filesystem/tree/v7.0.3" }, "funding": [ { @@ -15242,7 +15081,7 @@ "type": "tidelift" } ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2024-01-23T15:02:46+00:00" }, { "name": "symfony/polyfill-php81", @@ -15322,20 +15161,20 @@ }, { "name": "symfony/stopwatch", - "version": "v6.4.3", + "version": "v7.0.3", "source": { "type": "git", "url": "https://github.com/symfony/stopwatch.git", - "reference": "416596166641f1f728b0a64f5b9dd07cceb410c1" + "reference": "983900d6fddf2b0cbaacacbbad07610854bd8112" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/stopwatch/zipball/416596166641f1f728b0a64f5b9dd07cceb410c1", - "reference": "416596166641f1f728b0a64f5b9dd07cceb410c1", + "url": "https://api.github.com/repos/symfony/stopwatch/zipball/983900d6fddf2b0cbaacacbbad07610854bd8112", + "reference": "983900d6fddf2b0cbaacacbbad07610854bd8112", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "symfony/service-contracts": "^2.5|^3" }, "type": "library", @@ -15364,7 +15203,7 @@ "description": "Provides a way to profile code", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/stopwatch/tree/v6.4.3" + "source": "https://github.com/symfony/stopwatch/tree/v7.0.3" }, "funding": [ { @@ -15380,28 +15219,27 @@ "type": "tidelift" } ], - "time": "2024-01-23T14:35:58+00:00" + "time": "2024-01-23T15:02:46+00:00" }, { "name": "symfony/var-exporter", - "version": "v6.4.3", + "version": "v7.0.3", "source": { "type": "git", "url": "https://github.com/symfony/var-exporter.git", - "reference": "a8c12b5448a5ac685347f5eeb2abf6a571ec16b8" + "reference": "1fb79308cb5fc2b44bff6e8af10a5af6812e05b8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-exporter/zipball/a8c12b5448a5ac685347f5eeb2abf6a571ec16b8", - "reference": "a8c12b5448a5ac685347f5eeb2abf6a571ec16b8", + "url": "https://api.github.com/repos/symfony/var-exporter/zipball/1fb79308cb5fc2b44bff6e8af10a5af6812e05b8", + "reference": "1fb79308cb5fc2b44bff6e8af10a5af6812e05b8", "shasum": "" }, "require": { - "php": ">=8.1", - "symfony/deprecation-contracts": "^2.5|^3" + "php": ">=8.2" }, "require-dev": { - "symfony/var-dumper": "^5.4|^6.0|^7.0" + "symfony/var-dumper": "^6.4|^7.0" }, "type": "library", "autoload": { @@ -15439,7 +15277,7 @@ "serialize" ], "support": { - "source": "https://github.com/symfony/var-exporter/tree/v6.4.3" + "source": "https://github.com/symfony/var-exporter/tree/v7.0.3" }, "funding": [ { @@ -15455,7 +15293,7 @@ "type": "tidelift" } ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2024-01-23T15:02:46+00:00" }, { "name": "theseer/tokenizer", @@ -15509,7 +15347,7 @@ } ], "aliases": [], - "minimum-stability": "dev", + "minimum-stability": "stable", "stability-flags": { "nunomaduro/phpinsights": 20 }, @@ -15519,5 +15357,5 @@ "php": "^8.0" }, "platform-dev": [], - "plugin-api-version": "2.6.0" + "plugin-api-version": "2.3.0" } diff --git a/config/app.php b/config/app.php index 3845312e7..6904d96fb 100644 --- a/config/app.php +++ b/config/app.php @@ -1,6 +1,7 @@ [ - - /* - * Laravel Framework Service Providers... - */ - Illuminate\Auth\AuthServiceProvider::class, - Illuminate\Broadcasting\BroadcastServiceProvider::class, - Illuminate\Bus\BusServiceProvider::class, - Illuminate\Cache\CacheServiceProvider::class, - Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class, - Illuminate\Cookie\CookieServiceProvider::class, - Illuminate\Database\DatabaseServiceProvider::class, - Illuminate\Encryption\EncryptionServiceProvider::class, - Illuminate\Filesystem\FilesystemServiceProvider::class, - Illuminate\Foundation\Providers\FoundationServiceProvider::class, - Illuminate\Hashing\HashServiceProvider::class, - Illuminate\Mail\MailServiceProvider::class, - Illuminate\Notifications\NotificationServiceProvider::class, - Illuminate\Pagination\PaginationServiceProvider::class, - Illuminate\Pipeline\PipelineServiceProvider::class, - Illuminate\Queue\QueueServiceProvider::class, - Illuminate\Redis\RedisServiceProvider::class, - Illuminate\Auth\Passwords\PasswordResetServiceProvider::class, - Illuminate\Session\SessionServiceProvider::class, - Illuminate\Translation\TranslationServiceProvider::class, - Illuminate\Validation\ValidationServiceProvider::class, - Illuminate\View\ViewServiceProvider::class, - + 'providers' => ServiceProvider::defaultProviders()->merge([ /* * Package Service Providers... */ @@ -179,7 +153,7 @@ App\Providers\TelescopeServiceProvider::class, App\Providers\RouteServiceProvider::class, App\Providers\CalendarServiceProvider::class, - ], + ])->toArray(), /* |-------------------------------------------------------------------------- diff --git a/config/auth.php b/config/auth.php index 84aa8b593..54aab3f48 100644 --- a/config/auth.php +++ b/config/auth.php @@ -95,7 +95,7 @@ 'passwords' => [ 'users' => [ 'provider' => 'users', - 'table' => 'password_resets', + 'table' => 'password_reset_tokens', 'expire' => 60, 'throttle' => 60, ], diff --git a/database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php.php b/database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php.php new file mode 100644 index 000000000..c897c7a45 --- /dev/null +++ b/database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php.php @@ -0,0 +1,21 @@ +string('email')->primary(); + $table->string('token'); + $table->timestamp('created_at')->nullable(); + }); + } + + public function down(): void + { + Schema::dropIfExists('password_reset_tokens'); + } +}; diff --git a/database/migrations/2014_10_12_100000_create_password_resets_table.php b/database/migrations/2014_10_12_100000_create_password_resets_table.php deleted file mode 100644 index 45aa7075c..000000000 --- a/database/migrations/2014_10_12_100000_create_password_resets_table.php +++ /dev/null @@ -1,22 +0,0 @@ -string('email')->index(); - $table->string('token')->index(); - $table->timestamp('created_at')->nullable(); - }); - } - - public function down() - { - Schema::dropIfExists('password_resets'); - } -} diff --git a/lang/ar.json b/lang/ar.json index 04a6897ba..4e9cf2715 100644 --- a/lang/ar.json +++ b/lang/ar.json @@ -1 +1 @@ -{"Full Name":null,"deactivate auto pricing":null,"activate auto pricing":null,"Locality ID":null,"Pagination":null,"Auto AWB Generation":null,"Min Price":null,"Max Price":null,"Min Margin":null,"Courier Account":null,"Locker Service":null,"Free Shipping Above":null,"Create Payment":null,"Create Product":null,"Payment Method":null,"Emag Number":null," Bundle":null,"Date Filter":null,"Auto Pricing":null,"Documentation":null,"download pictures":null,"download":null,"update measurements":null,"activate":null,"marketplace product":null,"marketplace offer":null,"Not published":null,"Card Processor":null,"On Delivery":null,"newest":null,"Sort":null,"price descending":null,"price ascending":null,"Availability":null,"Price Range":null,"The application is briefly unavailable for scheduled maintenance. Please check back in a few minutes":null,"Sale":null,"A cancellation request was received for a :channel order.":null,"Please take the necessary steps.":null,"A cancellation request was received for a :channel order":null,"Order #:number from :channel, placed by :person, has a new status update: :status":null,"New Position":null,"Download goods received note":null,"Undo receive":null,"Receive":null,"Undo confirm":null,"Confirm":null,"Reference":null,"Undo deliver":null,"Deliver":null,"Undo ship":null,"Ship":null,"Undo prepare":null,"Prepare products":null,"Insert in stock":null,"Undo fulfill":null,"Remove from stock":null,"Order emailed by":null,"Invoice emailed by":null,"No email sent with the current invoice":null,"Issue Proforma":null,"No email sent with the current order":null,"Download order (pdf)":null,"Download order (xlsx)":null,"Fulfill":null,"Store":null,"Cancellation request for :channel order #:number":null,"Your order #:number is being processed. We'll keep you updated.":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we'd really love to receive your feedback. If you wish, you can leave us a product review.":null,"Don't hesitate to contact us for any questions.":null,"Your order #:number has been packed and is ready for shipping. We'll let you know once it's shipped.":null,"A :channel order cancellation request was received":null,"Status update for order #:number":null,"Order #:number from :channel, placed by :person, has a new status update :status":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we’d really love to receive your feedback. If you wish, you can leave us a product review.":null,"Your order #:number has been shipped to the following address: :address":null,"Your order #:number has been packed and is ready for shipping. We’ll let you know once it’s shipped.":null,"Your order #:number is being processed. We’ll keep you updated.":null,"Your order #:number was delivered":null,"Your order #:number was shipped":null,"Your order #:number is ready to be shipped":null,"Your order #:number is being processed":null,"Author":null,"Subgenre":null,"Genre":null,"Number of Pages":null,"Year of Publication":null,"Collection":null,"Edition":null,"Publisher":null,"Translator":null,"A new account was created: :name":null,":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Free Shipping":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Navigation":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Generated for order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"See cart":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"most popular":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us.":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please refresh your page to load the latest application version":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Editable time limit in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review for :product was updated by :person:":null,"A new product review for :product was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file +{"Full Name":null,"deactivate auto pricing":null,"activate auto pricing":null,"Locality ID":null,"Pagination":null,"Auto AWB Generation":null,"Min Price":null,"Max Price":null,"Min Margin":null,"Courier Account":null,"Locker Service":null,"Free Shipping Above":null,"Create Payment":null,"Create Product":null,"Payment Method":null,"Emag Number":null," Bundle":null,"Date Filter":null,"Auto Pricing":null,"Documentation":null,"download pictures":null,"download":null,"update measurements":null,"activate":null,"marketplace product":null,"marketplace offer":null,"Not published":null,"Card Processor":null,"On Delivery":null,"newest":null,"Sort":null,"price descending":null,"price ascending":null,"Availability":null,"Price Range":null,"The application is briefly unavailable for scheduled maintenance. Please check back in a few minutes":null,"Sale":null,"A cancellation request was received for a :channel order.":null,"Please take the necessary steps.":null,"A cancellation request was received for a :channel order":null,"Order #:number from :channel, placed by :person, has a new status update: :status":null,"New Position":null,"Download goods received note":null,"Undo receive":null,"Receive":null,"Undo confirm":null,"Confirm":null,"Reference":null,"Undo deliver":null,"Deliver":null,"Undo ship":null,"Ship":null,"Undo prepare":null,"Prepare products":null,"Insert in stock":null,"Undo fulfill":null,"Remove from stock":null,"Order emailed by":null,"Invoice emailed by":null,"No email sent with the current invoice":null,"Issue Proforma":null,"No email sent with the current order":null,"Download order (pdf)":null,"Download order (xlsx)":null,"Fulfill":null,"Store":null,"Cancellation request for :channel order #:number":null,"Your order #:number is being processed. We'll keep you updated.":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we'd really love to receive your feedback. If you wish, you can leave us a product review.":null,"Don't hesitate to contact us for any questions.":null,"Your order #:number has been packed and is ready for shipping. We'll let you know once it's shipped.":null,"A :channel order cancellation request was received":null,"Status update for order #:number":null,"Order #:number from :channel, placed by :person, has a new status update :status":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we’d really love to receive your feedback. If you wish, you can leave us a product review.":null,"Your order #:number has been shipped to the following address: :address":null,"Your order #:number has been packed and is ready for shipping. We’ll let you know once it’s shipped.":null,"Your order #:number is being processed. We’ll keep you updated.":null,"Your order #:number was delivered":null,"Your order #:number was shipped":null,"Your order #:number is ready to be shipped":null,"Your order #:number is being processed":null,"Author":null,"Subgenre":null,"Genre":null,"Number of Pages":null,"Year of Publication":null,"Collection":null,"Edition":null,"Publisher":null,"Translator":null,"A new account was created: :name":null,":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Free Shipping":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Navigation":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"See cart":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"most popular":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please refresh your page to load the latest application version":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"This record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Editable time limit in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review for :product was updated by :person:":null,"A new product review for :product was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file diff --git a/lang/br.json b/lang/br.json index 04a6897ba..4e9cf2715 100644 --- a/lang/br.json +++ b/lang/br.json @@ -1 +1 @@ -{"Full Name":null,"deactivate auto pricing":null,"activate auto pricing":null,"Locality ID":null,"Pagination":null,"Auto AWB Generation":null,"Min Price":null,"Max Price":null,"Min Margin":null,"Courier Account":null,"Locker Service":null,"Free Shipping Above":null,"Create Payment":null,"Create Product":null,"Payment Method":null,"Emag Number":null," Bundle":null,"Date Filter":null,"Auto Pricing":null,"Documentation":null,"download pictures":null,"download":null,"update measurements":null,"activate":null,"marketplace product":null,"marketplace offer":null,"Not published":null,"Card Processor":null,"On Delivery":null,"newest":null,"Sort":null,"price descending":null,"price ascending":null,"Availability":null,"Price Range":null,"The application is briefly unavailable for scheduled maintenance. Please check back in a few minutes":null,"Sale":null,"A cancellation request was received for a :channel order.":null,"Please take the necessary steps.":null,"A cancellation request was received for a :channel order":null,"Order #:number from :channel, placed by :person, has a new status update: :status":null,"New Position":null,"Download goods received note":null,"Undo receive":null,"Receive":null,"Undo confirm":null,"Confirm":null,"Reference":null,"Undo deliver":null,"Deliver":null,"Undo ship":null,"Ship":null,"Undo prepare":null,"Prepare products":null,"Insert in stock":null,"Undo fulfill":null,"Remove from stock":null,"Order emailed by":null,"Invoice emailed by":null,"No email sent with the current invoice":null,"Issue Proforma":null,"No email sent with the current order":null,"Download order (pdf)":null,"Download order (xlsx)":null,"Fulfill":null,"Store":null,"Cancellation request for :channel order #:number":null,"Your order #:number is being processed. We'll keep you updated.":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we'd really love to receive your feedback. If you wish, you can leave us a product review.":null,"Don't hesitate to contact us for any questions.":null,"Your order #:number has been packed and is ready for shipping. We'll let you know once it's shipped.":null,"A :channel order cancellation request was received":null,"Status update for order #:number":null,"Order #:number from :channel, placed by :person, has a new status update :status":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we’d really love to receive your feedback. If you wish, you can leave us a product review.":null,"Your order #:number has been shipped to the following address: :address":null,"Your order #:number has been packed and is ready for shipping. We’ll let you know once it’s shipped.":null,"Your order #:number is being processed. We’ll keep you updated.":null,"Your order #:number was delivered":null,"Your order #:number was shipped":null,"Your order #:number is ready to be shipped":null,"Your order #:number is being processed":null,"Author":null,"Subgenre":null,"Genre":null,"Number of Pages":null,"Year of Publication":null,"Collection":null,"Edition":null,"Publisher":null,"Translator":null,"A new account was created: :name":null,":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Free Shipping":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Navigation":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Generated for order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"See cart":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"most popular":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us.":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please refresh your page to load the latest application version":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Editable time limit in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review for :product was updated by :person:":null,"A new product review for :product was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file +{"Full Name":null,"deactivate auto pricing":null,"activate auto pricing":null,"Locality ID":null,"Pagination":null,"Auto AWB Generation":null,"Min Price":null,"Max Price":null,"Min Margin":null,"Courier Account":null,"Locker Service":null,"Free Shipping Above":null,"Create Payment":null,"Create Product":null,"Payment Method":null,"Emag Number":null," Bundle":null,"Date Filter":null,"Auto Pricing":null,"Documentation":null,"download pictures":null,"download":null,"update measurements":null,"activate":null,"marketplace product":null,"marketplace offer":null,"Not published":null,"Card Processor":null,"On Delivery":null,"newest":null,"Sort":null,"price descending":null,"price ascending":null,"Availability":null,"Price Range":null,"The application is briefly unavailable for scheduled maintenance. Please check back in a few minutes":null,"Sale":null,"A cancellation request was received for a :channel order.":null,"Please take the necessary steps.":null,"A cancellation request was received for a :channel order":null,"Order #:number from :channel, placed by :person, has a new status update: :status":null,"New Position":null,"Download goods received note":null,"Undo receive":null,"Receive":null,"Undo confirm":null,"Confirm":null,"Reference":null,"Undo deliver":null,"Deliver":null,"Undo ship":null,"Ship":null,"Undo prepare":null,"Prepare products":null,"Insert in stock":null,"Undo fulfill":null,"Remove from stock":null,"Order emailed by":null,"Invoice emailed by":null,"No email sent with the current invoice":null,"Issue Proforma":null,"No email sent with the current order":null,"Download order (pdf)":null,"Download order (xlsx)":null,"Fulfill":null,"Store":null,"Cancellation request for :channel order #:number":null,"Your order #:number is being processed. We'll keep you updated.":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we'd really love to receive your feedback. If you wish, you can leave us a product review.":null,"Don't hesitate to contact us for any questions.":null,"Your order #:number has been packed and is ready for shipping. We'll let you know once it's shipped.":null,"A :channel order cancellation request was received":null,"Status update for order #:number":null,"Order #:number from :channel, placed by :person, has a new status update :status":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we’d really love to receive your feedback. If you wish, you can leave us a product review.":null,"Your order #:number has been shipped to the following address: :address":null,"Your order #:number has been packed and is ready for shipping. We’ll let you know once it’s shipped.":null,"Your order #:number is being processed. We’ll keep you updated.":null,"Your order #:number was delivered":null,"Your order #:number was shipped":null,"Your order #:number is ready to be shipped":null,"Your order #:number is being processed":null,"Author":null,"Subgenre":null,"Genre":null,"Number of Pages":null,"Year of Publication":null,"Collection":null,"Edition":null,"Publisher":null,"Translator":null,"A new account was created: :name":null,":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Free Shipping":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Navigation":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"See cart":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"most popular":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please refresh your page to load the latest application version":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"This record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Editable time limit in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review for :product was updated by :person:":null,"A new product review for :product was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file diff --git a/lang/de.json b/lang/de.json index 04a6897ba..4e9cf2715 100644 --- a/lang/de.json +++ b/lang/de.json @@ -1 +1 @@ -{"Full Name":null,"deactivate auto pricing":null,"activate auto pricing":null,"Locality ID":null,"Pagination":null,"Auto AWB Generation":null,"Min Price":null,"Max Price":null,"Min Margin":null,"Courier Account":null,"Locker Service":null,"Free Shipping Above":null,"Create Payment":null,"Create Product":null,"Payment Method":null,"Emag Number":null," Bundle":null,"Date Filter":null,"Auto Pricing":null,"Documentation":null,"download pictures":null,"download":null,"update measurements":null,"activate":null,"marketplace product":null,"marketplace offer":null,"Not published":null,"Card Processor":null,"On Delivery":null,"newest":null,"Sort":null,"price descending":null,"price ascending":null,"Availability":null,"Price Range":null,"The application is briefly unavailable for scheduled maintenance. Please check back in a few minutes":null,"Sale":null,"A cancellation request was received for a :channel order.":null,"Please take the necessary steps.":null,"A cancellation request was received for a :channel order":null,"Order #:number from :channel, placed by :person, has a new status update: :status":null,"New Position":null,"Download goods received note":null,"Undo receive":null,"Receive":null,"Undo confirm":null,"Confirm":null,"Reference":null,"Undo deliver":null,"Deliver":null,"Undo ship":null,"Ship":null,"Undo prepare":null,"Prepare products":null,"Insert in stock":null,"Undo fulfill":null,"Remove from stock":null,"Order emailed by":null,"Invoice emailed by":null,"No email sent with the current invoice":null,"Issue Proforma":null,"No email sent with the current order":null,"Download order (pdf)":null,"Download order (xlsx)":null,"Fulfill":null,"Store":null,"Cancellation request for :channel order #:number":null,"Your order #:number is being processed. We'll keep you updated.":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we'd really love to receive your feedback. If you wish, you can leave us a product review.":null,"Don't hesitate to contact us for any questions.":null,"Your order #:number has been packed and is ready for shipping. We'll let you know once it's shipped.":null,"A :channel order cancellation request was received":null,"Status update for order #:number":null,"Order #:number from :channel, placed by :person, has a new status update :status":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we’d really love to receive your feedback. If you wish, you can leave us a product review.":null,"Your order #:number has been shipped to the following address: :address":null,"Your order #:number has been packed and is ready for shipping. We’ll let you know once it’s shipped.":null,"Your order #:number is being processed. We’ll keep you updated.":null,"Your order #:number was delivered":null,"Your order #:number was shipped":null,"Your order #:number is ready to be shipped":null,"Your order #:number is being processed":null,"Author":null,"Subgenre":null,"Genre":null,"Number of Pages":null,"Year of Publication":null,"Collection":null,"Edition":null,"Publisher":null,"Translator":null,"A new account was created: :name":null,":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Free Shipping":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Navigation":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Generated for order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"See cart":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"most popular":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us.":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please refresh your page to load the latest application version":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Editable time limit in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review for :product was updated by :person:":null,"A new product review for :product was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file +{"Full Name":null,"deactivate auto pricing":null,"activate auto pricing":null,"Locality ID":null,"Pagination":null,"Auto AWB Generation":null,"Min Price":null,"Max Price":null,"Min Margin":null,"Courier Account":null,"Locker Service":null,"Free Shipping Above":null,"Create Payment":null,"Create Product":null,"Payment Method":null,"Emag Number":null," Bundle":null,"Date Filter":null,"Auto Pricing":null,"Documentation":null,"download pictures":null,"download":null,"update measurements":null,"activate":null,"marketplace product":null,"marketplace offer":null,"Not published":null,"Card Processor":null,"On Delivery":null,"newest":null,"Sort":null,"price descending":null,"price ascending":null,"Availability":null,"Price Range":null,"The application is briefly unavailable for scheduled maintenance. Please check back in a few minutes":null,"Sale":null,"A cancellation request was received for a :channel order.":null,"Please take the necessary steps.":null,"A cancellation request was received for a :channel order":null,"Order #:number from :channel, placed by :person, has a new status update: :status":null,"New Position":null,"Download goods received note":null,"Undo receive":null,"Receive":null,"Undo confirm":null,"Confirm":null,"Reference":null,"Undo deliver":null,"Deliver":null,"Undo ship":null,"Ship":null,"Undo prepare":null,"Prepare products":null,"Insert in stock":null,"Undo fulfill":null,"Remove from stock":null,"Order emailed by":null,"Invoice emailed by":null,"No email sent with the current invoice":null,"Issue Proforma":null,"No email sent with the current order":null,"Download order (pdf)":null,"Download order (xlsx)":null,"Fulfill":null,"Store":null,"Cancellation request for :channel order #:number":null,"Your order #:number is being processed. We'll keep you updated.":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we'd really love to receive your feedback. If you wish, you can leave us a product review.":null,"Don't hesitate to contact us for any questions.":null,"Your order #:number has been packed and is ready for shipping. We'll let you know once it's shipped.":null,"A :channel order cancellation request was received":null,"Status update for order #:number":null,"Order #:number from :channel, placed by :person, has a new status update :status":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we’d really love to receive your feedback. If you wish, you can leave us a product review.":null,"Your order #:number has been shipped to the following address: :address":null,"Your order #:number has been packed and is ready for shipping. We’ll let you know once it’s shipped.":null,"Your order #:number is being processed. We’ll keep you updated.":null,"Your order #:number was delivered":null,"Your order #:number was shipped":null,"Your order #:number is ready to be shipped":null,"Your order #:number is being processed":null,"Author":null,"Subgenre":null,"Genre":null,"Number of Pages":null,"Year of Publication":null,"Collection":null,"Edition":null,"Publisher":null,"Translator":null,"A new account was created: :name":null,":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Free Shipping":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Navigation":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"See cart":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"most popular":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please refresh your page to load the latest application version":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"This record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Editable time limit in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review for :product was updated by :person:":null,"A new product review for :product was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file diff --git a/lang/es.json b/lang/es.json index 8550c4b22..0fe994207 100644 --- a/lang/es.json +++ b/lang/es.json @@ -1 +1 @@ -{"On Delivery":null,"Card Processor":null,"Not published":null,"marketplace offer":null,"marketplace product":null,"activate":null,"update measurements":null,"download":null,"download pictures":null,"Auto Pricing":null,"Documentation":null,"Date Filter":null," Bundle":null,"Emag Number":null,"Payment Method":null,"Create Payment":null,"Create Product":null,"Free Shipping Above":null,"Locker Service":null,"Courier Account":null,"Min Margin":null,"Max Price":null,"Min Price":null,"Auto AWB Generation":null,"Pagination":null,"Locality ID":null,"activate auto pricing":null,"deactivate auto pricing":null,"newest":null,"Sort":null,"price descending":null,"price ascending":null,"Availability":null,"Price Range":null,"Your order #:number is being processed. We'll keep you updated.":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we'd really love to receive your feedback. If you wish, you can leave us a product review.":null,"Don't hesitate to contact us for any questions.":null,"Your order #:number has been packed and is ready for shipping. We'll let you know once it's shipped.":null,"Cancellation request for :channel order #:number":null,"Store":null,"Fulfill":null,"Download order (xlsx)":null,"Download order (pdf)":null,"No email sent with the current order":null,"Issue Proforma":null,"No email sent with the current invoice":null,"Invoice emailed by":null,"Order emailed by":null,"Remove from stock":null,"Undo fulfill":null,"Insert in stock":null,"Prepare products":null,"Undo prepare":null,"Ship":null,"Undo ship":null,"Deliver":null,"Undo deliver":null,"Reference":null,"Confirm":null,"Undo confirm":null,"Receive":null,"Undo receive":null,"Download goods received note":null,"New Position":null,"Order #:number from :channel, placed by :person, has a new status update: :status":null,"Please take the necessary steps.":null,"A cancellation request was received for a :channel order.":null,"Sale":null,"The application is briefly unavailable for scheduled maintenance. Please check back in a few minutes":null,"Status update for order #:number":null,"Order #:number from :channel, placed by :person, has a new status update :status":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we’d really love to receive your feedback. If you wish, you can leave us a product review.":null,"Your order #:number has been shipped to the following address: :address":null,"Your order #:number has been packed and is ready for shipping. We’ll let you know once it’s shipped.":null,"Your order #:number is being processed. We’ll keep you updated.":null,"Your order #:number was delivered":null,"Your order #:number was shipped":null,"Your order #:number is ready to be shipped":null,"Your order #:number is being processed":null,"Author":null,"Subgenre":null,"Genre":null,"Number of Pages":null,"Year of Publication":null,"Collection":null,"Edition":null,"Publisher":null,"Translator":null,"A new account was created: :name":null,":days Days Returns":null,"Street line 1":null,"Street line 2":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Free Shipping":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Navigation":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Generated for order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"See cart":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"most popular":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us.":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please refresh your page to load the latest application version":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Editable time limit in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review for :product was updated by :person:":null,"A new product review for :product was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file +{"On Delivery":null,"Card Processor":null,"Not published":null,"marketplace offer":null,"marketplace product":null,"activate":null,"update measurements":null,"download":null,"download pictures":null,"Auto Pricing":null,"Documentation":null,"Date Filter":null," Bundle":null,"Emag Number":null,"Payment Method":null,"Create Payment":null,"Create Product":null,"Free Shipping Above":null,"Locker Service":null,"Courier Account":null,"Min Margin":null,"Max Price":null,"Min Price":null,"Auto AWB Generation":null,"Pagination":null,"Locality ID":null,"activate auto pricing":null,"deactivate auto pricing":null,"newest":null,"Sort":null,"price descending":null,"price ascending":null,"Availability":null,"Price Range":null,"Your order #:number is being processed. We'll keep you updated.":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we'd really love to receive your feedback. If you wish, you can leave us a product review.":null,"Don't hesitate to contact us for any questions.":null,"Your order #:number has been packed and is ready for shipping. We'll let you know once it's shipped.":null,"Cancellation request for :channel order #:number":null,"Store":null,"Fulfill":null,"Download order (xlsx)":null,"Download order (pdf)":null,"No email sent with the current order":null,"Issue Proforma":null,"No email sent with the current invoice":null,"Invoice emailed by":null,"Order emailed by":null,"Remove from stock":null,"Undo fulfill":null,"Insert in stock":null,"Prepare products":null,"Undo prepare":null,"Ship":null,"Undo ship":null,"Deliver":null,"Undo deliver":null,"Reference":null,"Confirm":null,"Undo confirm":null,"Receive":null,"Undo receive":null,"Download goods received note":null,"New Position":null,"Order #:number from :channel, placed by :person, has a new status update: :status":null,"Please take the necessary steps.":null,"A cancellation request was received for a :channel order.":null,"Sale":null,"The application is briefly unavailable for scheduled maintenance. Please check back in a few minutes":null,"Status update for order #:number":null,"Order #:number from :channel, placed by :person, has a new status update :status":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we’d really love to receive your feedback. If you wish, you can leave us a product review.":null,"Your order #:number has been shipped to the following address: :address":null,"Your order #:number has been packed and is ready for shipping. We’ll let you know once it’s shipped.":null,"Your order #:number is being processed. We’ll keep you updated.":null,"Your order #:number was delivered":null,"Your order #:number was shipped":null,"Your order #:number is ready to be shipped":null,"Your order #:number is being processed":null,"Author":null,"Subgenre":null,"Genre":null,"Number of Pages":null,"Year of Publication":null,"Collection":null,"Edition":null,"Publisher":null,"Translator":null,"A new account was created: :name":null,":days Days Returns":null,"Street line 1":null,"Street line 2":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Free Shipping":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Navigation":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"See cart":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"most popular":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please refresh your page to load the latest application version":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"This record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Editable time limit in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review for :product was updated by :person:":null,"A new product review for :product was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file diff --git a/lang/fr.json b/lang/fr.json index 04a6897ba..4e9cf2715 100644 --- a/lang/fr.json +++ b/lang/fr.json @@ -1 +1 @@ -{"Full Name":null,"deactivate auto pricing":null,"activate auto pricing":null,"Locality ID":null,"Pagination":null,"Auto AWB Generation":null,"Min Price":null,"Max Price":null,"Min Margin":null,"Courier Account":null,"Locker Service":null,"Free Shipping Above":null,"Create Payment":null,"Create Product":null,"Payment Method":null,"Emag Number":null," Bundle":null,"Date Filter":null,"Auto Pricing":null,"Documentation":null,"download pictures":null,"download":null,"update measurements":null,"activate":null,"marketplace product":null,"marketplace offer":null,"Not published":null,"Card Processor":null,"On Delivery":null,"newest":null,"Sort":null,"price descending":null,"price ascending":null,"Availability":null,"Price Range":null,"The application is briefly unavailable for scheduled maintenance. Please check back in a few minutes":null,"Sale":null,"A cancellation request was received for a :channel order.":null,"Please take the necessary steps.":null,"A cancellation request was received for a :channel order":null,"Order #:number from :channel, placed by :person, has a new status update: :status":null,"New Position":null,"Download goods received note":null,"Undo receive":null,"Receive":null,"Undo confirm":null,"Confirm":null,"Reference":null,"Undo deliver":null,"Deliver":null,"Undo ship":null,"Ship":null,"Undo prepare":null,"Prepare products":null,"Insert in stock":null,"Undo fulfill":null,"Remove from stock":null,"Order emailed by":null,"Invoice emailed by":null,"No email sent with the current invoice":null,"Issue Proforma":null,"No email sent with the current order":null,"Download order (pdf)":null,"Download order (xlsx)":null,"Fulfill":null,"Store":null,"Cancellation request for :channel order #:number":null,"Your order #:number is being processed. We'll keep you updated.":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we'd really love to receive your feedback. If you wish, you can leave us a product review.":null,"Don't hesitate to contact us for any questions.":null,"Your order #:number has been packed and is ready for shipping. We'll let you know once it's shipped.":null,"A :channel order cancellation request was received":null,"Status update for order #:number":null,"Order #:number from :channel, placed by :person, has a new status update :status":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we’d really love to receive your feedback. If you wish, you can leave us a product review.":null,"Your order #:number has been shipped to the following address: :address":null,"Your order #:number has been packed and is ready for shipping. We’ll let you know once it’s shipped.":null,"Your order #:number is being processed. We’ll keep you updated.":null,"Your order #:number was delivered":null,"Your order #:number was shipped":null,"Your order #:number is ready to be shipped":null,"Your order #:number is being processed":null,"Author":null,"Subgenre":null,"Genre":null,"Number of Pages":null,"Year of Publication":null,"Collection":null,"Edition":null,"Publisher":null,"Translator":null,"A new account was created: :name":null,":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Free Shipping":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Navigation":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Generated for order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"See cart":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"most popular":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us.":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please refresh your page to load the latest application version":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Editable time limit in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review for :product was updated by :person:":null,"A new product review for :product was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file +{"Full Name":null,"deactivate auto pricing":null,"activate auto pricing":null,"Locality ID":null,"Pagination":null,"Auto AWB Generation":null,"Min Price":null,"Max Price":null,"Min Margin":null,"Courier Account":null,"Locker Service":null,"Free Shipping Above":null,"Create Payment":null,"Create Product":null,"Payment Method":null,"Emag Number":null," Bundle":null,"Date Filter":null,"Auto Pricing":null,"Documentation":null,"download pictures":null,"download":null,"update measurements":null,"activate":null,"marketplace product":null,"marketplace offer":null,"Not published":null,"Card Processor":null,"On Delivery":null,"newest":null,"Sort":null,"price descending":null,"price ascending":null,"Availability":null,"Price Range":null,"The application is briefly unavailable for scheduled maintenance. Please check back in a few minutes":null,"Sale":null,"A cancellation request was received for a :channel order.":null,"Please take the necessary steps.":null,"A cancellation request was received for a :channel order":null,"Order #:number from :channel, placed by :person, has a new status update: :status":null,"New Position":null,"Download goods received note":null,"Undo receive":null,"Receive":null,"Undo confirm":null,"Confirm":null,"Reference":null,"Undo deliver":null,"Deliver":null,"Undo ship":null,"Ship":null,"Undo prepare":null,"Prepare products":null,"Insert in stock":null,"Undo fulfill":null,"Remove from stock":null,"Order emailed by":null,"Invoice emailed by":null,"No email sent with the current invoice":null,"Issue Proforma":null,"No email sent with the current order":null,"Download order (pdf)":null,"Download order (xlsx)":null,"Fulfill":null,"Store":null,"Cancellation request for :channel order #:number":null,"Your order #:number is being processed. We'll keep you updated.":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we'd really love to receive your feedback. If you wish, you can leave us a product review.":null,"Don't hesitate to contact us for any questions.":null,"Your order #:number has been packed and is ready for shipping. We'll let you know once it's shipped.":null,"A :channel order cancellation request was received":null,"Status update for order #:number":null,"Order #:number from :channel, placed by :person, has a new status update :status":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we’d really love to receive your feedback. If you wish, you can leave us a product review.":null,"Your order #:number has been shipped to the following address: :address":null,"Your order #:number has been packed and is ready for shipping. We’ll let you know once it’s shipped.":null,"Your order #:number is being processed. We’ll keep you updated.":null,"Your order #:number was delivered":null,"Your order #:number was shipped":null,"Your order #:number is ready to be shipped":null,"Your order #:number is being processed":null,"Author":null,"Subgenre":null,"Genre":null,"Number of Pages":null,"Year of Publication":null,"Collection":null,"Edition":null,"Publisher":null,"Translator":null,"A new account was created: :name":null,":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Free Shipping":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Navigation":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"See cart":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"most popular":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please refresh your page to load the latest application version":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"This record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Editable time limit in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review for :product was updated by :person:":null,"A new product review for :product was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file diff --git a/lang/hu.json b/lang/hu.json index 04a6897ba..4e9cf2715 100644 --- a/lang/hu.json +++ b/lang/hu.json @@ -1 +1 @@ -{"Full Name":null,"deactivate auto pricing":null,"activate auto pricing":null,"Locality ID":null,"Pagination":null,"Auto AWB Generation":null,"Min Price":null,"Max Price":null,"Min Margin":null,"Courier Account":null,"Locker Service":null,"Free Shipping Above":null,"Create Payment":null,"Create Product":null,"Payment Method":null,"Emag Number":null," Bundle":null,"Date Filter":null,"Auto Pricing":null,"Documentation":null,"download pictures":null,"download":null,"update measurements":null,"activate":null,"marketplace product":null,"marketplace offer":null,"Not published":null,"Card Processor":null,"On Delivery":null,"newest":null,"Sort":null,"price descending":null,"price ascending":null,"Availability":null,"Price Range":null,"The application is briefly unavailable for scheduled maintenance. Please check back in a few minutes":null,"Sale":null,"A cancellation request was received for a :channel order.":null,"Please take the necessary steps.":null,"A cancellation request was received for a :channel order":null,"Order #:number from :channel, placed by :person, has a new status update: :status":null,"New Position":null,"Download goods received note":null,"Undo receive":null,"Receive":null,"Undo confirm":null,"Confirm":null,"Reference":null,"Undo deliver":null,"Deliver":null,"Undo ship":null,"Ship":null,"Undo prepare":null,"Prepare products":null,"Insert in stock":null,"Undo fulfill":null,"Remove from stock":null,"Order emailed by":null,"Invoice emailed by":null,"No email sent with the current invoice":null,"Issue Proforma":null,"No email sent with the current order":null,"Download order (pdf)":null,"Download order (xlsx)":null,"Fulfill":null,"Store":null,"Cancellation request for :channel order #:number":null,"Your order #:number is being processed. We'll keep you updated.":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we'd really love to receive your feedback. If you wish, you can leave us a product review.":null,"Don't hesitate to contact us for any questions.":null,"Your order #:number has been packed and is ready for shipping. We'll let you know once it's shipped.":null,"A :channel order cancellation request was received":null,"Status update for order #:number":null,"Order #:number from :channel, placed by :person, has a new status update :status":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we’d really love to receive your feedback. If you wish, you can leave us a product review.":null,"Your order #:number has been shipped to the following address: :address":null,"Your order #:number has been packed and is ready for shipping. We’ll let you know once it’s shipped.":null,"Your order #:number is being processed. We’ll keep you updated.":null,"Your order #:number was delivered":null,"Your order #:number was shipped":null,"Your order #:number is ready to be shipped":null,"Your order #:number is being processed":null,"Author":null,"Subgenre":null,"Genre":null,"Number of Pages":null,"Year of Publication":null,"Collection":null,"Edition":null,"Publisher":null,"Translator":null,"A new account was created: :name":null,":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Free Shipping":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Navigation":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Generated for order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"See cart":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"most popular":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us.":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please refresh your page to load the latest application version":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Editable time limit in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review for :product was updated by :person:":null,"A new product review for :product was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file +{"Full Name":null,"deactivate auto pricing":null,"activate auto pricing":null,"Locality ID":null,"Pagination":null,"Auto AWB Generation":null,"Min Price":null,"Max Price":null,"Min Margin":null,"Courier Account":null,"Locker Service":null,"Free Shipping Above":null,"Create Payment":null,"Create Product":null,"Payment Method":null,"Emag Number":null," Bundle":null,"Date Filter":null,"Auto Pricing":null,"Documentation":null,"download pictures":null,"download":null,"update measurements":null,"activate":null,"marketplace product":null,"marketplace offer":null,"Not published":null,"Card Processor":null,"On Delivery":null,"newest":null,"Sort":null,"price descending":null,"price ascending":null,"Availability":null,"Price Range":null,"The application is briefly unavailable for scheduled maintenance. Please check back in a few minutes":null,"Sale":null,"A cancellation request was received for a :channel order.":null,"Please take the necessary steps.":null,"A cancellation request was received for a :channel order":null,"Order #:number from :channel, placed by :person, has a new status update: :status":null,"New Position":null,"Download goods received note":null,"Undo receive":null,"Receive":null,"Undo confirm":null,"Confirm":null,"Reference":null,"Undo deliver":null,"Deliver":null,"Undo ship":null,"Ship":null,"Undo prepare":null,"Prepare products":null,"Insert in stock":null,"Undo fulfill":null,"Remove from stock":null,"Order emailed by":null,"Invoice emailed by":null,"No email sent with the current invoice":null,"Issue Proforma":null,"No email sent with the current order":null,"Download order (pdf)":null,"Download order (xlsx)":null,"Fulfill":null,"Store":null,"Cancellation request for :channel order #:number":null,"Your order #:number is being processed. We'll keep you updated.":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we'd really love to receive your feedback. If you wish, you can leave us a product review.":null,"Don't hesitate to contact us for any questions.":null,"Your order #:number has been packed and is ready for shipping. We'll let you know once it's shipped.":null,"A :channel order cancellation request was received":null,"Status update for order #:number":null,"Order #:number from :channel, placed by :person, has a new status update :status":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we’d really love to receive your feedback. If you wish, you can leave us a product review.":null,"Your order #:number has been shipped to the following address: :address":null,"Your order #:number has been packed and is ready for shipping. We’ll let you know once it’s shipped.":null,"Your order #:number is being processed. We’ll keep you updated.":null,"Your order #:number was delivered":null,"Your order #:number was shipped":null,"Your order #:number is ready to be shipped":null,"Your order #:number is being processed":null,"Author":null,"Subgenre":null,"Genre":null,"Number of Pages":null,"Year of Publication":null,"Collection":null,"Edition":null,"Publisher":null,"Translator":null,"A new account was created: :name":null,":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Free Shipping":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Navigation":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"See cart":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"most popular":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please refresh your page to load the latest application version":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"This record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Editable time limit in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review for :product was updated by :person:":null,"A new product review for :product was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file diff --git a/lang/mn.json b/lang/mn.json index 2820ec7ee..fb268c388 100644 --- a/lang/mn.json +++ b/lang/mn.json @@ -1 +1 @@ -{"Full Name":null,"deactivate auto pricing":null,"activate auto pricing":null,"Locality ID":null,"Pagination":null,"Auto AWB Generation":null,"Min Price":null,"Max Price":null,"Min Margin":null,"Courier Account":null,"Locker Service":null,"Free Shipping Above":null,"Create Payment":null,"Create Product":null,"Payment Method":null,"Emag Number":null," Bundle":null,"Date Filter":null,"Auto Pricing":null,"Documentation":null,"download pictures":null,"download":null,"update measurements":null,"activate":null,"marketplace product":null,"marketplace offer":null,"Not published":null,"Card Processor":null,"On Delivery":null,"newest":null,"Sort":null,"price descending":null,"price ascending":null,"Availability":null,"Price Range":null,"The application is briefly unavailable for scheduled maintenance. Please check back in a few minutes":null,"Sale":null,"A cancellation request was received for a :channel order.":null,"Please take the necessary steps.":null,"A cancellation request was received for a :channel order":null,"Order #:number from :channel, placed by :person, has a new status update: :status":null,"New Position":null,"Download goods received note":null,"Undo receive":null,"Receive":null,"Undo confirm":null,"Confirm":null,"Reference":null,"Undo deliver":null,"Deliver":null,"Undo ship":null,"Ship":null,"Undo prepare":null,"Prepare products":null,"Insert in stock":null,"Undo fulfill":null,"Remove from stock":null,"Order emailed by":null,"Invoice emailed by":null,"No email sent with the current invoice":null,"Issue Proforma":null,"No email sent with the current order":null,"Download order (pdf)":null,"Download order (xlsx)":null,"Fulfill":null,"Store":null,"Cancellation request for :channel order #:number":null,"Your order #:number is being processed. We'll keep you updated.":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we'd really love to receive your feedback. If you wish, you can leave us a product review.":null,"Don't hesitate to contact us for any questions.":null,"Your order #:number has been packed and is ready for shipping. We'll let you know once it's shipped.":null,"A :channel order cancellation request was received":null,"Status update for order #:number":null,"Order #:number from :channel, placed by :person, has a new status update :status":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we’d really love to receive your feedback. If you wish, you can leave us a product review.":null,"Your order #:number has been shipped to the following address: :address":null,"Your order #:number has been packed and is ready for shipping. We’ll let you know once it’s shipped.":null,"Your order #:number is being processed. We’ll keep you updated.":null,"Your order #:number was delivered":null,"Your order #:number was shipped":null,"Your order #:number is ready to be shipped":null,"Navigation":null,"Your order #:number is being processed":null,"Author":null,"Subgenre":null,"Genre":null,"Number of Pages":null,"Year of Publication":null,"Collection":null,"Edition":null,"Publisher":null,"Translator":null,"A new account was created: :name":null,":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Free Shipping":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Generated for order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"See cart":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"most popular":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us.":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please refresh your page to load the latest application version":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Editable time limit in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review for :product was updated by :person:":null,"A new product review for :product was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file +{"Full Name":null,"deactivate auto pricing":null,"activate auto pricing":null,"Locality ID":null,"Pagination":null,"Auto AWB Generation":null,"Min Price":null,"Max Price":null,"Min Margin":null,"Courier Account":null,"Locker Service":null,"Free Shipping Above":null,"Create Payment":null,"Create Product":null,"Payment Method":null,"Emag Number":null," Bundle":null,"Date Filter":null,"Auto Pricing":null,"Documentation":null,"download pictures":null,"download":null,"update measurements":null,"activate":null,"marketplace product":null,"marketplace offer":null,"Not published":null,"Card Processor":null,"On Delivery":null,"newest":null,"Sort":null,"price descending":null,"price ascending":null,"Availability":null,"Price Range":null,"The application is briefly unavailable for scheduled maintenance. Please check back in a few minutes":null,"Sale":null,"A cancellation request was received for a :channel order.":null,"Please take the necessary steps.":null,"A cancellation request was received for a :channel order":null,"Order #:number from :channel, placed by :person, has a new status update: :status":null,"New Position":null,"Download goods received note":null,"Undo receive":null,"Receive":null,"Undo confirm":null,"Confirm":null,"Reference":null,"Undo deliver":null,"Deliver":null,"Undo ship":null,"Ship":null,"Undo prepare":null,"Prepare products":null,"Insert in stock":null,"Undo fulfill":null,"Remove from stock":null,"Order emailed by":null,"Invoice emailed by":null,"No email sent with the current invoice":null,"Issue Proforma":null,"No email sent with the current order":null,"Download order (pdf)":null,"Download order (xlsx)":null,"Fulfill":null,"Store":null,"Cancellation request for :channel order #:number":null,"Your order #:number is being processed. We'll keep you updated.":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we'd really love to receive your feedback. If you wish, you can leave us a product review.":null,"Don't hesitate to contact us for any questions.":null,"Your order #:number has been packed and is ready for shipping. We'll let you know once it's shipped.":null,"A :channel order cancellation request was received":null,"Status update for order #:number":null,"Order #:number from :channel, placed by :person, has a new status update :status":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we’d really love to receive your feedback. If you wish, you can leave us a product review.":null,"Your order #:number has been shipped to the following address: :address":null,"Your order #:number has been packed and is ready for shipping. We’ll let you know once it’s shipped.":null,"Your order #:number is being processed. We’ll keep you updated.":null,"Your order #:number was delivered":null,"Your order #:number was shipped":null,"Your order #:number is ready to be shipped":null,"Navigation":null,"Your order #:number is being processed":null,"Author":null,"Subgenre":null,"Genre":null,"Number of Pages":null,"Year of Publication":null,"Collection":null,"Edition":null,"Publisher":null,"Translator":null,"A new account was created: :name":null,":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Free Shipping":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"See cart":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"most popular":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please refresh your page to load the latest application version":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"This record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Editable time limit in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review for :product was updated by :person:":null,"A new product review for :product was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file diff --git a/lang/nl.json b/lang/nl.json index b249b3a1b..ec957cc38 100644 --- a/lang/nl.json +++ b/lang/nl.json @@ -1 +1 @@ -{"Full Name":null,"deactivate auto pricing":null,"activate auto pricing":null,"Locality ID":null,"Pagination":null,"Auto AWB Generation":null,"Min Price":null,"Max Price":null,"Min Margin":null,"Courier Account":null,"Locker Service":null,"Free Shipping Above":null,"Create Payment":null,"Create Product":null,"Payment Method":null,"Emag Number":null," Bundle":null,"Date Filter":null,"Auto Pricing":null,"Documentation":null,"download pictures":null,"download":null,"update measurements":null,"activate":null,"marketplace product":null,"marketplace offer":null,"Not published":null,"Card Processor":null,"On Delivery":null,"newest":null,"Sort":null,"price descending":null,"price ascending":null,"Availability":null,"Price Range":null,"The application is briefly unavailable for scheduled maintenance. Please check back in a few minutes":null,"Sale":null,"A cancellation request was received for a :channel order.":null,"Please take the necessary steps.":null,"A cancellation request was received for a :channel order":null,"Order #:number from :channel, placed by :person, has a new status update: :status":null,"New Position":null,"Download goods received note":null,"Undo receive":null,"Receive":null,"Undo confirm":null,"Confirm":null,"Reference":null,"Undo deliver":null,"Deliver":null,"Undo ship":null,"Ship":null,"Undo prepare":null,"Prepare products":null,"Insert in stock":null,"Undo fulfill":null,"Remove from stock":null,"Order emailed by":null,"Invoice emailed by":null,"No email sent with the current invoice":null,"Issue Proforma":null,"No email sent with the current order":null,"Download order (pdf)":null,"Download order (xlsx)":null,"Fulfill":null,"Store":null,"Cancellation request for :channel order #:number":null,"Your order #:number is being processed. We'll keep you updated.":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we'd really love to receive your feedback. If you wish, you can leave us a product review.":null,"Don't hesitate to contact us for any questions.":null,"Your order #:number has been packed and is ready for shipping. We'll let you know once it's shipped.":null,"A :channel order cancellation request was received":null,"Status update for order #:number":null,"Order #:number from :channel, placed by :person, has a new status update :status":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we’d really love to receive your feedback. If you wish, you can leave us a product review.":null,"Your order #:number has been shipped to the following address: :address":null,"Your order #:number has been packed and is ready for shipping. We’ll let you know once it’s shipped.":null,"Your order #:number is being processed. We’ll keep you updated.":null,"Your order #:number was delivered":null,"Your order #:number was shipped":null,"Your order #:number is ready to be shipped":null,"Your order #:number is being processed":null,"Author":null,"Subgenre":null,"Genre":null,"Number of Pages":null,"Year of Publication":null,"Collection":null,"Edition":null,"Publisher":null,"Translator":null,"A new account was created: :name":null,":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Company Name":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Free Shipping":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Navigation":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Generated for order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"See cart":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"most popular":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us.":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please refresh your page to load the latest application version":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Editable time limit in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review for :product was updated by :person:":null,"A new product review for :product was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file +{"Full Name":null,"deactivate auto pricing":null,"activate auto pricing":null,"Locality ID":null,"Pagination":null,"Auto AWB Generation":null,"Min Price":null,"Max Price":null,"Min Margin":null,"Courier Account":null,"Locker Service":null,"Free Shipping Above":null,"Create Payment":null,"Create Product":null,"Payment Method":null,"Emag Number":null," Bundle":null,"Date Filter":null,"Auto Pricing":null,"Documentation":null,"download pictures":null,"download":null,"update measurements":null,"activate":null,"marketplace product":null,"marketplace offer":null,"Not published":null,"Card Processor":null,"On Delivery":null,"newest":null,"Sort":null,"price descending":null,"price ascending":null,"Availability":null,"Price Range":null,"The application is briefly unavailable for scheduled maintenance. Please check back in a few minutes":null,"Sale":null,"A cancellation request was received for a :channel order.":null,"Please take the necessary steps.":null,"A cancellation request was received for a :channel order":null,"Order #:number from :channel, placed by :person, has a new status update: :status":null,"New Position":null,"Download goods received note":null,"Undo receive":null,"Receive":null,"Undo confirm":null,"Confirm":null,"Reference":null,"Undo deliver":null,"Deliver":null,"Undo ship":null,"Ship":null,"Undo prepare":null,"Prepare products":null,"Insert in stock":null,"Undo fulfill":null,"Remove from stock":null,"Order emailed by":null,"Invoice emailed by":null,"No email sent with the current invoice":null,"Issue Proforma":null,"No email sent with the current order":null,"Download order (pdf)":null,"Download order (xlsx)":null,"Fulfill":null,"Store":null,"Cancellation request for :channel order #:number":null,"Your order #:number is being processed. We'll keep you updated.":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we'd really love to receive your feedback. If you wish, you can leave us a product review.":null,"Don't hesitate to contact us for any questions.":null,"Your order #:number has been packed and is ready for shipping. We'll let you know once it's shipped.":null,"A :channel order cancellation request was received":null,"Status update for order #:number":null,"Order #:number from :channel, placed by :person, has a new status update :status":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we’d really love to receive your feedback. If you wish, you can leave us a product review.":null,"Your order #:number has been shipped to the following address: :address":null,"Your order #:number has been packed and is ready for shipping. We’ll let you know once it’s shipped.":null,"Your order #:number is being processed. We’ll keep you updated.":null,"Your order #:number was delivered":null,"Your order #:number was shipped":null,"Your order #:number is ready to be shipped":null,"Your order #:number is being processed":null,"Author":null,"Subgenre":null,"Genre":null,"Number of Pages":null,"Year of Publication":null,"Collection":null,"Edition":null,"Publisher":null,"Translator":null,"A new account was created: :name":null,":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Company Name":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Free Shipping":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Navigation":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"See cart":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"most popular":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please refresh your page to load the latest application version":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"This record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Editable time limit in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review for :product was updated by :person:":null,"A new product review for :product was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file diff --git a/lang/ro.json b/lang/ro.json index 62e570a5d..38c23dd92 100644 --- a/lang/ro.json +++ b/lang/ro.json @@ -1 +1 @@ -{":name export done":"Export :name efectuat",":name export started":"Exportul :name a început",":type import done":"Import :type efectuat","#":"#","30 days":"30 zile","7 days":"7 zile","A fresh verification link has been sent to your email address.":"Am trimis un nou link de verificare pe adresa dvs. de e-mail","About this brand":"Despre acest brand","About Us":"Despre noi","Above":"Deasupra","Accessories":"Accesorii","Account details":"Detalii cont","Account":"Cont","account":"cont","Acidity":"Aciditate","Acquisition Price":"Preț achiziție","Acquisition Value":"Valoare achiziție","Actions":"Acțiuni","actions":"acțiuni","Active":"Activ","active":"activ","Activity Log":"Activitate","Start Date":"Incepere activitate","Activity":"Activitate","Add :entity":"Adaugă :entity","Add address":"Adaugă adresă","Add Brand":"Adaugă brand","Add card":"Adaugă card","Add Card":"Adaugă card","Add Comment":"Adaugă comentariu","Add company":"Adaugă companie","Add File":"Adaugă fișier","Add Key":"Adaugă cheie","Add Payment":"Adaugă plată","Add to cart":"Adaugă în coș","Add to favorites":"Adaugă la favorite","Add video":"Adaugă clip","Add":"Adaugă","Adding":"Se adaugă","Additional":"Adițional","Address is missing or does not have lat\/long":"Adresa lipseste sau nu are latitudine \/ longitudine","Address":"Adresa","Addresses":"Adrese","Adjustment":"Reglaj","Administration":"Administrare","administration":"administrare","Administrative Area":"Administrare","Again Colors":"Din nou, culori","Agent":"Agent","Algolia":null,"All Menu Items":"Toate elementele","All Products":"Toate Produsele","All products":"Toate produsele","all products":"toate produsele","All rights reserved.":"Toate drepturile rezervate.","all":"tot","Allocated To":"Atribuit către","Amazing Saving":"Preț avantajos","Free Shipping":"Transport Gratuit","Amount":"Suma","An error has occured. Please report this to the administrator":"S-a inregistrat o eroare. Raporteaza acest fapt administratorului","An error was encountered while generationg :export":"A aparut o eroare la generarea exportului :export","An export job is already running for the same table":"Un export este deja in curs pt acelasi tabel","An unknown error occurred while submitting your report. Please try again.":"A fost o eroare la trimiterea mesajului tau. Te rugam sa reincerci.","Analytics Id":null,"Apartment":"Apartament","App Key":null,"App":"App","Appellative":"Apelativ","Approved Documentation":"Documentație aprobată","Approved":"Aprobat","April":"Aprilie","Aprovizionari":null,"Are you sure that you want to delete the template file?":"Esti sigur ca vrei sa stergi fisierul macheta?","Are you sure?":"Esti sigur?","Assign":"Asociaza","Associate Person":"Asociaza persoana","attribute groups":"grupuri de atribute","Audit":null,"audit":null,"Authors":"Autori","Available menus":"Meniuri disponibile","Available slides":"Diapozitive disponibile","Avatar":"Avatar","Avenue":"Bulevard","Awaiting Brand validation":"Se așteaptă validarea brandului","Awaiting Documentation Validation":"Se așteaptă validarea documentației","Awaiting EAN validation":"Se așteaptă validarea EAN","Awaiting MKTP validation":"Se așteaptă validarea MKTP","Award List":"Lista premiilor","Awards":"Premii","Azzure":"Azur","Back":"Inapoi","Backed by":"Sustinut de","Bag":"Pungă","Bank Account":"Cont bancar","Bank":"Banca","Be the first to review this product":"Fii primul care evaluează acest produs","Before proceeding, please check your email for a verification link.":"Înainte de a continua, te rugăm să verifici e-mailul pentru link-ul de verificare.","Below":"Dedesubt","Bend":"Aplecare","Besel":null,"Best Seller":"Cel mai vândut","Between":"Intre","Billing Address":"Adresa de facturare","Birthday":"Data nasterii","birthday":"data nasterii","Birthdays":"Zile de naștere","Blank":"Blank","Blocked":"Blocat","Bookmarks":"Favorite","Bottled Weight":"Greutate îmbuteliată","Boulevard":"Bulevard","Box":"Cutie","Brand Count":"Numar de branduri","Brands":"Branduri","brands":"branduri","BTL":null,"Bucharest":"Bucuresti","Building Type":"Tip cladire","Building":"Cladire","building":"cladire","built with":"construit cu","Business hours":"Program de lucru","Butons":"Butoane","Button Item":"Element Buton","Buttons":"Butoane","buttons":"butoane","By":"De","Calendar":null,"calendar":null,"Calendars":"Calendare","Calories per 100g":"Calorii per 100g","Cancel":"Anuleaza","Cancelled":"Anulat","cancelled":"anulat","Cantitate":null,"Card number":"Număr card","Cardholder name":"Nume deținător card","Carousel":"Carusel","carousel":"carusel","Carrier":"Curier","Cart is empty":"Coșul este gol","Cart Summary":"Sumar cos","Cart Validity Days":"Validitatea cosului in zile","Cart":"Cos","Pay on Delivery":"Plătește la Livrare","Cash Register Receipt":"Bon fiscal","Catalog":null,"Categories":"Categorii","Navigation":"Navigare","categories":"categorii","Category":"Categorie","Channel":"Canal","Characteristics":"Caracteristici","Cheque":"Cec","Choose language":"Alege limba","Choose your payment method":"Alege metoda de plata","Choose":"Alege","City Population by Age":"Populatia in functie de varsta","City":"Oras","Clear all":"Sterge tot","click here to request another":"apasă aici pentru a solicita altul","Client (company)":"Client (companie)","Client (person)":"Client (persoana)","Client Discounts":"Reduceri pentru clienți","Client Invoices":"Facturi clienti","Client Order Reference":"Referința clientului","Client Payment":"Plati clienti","Client Payments":"Plati clienti","Client Reference":"Referință client","Client Stock":"Stoc client","Client Stocks":"Stocuri client","Client":"Client","Clienti":null,"Clients":"Clienti","clients":"clienți","Close":"Inchide","Code":"Cod","Coding":"Codare","Collapse Main Menu":"Restrange meniu principal","Colors Two":"Culori, doi","Colors":"Culori","Coming Soon":"În Curând","Comments":"Comentarii","Commercial":"Comercial","commercial":"comercial","Companies":"Companii","companies":"companii","Company client":"Client companie","Company":"Companie","company":"companie","Completed":"Finalizat","Configure Role":"Configureaza rol","Configure":"Configureaza","configure":"configureaza","Confirm Password":"Confirmare parolă","Confirmed":"Confirmat","Contact Bar Text":"Text bara de contact","contact form":"formular de contact","Contact Form":"Formular de Contact","Contact us with any questions or concerns that you may have and we will get back to you shortly":"Contactează-ne pentru orice întrebări sau nelămuriri și îți vom răspunde în curând","Contact":"Contact","Contacts Index":"Index contacte","Contacts":"Contacte","contacts":"contacte","Content Private":"Continut privat","Content":"Continut","Continue":"Continua","Copied to clipboard":"Copiat in clipboard","Copyright © 2016":"Copyright © 2016","Core":"Core","Country of Origin":"Țara de origine","Country":"Tara","County":"Judet","Courier Service":"Serviciu de curierat","Create a new Entity":"Creeaza o noua entitate","Create a new User":"Creeaza user","Create Button":"Creeaza buton","Create Company":"Creeaza companie","Create Differences Sale":"Genereaza vanzare cu diferente","Create Group":"Creeaza grup","create group":"creeaza grup","Create Language":"Creeaza limba","Create Menu":"Creeaza meniu","Create Owner":"Creaza owner","Create Permission Group":"Creeaza grup permisii","Create Permission":"Creeaza permisie","Create Permissions Group":"Creeaza grup permisii","Create Person":"Creeaza persoana","Create Resource":"Creaza resursa","Create Role":"Creeaza rol","Create Tutorial":"Creeaza tutorial","Create User Group":"Creeaza grup useri","Create User":"Creeaza user","Create":"Creeaza","create":"creeaza","Created Address":"Adresa creata","Created At":"Creat la","Created at":"Creat la","Created By":"Creat de","Created Contact":"Contact creat","Created":"Creat","created":"creat","Currency Placed Before":"Valuta plasata inainte","Current file size is":"Marimea fisierului este","custom":"personalizat","Customer opinions":"Opiniile clienților","Cycling":"Ciclism","Danger":"Pericol","Dashboard":"Dashboard","dashboard":"dashboard","Data Import":"Import date","data import":"import date","Date":"Data","Default Address":"Adresa implicita","Default Menu":"Meniu implicit","Default":"Implicit","default":"implicit","Delete Avatar":"Sterge Avatar","Delete File":"Sterge Fisier","Delete Template":"Sterge template","Delete video":"Sterge clip","Delete":"Sterge","delete":"sterge","deleted":"sters","Delivered":"Livrat","Description":"Descriere","deselect":"deselecteaza","Designing":"Designing","details":"detalii","Details":"Detalii","Diameter":"Diametru","Direct Link":"Link direct","Discount":"Reducere","Discounts":"Discounturi","discounts":"discounturi","Discussions":"Discutii","Display Name":"Nume Afisat","Documents":"Documente","documents":"documente","Don't have an account?":"Nu ai cont?","Download Delivery Note":"Descarca nota de livrare","Download Excel Sale Offer":"Descarca oferta vanzare (excel)","Download Excel Sale Return Offer":"Descarca oferta de retur (excel)","Download Invoice (long click for cancel)":"Descarca factura (click lung pt anulare factura)","Download Payment (long click for cancel)":"Descarca plata (click lung pt anulare plata)","Download Sale Offer":"Descarca oferta vanzare","Download Sale Return Offer":"Download oferta de retur","Download Stock Removal":"Descarca fisa scoatere din stoc","Download Template":"Descarca template","Download":"Descarca","Drag And Drop":"Drag And Drop","Drinking":null,"Due Date":"Scadenta","E-Mail Address":"Adresă de e-mail","Eating":"Mancand","EAV":null,"eav":null,"Edit Button":"Editeaza buton","Edit Company":"Editeaza companie","Edit Invoice":"Editeaza factura","Edit Language":"Editeaza limba","Edit Menu":"Editeaza meniu","Edit Owner":"Editeaza owner","Edit Permission Group":"Editeaza grup permisii","Edit Permission":"Editeaza permisie","Edit Permissions Group":"Editeaza grup permisii","Edit Person":"Editeaza persoana","Edit personal details":"Editeaza detaliile personale","Edit Role":"Editeaza rol","Edit Texts":"Editeaza texte","edit texts":"editeaza texte","Edit Tutorial":"Editeaza tutorial","Edit User Group":"Editeaza grup useri","Edit User":"Editeaza user","Edit":"Editeaza","edit":"editeaza","Editable Limit":"Limita modificari","edited":"editat","Element":"Element","Emag Active Offer":"Oferta activa Emag","Emag documentatie":null,"Emag Offer":"Oferta Emag","Emag pret":null,"Emag Price":"Pret Emag","Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":"Emailul poate fi editat doar prin formularul de user","Email":"Email","Emailed At":"Trimis prin e-mail la","Emailed":"Email","Enabled":"Activat","End":"Sfarsit","Enter Fulfilling Mode":"Acceseaza modul Efectuare","Enter the application":"Intra in aplicatie","Enter warehouse mode":"Intra in mod magazie","Enter Warehouse Mode":"Paraseste modul Depozit","Entities":"Entitati","entities":"entitati","Entity Details":"Detalii entitate","Entity":"Entitate","entity":"entitate","Entries":"Intrari","entries":"intrari","Entry":"Intrare","entry":"intrare","Error":"Eroare","Events":"Evenimente","Excel":"Excel","Expanded Menu":"Meniu colapsat","Expiration Date":"Data expirare","Export available for download: :filename":"Export :filename disponibil pentru descarcare","Export Done":"Export efectuat","Export emailed: :filename":"Export :filename trimis pe email","Export emailed":"Export trimis pe mail","Export error":"Eroare la exportare","Export Notification":"Notificare export","Export started":"Export inceput","Export":"Export","export":"export","exporting rejected":"export refuzate","exports":"exporturi","External":"Extern","Extra Virgin Olive Oils":"Ulei de măsline extravirgin","Facturi clienti":null,"Facturi furnizori":null,"Failed":"Esuat","failed":"esuat","FAQ":null,"Favorites":"Favorite","Favourite products":"Produse favorite","Fax Number":"Numar fax","Fax":"Fax","FEATURED BRANDS":"BRANDURI PROMOVATE","Featured Brands":"Branduri Promovate","Feb":"Feb","February":"Februarie","File name":"Nume fisier","File Size":"Marime fisier","File":"Fisier","File(s)":"Fisier(e)","Files were uploaded successfully":"Fisierele au fost incarcate","Files":"Fisiere","files":"fisiere","Fill":"Completeaza","Filter by name or code":"Filtreaza dupa nume sau cod","Filter":"Filtru","filtered from":"filtrate din","filtered":"filtrat","Filters":"Filtre","Finalize order":"Finalizează comanda","Finalize":"Finalizeaza","Finalized":"Finalizat","finalized":"finalizat","Financial Overview":"Prezentare Financiară","Financials":"Financiar","financials":"financiar","find matches":"găsește potriviri","First Name":"Prenume","Fiscal Code":"Cod fiscal","Fiscal Invoice":"Factura fiscala","Fiscal":null,"Flag Icon Class":"Clasa iconita steag","Flag Sufix":"Sufix steag","Flag":"Steag","Floor":"Etaj","floor":"etaj","Forbidden":"Interzis","Forgot Password?":"Ai uitat parola?","Forgot password":"Parola uitata","Forgot Your Password?":"Ai uitat parola?","Found :total results":":total rezultate gasite","Friday":"Vineri","Frisbo":null,"From":"De la","from":"de la","Fulfilled At":"Efectuat la","Fulfilling":"În procesare","Furnizor":null,"Gender":"Gen","General Settings":"Setari generale","General":null,"Generate":"Genereaza","Generated for order #:number":"Generat pt comanda #:number","Geneva":"Geneva","Get in touch with us":"Contacteaza-ne","Go Home":"Acasă","Google":null,"Got it!":"Am înțeles!","Green":"Verde","Group":"Grup","Groups":"Grupuri","Habits":"Obiceiuri","Harvest 2016\/2017":"Recolta 2016\/2017","Harvest 2017\/2018":"Recolta 2017\/2018","Harvest 2018\/2019":"Recolta 2018\/2019","Harvest 2019\/2020":"Recolta 2019\/2020","Harvest":"Recolta","Has Children":"Are submeniu","Height":"Înălţime","Hello!":"Salut!","Hello":"Salut","Herbs":"Plante aromatice","here":"aici","Hi :name,":"Salut :name,","Hi :name":"Salut :name","Home":"Acasa","Homepage":"Pagina principală","How To Videos":"Clipuri","how to videos":"clipuri","I agree to the":"Sunt de acord cu","I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":"Autorizez :name sa trimita instructiuni institutiei financiare care a emis cardul meu pentru a face plati din contul meu bancar in momentul achizitiei de catre mine a produselor de pe siteul :name","I authorise":"Autorizez","Ian":"Ian","Icon Class":"Clasa icoana","Icon":"Icoana","If you are having trouble clicking the action button, copy and paste the URL below":"Daca întampini dificultati in a accesa butonul, copiază adresa de mai jos","If you did not create an account, no further action is required.":"Dacă nu ai creat un cont, poți ignora acest mesaj.","If you did not receive the email":"Dacă nu ai primit e-mailul","If you did not request a password reset, no further action is required.":"Dacă nu ai solicitat o resetare de parolă, poți ignora acest mesaj.","If you’d like to help, tell us what happened below.":"Daca vrei sa ajuti, noteaza mai jos ce s-a intamplat","IFSC":"CIF","Impersonate":"Impersoneaza","Impersonating":"Impersonare","Import Summary":"Sumar import","Import Type":"Tip import","Import":"Import","Importance":"Importanţă","Important":"Important","Imported At":"Importat la","Imported By":"Importat de","Imported Entries":"Intrari importate","ImportType":"Tip import","In a few minutes you will receive a confirmation email":"In cateva minute vei primi un email de confirmare","In Stock":"In stoc","in stock":"în stoc",":days Days Returns":"Retur Gratuit in :days zile","24h Tracked Shipping":"Livrare cu Tracking in 24h","100% Original Products":"Produse 100% Originale","Secure Payments":"Plati securizate","Income":"Venit","index":"index","Indications":"Indicații","Individual":"Persoana Fizica","Industrial":"Industrial","Info":null,"Ingredients":"Ingrediente","Integrations":"Integrări","Internal #":"Cod intern","Internal Code":"Cod intern","Internal":"Intern","into your web browser":"in browserul dvs.","Invalid signature.":"Semnătură incorectă.","Invalid":null,"Inventory":"Inventar","inventory":"inventar","Invoice Emailed":"Email factura","Invoice for order # :number":"Factura pentru comanda # :number","Invoice for order":"Factura pentru comanda","invoice":"factura","invoices":"facturi","Invoices":"Facturi","Is Active":"Este Activ","Is Cancelled":"Anulat","Is Default":"Este implicit","is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":"Emite factura","Issue Payment":"Adauga plata","Issues":"Probleme","It looks like we’re having issues.":"Se pare ca intampinam probleme","Item":"Articol","items":"articole","Items":"Articole","Jams":"Gemuri","January":"Ianuarie","Jar":"Borcan","July":"Iulie","June":"Iunie","Keep tables configurations":"Pastreaza configuratia tabelelor","Key Collector":"Colector chei","Key Name":"Denumire cheie","Key Value":"Valoare cheie","Key":"Cheie","keys found":"chei gasite","Label Generator":"Generator etichete","Label":"Etichetă","Labels":"Etichete","labels":"etichete","Lane":"Alee","Language Item":"Element limba","Language":"Limba","Languages":"Limbi","languages":"limbi","Last Modified":"Ultima modificare","last month":"luna trecuta","Last Name":"Nume","Last updated":"Ultima modificare","last week":"saptamana trecuta","last year":"anul trecut","Learn more":"Află mai multe","Leave Fulfilling Mode":"Paraseste modul Efectuare","Leave Warehouse Mode":"Acceseaza modul Depozit","Left":"Stanga","Length":"Lungime","limited quantity":"cantitate limitată","Limited Stock Limit":"Pragul pt stoc limitat","Limited Stock":"Stoc limitat","Line":"Linie","Link":"Link","List Price":"Pret lista","Page [page] from [toPage]":"Pagina [page] din [toPage]","List Value":"Valoare lista","List":"Lista","Load More":"Incarca mai multe","Load more":"Incarca mai multe","Loading...":"Se incarca...","Loading":"Se incarca","Localisation Index":"Index localizare","Localisation":"Internationalizare","localisation":"internationalizare","Localities":"Localitati","Locality":"Localitate","Log in":"Autentificare in sistem","Log out":"Delogare","Log Out":"Iesiti","log":"log","Login":"Login","login":"login","Logins":"Logari","logins":"logari","logout":"deconectare","Logout":"Iesire","Logs Index":"Index Loguri","Logs":"Loguri","logs":"loguri","Loss":"Pierdere","Made with Bulma":"Realizat cu Bulma","Made with Laravel":"Realizat cu Laravel","Made with Vue":"Realizat cu Vue","Magazie":null,"Main Menu":"Meniu principal","Manage Buttons":"Editeaza butoane","Manage Menus":"Administreaza meniuri","Manage Permissions":"Administreaza permisii","Mandatary":"Mandatar","Manufacturer":"Producător","Manufacturers":"Producatori","Maps key":null,"Mar":"Mar","March":"Martie","Mark all as read":"Marcheaza-le citite","Mark all read":"Marcheaza tot ca citit","Max":null,"May":"Mai","MB":"MB","Measurement Unit":"Unitate de Masură","Measurement Units":"Unitati de masura","measurement units":"unitati de masura","Member Since":"Membru din","Members":"Membri","Menu Collapse":"Restrange meniu","Menu Items":"Elemente meniu","Menu":"Meniu","Menus Index":"Index meniuri","Menus":"Meniuri","menus":"meniuri","Merge all localisation files":"Îmbină toate fisierele de localizare","Mfr #":"Cod produs","Mfr":"Prod","Min":null,"Miss":null,"Mode":"Mod","Monday":"Luni","more":"mai mult","move to favorites":"muta la favorite","Mr":null,"MU":"UM","N\/A":"N\/A","Name":"Nume","Needs matching":"Necesita match","Net Weight":"Greutate netă","New Address":"Adresa noua","New Password":"Parola noua","New team":"Echipa noua","New Topic":"Subiect nou","New":"Nou","Next Page":"Pagina urmatoare","Next":"Urmator","No activity found":"Nu a fost gasita activitate","No keys found":"Nu au fost gasite chei","No locations found":"Nu au fost găsite locații","No options available":"Nu exista optiuni","No records were found":"Nu au fost gasite inregistrari","No reservations found":"Nu au fost găsite rezervări","No search results found":"Nu au fost gasite rezultate","No teams were created yet":"Încă nu au fost create echipe","No":"Nu","Not Found":"Negăsit","not paid":"neplatit","Note":"Observații","Notes":"Note","Nothing found":"Nu a fost gasit nimic","notification":"notificare","Notifications":"Notificari","notifications":"notificari","Number":"Numar","Observations":"Observatii","of":"din","Offices":"Birouri","Oh no":"O, nu","OK":"OK","on behalf of :company":"pe compania :company","On Demand":"In stoc furnizor","on":"pe","Online":null,"Only missing":"Doar negasite","Operation failed because the permission is allocated to existing role(s)":"Operatia a esuat deoarece permisiunea este alocată unui rol existent","Operation was successfull":"Operatiunea a fost efectuata cu succes","order #:number invoice":"factura pentru comanda #:number","order #:number":"comanda #:number","Order #:number":"Comanda #:number","Order details :number":"Detalii comanda :number","Order Line Limit":null,"Order Payment":"Plata","Order Values":"Valorile comenzii","Order":"Comanda","Orders":"Comenzi","Organize Menus":"Ordonare meniuri","our location":"locatia noastra","Our Location":"Locația noastră","Our team has been notified.":"Echipa noastra a fost notificata","Overdue":"Depășit","Own Stock":"Stoc propriu","Owners Index":"Index owneri","Owners":"Entitati","owners":"owneri","Package Content":"Conținutul pachetului","Packaging Units":"Unități de Ambalare","packaging units":"unități de ambalare","Page Expired":"Pagina a expirat","Parade":"Parada","Parent":"Parinte","Part Number":"Cod","Password Confirmation":"Confirmare parola","Password":"Parola","password":"parola","Passwords must be at least six characters and match the confirmation.":"Parola trebuie să fie de cel puțin șase caractere și să se potrivească cu cea de confirmare.","Past Imports":"Importuri anterioare","Pasta":"Paste","Authorize Only":"Doar Autorizare","pay":"plateste","Pay":"Plateste","Payment method":"Metoda de plata","Payment Methods":"Metode de plata","Payment Order":"OP","Payment":"Plata","payments":"plati","Payments":"Plăți","Pays VAT":"Plateste TVA","People":"Persoane","people":"persoane","Permission Group":"Grup de permisii","Permission Groups Index":"Index grupuri de permisii","Permission Groups":"Grupuri de permisii","Permission Name":"Nume permisie","Permission":"Permisie","permissionGroups":"Grupuri de permisii","Permissions Group Items":"Elemente Permisii Grup","Permissions Group":"Grup Permisii","permissions group":"permisii grup","Permissions Groups":"Grupuri Permisii","Permissions Index":"Index permisii","Permissions":"Permisii","permissions":"permisii","Person client":"Client persoana","Person":"Persoana","person":"persoana","Personal Info":"Informatii personale","Personal information can only be edited via the person form":"Informatiile personale pot fi editate numai prin formularul persoanei","Personal":"Personal","Phone Number":"Numar de telefon","Phone":"Telefon","Pic":null,"Pick an option":"Alege o optiune","Picture":"Poza","Piece":"Buc","Place order":"Plasează comanda","See cart":"Vezi Cos","Placement":"Pozitie","Plati clienti":null,"Plati furnizor":null,"Please choose":"Alege","Please click the button below to verify your email address.":"Te rugăm să accesezi butonul de mai jos pentru a verifica adresa de e-mail.","Please confirm your password before continuing.":"Te rugăm să confirmi parola înainte de a continua.","Please Fill":"Completeaza","Please find attached the order's invoice.":"Găsești factura pentru această comandă în atașament.","Please review your order and payment details":"Te rugăm să verifici detaliile comenzii","Please set or reset your password by clicking the button below.":"Te rugam sa setezi sau sa resetezi parola facand clic pe butonul de mai jos.","POS Receipt":"Chitanta POS","Position":"Pozitie","Positions":"Pozitii","positions":"poziții","Post":"Trimite","Postal Area":"Cod postal","Postal Code":"Cod postal","Postcode":"Cod postal","posted":"postat","Prepared":"Pregătit","Preview":"Previzualizeaza","Previous Page":"Pagina anterioara","Previous":"Anterior","Price":"Pret","Privacy":"Confidențialitate","processed":"procesat","Processing":"In procesare","processing":"in procesare","Product image coming soon":"Poza urmeaza sa fie adaugata","Product":"Produs","Products per page":"Produse per pagina","Products":"Produse","products":"produse","Produs":null,"Profile":"Profil","Profit":"Profit","Proforma Invoice":"Factura proforma","Proforma":null,"Promissory Note":"Bilet la ordin","publish product":"publica produsul","Purchase Returns":"Retur aprovizionari","purchase returns":"retur aprovizionari","Purchase":"Aprovizionare","Purchases":"Aprovizionari","purchases":"aprovizionari","Purple":"Mov","Qty":"Cant.","Quantity":"Cantitate","rating":"evaluare","Rating":"Evaluare","Ratio":"Aspect","Read":"Citire","Recaptcha key":"Cheie Recaptcha","Recaptcha secret":null,"Receipt":"Chitanta","Received":"Primit","Recent orders":"Comenzi recente","Recommended Products":"Produse recomandate","records":"inregistrari","Red":"Rosu","Reference \\ PO":"Referinta","Regards":"Toate cele bune","register":"fă-ți cont","Register":"Fă-ți cont","Registered Entities":"Entitati inregistrate","Registered Users":"Useri Inregistrati","Registry Of Commerce":"Nr. Inreg. Reg. Com.","Registry of commerce":"Registrul comertului","Rejected Association":"Asociația Respinsă","Rejected Brand":"Brand respins","Rejected Documentation":"Documentație respinsă","Rejected EAN":"EAN respins","Reload":"Reincarca","Remember me":"Tine-ma minte","Remember Me":"Ține-mă minte","Reminder":null,"Remove poster":"Sterge poster","remove":"sterge","Reorder Menu":"Reorganizează meniu","reorder":"reorganizează","Repeat Password":"Repeta parola","Replies":"Raspunsuri","Reply":"Raspunde","Resell":"Revanzare","Reservations":"Rezervări","Reserved":"Rezervat","Reset password request":"Cerere resetare parolă","Reset password":"Reseteaza parola","Reset":"Reset","Residential":"Rezidențial","Resource Prefix":"Prefix resursa","Resource":"Resursa","resource":"resursa","Retur aprovizionari":null,"Retur vanzari":null,"Revenue":"Venit","Reviews":"Recenzii","reviews":"recenzii","most popular":"cele mai populare","Right":"Dreapta","Road":"Drum","Role Item":"Element Rol","Role":"Rol","role":"rol","Roles Index":"Index roluri","Roles List":"Lista roluri","Roles":"Roluri","roles":"roluri","Rotatie":null,"Rotation":"Rotatie","Route":"Ruta","Row":"Rand","Running":"Alergare","Sale Channel":"Canal de vânzare","Sale Channels":"Canale de vânzare","sale channels":"canale de vânzare","Sale Price":"Pret vanzare","Sale Returns":"Retur vanzari","sale returns":"returnarea vânzării","Sale Value":"Valoare vanzare","Sales":"Vanzari","sales":"vanzari","Saturday":"Sambata","Sauces":"Sosuri","Save Configuration":"Salveaza configuratie","Save":"Salveaza","Sea Salt":"Sare de mare","Search category limit":"Limita categorii la cautare","Search in products":"Caută în produse","Search placeholder":"Placeholder pt cautare","Search something":"Căutați ceva","Search within brands":"Cauta in branduri","Search...":"Căutare...","Search":"Cauta","Searching...":"Căutând...","Searching":"Caut","Secret":"Secret","See all":"Vezi tot","Select file for import":"Selecteaza fisier pt import","select":"select","selected":"selectat","Send a password reset link":"Genereaza link pentru reset parola","Send a reset password link":"Trimite un link de resetare parola","Send Password Reset Link":"Trimite link-ul pentru resetarea parolei","Serial":"Serie","Server Error":"Eroare de server","Service Unavailable":"Serviciu indisponibil","Service":"Serviciu","Services":"Servicii","services":"Servicii","Set password":"Seteaza parola","Settings":"Setari","settings":"setări","Share your idea...":"Sharuieste ideea","Share your opinion and rate the product":"Împărtășește-ți opinia și evaluează produsul","Share your opinion...":"Sharuieste parerea","Shelf":"Raft","Shift + Enter to post":"Shift + Enter pt a posta","Shipped":"Expediat","Shipping Address":"Adresa de livrare","Shipping charges may be incurred":"Pot fi aplicate costuri de transport","Shipping charges of :value (+VAT) will be added":"Vor fi adaugate costuri de transport in valoare de :value (+TVA)","Shipping cost":"Cost transport","You will pay":"Cat vei plati","Visit the product page":"Viziteaza pagina produsului","Shop Categories":"Categorii","Shopping Cart":"Cos cumparaturi","Show Log":"Arata log","Show Logs from":"Arata log-uri din","Show":"Arata","show":"arata","Showing :from - :to of :total results":"Se afiseaza de la :from pana la :to din :total de rezultate","Sicilian Honey":"Miere siciliană","Sidebar Toggle":"Alterneaza stil meniu","Similar products limit":"Limita pt produse similare","Site Texts":"Texte Site","Size":"Marime","Sleeping":"Dormit","Some fields were invalid. Please correct the errors and try again.":"Cateva campuri au fost invalide. Corecteaza erorile si reincearca.","Something went wrong...":"Ceva nu a functionat corect...","Special Diet":"Dietă specială","Speciality":"Specialitate","Spendings":"Cheltuieli","Square":"Pătrat","Start Tutorial":"Start tutorial","Started":"Inceput","Starters":"Aperitive","Status":"Status","Stock Rotation":"Rotația stocului","Stock: :stock":"Stoc: :stock","Stock":"Stoc","Stopped":"Oprit","Storage Usage":"Utilizare spatiu","store":"magazin","Storing":"Depozitare","Street Type":"Tip strada","Street":"Strada","Sub Administrative Area":"Zona administrativa subordonata","Submit":"Trimite","Success":"Succes","Successful":"Reusite","Summary":"Sumar","Sunday":"Duminica","Supplier Discounts":"Reduceri de la furnizori","Supplier Invoices":"Facturi furnizori","Supplier Number":"Numar furnizor","Supplier Payments":"Plati furnizor","Supplier Ref":"Ref. Furnizor","Supplier Stock":"Stoc furnizor","Supplier":"Furnizor","suppliers":"furnizori","Sweets":"Dulciuri","System":"Sistem","system":"sistem","Table export done":"Export tabel efectuat","Table export error":"Eroare la exportul de tabel","Table export started":"Exportul de tabel a inceput","Table":"Tabel","Tables State Save":"Pastreaza config","Tags":"Taguri","Tasks":"Sarcini","tasks":"sarcini","team":"echipa","Teams":"Echipe","Template":"Șablon","Tenant":"Chiriaş","terms and conditions":"termenii si conditiile","Terms of use":"Termeni si conditii","Terms Of Use":"Termeni si conditii","terms of use":"termenii si conditiile","Thank you for shopping with us.":"Îți multumim pentru cumparaturile facute.","Thank you for using our application!":"Îți multumim ca ne folosești aplicatia!","Thank you for your order":"Îți mulțumim pentru comandă","Thank you":"Multumesc","The :filename file is ready":"Fisierul :filename este gata","The address has been successfully updated":"Adresa a fost actualizata cu succes","The address was successfully created":"Adresa a fost creata cu succes","The admin role already has all permissions and does not need syncing":"Rolul de admin deja are toate permisiile si nu are nevoie de sincronizare","The application was updated, please refresh your page to load the latest application version":"Aplicatia a fost actualizata, te rugram reincarca pagina pentru a folosi noua versiune","The Changes have been saved!":"Modificarile au fost salvate!","The changes have been saved":"Modificarile au fost salvate","The company was successfully created":"Compania a fost creata cu succes","The company was successfully deleted":"Compania a fost stearsa cu succes","The company was successfully updated":"Compania a fost actualizata cu succes","The Entity was created!":"Entitatea a fost creata!","The entity was created!":"Entitatea a fost creata!","The export :name could not be completed due to an unknown error":"Exportul :name nu a putut fi finalizat datorita unei erori","The export was cancelled successfully":"Exportul a fost anulat cu succes","The form contains errors":"Formularul contine erori","The generated document has :entries entries":"Documentul are :entries inregistrari","The import was restarted":"Importul a fost repornit","The language files were successfully merged":"Fisiere de limbi au fost concatenate cu succes","The language files were successfully updated":"Fisierele de limba au fost actualizate","The log file":"Fisierul","The log was cleaned":"Log-ul a fost curatat","The menu was created!":"Meniul a fost creat!","The operation was successful":"Operatiunea a fost efectuata cu succes","New order #:number from :channel for :total :currency was placed by :person":"Comanda noua #:number din :channel in valoare de :total a fost plasată de catre :person","Selected payment method: :paymentMethod":"Metoda de plata selectata: :paymentMethod","The permission group was created!":"Grupul de permisii a fost creat!","The permission was created!":"Permisia a fost creata!","The permissions were created!":"Permisiile au fost create!","The person has assigned resources in the system and cannot be deleted":"Persoana are resurse asignate in sistem si nu poate fi stearsa","The Person was successfully created":"Persoana a fost creata cu succes","The person was successfully created":"Persoana a fost creata cu succes","The person was successfully deleted":"Persoana a fost stearsa cu succes","The person was successfully updated":"Persoana a fost actualizata cu succes","The poster was deleted successfully":"Posterul a fost sters cu succes","The requested report was started. It can take a few minutes before you have it in your inbox":"Raportul a fost trimis spre generare. Poate dura cateva minute pana cand il vei primi pe mail","The requested report was started. It can take a few minutes before you have it in your inbox":"Raportul solicitat a fost pornit. Poate dura cateva minute inainte de a-l primi in casuta de e-mail","The role was created!":"Rolul a fost creat!","The selected record is about to be deleted. Are you sure?":"Inregistrarea selectata este pe cale sa fie stearsa. Esti sigur?","The team was successfully saved":"Echipa a fost salvata cu succes","The tutorial was created!":"Tutorialul a fost creat!","The tutorial was successfully deleted":"Tutorialul a fost sters cu succes","The user group was successfully created":"Grupul de useri a fost creat cu succes","The user group was successfully deleted":"Grupul de useri a fost sters cu succes","The user has activity in the system and cannot be deleted":"Userul are activitate in sistem si nu poate fi sters","The User was created!":"Userul a fost creat!","The video file was deleted successfully":"Clipul a fost sters cu succes","The video was updated successfully":"Clipul a fost actualizat cu succes","The webshop is still under construction, but we're launching soon...":"Magazinul online este încă în construcție, dar il vom lansa în curând...","Theme Color":"Culoare Tema","Theme":"Tema","There are no active carousel slides":"Nu exista slide-uri de carusel active","There are no addresses added yet":"Nu ai nicio adresă adăugată","There are no companies added yet":"Nu există companii adăugate","There are no credit cards added yet":"Nu ai niciun card adăugat","This action is unauthorized.":"Această acțiune nu este permisă.","this month":"luna aceasta","This password reset link will expire in :count minutes.":"Acest link de resetare a parolei va expira în :count minute.","This password reset token is invalid.":"Codul de resetare a parolei este greșit.","This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":"Acest site web folosește cookie-uri pentru a-și furniza serviciile și pentru a analiza traficul. Pentru mai multe detalii viziteaza","privacy policy":"politica de confidentialitate","this week":"săptămâna aceasta","this year":"anul acesta","Thursday":"Joi","Time":"Timp","Timeline":"Cronologie","Tip":null,"Title...":"Titlu...","Title":"Titlu","title":"titlu","to manage your addresses":"pt a gestiona adresele","to manage your cards":"pt a gestiona cardurile","to manage your companies":"pentru a gestiona companiile","to view your order":"pentru a vedea comanda","To":"la","to":"la","Today":"Astăzi","today":"azi","Toggle navigation":"Comută navigarea","Too Many Attempts.":"Prea multe încercări.","Too Many Requests":"Prea multe cereri","Top Banner Content":"Continut top banner","Top Pick":"Alegere de Top","Total amount for order #:number is :currency:total":"Totalul de plată pentru comanda #:number este :total :currency","total records":"inregistrari","Total":"Total","total":"total","Translations":"Traduceri","Tuesday":"Marti","Tutorial":"Tutorial","Tutorials Index":"Index tutoriale","Tutorials":"Tutoriale","tutorials":"tutoriale","Type a new comment":"Adauga un comentariu","Type":"Tip","type":"tip","Types":"Tipuri","Unable to read file":"Nu se poate citi fiserul","Unauthorized":"Nepermis","Undo Stock Insertion":"Anuleaza insertia in stoc","Undo Stock Removal":"Anuleaza scoaterea din stoc","Unique Identifier":"Identificator unic","Unit. Price":"Pret unit.","Unitary Price":"Pret unitar","untagged":"netaguit","Update":"Updateaza","Updated At":"Updatat la","Updated By":"Actualizat de","updated the members":"actualizat membrii","updated":"actualizat","Updated":"Updatat","Upload Avatar":"Incarca Avatar","Upload Template":"Incarca template","uploads":"uploaduri","Use":"Utilizare","User Details":"Detalii User","user groups":"grupuri user","User Groups":"Grupuri","User Info":"Informatii user","User Profile":"Profil user","User":"User","user":"user","Users Administration":"Administrare useri","Users Index":"Index useri","Users":"Useri","users":"useri","Valability":"Valabilitate","Valid":"Valid","Editable time limit in seconds. Use 0 to disable":"Limita de timp pentru modificari, in secunde. Folosește 0 pentru a dezactiva","Value":"Valoare","Vanzari":null,"VAT":"TVA","VAT Value":"Valoare TVA","ver":"ver","Verify Email Address":"Verificare adresă de e-mail","Verify Your Email Address":"Verifică-ți adresa de e-mail","Video description":"Descriere clip","Video name":"Nume clip","Video":"Video","video":"video","View Cart":"Vezi cos","View your order":"Vezi comanda","Virtual Position ID":"ID Poziție Virtuală","Visible Brands":"Branduri vizibile","Visible Top Banner":"Top banner vizibil","Vista":"Perspectivă","Volume":"Volum","Voucher":null,"waiting":"in asteptare","Warehouse":"Depozit","warehouses":"depozite","Warehouses":"Depozite","Warning":"Avertizare","was changed":"a fost schimbat","was last updated":"a fost modificat","We can't find a user with that e-mail address.":"Nu există niciun user cu această adresă de e-mail.","We have e-mailed your password reset link!":"Am trimis un e-mail cu link-ul de resetare a parolei!","We will keep you updated on its progress":"Te vom tine la curent cu progresul ei","We won't ask for your password again for a few hours.":"Nu îți vom mai solicita adresa de e-mail pentru câteva ore","Webshop Name":"Nume webshop","Webshop Order":"Comanda webshop","webshop":"magazin web","Webshop":"Magazin web","Website":null,"Wednesday":"Miercuri","Welcome Back":"Bine ai revenit","Welcome":"Bun venit","What happened?":"Ce s-a intamplat?","What you need to know":"Ce trebuie sa stii","What":"Ce","When":"Cand","Whoops!":"Oops!","Width":"Lăţime","Write a review":"Scrie o recenzie","Write":"Scriere","Yes":"Da","yesterday":"ieri","You are not authorized for this action":"Nu esti autorizat pentru aceasta actiune","You are not authorized to perform this action":"Nu esti autorizat pentru aceasta actiune","You are receiving this email because we received a password reset request for your account.":"Primești acest mesaj pentru că a fost înregistrată o solicitare de resetare a parolei pentru contul asociat acestei adrese de e-mail.","You can click":"Poti da click","You don't have any favorite products yet":"Nu ai niciun produs adăugat la favorite","You don't have any notifications":"Nu ai notificari","You don't have any orders yet":"Nu ai efectuat nicio comandă","You don't have any products in the shopping cart right now":"Nu ai niciun produs în coș momentan","You have":"Ai","You just got a notification...":"Tocmai ai primit o notificare...","You made too many attempts. Please wait 5 minutes and try again.":"Ai apelat de prea multe ori generarea raportului. Asteapta 5 minute si reincearca","You may also like":"S-ar putea sa-ti placa si","You will find attached the requested report.":"Vei gasi atasat raportul cerut.","Your :shop order :number":"Comanda :shop cu numarul :number","Your account has been disabled. Please contact the administrator":"Ne pare rau, contul tau a fost dezactivat. Te rugam contacteaza administratorul","Your card was successfully saved":"Cardul tău a fost salvat cu succes","Your email address is not verified.":"Adresa ta de e-mail nu este verificată.","Your Message":"Mesajul tău","Your password has been reset!":"Parola a fost resetată!","You need to accept our terms of use first":"Mai întâi trebuie să accepți termenii noștri de utilizare","item":"articol","PO #":"Ref #","Your privacy is important for us":"Confidențialitatea ta este importantă pentru noi","cart":"cos","favourites":"favorite","addresses":"adrese","orders":"comenzi","payment":"plata","summary":"sumar","add":"adauga","rate":"evalueaza","review":"recenzie","star":"stea","stars":"stele","Thank you for contributing":"Îți mulțumim pentru contribuție","Do you own or have used this product?":"Deții sau ai folosit acest produs?","This review is awaiting approval":"Această recenzie așteaptă aprobare","This review was approved":"Această recenzie a fost aprobată","This review was rejected. You may edit and repost it.":"Această recenzie a fost respinsă. Poți să îl editezi și să îl repostezi.","Edit review":"Editează recenzia","category":"categorie","terms-of-use":"termeni-si-conditii","privacy":"confidentialitate","about-us":"despre-noi","favorites":"favorite",":user finalized the :model :label for the partner :partner":":user a finalizat :model :label pentru partenerul :partner",":type quantity and total were successfully updated":"Cantitatea si totalul pentru :type au fost actualizate",":type update":"Actualizare :type","Please find attached the order details":"Regasiti detaliile comenzii in atasament","Succeeded":"Reusita","External Reference":"Referinta externa","Incomplete order (#:number)":"Comanda incompleta (#:number)","On :date you placed an order on our webshop but forgot to finalize the payment.":"Pe data de :date ai plasat o comanda pe magazinul nostru online dar nu ai finalizat plata.","Please click bellow to view your order and finalize the payment":"Poti sa dai click mai jos pentru a vizualiza comanda si a finaliza plata","New message from the webshop's contact form":"Mesaj nou din pagina de contact a webshop-ului","Your Webshop.":"Magazinul tau.","Message:":"Mesaj:","Contact phone: :phone":"Telefon de contact: :phone","Your order #:number on :shop was successfully placed":"Comanda ta cu numarul #:number de pe :shop a fost plasata cu succes","You have a new webshop order":"Ai o nouă comandă pe webshop","New user registration":"S-a inregistrat un nou utilizator","Before adjusting stock, select the product default supplier":"Înainte de a ajusta stocul, selecteaza furnizorul implicit al produsului","Cannot increment when quantity <= 0":"Nu se poate incrementa când cantitatea <= 0","Cannot decrement when quantity <= 0":"Nu se poate decrementa atunci când cantitatea <= 0","Order already has a :type invoice":"Comanda are deja o factura de tipul :type","Invalid item":"Articol invalid","Cannot update orders that are externally fulfilled":"Nu se pot actualiza comenzile care sunt îndeplinite extern","Order is already in this status":"Comanda are deja acest status","There are no differences on this order":"Nu există diferențe în această comandă","You are not allowed to issue payments without invoices":"Nu este permis sa emiti plati fara facturi","You are not allowed to issue payments on a cancelled invoice'":"Nu este permis sa emiti plati pentru o factura anulata","Sale is already paid":"Vânzarea este deja plătită","You cannot delete a paid order":"Nu poți șterge o comandă plătită","order details":"detaliile comenzii","Delivery Address":"Adresa de livrare","Disc.":"Disc.","M.U.":"U.M.","Product \/ Code":"Produs \/ Cod","registered in doc.":"înregistrat în doc.","received":"primit","U.P acquision":"P.U achiziţie","(no VAT)":"(fara TVA)","Val. acquision":"Val. achizitie","Val. VAT":"Val. TVA","(afferent)":"(aferent)","Info field":"Câmp informativ","additional":"adițional","piece":"buc","Total General":"Total General","Goods Receipt Note":"Nota de receptie a marfurilor","Unit":"Unitate","The undersigned, members of the reception committee, have received the material values provided by":"Subsemnatii, membri ai comitetului de recepție, au primit valorile materiale furnizate de","delegate":"delegat","based on the accompanying documents":"pe baza documentelor însoțitoare","consisting":"constând","car no.":"masina nr.","Optional field, usable in case of observations":"Câmp opțional, utilizabil în caz de observații","Reception committee members name and surname":"Numele și prenumele membrilor comisiei de recepție","Signature":"Semnătură","Manager name and surename":"Numele și prenumele managerului","Manager name and surname":"Numele și prenumele managerului","Reception comitee conclusions":"Concluziile comitetului de primire","Reception committee conclusions":"Concluziile comitetului de primire","Supplier\/carrier point of view":"Punct de vedere furnizor \/ transportator","Other mentions":"Alte mențiuni","The quantity determination was done by":"Determinarea cantității a fost făcută de","The quality determination was made by the sample":"Determinarea calității a fost făcută de eșantionul","no.":"nr.","Sender":"Expeditor","Companion":"Insotitor","Dispatch station":"Stație de expediere","Destination station":"Stația de destinație","Release date":"Data de lansare","Dispatch date":"Data expedierii","Arrival date":"Data sosirii","Supplier delegates, the carrier who participated in the reception":"Delegații furnizorului, curierul care a participat la recepție","ISBN":"ISBN","Total products":"Totalul produselor","Scale indicated weight":"Greutatea indicata pe cantar","Stock Removal":"Scoatere din stoc","Representative of":"Reprezentant al","Name and surname":"Nume si prenume","Identity card":"Card de identitate","TOTAL":"TOTAL","Reception participants":"Participanți la recepție","for Sale":"de vanzare","Emag API call for :action failed":"Apelul API Emag pentru :action a esuat","The action :action on url :url failed with the following error messages:":"Acțiunea :action catre url :url a eșuat cu următoarele mesaje de eroare","New :type callback from emag":"Un nou callback :type de la emag","New :type callback from emag for id :id":"Un nou callback :type de la emag pentru id-ul :id","Missing app product for emag order :id":"Lipseste produsul din aplicatie pentru comanda emag :id","Product :product":"Produsul :product","Offer mismatch for eMag order :id":"Nepotrivirea ofertei pentru comanda eMag :id","For product :code":"Pentru produsul :code","External part number :code":"Cod extern :code","Part number :code":"Cod :code","New eMag order (id: :id) with vouchers:":"Comandă nouă eMag (id: :id) cu vouchere:",":name, value :value":":name, valoare :value","New eMag order (id: :id) with vouchers":"Comandă nouă eMag (id: :id) cu vouchere","Shipping price mismatch for eMag order :order":"Nepotrivirea prețului de expediere pentru comanda eMag :order","Product price mismatch for eMag order :order":"Nepotrivirea prețului produsului pentru comanda eMag :order","Offer with id :id already exists":"Există deja o oferta cu id-ul :id","An offer for the pnk :pnk already exists":"Există deja o ofertă pentru pnk :pnk","An offer with product id :id already exists and needs eMag intervention":"O ofertă cu id-ul produsului :id există deja și necesită intervenția eMag","No order with id :id found":"Nu s-a găsit nicio comandă cu id-ul :id","Write Review For":"Scrie o recenzie pentru","Don't know what to write about?":"Nu știi despre ce să scrii?","Tell us what you like about the purchased product.":"Spune-ne ce iti place la produsul achizitionat.","Does it live up to your expectations?":"Se ridică la nivelul așteptărilor tale?","Are you satisfied with the value for money?":"Esti mulțumit de raportul calitate-preț?","Would you recommend it to others?":"L-ai recomanda altora?","Remove from favorites":"Elimina din favorite","make default":"fă implicit","delivery":"livrare","billing":"facturare","Not Paid":"Neplatit","Requires Action":"Necesită acțiune","verify":"verifica","Verify":"Verifica","confirmation":"confirmare","No addresses defined":"Nu există adrese definite","Part":"Cod","Complete the payment":"Finaliza plata","An extra confirmation is needed to process your payment":"Este necesară o confirmare suplimentară pentru a procesa plata","Order is already paid":"Comanda este deja plătită","Your payment for this order is still processing":"Plata dvs. pentru această comandă este în curs de procesare","Please find the invoice attached":"Găsești factura în atașament","Invoice issued for order #:number":"Factura emisa pentru comanda #:number","Your order #:number":"Comanda dvs #:number","Payment via :type was successful for order :number":"Plata prin :type a reușit pentru comanda :number","A payment was received for order #:number (:total :currency)":"S-a inregistrat plata pentru comanda :number (:total :currency)","Insufficient stock for :product, only :left left":"Stoc insuficient pentru :product, numai :left ramas","Registration is restricted for the moment, please return soon":"Înregistrarea este restricționată pentru moment, te rugăm să revii în curând","Hello :name":"Salut :name","Thank you for creating an account on :shop":"Îți mulțumim pentru că ți-ai creat cont pe :shop","We hope that you will enjoy our products":"Sperăm că te vei bucura de produsele noastre, așa cum ne bucurăm și noi de ele :)","Go to login":"Intră în cont","If you are having trouble clicking the action button, copy and paste the URL below into your web browser":"Daca întampini dificultati in a accesa butonul, copiază adresa de mai jos in browser-ul tau","Payment via :type was successful for order #:number, amount :amount :currency":"Plata prin :type a reușit pentru comanda #:number, suma :amount :currency","View order":"Vezi comanda","Click bellow to view your order and finalize the payment":"Poti sa dai click mai jos pentru a vizualiza comanda si a finaliza plata","A new account was created : :name":"Un cont nou a fost creat: :name","from: :company":"de la: :company","To manage the account please click the link below":"Pentru a gestiona contul, acceseaza linkul de mai jos","View account":"Vezi contul","Details for delivering your order":"Detalii pentru livrarea comenzii","You're just a few steps away from finalizing your order":"Ești la doar câțiva pași distanță de finalizarea comenzii","If you already have an account click":"Dacă ai deja un cont, click","to go to the login page":"pentru a accesa pagina de autentificare","Your account":"Contul tau","I want to create an account":"Vreau să imi creez cont","Company Name":"Numele Companiei","Ship to a different addressed":"Comanda ta #:number a fost plasată cu succes","Skip":"Sari","New order #:number from :channel for :total :currency":"Comanda noua #:number din :channel in valoare de :total :currency","fast-checkout":"checkout-rapid","Fast Checkout":"Checkout Rapid","The action :action failed with the following error code: :code":"Acțiunea :action a eșuat cu următorul cod de eroare: :code","Reported error message: :message":"Mesaj de eroare raportat: :message","Request payload: :payload":"Payload Request: :payload","API call for :action failed":"Apelul API pentru :action a esuat","Notification, :title":"Notificare, :title","New Comment Tag":"Etichetare noua in comentarii","You were just tagged":"Tocmai ai fost etichetat","Comment Tag Notification":"Notificare etichetare in comentariu","Your password will expire soon":"Parola ta va expira curand","You've got :days days left to change it":"Mai ai :days zile ramase pentru a o schimba","You've got until tomorrow to change it":"Mai ai timp pana maine pentru a o schimba","You must change it today":"Trebuie schimbata astazi","Welcome!":"Bine ai venit!","Task Reminder":"Memento Task","This is a reminder for the following task:":"Acesta este un memento pentru următorul task:","View Task":"Vezi task-ul","Task :description":"Task :description","You cannot delete the default address":"Nu poți șterge adresa implicită","You cannot delete an address that you have previously used":"Nu poți șterge o adresă pe care ai folosit-o anterior","You cannot edit this company, please contact support":"Nu poți edita această companie, te rugăm să contactezi echipa de asistenta","Your cart is empty":"Coșul tau este gol","You cannot delete the default card":"Nu poți șterge cardul implicit","You cannot edit this :model, please contact support":"Nu poți edita acest :model, te rugăm să contactezi echipa de asistență","Company information":"Informațiile companiei","Billing address":"Adresa de facturare","Free":"Gratuit","Get to know us":"Cunoaște-ne","Registration successful":"Inregistrare realizata","Your account needs to be activated before you can login":"Contul trebuie să fie activat înainte de a te putea autentifica","You will receive a confirmation email upon approval":"Vei primi un e-mail de confirmare după aprobare","Thank you!":"Iti multumim!","Frequently asked questions":"Intrebari frecvente","Edit address":"Editeaza adresa","Edit company":"Editeaza compania","Pay by Card":"Plătește cu Card","Click":"Click","Not Implemented":"Neimplementat","Approve":"Aproba","Disapprove":"Dezaproba","for \":query\"":"pentru \":query\"","Review was rejected":"Această recenzie a fost respinsă","Review updated for :product":"Recenzie actualizata pentru produsul :product","New review submitted for :product":"Recenzie adaugata pt produsul :product","A product review for :product was updated by :person:":"Recenzie de produs pentru :product actualizata de :person:","A new product review for :product was posted by :person:":"Recenzie de produs pentru :product adaugata de :person:","Your review for :product was :approval":"Recenzia ta pentru produsul :product a fost :approval","If you want, you can revise your review here:":"Daca vrei, poti actualiza recenzia ta aici:","Review :approval":"Recenzie :approval","approved":"aprobata","rejected":"respinsa","Terms of Use":"Termeni si conditii","Similar products":"Produse similare","Enter your email to reset your password":"Introdu adresa ta de e-mail pentru a iti reseta parola","We'll send you an email with the instructions to follow":"Iti vom trimite un e-mail cu instrucțiunile de urmat","similar-products":"produse-similare","description":"descriere","characteristics":"caracteristici","about-this-brand":"despre-acest-brand","not in stock":"nu este în stoc","Not In Stock":"Nu este în stoc","Hold tight, your order is being processed. We will email you when your order succeeds":"Ține-te bine, comanda ta este în curs de procesare. Iți vom trimite un e-mail când comanda va reuși","Pay by Wire Transfer":"Plătește prin Transfer Bancar","Grand Total":"Total General","A cancellation request was received for order #:id":"Am primit o cerere de anulare pentru comanda #:id","Cancellation request for order #:id":"Cerere de anulare pentru comanda #:id","Please let us know if you are able to cancel the order":"Va rugam sa ne comunicati daca puteti efectua anularea","Cancellation request for emag order with id :id":"Cerere de anulare pentru comanda emag cu id :id","An emag order cancellation request was received":"Am primit cerere de anulare pentru o comanda emag","If you need to change your email please contact us":"Dacă dorești schimbarea emailului te rugăm contactează-ne","Awb status was updated to \":status\" for emag order #:id":"Statusul Awb pentru comanda emag #:id a fost actualizat in \":status\"","Awb status update for emag order #:id":"Actualizare status awb pentru comanda emag #:id","You just asked for a password reset. To complete the process click the button below.":"Tocmai ai solicitat resetarea parolei. Pentru a finaliza procesul, accesează butonul de mai jos.","Set your new password":"Setează noua parolă","The company already exists in our system. Please contact us about that":"Compania există deja în sistemul nostru. Te rugăm să ne contactezi referitor la această situație","Secure payments with":"Plătește în siguranță prin","We will create an account for your future orders":"Iți vom crea un cont pentru comenzile tale viitoare","Go back to the store":"Întoarce-te în magazin","Added":"Adăugat","A payment method was already set for this order":"O metodă de plată a fost deja stabilită pentru această comandă","Street line 1":"Nume stradă, număr etc.","Street line 2":"Apartament, complex, unitate etc. (opțional)","A new account was created: :name":"A fost creat un cont nou: :name","Translator":"Traducător","Publisher":"Editor","Edition":"Ediție","Collection":"Colecție","Year of Publication":"Anul publicării","Number of Pages":"Număr de pagini","Genre":"Gen","Subgenre":"Subgen","Author":"Autor","Your order #:number is being processed":"Comanda ta #:number este în curs de procesare","Your order #:number is ready to be shipped":"Comanda ta #:number este pregatită de livrare","Your order #:number was shipped":"Comanda ta #:number a fost expediată","Your order #:number was delivered":"Comanda ta #:number a fost livrată","Your order #:number is being processed. We'll keep you updated.":"Comanda ta #:number este în curs de procesare. Te vom ține la curent.","Your order #:number has been shipped to the following address: :address":"Comanda ta #:number a fost expediată la următoarea adresă: :address","Your order #:number has been delivered. We hope you enjoy your purchase and we'd really love to receive your feedback. If you wish, you can leave us a product review.":"Comanda ta #:number a fost livrată. Sperăm să te bucuri de achiziție și ne-ar încânta să primim feedbackul tău. Dacă dorești, ne poți lăsa un review pentru produsele achizitionate.","Don't hesitate to contact us for any questions.":"Pentru orice întrebări, nu ezita să ne contactezi.","Your order #:number has been packed and is ready for shipping. We'll let you know once it's shipped.":"Comanda ta #:number a fost ambalată și este pregatită de expediere. Te vom anunța de îndată ce a fost expediată.","Order #:number from :channel, placed by :person, has a new status update :status":"Comanda #:number de pe :channel, plasată de :person, are o nouă actualizare status :status","Status update for order #:number":"Actualizare status pentru comanda #:number","Cancellation request for :channel order #:number":"Cerere de anulare pentru comanda de :channel #:number","Store":"Magazin","Fulfill":"Proceseaza","Download order (xlsx)":"Descare comanda (xlsx)","Download order (pdf)":"Descarca comanda (pdf)","No email sent with the current order":"Comanda actuala nu a fost trimisa pe email","Issue Proforma":"Emite proforma","No email sent with the current invoice":"Factura curenta nu a fost trimisa pe email","Invoice emailed by":"Factura trimisa de","Order emailed by":"Comanda trimisa de","Remove from stock":"Scoate din stoc","Undo fulfill":"Anuleaza procesarea","Insert in stock":"Insereaza in stoc","Prepare products":"Pregateste produsele","Undo prepare":"Anuleaza pregatirea comenzii","Ship":"Expediaza","Undo ship":"Anuleaza expedierea","Deliver":"Livreaza","Undo deliver":"Anuleaza livrearea","NIN":"CNP","Reference":"Referinta","Confirm":"Confirma","Undo confirm":"Anuleaza confirmarea","Receive":"Receptioneaza","Undo receive":"Anuleaza receptia","Download goods received note":"Descarca nota receptie marfa","New Position":"Pozitie noua","Order #:number from :channel, placed by :person, has a new status update: :status":"Comanda #:number de pe :channel, plasată de :person, are o nouă actualizare de status: :status","Please take the necessary steps.":"Te rog sa iei masurile necesare.","A cancellation request was received for a :channel order.":"Am primit cerere de anulare pentru o comada din :channel.","Sale":"Vanzare","The application is briefly unavailable for scheduled maintenance. Please check back in a few minutes":"Aplicația este indisponibilă momentan pentru întreținere programată. Vă rugăm să reveniți în câteva minute","Availability":"Disponibilitate","Price Range":"Interval Pret","price ascending":"pret crescator","price descending":"pret descrescator","Sort":"Ordoneaza","newest":"cele mai noi","On Delivery":"La livrare","Card Processor":"Procesator card","Not published":"Nepublicat","marketplace offer":"oferta marketplace","marketplace product":"produs marketplace","activate":"activeaza","update measurements":"actualizeaza dimensiunile","download":"descarca","download pictures":"descarca pozele","Auto Pricing":null,"Documentation":"Documentatie","Date Filter":"Filtru Data"," Bundle":"Pachet","Emag Number":"Numar emag","Payment Method":"Metoda de plata","Create Payment":"Creeaza plata","Create Product":"Creeaza produs","Free Shipping Above":"Transport gratuit peste","Locker Service":"Serviciu de locker","Courier Account":"Cont curier","Min Margin":"Margine minima","Max Price":"Pret maxim","Min Price":"Pret minim","Auto AWB Generation":"Generare automata AWB","Pagination":"Paginatie","Locality ID":"ID localitate","activate auto pricing":"activeaza auto pricing","deactivate auto pricing":"dezactiveaza auto pricing","Full Name":"Nume si Prenume"} \ No newline at end of file +{":name export done":"Export :name efectuat",":name export started":"Exportul :name a început",":type import done":"Import :type efectuat","#":"#","30 days":"30 zile","7 days":"7 zile","A fresh verification link has been sent to your email address.":"Am trimis un nou link de verificare pe adresa dvs. de e-mail","About this brand":"Despre acest brand","About Us":"Despre noi","Above":"Deasupra","Accessories":"Accesorii","Account details":"Detalii cont","Account":"Cont","account":"cont","Acidity":"Aciditate","Acquisition Price":"Preț achiziție","Acquisition Value":"Valoare achiziție","Actions":"Acțiuni","actions":"acțiuni","Active":"Activ","active":"activ","Activity Log":"Activitate","Start Date":"Incepere activitate","Activity":"Activitate","Add :entity":"Adaugă :entity","Add address":"Adaugă adresă","Add Brand":"Adaugă brand","Add card":"Adaugă card","Add Card":"Adaugă card","Add Comment":"Adaugă comentariu","Add company":"Adaugă companie","Add File":"Adaugă fișier","Add Key":"Adaugă cheie","Add Payment":"Adaugă plată","Add to cart":"Adaugă în coș","Add to favorites":"Adaugă la favorite","Add video":"Adaugă clip","Add":"Adaugă","Adding":"Se adaugă","Additional":"Adițional","Address is missing or does not have lat\/long":"Adresa lipseste sau nu are latitudine \/ longitudine","Address":"Adresa","Addresses":"Adrese","Adjustment":"Reglaj","Administration":"Administrare","administration":"administrare","Administrative Area":"Administrare","Again Colors":"Din nou, culori","Agent":"Agent","Algolia":null,"All Menu Items":"Toate elementele","All Products":"Toate Produsele","All products":"Toate produsele","all products":"toate produsele","All rights reserved.":"Toate drepturile rezervate.","all":"tot","Allocated To":"Atribuit către","Amazing Saving":"Preț avantajos","Free Shipping":"Transport Gratuit","Amount":"Suma","An error has occured. Please report this to the administrator":"S-a inregistrat o eroare. Raporteaza acest fapt administratorului","An error was encountered while generationg :export":"A aparut o eroare la generarea exportului :export","An export job is already running for the same table":"Un export este deja in curs pt acelasi tabel","An unknown error occurred while submitting your report. Please try again.":"A fost o eroare la trimiterea mesajului tau. Te rugam sa reincerci.","Analytics Id":null,"Apartment":"Apartament","App Key":null,"App":"App","Appellative":"Apelativ","Approved Documentation":"Documentație aprobată","Approved":"Aprobat","April":"Aprilie","Aprovizionari":null,"Are you sure that you want to delete the template file?":"Esti sigur ca vrei sa stergi fisierul macheta?","Are you sure?":"Esti sigur?","Assign":"Asociaza","Associate Person":"Asociaza persoana","attribute groups":"grupuri de atribute","Audit":null,"audit":null,"Authors":"Autori","Available menus":"Meniuri disponibile","Available slides":"Diapozitive disponibile","Avatar":"Avatar","Avenue":"Bulevard","Awaiting Brand validation":"Se așteaptă validarea brandului","Awaiting Documentation Validation":"Se așteaptă validarea documentației","Awaiting EAN validation":"Se așteaptă validarea EAN","Awaiting MKTP validation":"Se așteaptă validarea MKTP","Award List":"Lista premiilor","Awards":"Premii","Azzure":"Azur","Back":"Inapoi","Backed by":"Sustinut de","Bag":"Pungă","Bank Account":"Cont bancar","Bank":"Banca","Be the first to review this product":"Fii primul care evaluează acest produs","Before proceeding, please check your email for a verification link.":"Înainte de a continua, te rugăm să verifici e-mailul pentru link-ul de verificare.","Below":"Dedesubt","Bend":"Aplecare","Besel":null,"Best Seller":"Cel mai vândut","Between":"Intre","Billing Address":"Adresa de facturare","Birthday":"Data nasterii","birthday":"data nasterii","Birthdays":"Zile de naștere","Blank":"Blank","Blocked":"Blocat","Bookmarks":"Favorite","Bottled Weight":"Greutate îmbuteliată","Boulevard":"Bulevard","Box":"Cutie","Brand Count":"Numar de branduri","Brands":"Branduri","brands":"branduri","BTL":null,"Bucharest":"Bucuresti","Building Type":"Tip cladire","Building":"Cladire","building":"cladire","built with":"construit cu","Business hours":"Program de lucru","Butons":"Butoane","Button Item":"Element Buton","Buttons":"Butoane","buttons":"butoane","By":"De","Calendar":null,"calendar":null,"Calendars":"Calendare","Calories per 100g":"Calorii per 100g","Cancel":"Anuleaza","Cancelled":"Anulat","cancelled":"anulat","Cantitate":null,"Card number":"Număr card","Cardholder name":"Nume deținător card","Carousel":"Carusel","carousel":"carusel","Carrier":"Curier","Cart is empty":"Coșul este gol","Cart Summary":"Sumar cos","Cart Validity Days":"Validitatea cosului in zile","Cart":"Cos","Pay on Delivery":"Plătește la Livrare","Cash Register Receipt":"Bon fiscal","Catalog":null,"Categories":"Categorii","Navigation":"Navigare","categories":"categorii","Category":"Categorie","Channel":"Canal","Characteristics":"Caracteristici","Cheque":"Cec","Choose language":"Alege limba","Choose your payment method":"Alege metoda de plata","Choose":"Alege","City Population by Age":"Populatia in functie de varsta","City":"Oras","Clear all":"Sterge tot","click here to request another":"apasă aici pentru a solicita altul","Client (company)":"Client (companie)","Client (person)":"Client (persoana)","Client Discounts":"Reduceri pentru clienți","Client Invoices":"Facturi clienti","Client Order Reference":"Referința clientului","Client Payment":"Plati clienti","Client Payments":"Plati clienti","Client Reference":"Referință client","Client Stock":"Stoc client","Client Stocks":"Stocuri client","Client":"Client","Clienti":null,"Clients":"Clienti","clients":"clienți","Close":"Inchide","Code":"Cod","Coding":"Codare","Collapse Main Menu":"Restrange meniu principal","Colors Two":"Culori, doi","Colors":"Culori","Coming Soon":"În Curând","Comments":"Comentarii","Commercial":"Comercial","commercial":"comercial","Companies":"Companii","companies":"companii","Company client":"Client companie","Company":"Companie","company":"companie","Completed":"Finalizat","Configure Role":"Configureaza rol","Configure":"Configureaza","configure":"configureaza","Confirm Password":"Confirmare parolă","Confirmed":"Confirmat","Contact Bar Text":"Text bara de contact","contact form":"formular de contact","Contact Form":"Formular de Contact","Contact us with any questions or concerns that you may have and we will get back to you shortly":"Contactează-ne pentru orice întrebări sau nelămuriri și îți vom răspunde în curând","Contact":"Contact","Contacts Index":"Index contacte","Contacts":"Contacte","contacts":"contacte","Content Private":"Continut privat","Content":"Continut","Continue":"Continua","Copied to clipboard":"Copiat in clipboard","Copyright © 2016":"Copyright © 2016","Core":"Core","Country of Origin":"Țara de origine","Country":"Tara","County":"Judet","Courier Service":"Serviciu de curierat","Create a new Entity":"Creeaza o noua entitate","Create a new User":"Creeaza user","Create Button":"Creeaza buton","Create Company":"Creeaza companie","Create Differences Sale":"Genereaza vanzare cu diferente","Create Group":"Creeaza grup","create group":"creeaza grup","Create Language":"Creeaza limba","Create Menu":"Creeaza meniu","Create Owner":"Creaza owner","Create Permission Group":"Creeaza grup permisii","Create Permission":"Creeaza permisie","Create Permissions Group":"Creeaza grup permisii","Create Person":"Creeaza persoana","Create Resource":"Creaza resursa","Create Role":"Creeaza rol","Create Tutorial":"Creeaza tutorial","Create User Group":"Creeaza grup useri","Create User":"Creeaza user","Create":"Creeaza","create":"creeaza","Created Address":"Adresa creata","Created At":"Creat la","Created at":"Creat la","Created By":"Creat de","Created Contact":"Contact creat","Created":"Creat","created":"creat","Currency Placed Before":"Valuta plasata inainte","Current file size is":"Marimea fisierului este","custom":"personalizat","Customer opinions":"Opiniile clienților","Cycling":"Ciclism","Danger":"Pericol","Dashboard":"Dashboard","dashboard":"dashboard","Data Import":"Import date","data import":"import date","Date":"Data","Default Address":"Adresa implicita","Default Menu":"Meniu implicit","Default":"Implicit","default":"implicit","Delete Avatar":"Sterge Avatar","Delete File":"Sterge Fisier","Delete Template":"Sterge template","Delete video":"Sterge clip","Delete":"Sterge","delete":"sterge","deleted":"sters","Delivered":"Livrat","Description":"Descriere","deselect":"deselecteaza","Designing":"Designing","details":"detalii","Details":"Detalii","Diameter":"Diametru","Direct Link":"Link direct","Discount":"Reducere","Discounts":"Discounturi","discounts":"discounturi","Discussions":"Discutii","Display Name":"Nume Afisat","Documents":"Documente","documents":"documente","Don't have an account?":"Nu ai cont?","Download Delivery Note":"Descarca nota de livrare","Download Excel Sale Offer":"Descarca oferta vanzare (excel)","Download Excel Sale Return Offer":"Descarca oferta de retur (excel)","Download Invoice (long click for cancel)":"Descarca factura (click lung pt anulare factura)","Download Payment (long click for cancel)":"Descarca plata (click lung pt anulare plata)","Download Sale Offer":"Descarca oferta vanzare","Download Sale Return Offer":"Download oferta de retur","Download Stock Removal":"Descarca fisa scoatere din stoc","Download Template":"Descarca template","Download":"Descarca","Drag And Drop":"Drag And Drop","Drinking":null,"Due Date":"Scadenta","E-Mail Address":"Adresă de e-mail","Eating":"Mancand","EAV":null,"eav":null,"Edit Button":"Editeaza buton","Edit Company":"Editeaza companie","Edit Invoice":"Editeaza factura","Edit Language":"Editeaza limba","Edit Menu":"Editeaza meniu","Edit Owner":"Editeaza owner","Edit Permission Group":"Editeaza grup permisii","Edit Permission":"Editeaza permisie","Edit Permissions Group":"Editeaza grup permisii","Edit Person":"Editeaza persoana","Edit personal details":"Editeaza detaliile personale","Edit Role":"Editeaza rol","Edit Texts":"Editeaza texte","edit texts":"editeaza texte","Edit Tutorial":"Editeaza tutorial","Edit User Group":"Editeaza grup useri","Edit User":"Editeaza user","Edit":"Editeaza","edit":"editeaza","Editable Limit":"Limita modificari","edited":"editat","Element":"Element","Emag Active Offer":"Oferta activa Emag","Emag documentatie":null,"Emag Offer":"Oferta Emag","Emag pret":null,"Emag Price":"Pret Emag","Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":"Emailul poate fi editat doar prin formularul de user","Email":"Email","Emailed At":"Trimis prin e-mail la","Emailed":"Email","Enabled":"Activat","End":"Sfarsit","Enter Fulfilling Mode":"Acceseaza modul Efectuare","Enter the application":"Intra in aplicatie","Enter warehouse mode":"Intra in mod magazie","Enter Warehouse Mode":"Paraseste modul Depozit","Entities":"Entitati","entities":"entitati","Entity Details":"Detalii entitate","Entity":"Entitate","entity":"entitate","Entries":"Intrari","entries":"intrari","Entry":"Intrare","entry":"intrare","Error":"Eroare","Events":"Evenimente","Excel":"Excel","Expanded Menu":"Meniu colapsat","Expiration Date":"Data expirare","Export available for download: :filename":"Export :filename disponibil pentru descarcare","Export Done":"Export efectuat","Export emailed: :filename":"Export :filename trimis pe email","Export emailed":"Export trimis pe mail","Export error":"Eroare la exportare","Export Notification":"Notificare export","Export started":"Export inceput","Export":"Export","export":"export","exporting rejected":"export refuzate","exports":"exporturi","External":"Extern","Extra Virgin Olive Oils":"Ulei de măsline extravirgin","Facturi clienti":null,"Facturi furnizori":null,"Failed":"Esuat","failed":"esuat","FAQ":null,"Favorites":"Favorite","Favourite products":"Produse favorite","Fax Number":"Numar fax","Fax":"Fax","FEATURED BRANDS":"BRANDURI PROMOVATE","Featured Brands":"Branduri Promovate","Feb":"Feb","February":"Februarie","File name":"Nume fisier","File Size":"Marime fisier","File":"Fisier","File(s)":"Fisier(e)","Files were uploaded successfully":"Fisierele au fost incarcate","Files":"Fisiere","files":"fisiere","Fill":"Completeaza","Filter by name or code":"Filtreaza dupa nume sau cod","Filter":"Filtru","filtered from":"filtrate din","filtered":"filtrat","Filters":"Filtre","Finalize order":"Finalizează comanda","Finalize":"Finalizeaza","Finalized":"Finalizat","finalized":"finalizat","Financial Overview":"Prezentare Financiară","Financials":"Financiar","financials":"financiar","find matches":"găsește potriviri","First Name":"Prenume","Fiscal Code":"Cod fiscal","Fiscal Invoice":"Factura fiscala","Fiscal":null,"Flag Icon Class":"Clasa iconita steag","Flag Sufix":"Sufix steag","Flag":"Steag","Floor":"Etaj","floor":"etaj","Forbidden":"Interzis","Forgot Password?":"Ai uitat parola?","Forgot password":"Parola uitata","Forgot Your Password?":"Ai uitat parola?","Found :total results":":total rezultate gasite","Friday":"Vineri","Frisbo":null,"From":"De la","from":"de la","Fulfilled At":"Efectuat la","Fulfilling":"În procesare","Furnizor":null,"Gender":"Gen","General Settings":"Setari generale","General":null,"Generate":"Genereaza","Order #:number":"Comanda #:number","Geneva":"Geneva","Get in touch with us":"Contacteaza-ne","Go Home":"Acasă","Google":null,"Got it!":"Am înțeles!","Green":"Verde","Group":"Grup","Groups":"Grupuri","Habits":"Obiceiuri","Harvest 2016\/2017":"Recolta 2016\/2017","Harvest 2017\/2018":"Recolta 2017\/2018","Harvest 2018\/2019":"Recolta 2018\/2019","Harvest 2019\/2020":"Recolta 2019\/2020","Harvest":"Recolta","Has Children":"Are submeniu","Height":"Înălţime","Hello!":"Salut!","Hello":"Salut","Herbs":"Plante aromatice","here":"aici","Hi :name,":"Salut :name,","Hi :name":"Salut :name","Home":"Acasa","Homepage":"Pagina principală","How To Videos":"Clipuri","how to videos":"clipuri","I agree to the":"Sunt de acord cu","I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":"Autorizez :name sa trimita instructiuni institutiei financiare care a emis cardul meu pentru a face plati din contul meu bancar in momentul achizitiei de catre mine a produselor de pe siteul :name","I authorise":"Autorizez","Ian":"Ian","Icon Class":"Clasa icoana","Icon":"Icoana","If you are having trouble clicking the action button, copy and paste the URL below":"Daca întampini dificultati in a accesa butonul, copiază adresa de mai jos","If you did not create an account, no further action is required.":"Dacă nu ai creat un cont, poți ignora acest mesaj.","If you did not receive the email":"Dacă nu ai primit e-mailul","If you did not request a password reset, no further action is required.":"Dacă nu ai solicitat o resetare de parolă, poți ignora acest mesaj.","If you’d like to help, tell us what happened below.":"Daca vrei sa ajuti, noteaza mai jos ce s-a intamplat","IFSC":"CIF","Impersonate":"Impersoneaza","Impersonating":"Impersonare","Import Summary":"Sumar import","Import Type":"Tip import","Import":"Import","Importance":"Importanţă","Important":"Important","Imported At":"Importat la","Imported By":"Importat de","Imported Entries":"Intrari importate","ImportType":"Tip import","In a few minutes you will receive a confirmation email":"In cateva minute vei primi un email de confirmare","In Stock":"In stoc","in stock":"în stoc",":days Days Returns":"Retur Gratuit in :days zile","24h Tracked Shipping":"Livrare cu Tracking in 24h","100% Original Products":"Produse 100% Originale","Secure Payments":"Plati securizate","Income":"Venit","index":"index","Indications":"Indicații","Individual":"Persoana Fizica","Industrial":"Industrial","Info":null,"Ingredients":"Ingrediente","Integrations":"Integrări","Internal #":"Cod intern","Internal Code":"Cod intern","Internal":"Intern","into your web browser":"in browserul dvs.","Invalid signature.":"Semnătură incorectă.","Invalid":null,"Inventory":"Inventar","inventory":"inventar","Invoice Emailed":"Email factura","Invoice for order # :number":"Factura pentru comanda # :number","Invoice for order":"Factura pentru comanda","invoice":"factura","invoices":"facturi","Invoices":"Facturi","Is Active":"Este Activ","Is Cancelled":"Anulat","Is Default":"Este implicit","is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":"Emite factura","Issue Payment":"Adauga plata","Issues":"Probleme","It looks like we’re having issues.":"Se pare ca intampinam probleme","Item":"Articol","items":"articole","Items":"Articole","Jams":"Gemuri","January":"Ianuarie","Jar":"Borcan","July":"Iulie","June":"Iunie","Keep tables configurations":"Pastreaza configuratia tabelelor","Key Collector":"Colector chei","Key Name":"Denumire cheie","Key Value":"Valoare cheie","Key":"Cheie","keys found":"chei gasite","Label Generator":"Generator etichete","Label":"Etichetă","Labels":"Etichete","labels":"etichete","Lane":"Alee","Language Item":"Element limba","Language":"Limba","Languages":"Limbi","languages":"limbi","Last Modified":"Ultima modificare","last month":"luna trecuta","Last Name":"Nume","Last updated":"Ultima modificare","last week":"saptamana trecuta","last year":"anul trecut","Learn more":"Află mai multe","Leave Fulfilling Mode":"Paraseste modul Efectuare","Leave Warehouse Mode":"Acceseaza modul Depozit","Left":"Stanga","Length":"Lungime","limited quantity":"cantitate limitată","Limited Stock Limit":"Pragul pt stoc limitat","Limited Stock":"Stoc limitat","Line":"Linie","Link":"Link","List Price":"Pret lista","Page [page] from [toPage]":"Pagina [page] din [toPage]","List Value":"Valoare lista","List":"Lista","Load More":"Incarca mai multe","Load more":"Incarca mai multe","Loading...":"Se incarca...","Loading":"Se incarca","Localisation Index":"Index localizare","Localisation":"Internationalizare","localisation":"internationalizare","Localities":"Localitati","Locality":"Localitate","Log in":"Autentificare in sistem","Log out":"Delogare","Log Out":"Iesiti","log":"log","Login":"Login","login":"login","Logins":"Logari","logins":"logari","logout":"deconectare","Logout":"Iesire","Logs Index":"Index Loguri","Logs":"Loguri","logs":"loguri","Loss":"Pierdere","Made with Bulma":"Realizat cu Bulma","Made with Laravel":"Realizat cu Laravel","Made with Vue":"Realizat cu Vue","Magazie":null,"Main Menu":"Meniu principal","Manage Buttons":"Editeaza butoane","Manage Menus":"Administreaza meniuri","Manage Permissions":"Administreaza permisii","Mandatary":"Mandatar","Manufacturer":"Producător","Manufacturers":"Producatori","Maps key":null,"Mar":"Mar","March":"Martie","Mark all as read":"Marcheaza-le citite","Mark all read":"Marcheaza tot ca citit","Max":null,"May":"Mai","MB":"MB","Measurement Unit":"Unitate de Masură","Measurement Units":"Unitati de masura","measurement units":"unitati de masura","Member Since":"Membru din","Members":"Membri","Menu Collapse":"Restrange meniu","Menu Items":"Elemente meniu","Menu":"Meniu","Menus Index":"Index meniuri","Menus":"Meniuri","menus":"meniuri","Merge all localisation files":"Îmbină toate fisierele de localizare","Mfr #":"Cod produs","Mfr":"Prod","Min":null,"Miss":null,"Mode":"Mod","Monday":"Luni","more":"mai mult","move to favorites":"muta la favorite","Mr":null,"MU":"UM","N\/A":"N\/A","Name":"Nume","Needs matching":"Necesita match","Net Weight":"Greutate netă","New Address":"Adresa noua","New Password":"Parola noua","New team":"Echipa noua","New Topic":"Subiect nou","New":"Nou","Next Page":"Pagina urmatoare","Next":"Urmator","No activity found":"Nu a fost gasita activitate","No keys found":"Nu au fost gasite chei","No locations found":"Nu au fost găsite locații","No options available":"Nu exista optiuni","No records were found":"Nu au fost gasite inregistrari","No reservations found":"Nu au fost găsite rezervări","No search results found":"Nu au fost gasite rezultate","No teams were created yet":"Încă nu au fost create echipe","No":"Nu","Not Found":"Negăsit","not paid":"neplatit","Note":"Observații","Notes":"Note","Nothing found":"Nu a fost gasit nimic","notification":"notificare","Notifications":"Notificari","notifications":"notificari","Number":"Numar","Observations":"Observatii","of":"din","Offices":"Birouri","Oh no":"O, nu","OK":"OK","on behalf of :company":"pe compania :company","On Demand":"In stoc furnizor","on":"pe","Online":null,"Only missing":"Doar negasite","Operation failed because the permission is allocated to existing role(s)":"Operatia a esuat deoarece permisiunea este alocată unui rol existent","Operation was successfull":"Operatiunea a fost efectuata cu succes","order #:number invoice":"factura pentru comanda #:number","order #:number":"comanda #:number","Order details :number":"Detalii comanda :number","Order Line Limit":null,"Order Payment":"Plata","Order Values":"Valorile comenzii","Order":"Comanda","Orders":"Comenzi","Organize Menus":"Ordonare meniuri","our location":"locatia noastra","Our Location":"Locația noastră","Our team has been notified.":"Echipa noastra a fost notificata","Overdue":"Depășit","Own Stock":"Stoc propriu","Owners Index":"Index owneri","Owners":"Entitati","owners":"owneri","Package Content":"Conținutul pachetului","Packaging Units":"Unități de Ambalare","packaging units":"unități de ambalare","Page Expired":"Pagina a expirat","Parade":"Parada","Parent":"Parinte","Part Number":"Cod","Password Confirmation":"Confirmare parola","Password":"Parola","password":"parola","Passwords must be at least six characters and match the confirmation.":"Parola trebuie să fie de cel puțin șase caractere și să se potrivească cu cea de confirmare.","Past Imports":"Importuri anterioare","Pasta":"Paste","Authorize Only":"Doar Autorizare","pay":"plateste","Pay":"Plateste","Payment method":"Metoda de plata","Payment Methods":"Metode de plata","Payment Order":"OP","Payment":"Plata","payments":"plati","Payments":"Plăți","Pays VAT":"Plateste TVA","People":"Persoane","people":"persoane","Permission Group":"Grup de permisii","Permission Groups Index":"Index grupuri de permisii","Permission Groups":"Grupuri de permisii","Permission Name":"Nume permisie","Permission":"Permisie","permissionGroups":"Grupuri de permisii","Permissions Group Items":"Elemente Permisii Grup","Permissions Group":"Grup Permisii","permissions group":"permisii grup","Permissions Groups":"Grupuri Permisii","Permissions Index":"Index permisii","Permissions":"Permisii","permissions":"permisii","Person client":"Client persoana","Person":"Persoana","person":"persoana","Personal Info":"Informatii personale","Personal information can only be edited via the person form":"Informatiile personale pot fi editate numai prin formularul persoanei","Personal":"Personal","Phone Number":"Numar de telefon","Phone":"Telefon","Pic":null,"Pick an option":"Alege o optiune","Picture":"Poza","Piece":"Buc","Place order":"Plasează comanda","See cart":"Vezi Cos","Placement":"Pozitie","Plati clienti":null,"Plati furnizor":null,"Please choose":"Alege","Please click the button below to verify your email address.":"Te rugăm să accesezi butonul de mai jos pentru a verifica adresa de e-mail.","Please confirm your password before continuing.":"Te rugăm să confirmi parola înainte de a continua.","Please Fill":"Completeaza","Please find attached the order's invoice.":"Găsești factura pentru această comandă în atașament.","Please review your order and payment details":"Te rugăm să verifici detaliile comenzii","Please set or reset your password by clicking the button below.":"Te rugam sa setezi sau sa resetezi parola facand clic pe butonul de mai jos.","POS Receipt":"Chitanta POS","Position":"Pozitie","Positions":"Pozitii","positions":"poziții","Post":"Trimite","Postal Area":"Cod postal","Postal Code":"Cod postal","Postcode":"Cod postal","posted":"postat","Prepared":"Pregătit","Preview":"Previzualizeaza","Previous Page":"Pagina anterioara","Previous":"Anterior","Price":"Pret","Privacy":"Confidențialitate","processed":"procesat","Processing":"In procesare","processing":"in procesare","Product image coming soon":"Poza urmeaza sa fie adaugata","Product":"Produs","Products per page":"Produse per pagina","Products":"Produse","products":"produse","Produs":null,"Profile":"Profil","Profit":"Profit","Proforma Invoice":"Factura proforma","Proforma":null,"Promissory Note":"Bilet la ordin","publish product":"publica produsul","Purchase Returns":"Retur aprovizionari","purchase returns":"retur aprovizionari","Purchase":"Aprovizionare","Purchases":"Aprovizionari","purchases":"aprovizionari","Purple":"Mov","Qty":"Cant.","Quantity":"Cantitate","rating":"evaluare","Rating":"Evaluare","Ratio":"Aspect","Read":"Citire","Recaptcha key":"Cheie Recaptcha","Recaptcha secret":null,"Receipt":"Chitanta","Received":"Primit","Recent orders":"Comenzi recente","Recommended Products":"Produse recomandate","records":"inregistrari","Red":"Rosu","Reference \\ PO":"Referinta","Regards":"Toate cele bune","register":"fă-ți cont","Register":"Fă-ți cont","Registered Entities":"Entitati inregistrate","Registered Users":"Useri Inregistrati","Registry Of Commerce":"Nr. Inreg. Reg. Com.","Registry of commerce":"Registrul comertului","Rejected Association":"Asociația Respinsă","Rejected Brand":"Brand respins","Rejected Documentation":"Documentație respinsă","Rejected EAN":"EAN respins","Reload":"Reincarca","Remember me":"Tine-ma minte","Remember Me":"Ține-mă minte","Reminder":null,"Remove poster":"Sterge poster","remove":"sterge","Reorder Menu":"Reorganizează meniu","reorder":"reorganizează","Repeat Password":"Repeta parola","Replies":"Raspunsuri","Reply":"Raspunde","Resell":"Revanzare","Reservations":"Rezervări","Reserved":"Rezervat","Reset password request":"Cerere resetare parolă","Reset password":"Reseteaza parola","Reset":"Reset","Residential":"Rezidențial","Resource Prefix":"Prefix resursa","Resource":"Resursa","resource":"resursa","Retur aprovizionari":null,"Retur vanzari":null,"Revenue":"Venit","Reviews":"Recenzii","reviews":"recenzii","most popular":"cele mai populare","Right":"Dreapta","Road":"Drum","Role Item":"Element Rol","Role":"Rol","role":"rol","Roles Index":"Index roluri","Roles List":"Lista roluri","Roles":"Roluri","roles":"roluri","Rotatie":null,"Rotation":"Rotatie","Route":"Ruta","Row":"Rand","Running":"Alergare","Sale Channel":"Canal de vânzare","Sale Channels":"Canale de vânzare","sale channels":"canale de vânzare","Sale Price":"Pret vanzare","Sale Returns":"Retur vanzari","sale returns":"returnarea vânzării","Sale Value":"Valoare vanzare","Sales":"Vanzari","sales":"vanzari","Saturday":"Sambata","Sauces":"Sosuri","Save Configuration":"Salveaza configuratie","Save":"Salveaza","Sea Salt":"Sare de mare","Search category limit":"Limita categorii la cautare","Search in products":"Caută în produse","Search placeholder":"Placeholder pt cautare","Search something":"Căutați ceva","Search within brands":"Cauta in branduri","Search...":"Căutare...","Search":"Cauta","Searching...":"Căutând...","Searching":"Caut","Secret":"Secret","See all":"Vezi tot","Select file for import":"Selecteaza fisier pt import","select":"select","selected":"selectat","Send a password reset link":"Genereaza link pentru reset parola","Send a reset password link":"Trimite un link de resetare parola","Send Password Reset Link":"Trimite link-ul pentru resetarea parolei","Serial":"Serie","Server Error":"Eroare de server","Service Unavailable":"Serviciu indisponibil","Service":"Serviciu","Services":"Servicii","services":"Servicii","Set password":"Seteaza parola","Settings":"Setari","settings":"setări","Share your idea...":"Sharuieste ideea","Share your opinion and rate the product":"Împărtășește-ți opinia și evaluează produsul","Share your opinion...":"Sharuieste parerea","Shelf":"Raft","Shift + Enter to post":"Shift + Enter pt a posta","Shipped":"Expediat","Shipping Address":"Adresa de livrare","Shipping charges may be incurred":"Pot fi aplicate costuri de transport","Shipping charges of :value (+VAT) will be added":"Vor fi adaugate costuri de transport in valoare de :value (+TVA)","Shipping cost":"Cost transport","You will pay":"Cat vei plati","Visit the product page":"Viziteaza pagina produsului","Shop Categories":"Categorii","Shopping Cart":"Cos cumparaturi","Show Log":"Arata log","Show Logs from":"Arata log-uri din","Show":"Arata","show":"arata","Showing :from - :to of :total results":"Se afiseaza de la :from pana la :to din :total de rezultate","Sicilian Honey":"Miere siciliană","Sidebar Toggle":"Alterneaza stil meniu","Similar products limit":"Limita pt produse similare","Site Texts":"Texte Site","Size":"Marime","Sleeping":"Dormit","Some fields were invalid. Please correct the errors and try again.":"Cateva campuri au fost invalide. Corecteaza erorile si reincearca.","Something went wrong...":"Ceva nu a functionat corect...","Special Diet":"Dietă specială","Speciality":"Specialitate","Spendings":"Cheltuieli","Square":"Pătrat","Start Tutorial":"Start tutorial","Started":"Inceput","Starters":"Aperitive","Status":"Status","Stock Rotation":"Rotația stocului","Stock: :stock":"Stoc: :stock","Stock":"Stoc","Stopped":"Oprit","Storage Usage":"Utilizare spatiu","store":"magazin","Storing":"Depozitare","Street Type":"Tip strada","Street":"Strada","Sub Administrative Area":"Zona administrativa subordonata","Submit":"Trimite","Success":"Succes","Successful":"Reusite","Summary":"Sumar","Sunday":"Duminica","Supplier Discounts":"Reduceri de la furnizori","Supplier Invoices":"Facturi furnizori","Supplier Number":"Numar furnizor","Supplier Payments":"Plati furnizor","Supplier Ref":"Ref. Furnizor","Supplier Stock":"Stoc furnizor","Supplier":"Furnizor","suppliers":"furnizori","Sweets":"Dulciuri","System":"Sistem","system":"sistem","Table export done":"Export tabel efectuat","Table export error":"Eroare la exportul de tabel","Table export started":"Exportul de tabel a inceput","Table":"Tabel","Tables State Save":"Pastreaza config","Tags":"Taguri","Tasks":"Sarcini","tasks":"sarcini","team":"echipa","Teams":"Echipe","Template":"Șablon","Tenant":"Chiriaş","terms and conditions":"termenii si conditiile","Terms of use":"Termeni si conditii","Terms Of Use":"Termeni si conditii","terms of use":"termenii si conditiile","Thank you for shopping with us":"Îți multumim pentru cumparaturile facute.","Thank you for using our application!":"Îți multumim ca ne folosești aplicatia!","Thank you for your order":"Îți mulțumim pentru comandă","Thank you":"Multumesc","The :filename file is ready":"Fisierul :filename este gata","The address has been successfully updated":"Adresa a fost actualizata cu succes","The address was successfully created":"Adresa a fost creata cu succes","The admin role already has all permissions and does not need syncing":"Rolul de admin deja are toate permisiile si nu are nevoie de sincronizare","The application was updated, please refresh your page to load the latest application version":"Aplicatia a fost actualizata, te rugam reincarca pagina pentru a folosi noua versiune","The Changes have been saved!":"Modificarile au fost salvate!","The changes have been saved":"Modificarile au fost salvate","The company was successfully created":"Compania a fost creata cu succes","The company was successfully deleted":"Compania a fost stearsa cu succes","The company was successfully updated":"Compania a fost actualizata cu succes","The Entity was created!":"Entitatea a fost creata!","The entity was created!":"Entitatea a fost creata!","The export :name could not be completed due to an unknown error":"Exportul :name nu a putut fi finalizat datorita unei erori","The export was cancelled successfully":"Exportul a fost anulat cu succes","The form contains errors":"Formularul contine erori","The generated document has :entries entries":"Documentul are :entries inregistrari","The import was restarted":"Importul a fost repornit","The language files were successfully merged":"Fisiere de limbi au fost concatenate cu succes","The language files were successfully updated":"Fisierele de limba au fost actualizate","The log file":"Fisierul","The log was cleaned":"Log-ul a fost curatat","The menu was created!":"Meniul a fost creat!","The operation was successful":"Operatiunea a fost efectuata cu succes","New order #:number from :channel for :total :currency was placed by :person":"Comanda noua #:number din :channel in valoare de :total a fost plasată de catre :person","Selected payment method: :paymentMethod":"Metoda de plata selectata: :paymentMethod","The permission group was created!":"Grupul de permisii a fost creat!","The permission was created!":"Permisia a fost creata!","The permissions were created!":"Permisiile au fost create!","The person has assigned resources in the system and cannot be deleted":"Persoana are resurse asignate in sistem si nu poate fi stearsa","The Person was successfully created":"Persoana a fost creata cu succes","The person was successfully created":"Persoana a fost creata cu succes","The person was successfully deleted":"Persoana a fost stearsa cu succes","The person was successfully updated":"Persoana a fost actualizata cu succes","The poster was deleted successfully":"Posterul a fost sters cu succes","The requested report was started. It can take a few minutes before you have it in your inbox":"Raportul a fost trimis spre generare. Poate dura cateva minute pana cand il vei primi pe mail","The requested report was started. It can take a few minutes before you have it in your inbox":"Raportul solicitat a fost pornit. Poate dura cateva minute inainte de a-l primi in casuta de e-mail","The role was created!":"Rolul a fost creat!","The selected record is about to be deleted. Are you sure?":"Inregistrarea selectata este pe cale sa fie stearsa. Esti sigur?","This record is about to be deleted. Are you sure?":"Inregistrarea aceasta este pe cale sa fie stearsa. Esti sigur?","The team was successfully saved":"Echipa a fost salvata cu succes","The tutorial was created!":"Tutorialul a fost creat!","The tutorial was successfully deleted":"Tutorialul a fost sters cu succes","The user group was successfully created":"Grupul de useri a fost creat cu succes","The user group was successfully deleted":"Grupul de useri a fost sters cu succes","The user has activity in the system and cannot be deleted":"Userul are activitate in sistem si nu poate fi sters","The User was created!":"Userul a fost creat!","The video file was deleted successfully":"Clipul a fost sters cu succes","The video was updated successfully":"Clipul a fost actualizat cu succes","The webshop is still under construction, but we're launching soon...":"Magazinul online este încă în construcție, dar il vom lansa în curând...","Theme Color":"Culoare Tema","Theme":"Tema","There are no active carousel slides":"Nu exista slide-uri de carusel active","There are no addresses added yet":"Nu ai nicio adresă adăugată","There are no companies added yet":"Nu există companii adăugate","There are no credit cards added yet":"Nu ai niciun card adăugat","This action is unauthorized.":"Această acțiune nu este permisă.","this month":"luna aceasta","This password reset link will expire in :count minutes.":"Acest link de resetare a parolei va expira în :count minute.","This password reset token is invalid.":"Codul de resetare a parolei este greșit.","This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":"Acest site web folosește cookie-uri pentru a-și furniza serviciile și pentru a analiza traficul. Pentru mai multe detalii viziteaza","privacy policy":"politica de confidentialitate","this week":"săptămâna aceasta","this year":"anul acesta","Thursday":"Joi","Time":"Timp","Timeline":"Cronologie","Tip":null,"Title...":"Titlu...","Title":"Titlu","title":"titlu","to manage your addresses":"pt a gestiona adresele","to manage your cards":"pt a gestiona cardurile","to manage your companies":"pentru a gestiona companiile","to view your order":"pentru a vedea comanda","To":"la","to":"la","Today":"Astăzi","today":"azi","Toggle navigation":"Comută navigarea","Too Many Attempts.":"Prea multe încercări.","Too Many Requests":"Prea multe cereri","Top Banner Content":"Continut top banner","Top Pick":"Alegere de Top","Total amount for order #:number is :currency:total":"Totalul de plată pentru comanda #:number este :total :currency","total records":"inregistrari","Total":"Total","total":"total","Translations":"Traduceri","Tuesday":"Marti","Tutorial":"Tutorial","Tutorials Index":"Index tutoriale","Tutorials":"Tutoriale","tutorials":"tutoriale","Type a new comment":"Adauga un comentariu","Type":"Tip","type":"tip","Types":"Tipuri","Unable to read file":"Nu se poate citi fiserul","Unauthorized":"Nepermis","Undo Stock Insertion":"Anuleaza insertia in stoc","Undo Stock Removal":"Anuleaza scoaterea din stoc","Unique Identifier":"Identificator unic","Unit. Price":"Pret unit.","Unitary Price":"Pret unitar","untagged":"netaguit","Update":"Updateaza","Updated At":"Updatat la","Updated By":"Actualizat de","updated the members":"actualizat membrii","updated":"actualizat","Updated":"Updatat","Upload Avatar":"Incarca Avatar","Upload Template":"Incarca template","uploads":"uploaduri","Use":"Utilizare","User Details":"Detalii User","user groups":"grupuri user","User Groups":"Grupuri","User Info":"Informatii user","User Profile":"Profil user","User":"User","user":"user","Users Administration":"Administrare useri","Users Index":"Index useri","Users":"Useri","users":"useri","Valability":"Valabilitate","Valid":"Valid","Editable time limit in seconds. Use 0 to disable":"Limita de timp pentru modificari, in secunde. Folosește 0 pentru a dezactiva","Value":"Valoare","Vanzari":null,"VAT":"TVA","VAT Value":"Valoare TVA","ver":"ver","Verify Email Address":"Verificare adresă de e-mail","Verify Your Email Address":"Verifică-ți adresa de e-mail","Video description":"Descriere clip","Video name":"Nume clip","Video":"Video","video":"video","View Cart":"Vezi cos","View your order":"Vezi comanda","Virtual Position ID":"ID Poziție Virtuală","Visible Brands":"Branduri vizibile","Visible Top Banner":"Top banner vizibil","Vista":"Perspectivă","Volume":"Volum","Voucher":null,"waiting":"in asteptare","Warehouse":"Depozit","warehouses":"depozite","Warehouses":"Depozite","Warning":"Avertizare","was changed":"a fost schimbat","was last updated":"a fost modificat","We can't find a user with that e-mail address.":"Nu există niciun user cu această adresă de e-mail.","We have e-mailed your password reset link!":"Am trimis un e-mail cu link-ul de resetare a parolei!","We will keep you updated on its progress":"Te vom tine la curent cu progresul ei","We won't ask for your password again for a few hours.":"Nu îți vom mai solicita adresa de e-mail pentru câteva ore","Webshop Name":"Nume webshop","Webshop Order":"Comanda webshop","webshop":"magazin web","Webshop":"Magazin web","Website":null,"Wednesday":"Miercuri","Welcome Back":"Bine ai revenit","Welcome":"Bun venit","What happened?":"Ce s-a intamplat?","What you need to know":"Ce trebuie sa stii","What":"Ce","When":"Cand","Whoops!":"Oops!","Width":"Lăţime","Write a review":"Scrie o recenzie","Write":"Scriere","Yes":"Da","yesterday":"ieri","You are not authorized for this action":"Nu esti autorizat pentru aceasta actiune","You are not authorized to perform this action":"Nu esti autorizat pentru aceasta actiune","You are receiving this email because we received a password reset request for your account.":"Primești acest mesaj pentru că a fost înregistrată o solicitare de resetare a parolei pentru contul asociat acestei adrese de e-mail.","You can click":"Poti da click","You don't have any favorite products yet":"Nu ai niciun produs adăugat la favorite","You don't have any notifications":"Nu ai notificari","You don't have any orders yet":"Nu ai efectuat nicio comandă","You don't have any products in the shopping cart right now":"Nu ai niciun produs în coș momentan","You have":"Ai","You just got a notification...":"Tocmai ai primit o notificare...","You made too many attempts. Please wait 5 minutes and try again.":"Ai apelat de prea multe ori generarea raportului. Asteapta 5 minute si reincearca","You may also like":"S-ar putea sa-ti placa si","You will find attached the requested report.":"Vei gasi atasat raportul cerut.","Your :shop order :number":"Comanda :shop cu numarul :number","Your account has been disabled. Please contact the administrator":"Ne pare rau, contul tau a fost dezactivat. Te rugam contacteaza administratorul","Your card was successfully saved":"Cardul tău a fost salvat cu succes","Your email address is not verified.":"Adresa ta de e-mail nu este verificată.","Your Message":"Mesajul tău","Your password has been reset!":"Parola a fost resetată!","You need to accept our terms of use first":"Mai întâi trebuie să accepți termenii noștri de utilizare","item":"articol","PO #":"Ref #","Your privacy is important for us":"Confidențialitatea ta este importantă pentru noi","cart":"cos","favourites":"favorite","addresses":"adrese","orders":"comenzi","payment":"plata","summary":"sumar","add":"adauga","rate":"evalueaza","review":"recenzie","star":"stea","stars":"stele","Thank you for contributing":"Îți mulțumim pentru contribuție","Do you own or have used this product?":"Deții sau ai folosit acest produs?","This review is awaiting approval":"Această recenzie așteaptă aprobare","This review was approved":"Această recenzie a fost aprobată","This review was rejected. You may edit and repost it.":"Această recenzie a fost respinsă. Poți să îl editezi și să îl repostezi.","Edit review":"Editează recenzia","category":"categorie","terms-of-use":"termeni-si-conditii","privacy":"confidentialitate","about-us":"despre-noi","favorites":"favorite",":user finalized the :model :label for the partner :partner":":user a finalizat :model :label pentru partenerul :partner",":type quantity and total were successfully updated":"Cantitatea si totalul pentru :type au fost actualizate",":type update":"Actualizare :type","Please find attached the order details":"Regasiti detaliile comenzii in atasament","Succeeded":"Reusita","External Reference":"Referinta externa","Incomplete order (#:number)":"Comanda incompleta (#:number)","On :date you placed an order on our webshop but forgot to finalize the payment.":"Pe data de :date ai plasat o comanda pe magazinul nostru online dar nu ai finalizat plata.","Please click bellow to view your order and finalize the payment":"Poti sa dai click mai jos pentru a vizualiza comanda si a finaliza plata","New message from the webshop's contact form":"Mesaj nou din pagina de contact a webshop-ului","Your Webshop.":"Magazinul tau.","Message:":"Mesaj:","Contact phone: :phone":"Telefon de contact: :phone","Your order #:number on :shop was successfully placed":"Comanda ta cu numarul #:number de pe :shop a fost plasata cu succes","You have a new webshop order":"Ai o nouă comandă pe webshop","New user registration":"S-a inregistrat un nou utilizator","Before adjusting stock, select the product default supplier":"Înainte de a ajusta stocul, selecteaza furnizorul implicit al produsului","Cannot increment when quantity <= 0":"Nu se poate incrementa când cantitatea <= 0","Cannot decrement when quantity <= 0":"Nu se poate decrementa atunci când cantitatea <= 0","Order already has a :type invoice":"Comanda are deja o factura de tipul :type","Invalid item":"Articol invalid","Cannot update orders that are externally fulfilled":"Nu se pot actualiza comenzile care sunt îndeplinite extern","Order is already in this status":"Comanda are deja acest status","There are no differences on this order":"Nu există diferențe în această comandă","You are not allowed to issue payments without invoices":"Nu este permis sa emiti plati fara facturi","You are not allowed to issue payments on a cancelled invoice'":"Nu este permis sa emiti plati pentru o factura anulata","Sale is already paid":"Vânzarea este deja plătită","You cannot delete a paid order":"Nu poți șterge o comandă plătită","order details":"detaliile comenzii","Delivery Address":"Adresa de livrare","Disc.":"Disc.","M.U.":"U.M.","Product \/ Code":"Produs \/ Cod","registered in doc.":"înregistrat în doc.","received":"primit","U.P acquision":"P.U achiziţie","(no VAT)":"(fara TVA)","Val. acquision":"Val. achizitie","Val. VAT":"Val. TVA","(afferent)":"(aferent)","Info field":"Câmp informativ","additional":"adițional","piece":"buc","Total General":"Total General","Goods Receipt Note":"Nota de receptie a marfurilor","Unit":"Unitate","The undersigned, members of the reception committee, have received the material values provided by":"Subsemnatii, membri ai comitetului de recepție, au primit valorile materiale furnizate de","delegate":"delegat","based on the accompanying documents":"pe baza documentelor însoțitoare","consisting":"constând","car no.":"masina nr.","Optional field, usable in case of observations":"Câmp opțional, utilizabil în caz de observații","Reception committee members name and surname":"Numele și prenumele membrilor comisiei de recepție","Signature":"Semnătură","Manager name and surename":"Numele și prenumele managerului","Manager name and surname":"Numele și prenumele managerului","Reception comitee conclusions":"Concluziile comitetului de primire","Reception committee conclusions":"Concluziile comitetului de primire","Supplier\/carrier point of view":"Punct de vedere furnizor \/ transportator","Other mentions":"Alte mențiuni","The quantity determination was done by":"Determinarea cantității a fost făcută de","The quality determination was made by the sample":"Determinarea calității a fost făcută de eșantionul","no.":"nr.","Sender":"Expeditor","Companion":"Insotitor","Dispatch station":"Stație de expediere","Destination station":"Stația de destinație","Release date":"Data de lansare","Dispatch date":"Data expedierii","Arrival date":"Data sosirii","Supplier delegates, the carrier who participated in the reception":"Delegații furnizorului, curierul care a participat la recepție","ISBN":"ISBN","Total products":"Totalul produselor","Scale indicated weight":"Greutatea indicata pe cantar","Stock Removal":"Scoatere din stoc","Representative of":"Reprezentant al","Name and surname":"Nume si prenume","Identity card":"Card de identitate","TOTAL":"TOTAL","Reception participants":"Participanți la recepție","for Sale":"de vanzare","Emag API call for :action failed":"Apelul API Emag pentru :action a esuat","The action :action on url :url failed with the following error messages:":"Acțiunea :action catre url :url a eșuat cu următoarele mesaje de eroare","New :type callback from emag":"Un nou callback :type de la emag","New :type callback from emag for id :id":"Un nou callback :type de la emag pentru id-ul :id","Missing app product for emag order :id":"Lipseste produsul din aplicatie pentru comanda emag :id","Product :product":"Produsul :product","Offer mismatch for eMag order :id":"Nepotrivirea ofertei pentru comanda eMag :id","For product :code":"Pentru produsul :code","External part number :code":"Cod extern :code","Part number :code":"Cod :code","New eMag order (id: :id) with vouchers:":"Comandă nouă eMag (id: :id) cu vouchere:",":name, value :value":":name, valoare :value","New eMag order (id: :id) with vouchers":"Comandă nouă eMag (id: :id) cu vouchere","Shipping price mismatch for eMag order :order":"Nepotrivirea prețului de expediere pentru comanda eMag :order","Product price mismatch for eMag order :order":"Nepotrivirea prețului produsului pentru comanda eMag :order","Offer with id :id already exists":"Există deja o oferta cu id-ul :id","An offer for the pnk :pnk already exists":"Există deja o ofertă pentru pnk :pnk","An offer with product id :id already exists and needs eMag intervention":"O ofertă cu id-ul produsului :id există deja și necesită intervenția eMag","No order with id :id found":"Nu s-a găsit nicio comandă cu id-ul :id","Write Review For":"Scrie o recenzie pentru","Don't know what to write about?":"Nu știi despre ce să scrii?","Tell us what you like about the purchased product.":"Spune-ne ce iti place la produsul achizitionat.","Does it live up to your expectations?":"Se ridică la nivelul așteptărilor tale?","Are you satisfied with the value for money?":"Esti mulțumit de raportul calitate-preț?","Would you recommend it to others?":"L-ai recomanda altora?","Remove from favorites":"Elimina din favorite","make default":"fă implicit","delivery":"livrare","billing":"facturare","Not Paid":"Neplatit","Requires Action":"Necesită acțiune","verify":"verifica","Verify":"Verifica","confirmation":"confirmare","No addresses defined":"Nu există adrese definite","Part":"Cod","Complete the payment":"Finaliza plata","An extra confirmation is needed to process your payment":"Este necesară o confirmare suplimentară pentru a procesa plata","Order is already paid":"Comanda este deja plătită","Your payment for this order is still processing":"Plata dvs. pentru această comandă este în curs de procesare","Please find the invoice attached":"Găsești factura în atașament","Invoice issued for order #:number":"Factura emisa pentru comanda #:number","Your order #:number":"Comanda dvs #:number","Payment via :type was successful for order :number":"Plata prin :type a reușit pentru comanda :number","A payment was received for order #:number (:total :currency)":"S-a inregistrat plata pentru comanda :number (:total :currency)","Insufficient stock for :product, only :left left":"Stoc insuficient pentru :product, numai :left ramas","Registration is restricted for the moment, please return soon":"Înregistrarea este restricționată pentru moment, te rugăm să revii în curând","Hello :name":"Salut :name","Thank you for creating an account on :shop":"Îți mulțumim pentru că ți-ai creat cont pe :shop","We hope that you will enjoy our products":"Sperăm că te vei bucura de produsele noastre, așa cum ne bucurăm și noi de ele :)","Go to login":"Intră în cont","If you are having trouble clicking the action button, copy and paste the URL below into your web browser":"Daca întampini dificultati in a accesa butonul, copiază adresa de mai jos in browser-ul tau","Payment via :type was successful for order #:number, amount :amount :currency":"Plata prin :type a reușit pentru comanda #:number, suma :amount :currency","View order":"Vezi comanda","Click bellow to view your order and finalize the payment":"Poti sa dai click mai jos pentru a vizualiza comanda si a finaliza plata","A new account was created : :name":"Un cont nou a fost creat: :name","from: :company":"de la: :company","To manage the account please click the link below":"Pentru a gestiona contul, acceseaza linkul de mai jos","View account":"Vezi contul","Details for delivering your order":"Detalii pentru livrarea comenzii","You're just a few steps away from finalizing your order":"Ești la doar câțiva pași distanță de finalizarea comenzii","If you already have an account click":"Dacă ai deja un cont, click","to go to the login page":"pentru a accesa pagina de autentificare","Your account":"Contul tau","I want to create an account":"Vreau să imi creez cont","Company Name":"Numele Companiei","Ship to a different addressed":"Comanda ta #:number a fost plasată cu succes","Skip":"Sari","New order #:number from :channel for :total :currency":"Comanda noua #:number din :channel in valoare de :total :currency","fast-checkout":"checkout-rapid","Fast Checkout":"Checkout Rapid","The action :action failed with the following error code: :code":"Acțiunea :action a eșuat cu următorul cod de eroare: :code","Reported error message: :message":"Mesaj de eroare raportat: :message","Request payload: :payload":"Payload Request: :payload","API call for :action failed":"Apelul API pentru :action a esuat","Notification, :title":"Notificare, :title","New Comment Tag":"Etichetare noua in comentarii","You were just tagged":"Tocmai ai fost etichetat","Comment Tag Notification":"Notificare etichetare in comentariu","Your password will expire soon":"Parola ta va expira curand","You've got :days days left to change it":"Mai ai :days zile ramase pentru a o schimba","You've got until tomorrow to change it":"Mai ai timp pana maine pentru a o schimba","You must change it today":"Trebuie schimbata astazi","Welcome!":"Bine ai venit!","Task Reminder":"Memento Task","This is a reminder for the following task:":"Acesta este un memento pentru următorul task:","View Task":"Vezi task-ul","Task :description":"Task :description","You cannot delete the default address":"Nu poți șterge adresa implicită","You cannot delete an address that you have previously used":"Nu poți șterge o adresă pe care ai folosit-o anterior","You cannot edit this company, please contact support":"Nu poți edita această companie, te rugăm să contactezi echipa de asistenta","Your cart is empty":"Coșul tau este gol","You cannot delete the default card":"Nu poți șterge cardul implicit","You cannot edit this :model, please contact support":"Nu poți edita acest :model, te rugăm să contactezi echipa de asistență","Company information":"Informațiile companiei","Billing address":"Adresa de facturare","Free":"Gratuit","Get to know us":"Cunoaște-ne","Registration successful":"Inregistrare realizata","Your account needs to be activated before you can login":"Contul trebuie să fie activat înainte de a te putea autentifica","You will receive a confirmation email upon approval":"Vei primi un e-mail de confirmare după aprobare","Thank you!":"Iti multumim!","Frequently asked questions":"Intrebari frecvente","Edit address":"Editeaza adresa","Edit company":"Editeaza compania","Pay by Card":"Plătește cu Card","Click":"Click","Not Implemented":"Neimplementat","Approve":"Aproba","Disapprove":"Dezaproba","for \":query\"":"pentru \":query\"","Review was rejected":"Această recenzie a fost respinsă","Review updated for :product":"Recenzie actualizata pentru produsul :product","New review submitted for :product":"Recenzie adaugata pt produsul :product","A product review for :product was updated by :person:":"Recenzie de produs pentru :product actualizata de :person:","A new product review for :product was posted by :person:":"Recenzie de produs pentru :product adaugata de :person:","Your review for :product was :approval":"Recenzia ta pentru produsul :product a fost :approval","If you want, you can revise your review here:":"Daca vrei, poti actualiza recenzia ta aici:","Review :approval":"Recenzie :approval","approved":"aprobata","rejected":"respinsa","Terms of Use":"Termeni si conditii","Similar products":"Produse similare","Enter your email to reset your password":"Introdu adresa ta de e-mail pentru a iti reseta parola","We'll send you an email with the instructions to follow":"Iti vom trimite un e-mail cu instrucțiunile de urmat","similar-products":"produse-similare","description":"descriere","characteristics":"caracteristici","about-this-brand":"despre-acest-brand","not in stock":"nu este în stoc","Not In Stock":"Nu este în stoc","Hold tight, your order is being processed. We will email you when your order succeeds":"Ține-te bine, comanda ta este în curs de procesare. Iți vom trimite un e-mail când comanda va reuși","Pay by Wire Transfer":"Plătește prin Transfer Bancar","Grand Total":"Total General","A cancellation request was received for order #:id":"Am primit o cerere de anulare pentru comanda #:id","Cancellation request for order #:id":"Cerere de anulare pentru comanda #:id","Please let us know if you are able to cancel the order":"Va rugam sa ne comunicati daca puteti efectua anularea","Cancellation request for emag order with id :id":"Cerere de anulare pentru comanda emag cu id :id","An emag order cancellation request was received":"Am primit cerere de anulare pentru o comanda emag","If you need to change your email please contact us":"Dacă dorești schimbarea emailului te rugăm contactează-ne","Awb status was updated to \":status\" for emag order #:id":"Statusul Awb pentru comanda emag #:id a fost actualizat in \":status\"","Awb status update for emag order #:id":"Actualizare status awb pentru comanda emag #:id","You just asked for a password reset. To complete the process click the button below.":"Tocmai ai solicitat resetarea parolei. Pentru a finaliza procesul, accesează butonul de mai jos.","Set your new password":"Setează noua parolă","The company already exists in our system. Please contact us about that":"Compania există deja în sistemul nostru. Te rugăm să ne contactezi referitor la această situație","Secure payments with":"Plătește în siguranță prin","We will create an account for your future orders":"Iți vom crea un cont pentru comenzile tale viitoare","Go back to the store":"Întoarce-te în magazin","Added":"Adăugat","A payment method was already set for this order":"O metodă de plată a fost deja stabilită pentru această comandă","Street line 1":"Nume stradă, număr etc.","Street line 2":"Apartament, complex, unitate etc. (opțional)","A new account was created: :name":"A fost creat un cont nou: :name","Translator":"Traducător","Publisher":"Editor","Edition":"Ediție","Collection":"Colecție","Year of Publication":"Anul publicării","Number of Pages":"Număr de pagini","Genre":"Gen","Subgenre":"Subgen","Author":"Autor","Your order #:number is being processed":"Comanda ta #:number este în curs de procesare","Your order #:number is ready to be shipped":"Comanda ta #:number este pregatită de livrare","Your order #:number was shipped":"Comanda ta #:number a fost expediată","Your order #:number was delivered":"Comanda ta #:number a fost livrată","Your order #:number is being processed. We'll keep you updated.":"Comanda ta #:number este în curs de procesare. Te vom ține la curent.","Your order #:number has been shipped to the following address: :address":"Comanda ta #:number a fost expediată către următoarea adresă: :address","Your order #:number has been delivered. We hope you enjoy your purchase and we'd really love to receive your feedback. If you wish, you can leave us a product review.":"Comanda ta #:number a fost livrată. Sperăm să te bucuri de achiziție și ne-ar încânta să primim feedbackul tău. Dacă dorești, ne poți lăsa un review pentru produsele achizitionate.","Don't hesitate to contact us for any questions.":"Pentru orice întrebări, nu ezita să ne contactezi.","Your order #:number has been packed and is ready for shipping. We'll let you know once it's shipped.":"Comanda ta #:number a fost ambalată și este pregatită de expediere. Te vom anunța de îndată ce a fost expediată.","Order #:number from :channel, placed by :person, has a new status update :status":"Comanda #:number de pe :channel, plasată de :person, are o nouă actualizare status :status","Status update for order #:number":"Actualizare status pentru comanda #:number","Cancellation request for :channel order #:number":"Cerere de anulare pentru comanda de :channel #:number","Store":"Magazin","Fulfill":"Proceseaza","Download order (xlsx)":"Downloadeaza comanda (xlsx)","Download order (pdf)":"Downloadeaza comanda (pdf)","No email sent with the current order":"Comanda actuala nu a fost trimisa pe email","Issue Proforma":"Emite proforma","No email sent with the current invoice":"Factura curenta nu a fost trimisa pe email","Invoice emailed by":"Factura trimisa de","Order emailed by":"Comanda trimisa de","Remove from stock":"Scoate din stoc","Undo fulfill":"Anuleaza procesarea","Insert in stock":"Insereaza in stoc","Prepare products":"Pregateste produsele","Undo prepare":"Anuleaza pregatirea comenzii","Ship":"Expediaza","Undo ship":"Anuleaza expedierea","Deliver":"Livreaza","Undo deliver":"Anuleaza livrearea","NIN":"CNP","Reference":"Referinta","Confirm":"Confirma","Undo confirm":"Anuleaza confirmarea","Receive":"Receptioneaza","Undo receive":"Anuleaza receptia","Download goods received note":"Descarca nota receptie marfa","New Position":"Pozitie noua","Order #:number from :channel, placed by :person, has a new status update: :status":"Comanda #:number de pe :channel, plasată de :person, are o nouă actualizare de status: :status","Please take the necessary steps.":"Te rog sa iei masurile necesare.","A cancellation request was received for a :channel order.":"Am primit cerere de anulare pentru o comada din :channel.","Sale":"Vanzare","The application is briefly unavailable for scheduled maintenance. Please check back in a few minutes":"Aplicația este indisponibilă momentan pentru întreținere programată. Vă rugăm să reveniți în câteva minute","Availability":"Disponibilitate","Price Range":"Interval Pret","price ascending":"pret crescator","price descending":"pret descrescator","Sort":"Ordoneaza","newest":"cele mai noi","On Delivery":"La livrare","Card Processor":"Procesator card","Not published":"Nepublicat","marketplace offer":"oferta marketplace","marketplace product":"produs marketplace","activate":"activeaza","update measurements":"actualizeaza dimensiunile","download":"descarca","download pictures":"descarca pozele","Auto Pricing":null,"Documentation":"Documentatie","Date Filter":"Filtru Data"," Bundle":"Pachet","Emag Number":"Numar emag","Payment Method":"Metoda de plata","Create Payment":"Creeaza plata","Create Product":"Creeaza produs","Free Shipping Above":"Transport gratuit peste","Locker Service":"Serviciu de locker","Courier Account":"Cont curier","Min Margin":"Margine minima","Max Price":"Pret maxim","Min Price":"Pret minim","Auto AWB Generation":"Generare automata AWB","Pagination":"Paginatie","Locality ID":"ID localitate","activate auto pricing":"activeaza auto pricing","deactivate auto pricing":"dezactiveaza auto pricing","Full Name":"Nume si Prenume"} \ No newline at end of file diff --git a/lang/ru.json b/lang/ru.json index 8f3f4a3e0..ec92efb37 100644 --- a/lang/ru.json +++ b/lang/ru.json @@ -1 +1 @@ -{"On Delivery":null,"Card Processor":null,"Not published":null,"marketplace offer":null,"marketplace product":null,"activate":null,"update measurements":null,"download":null,"download pictures":null,"Auto Pricing":null,"Documentation":null,"Date Filter":null," Bundle":null,"Emag Number":null,"Payment Method":null,"Create Payment":null,"Create Product":null,"Free Shipping Above":null,"Locker Service":null,"Courier Account":null,"Min Margin":null,"Max Price":null,"Min Price":null,"Auto AWB Generation":null,"Pagination":null,"Locality ID":null,"activate auto pricing":null,"deactivate auto pricing":null,"newest":null,"Sort":null,"price descending":null,"price ascending":null,"Your order #:number is being processed. We'll keep you updated.":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we'd really love to receive your feedback. If you wish, you can leave us a product review.":null,"Don't hesitate to contact us for any questions.":null,"Your order #:number has been packed and is ready for shipping. We'll let you know once it's shipped.":null,"Cancellation request for :channel order #:number":null,"Store":null,"Fulfill":null,"Download order (xlsx)":null,"Download order (pdf)":null,"No email sent with the current order":null,"Issue Proforma":null,"No email sent with the current invoice":null,"Invoice emailed by":null,"Order emailed by":null,"Remove from stock":null,"Undo fulfill":null,"Insert in stock":null,"Prepare products":null,"Undo prepare":null,"Ship":null,"Undo ship":null,"Deliver":null,"Undo deliver":null,"Reference":null,"Confirm":null,"Undo confirm":null,"Receive":null,"Undo receive":null,"Download goods received note":null,"New Position":null,"Order #:number from :channel, placed by :person, has a new status update: :status":null,"Please take the necessary steps.":null,"A cancellation request was received for a :channel order.":null,"Sale":null,"The application is briefly unavailable for scheduled maintenance. Please check back in a few minutes":null,"Availability":null,"Price Range":null,"Status update for order #:number":null,"Order #:number from :channel, placed by :person, has a new status update :status":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we’d really love to receive your feedback. If you wish, you can leave us a product review.":null,"Your order #:number has been shipped to the following address: :address":null,"Your order #:number has been packed and is ready for shipping. We’ll let you know once it’s shipped.":null,"Your order #:number is being processed. We’ll keep you updated.":null,"Your order #:number was delivered":null,"Your order #:number was shipped":null,"Your order #:number is ready to be shipped":null,"Your order #:number is being processed":null,"Author":null,"Subgenre":null,"Genre":null,"Number of Pages":null,"Year of Publication":null,"Collection":null,"Edition":null,"Publisher":null,"Translator":null,"A new account was created: :name":null,":days Days Returns":null,"Street line 1":null,"Street line 2":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Free Shipping":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Navigation":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Generated for order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"See cart":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"most popular":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us.":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please refresh your page to load the latest application version":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Editable time limit in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review for :product was updated by :person:":null,"A new product review for :product was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file +{"On Delivery":null,"Card Processor":null,"Not published":null,"marketplace offer":null,"marketplace product":null,"activate":null,"update measurements":null,"download":null,"download pictures":null,"Auto Pricing":null,"Documentation":null,"Date Filter":null," Bundle":null,"Emag Number":null,"Payment Method":null,"Create Payment":null,"Create Product":null,"Free Shipping Above":null,"Locker Service":null,"Courier Account":null,"Min Margin":null,"Max Price":null,"Min Price":null,"Auto AWB Generation":null,"Pagination":null,"Locality ID":null,"activate auto pricing":null,"deactivate auto pricing":null,"newest":null,"Sort":null,"price descending":null,"price ascending":null,"Your order #:number is being processed. We'll keep you updated.":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we'd really love to receive your feedback. If you wish, you can leave us a product review.":null,"Don't hesitate to contact us for any questions.":null,"Your order #:number has been packed and is ready for shipping. We'll let you know once it's shipped.":null,"Cancellation request for :channel order #:number":null,"Store":null,"Fulfill":null,"Download order (xlsx)":null,"Download order (pdf)":null,"No email sent with the current order":null,"Issue Proforma":null,"No email sent with the current invoice":null,"Invoice emailed by":null,"Order emailed by":null,"Remove from stock":null,"Undo fulfill":null,"Insert in stock":null,"Prepare products":null,"Undo prepare":null,"Ship":null,"Undo ship":null,"Deliver":null,"Undo deliver":null,"Reference":null,"Confirm":null,"Undo confirm":null,"Receive":null,"Undo receive":null,"Download goods received note":null,"New Position":null,"Order #:number from :channel, placed by :person, has a new status update: :status":null,"Please take the necessary steps.":null,"A cancellation request was received for a :channel order.":null,"Sale":null,"The application is briefly unavailable for scheduled maintenance. Please check back in a few minutes":null,"Availability":null,"Price Range":null,"Status update for order #:number":null,"Order #:number from :channel, placed by :person, has a new status update :status":null,"Your order #:number has been delivered. We hope you enjoy your purchase and we’d really love to receive your feedback. If you wish, you can leave us a product review.":null,"Your order #:number has been shipped to the following address: :address":null,"Your order #:number has been packed and is ready for shipping. We’ll let you know once it’s shipped.":null,"Your order #:number is being processed. We’ll keep you updated.":null,"Your order #:number was delivered":null,"Your order #:number was shipped":null,"Your order #:number is ready to be shipped":null,"Your order #:number is being processed":null,"Author":null,"Subgenre":null,"Genre":null,"Number of Pages":null,"Year of Publication":null,"Collection":null,"Edition":null,"Publisher":null,"Translator":null,"A new account was created: :name":null,":days Days Returns":null,"Street line 1":null,"Street line 2":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Free Shipping":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Navigation":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"See cart":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"most popular":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please refresh your page to load the latest application version":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"This record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Editable time limit in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review for :product was updated by :person:":null,"A new product review for :product was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file diff --git a/phpunit.xml b/phpunit.xml index 1ad9de144..671469aad 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -1,15 +1,5 @@ - - - - ./app - - + ./tests diff --git a/public/vendor/horizon/app-dark.css b/public/vendor/horizon/app-dark.css index 4e66fc981..d82a23d9e 100644 --- a/public/vendor/horizon/app-dark.css +++ b/public/vendor/horizon/app-dark.css @@ -1,8 +1,8 @@ -@charset "UTF-8";.vjs-tree{font-family:Monaco,Menlo,Consolas,Bitstream Vera Sans Mono,monospace!important}.vjs-tree.is-root{position:relative}.vjs-tree .vjs-tree__content{padding-left:1em}.vjs-tree .vjs-tree__content.has-line{border-left:1px dotted hsla(0,0%,80%,.28)!important}.vjs-tree .vjs-tree__brackets{cursor:pointer}.vjs-tree .vjs-tree__brackets:hover{color:#20a0ff}.vjs-tree .vjs-value__boolean,.vjs-tree .vjs-value__null,.vjs-tree .vjs-value__number{color:#a291f5!important}.vjs-tree .vjs-value__string{color:#dacb4d!important} +@charset "UTF-8";.vjs-tree{font-family:Monaco,Menlo,Consolas,Bitstream Vera Sans Mono,monospace!important}.vjs-tree.is-root{position:relative}.vjs-tree .vjs-tree-node{display:flex;position:relative}.vjs-tree .vjs-tree-node .vjs-indent-unit.has-line{border-left:1px dotted hsla(0,0%,80%,.28)!important}.vjs-tree .vjs-tree-node.has-carets{padding-left:15px}.vjs-tree .vjs-tree-node .has-carets.has-selector,.vjs-tree .vjs-tree-node .has-selector{padding-left:30px}.vjs-tree .vjs-indent{display:flex;position:relative}.vjs-tree .vjs-indent-unit{width:1em}.vjs-tree .vjs-tree-brackets{cursor:pointer}.vjs-tree .vjs-tree-brackets:hover{color:#20a0ff}.vjs-tree .vjs-key{color:#c3cbd3!important;padding-right:10px}.vjs-tree .vjs-value-string{color:#c3e88d!important}.vjs-tree .vjs-value-boolean,.vjs-tree .vjs-value-null,.vjs-tree .vjs-value-number,.vjs-tree .vjs-value-undefined{color:#a291f5!important} /*! - * Bootstrap v4.6.0 (https://getbootstrap.com/) - * Copyright 2011-2021 The Bootstrap Authors - * Copyright 2011-2021 Twitter, Inc. + * Bootstrap v4.6.2 (https://getbootstrap.com/) + * Copyright 2011-2022 The Bootstrap Authors + * Copyright 2011-2022 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - */:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#494444;--primary:#adadff;--secondary:#494444;--success:#1f9d55;--info:#1c3d5a;--warning:#b08d2f;--danger:#aa2e28;--light:#f8f9fa;--dark:#494444;--breakpoint-xs:0;--breakpoint-sm:2px;--breakpoint-md:8px;--breakpoint-lg:9px;--breakpoint-xl:10px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,:after,:before{box-sizing:border-box}html{-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0);font-family:sans-serif;line-height:1.15}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{background-color:#1c1c1c;color:#e2edf4;font-family:Nunito;font-size:.95rem;font-weight:400;line-height:1.5;margin:0;text-align:left}[tabindex="-1"]:focus:not(:focus-visible){outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;margin-top:0}p{margin-bottom:1rem;margin-top:0}abbr[data-original-title],abbr[title]{border-bottom:0;cursor:help;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{font-style:normal;line-height:inherit}address,dl,ol,ul{margin-bottom:1rem}dl,ol,ul{margin-top:0}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{background-color:transparent;color:#adadff;text-decoration:none}a:hover{color:#6161ff;text-decoration:underline}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}pre{-ms-overflow-style:scrollbar;margin-bottom:1rem;margin-top:0;overflow:auto}figure{margin:0 0 1rem}img{border-style:none}img,svg{vertical-align:middle}svg{overflow:hidden}table{border-collapse:collapse}caption{caption-side:bottom;color:#6c757d;padding-bottom:.75rem;padding-top:.75rem;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit;margin:0}button,input{overflow:visible}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}textarea{overflow:auto;resize:vertical}fieldset{border:0;margin:0;min-width:0;padding:0}legend{color:inherit;display:block;font-size:1.5rem;line-height:inherit;margin-bottom:.5rem;max-width:100%;padding:0;white-space:normal;width:100%}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:none;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}output{display:inline-block}summary{cursor:pointer;display:list-item}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-weight:500;line-height:1.2;margin-bottom:.5rem}.h1,h1{font-size:2.375rem}.h2,h2{font-size:1.9rem}.h3,h3{font-size:1.6625rem}.h4,h4{font-size:1.425rem}.h5,h5{font-size:1.1875rem}.h6,h6{font-size:.95rem}.lead{font-size:1.1875rem;font-weight:300}.display-1{font-size:6rem}.display-1,.display-2{font-weight:300;line-height:1.2}.display-2{font-size:5.5rem}.display-3{font-size:4.5rem}.display-3,.display-4{font-weight:300;line-height:1.2}.display-4{font-size:3.5rem}hr{border:0;border-top:1px solid rgba(0,0,0,.1);margin-bottom:1rem;margin-top:1rem}.small,small{font-size:80%;font-weight:400}.mark,mark{background-color:#fcf8e3;padding:.2em}.list-inline,.list-unstyled{list-style:none;padding-left:0}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{font-size:1.1875rem;margin-bottom:1rem}.blockquote-footer{color:#6c757d;display:block;font-size:80%}.blockquote-footer:before{content:"— "}.img-fluid,.img-thumbnail{height:auto;max-width:100%}.img-thumbnail{background-color:#1c1c1c;border:1px solid #dee2e6;border-radius:.25rem;padding:.25rem}.figure{display:inline-block}.figure-img{line-height:1;margin-bottom:.5rem}.figure-caption{color:#6c757d;font-size:90%}code{word-wrap:break-word;color:#e83e8c;font-size:87.5%}a>code{color:inherit}kbd{background-color:#212529;border-radius:.2rem;color:#fff;font-size:87.5%;padding:.2rem .4rem}kbd kbd{font-size:100%;font-weight:700;padding:0}pre{color:#212529;display:block;font-size:87.5%}pre code{color:inherit;font-size:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px;width:100%}@media (min-width:2px){.container,.container-sm{max-width:1137px}}@media (min-width:8px){.container,.container-md,.container-sm{max-width:1138px}}@media (min-width:9px){.container,.container-lg,.container-md,.container-sm{max-width:1139px}}@media (min-width:10px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}.row{display:flex;flex-wrap:wrap;margin-left:-15px;margin-right:-15px}.no-gutters{margin-left:0;margin-right:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-left:0;padding-right:0}.col,.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col-auto,.col-lg,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-auto,.col-md,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md-auto,.col-sm,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-auto{padding-left:15px;padding-right:15px;position:relative;width:100%}.col{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-1>*{flex:0 0 100%;max-width:100%}.row-cols-2>*{flex:0 0 50%;max-width:50%}.row-cols-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-4>*{flex:0 0 25%;max-width:25%}.row-cols-5>*{flex:0 0 20%;max-width:20%}.row-cols-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-auto{flex:0 0 auto;max-width:100%;width:auto}.col-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-3{flex:0 0 25%;max-width:25%}.col-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-6{flex:0 0 50%;max-width:50%}.col-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-9{flex:0 0 75%;max-width:75%}.col-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-12{flex:0 0 100%;max-width:100%}.order-first{order:-1}.order-last{order:13}.order-0{order:0}.order-1{order:1}.order-2{order:2}.order-3{order:3}.order-4{order:4}.order-5{order:5}.order-6{order:6}.order-7{order:7}.order-8{order:8}.order-9{order:9}.order-10{order:10}.order-11{order:11}.order-12{order:12}.offset-1{margin-left:8.3333333333%}.offset-2{margin-left:16.6666666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.3333333333%}.offset-5{margin-left:41.6666666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.3333333333%}.offset-8{margin-left:66.6666666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.3333333333%}.offset-11{margin-left:91.6666666667%}@media (min-width:2px){.col-sm{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-sm-1>*{flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-sm-auto{flex:0 0 auto;max-width:100%;width:auto}.col-sm-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-sm-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-sm-3{flex:0 0 25%;max-width:25%}.col-sm-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-sm-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-sm-6{flex:0 0 50%;max-width:50%}.col-sm-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-sm-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-sm-9{flex:0 0 75%;max-width:75%}.col-sm-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-sm-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-sm-12{flex:0 0 100%;max-width:100%}.order-sm-first{order:-1}.order-sm-last{order:13}.order-sm-0{order:0}.order-sm-1{order:1}.order-sm-2{order:2}.order-sm-3{order:3}.order-sm-4{order:4}.order-sm-5{order:5}.order-sm-6{order:6}.order-sm-7{order:7}.order-sm-8{order:8}.order-sm-9{order:9}.order-sm-10{order:10}.order-sm-11{order:11}.order-sm-12{order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.3333333333%}.offset-sm-2{margin-left:16.6666666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.3333333333%}.offset-sm-5{margin-left:41.6666666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.3333333333%}.offset-sm-8{margin-left:66.6666666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.3333333333%}.offset-sm-11{margin-left:91.6666666667%}}@media (min-width:8px){.col-md{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-md-1>*{flex:0 0 100%;max-width:100%}.row-cols-md-2>*{flex:0 0 50%;max-width:50%}.row-cols-md-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-md-4>*{flex:0 0 25%;max-width:25%}.row-cols-md-5>*{flex:0 0 20%;max-width:20%}.row-cols-md-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-md-auto{flex:0 0 auto;max-width:100%;width:auto}.col-md-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-md-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-md-3{flex:0 0 25%;max-width:25%}.col-md-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-md-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-md-6{flex:0 0 50%;max-width:50%}.col-md-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-md-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-md-9{flex:0 0 75%;max-width:75%}.col-md-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-md-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-md-12{flex:0 0 100%;max-width:100%}.order-md-first{order:-1}.order-md-last{order:13}.order-md-0{order:0}.order-md-1{order:1}.order-md-2{order:2}.order-md-3{order:3}.order-md-4{order:4}.order-md-5{order:5}.order-md-6{order:6}.order-md-7{order:7}.order-md-8{order:8}.order-md-9{order:9}.order-md-10{order:10}.order-md-11{order:11}.order-md-12{order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.3333333333%}.offset-md-2{margin-left:16.6666666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.3333333333%}.offset-md-5{margin-left:41.6666666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.3333333333%}.offset-md-8{margin-left:66.6666666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.3333333333%}.offset-md-11{margin-left:91.6666666667%}}@media (min-width:9px){.col-lg{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-lg-1>*{flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-lg-auto{flex:0 0 auto;max-width:100%;width:auto}.col-lg-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-lg-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-lg-3{flex:0 0 25%;max-width:25%}.col-lg-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-lg-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-lg-6{flex:0 0 50%;max-width:50%}.col-lg-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-lg-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-lg-9{flex:0 0 75%;max-width:75%}.col-lg-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-lg-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-lg-12{flex:0 0 100%;max-width:100%}.order-lg-first{order:-1}.order-lg-last{order:13}.order-lg-0{order:0}.order-lg-1{order:1}.order-lg-2{order:2}.order-lg-3{order:3}.order-lg-4{order:4}.order-lg-5{order:5}.order-lg-6{order:6}.order-lg-7{order:7}.order-lg-8{order:8}.order-lg-9{order:9}.order-lg-10{order:10}.order-lg-11{order:11}.order-lg-12{order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.3333333333%}.offset-lg-2{margin-left:16.6666666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.3333333333%}.offset-lg-5{margin-left:41.6666666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.3333333333%}.offset-lg-8{margin-left:66.6666666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.3333333333%}.offset-lg-11{margin-left:91.6666666667%}}@media (min-width:10px){.col-xl{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-xl-1>*{flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-xl-auto{flex:0 0 auto;max-width:100%;width:auto}.col-xl-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-xl-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-xl-3{flex:0 0 25%;max-width:25%}.col-xl-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-xl-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-xl-6{flex:0 0 50%;max-width:50%}.col-xl-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-xl-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-xl-9{flex:0 0 75%;max-width:75%}.col-xl-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-xl-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-xl-12{flex:0 0 100%;max-width:100%}.order-xl-first{order:-1}.order-xl-last{order:13}.order-xl-0{order:0}.order-xl-1{order:1}.order-xl-2{order:2}.order-xl-3{order:3}.order-xl-4{order:4}.order-xl-5{order:5}.order-xl-6{order:6}.order-xl-7{order:7}.order-xl-8{order:8}.order-xl-9{order:9}.order-xl-10{order:10}.order-xl-11{order:11}.order-xl-12{order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.3333333333%}.offset-xl-2{margin-left:16.6666666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.3333333333%}.offset-xl-5{margin-left:41.6666666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.3333333333%}.offset-xl-8{margin-left:66.6666666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.3333333333%}.offset-xl-11{margin-left:91.6666666667%}}.table{color:#e2edf4;margin-bottom:1rem;width:100%}.table td,.table th{border-top:1px solid #343434;padding:.75rem;vertical-align:top}.table thead th{border-bottom:2px solid #343434;vertical-align:bottom}.table tbody+tbody{border-top:2px solid #343434}.table-sm td,.table-sm th{padding:.3rem}.table-bordered,.table-bordered td,.table-bordered th{border:1px solid #343434}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{background-color:#343434;color:#e2edf4}.table-primary,.table-primary>td,.table-primary>th{background-color:#e8e8ff}.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#d4d4ff}.table-hover .table-primary:hover,.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#cfcfff}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#cccbcb}.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#a09e9e}.table-hover .table-secondary:hover,.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#bfbebe}.table-success,.table-success>td,.table-success>th{background-color:#c0e4cf}.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#8bcca7}.table-hover .table-success:hover,.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#aedcc1}.table-info,.table-info>td,.table-info>th{background-color:#bfc9d1}.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#899aa9}.table-hover .table-info:hover,.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#b0bcc6}.table-warning,.table-warning>td,.table-warning>th{background-color:#e9dfc5}.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#d6c493}.table-hover .table-warning:hover,.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#e2d5b3}.table-danger,.table-danger>td,.table-danger>th{background-color:#e7c4c3}.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#d3928f}.table-hover .table-danger:hover,.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#e0b2b1}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#fbfcfc}.table-hover .table-light:hover,.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#cccbcb}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#a09e9e}.table-hover .table-dark:hover,.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#bfbebe}.table-active,.table-active>td,.table-active>th{background-color:#343434}.table-hover .table-active:hover,.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:#272727}.table .thead-dark th{background-color:#494444;border-color:#5d5656;color:#fff}.table .thead-light th{background-color:#e9ecef;border-color:#343434;color:#495057}.table-dark{background-color:#494444;color:#fff}.table-dark td,.table-dark th,.table-dark thead th{border-color:#5d5656}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:hsla(0,0%,100%,.05)}.table-dark.table-hover tbody tr:hover{background-color:hsla(0,0%,100%,.075);color:#fff}@media (max-width:1.98px){.table-responsive-sm{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:7.98px){.table-responsive-md{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive-md>.table-bordered{border:0}}@media (max-width:8.98px){.table-responsive-lg{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:9.98px){.table-responsive-xl{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive>.table-bordered{border:0}.form-control{background-clip:padding-box;background-color:#242424;border:1px solid #343434;border-radius:.25rem;color:#e2edf4;display:block;font-size:.95rem;font-weight:400;height:calc(1.5em + .75rem + 2px);line-height:1.5;padding:.375rem .75rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:100%}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #e2edf4}.form-control:focus{background-color:#242424;border-color:#fff;box-shadow:0 0 0 .2rem rgba(173,173,255,.25);color:#e2edf4;outline:0}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none}select.form-control:focus::-ms-value{background-color:#242424;color:#e2edf4}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{font-size:inherit;line-height:1.5;margin-bottom:0;padding-bottom:calc(.375rem + 1px);padding-top:calc(.375rem + 1px)}.col-form-label-lg{font-size:1.1875rem;line-height:1.5;padding-bottom:calc(.5rem + 1px);padding-top:calc(.5rem + 1px)}.col-form-label-sm{font-size:.83125rem;line-height:1.5;padding-bottom:calc(.25rem + 1px);padding-top:calc(.25rem + 1px)}.form-control-plaintext{background-color:transparent;border:solid transparent;border-width:1px 0;color:#e2edf4;display:block;font-size:.95rem;line-height:1.5;margin-bottom:0;padding:.375rem 0;width:100%}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-left:0;padding-right:0}.form-control-sm{border-radius:.2rem;font-size:.83125rem;height:calc(1.5em + .5rem + 2px);line-height:1.5;padding:.25rem .5rem}.form-control-lg{border-radius:.3rem;font-size:1.1875rem;height:calc(1.5em + 1rem + 2px);line-height:1.5;padding:.5rem 1rem}select.form-control[multiple],select.form-control[size],textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:flex;flex-wrap:wrap;margin-left:-5px;margin-right:-5px}.form-row>.col,.form-row>[class*=col-]{padding-left:5px;padding-right:5px}.form-check{display:block;padding-left:1.25rem;position:relative}.form-check-input{margin-left:-1.25rem;margin-top:.3rem;position:absolute}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{align-items:center;display:inline-flex;margin-right:.75rem;padding-left:0}.form-check-inline .form-check-input{margin-left:0;margin-right:.3125rem;margin-top:0;position:static}.valid-feedback{color:#1f9d55;display:none;font-size:80%;margin-top:.25rem;width:100%}.valid-tooltip{background-color:rgba(31,157,85,.9);border-radius:.25rem;color:#fff;display:none;font-size:.83125rem;left:0;line-height:1.5;margin-top:.1rem;max-width:100%;padding:.25rem .5rem;position:absolute;top:100%;z-index:5}.form-row>.col>.valid-tooltip,.form-row>[class*=col-]>.valid-tooltip{left:5px}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%231f9d55' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");background-position:right calc(.375em + .1875rem) center;background-repeat:no-repeat;background-size:calc(.75em + .375rem) calc(.75em + .375rem);border-color:#1f9d55;padding-right:calc(1.5em + .75rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#1f9d55;box-shadow:0 0 0 .2rem rgba(31,157,85,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem);padding-right:calc(1.5em + .75rem)}.custom-select.is-valid,.was-validated .custom-select:valid{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23494444' d='M2 0 0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat,#242424 url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%231f9d55' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat;border-color:#1f9d55;padding-right:calc(.75em + 2.3125rem)}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#1f9d55;box-shadow:0 0 0 .2rem rgba(31,157,85,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#1f9d55}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#1f9d55}.custom-control-input.is-valid~.custom-control-label:before,.was-validated .custom-control-input:valid~.custom-control-label:before{border-color:#1f9d55}.custom-control-input.is-valid:checked~.custom-control-label:before,.was-validated .custom-control-input:valid:checked~.custom-control-label:before{background-color:#27c86c;border-color:#27c86c}.custom-control-input.is-valid:focus~.custom-control-label:before,.was-validated .custom-control-input:valid:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(31,157,85,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label:before{border-color:#1f9d55}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#1f9d55}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#1f9d55;box-shadow:0 0 0 .2rem rgba(31,157,85,.25)}.invalid-feedback{color:#aa2e28;display:none;font-size:80%;margin-top:.25rem;width:100%}.invalid-tooltip{background-color:rgba(170,46,40,.9);border-radius:.25rem;color:#fff;display:none;font-size:.83125rem;left:0;line-height:1.5;margin-top:.1rem;max-width:100%;padding:.25rem .5rem;position:absolute;top:100%;z-index:5}.form-row>.col>.invalid-tooltip,.form-row>[class*=col-]>.invalid-tooltip{left:5px}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23aa2e28'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23aa2e28' stroke='none'/%3E%3C/svg%3E");background-position:right calc(.375em + .1875rem) center;background-repeat:no-repeat;background-size:calc(.75em + .375rem) calc(.75em + .375rem);border-color:#aa2e28;padding-right:calc(1.5em + .75rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#aa2e28;box-shadow:0 0 0 .2rem rgba(170,46,40,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem);padding-right:calc(1.5em + .75rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23494444' d='M2 0 0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat,#242424 url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23aa2e28'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23aa2e28' stroke='none'/%3E%3C/svg%3E") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat;border-color:#aa2e28;padding-right:calc(.75em + 2.3125rem)}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#aa2e28;box-shadow:0 0 0 .2rem rgba(170,46,40,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#aa2e28}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#aa2e28}.custom-control-input.is-invalid~.custom-control-label:before,.was-validated .custom-control-input:invalid~.custom-control-label:before{border-color:#aa2e28}.custom-control-input.is-invalid:checked~.custom-control-label:before,.was-validated .custom-control-input:invalid:checked~.custom-control-label:before{background-color:#d03d35;border-color:#d03d35}.custom-control-input.is-invalid:focus~.custom-control-label:before,.was-validated .custom-control-input:invalid:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(170,46,40,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label:before{border-color:#aa2e28}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#aa2e28}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#aa2e28;box-shadow:0 0 0 .2rem rgba(170,46,40,.25)}.form-inline{align-items:center;display:flex;flex-flow:row wrap}.form-inline .form-check{width:100%}@media (min-width:2px){.form-inline label{justify-content:center}.form-inline .form-group,.form-inline label{align-items:center;display:flex;margin-bottom:0}.form-inline .form-group{flex:0 0 auto;flex-flow:row wrap}.form-inline .form-control{display:inline-block;vertical-align:middle;width:auto}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{align-items:center;display:flex;justify-content:center;padding-left:0;width:auto}.form-inline .form-check-input{flex-shrink:0;margin-left:0;margin-right:.25rem;margin-top:0;position:relative}.form-inline .custom-control{align-items:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{background-color:transparent;border:1px solid transparent;border-radius:.25rem;color:#e2edf4;display:inline-block;font-size:.95rem;font-weight:400;line-height:1.5;padding:.375rem .75rem;text-align:center;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#e2edf4;text-decoration:none}.btn.focus,.btn:focus{box-shadow:0 0 0 .2rem rgba(173,173,255,.25);outline:0}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{background-color:#adadff;border-color:#adadff;color:#212529}.btn-primary.focus,.btn-primary:focus,.btn-primary:hover{background-color:#8787ff;border-color:#7a7aff;color:#fff}.btn-primary.focus,.btn-primary:focus{box-shadow:0 0 0 .2rem rgba(152,153,223,.5)}.btn-primary.disabled,.btn-primary:disabled{background-color:#adadff;border-color:#adadff;color:#212529}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{background-color:#7a7aff;border-color:#6d6dff;color:#fff}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(152,153,223,.5)}.btn-secondary{background-color:#494444;border-color:#494444;color:#fff}.btn-secondary.focus,.btn-secondary:focus,.btn-secondary:hover{background-color:#353232;border-color:#2f2b2b;color:#fff}.btn-secondary.focus,.btn-secondary:focus{box-shadow:0 0 0 .2rem hsla(0,2%,38%,.5)}.btn-secondary.disabled,.btn-secondary:disabled{background-color:#494444;border-color:#494444;color:#fff}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{background-color:#2f2b2b;border-color:#282525;color:#fff}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem hsla(0,2%,38%,.5)}.btn-success{background-color:#1f9d55;border-color:#1f9d55;color:#fff}.btn-success.focus,.btn-success:focus,.btn-success:hover{background-color:#197d44;border-color:#17723e;color:#fff}.btn-success.focus,.btn-success:focus{box-shadow:0 0 0 .2rem rgba(65,172,111,.5)}.btn-success.disabled,.btn-success:disabled{background-color:#1f9d55;border-color:#1f9d55;color:#fff}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{background-color:#17723e;border-color:#146838;color:#fff}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(65,172,111,.5)}.btn-info{background-color:#1c3d5a;border-color:#1c3d5a;color:#fff}.btn-info.focus,.btn-info:focus,.btn-info:hover{background-color:#13293d;border-color:#102333;color:#fff}.btn-info.focus,.btn-info:focus{box-shadow:0 0 0 .2rem rgba(62,90,115,.5)}.btn-info.disabled,.btn-info:disabled{background-color:#1c3d5a;border-color:#1c3d5a;color:#fff}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{background-color:#102333;border-color:#0d1c29;color:#fff}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(62,90,115,.5)}.btn-warning{background-color:#b08d2f;border-color:#b08d2f;color:#fff}.btn-warning.focus,.btn-warning:focus,.btn-warning:hover{background-color:#927527;border-color:#886d24;color:#fff}.btn-warning.focus,.btn-warning:focus{box-shadow:0 0 0 .2rem rgba(188,158,78,.5)}.btn-warning.disabled,.btn-warning:disabled{background-color:#b08d2f;border-color:#b08d2f;color:#fff}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{background-color:#886d24;border-color:#7e6522;color:#fff}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(188,158,78,.5)}.btn-danger{background-color:#aa2e28;border-color:#aa2e28;color:#fff}.btn-danger.focus,.btn-danger:focus,.btn-danger:hover{background-color:#8b2621;border-color:#81231e;color:#fff}.btn-danger.focus,.btn-danger:focus{box-shadow:0 0 0 .2rem rgba(183,77,72,.5)}.btn-danger.disabled,.btn-danger:disabled{background-color:#aa2e28;border-color:#aa2e28;color:#fff}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{background-color:#81231e;border-color:#76201c;color:#fff}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(183,77,72,.5)}.btn-light{background-color:#f8f9fa;border-color:#f8f9fa;color:#212529}.btn-light.focus,.btn-light:focus,.btn-light:hover{background-color:#e2e6ea;border-color:#dae0e5;color:#212529}.btn-light.focus,.btn-light:focus{box-shadow:0 0 0 .2rem hsla(220,4%,85%,.5)}.btn-light.disabled,.btn-light:disabled{background-color:#f8f9fa;border-color:#f8f9fa;color:#212529}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{background-color:#dae0e5;border-color:#d3d9df;color:#212529}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem hsla(220,4%,85%,.5)}.btn-dark{background-color:#494444;border-color:#494444;color:#fff}.btn-dark.focus,.btn-dark:focus,.btn-dark:hover{background-color:#353232;border-color:#2f2b2b;color:#fff}.btn-dark.focus,.btn-dark:focus{box-shadow:0 0 0 .2rem hsla(0,2%,38%,.5)}.btn-dark.disabled,.btn-dark:disabled{background-color:#494444;border-color:#494444;color:#fff}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{background-color:#2f2b2b;border-color:#282525;color:#fff}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem hsla(0,2%,38%,.5)}.btn-outline-primary{border-color:#adadff;color:#adadff}.btn-outline-primary:hover{background-color:#adadff;border-color:#adadff;color:#212529}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(173,173,255,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{background-color:transparent;color:#adadff}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{background-color:#adadff;border-color:#adadff;color:#212529}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(173,173,255,.5)}.btn-outline-secondary{border-color:#494444;color:#494444}.btn-outline-secondary:hover{background-color:#494444;border-color:#494444;color:#fff}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(73,68,68,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{background-color:transparent;color:#494444}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{background-color:#494444;border-color:#494444;color:#fff}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(73,68,68,.5)}.btn-outline-success{border-color:#1f9d55;color:#1f9d55}.btn-outline-success:hover{background-color:#1f9d55;border-color:#1f9d55;color:#fff}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(31,157,85,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{background-color:transparent;color:#1f9d55}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{background-color:#1f9d55;border-color:#1f9d55;color:#fff}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(31,157,85,.5)}.btn-outline-info{border-color:#1c3d5a;color:#1c3d5a}.btn-outline-info:hover{background-color:#1c3d5a;border-color:#1c3d5a;color:#fff}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(28,61,90,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{background-color:transparent;color:#1c3d5a}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{background-color:#1c3d5a;border-color:#1c3d5a;color:#fff}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(28,61,90,.5)}.btn-outline-warning{border-color:#b08d2f;color:#b08d2f}.btn-outline-warning:hover{background-color:#b08d2f;border-color:#b08d2f;color:#fff}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(176,141,47,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{background-color:transparent;color:#b08d2f}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{background-color:#b08d2f;border-color:#b08d2f;color:#fff}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(176,141,47,.5)}.btn-outline-danger{border-color:#aa2e28;color:#aa2e28}.btn-outline-danger:hover{background-color:#aa2e28;border-color:#aa2e28;color:#fff}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(170,46,40,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{background-color:transparent;color:#aa2e28}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{background-color:#aa2e28;border-color:#aa2e28;color:#fff}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(170,46,40,.5)}.btn-outline-light{border-color:#f8f9fa;color:#f8f9fa}.btn-outline-light:hover{background-color:#f8f9fa;border-color:#f8f9fa;color:#212529}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{background-color:transparent;color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{background-color:#f8f9fa;border-color:#f8f9fa;color:#212529}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{border-color:#494444;color:#494444}.btn-outline-dark:hover{background-color:#494444;border-color:#494444;color:#fff}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(73,68,68,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{background-color:transparent;color:#494444}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{background-color:#494444;border-color:#494444;color:#fff}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(73,68,68,.5)}.btn-link{color:#adadff;font-weight:400;text-decoration:none}.btn-link:hover{color:#6161ff}.btn-link.focus,.btn-link:focus,.btn-link:hover{text-decoration:underline}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-group-lg>.btn,.btn-lg{border-radius:.3rem;font-size:1.1875rem;line-height:1.5;padding:.5rem 1rem}.btn-group-sm>.btn,.btn-sm{border-radius:.2rem;font-size:.83125rem;line-height:1.5;padding:.25rem .5rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;position:relative;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle:after{border-bottom:0;border-left:.3em solid transparent;border-right:.3em solid transparent;border-top:.3em solid;content:"";display:inline-block;margin-left:.255em;vertical-align:.255em}.dropdown-toggle:empty:after{margin-left:0}.dropdown-menu{background-clip:padding-box;background-color:#181818;border:1px solid rgba(0,0,0,.15);border-radius:.25rem;color:#e2edf4;display:none;float:left;font-size:.95rem;left:0;list-style:none;margin:.125rem 0 0;min-width:10rem;padding:.5rem 0;position:absolute;text-align:left;top:100%;z-index:1000}.dropdown-menu-left{left:0;right:auto}.dropdown-menu-right{left:auto;right:0}@media (min-width:2px){.dropdown-menu-sm-left{left:0;right:auto}.dropdown-menu-sm-right{left:auto;right:0}}@media (min-width:8px){.dropdown-menu-md-left{left:0;right:auto}.dropdown-menu-md-right{left:auto;right:0}}@media (min-width:9px){.dropdown-menu-lg-left{left:0;right:auto}.dropdown-menu-lg-right{left:auto;right:0}}@media (min-width:10px){.dropdown-menu-xl-left{left:0;right:auto}.dropdown-menu-xl-right{left:auto;right:0}}.dropup .dropdown-menu{bottom:100%;margin-bottom:.125rem;margin-top:0;top:auto}.dropup .dropdown-toggle:after{border-bottom:.3em solid;border-left:.3em solid transparent;border-right:.3em solid transparent;border-top:0;content:"";display:inline-block;margin-left:.255em;vertical-align:.255em}.dropup .dropdown-toggle:empty:after{margin-left:0}.dropright .dropdown-menu{left:100%;margin-left:.125rem;margin-top:0;right:auto;top:0}.dropright .dropdown-toggle:after{border-bottom:.3em solid transparent;border-left:.3em solid;border-right:0;border-top:.3em solid transparent;content:"";display:inline-block;margin-left:.255em;vertical-align:.255em}.dropright .dropdown-toggle:empty:after{margin-left:0}.dropright .dropdown-toggle:after{vertical-align:0}.dropleft .dropdown-menu{left:auto;margin-right:.125rem;margin-top:0;right:100%;top:0}.dropleft .dropdown-toggle:after{content:"";display:inline-block;display:none;margin-left:.255em;vertical-align:.255em}.dropleft .dropdown-toggle:before{border-bottom:.3em solid transparent;border-right:.3em solid;border-top:.3em solid transparent;content:"";display:inline-block;margin-right:.255em;vertical-align:.255em}.dropleft .dropdown-toggle:empty:after{margin-left:0}.dropleft .dropdown-toggle:before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{bottom:auto;right:auto}.dropdown-divider{border-top:1px solid #e9ecef;height:0;margin:.5rem 0;overflow:hidden}.dropdown-item{background-color:transparent;border:0;clear:both;color:#fff;display:block;font-weight:400;padding:.25rem 1.5rem;text-align:inherit;white-space:nowrap;width:100%}.dropdown-item:focus,.dropdown-item:hover{background-color:#e9ecef;color:#16181b;text-decoration:none}.dropdown-item.active,.dropdown-item:active{background-color:#adadff;color:#fff;text-decoration:none}.dropdown-item.disabled,.dropdown-item:disabled{background-color:transparent;color:#adb5bd;pointer-events:none}.dropdown-menu.show{display:block}.dropdown-header{color:#6c757d;display:block;font-size:.83125rem;margin-bottom:0;padding:.5rem 1.5rem;white-space:nowrap}.dropdown-item-text{color:#fff;display:block;padding:.25rem 1.5rem}.btn-group,.btn-group-vertical{display:inline-flex;position:relative;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{flex:1 1 auto;position:relative}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.dropdown-toggle-split{padding-left:.5625rem;padding-right:.5625rem}.dropdown-toggle-split:after,.dropright .dropdown-toggle-split:after,.dropup .dropdown-toggle-split:after{margin-left:0}.dropleft .dropdown-toggle-split:before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-left:.375rem;padding-right:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-left:.75rem;padding-right:.75rem}.btn-group-vertical{align-items:flex-start;flex-direction:column;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-left-radius:0;border-bottom-right-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio],.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio]{clip:rect(0,0,0,0);pointer-events:none;position:absolute}.input-group{align-items:stretch;display:flex;flex-wrap:wrap;position:relative;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{flex:1 1 auto;margin-bottom:0;min-width:0;position:relative;width:1%}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.input-group>.custom-file{align-items:center;display:flex}.input-group>.custom-file:not(:first-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label{border-bottom-left-radius:0;border-top-left-radius:0}.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label:after,.input-group.has-validation>.custom-select:nth-last-child(n+3),.input-group.has-validation>.form-control:nth-last-child(n+3),.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label:after,.input-group:not(.has-validation)>.custom-select:not(:last-child),.input-group:not(.has-validation)>.form-control:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.input-group-append,.input-group-prepend{display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{align-items:center;background-color:#e9ecef;border:1px solid #343434;border-radius:.25rem;color:#e2edf4;display:flex;font-size:.95rem;font-weight:400;line-height:1.5;margin-bottom:0;padding:.375rem .75rem;text-align:center;white-space:nowrap}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{border-radius:.3rem;font-size:1.1875rem;line-height:1.5;padding:.5rem 1rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + .5rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{border-radius:.2rem;font-size:.83125rem;line-height:1.5;padding:.25rem .5rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-bottom-right-radius:0;border-top-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-bottom-left-radius:0;border-top-left-radius:0}.custom-control{-webkit-print-color-adjust:exact;color-adjust:exact;display:block;min-height:1.425rem;padding-left:1.5rem;position:relative;z-index:1}.custom-control-inline{display:inline-flex;margin-right:1rem}.custom-control-input{height:1.2125rem;left:0;opacity:0;position:absolute;width:1rem;z-index:-1}.custom-control-input:checked~.custom-control-label:before{background-color:#adadff;border-color:#adadff;color:#fff}.custom-control-input:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(173,173,255,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label:before{border-color:#fff}.custom-control-input:not(:disabled):active~.custom-control-label:before{background-color:#fff;border-color:#fff;color:#fff}.custom-control-input:disabled~.custom-control-label,.custom-control-input[disabled]~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label:before,.custom-control-input[disabled]~.custom-control-label:before{background-color:#e9ecef}.custom-control-label{margin-bottom:0;position:relative;vertical-align:top}.custom-control-label:before{background-color:#242424;border:1px solid #adb5bd;pointer-events:none}.custom-control-label:after,.custom-control-label:before{content:"";display:block;height:1rem;left:-1.5rem;position:absolute;top:.2125rem;width:1rem}.custom-control-label:after{background:50%/50% 50% no-repeat}.custom-checkbox .custom-control-label:before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%23fff' d='m6.564.75-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label:before{background-color:#adadff;border-color:#adadff}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(173,173,255,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label:before{background-color:rgba(173,173,255,.5)}.custom-radio .custom-control-label:before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(173,173,255,.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label:before{border-radius:.5rem;left:-2.25rem;pointer-events:all;width:1.75rem}.custom-switch .custom-control-label:after{background-color:#adb5bd;border-radius:.5rem;height:calc(1rem - 4px);left:calc(-2.25rem + 2px);top:calc(.2125rem + 2px);transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:calc(1rem - 4px)}@media (prefers-reduced-motion:reduce){.custom-switch .custom-control-label:after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label:after{background-color:#242424;transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(173,173,255,.5)}.custom-select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:#242424 url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23494444' d='M2 0 0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat;border:1px solid #343434;border-radius:.25rem;color:#e2edf4;display:inline-block;font-size:.95rem;font-weight:400;height:calc(1.5em + .75rem + 2px);line-height:1.5;padding:.375rem 1.75rem .375rem .75rem;vertical-align:middle;width:100%}.custom-select:focus{border-color:#fff;box-shadow:0 0 0 .2rem rgba(173,173,255,.25);outline:0}.custom-select:focus::-ms-value{background-color:#242424;color:#e2edf4}.custom-select[multiple],.custom-select[size]:not([size="1"]){background-image:none;height:auto;padding-right:.75rem}.custom-select:disabled{background-color:#e9ecef;color:#6c757d}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #e2edf4}.custom-select-sm{font-size:.83125rem;height:calc(1.5em + .5rem + 2px);padding-bottom:.25rem;padding-left:.5rem;padding-top:.25rem}.custom-select-lg{font-size:1.1875rem;height:calc(1.5em + 1rem + 2px);padding-bottom:.5rem;padding-left:1rem;padding-top:.5rem}.custom-file{display:inline-block;margin-bottom:0}.custom-file,.custom-file-input{height:calc(1.5em + .75rem + 2px);position:relative;width:100%}.custom-file-input{margin:0;opacity:0;overflow:hidden;z-index:2}.custom-file-input:focus~.custom-file-label{border-color:#fff;box-shadow:0 0 0 .2rem rgba(173,173,255,.25)}.custom-file-input:disabled~.custom-file-label,.custom-file-input[disabled]~.custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en)~.custom-file-label:after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]:after{content:attr(data-browse)}.custom-file-label{background-color:#242424;border:1px solid #343434;border-radius:.25rem;font-weight:400;height:calc(1.5em + .75rem + 2px);left:0;overflow:hidden;z-index:1}.custom-file-label,.custom-file-label:after{color:#e2edf4;line-height:1.5;padding:.375rem .75rem;position:absolute;right:0;top:0}.custom-file-label:after{background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 0;bottom:0;content:"Browse";display:block;height:calc(1.5em + .75rem);z-index:3}.custom-range{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;height:1.4rem;padding:0;width:100%}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #1c1c1c,0 0 0 .2rem rgba(173,173,255,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #1c1c1c,0 0 0 .2rem rgba(173,173,255,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #1c1c1c,0 0 0 .2rem rgba(173,173,255,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;background-color:#adadff;border:0;border-radius:1rem;height:1rem;margin-top:-.25rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:1rem}@media (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#fff}.custom-range::-webkit-slider-runnable-track{background-color:#dee2e6;border-color:transparent;border-radius:1rem;color:transparent;cursor:pointer;height:.5rem;width:100%}.custom-range::-moz-range-thumb{-moz-appearance:none;appearance:none;background-color:#adadff;border:0;border-radius:1rem;height:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:1rem}@media (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{-moz-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background-color:#fff}.custom-range::-moz-range-track{background-color:#dee2e6;border-color:transparent;border-radius:1rem;color:transparent;cursor:pointer;height:.5rem;width:100%}.custom-range::-ms-thumb{appearance:none;background-color:#adadff;border:0;border-radius:1rem;height:1rem;margin-left:.2rem;margin-right:.2rem;margin-top:0;-ms-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:1rem}@media (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{-ms-transition:none;transition:none}}.custom-range::-ms-thumb:active{background-color:#fff}.custom-range::-ms-track{background-color:transparent;border-color:transparent;border-width:.5rem;color:transparent;cursor:pointer;height:.5rem;width:100%}.custom-range::-ms-fill-lower,.custom-range::-ms-fill-upper{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label:before,.custom-file-label,.custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-control-label:before,.custom-file-label,.custom-select{transition:none}}.nav{display:flex;flex-wrap:wrap;list-style:none;margin-bottom:0;padding-left:0}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d;cursor:default;pointer-events:none}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem;margin-bottom:-1px}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{background-color:transparent;border-color:transparent;color:#6c757d}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{background-color:#1c1c1c;border-color:#dee2e6 #dee2e6 #1c1c1c;color:#495057}.nav-tabs .dropdown-menu{border-top-left-radius:0;border-top-right-radius:0;margin-top:-1px}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{background-color:#adadff;color:#fff}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{padding:.5rem 1rem;position:relative}.navbar,.navbar .container,.navbar .container-fluid,.navbar .container-lg,.navbar .container-md,.navbar .container-sm,.navbar .container-xl{align-items:center;display:flex;flex-wrap:wrap;justify-content:space-between}.navbar-brand{display:inline-block;font-size:1.1875rem;line-height:inherit;margin-right:1rem;padding-bottom:.321875rem;padding-top:.321875rem;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:flex;flex-direction:column;list-style:none;margin-bottom:0;padding-left:0}.navbar-nav .nav-link{padding-left:0;padding-right:0}.navbar-nav .dropdown-menu{float:none;position:static}.navbar-text{display:inline-block;padding-bottom:.5rem;padding-top:.5rem}.navbar-collapse{align-items:center;flex-basis:100%;flex-grow:1}.navbar-toggler{background-color:transparent;border:1px solid transparent;border-radius:.25rem;font-size:1.1875rem;line-height:1;padding:.25rem .75rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler-icon{background:50%/100% 100% no-repeat;content:"";display:inline-block;height:1.5em;vertical-align:middle;width:1.5em}.navbar-nav-scroll{max-height:75vh;overflow-y:auto}@media (max-width:1.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{padding-left:0;padding-right:0}}@media (min-width:2px){.navbar-expand-sm{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{flex-wrap:nowrap}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:7.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{padding-left:0;padding-right:0}}@media (min-width:8px){.navbar-expand-md{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{flex-wrap:nowrap}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width:8.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{padding-left:0;padding-right:0}}@media (min-width:9px){.navbar-expand-lg{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{flex-wrap:nowrap}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:9.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{padding-left:0;padding-right:0}}@media (min-width:10px){.navbar-expand-xl{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{flex-wrap:nowrap}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{padding-left:0;padding-right:0}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{flex-wrap:nowrap}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand,.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{border-color:rgba(0,0,0,.1);color:rgba(0,0,0,.5)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand,.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:hsla(0,0%,100%,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:hsla(0,0%,100%,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:hsla(0,0%,100%,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{border-color:hsla(0,0%,100%,.1);color:hsla(0,0%,100%,.5)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-dark .navbar-text{color:hsla(0,0%,100%,.5)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{word-wrap:break-word;background-clip:border-box;background-color:#120f12;border:1px solid rgba(0,0,0,.125);border-radius:.25rem;display:flex;flex-direction:column;min-width:0;position:relative}.card>hr{margin-left:0;margin-right:0}.card>.list-group{border-bottom:inherit;border-top:inherit}.card>.list-group:first-child{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px);border-top-width:0}.card>.list-group:last-child{border-bottom-left-radius:calc(.25rem - 1px);border-bottom-right-radius:calc(.25rem - 1px);border-bottom-width:0}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;min-height:1px;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem}.card-subtitle,.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{background-color:#120f12;border-bottom:1px solid rgba(0,0,0,.125);margin-bottom:0;padding:.75rem 1.25rem}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-footer{background-color:#120f12;border-top:1px solid rgba(0,0,0,.125);padding:.75rem 1.25rem}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{border-bottom:0;margin-bottom:-.75rem}.card-header-pills,.card-header-tabs{margin-left:-.625rem;margin-right:-.625rem}.card-img-overlay{border-radius:calc(.25rem - 1px);bottom:0;left:0;padding:1.25rem;position:absolute;right:0;top:0}.card-img,.card-img-bottom,.card-img-top{flex-shrink:0;width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-left-radius:calc(.25rem - 1px);border-bottom-right-radius:calc(.25rem - 1px)}.card-deck .card{margin-bottom:15px}@media (min-width:2px){.card-deck{display:flex;flex-flow:row wrap;margin-left:-15px;margin-right:-15px}.card-deck .card{flex:1 0 0%;margin-bottom:0;margin-left:15px;margin-right:15px}}.card-group>.card{margin-bottom:15px}@media (min-width:2px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{border-left:0;margin-left:0}.card-group>.card:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width:2px){.card-columns{-moz-column-count:3;column-count:3;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion{overflow-anchor:none}.accordion>.card{overflow:hidden}.accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-left-radius:0;border-bottom-right-radius:0}.accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.breadcrumb{background-color:#e9ecef;border-radius:.25rem;display:flex;flex-wrap:wrap;list-style:none;margin-bottom:1rem;padding:.75rem 1rem}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item:before{color:#6c757d;content:"/";float:left;padding-right:.5rem}.breadcrumb-item+.breadcrumb-item:hover:before{text-decoration:underline;text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{border-radius:.25rem;display:flex;list-style:none;padding-left:0}.page-link{background-color:#fff;border:1px solid #dee2e6;color:#adadff;display:block;line-height:1.25;margin-left:-1px;padding:.5rem .75rem;position:relative}.page-link:hover{background-color:#e9ecef;border-color:#dee2e6;color:#6161ff;text-decoration:none;z-index:2}.page-link:focus{box-shadow:0 0 0 .2rem rgba(173,173,255,.25);outline:0;z-index:3}.page-item:first-child .page-link{border-bottom-left-radius:.25rem;border-top-left-radius:.25rem;margin-left:0}.page-item:last-child .page-link{border-bottom-right-radius:.25rem;border-top-right-radius:.25rem}.page-item.active .page-link{background-color:#adadff;border-color:#adadff;color:#fff;z-index:3}.page-item.disabled .page-link{background-color:#fff;border-color:#dee2e6;color:#6c757d;cursor:auto;pointer-events:none}.pagination-lg .page-link{font-size:1.1875rem;line-height:1.5;padding:.75rem 1.5rem}.pagination-lg .page-item:first-child .page-link{border-bottom-left-radius:.3rem;border-top-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-bottom-right-radius:.3rem;border-top-right-radius:.3rem}.pagination-sm .page-link{font-size:.83125rem;line-height:1.5;padding:.25rem .5rem}.pagination-sm .page-item:first-child .page-link{border-bottom-left-radius:.2rem;border-top-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-bottom-right-radius:.2rem;border-top-right-radius:.2rem}.badge{border-radius:.25rem;display:inline-block;font-size:.95rem;font-weight:700;line-height:1;padding:.25em .4em;text-align:center;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;vertical-align:baseline;white-space:nowrap}@media (prefers-reduced-motion:reduce){.badge{transition:none}}a.badge:focus,a.badge:hover{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{border-radius:10rem;padding-left:.6em;padding-right:.6em}.badge-primary{background-color:#adadff;color:#212529}a.badge-primary:focus,a.badge-primary:hover{background-color:#7a7aff;color:#212529}a.badge-primary.focus,a.badge-primary:focus{box-shadow:0 0 0 .2rem rgba(173,173,255,.5);outline:0}.badge-secondary{background-color:#494444;color:#fff}a.badge-secondary:focus,a.badge-secondary:hover{background-color:#2f2b2b;color:#fff}a.badge-secondary.focus,a.badge-secondary:focus{box-shadow:0 0 0 .2rem rgba(73,68,68,.5);outline:0}.badge-success{background-color:#1f9d55;color:#fff}a.badge-success:focus,a.badge-success:hover{background-color:#17723e;color:#fff}a.badge-success.focus,a.badge-success:focus{box-shadow:0 0 0 .2rem rgba(31,157,85,.5);outline:0}.badge-info{background-color:#1c3d5a;color:#fff}a.badge-info:focus,a.badge-info:hover{background-color:#102333;color:#fff}a.badge-info.focus,a.badge-info:focus{box-shadow:0 0 0 .2rem rgba(28,61,90,.5);outline:0}.badge-warning{background-color:#b08d2f;color:#fff}a.badge-warning:focus,a.badge-warning:hover{background-color:#886d24;color:#fff}a.badge-warning.focus,a.badge-warning:focus{box-shadow:0 0 0 .2rem rgba(176,141,47,.5);outline:0}.badge-danger{background-color:#aa2e28;color:#fff}a.badge-danger:focus,a.badge-danger:hover{background-color:#81231e;color:#fff}a.badge-danger.focus,a.badge-danger:focus{box-shadow:0 0 0 .2rem rgba(170,46,40,.5);outline:0}.badge-light{background-color:#f8f9fa;color:#212529}a.badge-light:focus,a.badge-light:hover{background-color:#dae0e5;color:#212529}a.badge-light.focus,a.badge-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5);outline:0}.badge-dark{background-color:#494444;color:#fff}a.badge-dark:focus,a.badge-dark:hover{background-color:#2f2b2b;color:#fff}a.badge-dark.focus,a.badge-dark:focus{box-shadow:0 0 0 .2rem rgba(73,68,68,.5);outline:0}.jumbotron{background-color:#e9ecef;border-radius:.3rem;margin-bottom:2rem;padding:2rem 1rem}@media (min-width:2px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{border-radius:0;padding-left:0;padding-right:0}.alert{border:1px solid transparent;border-radius:.25rem;margin-bottom:1rem;padding:.75rem 1.25rem;position:relative}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:3.925rem}.alert-dismissible .close{color:inherit;padding:.75rem 1.25rem;position:absolute;right:0;top:0;z-index:2}.alert-primary{background-color:#efefff;border-color:#e8e8ff;color:#5a5a85}.alert-primary hr{border-top-color:#cfcfff}.alert-primary .alert-link{color:#454567}.alert-secondary{background-color:#dbdada;border-color:#cccbcb;color:#262323}.alert-secondary hr{border-top-color:#bfbebe}.alert-secondary .alert-link{color:#0b0b0b}.alert-success{background-color:#d2ebdd;border-color:#c0e4cf;color:#10522c}.alert-success hr{border-top-color:#aedcc1}.alert-success .alert-link{color:#082715}.alert-info{background-color:#d2d8de;border-color:#bfc9d1;color:#0f202f}.alert-info hr{border-top-color:#b0bcc6}.alert-info .alert-link{color:#030608}.alert-warning{background-color:#efe8d5;border-color:#e9dfc5;color:#5c4918}.alert-warning hr{border-top-color:#e2d5b3}.alert-warning .alert-link{color:#34290d}.alert-danger{background-color:#eed5d4;border-color:#e7c4c3;color:#581815}.alert-danger hr{border-top-color:#e0b2b1}.alert-danger .alert-link{color:#2f0d0b}.alert-light{background-color:#fefefe;border-color:#fdfdfe;color:#818182}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{background-color:#dbdada;border-color:#cccbcb;color:#262323}.alert-dark hr{border-top-color:#bfbebe}.alert-dark .alert-link{color:#0b0b0b}@-webkit-keyframes progress-bar-stripes{0%{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{0%{background-position:1rem 0}to{background-position:0 0}}.progress{background-color:#e9ecef;border-radius:.25rem;font-size:.7125rem;height:1rem;line-height:0}.progress,.progress-bar{display:flex;overflow:hidden}.progress-bar{background-color:#adadff;color:#fff;flex-direction:column;justify-content:center;text-align:center;transition:width .6s ease;white-space:nowrap}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.media{align-items:flex-start;display:flex}.media-body{flex:1}.list-group{border-radius:.25rem;display:flex;flex-direction:column;margin-bottom:0;padding-left:0}.list-group-item-action{color:#495057;text-align:inherit;width:100%}.list-group-item-action:focus,.list-group-item-action:hover{background-color:#f8f9fa;color:#495057;text-decoration:none;z-index:1}.list-group-item-action:active{background-color:#e9ecef;color:#e2edf4}.list-group-item{background-color:#fff;border:1px solid rgba(0,0,0,.125);display:block;padding:.75rem 1.25rem;position:relative}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{background-color:#fff;color:#6c757d;pointer-events:none}.list-group-item.active{background-color:#adadff;border-color:#adadff;color:#fff;z-index:2}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{border-top-width:1px;margin-top:-1px}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-bottom-left-radius:0;border-top-right-radius:.25rem}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-left-width:0;border-top-width:1px}.list-group-horizontal>.list-group-item+.list-group-item.active{border-left-width:1px;margin-left:-1px}@media (min-width:2px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-bottom-left-radius:0;border-top-right-radius:.25rem}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-left-width:0;border-top-width:1px}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{border-left-width:1px;margin-left:-1px}}@media (min-width:8px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-bottom-left-radius:0;border-top-right-radius:.25rem}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-left-width:0;border-top-width:1px}.list-group-horizontal-md>.list-group-item+.list-group-item.active{border-left-width:1px;margin-left:-1px}}@media (min-width:9px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-bottom-left-radius:0;border-top-right-radius:.25rem}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-left-width:0;border-top-width:1px}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{border-left-width:1px;margin-left:-1px}}@media (min-width:10px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-bottom-left-radius:0;border-top-right-radius:.25rem}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-left-width:0;border-top-width:1px}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{border-left-width:1px;margin-left:-1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{background-color:#e8e8ff;color:#5a5a85}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{background-color:#cfcfff;color:#5a5a85}.list-group-item-primary.list-group-item-action.active{background-color:#5a5a85;border-color:#5a5a85;color:#fff}.list-group-item-secondary{background-color:#cccbcb;color:#262323}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{background-color:#bfbebe;color:#262323}.list-group-item-secondary.list-group-item-action.active{background-color:#262323;border-color:#262323;color:#fff}.list-group-item-success{background-color:#c0e4cf;color:#10522c}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{background-color:#aedcc1;color:#10522c}.list-group-item-success.list-group-item-action.active{background-color:#10522c;border-color:#10522c;color:#fff}.list-group-item-info{background-color:#bfc9d1;color:#0f202f}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{background-color:#b0bcc6;color:#0f202f}.list-group-item-info.list-group-item-action.active{background-color:#0f202f;border-color:#0f202f;color:#fff}.list-group-item-warning{background-color:#e9dfc5;color:#5c4918}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{background-color:#e2d5b3;color:#5c4918}.list-group-item-warning.list-group-item-action.active{background-color:#5c4918;border-color:#5c4918;color:#fff}.list-group-item-danger{background-color:#e7c4c3;color:#581815}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{background-color:#e0b2b1;color:#581815}.list-group-item-danger.list-group-item-action.active{background-color:#581815;border-color:#581815;color:#fff}.list-group-item-light{background-color:#fdfdfe;color:#818182}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{background-color:#ececf6;color:#818182}.list-group-item-light.list-group-item-action.active{background-color:#818182;border-color:#818182;color:#fff}.list-group-item-dark{background-color:#cccbcb;color:#262323}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{background-color:#bfbebe;color:#262323}.list-group-item-dark.list-group-item-action.active{background-color:#262323;border-color:#262323;color:#fff}.close{color:#000;float:right;font-size:1.425rem;font-weight:700;line-height:1;opacity:.5;text-shadow:0 1px 0 #fff}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{background-color:transparent;border:0;padding:0}a.close.disabled{pointer-events:none}.toast{background-clip:padding-box;background-color:hsla(0,0%,100%,.85);border:1px solid rgba(0,0,0,.1);border-radius:.25rem;box-shadow:0 .25rem .75rem rgba(0,0,0,.1);flex-basis:350px;font-size:.875rem;max-width:350px;opacity:0}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{align-items:center;background-clip:padding-box;background-color:hsla(0,0%,100%,.85);border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px);color:#6c757d;display:flex;padding:.25rem .75rem}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{display:none;height:100%;left:0;outline:0;overflow:hidden;position:fixed;top:0;width:100%;z-index:1050}.modal-dialog{margin:.5rem;pointer-events:none;position:relative;width:auto}.modal.fade .modal-dialog{transform:translateY(-50px);transition:transform .3s ease-out}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header{flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{align-items:center;display:flex;min-height:calc(100% - 1rem)}.modal-dialog-centered:before{content:"";display:block;height:calc(100vh - 1rem);height:-webkit-min-content;height:-moz-min-content;height:min-content}.modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;height:100%;justify-content:center}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable:before{content:none}.modal-content{background-clip:padding-box;background-color:#181818;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;display:flex;flex-direction:column;outline:0;pointer-events:auto;position:relative;width:100%}.modal-backdrop{background-color:#7e7e7e;height:100vh;left:0;position:fixed;top:0;width:100vw;z-index:1040}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{align-items:flex-start;border-bottom:1px solid #343434;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px);display:flex;justify-content:space-between;padding:1rem}.modal-header .close{margin:-1rem -1rem -1rem auto;padding:1rem}.modal-title{line-height:1.5;margin-bottom:0}.modal-body{flex:1 1 auto;padding:1rem;position:relative}.modal-footer{align-items:center;border-bottom-left-radius:calc(.3rem - 1px);border-bottom-right-radius:calc(.3rem - 1px);border-top:1px solid #343434;display:flex;flex-wrap:wrap;justify-content:flex-end;padding:.75rem}.modal-footer>*{margin:.25rem}.modal-scrollbar-measure{height:50px;overflow:scroll;position:absolute;top:-9999px;width:50px}@media (min-width:2px){.modal-dialog{margin:1.75rem auto;max-width:500px}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered:before{height:calc(100vh - 3.5rem);height:-webkit-min-content;height:-moz-min-content;height:min-content}.modal-sm{max-width:300px}}@media (min-width:9px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:10px){.modal-xl{max-width:1140px}}.tooltip{word-wrap:break-word;display:block;font-family:Nunito;font-size:.83125rem;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.5;margin:0;opacity:0;position:absolute;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;z-index:1070}.tooltip.show{opacity:.9}.tooltip .arrow{display:block;height:.4rem;position:absolute;width:.8rem}.tooltip .arrow:before{border-color:transparent;border-style:solid;content:"";position:absolute}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow:before,.bs-tooltip-top .arrow:before{border-top-color:#000;border-width:.4rem .4rem 0;top:0}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{height:.8rem;left:0;width:.4rem}.bs-tooltip-auto[x-placement^=right] .arrow:before,.bs-tooltip-right .arrow:before{border-right-color:#000;border-width:.4rem .4rem .4rem 0;right:0}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow:before,.bs-tooltip-bottom .arrow:before{border-bottom-color:#000;border-width:0 .4rem .4rem;bottom:0}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{height:.8rem;right:0;width:.4rem}.bs-tooltip-auto[x-placement^=left] .arrow:before,.bs-tooltip-left .arrow:before{border-left-color:#000;border-width:.4rem 0 .4rem .4rem;left:0}.tooltip-inner{background-color:#000;border-radius:.25rem;color:#fff;max-width:200px;padding:.25rem .5rem;text-align:center}.popover{word-wrap:break-word;background-clip:padding-box;background-color:#fff;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;font-family:Nunito;font-size:.83125rem;font-style:normal;font-weight:400;left:0;letter-spacing:normal;line-break:auto;line-height:1.5;max-width:276px;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;top:0;white-space:normal;word-break:normal;word-spacing:normal;z-index:1060}.popover,.popover .arrow{display:block;position:absolute}.popover .arrow{height:.5rem;margin:0 .3rem;width:1rem}.popover .arrow:after,.popover .arrow:before{border-color:transparent;border-style:solid;content:"";display:block;position:absolute}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=top]>.arrow:before,.bs-popover-top>.arrow:before{border-top-color:rgba(0,0,0,.25);border-width:.5rem .5rem 0;bottom:0}.bs-popover-auto[x-placement^=top]>.arrow:after,.bs-popover-top>.arrow:after{border-top-color:#fff;border-width:.5rem .5rem 0;bottom:1px}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{height:1rem;left:calc(-.5rem - 1px);margin:.3rem 0;width:.5rem}.bs-popover-auto[x-placement^=right]>.arrow:before,.bs-popover-right>.arrow:before{border-right-color:rgba(0,0,0,.25);border-width:.5rem .5rem .5rem 0;left:0}.bs-popover-auto[x-placement^=right]>.arrow:after,.bs-popover-right>.arrow:after{border-right-color:#fff;border-width:.5rem .5rem .5rem 0;left:1px}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=bottom]>.arrow:before,.bs-popover-bottom>.arrow:before{border-bottom-color:rgba(0,0,0,.25);border-width:0 .5rem .5rem;top:0}.bs-popover-auto[x-placement^=bottom]>.arrow:after,.bs-popover-bottom>.arrow:after{border-bottom-color:#fff;border-width:0 .5rem .5rem;top:1px}.bs-popover-auto[x-placement^=bottom] .popover-header:before,.bs-popover-bottom .popover-header:before{border-bottom:1px solid #f7f7f7;content:"";display:block;left:50%;margin-left:-.5rem;position:absolute;top:0;width:1rem}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{height:1rem;margin:.3rem 0;right:calc(-.5rem - 1px);width:.5rem}.bs-popover-auto[x-placement^=left]>.arrow:before,.bs-popover-left>.arrow:before{border-left-color:rgba(0,0,0,.25);border-width:.5rem 0 .5rem .5rem;right:0}.bs-popover-auto[x-placement^=left]>.arrow:after,.bs-popover-left>.arrow:after{border-left-color:#fff;border-width:.5rem 0 .5rem .5rem;right:1px}.popover-header{background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px);font-size:.95rem;margin-bottom:0;padding:.5rem .75rem}.popover-header:empty{display:none}.popover-body{color:#e2edf4;padding:.5rem .75rem}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{overflow:hidden;position:relative;width:100%}.carousel-inner:after{clear:both;content:"";display:block}.carousel-item{-webkit-backface-visibility:hidden;backface-visibility:hidden;display:none;float:left;margin-right:-100%;position:relative;transition:transform .6s ease-in-out;width:100%}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-right,.carousel-item-next:not(.carousel-item-left){transform:translateX(100%)}.active.carousel-item-left,.carousel-item-prev:not(.carousel-item-right){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transform:none;transition-property:opacity}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{opacity:1;z-index:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{opacity:0;transition:opacity 0s .6s;z-index:0}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-next,.carousel-control-prev{align-items:center;bottom:0;color:#fff;display:flex;justify-content:center;opacity:.5;position:absolute;text-align:center;top:0;transition:opacity .15s ease;width:15%;z-index:1}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;opacity:.9;outline:0;text-decoration:none}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{background:50%/100% 100% no-repeat;display:inline-block;height:20px;width:20px}.carousel-control-prev-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8'%3E%3Cpath d='m5.25 0-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3E%3C/svg%3E")}.carousel-control-next-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8'%3E%3Cpath d='m2.75 0-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3E%3C/svg%3E")}.carousel-indicators{bottom:0;display:flex;justify-content:center;left:0;list-style:none;margin-left:15%;margin-right:15%;padding-left:0;position:absolute;right:0;z-index:15}.carousel-indicators li{background-clip:padding-box;background-color:#fff;border-bottom:10px solid transparent;border-top:10px solid transparent;box-sizing:content-box;cursor:pointer;flex:0 1 auto;height:3px;margin-left:3px;margin-right:3px;opacity:.5;text-indent:-999px;transition:opacity .6s ease;width:30px}@media (prefers-reduced-motion:reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{bottom:20px;color:#fff;left:15%;padding-bottom:20px;padding-top:20px;position:absolute;right:15%;text-align:center;z-index:10}@-webkit-keyframes spinner-border{to{transform:rotate(1turn)}}@keyframes spinner-border{to{transform:rotate(1turn)}}.spinner-border{-webkit-animation:spinner-border .75s linear infinite;animation:spinner-border .75s linear infinite;border:.25em solid;border-radius:50%;border-right:.25em solid transparent;display:inline-block;height:2rem;vertical-align:text-bottom;width:2rem}.spinner-border-sm{border-width:.2em;height:1rem;width:1rem}@-webkit-keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{-webkit-animation:spinner-grow .75s linear infinite;animation:spinner-grow .75s linear infinite;background-color:currentColor;border-radius:50%;display:inline-block;height:2rem;opacity:0;vertical-align:text-bottom;width:2rem}.spinner-grow-sm{height:1rem;width:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{-webkit-animation-duration:1.5s;animation-duration:1.5s}}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#adadff!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#7a7aff!important}.bg-secondary{background-color:#494444!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#2f2b2b!important}.bg-success{background-color:#1f9d55!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#17723e!important}.bg-info{background-color:#1c3d5a!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#102333!important}.bg-warning{background-color:#b08d2f!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#886d24!important}.bg-danger{background-color:#aa2e28!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#81231e!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#494444!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#2f2b2b!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #303030!important}.border-top{border-top:1px solid #303030!important}.border-right{border-right:1px solid #303030!important}.border-bottom{border-bottom:1px solid #303030!important}.border-left{border-left:1px solid #303030!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#adadff!important}.border-secondary{border-color:#494444!important}.border-success{border-color:#1f9d55!important}.border-info{border-color:#1c3d5a!important}.border-warning{border-color:#b08d2f!important}.border-danger{border-color:#aa2e28!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#494444!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important}.rounded-right,.rounded-top{border-top-right-radius:.25rem!important}.rounded-bottom,.rounded-right{border-bottom-right-radius:.25rem!important}.rounded-bottom,.rounded-left{border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important}.rounded-lg{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix:after{clear:both;content:"";display:block}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}@media (min-width:2px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}}@media (min-width:8px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}}@media (min-width:9px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}}@media (min-width:10px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}}.embed-responsive{display:block;overflow:hidden;padding:0;position:relative;width:100%}.embed-responsive:before{content:"";display:block}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{border:0;bottom:0;height:100%;left:0;position:absolute;top:0;width:100%}.embed-responsive-21by9:before{padding-top:42.8571428571%}.embed-responsive-16by9:before{padding-top:56.25%}.embed-responsive-4by3:before{padding-top:75%}.embed-responsive-1by1:before{padding-top:100%}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-fill{flex:1 1 auto!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}@media (min-width:2px){.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}}@media (min-width:8px){.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}}@media (min-width:9px){.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}}@media (min-width:10px){.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:2px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:8px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:9px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:10px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;-ms-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.fixed-top{top:0}.fixed-bottom,.fixed-top{left:0;position:fixed;right:0;z-index:1030}.fixed-bottom{bottom:0}@supports ((position:-webkit-sticky) or (position:sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{clip:rect(0,0,0,0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;overflow:visible;position:static;white-space:normal;width:auto}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:2px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:8px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:9px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:10px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.stretched-link:after{background-color:transparent;bottom:0;content:"";left:0;pointer-events:auto;position:absolute;right:0;top:0;z-index:1}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:2px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:8px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:9px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:10px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#adadff!important}a.text-primary:focus,a.text-primary:hover{color:#6161ff!important}.text-secondary{color:#494444!important}a.text-secondary:focus,a.text-secondary:hover{color:#211f1f!important}.text-success{color:#1f9d55!important}a.text-success:focus,a.text-success:hover{color:#125d32!important}.text-info{color:#1c3d5a!important}a.text-info:focus,a.text-info:hover{color:#0a1520!important}.text-warning{color:#b08d2f!important}a.text-warning:focus,a.text-warning:hover{color:#745d1f!important}.text-danger{color:#aa2e28!important}a.text-danger:focus,a.text-danger:hover{color:#6c1d19!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#cbd3da!important}.text-dark{color:#494444!important}a.text-dark:focus,a.text-dark:hover{color:#211f1f!important}.text-body{color:#e2edf4!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:hsla(0,0%,100%,.5)!important}.text-hide{background-color:transparent;border:0;color:transparent;font:0/0 a;text-shadow:none}.text-decoration-none{text-decoration:none!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,:after,:before{box-shadow:none!important;text-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]:after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}.container,body{min-width:9px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #dee2e6!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#343434}.table .thead-dark th{border-color:#343434;color:inherit}}body{padding-bottom:20px}.container{width:1140px}html{min-width:1140px}[v-cloak]{display:none}svg.icon{height:1rem;width:1rem}.header{border-bottom:1px solid #343434}.header svg.logo{height:2rem;width:2rem}.sidebar .nav-item a{color:#6e6b6b;padding:.5rem 0}.sidebar .nav-item a svg{fill:#9f9898;height:1rem;margin-right:15px;width:1rem}.sidebar .nav-item a.active{color:#adadff}.sidebar .nav-item a.active svg{fill:#adadff}.card{border:none;box-shadow:0 2px 3px #1c1c1c}.card .bottom-radius{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.card .card-header{background-color:#120f12;border-bottom:none;padding-bottom:.7rem;padding-top:.7rem}.card .card-header .btn-group .btn{padding:.2rem .5rem}.card .card-header h5{margin:0}.card .table td,.card .table th{padding:.75rem 1.25rem}.card .table.table-sm td,.card .table.table-sm th{padding:1rem 1.25rem}.card .table th{background-color:#181818;border-bottom:0;font-weight:400;padding:.5rem 1.25rem}.card .table:not(.table-borderless) td{border-top:1px solid #343434}.card .table.penultimate-column-right td:nth-last-child(2),.card .table.penultimate-column-right th:nth-last-child(2){text-align:right}.card .table td.table-fit,.card .table th.table-fit{white-space:nowrap;width:1%}.fill-text-color{fill:#e2edf4}.fill-danger{fill:#aa2e28}.fill-warning{fill:#b08d2f}.fill-info{fill:#1c3d5a}.fill-success{fill:#1f9d55}.fill-primary{fill:#adadff}button:hover .fill-primary{fill:#fff}.btn-outline-primary.active .fill-primary{fill:#1c1c1c}.btn-outline-primary:not(:disabled):not(.disabled).active:focus{box-shadow:none!important}.control-action svg{fill:#ccd2df;height:1.2rem;width:1.2rem}.control-action svg:hover{fill:#adadff}.info-icon{fill:#ccd2df}.paginator .btn{color:#9ea7ac;text-decoration:none}.paginator .btn:hover{color:#adadff}@-webkit-keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.spin{-webkit-animation:spin 2s linear infinite;animation:spin 2s linear infinite}.card .nav-pills .nav-link.active{background:none;border-bottom:2px solid #adadff;color:#adadff}.card .nav-pills .nav-link{border-radius:0;color:#e2edf4;font-size:.9rem;padding:.75rem 1.25rem}.list-enter-active:not(.dontanimate){transition:background 1s linear}.list-enter:not(.dontanimate),.list-leave-to:not(.dontanimate){background:#505e4a}.card table td{vertical-align:middle!important}.card-bg-secondary,.code-bg{background:#262525}.disabled-watcher{background:#aa2e28;color:#fff;padding:.75rem}.badge-sm{font-size:.75rem} + */:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#4b5563;--gray-dark:#1f2937;--primary:#8b5cf6;--secondary:#6b7280;--success:#10b981;--info:#3b82f6;--warning:#f59e0b;--danger:#ef4444;--light:#f3f4f6;--dark:#1f2937;--breakpoint-xs:0;--breakpoint-sm:2px;--breakpoint-md:8px;--breakpoint-lg:9px;--breakpoint-xl:10px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,:after,:before{box-sizing:border-box}html{-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0);font-family:sans-serif;line-height:1.15}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{background-color:#111827;color:#f3f4f6;font-family:Figtree,sans-serif;font-size:1rem;font-weight:400;line-height:1.5;margin:0;text-align:left}[tabindex="-1"]:focus:not(:focus-visible){outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;margin-top:0}p{margin-bottom:1rem;margin-top:0}abbr[data-original-title],abbr[title]{border-bottom:0;cursor:help;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{font-style:normal;line-height:inherit}address,dl,ol,ul{margin-bottom:1rem}dl,ol,ul{margin-top:0}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:600}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{background-color:transparent;color:#a78bfa;text-decoration:none}a:hover{color:#c4b5fd;text-decoration:underline}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}pre{-ms-overflow-style:scrollbar;margin-bottom:1rem;margin-top:0;overflow:auto}figure{margin:0 0 1rem}img{border-style:none}img,svg{vertical-align:middle}svg{overflow:hidden}table{border-collapse:collapse}caption{caption-side:bottom;color:#9ca3af;padding-bottom:.75rem;padding-top:.75rem;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit;margin:0}button,input{overflow:visible}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}textarea{overflow:auto;resize:vertical}fieldset{border:0;margin:0;min-width:0;padding:0}legend{color:inherit;display:block;font-size:1.5rem;line-height:inherit;margin-bottom:.5rem;max-width:100%;padding:0;white-space:normal;width:100%}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:none;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}output{display:inline-block}summary{cursor:pointer;display:list-item}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-weight:500;line-height:1.2;margin-bottom:.5rem}.h1,h1{font-size:2.5rem}.h2,h2{font-size:2rem}.h3,h3{font-size:1.75rem}.h4,h4{font-size:1.5rem}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem}.display-1,.display-2{font-weight:300;line-height:1.2}.display-2{font-size:5.5rem}.display-3{font-size:4.5rem}.display-3,.display-4{font-weight:300;line-height:1.2}.display-4{font-size:3.5rem}hr{border:0;border-top:1px solid rgba(0,0,0,.1);margin-bottom:1rem;margin-top:1rem}.small,small{font-size:.875em;font-weight:400}.mark,mark{background-color:#fcf8e3;padding:.2em}.list-inline,.list-unstyled{list-style:none;padding-left:0}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{font-size:1.25rem;margin-bottom:1rem}.blockquote-footer{color:#4b5563;display:block;font-size:.875em}.blockquote-footer:before{content:"— "}.img-fluid,.img-thumbnail{height:auto;max-width:100%}.img-thumbnail{background-color:#111827;border:1px solid #d1d5db;border-radius:.25rem;padding:.25rem}.figure{display:inline-block}.figure-img{line-height:1;margin-bottom:.5rem}.figure-caption{color:#4b5563;font-size:90%}code{word-wrap:break-word;color:#e83e8c;font-size:87.5%}a>code{color:inherit}kbd{background-color:#111827;border-radius:.2rem;color:#fff;font-size:87.5%;padding:.2rem .4rem}kbd kbd{font-size:100%;font-weight:600;padding:0}pre{color:#111827;display:block;font-size:87.5%}pre code{color:inherit;font-size:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px;width:100%}@media (min-width:2px){.container,.container-sm{max-width:1137px}}@media (min-width:8px){.container,.container-md,.container-sm{max-width:1138px}}@media (min-width:9px){.container,.container-lg,.container-md,.container-sm{max-width:1139px}}@media (min-width:10px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}.row{display:flex;flex-wrap:wrap;margin-left:-15px;margin-right:-15px}.no-gutters{margin-left:0;margin-right:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-left:0;padding-right:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{padding-left:15px;padding-right:15px;position:relative;width:100%}.col{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-1>*{flex:0 0 100%;max-width:100%}.row-cols-2>*{flex:0 0 50%;max-width:50%}.row-cols-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-4>*{flex:0 0 25%;max-width:25%}.row-cols-5>*{flex:0 0 20%;max-width:20%}.row-cols-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-auto{flex:0 0 auto;max-width:100%;width:auto}.col-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-3{flex:0 0 25%;max-width:25%}.col-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-6{flex:0 0 50%;max-width:50%}.col-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-9{flex:0 0 75%;max-width:75%}.col-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-12{flex:0 0 100%;max-width:100%}.order-first{order:-1}.order-last{order:13}.order-0{order:0}.order-1{order:1}.order-2{order:2}.order-3{order:3}.order-4{order:4}.order-5{order:5}.order-6{order:6}.order-7{order:7}.order-8{order:8}.order-9{order:9}.order-10{order:10}.order-11{order:11}.order-12{order:12}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}@media (min-width:2px){.col-sm{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-sm-1>*{flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-sm-auto{flex:0 0 auto;max-width:100%;width:auto}.col-sm-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-sm-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-sm-3{flex:0 0 25%;max-width:25%}.col-sm-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-sm-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-sm-6{flex:0 0 50%;max-width:50%}.col-sm-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-sm-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-sm-9{flex:0 0 75%;max-width:75%}.col-sm-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-sm-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-sm-12{flex:0 0 100%;max-width:100%}.order-sm-first{order:-1}.order-sm-last{order:13}.order-sm-0{order:0}.order-sm-1{order:1}.order-sm-2{order:2}.order-sm-3{order:3}.order-sm-4{order:4}.order-sm-5{order:5}.order-sm-6{order:6}.order-sm-7{order:7}.order-sm-8{order:8}.order-sm-9{order:9}.order-sm-10{order:10}.order-sm-11{order:11}.order-sm-12{order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}}@media (min-width:8px){.col-md{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-md-1>*{flex:0 0 100%;max-width:100%}.row-cols-md-2>*{flex:0 0 50%;max-width:50%}.row-cols-md-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-md-4>*{flex:0 0 25%;max-width:25%}.row-cols-md-5>*{flex:0 0 20%;max-width:20%}.row-cols-md-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-md-auto{flex:0 0 auto;max-width:100%;width:auto}.col-md-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-md-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-md-3{flex:0 0 25%;max-width:25%}.col-md-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-md-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-md-6{flex:0 0 50%;max-width:50%}.col-md-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-md-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-md-9{flex:0 0 75%;max-width:75%}.col-md-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-md-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-md-12{flex:0 0 100%;max-width:100%}.order-md-first{order:-1}.order-md-last{order:13}.order-md-0{order:0}.order-md-1{order:1}.order-md-2{order:2}.order-md-3{order:3}.order-md-4{order:4}.order-md-5{order:5}.order-md-6{order:6}.order-md-7{order:7}.order-md-8{order:8}.order-md-9{order:9}.order-md-10{order:10}.order-md-11{order:11}.order-md-12{order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}}@media (min-width:9px){.col-lg{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-lg-1>*{flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-lg-auto{flex:0 0 auto;max-width:100%;width:auto}.col-lg-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-lg-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-lg-3{flex:0 0 25%;max-width:25%}.col-lg-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-lg-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-lg-6{flex:0 0 50%;max-width:50%}.col-lg-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-lg-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-lg-9{flex:0 0 75%;max-width:75%}.col-lg-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-lg-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-lg-12{flex:0 0 100%;max-width:100%}.order-lg-first{order:-1}.order-lg-last{order:13}.order-lg-0{order:0}.order-lg-1{order:1}.order-lg-2{order:2}.order-lg-3{order:3}.order-lg-4{order:4}.order-lg-5{order:5}.order-lg-6{order:6}.order-lg-7{order:7}.order-lg-8{order:8}.order-lg-9{order:9}.order-lg-10{order:10}.order-lg-11{order:11}.order-lg-12{order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}}@media (min-width:10px){.col-xl{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-xl-1>*{flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-xl-auto{flex:0 0 auto;max-width:100%;width:auto}.col-xl-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-xl-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-xl-3{flex:0 0 25%;max-width:25%}.col-xl-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-xl-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-xl-6{flex:0 0 50%;max-width:50%}.col-xl-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-xl-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-xl-9{flex:0 0 75%;max-width:75%}.col-xl-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-xl-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-xl-12{flex:0 0 100%;max-width:100%}.order-xl-first{order:-1}.order-xl-last{order:13}.order-xl-0{order:0}.order-xl-1{order:1}.order-xl-2{order:2}.order-xl-3{order:3}.order-xl-4{order:4}.order-xl-5{order:5}.order-xl-6{order:6}.order-xl-7{order:7}.order-xl-8{order:8}.order-xl-9{order:9}.order-xl-10{order:10}.order-xl-11{order:11}.order-xl-12{order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}}.table{color:#f3f4f6;margin-bottom:1rem;width:100%}.table td,.table th{border-top:1px solid #374151;padding:.75rem;vertical-align:top}.table thead th{border-bottom:2px solid #374151;vertical-align:bottom}.table tbody+tbody{border-top:2px solid #374151}.table-sm td,.table-sm th{padding:.3rem}.table-bordered,.table-bordered td,.table-bordered th{border:1px solid #374151}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{background-color:#374151;color:#f3f4f6}.table-primary,.table-primary>td,.table-primary>th{background-color:#dfd1fc}.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#c3aafa}.table-hover .table-primary:hover,.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#ceb9fa}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#d6d8db}.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#b2b6bd}.table-hover .table-secondary:hover,.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>td,.table-success>th{background-color:#bcebdc}.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#83dbbd}.table-hover .table-success:hover,.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#a8e5d2}.table-info,.table-info>td,.table-info>th{background-color:#c8dcfc}.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#99befa}.table-hover .table-info:hover,.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#b0cdfb}.table-warning,.table-warning>td,.table-warning>th{background-color:#fce4bb}.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#facd80}.table-hover .table-warning:hover,.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#fbdaa3}.table-danger,.table-danger>td,.table-danger>th{background-color:#fbcbcb}.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#f79e9e}.table-hover .table-danger:hover,.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f9b3b3}.table-light,.table-light>td,.table-light>th{background-color:#fcfcfc}.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#f9f9fa}.table-hover .table-light:hover,.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#efefef}.table-dark,.table-dark>td,.table-dark>th{background-color:#c0c3c7}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#8b9097}.table-hover .table-dark:hover,.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b3b6bb}.table-active,.table-active>td,.table-active>th{background-color:#374151}.table-hover .table-active:hover,.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:#2d3542}.table .thead-dark th{background-color:#1f2937;border-color:#2d3b4f;color:#fff}.table .thead-light th{background-color:#e5e7eb;border-color:#374151;color:#374151}.table-dark{background-color:#1f2937;color:#fff}.table-dark td,.table-dark th,.table-dark thead th{border-color:#2d3b4f}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:hsla(0,0%,100%,.05)}.table-dark.table-hover tbody tr:hover{background-color:hsla(0,0%,100%,.075);color:#fff}@media (max-width:1.98px){.table-responsive-sm{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:7.98px){.table-responsive-md{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive-md>.table-bordered{border:0}}@media (max-width:8.98px){.table-responsive-lg{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:9.98px){.table-responsive-xl{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive>.table-bordered{border:0}.form-control{background-clip:padding-box;background-color:#1f2937;border:1px solid #4b5563;border-radius:.25rem;color:#e5e7eb;display:block;font-size:1rem;font-weight:400;height:calc(1.5em + .75rem + 2px);line-height:1.5;padding:.375rem .75rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:100%}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{background-color:#1f2937;border-color:#e1d5fd;box-shadow:0 0 0 .2rem rgba(139,92,246,.25);color:#e5e7eb;outline:0}.form-control::-moz-placeholder{color:#4b5563;opacity:1}.form-control::placeholder{color:#4b5563;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e5e7eb;opacity:1}input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none}select.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #e5e7eb}select.form-control:focus::-ms-value{background-color:#1f2937;color:#e5e7eb}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{font-size:inherit;line-height:1.5;margin-bottom:0;padding-bottom:calc(.375rem + 1px);padding-top:calc(.375rem + 1px)}.col-form-label-lg{font-size:1.25rem;line-height:1.5;padding-bottom:calc(.5rem + 1px);padding-top:calc(.5rem + 1px)}.col-form-label-sm{font-size:.875rem;line-height:1.5;padding-bottom:calc(.25rem + 1px);padding-top:calc(.25rem + 1px)}.form-control-plaintext{background-color:transparent;border:solid transparent;border-width:1px 0;color:#f3f4f6;display:block;font-size:1rem;line-height:1.5;margin-bottom:0;padding:.375rem 0;width:100%}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-left:0;padding-right:0}.form-control-sm{border-radius:.2rem;font-size:.875rem;height:calc(1.5em + .5rem + 2px);line-height:1.5;padding:.25rem .5rem}.form-control-lg{border-radius:6px;font-size:1.25rem;height:calc(1.5em + 1rem + 2px);line-height:1.5;padding:.5rem 1rem}select.form-control[multiple],select.form-control[size],textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:flex;flex-wrap:wrap;margin-left:-5px;margin-right:-5px}.form-row>.col,.form-row>[class*=col-]{padding-left:5px;padding-right:5px}.form-check{display:block;padding-left:1.25rem;position:relative}.form-check-input{margin-left:-1.25rem;margin-top:.3rem;position:absolute}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{color:#9ca3af}.form-check-label{margin-bottom:0}.form-check-inline{align-items:center;display:inline-flex;margin-right:.75rem;padding-left:0}.form-check-inline .form-check-input{margin-left:0;margin-right:.3125rem;margin-top:0;position:static}.valid-feedback{color:#10b981;display:none;font-size:.875em;margin-top:.25rem;width:100%}.valid-tooltip{background-color:rgba(16,185,129,.9);border-radius:.25rem;color:#fff;display:none;font-size:.875rem;left:0;line-height:1.5;margin-top:.1rem;max-width:100%;padding:.25rem .5rem;position:absolute;top:100%;z-index:5}.form-row>.col>.valid-tooltip,.form-row>[class*=col-]>.valid-tooltip{left:5px}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%2310b981' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");background-position:right calc(.375em + .1875rem) center;background-repeat:no-repeat;background-size:calc(.75em + .375rem) calc(.75em + .375rem);border-color:#10b981;padding-right:calc(1.5em + .75rem)!important}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#10b981;box-shadow:0 0 0 .2rem rgba(16,185,129,.25)}.was-validated select.form-control:valid,select.form-control.is-valid{background-position:right 1.5rem center;padding-right:3rem!important}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem);padding-right:calc(1.5em + .75rem)}.custom-select.is-valid,.was-validated .custom-select:valid{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%231f2937' d='M2 0 0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat,#1f2937 url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%2310b981' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat;border-color:#10b981;padding-right:calc(.75em + 2.3125rem)!important}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#10b981;box-shadow:0 0 0 .2rem rgba(16,185,129,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#10b981}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#10b981}.custom-control-input.is-valid~.custom-control-label:before,.was-validated .custom-control-input:valid~.custom-control-label:before{border-color:#10b981}.custom-control-input.is-valid:checked~.custom-control-label:before,.was-validated .custom-control-input:valid:checked~.custom-control-label:before{background-color:#14e8a2;border-color:#14e8a2}.custom-control-input.is-valid:focus~.custom-control-label:before,.was-validated .custom-control-input:valid:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(16,185,129,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label:before{border-color:#10b981}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#10b981}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#10b981;box-shadow:0 0 0 .2rem rgba(16,185,129,.25)}.invalid-feedback{color:#ef4444;display:none;font-size:.875em;margin-top:.25rem;width:100%}.invalid-tooltip{background-color:rgba(239,68,68,.9);border-radius:.25rem;color:#fff;display:none;font-size:.875rem;left:0;line-height:1.5;margin-top:.1rem;max-width:100%;padding:.25rem .5rem;position:absolute;top:100%;z-index:5}.form-row>.col>.invalid-tooltip,.form-row>[class*=col-]>.invalid-tooltip{left:5px}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23ef4444'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23ef4444' stroke='none'/%3E%3C/svg%3E");background-position:right calc(.375em + .1875rem) center;background-repeat:no-repeat;background-size:calc(.75em + .375rem) calc(.75em + .375rem);border-color:#ef4444;padding-right:calc(1.5em + .75rem)!important}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#ef4444;box-shadow:0 0 0 .2rem rgba(239,68,68,.25)}.was-validated select.form-control:invalid,select.form-control.is-invalid{background-position:right 1.5rem center;padding-right:3rem!important}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem);padding-right:calc(1.5em + .75rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%231f2937' d='M2 0 0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat,#1f2937 url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23ef4444'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23ef4444' stroke='none'/%3E%3C/svg%3E") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat;border-color:#ef4444;padding-right:calc(.75em + 2.3125rem)!important}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#ef4444;box-shadow:0 0 0 .2rem rgba(239,68,68,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#ef4444}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#ef4444}.custom-control-input.is-invalid~.custom-control-label:before,.was-validated .custom-control-input:invalid~.custom-control-label:before{border-color:#ef4444}.custom-control-input.is-invalid:checked~.custom-control-label:before,.was-validated .custom-control-input:invalid:checked~.custom-control-label:before{background-color:#f37373;border-color:#f37373}.custom-control-input.is-invalid:focus~.custom-control-label:before,.was-validated .custom-control-input:invalid:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(239,68,68,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label:before{border-color:#ef4444}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#ef4444}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#ef4444;box-shadow:0 0 0 .2rem rgba(239,68,68,.25)}.form-inline{align-items:center;display:flex;flex-flow:row wrap}.form-inline .form-check{width:100%}@media (min-width:2px){.form-inline label{justify-content:center}.form-inline .form-group,.form-inline label{align-items:center;display:flex;margin-bottom:0}.form-inline .form-group{flex:0 0 auto;flex-flow:row wrap}.form-inline .form-control{display:inline-block;vertical-align:middle;width:auto}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{align-items:center;display:flex;justify-content:center;padding-left:0;width:auto}.form-inline .form-check-input{flex-shrink:0;margin-left:0;margin-right:.25rem;margin-top:0;position:relative}.form-inline .custom-control{align-items:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{background-color:transparent;border:1px solid transparent;border-radius:.25rem;color:#f3f4f6;display:inline-block;font-size:1rem;font-weight:400;line-height:1.5;padding:.375rem .75rem;text-align:center;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:middle}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#f3f4f6;text-decoration:none}.btn.focus,.btn:focus{box-shadow:0 0 0 .2rem rgba(139,92,246,.25);outline:0}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{background-color:#8b5cf6;border-color:#8b5cf6;color:#fff}.btn-primary.focus,.btn-primary:focus,.btn-primary:hover{background-color:#7138f4;border-color:#692cf3;color:#fff}.btn-primary.focus,.btn-primary:focus{box-shadow:0 0 0 .2rem rgba(156,116,247,.5)}.btn-primary.disabled,.btn-primary:disabled{background-color:#8b5cf6;border-color:#8b5cf6;color:#fff}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{background-color:#692cf3;border-color:#6020f3;color:#fff}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(156,116,247,.5)}.btn-secondary{background-color:#6b7280;border-color:#6b7280;color:#fff}.btn-secondary.focus,.btn-secondary:focus,.btn-secondary:hover{background-color:#5a5f6b;border-color:#545964;color:#fff}.btn-secondary.focus,.btn-secondary:focus{box-shadow:0 0 0 .2rem hsla(220,8%,54%,.5)}.btn-secondary.disabled,.btn-secondary:disabled{background-color:#6b7280;border-color:#6b7280;color:#fff}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{background-color:#545964;border-color:#4e535d;color:#fff}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem hsla(220,8%,54%,.5)}.btn-success{background-color:#10b981;border-color:#10b981;color:#fff}.btn-success.focus,.btn-success:focus,.btn-success:hover{background-color:#0d9668;border-color:#0c8a60;color:#fff}.btn-success.focus,.btn-success:focus{box-shadow:0 0 0 .2rem rgba(52,196,148,.5)}.btn-success.disabled,.btn-success:disabled{background-color:#10b981;border-color:#10b981;color:#fff}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{background-color:#0c8a60;border-color:#0b7e58;color:#fff}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,196,148,.5)}.btn-info{background-color:#3b82f6;border-color:#3b82f6;color:#fff}.btn-info.focus,.btn-info:focus,.btn-info:hover{background-color:#166bf4;border-color:#0b63f3;color:#fff}.btn-info.focus,.btn-info:focus{box-shadow:0 0 0 .2rem rgba(88,149,247,.5)}.btn-info.disabled,.btn-info:disabled{background-color:#3b82f6;border-color:#3b82f6;color:#fff}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{background-color:#0b63f3;border-color:#0b5ee7;color:#fff}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(88,149,247,.5)}.btn-warning{background-color:#f59e0b;border-color:#f59e0b;color:#111827}.btn-warning.focus,.btn-warning:focus,.btn-warning:hover{background-color:#d18709;border-color:#c57f08;color:#fff}.btn-warning.focus,.btn-warning:focus{box-shadow:0 0 0 .2rem rgba(211,138,15,.5)}.btn-warning.disabled,.btn-warning:disabled{background-color:#f59e0b;border-color:#f59e0b;color:#111827}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{background-color:#c57f08;border-color:#b97708;color:#fff}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(211,138,15,.5)}.btn-danger{background-color:#ef4444;border-color:#ef4444;color:#fff}.btn-danger.focus,.btn-danger:focus,.btn-danger:hover{background-color:#ec2121;border-color:#eb1515;color:#fff}.btn-danger.focus,.btn-danger:focus{box-shadow:0 0 0 .2rem rgba(241,96,96,.5)}.btn-danger.disabled,.btn-danger:disabled{background-color:#ef4444;border-color:#ef4444;color:#fff}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{background-color:#eb1515;border-color:#e01313;color:#fff}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(241,96,96,.5)}.btn-light{background-color:#f3f4f6;border-color:#f3f4f6;color:#111827}.btn-light.focus,.btn-light:focus,.btn-light:hover{background-color:#dde0e6;border-color:#d6d9e0;color:#111827}.btn-light.focus,.btn-light:focus{box-shadow:0 0 0 .2rem hsla(220,7%,83%,.5)}.btn-light.disabled,.btn-light:disabled{background-color:#f3f4f6;border-color:#f3f4f6;color:#111827}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{background-color:#d6d9e0;border-color:#cfd3db;color:#111827}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem hsla(220,7%,83%,.5)}.btn-dark{background-color:#1f2937;border-color:#1f2937;color:#fff}.btn-dark.focus,.btn-dark:focus,.btn-dark:hover{background-color:#11171f;border-color:#0d1116;color:#fff}.btn-dark.focus,.btn-dark:focus{box-shadow:0 0 0 .2rem rgba(65,73,85,.5)}.btn-dark.disabled,.btn-dark:disabled{background-color:#1f2937;border-color:#1f2937;color:#fff}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{background-color:#0d1116;border-color:#080b0e;color:#fff}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(65,73,85,.5)}.btn-outline-primary{border-color:#8b5cf6;color:#8b5cf6}.btn-outline-primary:hover{background-color:#8b5cf6;border-color:#8b5cf6;color:#fff}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(139,92,246,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{background-color:transparent;color:#8b5cf6}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{background-color:#8b5cf6;border-color:#8b5cf6;color:#fff}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(139,92,246,.5)}.btn-outline-secondary{border-color:#6b7280;color:#6b7280}.btn-outline-secondary:hover{background-color:#6b7280;border-color:#6b7280;color:#fff}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem hsla(220,9%,46%,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{background-color:transparent;color:#6b7280}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{background-color:#6b7280;border-color:#6b7280;color:#fff}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem hsla(220,9%,46%,.5)}.btn-outline-success{border-color:#10b981;color:#10b981}.btn-outline-success:hover{background-color:#10b981;border-color:#10b981;color:#fff}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(16,185,129,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{background-color:transparent;color:#10b981}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{background-color:#10b981;border-color:#10b981;color:#fff}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(16,185,129,.5)}.btn-outline-info{border-color:#3b82f6;color:#3b82f6}.btn-outline-info:hover{background-color:#3b82f6;border-color:#3b82f6;color:#fff}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(59,130,246,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{background-color:transparent;color:#3b82f6}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{background-color:#3b82f6;border-color:#3b82f6;color:#fff}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(59,130,246,.5)}.btn-outline-warning{border-color:#f59e0b;color:#f59e0b}.btn-outline-warning:hover{background-color:#f59e0b;border-color:#f59e0b;color:#111827}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(245,158,11,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{background-color:transparent;color:#f59e0b}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{background-color:#f59e0b;border-color:#f59e0b;color:#111827}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(245,158,11,.5)}.btn-outline-danger{border-color:#ef4444;color:#ef4444}.btn-outline-danger:hover{background-color:#ef4444;border-color:#ef4444;color:#fff}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(239,68,68,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{background-color:transparent;color:#ef4444}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{background-color:#ef4444;border-color:#ef4444;color:#fff}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(239,68,68,.5)}.btn-outline-light{border-color:#f3f4f6;color:#f3f4f6}.btn-outline-light:hover{background-color:#f3f4f6;border-color:#f3f4f6;color:#111827}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(243,244,246,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{background-color:transparent;color:#f3f4f6}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{background-color:#f3f4f6;border-color:#f3f4f6;color:#111827}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(243,244,246,.5)}.btn-outline-dark{border-color:#1f2937;color:#1f2937}.btn-outline-dark:hover{background-color:#1f2937;border-color:#1f2937;color:#fff}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(31,41,55,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{background-color:transparent;color:#1f2937}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{background-color:#1f2937;border-color:#1f2937;color:#fff}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(31,41,55,.5)}.btn-link{color:#a78bfa;font-weight:400;text-decoration:none}.btn-link:hover{color:#c4b5fd}.btn-link.focus,.btn-link:focus,.btn-link:hover{text-decoration:underline}.btn-link.disabled,.btn-link:disabled{color:#4b5563;pointer-events:none}.btn-group-lg>.btn,.btn-lg{border-radius:6px;font-size:1.25rem;line-height:1.5;padding:.5rem 1rem}.btn-group-sm>.btn,.btn-sm{border-radius:.2rem;font-size:.875rem;line-height:1.5;padding:.25rem .5rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;position:relative;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.width{height:auto;transition:width .35s ease;width:0}@media (prefers-reduced-motion:reduce){.collapsing.width{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle:after{border-bottom:0;border-left:.3em solid transparent;border-right:.3em solid transparent;border-top:.3em solid;content:"";display:inline-block;margin-left:.255em;vertical-align:.255em}.dropdown-toggle:empty:after{margin-left:0}.dropdown-menu{background-clip:padding-box;background-color:#374151;border:1px solid rgba(0,0,0,.15);border-radius:.25rem;color:#f3f4f6;display:none;float:left;font-size:1rem;left:0;list-style:none;margin:.125rem 0 0;min-width:10rem;padding:.5rem 0;position:absolute;text-align:left;top:100%;z-index:1000}.dropdown-menu-left{left:0;right:auto}.dropdown-menu-right{left:auto;right:0}@media (min-width:2px){.dropdown-menu-sm-left{left:0;right:auto}.dropdown-menu-sm-right{left:auto;right:0}}@media (min-width:8px){.dropdown-menu-md-left{left:0;right:auto}.dropdown-menu-md-right{left:auto;right:0}}@media (min-width:9px){.dropdown-menu-lg-left{left:0;right:auto}.dropdown-menu-lg-right{left:auto;right:0}}@media (min-width:10px){.dropdown-menu-xl-left{left:0;right:auto}.dropdown-menu-xl-right{left:auto;right:0}}.dropup .dropdown-menu{bottom:100%;margin-bottom:.125rem;margin-top:0;top:auto}.dropup .dropdown-toggle:after{border-bottom:.3em solid;border-left:.3em solid transparent;border-right:.3em solid transparent;border-top:0;content:"";display:inline-block;margin-left:.255em;vertical-align:.255em}.dropup .dropdown-toggle:empty:after{margin-left:0}.dropright .dropdown-menu{left:100%;margin-left:.125rem;margin-top:0;right:auto;top:0}.dropright .dropdown-toggle:after{border-bottom:.3em solid transparent;border-left:.3em solid;border-right:0;border-top:.3em solid transparent;content:"";display:inline-block;margin-left:.255em;vertical-align:.255em}.dropright .dropdown-toggle:empty:after{margin-left:0}.dropright .dropdown-toggle:after{vertical-align:0}.dropleft .dropdown-menu{left:auto;margin-right:.125rem;margin-top:0;right:100%;top:0}.dropleft .dropdown-toggle:after{content:"";display:inline-block;display:none;margin-left:.255em;vertical-align:.255em}.dropleft .dropdown-toggle:before{border-bottom:.3em solid transparent;border-right:.3em solid;border-top:.3em solid transparent;content:"";display:inline-block;margin-right:.255em;vertical-align:.255em}.dropleft .dropdown-toggle:empty:after{margin-left:0}.dropleft .dropdown-toggle:before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{bottom:auto;right:auto}.dropdown-divider{border-top:1px solid #e5e7eb;height:0;margin:.5rem 0;overflow:hidden}.dropdown-item{background-color:transparent;border:0;clear:both;color:#fff;display:block;font-weight:400;padding:.25rem 1.5rem;text-align:inherit;white-space:nowrap;width:100%}.dropdown-item:focus,.dropdown-item:hover{background-color:#e5e7eb;color:#090d15;text-decoration:none}.dropdown-item.active,.dropdown-item:active{background-color:#8b5cf6;color:#fff;text-decoration:none}.dropdown-item.disabled,.dropdown-item:disabled{background-color:transparent;color:#6b7280;pointer-events:none}.dropdown-menu.show{display:block}.dropdown-header{color:#4b5563;display:block;font-size:.875rem;margin-bottom:0;padding:.5rem 1.5rem;white-space:nowrap}.dropdown-item-text{color:#fff;display:block;padding:.25rem 1.5rem}.btn-group,.btn-group-vertical{display:inline-flex;position:relative;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{flex:1 1 auto;position:relative}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.dropdown-toggle-split{padding-left:.5625rem;padding-right:.5625rem}.dropdown-toggle-split:after,.dropright .dropdown-toggle-split:after,.dropup .dropdown-toggle-split:after{margin-left:0}.dropleft .dropdown-toggle-split:before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-left:.375rem;padding-right:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-left:.75rem;padding-right:.75rem}.btn-group-vertical{align-items:flex-start;flex-direction:column;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-left-radius:0;border-bottom-right-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio]{clip:rect(0,0,0,0);pointer-events:none;position:absolute}.input-group{align-items:stretch;display:flex;flex-wrap:wrap;position:relative;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{flex:1 1 auto;margin-bottom:0;min-width:0;position:relative;width:1%}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.input-group>.custom-file{align-items:center;display:flex}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label:after{border-bottom-right-radius:0;border-top-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-bottom-left-radius:0;border-top-left-radius:0}.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label,.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label:after,.input-group.has-validation>.custom-select:nth-last-child(n+3),.input-group.has-validation>.form-control:nth-last-child(n+3),.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label,.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label:after,.input-group:not(.has-validation)>.custom-select:not(:last-child),.input-group:not(.has-validation)>.form-control:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.input-group-append,.input-group-prepend{display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{align-items:center;background-color:#e5e7eb;border:1px solid #4b5563;border-radius:.25rem;color:#e5e7eb;display:flex;font-size:1rem;font-weight:400;line-height:1.5;margin-bottom:0;padding:.375rem .75rem;text-align:center;white-space:nowrap}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{border-radius:6px;font-size:1.25rem;line-height:1.5;padding:.5rem 1rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + .5rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{border-radius:.2rem;font-size:.875rem;line-height:1.5;padding:.25rem .5rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-bottom-right-radius:0;border-top-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-bottom-left-radius:0;border-top-left-radius:0}.custom-control{display:block;min-height:1.5rem;padding-left:1.5rem;position:relative;-webkit-print-color-adjust:exact;print-color-adjust:exact;z-index:1}.custom-control-inline{display:inline-flex;margin-right:1rem}.custom-control-input{height:1.25rem;left:0;opacity:0;position:absolute;width:1rem;z-index:-1}.custom-control-input:checked~.custom-control-label:before{background-color:#8b5cf6;border-color:#8b5cf6;color:#fff}.custom-control-input:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(139,92,246,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label:before{border-color:#e1d5fd}.custom-control-input:not(:disabled):active~.custom-control-label:before{background-color:#fff;border-color:#fff;color:#fff}.custom-control-input:disabled~.custom-control-label,.custom-control-input[disabled]~.custom-control-label{color:#4b5563}.custom-control-input:disabled~.custom-control-label:before,.custom-control-input[disabled]~.custom-control-label:before{background-color:#e5e7eb}.custom-control-label{margin-bottom:0;position:relative;vertical-align:top}.custom-control-label:before{background-color:#1f2937;border:1px solid #6b7280;pointer-events:none}.custom-control-label:after,.custom-control-label:before{content:"";display:block;height:1rem;left:-1.5rem;position:absolute;top:.25rem;width:1rem}.custom-control-label:after{background:50%/50% 50% no-repeat}.custom-checkbox .custom-control-label:before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%23fff' d='m6.564.75-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label:before{background-color:#8b5cf6;border-color:#8b5cf6}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(139,92,246,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label:before{background-color:rgba(139,92,246,.5)}.custom-radio .custom-control-label:before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(139,92,246,.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label:before{border-radius:.5rem;left:-2.25rem;pointer-events:all;width:1.75rem}.custom-switch .custom-control-label:after{background-color:#6b7280;border-radius:.5rem;height:calc(1rem - 4px);left:calc(-2.25rem + 2px);top:calc(.25rem + 2px);transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:calc(1rem - 4px)}@media (prefers-reduced-motion:reduce){.custom-switch .custom-control-label:after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label:after{background-color:#1f2937;transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(139,92,246,.5)}.custom-select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:#1f2937 url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%231f2937' d='M2 0 0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat;border:1px solid #4b5563;border-radius:.25rem;color:#e5e7eb;display:inline-block;font-size:1rem;font-weight:400;height:calc(1.5em + .75rem + 2px);line-height:1.5;padding:.375rem 1.75rem .375rem .75rem;vertical-align:middle;width:100%}.custom-select:focus{border-color:#e1d5fd;box-shadow:0 0 0 .2rem rgba(139,92,246,.25);outline:0}.custom-select:focus::-ms-value{background-color:#1f2937;color:#e5e7eb}.custom-select[multiple],.custom-select[size]:not([size="1"]){background-image:none;height:auto;padding-right:.75rem}.custom-select:disabled{background-color:#e5e7eb;color:#4b5563}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #e5e7eb}.custom-select-sm{font-size:.875rem;height:calc(1.5em + .5rem + 2px);padding-bottom:.25rem;padding-left:.5rem;padding-top:.25rem}.custom-select-lg{font-size:1.25rem;height:calc(1.5em + 1rem + 2px);padding-bottom:.5rem;padding-left:1rem;padding-top:.5rem}.custom-file{display:inline-block;margin-bottom:0}.custom-file,.custom-file-input{height:calc(1.5em + .75rem + 2px);position:relative;width:100%}.custom-file-input{margin:0;opacity:0;overflow:hidden;z-index:2}.custom-file-input:focus~.custom-file-label{border-color:#e1d5fd;box-shadow:0 0 0 .2rem rgba(139,92,246,.25)}.custom-file-input:disabled~.custom-file-label,.custom-file-input[disabled]~.custom-file-label{background-color:#e5e7eb}.custom-file-input:lang(en)~.custom-file-label:after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]:after{content:attr(data-browse)}.custom-file-label{background-color:#1f2937;border:1px solid #4b5563;border-radius:.25rem;font-weight:400;height:calc(1.5em + .75rem + 2px);left:0;overflow:hidden;z-index:1}.custom-file-label,.custom-file-label:after{color:#e5e7eb;line-height:1.5;padding:.375rem .75rem;position:absolute;right:0;top:0}.custom-file-label:after{background-color:#e5e7eb;border-left:inherit;border-radius:0 .25rem .25rem 0;bottom:0;content:"Browse";display:block;height:calc(1.5em + .75rem);z-index:3}.custom-range{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;height:1.4rem;padding:0;width:100%}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #111827,0 0 0 .2rem rgba(139,92,246,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #111827,0 0 0 .2rem rgba(139,92,246,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #111827,0 0 0 .2rem rgba(139,92,246,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;background-color:#8b5cf6;border:0;border-radius:1rem;height:1rem;margin-top:-.25rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:1rem}@media (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#fff}.custom-range::-webkit-slider-runnable-track{background-color:#d1d5db;border-color:transparent;border-radius:1rem;color:transparent;cursor:pointer;height:.5rem;width:100%}.custom-range::-moz-range-thumb{-moz-appearance:none;appearance:none;background-color:#8b5cf6;border:0;border-radius:1rem;height:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:1rem}@media (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{-moz-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background-color:#fff}.custom-range::-moz-range-track{background-color:#d1d5db;border-color:transparent;border-radius:1rem;color:transparent;cursor:pointer;height:.5rem;width:100%}.custom-range::-ms-thumb{appearance:none;background-color:#8b5cf6;border:0;border-radius:1rem;height:1rem;margin-left:.2rem;margin-right:.2rem;margin-top:0;-ms-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:1rem}@media (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{-ms-transition:none;transition:none}}.custom-range::-ms-thumb:active{background-color:#fff}.custom-range::-ms-track{background-color:transparent;border-color:transparent;border-width:.5rem;color:transparent;cursor:pointer;height:.5rem;width:100%}.custom-range::-ms-fill-lower,.custom-range::-ms-fill-upper{background-color:#d1d5db;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px}.custom-range:disabled::-webkit-slider-thumb{background-color:#6b7280}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#6b7280}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#6b7280}.custom-control-label:before,.custom-file-label,.custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-control-label:before,.custom-file-label,.custom-select{transition:none}}.nav{display:flex;flex-wrap:wrap;list-style:none;margin-bottom:0;padding-left:0}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#4b5563;cursor:default;pointer-events:none}.nav-tabs{border-bottom:1px solid #d1d5db}.nav-tabs .nav-link{background-color:transparent;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem;margin-bottom:-1px}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e5e7eb #e5e7eb #d1d5db;isolation:isolate}.nav-tabs .nav-link.disabled{background-color:transparent;border-color:transparent;color:#4b5563}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{background-color:#111827;border-color:#d1d5db #d1d5db #111827;color:#374151}.nav-tabs .dropdown-menu{border-top-left-radius:0;border-top-right-radius:0;margin-top:-1px}.nav-pills .nav-link{background:none;border:0;border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{background-color:#1f2937;color:#fff}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{padding:.5rem 1rem;position:relative}.navbar,.navbar .container,.navbar .container-fluid,.navbar .container-lg,.navbar .container-md,.navbar .container-sm,.navbar .container-xl{align-items:center;display:flex;flex-wrap:wrap;justify-content:space-between}.navbar-brand{display:inline-block;font-size:1.25rem;line-height:inherit;margin-right:1rem;padding-bottom:.3125rem;padding-top:.3125rem;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:flex;flex-direction:column;list-style:none;margin-bottom:0;padding-left:0}.navbar-nav .nav-link{padding-left:0;padding-right:0}.navbar-nav .dropdown-menu{float:none;position:static}.navbar-text{display:inline-block;padding-bottom:.5rem;padding-top:.5rem}.navbar-collapse{align-items:center;flex-basis:100%;flex-grow:1}.navbar-toggler{background-color:transparent;border:1px solid transparent;border-radius:.25rem;font-size:1.25rem;line-height:1;padding:.25rem .75rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler-icon{background:50%/100% 100% no-repeat;content:"";display:inline-block;height:1.5em;vertical-align:middle;width:1.5em}.navbar-nav-scroll{max-height:75vh;overflow-y:auto}@media (max-width:1.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{padding-left:0;padding-right:0}}@media (min-width:2px){.navbar-expand-sm{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{flex-wrap:nowrap}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:7.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{padding-left:0;padding-right:0}}@media (min-width:8px){.navbar-expand-md{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{flex-wrap:nowrap}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width:8.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{padding-left:0;padding-right:0}}@media (min-width:9px){.navbar-expand-lg{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{flex-wrap:nowrap}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:9.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{padding-left:0;padding-right:0}}@media (min-width:10px){.navbar-expand-xl{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{flex-wrap:nowrap}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{padding-left:0;padding-right:0}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{flex-wrap:nowrap}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand,.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{border-color:rgba(0,0,0,.1);color:rgba(0,0,0,.5)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand,.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:hsla(0,0%,100%,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:hsla(0,0%,100%,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:hsla(0,0%,100%,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{border-color:hsla(0,0%,100%,.1);color:hsla(0,0%,100%,.5)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-dark .navbar-text{color:hsla(0,0%,100%,.5)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{word-wrap:break-word;background-clip:border-box;background-color:#1f2937;border:1px solid rgba(0,0,0,.125);border-radius:6px;display:flex;flex-direction:column;min-width:0;position:relative}.card>hr{margin-left:0;margin-right:0}.card>.list-group{border-bottom:inherit;border-top:inherit}.card>.list-group:first-child{border-top-left-radius:5px;border-top-right-radius:5px;border-top-width:0}.card>.list-group:last-child{border-bottom-left-radius:5px;border-bottom-right-radius:5px;border-bottom-width:0}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;min-height:1px;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem}.card-subtitle,.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{background-color:#374151;border-bottom:1px solid rgba(0,0,0,.125);margin-bottom:0;padding:.75rem 1.25rem}.card-header:first-child{border-radius:5px 5px 0 0}.card-footer{background-color:#374151;border-top:1px solid rgba(0,0,0,.125);padding:.75rem 1.25rem}.card-footer:last-child{border-radius:0 0 5px 5px}.card-header-tabs{border-bottom:0;margin-bottom:-.75rem}.card-header-pills,.card-header-tabs{margin-left:-.625rem;margin-right:-.625rem}.card-img-overlay{border-radius:5px;bottom:0;left:0;padding:1.25rem;position:absolute;right:0;top:0}.card-img,.card-img-bottom,.card-img-top{flex-shrink:0;width:100%}.card-img,.card-img-top{border-top-left-radius:5px;border-top-right-radius:5px}.card-img,.card-img-bottom{border-bottom-left-radius:5px;border-bottom-right-radius:5px}.card-deck .card{margin-bottom:15px}@media (min-width:2px){.card-deck{display:flex;flex-flow:row wrap;margin-left:-15px;margin-right:-15px}.card-deck .card{flex:1 0 0%;margin-bottom:0;margin-left:15px;margin-right:15px}}.card-group>.card{margin-bottom:15px}@media (min-width:2px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{border-left:0;margin-left:0}.card-group>.card:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width:2px){.card-columns{-moz-column-count:3;column-count:3;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion{overflow-anchor:none}.accordion>.card{overflow:hidden}.accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-left-radius:0;border-bottom-right-radius:0}.accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.breadcrumb{background-color:#e5e7eb;border-radius:.25rem;display:flex;flex-wrap:wrap;list-style:none;margin-bottom:1rem;padding:.75rem 1rem}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item:before{color:#4b5563;content:"/";float:left;padding-right:.5rem}.breadcrumb-item+.breadcrumb-item:hover:before{text-decoration:underline;text-decoration:none}.breadcrumb-item.active{color:#4b5563}.pagination{border-radius:.25rem;display:flex;list-style:none;padding-left:0}.page-link{background-color:#fff;border:1px solid #d1d5db;color:#a78bfa;display:block;line-height:1.25;margin-left:-1px;padding:.5rem .75rem;position:relative}.page-link:hover{background-color:#e5e7eb;border-color:#d1d5db;color:#c4b5fd;text-decoration:none;z-index:2}.page-link:focus{box-shadow:0 0 0 .2rem rgba(139,92,246,.25);outline:0;z-index:3}.page-item:first-child .page-link{border-bottom-left-radius:.25rem;border-top-left-radius:.25rem;margin-left:0}.page-item:last-child .page-link{border-bottom-right-radius:.25rem;border-top-right-radius:.25rem}.page-item.active .page-link{background-color:#8b5cf6;border-color:#8b5cf6;color:#fff;z-index:3}.page-item.disabled .page-link{background-color:#fff;border-color:#d1d5db;color:#4b5563;cursor:auto;pointer-events:none}.pagination-lg .page-link{font-size:1.25rem;line-height:1.5;padding:.75rem 1.5rem}.pagination-lg .page-item:first-child .page-link{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg .page-item:last-child .page-link{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-sm .page-link{font-size:.875rem;line-height:1.5;padding:.25rem .5rem}.pagination-sm .page-item:first-child .page-link{border-bottom-left-radius:.2rem;border-top-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-bottom-right-radius:.2rem;border-top-right-radius:.2rem}.badge{border-radius:.25rem;display:inline-block;font-size:.875rem;font-weight:600;line-height:1;padding:.25em .4em;text-align:center;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;vertical-align:baseline;white-space:nowrap}@media (prefers-reduced-motion:reduce){.badge{transition:none}}a.badge:focus,a.badge:hover{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{border-radius:10rem;padding-left:.6em;padding-right:.6em}.badge-primary{background-color:#8b5cf6;color:#fff}a.badge-primary:focus,a.badge-primary:hover{background-color:#692cf3;color:#fff}a.badge-primary.focus,a.badge-primary:focus{box-shadow:0 0 0 .2rem rgba(139,92,246,.5);outline:0}.badge-secondary{background-color:#6b7280;color:#fff}a.badge-secondary:focus,a.badge-secondary:hover{background-color:#545964;color:#fff}a.badge-secondary.focus,a.badge-secondary:focus{box-shadow:0 0 0 .2rem hsla(220,9%,46%,.5);outline:0}.badge-success{background-color:#10b981}a.badge-success:focus,a.badge-success:hover{background-color:#0c8a60;color:#fff}a.badge-success.focus,a.badge-success:focus{box-shadow:0 0 0 .2rem rgba(16,185,129,.5);outline:0}.badge-info{background-color:#3b82f6}a.badge-info:focus,a.badge-info:hover{background-color:#0b63f3;color:#fff}a.badge-info.focus,a.badge-info:focus{box-shadow:0 0 0 .2rem rgba(59,130,246,.5);outline:0}.badge-warning{background-color:#f59e0b;color:#111827}a.badge-warning:focus,a.badge-warning:hover{background-color:#c57f08;color:#111827}a.badge-warning.focus,a.badge-warning:focus{box-shadow:0 0 0 .2rem rgba(245,158,11,.5);outline:0}.badge-danger{background-color:#ef4444}a.badge-danger:focus,a.badge-danger:hover{background-color:#eb1515;color:#fff}a.badge-danger.focus,a.badge-danger:focus{box-shadow:0 0 0 .2rem rgba(239,68,68,.5);outline:0}.badge-light{background-color:#f3f4f6;color:#111827}a.badge-light:focus,a.badge-light:hover{background-color:#d6d9e0;color:#111827}a.badge-light.focus,a.badge-light:focus{box-shadow:0 0 0 .2rem rgba(243,244,246,.5);outline:0}.badge-dark{background-color:#1f2937;color:#fff}a.badge-dark:focus,a.badge-dark:hover{background-color:#0d1116;color:#fff}a.badge-dark.focus,a.badge-dark:focus{box-shadow:0 0 0 .2rem rgba(31,41,55,.5);outline:0}.jumbotron{background-color:#e5e7eb;border-radius:6px;margin-bottom:2rem;padding:2rem 1rem}@media (min-width:2px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{border-radius:0;padding-left:0;padding-right:0}.alert{border:1px solid transparent;border-radius:.25rem;margin-bottom:1rem;padding:.75rem 1.25rem;position:relative}.alert-heading{color:inherit}.alert-link{font-weight:600}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{color:inherit;padding:.75rem 1.25rem;position:absolute;right:0;top:0;z-index:2}.alert-primary{background-color:#e8defd;border-color:#dfd1fc;color:#483080}.alert-primary hr{border-top-color:#ceb9fa}.alert-primary .alert-link{color:#33225b}.alert-secondary{background-color:#e1e3e6;border-color:#d6d8db;color:#383b43}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#212327}.alert-success{background-color:#cff1e6;border-color:#bcebdc;color:#086043}.alert-success hr{border-top-color:#a8e5d2}.alert-success .alert-link{color:#043122}.alert-info{background-color:#d8e6fd;border-color:#c8dcfc;color:#1f4480}.alert-info hr{border-top-color:#b0cdfb}.alert-info .alert-link{color:#152e57}.alert-warning{background-color:#fdecce;border-color:#fce4bb;color:#7f5206}.alert-warning hr{border-top-color:#fbdaa3}.alert-warning .alert-link{color:#4e3304}.alert-danger{background-color:#fcdada;border-color:#fbcbcb;color:#7c2323}.alert-danger hr{border-top-color:#f9b3b3}.alert-danger .alert-link{color:#541818}.alert-light{background-color:#fdfdfd;border-color:#fcfcfc;color:#7e7f80}.alert-light hr{border-top-color:#efefef}.alert-light .alert-link{color:#656666}.alert-dark{background-color:#d2d4d7;border-color:#c0c3c7;color:#10151d}.alert-dark hr{border-top-color:#b3b6bb}.alert-dark .alert-link{color:#000}@keyframes progress-bar-stripes{0%{background-position:1rem 0}to{background-position:0 0}}.progress{background-color:#e5e7eb;border-radius:.25rem;font-size:.75rem;height:1rem;line-height:0}.progress,.progress-bar{display:flex;overflow:hidden}.progress-bar{background-color:#8b5cf6;color:#fff;flex-direction:column;justify-content:center;text-align:center;transition:width .6s ease;white-space:nowrap}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:1rem 1rem}.progress-bar-animated{animation:progress-bar-stripes 1s linear infinite}@media (prefers-reduced-motion:reduce){.progress-bar-animated{animation:none}}.media{align-items:flex-start;display:flex}.media-body{flex:1}.list-group{border-radius:.25rem;display:flex;flex-direction:column;margin-bottom:0;padding-left:0}.list-group-item-action{color:#374151;text-align:inherit;width:100%}.list-group-item-action:focus,.list-group-item-action:hover{background-color:#f3f4f6;color:#374151;text-decoration:none;z-index:1}.list-group-item-action:active{background-color:#e5e7eb;color:#f3f4f6}.list-group-item{background-color:#fff;border:1px solid rgba(0,0,0,.125);display:block;padding:.75rem 1.25rem;position:relative}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{background-color:#fff;color:#4b5563;pointer-events:none}.list-group-item.active{background-color:#8b5cf6;border-color:#8b5cf6;color:#fff;z-index:2}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{border-top-width:1px;margin-top:-1px}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-bottom-left-radius:0;border-top-right-radius:.25rem}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-left-width:0;border-top-width:1px}.list-group-horizontal>.list-group-item+.list-group-item.active{border-left-width:1px;margin-left:-1px}@media (min-width:2px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-bottom-left-radius:0;border-top-right-radius:.25rem}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-left-width:0;border-top-width:1px}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{border-left-width:1px;margin-left:-1px}}@media (min-width:8px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-bottom-left-radius:0;border-top-right-radius:.25rem}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-left-width:0;border-top-width:1px}.list-group-horizontal-md>.list-group-item+.list-group-item.active{border-left-width:1px;margin-left:-1px}}@media (min-width:9px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-bottom-left-radius:0;border-top-right-radius:.25rem}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-left-width:0;border-top-width:1px}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{border-left-width:1px;margin-left:-1px}}@media (min-width:10px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-bottom-left-radius:0;border-top-right-radius:.25rem}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-left-width:0;border-top-width:1px}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{border-left-width:1px;margin-left:-1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{background-color:#dfd1fc;color:#483080}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{background-color:#ceb9fa;color:#483080}.list-group-item-primary.list-group-item-action.active{background-color:#483080;border-color:#483080;color:#fff}.list-group-item-secondary{background-color:#d6d8db;color:#383b43}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{background-color:#c8cbcf;color:#383b43}.list-group-item-secondary.list-group-item-action.active{background-color:#383b43;border-color:#383b43;color:#fff}.list-group-item-success{background-color:#bcebdc;color:#086043}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{background-color:#a8e5d2;color:#086043}.list-group-item-success.list-group-item-action.active{background-color:#086043;border-color:#086043;color:#fff}.list-group-item-info{background-color:#c8dcfc;color:#1f4480}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{background-color:#b0cdfb;color:#1f4480}.list-group-item-info.list-group-item-action.active{background-color:#1f4480;border-color:#1f4480;color:#fff}.list-group-item-warning{background-color:#fce4bb;color:#7f5206}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{background-color:#fbdaa3;color:#7f5206}.list-group-item-warning.list-group-item-action.active{background-color:#7f5206;border-color:#7f5206;color:#fff}.list-group-item-danger{background-color:#fbcbcb;color:#7c2323}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{background-color:#f9b3b3;color:#7c2323}.list-group-item-danger.list-group-item-action.active{background-color:#7c2323;border-color:#7c2323;color:#fff}.list-group-item-light{background-color:#fcfcfc;color:#7e7f80}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{background-color:#efefef;color:#7e7f80}.list-group-item-light.list-group-item-action.active{background-color:#7e7f80;border-color:#7e7f80;color:#fff}.list-group-item-dark{background-color:#c0c3c7;color:#10151d}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{background-color:#b3b6bb;color:#10151d}.list-group-item-dark.list-group-item-action.active{background-color:#10151d;border-color:#10151d;color:#fff}.close{color:#000;float:right;font-size:1.5rem;font-weight:600;line-height:1;opacity:.5;text-shadow:0 1px 0 #fff}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{background-color:transparent;border:0;padding:0}a.close.disabled{pointer-events:none}.toast{background-clip:padding-box;background-color:hsla(0,0%,100%,.85);border:1px solid rgba(0,0,0,.1);border-radius:.25rem;box-shadow:0 .25rem .75rem rgba(0,0,0,.1);flex-basis:350px;font-size:.875rem;max-width:350px;opacity:0}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{align-items:center;background-clip:padding-box;background-color:hsla(0,0%,100%,.85);border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px);color:#4b5563;display:flex;padding:.25rem .75rem}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{display:none;height:100%;left:0;outline:0;overflow:hidden;position:fixed;top:0;width:100%;z-index:1050}.modal-dialog{margin:.5rem;pointer-events:none;position:relative;width:auto}.modal.fade .modal-dialog{transform:translateY(-50px);transition:transform .3s ease-out}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header{flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{align-items:center;display:flex;min-height:calc(100% - 1rem)}.modal-dialog-centered:before{content:"";display:block;height:calc(100vh - 1rem);height:-moz-min-content;height:min-content}.modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;height:100%;justify-content:center}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable:before{content:none}.modal-content{background-clip:padding-box;background-color:#1f2937;border:1px solid rgba(0,0,0,.2);border-radius:6px;display:flex;flex-direction:column;outline:0;pointer-events:auto;position:relative;width:100%}.modal-backdrop{background-color:#4b5563;height:100vh;left:0;position:fixed;top:0;width:100vw;z-index:1040}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{align-items:flex-start;border-bottom:1px solid #4b5563;border-top-left-radius:5px;border-top-right-radius:5px;display:flex;justify-content:space-between;padding:1rem}.modal-header .close{margin:-1rem -1rem -1rem auto;padding:1rem}.modal-title{line-height:1.5;margin-bottom:0}.modal-body{flex:1 1 auto;padding:1rem;position:relative}.modal-footer{align-items:center;border-bottom-left-radius:5px;border-bottom-right-radius:5px;border-top:1px solid #4b5563;display:flex;flex-wrap:wrap;justify-content:flex-end;padding:.75rem}.modal-footer>*{margin:.25rem}.modal-scrollbar-measure{height:50px;overflow:scroll;position:absolute;top:-9999px;width:50px}@media (min-width:2px){.modal-dialog{margin:1.75rem auto;max-width:500px}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered:before{height:calc(100vh - 3.5rem);height:-moz-min-content;height:min-content}.modal-sm{max-width:300px}}@media (min-width:9px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:10px){.modal-xl{max-width:1140px}}.tooltip{word-wrap:break-word;display:block;font-family:Figtree,sans-serif;font-size:.875rem;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.5;margin:0;opacity:0;position:absolute;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;z-index:1070}.tooltip.show{opacity:.9}.tooltip .arrow{display:block;height:.4rem;position:absolute;width:.8rem}.tooltip .arrow:before{border-color:transparent;border-style:solid;content:"";position:absolute}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow:before,.bs-tooltip-top .arrow:before{border-top-color:#000;border-width:.4rem .4rem 0;top:0}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{height:.8rem;left:0;width:.4rem}.bs-tooltip-auto[x-placement^=right] .arrow:before,.bs-tooltip-right .arrow:before{border-right-color:#000;border-width:.4rem .4rem .4rem 0;right:0}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow:before,.bs-tooltip-bottom .arrow:before{border-bottom-color:#000;border-width:0 .4rem .4rem;bottom:0}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{height:.8rem;right:0;width:.4rem}.bs-tooltip-auto[x-placement^=left] .arrow:before,.bs-tooltip-left .arrow:before{border-left-color:#000;border-width:.4rem 0 .4rem .4rem;left:0}.tooltip-inner{background-color:#000;border-radius:.25rem;color:#fff;max-width:200px;padding:.25rem .5rem;text-align:center}.popover{word-wrap:break-word;background-clip:padding-box;background-color:#fff;border:1px solid rgba(0,0,0,.2);border-radius:6px;font-family:Figtree,sans-serif;font-size:.875rem;font-style:normal;font-weight:400;left:0;letter-spacing:normal;line-break:auto;line-height:1.5;max-width:276px;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;top:0;white-space:normal;word-break:normal;word-spacing:normal;z-index:1060}.popover,.popover .arrow{display:block;position:absolute}.popover .arrow{height:.5rem;margin:0 6px;width:1rem}.popover .arrow:after,.popover .arrow:before{border-color:transparent;border-style:solid;content:"";display:block;position:absolute}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=top]>.arrow:before,.bs-popover-top>.arrow:before{border-top-color:rgba(0,0,0,.25);border-width:.5rem .5rem 0;bottom:0}.bs-popover-auto[x-placement^=top]>.arrow:after,.bs-popover-top>.arrow:after{border-top-color:#fff;border-width:.5rem .5rem 0;bottom:1px}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{height:1rem;left:calc(-.5rem - 1px);margin:6px 0;width:.5rem}.bs-popover-auto[x-placement^=right]>.arrow:before,.bs-popover-right>.arrow:before{border-right-color:rgba(0,0,0,.25);border-width:.5rem .5rem .5rem 0;left:0}.bs-popover-auto[x-placement^=right]>.arrow:after,.bs-popover-right>.arrow:after{border-right-color:#fff;border-width:.5rem .5rem .5rem 0;left:1px}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=bottom]>.arrow:before,.bs-popover-bottom>.arrow:before{border-bottom-color:rgba(0,0,0,.25);border-width:0 .5rem .5rem;top:0}.bs-popover-auto[x-placement^=bottom]>.arrow:after,.bs-popover-bottom>.arrow:after{border-bottom-color:#fff;border-width:0 .5rem .5rem;top:1px}.bs-popover-auto[x-placement^=bottom] .popover-header:before,.bs-popover-bottom .popover-header:before{border-bottom:1px solid #f7f7f7;content:"";display:block;left:50%;margin-left:-.5rem;position:absolute;top:0;width:1rem}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{height:1rem;margin:6px 0;right:calc(-.5rem - 1px);width:.5rem}.bs-popover-auto[x-placement^=left]>.arrow:before,.bs-popover-left>.arrow:before{border-left-color:rgba(0,0,0,.25);border-width:.5rem 0 .5rem .5rem;right:0}.bs-popover-auto[x-placement^=left]>.arrow:after,.bs-popover-left>.arrow:after{border-left-color:#fff;border-width:.5rem 0 .5rem .5rem;right:1px}.popover-header{background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:5px;border-top-right-radius:5px;font-size:1rem;margin-bottom:0;padding:.5rem .75rem}.popover-header:empty{display:none}.popover-body{color:#f3f4f6;padding:.5rem .75rem}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{overflow:hidden;position:relative;width:100%}.carousel-inner:after{clear:both;content:"";display:block}.carousel-item{-webkit-backface-visibility:hidden;backface-visibility:hidden;display:none;float:left;margin-right:-100%;position:relative;transition:transform .6s ease-in-out;width:100%}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-right,.carousel-item-next:not(.carousel-item-left){transform:translateX(100%)}.active.carousel-item-left,.carousel-item-prev:not(.carousel-item-right){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transform:none;transition-property:opacity}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{opacity:1;z-index:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{opacity:0;transition:opacity 0s .6s;z-index:0}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-next,.carousel-control-prev{align-items:center;background:none;border:0;bottom:0;color:#fff;display:flex;justify-content:center;opacity:.5;padding:0;position:absolute;text-align:center;top:0;transition:opacity .15s ease;width:15%;z-index:1}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;opacity:.9;outline:0;text-decoration:none}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{background:50%/100% 100% no-repeat;display:inline-block;height:20px;width:20px}.carousel-control-prev-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8'%3E%3Cpath d='m5.25 0-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3E%3C/svg%3E")}.carousel-control-next-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8'%3E%3Cpath d='m2.75 0-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3E%3C/svg%3E")}.carousel-indicators{bottom:0;display:flex;justify-content:center;left:0;list-style:none;margin-left:15%;margin-right:15%;padding-left:0;position:absolute;right:0;z-index:15}.carousel-indicators li{background-clip:padding-box;background-color:#fff;border-bottom:10px solid transparent;border-top:10px solid transparent;box-sizing:content-box;cursor:pointer;flex:0 1 auto;height:3px;margin-left:3px;margin-right:3px;opacity:.5;text-indent:-999px;transition:opacity .6s ease;width:30px}@media (prefers-reduced-motion:reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{bottom:20px;color:#fff;left:15%;padding-bottom:20px;padding-top:20px;position:absolute;right:15%;text-align:center;z-index:10}@keyframes spinner-border{to{transform:rotate(1turn)}}.spinner-border{animation:spinner-border .75s linear infinite;border:.25em solid;border-radius:50%;border-right:.25em solid transparent;display:inline-block;height:2rem;vertical-align:-.125em;width:2rem}.spinner-border-sm{border-width:.2em;height:1rem;width:1rem}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{animation:spinner-grow .75s linear infinite;background-color:currentcolor;border-radius:50%;display:inline-block;height:2rem;opacity:0;vertical-align:-.125em;width:2rem}.spinner-grow-sm{height:1rem;width:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{animation-duration:1.5s}}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#8b5cf6!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#692cf3!important}.bg-secondary{background-color:#6b7280!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#545964!important}.bg-success{background-color:#10b981!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#0c8a60!important}.bg-info{background-color:#3b82f6!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#0b63f3!important}.bg-warning{background-color:#f59e0b!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#c57f08!important}.bg-danger{background-color:#ef4444!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#eb1515!important}.bg-light{background-color:#f3f4f6!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#d6d9e0!important}.bg-dark{background-color:#1f2937!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#0d1116!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #4b5563!important}.border-top{border-top:1px solid #4b5563!important}.border-right{border-right:1px solid #4b5563!important}.border-bottom{border-bottom:1px solid #4b5563!important}.border-left{border-left:1px solid #4b5563!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#8b5cf6!important}.border-secondary{border-color:#6b7280!important}.border-success{border-color:#10b981!important}.border-info{border-color:#3b82f6!important}.border-warning{border-color:#f59e0b!important}.border-danger{border-color:#ef4444!important}.border-light{border-color:#f3f4f6!important}.border-dark{border-color:#1f2937!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important}.rounded-right,.rounded-top{border-top-right-radius:.25rem!important}.rounded-bottom,.rounded-right{border-bottom-right-radius:.25rem!important}.rounded-bottom,.rounded-left{border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important}.rounded-lg{border-radius:6px!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix:after{clear:both;content:"";display:block}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}@media (min-width:2px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}}@media (min-width:8px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}}@media (min-width:9px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}}@media (min-width:10px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}}.embed-responsive{display:block;overflow:hidden;padding:0;position:relative;width:100%}.embed-responsive:before{content:"";display:block}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{border:0;bottom:0;height:100%;left:0;position:absolute;top:0;width:100%}.embed-responsive-21by9:before{padding-top:42.85714286%}.embed-responsive-16by9:before{padding-top:56.25%}.embed-responsive-4by3:before{padding-top:75%}.embed-responsive-1by1:before{padding-top:100%}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-fill{flex:1 1 auto!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}@media (min-width:2px){.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}}@media (min-width:8px){.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}}@media (min-width:9px){.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}}@media (min-width:10px){.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:2px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:8px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:9px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:10px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:sticky!important}.fixed-top{top:0}.fixed-bottom,.fixed-top{left:0;position:fixed;right:0;z-index:1030}.fixed-bottom{bottom:0}@supports (position:sticky){.sticky-top{position:sticky;top:0;z-index:1020}}.sr-only{clip:rect(0,0,0,0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;overflow:visible;position:static;white-space:normal;width:auto}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:2px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:8px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:9px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:10px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.stretched-link:after{background-color:transparent;bottom:0;content:"";left:0;pointer-events:auto;position:absolute;right:0;top:0;z-index:1}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:2px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:8px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:9px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:10px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:600!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#8b5cf6!important}a.text-primary:focus,a.text-primary:hover{color:#5714f2!important}.text-secondary{color:#6b7280!important}a.text-secondary:focus,a.text-secondary:hover{color:#484d56!important}.text-success{color:#10b981!important}a.text-success:focus,a.text-success:hover{color:#0a7350!important}.text-info{color:#3b82f6!important}a.text-info:focus,a.text-info:hover{color:#0a59da!important}.text-warning{color:#f59e0b!important}a.text-warning:focus,a.text-warning:hover{color:#ac6f07!important}.text-danger{color:#ef4444!important}a.text-danger:focus,a.text-danger:hover{color:#d41212!important}.text-light{color:#f3f4f6!important}a.text-light:focus,a.text-light:hover{color:#c7ccd5!important}.text-dark{color:#1f2937!important}a.text-dark:focus,a.text-dark:hover{color:#030506!important}.text-body{color:#f3f4f6!important}.text-muted{color:#9ca3af!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:hsla(0,0%,100%,.5)!important}.text-hide{background-color:transparent;border:0;color:transparent;font:0/0 a;text-shadow:none}.text-decoration-none{text-decoration:none!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,:after,:before{box-shadow:none!important;text-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]:after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #6b7280}blockquote,img,pre,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}.container,body{min-width:9px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #d1d5db!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#374151}.table .thead-dark th{border-color:#374151;color:inherit}}body{padding-bottom:20px}.container{max-width:1440px}html{min-width:1140px}[v-cloak]{display:none}svg.icon{height:1rem;width:1rem}.header{border-bottom:1px solid #374151}.header .logo{color:#e5e7eb;text-decoration:none}.header .logo svg{height:2rem;width:2rem}.sidebar .nav-item a{border-radius:6px;color:#9ca3af;margin-bottom:4px;padding:.5rem .75rem}.sidebar .nav-item a svg{fill:#6b7280;height:1.25rem;margin-right:15px;width:1.25rem}.sidebar .nav-item a:hover{background-color:#1f2937;color:#d1d5db}.sidebar .nav-item a.active{background-color:#1f2937;color:#a78bfa}.sidebar .nav-item a.active svg{fill:#8b5cf6}.card{border:none;box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1)}.card .bottom-radius{border-bottom-left-radius:6px;border-bottom-right-radius:6px}.card .card-header{background-color:#374151;border-bottom:none;min-height:60px;padding-bottom:.7rem;padding-top:.7rem}.card .card-header .btn-group .btn{padding:.2rem .5rem}.card .card-header .form-control-with-icon{position:relative}.card .card-header .form-control-with-icon .icon-wrapper{jusify-content:center;align-items:center;bottom:0;display:flex;left:.75rem;position:absolute;top:0}.card .card-header .form-control-with-icon .icon-wrapper .icon{fill:#9ca3af}.card .card-header .form-control-with-icon .form-control{border-radius:9999px;font-size:.875rem;padding-left:2.25rem}.card .table td,.card .table th{padding:.75rem 1.25rem}.card .table.table-sm td,.card .table.table-sm th{padding:1rem 1.25rem}.card .table th{background-color:#1f2937;border-bottom:0;font-size:.875rem;padding:.5rem 1.25rem}.card .table:not(.table-borderless) td{border-top:1px solid #374151}.card .table.penultimate-column-right td:nth-last-child(2),.card .table.penultimate-column-right th:nth-last-child(2){text-align:right}.card .table td.table-fit,.card .table th.table-fit{white-space:nowrap;width:1%}.fill-text-color{fill:#f3f4f6}.fill-danger{fill:#ef4444}.fill-warning{fill:#f59e0b}.fill-info{fill:#3b82f6}.fill-success{fill:#10b981}.fill-primary{fill:#8b5cf6}button:hover .fill-primary{fill:#fff}.btn-outline-primary.active .fill-primary{fill:#111827}.btn-outline-primary:not(:disabled):not(.disabled).active:focus{box-shadow:none!important}.btn-muted{background:#1f2937;color:#9ca3af}.btn-muted:focus,.btn-muted:hover{background:#374151;color:#d1d5db}.btn-muted.active{background:#8b5cf6;color:#fff}.badge-secondary{background:#d1d5db;color:#374151}.badge-success{background:#10b981;color:#fff}.badge-info{background:#3b82f6;color:#fff}.badge-warning{background:#f59e0b;color:#fff}.badge-danger{background:#ef4444;color:#fff}.control-action svg{fill:#6b7280;height:1.2rem;width:1.2rem}.control-action svg:hover{fill:#a78bfa}.info-icon{fill:#6b7280}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.spin{animation:spin 2s linear infinite}.card .nav-pills{background:#374151}.card .nav-pills .nav-link{border-radius:0;color:#9ca3af;font-size:.9rem;padding:.75rem 1.25rem}.card .nav-pills .nav-link:focus,.card .nav-pills .nav-link:hover{color:#e5e7eb}.card .nav-pills .nav-link.active{background:none;border-bottom:2px solid #a78bfa;color:#a78bfa}.list-enter-active:not(.dontanimate){transition:background 1s linear}.list-enter:not(.dontanimate),.list-leave-to:not(.dontanimate){background:#4c1d95}.code-bg .list-enter:not(.dontanimate),.code-bg .list-leave-to:not(.dontanimate){background:#4b5563}.card table td{vertical-align:middle!important}.card-bg-secondary{background:#1f2937}.code-bg{background:#292d3e}.disabled-watcher{background:#ef4444;color:#fff;padding:.75rem}.badge-sm{font-size:.75rem} diff --git a/public/vendor/horizon/app.css b/public/vendor/horizon/app.css index 701833556..961bf475b 100644 --- a/public/vendor/horizon/app.css +++ b/public/vendor/horizon/app.css @@ -1,8 +1,8 @@ -@charset "UTF-8";.vjs-tree{font-family:Monaco,Menlo,Consolas,Bitstream Vera Sans Mono,monospace!important}.vjs-tree.is-root{position:relative}.vjs-tree .vjs-tree__content{padding-left:1em}.vjs-tree .vjs-tree__content.has-line{border-left:1px dotted hsla(0,0%,80%,.28)!important}.vjs-tree .vjs-tree__brackets{cursor:pointer}.vjs-tree .vjs-tree__brackets:hover{color:#20a0ff}.vjs-tree .vjs-value__boolean,.vjs-tree .vjs-value__null,.vjs-tree .vjs-value__number{color:#a291f5!important}.vjs-tree .vjs-value__string{color:#dacb4d!important} +@charset "UTF-8";.vjs-tree{font-family:Monaco,Menlo,Consolas,Bitstream Vera Sans Mono,monospace!important}.vjs-tree.is-root{position:relative}.vjs-tree .vjs-tree-node{display:flex;position:relative}.vjs-tree .vjs-tree-node .vjs-indent-unit.has-line{border-left:1px dotted hsla(0,0%,80%,.28)!important}.vjs-tree .vjs-tree-node.has-carets{padding-left:15px}.vjs-tree .vjs-tree-node .has-carets.has-selector,.vjs-tree .vjs-tree-node .has-selector{padding-left:30px}.vjs-tree .vjs-indent{display:flex;position:relative}.vjs-tree .vjs-indent-unit{width:1em}.vjs-tree .vjs-tree-brackets{cursor:pointer}.vjs-tree .vjs-tree-brackets:hover{color:#20a0ff}.vjs-tree .vjs-key{color:#c3cbd3!important;padding-right:10px}.vjs-tree .vjs-value-string{color:#c3e88d!important}.vjs-tree .vjs-value-boolean,.vjs-tree .vjs-value-null,.vjs-tree .vjs-value-number,.vjs-tree .vjs-value-undefined{color:#a291f5!important} /*! - * Bootstrap v4.6.0 (https://getbootstrap.com/) - * Copyright 2011-2021 The Bootstrap Authors - * Copyright 2011-2021 Twitter, Inc. + * Bootstrap v4.6.2 (https://getbootstrap.com/) + * Copyright 2011-2022 The Bootstrap Authors + * Copyright 2011-2022 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - */:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#7746ec;--secondary:#dae1e7;--success:#51d88a;--info:#bcdefa;--warning:#ffa260;--danger:#ef5753;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:2px;--breakpoint-md:8px;--breakpoint-lg:9px;--breakpoint-xl:10px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,:after,:before{box-sizing:border-box}html{-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0);font-family:sans-serif;line-height:1.15}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{background-color:#ebebeb;color:#212529;font-family:Nunito,sans-serif;font-size:.95rem;font-weight:400;line-height:1.5;margin:0;text-align:left}[tabindex="-1"]:focus:not(:focus-visible){outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;margin-top:0}p{margin-bottom:1rem;margin-top:0}abbr[data-original-title],abbr[title]{border-bottom:0;cursor:help;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{font-style:normal;line-height:inherit}address,dl,ol,ul{margin-bottom:1rem}dl,ol,ul{margin-top:0}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{background-color:transparent;color:#7746ec;text-decoration:none}a:hover{color:#4d15d0;text-decoration:underline}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}pre{-ms-overflow-style:scrollbar;margin-bottom:1rem;margin-top:0;overflow:auto}figure{margin:0 0 1rem}img{border-style:none}img,svg{vertical-align:middle}svg{overflow:hidden}table{border-collapse:collapse}caption{caption-side:bottom;color:#6c757d;padding-bottom:.75rem;padding-top:.75rem;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit;margin:0}button,input{overflow:visible}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}textarea{overflow:auto;resize:vertical}fieldset{border:0;margin:0;min-width:0;padding:0}legend{color:inherit;display:block;font-size:1.5rem;line-height:inherit;margin-bottom:.5rem;max-width:100%;padding:0;white-space:normal;width:100%}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:none;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}output{display:inline-block}summary{cursor:pointer;display:list-item}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-weight:500;line-height:1.2;margin-bottom:.5rem}.h1,h1{font-size:2.375rem}.h2,h2{font-size:1.9rem}.h3,h3{font-size:1.6625rem}.h4,h4{font-size:1.425rem}.h5,h5{font-size:1.1875rem}.h6,h6{font-size:.95rem}.lead{font-size:1.1875rem;font-weight:300}.display-1{font-size:6rem}.display-1,.display-2{font-weight:300;line-height:1.2}.display-2{font-size:5.5rem}.display-3{font-size:4.5rem}.display-3,.display-4{font-weight:300;line-height:1.2}.display-4{font-size:3.5rem}hr{border:0;border-top:1px solid rgba(0,0,0,.1);margin-bottom:1rem;margin-top:1rem}.small,small{font-size:80%;font-weight:400}.mark,mark{background-color:#fcf8e3;padding:.2em}.list-inline,.list-unstyled{list-style:none;padding-left:0}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{font-size:1.1875rem;margin-bottom:1rem}.blockquote-footer{color:#6c757d;display:block;font-size:80%}.blockquote-footer:before{content:"— "}.img-fluid,.img-thumbnail{height:auto;max-width:100%}.img-thumbnail{background-color:#ebebeb;border:1px solid #dee2e6;border-radius:.25rem;padding:.25rem}.figure{display:inline-block}.figure-img{line-height:1;margin-bottom:.5rem}.figure-caption{color:#6c757d;font-size:90%}code{word-wrap:break-word;color:#e83e8c;font-size:87.5%}a>code{color:inherit}kbd{background-color:#212529;border-radius:.2rem;color:#fff;font-size:87.5%;padding:.2rem .4rem}kbd kbd{font-size:100%;font-weight:700;padding:0}pre{color:#212529;display:block;font-size:87.5%}pre code{color:inherit;font-size:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px;width:100%}@media (min-width:2px){.container,.container-sm{max-width:1137px}}@media (min-width:8px){.container,.container-md,.container-sm{max-width:1138px}}@media (min-width:9px){.container,.container-lg,.container-md,.container-sm{max-width:1139px}}@media (min-width:10px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}.row{display:flex;flex-wrap:wrap;margin-left:-15px;margin-right:-15px}.no-gutters{margin-left:0;margin-right:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-left:0;padding-right:0}.col,.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col-auto,.col-lg,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-auto,.col-md,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md-auto,.col-sm,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-auto{padding-left:15px;padding-right:15px;position:relative;width:100%}.col{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-1>*{flex:0 0 100%;max-width:100%}.row-cols-2>*{flex:0 0 50%;max-width:50%}.row-cols-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-4>*{flex:0 0 25%;max-width:25%}.row-cols-5>*{flex:0 0 20%;max-width:20%}.row-cols-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-auto{flex:0 0 auto;max-width:100%;width:auto}.col-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-3{flex:0 0 25%;max-width:25%}.col-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-6{flex:0 0 50%;max-width:50%}.col-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-9{flex:0 0 75%;max-width:75%}.col-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-12{flex:0 0 100%;max-width:100%}.order-first{order:-1}.order-last{order:13}.order-0{order:0}.order-1{order:1}.order-2{order:2}.order-3{order:3}.order-4{order:4}.order-5{order:5}.order-6{order:6}.order-7{order:7}.order-8{order:8}.order-9{order:9}.order-10{order:10}.order-11{order:11}.order-12{order:12}.offset-1{margin-left:8.3333333333%}.offset-2{margin-left:16.6666666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.3333333333%}.offset-5{margin-left:41.6666666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.3333333333%}.offset-8{margin-left:66.6666666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.3333333333%}.offset-11{margin-left:91.6666666667%}@media (min-width:2px){.col-sm{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-sm-1>*{flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-sm-auto{flex:0 0 auto;max-width:100%;width:auto}.col-sm-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-sm-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-sm-3{flex:0 0 25%;max-width:25%}.col-sm-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-sm-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-sm-6{flex:0 0 50%;max-width:50%}.col-sm-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-sm-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-sm-9{flex:0 0 75%;max-width:75%}.col-sm-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-sm-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-sm-12{flex:0 0 100%;max-width:100%}.order-sm-first{order:-1}.order-sm-last{order:13}.order-sm-0{order:0}.order-sm-1{order:1}.order-sm-2{order:2}.order-sm-3{order:3}.order-sm-4{order:4}.order-sm-5{order:5}.order-sm-6{order:6}.order-sm-7{order:7}.order-sm-8{order:8}.order-sm-9{order:9}.order-sm-10{order:10}.order-sm-11{order:11}.order-sm-12{order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.3333333333%}.offset-sm-2{margin-left:16.6666666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.3333333333%}.offset-sm-5{margin-left:41.6666666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.3333333333%}.offset-sm-8{margin-left:66.6666666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.3333333333%}.offset-sm-11{margin-left:91.6666666667%}}@media (min-width:8px){.col-md{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-md-1>*{flex:0 0 100%;max-width:100%}.row-cols-md-2>*{flex:0 0 50%;max-width:50%}.row-cols-md-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-md-4>*{flex:0 0 25%;max-width:25%}.row-cols-md-5>*{flex:0 0 20%;max-width:20%}.row-cols-md-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-md-auto{flex:0 0 auto;max-width:100%;width:auto}.col-md-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-md-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-md-3{flex:0 0 25%;max-width:25%}.col-md-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-md-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-md-6{flex:0 0 50%;max-width:50%}.col-md-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-md-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-md-9{flex:0 0 75%;max-width:75%}.col-md-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-md-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-md-12{flex:0 0 100%;max-width:100%}.order-md-first{order:-1}.order-md-last{order:13}.order-md-0{order:0}.order-md-1{order:1}.order-md-2{order:2}.order-md-3{order:3}.order-md-4{order:4}.order-md-5{order:5}.order-md-6{order:6}.order-md-7{order:7}.order-md-8{order:8}.order-md-9{order:9}.order-md-10{order:10}.order-md-11{order:11}.order-md-12{order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.3333333333%}.offset-md-2{margin-left:16.6666666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.3333333333%}.offset-md-5{margin-left:41.6666666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.3333333333%}.offset-md-8{margin-left:66.6666666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.3333333333%}.offset-md-11{margin-left:91.6666666667%}}@media (min-width:9px){.col-lg{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-lg-1>*{flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-lg-auto{flex:0 0 auto;max-width:100%;width:auto}.col-lg-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-lg-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-lg-3{flex:0 0 25%;max-width:25%}.col-lg-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-lg-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-lg-6{flex:0 0 50%;max-width:50%}.col-lg-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-lg-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-lg-9{flex:0 0 75%;max-width:75%}.col-lg-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-lg-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-lg-12{flex:0 0 100%;max-width:100%}.order-lg-first{order:-1}.order-lg-last{order:13}.order-lg-0{order:0}.order-lg-1{order:1}.order-lg-2{order:2}.order-lg-3{order:3}.order-lg-4{order:4}.order-lg-5{order:5}.order-lg-6{order:6}.order-lg-7{order:7}.order-lg-8{order:8}.order-lg-9{order:9}.order-lg-10{order:10}.order-lg-11{order:11}.order-lg-12{order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.3333333333%}.offset-lg-2{margin-left:16.6666666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.3333333333%}.offset-lg-5{margin-left:41.6666666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.3333333333%}.offset-lg-8{margin-left:66.6666666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.3333333333%}.offset-lg-11{margin-left:91.6666666667%}}@media (min-width:10px){.col-xl{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-xl-1>*{flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-xl-auto{flex:0 0 auto;max-width:100%;width:auto}.col-xl-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-xl-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-xl-3{flex:0 0 25%;max-width:25%}.col-xl-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-xl-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-xl-6{flex:0 0 50%;max-width:50%}.col-xl-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-xl-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-xl-9{flex:0 0 75%;max-width:75%}.col-xl-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-xl-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-xl-12{flex:0 0 100%;max-width:100%}.order-xl-first{order:-1}.order-xl-last{order:13}.order-xl-0{order:0}.order-xl-1{order:1}.order-xl-2{order:2}.order-xl-3{order:3}.order-xl-4{order:4}.order-xl-5{order:5}.order-xl-6{order:6}.order-xl-7{order:7}.order-xl-8{order:8}.order-xl-9{order:9}.order-xl-10{order:10}.order-xl-11{order:11}.order-xl-12{order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.3333333333%}.offset-xl-2{margin-left:16.6666666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.3333333333%}.offset-xl-5{margin-left:41.6666666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.3333333333%}.offset-xl-8{margin-left:66.6666666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.3333333333%}.offset-xl-11{margin-left:91.6666666667%}}.table{color:#212529;margin-bottom:1rem;width:100%}.table td,.table th{border-top:1px solid #efefef;padding:.75rem;vertical-align:top}.table thead th{border-bottom:2px solid #efefef;vertical-align:bottom}.table tbody+tbody{border-top:2px solid #efefef}.table-sm td,.table-sm th{padding:.3rem}.table-bordered,.table-bordered td,.table-bordered th{border:1px solid #efefef}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{background-color:#f1f7fa;color:#212529}.table-primary,.table-primary>td,.table-primary>th{background-color:#d9cbfa}.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#b89ff5}.table-hover .table-primary:hover,.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#c8b4f8}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#f5f7f8}.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#eceff3}.table-hover .table-secondary:hover,.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#e6ebee}.table-success,.table-success>td,.table-success>th{background-color:#cef4de}.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#a5ebc2}.table-hover .table-success:hover,.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b9efd0}.table-info,.table-info>td,.table-info>th{background-color:#ecf6fe}.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#dceefc}.table-hover .table-info:hover,.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#d4ebfd}.table-warning,.table-warning>td,.table-warning>th{background-color:#ffe5d2}.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#ffcfac}.table-hover .table-warning:hover,.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffd6b9}.table-danger,.table-danger>td,.table-danger>th{background-color:#fbd0cf}.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#f7a8a6}.table-hover .table-danger:hover,.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f9b9b7}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#fbfcfc}.table-hover .table-light:hover,.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#c6c8ca}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#95999c}.table-hover .table-dark:hover,.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>td,.table-active>th{background-color:#f1f7fa}.table-hover .table-active:hover,.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:#deecf3}.table .thead-dark th{background-color:#343a40;border-color:#454d55;color:#fff}.table .thead-light th{background-color:#e9ecef;border-color:#efefef;color:#495057}.table-dark{background-color:#343a40;color:#fff}.table-dark td,.table-dark th,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:hsla(0,0%,100%,.05)}.table-dark.table-hover tbody tr:hover{background-color:hsla(0,0%,100%,.075);color:#fff}@media (max-width:1.98px){.table-responsive-sm{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:7.98px){.table-responsive-md{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive-md>.table-bordered{border:0}}@media (max-width:8.98px){.table-responsive-lg{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:9.98px){.table-responsive-xl{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive>.table-bordered{border:0}.form-control{background-clip:padding-box;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem;color:#495057;display:block;font-size:.95rem;font-weight:400;height:calc(1.5em + .75rem + 2px);line-height:1.5;padding:.375rem .75rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:100%}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.form-control:focus{background-color:#fff;border-color:#ccbaf8;box-shadow:0 0 0 .2rem rgba(119,70,236,.25);color:#495057;outline:0}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none}select.form-control:focus::-ms-value{background-color:#fff;color:#495057}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{font-size:inherit;line-height:1.5;margin-bottom:0;padding-bottom:calc(.375rem + 1px);padding-top:calc(.375rem + 1px)}.col-form-label-lg{font-size:1.1875rem;line-height:1.5;padding-bottom:calc(.5rem + 1px);padding-top:calc(.5rem + 1px)}.col-form-label-sm{font-size:.83125rem;line-height:1.5;padding-bottom:calc(.25rem + 1px);padding-top:calc(.25rem + 1px)}.form-control-plaintext{background-color:transparent;border:solid transparent;border-width:1px 0;color:#212529;display:block;font-size:.95rem;line-height:1.5;margin-bottom:0;padding:.375rem 0;width:100%}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-left:0;padding-right:0}.form-control-sm{border-radius:.2rem;font-size:.83125rem;height:calc(1.5em + .5rem + 2px);line-height:1.5;padding:.25rem .5rem}.form-control-lg{border-radius:.3rem;font-size:1.1875rem;height:calc(1.5em + 1rem + 2px);line-height:1.5;padding:.5rem 1rem}select.form-control[multiple],select.form-control[size],textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:flex;flex-wrap:wrap;margin-left:-5px;margin-right:-5px}.form-row>.col,.form-row>[class*=col-]{padding-left:5px;padding-right:5px}.form-check{display:block;padding-left:1.25rem;position:relative}.form-check-input{margin-left:-1.25rem;margin-top:.3rem;position:absolute}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{align-items:center;display:inline-flex;margin-right:.75rem;padding-left:0}.form-check-inline .form-check-input{margin-left:0;margin-right:.3125rem;margin-top:0;position:static}.valid-feedback{color:#51d88a;display:none;font-size:80%;margin-top:.25rem;width:100%}.valid-tooltip{background-color:rgba(81,216,138,.9);border-radius:.25rem;color:#212529;display:none;font-size:.83125rem;left:0;line-height:1.5;margin-top:.1rem;max-width:100%;padding:.25rem .5rem;position:absolute;top:100%;z-index:5}.form-row>.col>.valid-tooltip,.form-row>[class*=col-]>.valid-tooltip{left:5px}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%2351d88a' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");background-position:right calc(.375em + .1875rem) center;background-repeat:no-repeat;background-size:calc(.75em + .375rem) calc(.75em + .375rem);border-color:#51d88a;padding-right:calc(1.5em + .75rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#51d88a;box-shadow:0 0 0 .2rem rgba(81,216,138,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem);padding-right:calc(1.5em + .75rem)}.custom-select.is-valid,.was-validated .custom-select:valid{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23343a40' d='M2 0 0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat,#fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%2351d88a' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat;border-color:#51d88a;padding-right:calc(.75em + 2.3125rem)}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#51d88a;box-shadow:0 0 0 .2rem rgba(81,216,138,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#51d88a}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#51d88a}.custom-control-input.is-valid~.custom-control-label:before,.was-validated .custom-control-input:valid~.custom-control-label:before{border-color:#51d88a}.custom-control-input.is-valid:checked~.custom-control-label:before,.was-validated .custom-control-input:valid:checked~.custom-control-label:before{background-color:#7be1a6;border-color:#7be1a6}.custom-control-input.is-valid:focus~.custom-control-label:before,.was-validated .custom-control-input:valid:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(81,216,138,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label:before{border-color:#51d88a}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#51d88a}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#51d88a;box-shadow:0 0 0 .2rem rgba(81,216,138,.25)}.invalid-feedback{color:#ef5753;display:none;font-size:80%;margin-top:.25rem;width:100%}.invalid-tooltip{background-color:rgba(239,87,83,.9);border-radius:.25rem;color:#fff;display:none;font-size:.83125rem;left:0;line-height:1.5;margin-top:.1rem;max-width:100%;padding:.25rem .5rem;position:absolute;top:100%;z-index:5}.form-row>.col>.invalid-tooltip,.form-row>[class*=col-]>.invalid-tooltip{left:5px}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23ef5753'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23ef5753' stroke='none'/%3E%3C/svg%3E");background-position:right calc(.375em + .1875rem) center;background-repeat:no-repeat;background-size:calc(.75em + .375rem) calc(.75em + .375rem);border-color:#ef5753;padding-right:calc(1.5em + .75rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#ef5753;box-shadow:0 0 0 .2rem rgba(239,87,83,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem);padding-right:calc(1.5em + .75rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23343a40' d='M2 0 0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat,#fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23ef5753'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23ef5753' stroke='none'/%3E%3C/svg%3E") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat;border-color:#ef5753;padding-right:calc(.75em + 2.3125rem)}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#ef5753;box-shadow:0 0 0 .2rem rgba(239,87,83,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#ef5753}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#ef5753}.custom-control-input.is-invalid~.custom-control-label:before,.was-validated .custom-control-input:invalid~.custom-control-label:before{border-color:#ef5753}.custom-control-input.is-invalid:checked~.custom-control-label:before,.was-validated .custom-control-input:invalid:checked~.custom-control-label:before{background-color:#f38582;border-color:#f38582}.custom-control-input.is-invalid:focus~.custom-control-label:before,.was-validated .custom-control-input:invalid:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(239,87,83,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label:before{border-color:#ef5753}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#ef5753}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#ef5753;box-shadow:0 0 0 .2rem rgba(239,87,83,.25)}.form-inline{align-items:center;display:flex;flex-flow:row wrap}.form-inline .form-check{width:100%}@media (min-width:2px){.form-inline label{justify-content:center}.form-inline .form-group,.form-inline label{align-items:center;display:flex;margin-bottom:0}.form-inline .form-group{flex:0 0 auto;flex-flow:row wrap}.form-inline .form-control{display:inline-block;vertical-align:middle;width:auto}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{align-items:center;display:flex;justify-content:center;padding-left:0;width:auto}.form-inline .form-check-input{flex-shrink:0;margin-left:0;margin-right:.25rem;margin-top:0;position:relative}.form-inline .custom-control{align-items:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{background-color:transparent;border:1px solid transparent;border-radius:.25rem;color:#212529;display:inline-block;font-size:.95rem;font-weight:400;line-height:1.5;padding:.375rem .75rem;text-align:center;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529;text-decoration:none}.btn.focus,.btn:focus{box-shadow:0 0 0 .2rem rgba(119,70,236,.25);outline:0}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{background-color:#7746ec;border-color:#7746ec;color:#fff}.btn-primary.focus,.btn-primary:focus,.btn-primary:hover{background-color:#5e23e8;border-color:#5518e7;color:#fff}.btn-primary.focus,.btn-primary:focus{box-shadow:0 0 0 0 rgba(139,98,239,.5)}.btn-primary.disabled,.btn-primary:disabled{background-color:#7746ec;border-color:#7746ec;color:#fff}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{background-color:#5518e7;border-color:#5117dc;color:#fff}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(139,98,239,.5)}.btn-secondary{background-color:#dae1e7;border-color:#dae1e7;color:#212529}.btn-secondary.focus,.btn-secondary:focus,.btn-secondary:hover{background-color:#c3ced8;border-color:#bbc8d3;color:#212529}.btn-secondary.focus,.btn-secondary:focus{box-shadow:0 0 0 0 rgba(190,197,203,.5)}.btn-secondary.disabled,.btn-secondary:disabled{background-color:#dae1e7;border-color:#dae1e7;color:#212529}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{background-color:#bbc8d3;border-color:#b3c2ce;color:#212529}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(190,197,203,.5)}.btn-success{background-color:#51d88a;border-color:#51d88a;color:#212529}.btn-success.focus,.btn-success:focus,.btn-success:hover{background-color:#32d175;border-color:#2dc96f;color:#212529}.btn-success.focus,.btn-success:focus{box-shadow:0 0 0 0 rgba(74,189,123,.5)}.btn-success.disabled,.btn-success:disabled{background-color:#51d88a;border-color:#51d88a;color:#212529}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{background-color:#2dc96f;border-color:#2bbf69;color:#fff}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(74,189,123,.5)}.btn-info{background-color:#bcdefa;border-color:#bcdefa;color:#212529}.btn-info.focus,.btn-info:focus,.btn-info:hover{background-color:#98ccf7;border-color:#8dc7f6;color:#212529}.btn-info.focus,.btn-info:focus{box-shadow:0 0 0 0 rgba(165,194,219,.5)}.btn-info.disabled,.btn-info:disabled{background-color:#bcdefa;border-color:#bcdefa;color:#212529}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{background-color:#8dc7f6;border-color:#81c1f6;color:#212529}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(165,194,219,.5)}.btn-warning{background-color:#ffa260;border-color:#ffa260;color:#212529}.btn-warning.focus,.btn-warning:focus,.btn-warning:hover{background-color:#ff8c3a;border-color:#ff842d;color:#212529}.btn-warning.focus,.btn-warning:focus{box-shadow:0 0 0 0 rgba(222,143,88,.5)}.btn-warning.disabled,.btn-warning:disabled{background-color:#ffa260;border-color:#ffa260;color:#212529}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{background-color:#ff842d;border-color:#ff7d20;color:#212529}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(222,143,88,.5)}.btn-danger{background-color:#ef5753;border-color:#ef5753;color:#fff}.btn-danger.focus,.btn-danger:focus,.btn-danger:hover{background-color:#ec3530;border-color:#eb2924;color:#fff}.btn-danger.focus,.btn-danger:focus{box-shadow:0 0 0 0 hsla(1,82%,69%,.5)}.btn-danger.disabled,.btn-danger:disabled{background-color:#ef5753;border-color:#ef5753;color:#fff}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{background-color:#eb2924;border-color:#ea1e19;color:#fff}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 0 hsla(1,82%,69%,.5)}.btn-light{background-color:#f8f9fa;border-color:#f8f9fa;color:#212529}.btn-light.focus,.btn-light:focus,.btn-light:hover{background-color:#e2e6ea;border-color:#dae0e5;color:#212529}.btn-light.focus,.btn-light:focus{box-shadow:0 0 0 0 hsla(220,4%,85%,.5)}.btn-light.disabled,.btn-light:disabled{background-color:#f8f9fa;border-color:#f8f9fa;color:#212529}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{background-color:#dae0e5;border-color:#d3d9df;color:#212529}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 0 hsla(220,4%,85%,.5)}.btn-dark{background-color:#343a40;border-color:#343a40;color:#fff}.btn-dark.focus,.btn-dark:focus,.btn-dark:hover{background-color:#23272b;border-color:#1d2124;color:#fff}.btn-dark.focus,.btn-dark:focus{box-shadow:0 0 0 0 rgba(82,88,93,.5)}.btn-dark.disabled,.btn-dark:disabled{background-color:#343a40;border-color:#343a40;color:#fff}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{background-color:#1d2124;border-color:#171a1d;color:#fff}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(82,88,93,.5)}.btn-outline-primary{border-color:#7746ec;color:#7746ec}.btn-outline-primary:hover{background-color:#7746ec;border-color:#7746ec;color:#fff}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 0 rgba(119,70,236,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{background-color:transparent;color:#7746ec}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{background-color:#7746ec;border-color:#7746ec;color:#fff}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(119,70,236,.5)}.btn-outline-secondary{border-color:#dae1e7;color:#dae1e7}.btn-outline-secondary:hover{background-color:#dae1e7;border-color:#dae1e7;color:#212529}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 0 rgba(218,225,231,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{background-color:transparent;color:#dae1e7}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{background-color:#dae1e7;border-color:#dae1e7;color:#212529}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(218,225,231,.5)}.btn-outline-success{border-color:#51d88a;color:#51d88a}.btn-outline-success:hover{background-color:#51d88a;border-color:#51d88a;color:#212529}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 0 rgba(81,216,138,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{background-color:transparent;color:#51d88a}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{background-color:#51d88a;border-color:#51d88a;color:#212529}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(81,216,138,.5)}.btn-outline-info{border-color:#bcdefa;color:#bcdefa}.btn-outline-info:hover{background-color:#bcdefa;border-color:#bcdefa;color:#212529}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 0 rgba(188,222,250,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{background-color:transparent;color:#bcdefa}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{background-color:#bcdefa;border-color:#bcdefa;color:#212529}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(188,222,250,.5)}.btn-outline-warning{border-color:#ffa260;color:#ffa260}.btn-outline-warning:hover{background-color:#ffa260;border-color:#ffa260;color:#212529}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 0 rgba(255,162,96,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{background-color:transparent;color:#ffa260}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{background-color:#ffa260;border-color:#ffa260;color:#212529}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(255,162,96,.5)}.btn-outline-danger{border-color:#ef5753;color:#ef5753}.btn-outline-danger:hover{background-color:#ef5753;border-color:#ef5753;color:#fff}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 0 rgba(239,87,83,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{background-color:transparent;color:#ef5753}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{background-color:#ef5753;border-color:#ef5753;color:#fff}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(239,87,83,.5)}.btn-outline-light{border-color:#f8f9fa;color:#f8f9fa}.btn-outline-light:hover{background-color:#f8f9fa;border-color:#f8f9fa;color:#212529}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 0 rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{background-color:transparent;color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{background-color:#f8f9fa;border-color:#f8f9fa;color:#212529}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(248,249,250,.5)}.btn-outline-dark{border-color:#343a40;color:#343a40}.btn-outline-dark:hover{background-color:#343a40;border-color:#343a40;color:#fff}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 0 rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{background-color:transparent;color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{background-color:#343a40;border-color:#343a40;color:#fff}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(52,58,64,.5)}.btn-link{color:#7746ec;font-weight:400;text-decoration:none}.btn-link:hover{color:#4d15d0}.btn-link.focus,.btn-link:focus,.btn-link:hover{text-decoration:underline}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-group-lg>.btn,.btn-lg{border-radius:.3rem;font-size:1.1875rem;line-height:1.5;padding:.5rem 1rem}.btn-group-sm>.btn,.btn-sm{border-radius:.2rem;font-size:.83125rem;line-height:1.5;padding:.25rem .5rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;position:relative;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle:after{border-bottom:0;border-left:.3em solid transparent;border-right:.3em solid transparent;border-top:.3em solid;content:"";display:inline-block;margin-left:.255em;vertical-align:.255em}.dropdown-toggle:empty:after{margin-left:0}.dropdown-menu{background-clip:padding-box;background-color:#fff;border:1px solid rgba(0,0,0,.15);border-radius:.25rem;color:#212529;display:none;float:left;font-size:.95rem;left:0;list-style:none;margin:.125rem 0 0;min-width:10rem;padding:.5rem 0;position:absolute;text-align:left;top:100%;z-index:1000}.dropdown-menu-left{left:0;right:auto}.dropdown-menu-right{left:auto;right:0}@media (min-width:2px){.dropdown-menu-sm-left{left:0;right:auto}.dropdown-menu-sm-right{left:auto;right:0}}@media (min-width:8px){.dropdown-menu-md-left{left:0;right:auto}.dropdown-menu-md-right{left:auto;right:0}}@media (min-width:9px){.dropdown-menu-lg-left{left:0;right:auto}.dropdown-menu-lg-right{left:auto;right:0}}@media (min-width:10px){.dropdown-menu-xl-left{left:0;right:auto}.dropdown-menu-xl-right{left:auto;right:0}}.dropup .dropdown-menu{bottom:100%;margin-bottom:.125rem;margin-top:0;top:auto}.dropup .dropdown-toggle:after{border-bottom:.3em solid;border-left:.3em solid transparent;border-right:.3em solid transparent;border-top:0;content:"";display:inline-block;margin-left:.255em;vertical-align:.255em}.dropup .dropdown-toggle:empty:after{margin-left:0}.dropright .dropdown-menu{left:100%;margin-left:.125rem;margin-top:0;right:auto;top:0}.dropright .dropdown-toggle:after{border-bottom:.3em solid transparent;border-left:.3em solid;border-right:0;border-top:.3em solid transparent;content:"";display:inline-block;margin-left:.255em;vertical-align:.255em}.dropright .dropdown-toggle:empty:after{margin-left:0}.dropright .dropdown-toggle:after{vertical-align:0}.dropleft .dropdown-menu{left:auto;margin-right:.125rem;margin-top:0;right:100%;top:0}.dropleft .dropdown-toggle:after{content:"";display:inline-block;display:none;margin-left:.255em;vertical-align:.255em}.dropleft .dropdown-toggle:before{border-bottom:.3em solid transparent;border-right:.3em solid;border-top:.3em solid transparent;content:"";display:inline-block;margin-right:.255em;vertical-align:.255em}.dropleft .dropdown-toggle:empty:after{margin-left:0}.dropleft .dropdown-toggle:before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{bottom:auto;right:auto}.dropdown-divider{border-top:1px solid #e9ecef;height:0;margin:.5rem 0;overflow:hidden}.dropdown-item{background-color:transparent;border:0;clear:both;color:#212529;display:block;font-weight:400;padding:.25rem 1.5rem;text-align:inherit;white-space:nowrap;width:100%}.dropdown-item:focus,.dropdown-item:hover{background-color:#e9ecef;color:#16181b;text-decoration:none}.dropdown-item.active,.dropdown-item:active{background-color:#7746ec;color:#fff;text-decoration:none}.dropdown-item.disabled,.dropdown-item:disabled{background-color:transparent;color:#adb5bd;pointer-events:none}.dropdown-menu.show{display:block}.dropdown-header{color:#6c757d;display:block;font-size:.83125rem;margin-bottom:0;padding:.5rem 1.5rem;white-space:nowrap}.dropdown-item-text{color:#212529;display:block;padding:.25rem 1.5rem}.btn-group,.btn-group-vertical{display:inline-flex;position:relative;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{flex:1 1 auto;position:relative}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.dropdown-toggle-split{padding-left:.5625rem;padding-right:.5625rem}.dropdown-toggle-split:after,.dropright .dropdown-toggle-split:after,.dropup .dropdown-toggle-split:after{margin-left:0}.dropleft .dropdown-toggle-split:before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-left:.375rem;padding-right:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-left:.75rem;padding-right:.75rem}.btn-group-vertical{align-items:flex-start;flex-direction:column;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-left-radius:0;border-bottom-right-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio],.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio]{clip:rect(0,0,0,0);pointer-events:none;position:absolute}.input-group{align-items:stretch;display:flex;flex-wrap:wrap;position:relative;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{flex:1 1 auto;margin-bottom:0;min-width:0;position:relative;width:1%}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.input-group>.custom-file{align-items:center;display:flex}.input-group>.custom-file:not(:first-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label{border-bottom-left-radius:0;border-top-left-radius:0}.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label:after,.input-group.has-validation>.custom-select:nth-last-child(n+3),.input-group.has-validation>.form-control:nth-last-child(n+3),.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label:after,.input-group:not(.has-validation)>.custom-select:not(:last-child),.input-group:not(.has-validation)>.form-control:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.input-group-append,.input-group-prepend{display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{align-items:center;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem;color:#495057;display:flex;font-size:.95rem;font-weight:400;line-height:1.5;margin-bottom:0;padding:.375rem .75rem;text-align:center;white-space:nowrap}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{border-radius:.3rem;font-size:1.1875rem;line-height:1.5;padding:.5rem 1rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + .5rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{border-radius:.2rem;font-size:.83125rem;line-height:1.5;padding:.25rem .5rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-bottom-right-radius:0;border-top-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-bottom-left-radius:0;border-top-left-radius:0}.custom-control{-webkit-print-color-adjust:exact;color-adjust:exact;display:block;min-height:1.425rem;padding-left:1.5rem;position:relative;z-index:1}.custom-control-inline{display:inline-flex;margin-right:1rem}.custom-control-input{height:1.2125rem;left:0;opacity:0;position:absolute;width:1rem;z-index:-1}.custom-control-input:checked~.custom-control-label:before{background-color:#7746ec;border-color:#7746ec;color:#fff}.custom-control-input:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(119,70,236,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label:before{border-color:#ccbaf8}.custom-control-input:not(:disabled):active~.custom-control-label:before{background-color:#eee8fd;border-color:#eee8fd;color:#fff}.custom-control-input:disabled~.custom-control-label,.custom-control-input[disabled]~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label:before,.custom-control-input[disabled]~.custom-control-label:before{background-color:#e9ecef}.custom-control-label{margin-bottom:0;position:relative;vertical-align:top}.custom-control-label:before{background-color:#fff;border:1px solid #adb5bd;pointer-events:none}.custom-control-label:after,.custom-control-label:before{content:"";display:block;height:1rem;left:-1.5rem;position:absolute;top:.2125rem;width:1rem}.custom-control-label:after{background:50%/50% 50% no-repeat}.custom-checkbox .custom-control-label:before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%23fff' d='m6.564.75-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label:before{background-color:#7746ec;border-color:#7746ec}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(119,70,236,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label:before{background-color:rgba(119,70,236,.5)}.custom-radio .custom-control-label:before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(119,70,236,.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label:before{border-radius:.5rem;left:-2.25rem;pointer-events:all;width:1.75rem}.custom-switch .custom-control-label:after{background-color:#adb5bd;border-radius:.5rem;height:calc(1rem - 4px);left:calc(-2.25rem + 2px);top:calc(.2125rem + 2px);transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:calc(1rem - 4px)}@media (prefers-reduced-motion:reduce){.custom-switch .custom-control-label:after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label:after{background-color:#fff;transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(119,70,236,.5)}.custom-select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:#fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23343a40' d='M2 0 0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat;border:1px solid #ced4da;border-radius:.25rem;color:#495057;display:inline-block;font-size:.95rem;font-weight:400;height:calc(1.5em + .75rem + 2px);line-height:1.5;padding:.375rem 1.75rem .375rem .75rem;vertical-align:middle;width:100%}.custom-select:focus{border-color:#ccbaf8;box-shadow:0 0 0 .2rem rgba(119,70,236,.25);outline:0}.custom-select:focus::-ms-value{background-color:#fff;color:#495057}.custom-select[multiple],.custom-select[size]:not([size="1"]){background-image:none;height:auto;padding-right:.75rem}.custom-select:disabled{background-color:#e9ecef;color:#6c757d}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.custom-select-sm{font-size:.83125rem;height:calc(1.5em + .5rem + 2px);padding-bottom:.25rem;padding-left:.5rem;padding-top:.25rem}.custom-select-lg{font-size:1.1875rem;height:calc(1.5em + 1rem + 2px);padding-bottom:.5rem;padding-left:1rem;padding-top:.5rem}.custom-file{display:inline-block;margin-bottom:0}.custom-file,.custom-file-input{height:calc(1.5em + .75rem + 2px);position:relative;width:100%}.custom-file-input{margin:0;opacity:0;overflow:hidden;z-index:2}.custom-file-input:focus~.custom-file-label{border-color:#ccbaf8;box-shadow:0 0 0 .2rem rgba(119,70,236,.25)}.custom-file-input:disabled~.custom-file-label,.custom-file-input[disabled]~.custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en)~.custom-file-label:after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]:after{content:attr(data-browse)}.custom-file-label{background-color:#fff;border:1px solid #ced4da;border-radius:.25rem;font-weight:400;height:calc(1.5em + .75rem + 2px);left:0;overflow:hidden;z-index:1}.custom-file-label,.custom-file-label:after{color:#495057;line-height:1.5;padding:.375rem .75rem;position:absolute;right:0;top:0}.custom-file-label:after{background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 0;bottom:0;content:"Browse";display:block;height:calc(1.5em + .75rem);z-index:3}.custom-range{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;height:1.4rem;padding:0;width:100%}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #ebebeb,0 0 0 .2rem rgba(119,70,236,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #ebebeb,0 0 0 .2rem rgba(119,70,236,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #ebebeb,0 0 0 .2rem rgba(119,70,236,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;background-color:#7746ec;border:0;border-radius:1rem;height:1rem;margin-top:-.25rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:1rem}@media (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#eee8fd}.custom-range::-webkit-slider-runnable-track{background-color:#dee2e6;border-color:transparent;border-radius:1rem;color:transparent;cursor:pointer;height:.5rem;width:100%}.custom-range::-moz-range-thumb{-moz-appearance:none;appearance:none;background-color:#7746ec;border:0;border-radius:1rem;height:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:1rem}@media (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{-moz-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background-color:#eee8fd}.custom-range::-moz-range-track{background-color:#dee2e6;border-color:transparent;border-radius:1rem;color:transparent;cursor:pointer;height:.5rem;width:100%}.custom-range::-ms-thumb{appearance:none;background-color:#7746ec;border:0;border-radius:1rem;height:1rem;margin-left:.2rem;margin-right:.2rem;margin-top:0;-ms-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:1rem}@media (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{-ms-transition:none;transition:none}}.custom-range::-ms-thumb:active{background-color:#eee8fd}.custom-range::-ms-track{background-color:transparent;border-color:transparent;border-width:.5rem;color:transparent;cursor:pointer;height:.5rem;width:100%}.custom-range::-ms-fill-lower,.custom-range::-ms-fill-upper{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label:before,.custom-file-label,.custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-control-label:before,.custom-file-label,.custom-select{transition:none}}.nav{display:flex;flex-wrap:wrap;list-style:none;margin-bottom:0;padding-left:0}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d;cursor:default;pointer-events:none}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem;margin-bottom:-1px}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{background-color:transparent;border-color:transparent;color:#6c757d}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{background-color:#ebebeb;border-color:#dee2e6 #dee2e6 #ebebeb;color:#495057}.nav-tabs .dropdown-menu{border-top-left-radius:0;border-top-right-radius:0;margin-top:-1px}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{background-color:#7746ec;color:#fff}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{padding:.5rem 1rem;position:relative}.navbar,.navbar .container,.navbar .container-fluid,.navbar .container-lg,.navbar .container-md,.navbar .container-sm,.navbar .container-xl{align-items:center;display:flex;flex-wrap:wrap;justify-content:space-between}.navbar-brand{display:inline-block;font-size:1.1875rem;line-height:inherit;margin-right:1rem;padding-bottom:.321875rem;padding-top:.321875rem;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:flex;flex-direction:column;list-style:none;margin-bottom:0;padding-left:0}.navbar-nav .nav-link{padding-left:0;padding-right:0}.navbar-nav .dropdown-menu{float:none;position:static}.navbar-text{display:inline-block;padding-bottom:.5rem;padding-top:.5rem}.navbar-collapse{align-items:center;flex-basis:100%;flex-grow:1}.navbar-toggler{background-color:transparent;border:1px solid transparent;border-radius:.25rem;font-size:1.1875rem;line-height:1;padding:.25rem .75rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler-icon{background:50%/100% 100% no-repeat;content:"";display:inline-block;height:1.5em;vertical-align:middle;width:1.5em}.navbar-nav-scroll{max-height:75vh;overflow-y:auto}@media (max-width:1.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{padding-left:0;padding-right:0}}@media (min-width:2px){.navbar-expand-sm{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{flex-wrap:nowrap}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:7.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{padding-left:0;padding-right:0}}@media (min-width:8px){.navbar-expand-md{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{flex-wrap:nowrap}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width:8.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{padding-left:0;padding-right:0}}@media (min-width:9px){.navbar-expand-lg{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{flex-wrap:nowrap}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:9.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{padding-left:0;padding-right:0}}@media (min-width:10px){.navbar-expand-xl{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{flex-wrap:nowrap}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{padding-left:0;padding-right:0}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{flex-wrap:nowrap}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand,.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{border-color:rgba(0,0,0,.1);color:rgba(0,0,0,.5)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand,.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:hsla(0,0%,100%,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:hsla(0,0%,100%,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:hsla(0,0%,100%,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{border-color:hsla(0,0%,100%,.1);color:hsla(0,0%,100%,.5)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-dark .navbar-text{color:hsla(0,0%,100%,.5)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{word-wrap:break-word;background-clip:border-box;background-color:#fff;border:1px solid rgba(0,0,0,.125);border-radius:.25rem;display:flex;flex-direction:column;min-width:0;position:relative}.card>hr{margin-left:0;margin-right:0}.card>.list-group{border-bottom:inherit;border-top:inherit}.card>.list-group:first-child{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px);border-top-width:0}.card>.list-group:last-child{border-bottom-left-radius:calc(.25rem - 1px);border-bottom-right-radius:calc(.25rem - 1px);border-bottom-width:0}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;min-height:1px;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem}.card-subtitle,.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{background-color:#fff;border-bottom:1px solid rgba(0,0,0,.125);margin-bottom:0;padding:.75rem 1.25rem}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-footer{background-color:#fff;border-top:1px solid rgba(0,0,0,.125);padding:.75rem 1.25rem}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{border-bottom:0;margin-bottom:-.75rem}.card-header-pills,.card-header-tabs{margin-left:-.625rem;margin-right:-.625rem}.card-img-overlay{border-radius:calc(.25rem - 1px);bottom:0;left:0;padding:1.25rem;position:absolute;right:0;top:0}.card-img,.card-img-bottom,.card-img-top{flex-shrink:0;width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-left-radius:calc(.25rem - 1px);border-bottom-right-radius:calc(.25rem - 1px)}.card-deck .card{margin-bottom:15px}@media (min-width:2px){.card-deck{display:flex;flex-flow:row wrap;margin-left:-15px;margin-right:-15px}.card-deck .card{flex:1 0 0%;margin-bottom:0;margin-left:15px;margin-right:15px}}.card-group>.card{margin-bottom:15px}@media (min-width:2px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{border-left:0;margin-left:0}.card-group>.card:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width:2px){.card-columns{-moz-column-count:3;column-count:3;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion{overflow-anchor:none}.accordion>.card{overflow:hidden}.accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-left-radius:0;border-bottom-right-radius:0}.accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.breadcrumb{background-color:#e9ecef;border-radius:.25rem;display:flex;flex-wrap:wrap;list-style:none;margin-bottom:1rem;padding:.75rem 1rem}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item:before{color:#6c757d;content:"/";float:left;padding-right:.5rem}.breadcrumb-item+.breadcrumb-item:hover:before{text-decoration:underline;text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{border-radius:.25rem;display:flex;list-style:none;padding-left:0}.page-link{background-color:#fff;border:1px solid #dee2e6;color:#7746ec;display:block;line-height:1.25;margin-left:-1px;padding:.5rem .75rem;position:relative}.page-link:hover{background-color:#e9ecef;border-color:#dee2e6;color:#4d15d0;text-decoration:none;z-index:2}.page-link:focus{box-shadow:0 0 0 .2rem rgba(119,70,236,.25);outline:0;z-index:3}.page-item:first-child .page-link{border-bottom-left-radius:.25rem;border-top-left-radius:.25rem;margin-left:0}.page-item:last-child .page-link{border-bottom-right-radius:.25rem;border-top-right-radius:.25rem}.page-item.active .page-link{background-color:#7746ec;border-color:#7746ec;color:#fff;z-index:3}.page-item.disabled .page-link{background-color:#fff;border-color:#dee2e6;color:#6c757d;cursor:auto;pointer-events:none}.pagination-lg .page-link{font-size:1.1875rem;line-height:1.5;padding:.75rem 1.5rem}.pagination-lg .page-item:first-child .page-link{border-bottom-left-radius:.3rem;border-top-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-bottom-right-radius:.3rem;border-top-right-radius:.3rem}.pagination-sm .page-link{font-size:.83125rem;line-height:1.5;padding:.25rem .5rem}.pagination-sm .page-item:first-child .page-link{border-bottom-left-radius:.2rem;border-top-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-bottom-right-radius:.2rem;border-top-right-radius:.2rem}.badge{border-radius:.25rem;display:inline-block;font-size:.95rem;font-weight:700;line-height:1;padding:.25em .4em;text-align:center;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;vertical-align:baseline;white-space:nowrap}@media (prefers-reduced-motion:reduce){.badge{transition:none}}a.badge:focus,a.badge:hover{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{border-radius:10rem;padding-left:.6em;padding-right:.6em}.badge-primary{background-color:#7746ec;color:#fff}a.badge-primary:focus,a.badge-primary:hover{background-color:#5518e7;color:#fff}a.badge-primary.focus,a.badge-primary:focus{box-shadow:0 0 0 .2rem rgba(119,70,236,.5);outline:0}.badge-secondary{background-color:#dae1e7;color:#212529}a.badge-secondary:focus,a.badge-secondary:hover{background-color:#bbc8d3;color:#212529}a.badge-secondary.focus,a.badge-secondary:focus{box-shadow:0 0 0 .2rem rgba(218,225,231,.5);outline:0}.badge-success{background-color:#51d88a;color:#212529}a.badge-success:focus,a.badge-success:hover{background-color:#2dc96f;color:#212529}a.badge-success.focus,a.badge-success:focus{box-shadow:0 0 0 .2rem rgba(81,216,138,.5);outline:0}.badge-info{background-color:#bcdefa;color:#212529}a.badge-info:focus,a.badge-info:hover{background-color:#8dc7f6;color:#212529}a.badge-info.focus,a.badge-info:focus{box-shadow:0 0 0 .2rem rgba(188,222,250,.5);outline:0}.badge-warning{background-color:#ffa260;color:#212529}a.badge-warning:focus,a.badge-warning:hover{background-color:#ff842d;color:#212529}a.badge-warning.focus,a.badge-warning:focus{box-shadow:0 0 0 .2rem rgba(255,162,96,.5);outline:0}.badge-danger{background-color:#ef5753;color:#fff}a.badge-danger:focus,a.badge-danger:hover{background-color:#eb2924;color:#fff}a.badge-danger.focus,a.badge-danger:focus{box-shadow:0 0 0 .2rem rgba(239,87,83,.5);outline:0}.badge-light{background-color:#f8f9fa;color:#212529}a.badge-light:focus,a.badge-light:hover{background-color:#dae0e5;color:#212529}a.badge-light.focus,a.badge-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5);outline:0}.badge-dark{background-color:#343a40;color:#fff}a.badge-dark:focus,a.badge-dark:hover{background-color:#1d2124;color:#fff}a.badge-dark.focus,a.badge-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5);outline:0}.jumbotron{background-color:#e9ecef;border-radius:.3rem;margin-bottom:2rem;padding:2rem 1rem}@media (min-width:2px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{border-radius:0;padding-left:0;padding-right:0}.alert{border:1px solid transparent;border-radius:.25rem;margin-bottom:1rem;padding:.75rem 1.25rem;position:relative}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:3.925rem}.alert-dismissible .close{color:inherit;padding:.75rem 1.25rem;position:absolute;right:0;top:0;z-index:2}.alert-primary{background-color:#e4dafb;border-color:#d9cbfa;color:#3e247b}.alert-primary hr{border-top-color:#c8b4f8}.alert-primary .alert-link{color:#2a1854}.alert-secondary{background-color:#f8f9fa;border-color:#f5f7f8;color:#717578}.alert-secondary hr{border-top-color:#e6ebee}.alert-secondary .alert-link{color:#585b5e}.alert-success{background-color:#dcf7e8;border-color:#cef4de;color:#2a7048}.alert-success hr{border-top-color:#b9efd0}.alert-success .alert-link{color:#1c4b30}.alert-info{background-color:#f2f8fe;border-color:#ecf6fe;color:#627382}.alert-info hr{border-top-color:#d4ebfd}.alert-info .alert-link{color:#4c5965}.alert-warning{background-color:#ffecdf;border-color:#ffe5d2;color:#855432}.alert-warning hr{border-top-color:#ffd6b9}.alert-warning .alert-link{color:#603d24}.alert-danger{background-color:#fcdddd;border-color:#fbd0cf;color:#7c2d2b}.alert-danger hr{border-top-color:#f9b9b7}.alert-danger .alert-link{color:#561f1e}.alert-light{background-color:#fefefe;border-color:#fdfdfe;color:#818182}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{background-color:#d6d8d9;border-color:#c6c8ca;color:#1b1e21}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@-webkit-keyframes progress-bar-stripes{0%{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{0%{background-position:1rem 0}to{background-position:0 0}}.progress{background-color:#e9ecef;border-radius:.25rem;font-size:.7125rem;height:1rem;line-height:0}.progress,.progress-bar{display:flex;overflow:hidden}.progress-bar{background-color:#7746ec;color:#fff;flex-direction:column;justify-content:center;text-align:center;transition:width .6s ease;white-space:nowrap}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.media{align-items:flex-start;display:flex}.media-body{flex:1}.list-group{border-radius:.25rem;display:flex;flex-direction:column;margin-bottom:0;padding-left:0}.list-group-item-action{color:#495057;text-align:inherit;width:100%}.list-group-item-action:focus,.list-group-item-action:hover{background-color:#f8f9fa;color:#495057;text-decoration:none;z-index:1}.list-group-item-action:active{background-color:#e9ecef;color:#212529}.list-group-item{background-color:#fff;border:1px solid rgba(0,0,0,.125);display:block;padding:.75rem 1.25rem;position:relative}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{background-color:#fff;color:#6c757d;pointer-events:none}.list-group-item.active{background-color:#7746ec;border-color:#7746ec;color:#fff;z-index:2}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{border-top-width:1px;margin-top:-1px}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-bottom-left-radius:0;border-top-right-radius:.25rem}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-left-width:0;border-top-width:1px}.list-group-horizontal>.list-group-item+.list-group-item.active{border-left-width:1px;margin-left:-1px}@media (min-width:2px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-bottom-left-radius:0;border-top-right-radius:.25rem}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-left-width:0;border-top-width:1px}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{border-left-width:1px;margin-left:-1px}}@media (min-width:8px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-bottom-left-radius:0;border-top-right-radius:.25rem}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-left-width:0;border-top-width:1px}.list-group-horizontal-md>.list-group-item+.list-group-item.active{border-left-width:1px;margin-left:-1px}}@media (min-width:9px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-bottom-left-radius:0;border-top-right-radius:.25rem}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-left-width:0;border-top-width:1px}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{border-left-width:1px;margin-left:-1px}}@media (min-width:10px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-bottom-left-radius:0;border-top-right-radius:.25rem}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-left-width:0;border-top-width:1px}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{border-left-width:1px;margin-left:-1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{background-color:#d9cbfa;color:#3e247b}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{background-color:#c8b4f8;color:#3e247b}.list-group-item-primary.list-group-item-action.active{background-color:#3e247b;border-color:#3e247b;color:#fff}.list-group-item-secondary{background-color:#f5f7f8;color:#717578}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{background-color:#e6ebee;color:#717578}.list-group-item-secondary.list-group-item-action.active{background-color:#717578;border-color:#717578;color:#fff}.list-group-item-success{background-color:#cef4de;color:#2a7048}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{background-color:#b9efd0;color:#2a7048}.list-group-item-success.list-group-item-action.active{background-color:#2a7048;border-color:#2a7048;color:#fff}.list-group-item-info{background-color:#ecf6fe;color:#627382}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{background-color:#d4ebfd;color:#627382}.list-group-item-info.list-group-item-action.active{background-color:#627382;border-color:#627382;color:#fff}.list-group-item-warning{background-color:#ffe5d2;color:#855432}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{background-color:#ffd6b9;color:#855432}.list-group-item-warning.list-group-item-action.active{background-color:#855432;border-color:#855432;color:#fff}.list-group-item-danger{background-color:#fbd0cf;color:#7c2d2b}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{background-color:#f9b9b7;color:#7c2d2b}.list-group-item-danger.list-group-item-action.active{background-color:#7c2d2b;border-color:#7c2d2b;color:#fff}.list-group-item-light{background-color:#fdfdfe;color:#818182}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{background-color:#ececf6;color:#818182}.list-group-item-light.list-group-item-action.active{background-color:#818182;border-color:#818182;color:#fff}.list-group-item-dark{background-color:#c6c8ca;color:#1b1e21}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{background-color:#b9bbbe;color:#1b1e21}.list-group-item-dark.list-group-item-action.active{background-color:#1b1e21;border-color:#1b1e21;color:#fff}.close{color:#000;float:right;font-size:1.425rem;font-weight:700;line-height:1;opacity:.5;text-shadow:0 1px 0 #fff}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{background-color:transparent;border:0;padding:0}a.close.disabled{pointer-events:none}.toast{background-clip:padding-box;background-color:hsla(0,0%,100%,.85);border:1px solid rgba(0,0,0,.1);border-radius:.25rem;box-shadow:0 .25rem .75rem rgba(0,0,0,.1);flex-basis:350px;font-size:.875rem;max-width:350px;opacity:0}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{align-items:center;background-clip:padding-box;background-color:hsla(0,0%,100%,.85);border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px);color:#6c757d;display:flex;padding:.25rem .75rem}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{display:none;height:100%;left:0;outline:0;overflow:hidden;position:fixed;top:0;width:100%;z-index:1050}.modal-dialog{margin:.5rem;pointer-events:none;position:relative;width:auto}.modal.fade .modal-dialog{transform:translateY(-50px);transition:transform .3s ease-out}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header{flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{align-items:center;display:flex;min-height:calc(100% - 1rem)}.modal-dialog-centered:before{content:"";display:block;height:calc(100vh - 1rem);height:-webkit-min-content;height:-moz-min-content;height:min-content}.modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;height:100%;justify-content:center}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable:before{content:none}.modal-content{background-clip:padding-box;background-color:#fff;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;display:flex;flex-direction:column;outline:0;pointer-events:auto;position:relative;width:100%}.modal-backdrop{background-color:#000;height:100vh;left:0;position:fixed;top:0;width:100vw;z-index:1040}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{align-items:flex-start;border-bottom:1px solid #efefef;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px);display:flex;justify-content:space-between;padding:1rem}.modal-header .close{margin:-1rem -1rem -1rem auto;padding:1rem}.modal-title{line-height:1.5;margin-bottom:0}.modal-body{flex:1 1 auto;padding:1rem;position:relative}.modal-footer{align-items:center;border-bottom-left-radius:calc(.3rem - 1px);border-bottom-right-radius:calc(.3rem - 1px);border-top:1px solid #efefef;display:flex;flex-wrap:wrap;justify-content:flex-end;padding:.75rem}.modal-footer>*{margin:.25rem}.modal-scrollbar-measure{height:50px;overflow:scroll;position:absolute;top:-9999px;width:50px}@media (min-width:2px){.modal-dialog{margin:1.75rem auto;max-width:500px}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered:before{height:calc(100vh - 3.5rem);height:-webkit-min-content;height:-moz-min-content;height:min-content}.modal-sm{max-width:300px}}@media (min-width:9px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:10px){.modal-xl{max-width:1140px}}.tooltip{word-wrap:break-word;display:block;font-family:Nunito,sans-serif;font-size:.83125rem;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.5;margin:0;opacity:0;position:absolute;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;z-index:1070}.tooltip.show{opacity:.9}.tooltip .arrow{display:block;height:.4rem;position:absolute;width:.8rem}.tooltip .arrow:before{border-color:transparent;border-style:solid;content:"";position:absolute}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow:before,.bs-tooltip-top .arrow:before{border-top-color:#000;border-width:.4rem .4rem 0;top:0}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{height:.8rem;left:0;width:.4rem}.bs-tooltip-auto[x-placement^=right] .arrow:before,.bs-tooltip-right .arrow:before{border-right-color:#000;border-width:.4rem .4rem .4rem 0;right:0}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow:before,.bs-tooltip-bottom .arrow:before{border-bottom-color:#000;border-width:0 .4rem .4rem;bottom:0}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{height:.8rem;right:0;width:.4rem}.bs-tooltip-auto[x-placement^=left] .arrow:before,.bs-tooltip-left .arrow:before{border-left-color:#000;border-width:.4rem 0 .4rem .4rem;left:0}.tooltip-inner{background-color:#000;border-radius:.25rem;color:#fff;max-width:200px;padding:.25rem .5rem;text-align:center}.popover{word-wrap:break-word;background-clip:padding-box;background-color:#fff;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;font-family:Nunito,sans-serif;font-size:.83125rem;font-style:normal;font-weight:400;left:0;letter-spacing:normal;line-break:auto;line-height:1.5;max-width:276px;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;top:0;white-space:normal;word-break:normal;word-spacing:normal;z-index:1060}.popover,.popover .arrow{display:block;position:absolute}.popover .arrow{height:.5rem;margin:0 .3rem;width:1rem}.popover .arrow:after,.popover .arrow:before{border-color:transparent;border-style:solid;content:"";display:block;position:absolute}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=top]>.arrow:before,.bs-popover-top>.arrow:before{border-top-color:rgba(0,0,0,.25);border-width:.5rem .5rem 0;bottom:0}.bs-popover-auto[x-placement^=top]>.arrow:after,.bs-popover-top>.arrow:after{border-top-color:#fff;border-width:.5rem .5rem 0;bottom:1px}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{height:1rem;left:calc(-.5rem - 1px);margin:.3rem 0;width:.5rem}.bs-popover-auto[x-placement^=right]>.arrow:before,.bs-popover-right>.arrow:before{border-right-color:rgba(0,0,0,.25);border-width:.5rem .5rem .5rem 0;left:0}.bs-popover-auto[x-placement^=right]>.arrow:after,.bs-popover-right>.arrow:after{border-right-color:#fff;border-width:.5rem .5rem .5rem 0;left:1px}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=bottom]>.arrow:before,.bs-popover-bottom>.arrow:before{border-bottom-color:rgba(0,0,0,.25);border-width:0 .5rem .5rem;top:0}.bs-popover-auto[x-placement^=bottom]>.arrow:after,.bs-popover-bottom>.arrow:after{border-bottom-color:#fff;border-width:0 .5rem .5rem;top:1px}.bs-popover-auto[x-placement^=bottom] .popover-header:before,.bs-popover-bottom .popover-header:before{border-bottom:1px solid #f7f7f7;content:"";display:block;left:50%;margin-left:-.5rem;position:absolute;top:0;width:1rem}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{height:1rem;margin:.3rem 0;right:calc(-.5rem - 1px);width:.5rem}.bs-popover-auto[x-placement^=left]>.arrow:before,.bs-popover-left>.arrow:before{border-left-color:rgba(0,0,0,.25);border-width:.5rem 0 .5rem .5rem;right:0}.bs-popover-auto[x-placement^=left]>.arrow:after,.bs-popover-left>.arrow:after{border-left-color:#fff;border-width:.5rem 0 .5rem .5rem;right:1px}.popover-header{background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px);font-size:.95rem;margin-bottom:0;padding:.5rem .75rem}.popover-header:empty{display:none}.popover-body{color:#212529;padding:.5rem .75rem}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{overflow:hidden;position:relative;width:100%}.carousel-inner:after{clear:both;content:"";display:block}.carousel-item{-webkit-backface-visibility:hidden;backface-visibility:hidden;display:none;float:left;margin-right:-100%;position:relative;transition:transform .6s ease-in-out;width:100%}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-right,.carousel-item-next:not(.carousel-item-left){transform:translateX(100%)}.active.carousel-item-left,.carousel-item-prev:not(.carousel-item-right){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transform:none;transition-property:opacity}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{opacity:1;z-index:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{opacity:0;transition:opacity 0s .6s;z-index:0}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-next,.carousel-control-prev{align-items:center;bottom:0;color:#fff;display:flex;justify-content:center;opacity:.5;position:absolute;text-align:center;top:0;transition:opacity .15s ease;width:15%;z-index:1}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;opacity:.9;outline:0;text-decoration:none}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{background:50%/100% 100% no-repeat;display:inline-block;height:20px;width:20px}.carousel-control-prev-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8'%3E%3Cpath d='m5.25 0-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3E%3C/svg%3E")}.carousel-control-next-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8'%3E%3Cpath d='m2.75 0-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3E%3C/svg%3E")}.carousel-indicators{bottom:0;display:flex;justify-content:center;left:0;list-style:none;margin-left:15%;margin-right:15%;padding-left:0;position:absolute;right:0;z-index:15}.carousel-indicators li{background-clip:padding-box;background-color:#fff;border-bottom:10px solid transparent;border-top:10px solid transparent;box-sizing:content-box;cursor:pointer;flex:0 1 auto;height:3px;margin-left:3px;margin-right:3px;opacity:.5;text-indent:-999px;transition:opacity .6s ease;width:30px}@media (prefers-reduced-motion:reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{bottom:20px;color:#fff;left:15%;padding-bottom:20px;padding-top:20px;position:absolute;right:15%;text-align:center;z-index:10}@-webkit-keyframes spinner-border{to{transform:rotate(1turn)}}@keyframes spinner-border{to{transform:rotate(1turn)}}.spinner-border{-webkit-animation:spinner-border .75s linear infinite;animation:spinner-border .75s linear infinite;border:.25em solid;border-radius:50%;border-right:.25em solid transparent;display:inline-block;height:2rem;vertical-align:text-bottom;width:2rem}.spinner-border-sm{border-width:.2em;height:1rem;width:1rem}@-webkit-keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{-webkit-animation:spinner-grow .75s linear infinite;animation:spinner-grow .75s linear infinite;background-color:currentColor;border-radius:50%;display:inline-block;height:2rem;opacity:0;vertical-align:text-bottom;width:2rem}.spinner-grow-sm{height:1rem;width:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{-webkit-animation-duration:1.5s;animation-duration:1.5s}}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#7746ec!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#5518e7!important}.bg-secondary{background-color:#dae1e7!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#bbc8d3!important}.bg-success{background-color:#51d88a!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#2dc96f!important}.bg-info{background-color:#bcdefa!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#8dc7f6!important}.bg-warning{background-color:#ffa260!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#ff842d!important}.bg-danger{background-color:#ef5753!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#eb2924!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #efefef!important}.border-top{border-top:1px solid #efefef!important}.border-right{border-right:1px solid #efefef!important}.border-bottom{border-bottom:1px solid #efefef!important}.border-left{border-left:1px solid #efefef!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#7746ec!important}.border-secondary{border-color:#dae1e7!important}.border-success{border-color:#51d88a!important}.border-info{border-color:#bcdefa!important}.border-warning{border-color:#ffa260!important}.border-danger{border-color:#ef5753!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important}.rounded-right,.rounded-top{border-top-right-radius:.25rem!important}.rounded-bottom,.rounded-right{border-bottom-right-radius:.25rem!important}.rounded-bottom,.rounded-left{border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important}.rounded-lg{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix:after{clear:both;content:"";display:block}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}@media (min-width:2px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}}@media (min-width:8px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}}@media (min-width:9px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}}@media (min-width:10px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}}.embed-responsive{display:block;overflow:hidden;padding:0;position:relative;width:100%}.embed-responsive:before{content:"";display:block}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{border:0;bottom:0;height:100%;left:0;position:absolute;top:0;width:100%}.embed-responsive-21by9:before{padding-top:42.8571428571%}.embed-responsive-16by9:before{padding-top:56.25%}.embed-responsive-4by3:before{padding-top:75%}.embed-responsive-1by1:before{padding-top:100%}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-fill{flex:1 1 auto!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}@media (min-width:2px){.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}}@media (min-width:8px){.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}}@media (min-width:9px){.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}}@media (min-width:10px){.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:2px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:8px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:9px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:10px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;-ms-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.fixed-top{top:0}.fixed-bottom,.fixed-top{left:0;position:fixed;right:0;z-index:1030}.fixed-bottom{bottom:0}@supports ((position:-webkit-sticky) or (position:sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{clip:rect(0,0,0,0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;overflow:visible;position:static;white-space:normal;width:auto}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:2px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:8px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:9px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:10px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.stretched-link:after{background-color:transparent;bottom:0;content:"";left:0;pointer-events:auto;position:absolute;right:0;top:0;z-index:1}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:2px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:8px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:9px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:10px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#7746ec!important}a.text-primary:focus,a.text-primary:hover{color:#4d15d0!important}.text-secondary{color:#dae1e7!important}a.text-secondary:focus,a.text-secondary:hover{color:#acbbc9!important}.text-success{color:#51d88a!important}a.text-success:focus,a.text-success:hover{color:#28b463!important}.text-info{color:#bcdefa!important}a.text-info:focus,a.text-info:hover{color:#75bbf5!important}.text-warning{color:#ffa260!important}a.text-warning:focus,a.text-warning:hover{color:#ff7514!important}.text-danger{color:#ef5753!important}a.text-danger:focus,a.text-danger:hover{color:#e11a15!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#cbd3da!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#121416!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:hsla(0,0%,100%,.5)!important}.text-hide{background-color:transparent;border:0;color:transparent;font:0/0 a;text-shadow:none}.text-decoration-none{text-decoration:none!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,:after,:before{box-shadow:none!important;text-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]:after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}.container,body{min-width:9px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #dee2e6!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#efefef}.table .thead-dark th{border-color:#efefef;color:inherit}}body{padding-bottom:20px}.container{width:1140px}html{min-width:1140px}[v-cloak]{display:none}svg.icon{height:1rem;width:1rem}.header{border-bottom:1px solid #d5dfe9}.header svg.logo{height:2rem;width:2rem}.sidebar .nav-item a{color:#2a5164;padding:.5rem 0}.sidebar .nav-item a svg{fill:#c3cbd3;height:1rem;margin-right:15px;width:1rem}.sidebar .nav-item a.active{color:#7746ec}.sidebar .nav-item a.active svg{fill:#7746ec}.card{border:none;box-shadow:0 2px 3px #cdd8df}.card .bottom-radius{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.card .card-header{background-color:#fff;border-bottom:none;padding-bottom:.7rem;padding-top:.7rem}.card .card-header .btn-group .btn{padding:.2rem .5rem}.card .card-header h5{margin:0}.card .table td,.card .table th{padding:.75rem 1.25rem}.card .table.table-sm td,.card .table.table-sm th{padding:1rem 1.25rem}.card .table th{background-color:#f3f4f6;border-bottom:0;font-weight:400;padding:.5rem 1.25rem}.card .table:not(.table-borderless) td{border-top:1px solid #efefef}.card .table.penultimate-column-right td:nth-last-child(2),.card .table.penultimate-column-right th:nth-last-child(2){text-align:right}.card .table td.table-fit,.card .table th.table-fit{white-space:nowrap;width:1%}.fill-text-color{fill:#212529}.fill-danger{fill:#ef5753}.fill-warning{fill:#ffa260}.fill-info{fill:#bcdefa}.fill-success{fill:#51d88a}.fill-primary{fill:#7746ec}button:hover .fill-primary{fill:#fff}.btn-outline-primary.active .fill-primary{fill:#ebebeb}.btn-outline-primary:not(:disabled):not(.disabled).active:focus{box-shadow:none!important}.control-action svg{fill:#ccd2df;height:1.2rem;width:1.2rem}.control-action svg:hover{fill:#7746ec}.info-icon{fill:#ccd2df}.paginator .btn{color:#9ea7ac;text-decoration:none}.paginator .btn:hover{color:#7746ec}@-webkit-keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.spin{-webkit-animation:spin 2s linear infinite;animation:spin 2s linear infinite}.card .nav-pills .nav-link.active{background:none;border-bottom:2px solid #7746ec;color:#7746ec}.card .nav-pills .nav-link{border-radius:0;color:#212529;font-size:.9rem;padding:.75rem 1.25rem}.list-enter-active:not(.dontanimate){transition:background 1s linear}.list-enter:not(.dontanimate),.list-leave-to:not(.dontanimate){background:#fffee9}.card table td{vertical-align:middle!important}.card-bg-secondary{background:#fafafa}.code-bg{background:#120f12}.disabled-watcher{background:#ef5753;color:#fff;padding:.75rem}.badge-sm{font-size:.75rem} + */:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#4b5563;--gray-dark:#1f2937;--primary:#7746ec;--secondary:#6b7280;--success:#10b981;--info:#3b82f6;--warning:#f59e0b;--danger:#ef4444;--light:#f3f4f6;--dark:#1f2937;--breakpoint-xs:0;--breakpoint-sm:2px;--breakpoint-md:8px;--breakpoint-lg:9px;--breakpoint-xl:10px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,:after,:before{box-sizing:border-box}html{-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0);font-family:sans-serif;line-height:1.15}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{background-color:#f3f4f6;color:#111827;font-family:Figtree,sans-serif;font-size:1rem;font-weight:400;line-height:1.5;margin:0;text-align:left}[tabindex="-1"]:focus:not(:focus-visible){outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;margin-top:0}p{margin-bottom:1rem;margin-top:0}abbr[data-original-title],abbr[title]{border-bottom:0;cursor:help;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{font-style:normal;line-height:inherit}address,dl,ol,ul{margin-bottom:1rem}dl,ol,ul{margin-top:0}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:600}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{background-color:transparent;color:#7746ec;text-decoration:none}a:hover{color:#4d15d0;text-decoration:underline}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}pre{-ms-overflow-style:scrollbar;margin-bottom:1rem;margin-top:0;overflow:auto}figure{margin:0 0 1rem}img{border-style:none}img,svg{vertical-align:middle}svg{overflow:hidden}table{border-collapse:collapse}caption{caption-side:bottom;color:#6b7280;padding-bottom:.75rem;padding-top:.75rem;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit;margin:0}button,input{overflow:visible}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}textarea{overflow:auto;resize:vertical}fieldset{border:0;margin:0;min-width:0;padding:0}legend{color:inherit;display:block;font-size:1.5rem;line-height:inherit;margin-bottom:.5rem;max-width:100%;padding:0;white-space:normal;width:100%}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:none;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}output{display:inline-block}summary{cursor:pointer;display:list-item}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-weight:500;line-height:1.2;margin-bottom:.5rem}.h1,h1{font-size:2.5rem}.h2,h2{font-size:2rem}.h3,h3{font-size:1.75rem}.h4,h4{font-size:1.5rem}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem}.display-1,.display-2{font-weight:300;line-height:1.2}.display-2{font-size:5.5rem}.display-3{font-size:4.5rem}.display-3,.display-4{font-weight:300;line-height:1.2}.display-4{font-size:3.5rem}hr{border:0;border-top:1px solid rgba(0,0,0,.1);margin-bottom:1rem;margin-top:1rem}.small,small{font-size:.875em;font-weight:400}.mark,mark{background-color:#fcf8e3;padding:.2em}.list-inline,.list-unstyled{list-style:none;padding-left:0}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{font-size:1.25rem;margin-bottom:1rem}.blockquote-footer{color:#4b5563;display:block;font-size:.875em}.blockquote-footer:before{content:"— "}.img-fluid,.img-thumbnail{height:auto;max-width:100%}.img-thumbnail{background-color:#f3f4f6;border:1px solid #d1d5db;border-radius:.25rem;padding:.25rem}.figure{display:inline-block}.figure-img{line-height:1;margin-bottom:.5rem}.figure-caption{color:#4b5563;font-size:90%}code{word-wrap:break-word;color:#e83e8c;font-size:87.5%}a>code{color:inherit}kbd{background-color:#111827;border-radius:.2rem;color:#fff;font-size:87.5%;padding:.2rem .4rem}kbd kbd{font-size:100%;font-weight:600;padding:0}pre{color:#111827;display:block;font-size:87.5%}pre code{color:inherit;font-size:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px;width:100%}@media (min-width:2px){.container,.container-sm{max-width:1137px}}@media (min-width:8px){.container,.container-md,.container-sm{max-width:1138px}}@media (min-width:9px){.container,.container-lg,.container-md,.container-sm{max-width:1139px}}@media (min-width:10px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}.row{display:flex;flex-wrap:wrap;margin-left:-15px;margin-right:-15px}.no-gutters{margin-left:0;margin-right:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-left:0;padding-right:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{padding-left:15px;padding-right:15px;position:relative;width:100%}.col{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-1>*{flex:0 0 100%;max-width:100%}.row-cols-2>*{flex:0 0 50%;max-width:50%}.row-cols-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-4>*{flex:0 0 25%;max-width:25%}.row-cols-5>*{flex:0 0 20%;max-width:20%}.row-cols-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-auto{flex:0 0 auto;max-width:100%;width:auto}.col-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-3{flex:0 0 25%;max-width:25%}.col-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-6{flex:0 0 50%;max-width:50%}.col-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-9{flex:0 0 75%;max-width:75%}.col-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-12{flex:0 0 100%;max-width:100%}.order-first{order:-1}.order-last{order:13}.order-0{order:0}.order-1{order:1}.order-2{order:2}.order-3{order:3}.order-4{order:4}.order-5{order:5}.order-6{order:6}.order-7{order:7}.order-8{order:8}.order-9{order:9}.order-10{order:10}.order-11{order:11}.order-12{order:12}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}@media (min-width:2px){.col-sm{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-sm-1>*{flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-sm-auto{flex:0 0 auto;max-width:100%;width:auto}.col-sm-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-sm-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-sm-3{flex:0 0 25%;max-width:25%}.col-sm-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-sm-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-sm-6{flex:0 0 50%;max-width:50%}.col-sm-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-sm-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-sm-9{flex:0 0 75%;max-width:75%}.col-sm-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-sm-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-sm-12{flex:0 0 100%;max-width:100%}.order-sm-first{order:-1}.order-sm-last{order:13}.order-sm-0{order:0}.order-sm-1{order:1}.order-sm-2{order:2}.order-sm-3{order:3}.order-sm-4{order:4}.order-sm-5{order:5}.order-sm-6{order:6}.order-sm-7{order:7}.order-sm-8{order:8}.order-sm-9{order:9}.order-sm-10{order:10}.order-sm-11{order:11}.order-sm-12{order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}}@media (min-width:8px){.col-md{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-md-1>*{flex:0 0 100%;max-width:100%}.row-cols-md-2>*{flex:0 0 50%;max-width:50%}.row-cols-md-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-md-4>*{flex:0 0 25%;max-width:25%}.row-cols-md-5>*{flex:0 0 20%;max-width:20%}.row-cols-md-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-md-auto{flex:0 0 auto;max-width:100%;width:auto}.col-md-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-md-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-md-3{flex:0 0 25%;max-width:25%}.col-md-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-md-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-md-6{flex:0 0 50%;max-width:50%}.col-md-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-md-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-md-9{flex:0 0 75%;max-width:75%}.col-md-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-md-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-md-12{flex:0 0 100%;max-width:100%}.order-md-first{order:-1}.order-md-last{order:13}.order-md-0{order:0}.order-md-1{order:1}.order-md-2{order:2}.order-md-3{order:3}.order-md-4{order:4}.order-md-5{order:5}.order-md-6{order:6}.order-md-7{order:7}.order-md-8{order:8}.order-md-9{order:9}.order-md-10{order:10}.order-md-11{order:11}.order-md-12{order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}}@media (min-width:9px){.col-lg{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-lg-1>*{flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-lg-auto{flex:0 0 auto;max-width:100%;width:auto}.col-lg-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-lg-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-lg-3{flex:0 0 25%;max-width:25%}.col-lg-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-lg-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-lg-6{flex:0 0 50%;max-width:50%}.col-lg-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-lg-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-lg-9{flex:0 0 75%;max-width:75%}.col-lg-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-lg-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-lg-12{flex:0 0 100%;max-width:100%}.order-lg-first{order:-1}.order-lg-last{order:13}.order-lg-0{order:0}.order-lg-1{order:1}.order-lg-2{order:2}.order-lg-3{order:3}.order-lg-4{order:4}.order-lg-5{order:5}.order-lg-6{order:6}.order-lg-7{order:7}.order-lg-8{order:8}.order-lg-9{order:9}.order-lg-10{order:10}.order-lg-11{order:11}.order-lg-12{order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}}@media (min-width:10px){.col-xl{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-xl-1>*{flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-xl-auto{flex:0 0 auto;max-width:100%;width:auto}.col-xl-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-xl-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-xl-3{flex:0 0 25%;max-width:25%}.col-xl-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-xl-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-xl-6{flex:0 0 50%;max-width:50%}.col-xl-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-xl-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-xl-9{flex:0 0 75%;max-width:75%}.col-xl-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-xl-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-xl-12{flex:0 0 100%;max-width:100%}.order-xl-first{order:-1}.order-xl-last{order:13}.order-xl-0{order:0}.order-xl-1{order:1}.order-xl-2{order:2}.order-xl-3{order:3}.order-xl-4{order:4}.order-xl-5{order:5}.order-xl-6{order:6}.order-xl-7{order:7}.order-xl-8{order:8}.order-xl-9{order:9}.order-xl-10{order:10}.order-xl-11{order:11}.order-xl-12{order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}}.table{color:#111827;margin-bottom:1rem;width:100%}.table td,.table th{border-top:1px solid #e5e7eb;padding:.75rem;vertical-align:top}.table thead th{border-bottom:2px solid #e5e7eb;vertical-align:bottom}.table tbody+tbody{border-top:2px solid #e5e7eb}.table-sm td,.table-sm th{padding:.3rem}.table-bordered,.table-bordered td,.table-bordered th{border:1px solid #e5e7eb}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{background-color:#f3f4f6;color:#111827}.table-primary,.table-primary>td,.table-primary>th{background-color:#d9cbfa}.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#b89ff5}.table-hover .table-primary:hover,.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#c8b4f8}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#d6d8db}.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#b2b6bd}.table-hover .table-secondary:hover,.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>td,.table-success>th{background-color:#bcebdc}.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#83dbbd}.table-hover .table-success:hover,.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#a8e5d2}.table-info,.table-info>td,.table-info>th{background-color:#c8dcfc}.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#99befa}.table-hover .table-info:hover,.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#b0cdfb}.table-warning,.table-warning>td,.table-warning>th{background-color:#fce4bb}.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#facd80}.table-hover .table-warning:hover,.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#fbdaa3}.table-danger,.table-danger>td,.table-danger>th{background-color:#fbcbcb}.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#f79e9e}.table-hover .table-danger:hover,.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f9b3b3}.table-light,.table-light>td,.table-light>th{background-color:#fcfcfc}.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#f9f9fa}.table-hover .table-light:hover,.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#efefef}.table-dark,.table-dark>td,.table-dark>th{background-color:#c0c3c7}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#8b9097}.table-hover .table-dark:hover,.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b3b6bb}.table-active,.table-active>td,.table-active>th{background-color:#f3f4f6}.table-hover .table-active:hover,.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:#e4e7eb}.table .thead-dark th{background-color:#1f2937;border-color:#2d3b4f;color:#fff}.table .thead-light th{background-color:#e5e7eb;border-color:#e5e7eb;color:#374151}.table-dark{background-color:#1f2937;color:#fff}.table-dark td,.table-dark th,.table-dark thead th{border-color:#2d3b4f}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:hsla(0,0%,100%,.05)}.table-dark.table-hover tbody tr:hover{background-color:hsla(0,0%,100%,.075);color:#fff}@media (max-width:1.98px){.table-responsive-sm{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:7.98px){.table-responsive-md{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive-md>.table-bordered{border:0}}@media (max-width:8.98px){.table-responsive-lg{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:9.98px){.table-responsive-xl{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%}.table-responsive>.table-bordered{border:0}.form-control{background-clip:padding-box;background-color:#fff;border:1px solid #d1d5db;border-radius:.25rem;color:#1f2937;display:block;font-size:1rem;font-weight:400;height:calc(1.5em + .75rem + 2px);line-height:1.5;padding:.375rem .75rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:100%}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{background-color:#fff;border-color:#ccbaf8;box-shadow:0 0 0 .2rem rgba(119,70,236,.25);color:#1f2937;outline:0}.form-control::-moz-placeholder{color:#4b5563;opacity:1}.form-control::placeholder{color:#4b5563;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e5e7eb;opacity:1}input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none}select.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #1f2937}select.form-control:focus::-ms-value{background-color:#fff;color:#1f2937}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{font-size:inherit;line-height:1.5;margin-bottom:0;padding-bottom:calc(.375rem + 1px);padding-top:calc(.375rem + 1px)}.col-form-label-lg{font-size:1.25rem;line-height:1.5;padding-bottom:calc(.5rem + 1px);padding-top:calc(.5rem + 1px)}.col-form-label-sm{font-size:.875rem;line-height:1.5;padding-bottom:calc(.25rem + 1px);padding-top:calc(.25rem + 1px)}.form-control-plaintext{background-color:transparent;border:solid transparent;border-width:1px 0;color:#111827;display:block;font-size:1rem;line-height:1.5;margin-bottom:0;padding:.375rem 0;width:100%}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-left:0;padding-right:0}.form-control-sm{border-radius:.2rem;font-size:.875rem;height:calc(1.5em + .5rem + 2px);line-height:1.5;padding:.25rem .5rem}.form-control-lg{border-radius:6px;font-size:1.25rem;height:calc(1.5em + 1rem + 2px);line-height:1.5;padding:.5rem 1rem}select.form-control[multiple],select.form-control[size],textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:flex;flex-wrap:wrap;margin-left:-5px;margin-right:-5px}.form-row>.col,.form-row>[class*=col-]{padding-left:5px;padding-right:5px}.form-check{display:block;padding-left:1.25rem;position:relative}.form-check-input{margin-left:-1.25rem;margin-top:.3rem;position:absolute}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{color:#6b7280}.form-check-label{margin-bottom:0}.form-check-inline{align-items:center;display:inline-flex;margin-right:.75rem;padding-left:0}.form-check-inline .form-check-input{margin-left:0;margin-right:.3125rem;margin-top:0;position:static}.valid-feedback{color:#10b981;display:none;font-size:.875em;margin-top:.25rem;width:100%}.valid-tooltip{background-color:rgba(16,185,129,.9);border-radius:.25rem;color:#fff;display:none;font-size:.875rem;left:0;line-height:1.5;margin-top:.1rem;max-width:100%;padding:.25rem .5rem;position:absolute;top:100%;z-index:5}.form-row>.col>.valid-tooltip,.form-row>[class*=col-]>.valid-tooltip{left:5px}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%2310b981' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");background-position:right calc(.375em + .1875rem) center;background-repeat:no-repeat;background-size:calc(.75em + .375rem) calc(.75em + .375rem);border-color:#10b981;padding-right:calc(1.5em + .75rem)!important}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#10b981;box-shadow:0 0 0 .2rem rgba(16,185,129,.25)}.was-validated select.form-control:valid,select.form-control.is-valid{background-position:right 1.5rem center;padding-right:3rem!important}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem);padding-right:calc(1.5em + .75rem)}.custom-select.is-valid,.was-validated .custom-select:valid{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%231f2937' d='M2 0 0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat,#fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%2310b981' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat;border-color:#10b981;padding-right:calc(.75em + 2.3125rem)!important}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#10b981;box-shadow:0 0 0 .2rem rgba(16,185,129,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#10b981}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#10b981}.custom-control-input.is-valid~.custom-control-label:before,.was-validated .custom-control-input:valid~.custom-control-label:before{border-color:#10b981}.custom-control-input.is-valid:checked~.custom-control-label:before,.was-validated .custom-control-input:valid:checked~.custom-control-label:before{background-color:#14e8a2;border-color:#14e8a2}.custom-control-input.is-valid:focus~.custom-control-label:before,.was-validated .custom-control-input:valid:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(16,185,129,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label:before{border-color:#10b981}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#10b981}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#10b981;box-shadow:0 0 0 .2rem rgba(16,185,129,.25)}.invalid-feedback{color:#ef4444;display:none;font-size:.875em;margin-top:.25rem;width:100%}.invalid-tooltip{background-color:rgba(239,68,68,.9);border-radius:.25rem;color:#fff;display:none;font-size:.875rem;left:0;line-height:1.5;margin-top:.1rem;max-width:100%;padding:.25rem .5rem;position:absolute;top:100%;z-index:5}.form-row>.col>.invalid-tooltip,.form-row>[class*=col-]>.invalid-tooltip{left:5px}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23ef4444'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23ef4444' stroke='none'/%3E%3C/svg%3E");background-position:right calc(.375em + .1875rem) center;background-repeat:no-repeat;background-size:calc(.75em + .375rem) calc(.75em + .375rem);border-color:#ef4444;padding-right:calc(1.5em + .75rem)!important}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#ef4444;box-shadow:0 0 0 .2rem rgba(239,68,68,.25)}.was-validated select.form-control:invalid,select.form-control.is-invalid{background-position:right 1.5rem center;padding-right:3rem!important}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem);padding-right:calc(1.5em + .75rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%231f2937' d='M2 0 0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat,#fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23ef4444'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23ef4444' stroke='none'/%3E%3C/svg%3E") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat;border-color:#ef4444;padding-right:calc(.75em + 2.3125rem)!important}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#ef4444;box-shadow:0 0 0 .2rem rgba(239,68,68,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#ef4444}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#ef4444}.custom-control-input.is-invalid~.custom-control-label:before,.was-validated .custom-control-input:invalid~.custom-control-label:before{border-color:#ef4444}.custom-control-input.is-invalid:checked~.custom-control-label:before,.was-validated .custom-control-input:invalid:checked~.custom-control-label:before{background-color:#f37373;border-color:#f37373}.custom-control-input.is-invalid:focus~.custom-control-label:before,.was-validated .custom-control-input:invalid:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(239,68,68,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label:before{border-color:#ef4444}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#ef4444}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#ef4444;box-shadow:0 0 0 .2rem rgba(239,68,68,.25)}.form-inline{align-items:center;display:flex;flex-flow:row wrap}.form-inline .form-check{width:100%}@media (min-width:2px){.form-inline label{justify-content:center}.form-inline .form-group,.form-inline label{align-items:center;display:flex;margin-bottom:0}.form-inline .form-group{flex:0 0 auto;flex-flow:row wrap}.form-inline .form-control{display:inline-block;vertical-align:middle;width:auto}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{align-items:center;display:flex;justify-content:center;padding-left:0;width:auto}.form-inline .form-check-input{flex-shrink:0;margin-left:0;margin-right:.25rem;margin-top:0;position:relative}.form-inline .custom-control{align-items:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{background-color:transparent;border:1px solid transparent;border-radius:.25rem;color:#111827;display:inline-block;font-size:1rem;font-weight:400;line-height:1.5;padding:.375rem .75rem;text-align:center;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:middle}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#111827;text-decoration:none}.btn.focus,.btn:focus{box-shadow:0 0 0 .2rem rgba(119,70,236,.25);outline:0}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{background-color:#7746ec;border-color:#7746ec;color:#fff}.btn-primary.focus,.btn-primary:focus,.btn-primary:hover{background-color:#5e23e8;border-color:#5518e7;color:#fff}.btn-primary.focus,.btn-primary:focus{box-shadow:0 0 0 0 rgba(139,98,239,.5)}.btn-primary.disabled,.btn-primary:disabled{background-color:#7746ec;border-color:#7746ec;color:#fff}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{background-color:#5518e7;border-color:#5117dc;color:#fff}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(139,98,239,.5)}.btn-secondary{background-color:#6b7280;border-color:#6b7280;color:#fff}.btn-secondary.focus,.btn-secondary:focus,.btn-secondary:hover{background-color:#5a5f6b;border-color:#545964;color:#fff}.btn-secondary.focus,.btn-secondary:focus{box-shadow:0 0 0 0 hsla(220,8%,54%,.5)}.btn-secondary.disabled,.btn-secondary:disabled{background-color:#6b7280;border-color:#6b7280;color:#fff}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{background-color:#545964;border-color:#4e535d;color:#fff}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 0 hsla(220,8%,54%,.5)}.btn-success{background-color:#10b981;border-color:#10b981;color:#fff}.btn-success.focus,.btn-success:focus,.btn-success:hover{background-color:#0d9668;border-color:#0c8a60;color:#fff}.btn-success.focus,.btn-success:focus{box-shadow:0 0 0 0 rgba(52,196,148,.5)}.btn-success.disabled,.btn-success:disabled{background-color:#10b981;border-color:#10b981;color:#fff}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{background-color:#0c8a60;border-color:#0b7e58;color:#fff}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(52,196,148,.5)}.btn-info{background-color:#3b82f6;border-color:#3b82f6;color:#fff}.btn-info.focus,.btn-info:focus,.btn-info:hover{background-color:#166bf4;border-color:#0b63f3;color:#fff}.btn-info.focus,.btn-info:focus{box-shadow:0 0 0 0 rgba(88,149,247,.5)}.btn-info.disabled,.btn-info:disabled{background-color:#3b82f6;border-color:#3b82f6;color:#fff}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{background-color:#0b63f3;border-color:#0b5ee7;color:#fff}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(88,149,247,.5)}.btn-warning{background-color:#f59e0b;border-color:#f59e0b;color:#111827}.btn-warning.focus,.btn-warning:focus,.btn-warning:hover{background-color:#d18709;border-color:#c57f08;color:#fff}.btn-warning.focus,.btn-warning:focus{box-shadow:0 0 0 0 rgba(211,138,15,.5)}.btn-warning.disabled,.btn-warning:disabled{background-color:#f59e0b;border-color:#f59e0b;color:#111827}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{background-color:#c57f08;border-color:#b97708;color:#fff}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(211,138,15,.5)}.btn-danger{background-color:#ef4444;border-color:#ef4444;color:#fff}.btn-danger.focus,.btn-danger:focus,.btn-danger:hover{background-color:#ec2121;border-color:#eb1515;color:#fff}.btn-danger.focus,.btn-danger:focus{box-shadow:0 0 0 0 rgba(241,96,96,.5)}.btn-danger.disabled,.btn-danger:disabled{background-color:#ef4444;border-color:#ef4444;color:#fff}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{background-color:#eb1515;border-color:#e01313;color:#fff}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(241,96,96,.5)}.btn-light{background-color:#f3f4f6;border-color:#f3f4f6;color:#111827}.btn-light.focus,.btn-light:focus,.btn-light:hover{background-color:#dde0e6;border-color:#d6d9e0;color:#111827}.btn-light.focus,.btn-light:focus{box-shadow:0 0 0 0 hsla(220,7%,83%,.5)}.btn-light.disabled,.btn-light:disabled{background-color:#f3f4f6;border-color:#f3f4f6;color:#111827}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{background-color:#d6d9e0;border-color:#cfd3db;color:#111827}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 0 hsla(220,7%,83%,.5)}.btn-dark{background-color:#1f2937;border-color:#1f2937;color:#fff}.btn-dark.focus,.btn-dark:focus,.btn-dark:hover{background-color:#11171f;border-color:#0d1116;color:#fff}.btn-dark.focus,.btn-dark:focus{box-shadow:0 0 0 0 rgba(65,73,85,.5)}.btn-dark.disabled,.btn-dark:disabled{background-color:#1f2937;border-color:#1f2937;color:#fff}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{background-color:#0d1116;border-color:#080b0e;color:#fff}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(65,73,85,.5)}.btn-outline-primary{border-color:#7746ec;color:#7746ec}.btn-outline-primary:hover{background-color:#7746ec;border-color:#7746ec;color:#fff}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 0 rgba(119,70,236,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{background-color:transparent;color:#7746ec}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{background-color:#7746ec;border-color:#7746ec;color:#fff}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(119,70,236,.5)}.btn-outline-secondary{border-color:#6b7280;color:#6b7280}.btn-outline-secondary:hover{background-color:#6b7280;border-color:#6b7280;color:#fff}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 0 hsla(220,9%,46%,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{background-color:transparent;color:#6b7280}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{background-color:#6b7280;border-color:#6b7280;color:#fff}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 0 hsla(220,9%,46%,.5)}.btn-outline-success{border-color:#10b981;color:#10b981}.btn-outline-success:hover{background-color:#10b981;border-color:#10b981;color:#fff}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 0 rgba(16,185,129,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{background-color:transparent;color:#10b981}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{background-color:#10b981;border-color:#10b981;color:#fff}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(16,185,129,.5)}.btn-outline-info{border-color:#3b82f6;color:#3b82f6}.btn-outline-info:hover{background-color:#3b82f6;border-color:#3b82f6;color:#fff}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 0 rgba(59,130,246,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{background-color:transparent;color:#3b82f6}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{background-color:#3b82f6;border-color:#3b82f6;color:#fff}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(59,130,246,.5)}.btn-outline-warning{border-color:#f59e0b;color:#f59e0b}.btn-outline-warning:hover{background-color:#f59e0b;border-color:#f59e0b;color:#111827}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 0 rgba(245,158,11,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{background-color:transparent;color:#f59e0b}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{background-color:#f59e0b;border-color:#f59e0b;color:#111827}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(245,158,11,.5)}.btn-outline-danger{border-color:#ef4444;color:#ef4444}.btn-outline-danger:hover{background-color:#ef4444;border-color:#ef4444;color:#fff}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 0 rgba(239,68,68,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{background-color:transparent;color:#ef4444}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{background-color:#ef4444;border-color:#ef4444;color:#fff}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(239,68,68,.5)}.btn-outline-light{border-color:#f3f4f6;color:#f3f4f6}.btn-outline-light:hover{background-color:#f3f4f6;border-color:#f3f4f6;color:#111827}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 0 rgba(243,244,246,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{background-color:transparent;color:#f3f4f6}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{background-color:#f3f4f6;border-color:#f3f4f6;color:#111827}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(243,244,246,.5)}.btn-outline-dark{border-color:#1f2937;color:#1f2937}.btn-outline-dark:hover{background-color:#1f2937;border-color:#1f2937;color:#fff}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 0 rgba(31,41,55,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{background-color:transparent;color:#1f2937}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{background-color:#1f2937;border-color:#1f2937;color:#fff}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(31,41,55,.5)}.btn-link{color:#7746ec;font-weight:400;text-decoration:none}.btn-link:hover{color:#4d15d0}.btn-link.focus,.btn-link:focus,.btn-link:hover{text-decoration:underline}.btn-link.disabled,.btn-link:disabled{color:#4b5563;pointer-events:none}.btn-group-lg>.btn,.btn-lg{border-radius:6px;font-size:1.25rem;line-height:1.5;padding:.5rem 1rem}.btn-group-sm>.btn,.btn-sm{border-radius:.2rem;font-size:.875rem;line-height:1.5;padding:.25rem .5rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;position:relative;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.width{height:auto;transition:width .35s ease;width:0}@media (prefers-reduced-motion:reduce){.collapsing.width{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle:after{border-bottom:0;border-left:.3em solid transparent;border-right:.3em solid transparent;border-top:.3em solid;content:"";display:inline-block;margin-left:.255em;vertical-align:.255em}.dropdown-toggle:empty:after{margin-left:0}.dropdown-menu{background-clip:padding-box;background-color:#fff;border:1px solid rgba(0,0,0,.15);border-radius:.25rem;color:#111827;display:none;float:left;font-size:1rem;left:0;list-style:none;margin:.125rem 0 0;min-width:10rem;padding:.5rem 0;position:absolute;text-align:left;top:100%;z-index:1000}.dropdown-menu-left{left:0;right:auto}.dropdown-menu-right{left:auto;right:0}@media (min-width:2px){.dropdown-menu-sm-left{left:0;right:auto}.dropdown-menu-sm-right{left:auto;right:0}}@media (min-width:8px){.dropdown-menu-md-left{left:0;right:auto}.dropdown-menu-md-right{left:auto;right:0}}@media (min-width:9px){.dropdown-menu-lg-left{left:0;right:auto}.dropdown-menu-lg-right{left:auto;right:0}}@media (min-width:10px){.dropdown-menu-xl-left{left:0;right:auto}.dropdown-menu-xl-right{left:auto;right:0}}.dropup .dropdown-menu{bottom:100%;margin-bottom:.125rem;margin-top:0;top:auto}.dropup .dropdown-toggle:after{border-bottom:.3em solid;border-left:.3em solid transparent;border-right:.3em solid transparent;border-top:0;content:"";display:inline-block;margin-left:.255em;vertical-align:.255em}.dropup .dropdown-toggle:empty:after{margin-left:0}.dropright .dropdown-menu{left:100%;margin-left:.125rem;margin-top:0;right:auto;top:0}.dropright .dropdown-toggle:after{border-bottom:.3em solid transparent;border-left:.3em solid;border-right:0;border-top:.3em solid transparent;content:"";display:inline-block;margin-left:.255em;vertical-align:.255em}.dropright .dropdown-toggle:empty:after{margin-left:0}.dropright .dropdown-toggle:after{vertical-align:0}.dropleft .dropdown-menu{left:auto;margin-right:.125rem;margin-top:0;right:100%;top:0}.dropleft .dropdown-toggle:after{content:"";display:inline-block;display:none;margin-left:.255em;vertical-align:.255em}.dropleft .dropdown-toggle:before{border-bottom:.3em solid transparent;border-right:.3em solid;border-top:.3em solid transparent;content:"";display:inline-block;margin-right:.255em;vertical-align:.255em}.dropleft .dropdown-toggle:empty:after{margin-left:0}.dropleft .dropdown-toggle:before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{bottom:auto;right:auto}.dropdown-divider{border-top:1px solid #e5e7eb;height:0;margin:.5rem 0;overflow:hidden}.dropdown-item{background-color:transparent;border:0;clear:both;color:#374151;display:block;font-weight:400;padding:.25rem 1.5rem;text-align:inherit;white-space:nowrap;width:100%}.dropdown-item:focus,.dropdown-item:hover{background-color:#e5e7eb;color:#090d15;text-decoration:none}.dropdown-item.active,.dropdown-item:active{background-color:#7746ec;color:#fff;text-decoration:none}.dropdown-item.disabled,.dropdown-item:disabled{background-color:transparent;color:#6b7280;pointer-events:none}.dropdown-menu.show{display:block}.dropdown-header{color:#4b5563;display:block;font-size:.875rem;margin-bottom:0;padding:.5rem 1.5rem;white-space:nowrap}.dropdown-item-text{color:#374151;display:block;padding:.25rem 1.5rem}.btn-group,.btn-group-vertical{display:inline-flex;position:relative;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{flex:1 1 auto;position:relative}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.dropdown-toggle-split{padding-left:.5625rem;padding-right:.5625rem}.dropdown-toggle-split:after,.dropright .dropdown-toggle-split:after,.dropup .dropdown-toggle-split:after{margin-left:0}.dropleft .dropdown-toggle-split:before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-left:.375rem;padding-right:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-left:.75rem;padding-right:.75rem}.btn-group-vertical{align-items:flex-start;flex-direction:column;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-left-radius:0;border-bottom-right-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio]{clip:rect(0,0,0,0);pointer-events:none;position:absolute}.input-group{align-items:stretch;display:flex;flex-wrap:wrap;position:relative;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{flex:1 1 auto;margin-bottom:0;min-width:0;position:relative;width:1%}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.input-group>.custom-file{align-items:center;display:flex}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label:after{border-bottom-right-radius:0;border-top-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-bottom-left-radius:0;border-top-left-radius:0}.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label,.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label:after,.input-group.has-validation>.custom-select:nth-last-child(n+3),.input-group.has-validation>.form-control:nth-last-child(n+3),.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label,.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label:after,.input-group:not(.has-validation)>.custom-select:not(:last-child),.input-group:not(.has-validation)>.form-control:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.input-group-append,.input-group-prepend{display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{align-items:center;background-color:#e5e7eb;border:1px solid #d1d5db;border-radius:.25rem;color:#1f2937;display:flex;font-size:1rem;font-weight:400;line-height:1.5;margin-bottom:0;padding:.375rem .75rem;text-align:center;white-space:nowrap}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{border-radius:6px;font-size:1.25rem;line-height:1.5;padding:.5rem 1rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + .5rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{border-radius:.2rem;font-size:.875rem;line-height:1.5;padding:.25rem .5rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-bottom-right-radius:0;border-top-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-bottom-left-radius:0;border-top-left-radius:0}.custom-control{display:block;min-height:1.5rem;padding-left:1.5rem;position:relative;-webkit-print-color-adjust:exact;print-color-adjust:exact;z-index:1}.custom-control-inline{display:inline-flex;margin-right:1rem}.custom-control-input{height:1.25rem;left:0;opacity:0;position:absolute;width:1rem;z-index:-1}.custom-control-input:checked~.custom-control-label:before{background-color:#7746ec;border-color:#7746ec;color:#fff}.custom-control-input:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(119,70,236,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label:before{border-color:#ccbaf8}.custom-control-input:not(:disabled):active~.custom-control-label:before{background-color:#eee8fd;border-color:#eee8fd;color:#fff}.custom-control-input:disabled~.custom-control-label,.custom-control-input[disabled]~.custom-control-label{color:#4b5563}.custom-control-input:disabled~.custom-control-label:before,.custom-control-input[disabled]~.custom-control-label:before{background-color:#e5e7eb}.custom-control-label{margin-bottom:0;position:relative;vertical-align:top}.custom-control-label:before{background-color:#fff;border:1px solid #6b7280;pointer-events:none}.custom-control-label:after,.custom-control-label:before{content:"";display:block;height:1rem;left:-1.5rem;position:absolute;top:.25rem;width:1rem}.custom-control-label:after{background:50%/50% 50% no-repeat}.custom-checkbox .custom-control-label:before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%23fff' d='m6.564.75-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label:before{background-color:#7746ec;border-color:#7746ec}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(119,70,236,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label:before{background-color:rgba(119,70,236,.5)}.custom-radio .custom-control-label:before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(119,70,236,.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label:before{border-radius:.5rem;left:-2.25rem;pointer-events:all;width:1.75rem}.custom-switch .custom-control-label:after{background-color:#6b7280;border-radius:.5rem;height:calc(1rem - 4px);left:calc(-2.25rem + 2px);top:calc(.25rem + 2px);transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:calc(1rem - 4px)}@media (prefers-reduced-motion:reduce){.custom-switch .custom-control-label:after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label:after{background-color:#fff;transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(119,70,236,.5)}.custom-select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:#fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%231f2937' d='M2 0 0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat;border:1px solid #d1d5db;border-radius:.25rem;color:#1f2937;display:inline-block;font-size:1rem;font-weight:400;height:calc(1.5em + .75rem + 2px);line-height:1.5;padding:.375rem 1.75rem .375rem .75rem;vertical-align:middle;width:100%}.custom-select:focus{border-color:#ccbaf8;box-shadow:0 0 0 .2rem rgba(119,70,236,.25);outline:0}.custom-select:focus::-ms-value{background-color:#fff;color:#1f2937}.custom-select[multiple],.custom-select[size]:not([size="1"]){background-image:none;height:auto;padding-right:.75rem}.custom-select:disabled{background-color:#e5e7eb;color:#4b5563}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #1f2937}.custom-select-sm{font-size:.875rem;height:calc(1.5em + .5rem + 2px);padding-bottom:.25rem;padding-left:.5rem;padding-top:.25rem}.custom-select-lg{font-size:1.25rem;height:calc(1.5em + 1rem + 2px);padding-bottom:.5rem;padding-left:1rem;padding-top:.5rem}.custom-file{display:inline-block;margin-bottom:0}.custom-file,.custom-file-input{height:calc(1.5em + .75rem + 2px);position:relative;width:100%}.custom-file-input{margin:0;opacity:0;overflow:hidden;z-index:2}.custom-file-input:focus~.custom-file-label{border-color:#ccbaf8;box-shadow:0 0 0 .2rem rgba(119,70,236,.25)}.custom-file-input:disabled~.custom-file-label,.custom-file-input[disabled]~.custom-file-label{background-color:#e5e7eb}.custom-file-input:lang(en)~.custom-file-label:after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]:after{content:attr(data-browse)}.custom-file-label{background-color:#fff;border:1px solid #d1d5db;border-radius:.25rem;font-weight:400;height:calc(1.5em + .75rem + 2px);left:0;overflow:hidden;z-index:1}.custom-file-label,.custom-file-label:after{color:#1f2937;line-height:1.5;padding:.375rem .75rem;position:absolute;right:0;top:0}.custom-file-label:after{background-color:#e5e7eb;border-left:inherit;border-radius:0 .25rem .25rem 0;bottom:0;content:"Browse";display:block;height:calc(1.5em + .75rem);z-index:3}.custom-range{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;height:1.4rem;padding:0;width:100%}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #f3f4f6,0 0 0 .2rem rgba(119,70,236,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #f3f4f6,0 0 0 .2rem rgba(119,70,236,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #f3f4f6,0 0 0 .2rem rgba(119,70,236,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;background-color:#7746ec;border:0;border-radius:1rem;height:1rem;margin-top:-.25rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:1rem}@media (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#eee8fd}.custom-range::-webkit-slider-runnable-track{background-color:#d1d5db;border-color:transparent;border-radius:1rem;color:transparent;cursor:pointer;height:.5rem;width:100%}.custom-range::-moz-range-thumb{-moz-appearance:none;appearance:none;background-color:#7746ec;border:0;border-radius:1rem;height:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:1rem}@media (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{-moz-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background-color:#eee8fd}.custom-range::-moz-range-track{background-color:#d1d5db;border-color:transparent;border-radius:1rem;color:transparent;cursor:pointer;height:.5rem;width:100%}.custom-range::-ms-thumb{appearance:none;background-color:#7746ec;border:0;border-radius:1rem;height:1rem;margin-left:.2rem;margin-right:.2rem;margin-top:0;-ms-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:1rem}@media (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{-ms-transition:none;transition:none}}.custom-range::-ms-thumb:active{background-color:#eee8fd}.custom-range::-ms-track{background-color:transparent;border-color:transparent;border-width:.5rem;color:transparent;cursor:pointer;height:.5rem;width:100%}.custom-range::-ms-fill-lower,.custom-range::-ms-fill-upper{background-color:#d1d5db;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px}.custom-range:disabled::-webkit-slider-thumb{background-color:#6b7280}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#6b7280}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#6b7280}.custom-control-label:before,.custom-file-label,.custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-control-label:before,.custom-file-label,.custom-select{transition:none}}.nav{display:flex;flex-wrap:wrap;list-style:none;margin-bottom:0;padding-left:0}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#4b5563;cursor:default;pointer-events:none}.nav-tabs{border-bottom:1px solid #d1d5db}.nav-tabs .nav-link{background-color:transparent;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem;margin-bottom:-1px}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e5e7eb #e5e7eb #d1d5db;isolation:isolate}.nav-tabs .nav-link.disabled{background-color:transparent;border-color:transparent;color:#4b5563}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{background-color:#f3f4f6;border-color:#d1d5db #d1d5db #f3f4f6;color:#374151}.nav-tabs .dropdown-menu{border-top-left-radius:0;border-top-right-radius:0;margin-top:-1px}.nav-pills .nav-link{background:none;border:0;border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{background-color:#e5e7eb;color:#fff}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{padding:.5rem 1rem;position:relative}.navbar,.navbar .container,.navbar .container-fluid,.navbar .container-lg,.navbar .container-md,.navbar .container-sm,.navbar .container-xl{align-items:center;display:flex;flex-wrap:wrap;justify-content:space-between}.navbar-brand{display:inline-block;font-size:1.25rem;line-height:inherit;margin-right:1rem;padding-bottom:.3125rem;padding-top:.3125rem;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:flex;flex-direction:column;list-style:none;margin-bottom:0;padding-left:0}.navbar-nav .nav-link{padding-left:0;padding-right:0}.navbar-nav .dropdown-menu{float:none;position:static}.navbar-text{display:inline-block;padding-bottom:.5rem;padding-top:.5rem}.navbar-collapse{align-items:center;flex-basis:100%;flex-grow:1}.navbar-toggler{background-color:transparent;border:1px solid transparent;border-radius:.25rem;font-size:1.25rem;line-height:1;padding:.25rem .75rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler-icon{background:50%/100% 100% no-repeat;content:"";display:inline-block;height:1.5em;vertical-align:middle;width:1.5em}.navbar-nav-scroll{max-height:75vh;overflow-y:auto}@media (max-width:1.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{padding-left:0;padding-right:0}}@media (min-width:2px){.navbar-expand-sm{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{flex-wrap:nowrap}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:7.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{padding-left:0;padding-right:0}}@media (min-width:8px){.navbar-expand-md{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{flex-wrap:nowrap}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width:8.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{padding-left:0;padding-right:0}}@media (min-width:9px){.navbar-expand-lg{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{flex-wrap:nowrap}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:9.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{padding-left:0;padding-right:0}}@media (min-width:10px){.navbar-expand-xl{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{flex-wrap:nowrap}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{padding-left:0;padding-right:0}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{flex-wrap:nowrap}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand,.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{border-color:rgba(0,0,0,.1);color:rgba(0,0,0,.5)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand,.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:hsla(0,0%,100%,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:hsla(0,0%,100%,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:hsla(0,0%,100%,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{border-color:hsla(0,0%,100%,.1);color:hsla(0,0%,100%,.5)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-dark .navbar-text{color:hsla(0,0%,100%,.5)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{word-wrap:break-word;background-clip:border-box;background-color:#fff;border:1px solid rgba(0,0,0,.125);border-radius:6px;display:flex;flex-direction:column;min-width:0;position:relative}.card>hr{margin-left:0;margin-right:0}.card>.list-group{border-bottom:inherit;border-top:inherit}.card>.list-group:first-child{border-top-left-radius:5px;border-top-right-radius:5px;border-top-width:0}.card>.list-group:last-child{border-bottom-left-radius:5px;border-bottom-right-radius:5px;border-bottom-width:0}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;min-height:1px;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem}.card-subtitle,.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{background-color:#fff;border-bottom:1px solid rgba(0,0,0,.125);margin-bottom:0;padding:.75rem 1.25rem}.card-header:first-child{border-radius:5px 5px 0 0}.card-footer{background-color:#fff;border-top:1px solid rgba(0,0,0,.125);padding:.75rem 1.25rem}.card-footer:last-child{border-radius:0 0 5px 5px}.card-header-tabs{border-bottom:0;margin-bottom:-.75rem}.card-header-pills,.card-header-tabs{margin-left:-.625rem;margin-right:-.625rem}.card-img-overlay{border-radius:5px;bottom:0;left:0;padding:1.25rem;position:absolute;right:0;top:0}.card-img,.card-img-bottom,.card-img-top{flex-shrink:0;width:100%}.card-img,.card-img-top{border-top-left-radius:5px;border-top-right-radius:5px}.card-img,.card-img-bottom{border-bottom-left-radius:5px;border-bottom-right-radius:5px}.card-deck .card{margin-bottom:15px}@media (min-width:2px){.card-deck{display:flex;flex-flow:row wrap;margin-left:-15px;margin-right:-15px}.card-deck .card{flex:1 0 0%;margin-bottom:0;margin-left:15px;margin-right:15px}}.card-group>.card{margin-bottom:15px}@media (min-width:2px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{border-left:0;margin-left:0}.card-group>.card:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width:2px){.card-columns{-moz-column-count:3;column-count:3;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion{overflow-anchor:none}.accordion>.card{overflow:hidden}.accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-left-radius:0;border-bottom-right-radius:0}.accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.breadcrumb{background-color:#e5e7eb;border-radius:.25rem;display:flex;flex-wrap:wrap;list-style:none;margin-bottom:1rem;padding:.75rem 1rem}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item:before{color:#4b5563;content:"/";float:left;padding-right:.5rem}.breadcrumb-item+.breadcrumb-item:hover:before{text-decoration:underline;text-decoration:none}.breadcrumb-item.active{color:#4b5563}.pagination{border-radius:.25rem;display:flex;list-style:none;padding-left:0}.page-link{background-color:#fff;border:1px solid #d1d5db;color:#7746ec;display:block;line-height:1.25;margin-left:-1px;padding:.5rem .75rem;position:relative}.page-link:hover{background-color:#e5e7eb;border-color:#d1d5db;color:#4d15d0;text-decoration:none;z-index:2}.page-link:focus{box-shadow:0 0 0 .2rem rgba(119,70,236,.25);outline:0;z-index:3}.page-item:first-child .page-link{border-bottom-left-radius:.25rem;border-top-left-radius:.25rem;margin-left:0}.page-item:last-child .page-link{border-bottom-right-radius:.25rem;border-top-right-radius:.25rem}.page-item.active .page-link{background-color:#7746ec;border-color:#7746ec;color:#fff;z-index:3}.page-item.disabled .page-link{background-color:#fff;border-color:#d1d5db;color:#4b5563;cursor:auto;pointer-events:none}.pagination-lg .page-link{font-size:1.25rem;line-height:1.5;padding:.75rem 1.5rem}.pagination-lg .page-item:first-child .page-link{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg .page-item:last-child .page-link{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-sm .page-link{font-size:.875rem;line-height:1.5;padding:.25rem .5rem}.pagination-sm .page-item:first-child .page-link{border-bottom-left-radius:.2rem;border-top-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-bottom-right-radius:.2rem;border-top-right-radius:.2rem}.badge{border-radius:.25rem;display:inline-block;font-size:.875rem;font-weight:600;line-height:1;padding:.25em .4em;text-align:center;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;vertical-align:baseline;white-space:nowrap}@media (prefers-reduced-motion:reduce){.badge{transition:none}}a.badge:focus,a.badge:hover{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{border-radius:10rem;padding-left:.6em;padding-right:.6em}.badge-primary{background-color:#7746ec;color:#fff}a.badge-primary:focus,a.badge-primary:hover{background-color:#5518e7;color:#fff}a.badge-primary.focus,a.badge-primary:focus{box-shadow:0 0 0 .2rem rgba(119,70,236,.5);outline:0}.badge-secondary{background-color:#6b7280;color:#fff}a.badge-secondary:focus,a.badge-secondary:hover{background-color:#545964;color:#fff}a.badge-secondary.focus,a.badge-secondary:focus{box-shadow:0 0 0 .2rem hsla(220,9%,46%,.5);outline:0}.badge-success{background-color:#10b981;color:#fff}a.badge-success:focus,a.badge-success:hover{background-color:#0c8a60;color:#fff}a.badge-success.focus,a.badge-success:focus{box-shadow:0 0 0 .2rem rgba(16,185,129,.5);outline:0}.badge-info{background-color:#3b82f6;color:#fff}a.badge-info:focus,a.badge-info:hover{background-color:#0b63f3;color:#fff}a.badge-info.focus,a.badge-info:focus{box-shadow:0 0 0 .2rem rgba(59,130,246,.5);outline:0}.badge-warning{background-color:#f59e0b;color:#111827}a.badge-warning:focus,a.badge-warning:hover{background-color:#c57f08;color:#111827}a.badge-warning.focus,a.badge-warning:focus{box-shadow:0 0 0 .2rem rgba(245,158,11,.5);outline:0}.badge-danger{background-color:#ef4444;color:#fff}a.badge-danger:focus,a.badge-danger:hover{background-color:#eb1515;color:#fff}a.badge-danger.focus,a.badge-danger:focus{box-shadow:0 0 0 .2rem rgba(239,68,68,.5);outline:0}.badge-light{background-color:#f3f4f6;color:#111827}a.badge-light:focus,a.badge-light:hover{background-color:#d6d9e0;color:#111827}a.badge-light.focus,a.badge-light:focus{box-shadow:0 0 0 .2rem rgba(243,244,246,.5);outline:0}.badge-dark{background-color:#1f2937;color:#fff}a.badge-dark:focus,a.badge-dark:hover{background-color:#0d1116;color:#fff}a.badge-dark.focus,a.badge-dark:focus{box-shadow:0 0 0 .2rem rgba(31,41,55,.5);outline:0}.jumbotron{background-color:#e5e7eb;border-radius:6px;margin-bottom:2rem;padding:2rem 1rem}@media (min-width:2px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{border-radius:0;padding-left:0;padding-right:0}.alert{border:1px solid transparent;border-radius:.25rem;margin-bottom:1rem;padding:.75rem 1.25rem;position:relative}.alert-heading{color:inherit}.alert-link{font-weight:600}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{color:inherit;padding:.75rem 1.25rem;position:absolute;right:0;top:0;z-index:2}.alert-primary{background-color:#e4dafb;border-color:#d9cbfa;color:#3e247b}.alert-primary hr{border-top-color:#c8b4f8}.alert-primary .alert-link{color:#2a1854}.alert-secondary{background-color:#e1e3e6;border-color:#d6d8db;color:#383b43}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#212327}.alert-success{background-color:#cff1e6;border-color:#bcebdc;color:#086043}.alert-success hr{border-top-color:#a8e5d2}.alert-success .alert-link{color:#043122}.alert-info{background-color:#d8e6fd;border-color:#c8dcfc;color:#1f4480}.alert-info hr{border-top-color:#b0cdfb}.alert-info .alert-link{color:#152e57}.alert-warning{background-color:#fdecce;border-color:#fce4bb;color:#7f5206}.alert-warning hr{border-top-color:#fbdaa3}.alert-warning .alert-link{color:#4e3304}.alert-danger{background-color:#fcdada;border-color:#fbcbcb;color:#7c2323}.alert-danger hr{border-top-color:#f9b3b3}.alert-danger .alert-link{color:#541818}.alert-light{background-color:#fdfdfd;border-color:#fcfcfc;color:#7e7f80}.alert-light hr{border-top-color:#efefef}.alert-light .alert-link{color:#656666}.alert-dark{background-color:#d2d4d7;border-color:#c0c3c7;color:#10151d}.alert-dark hr{border-top-color:#b3b6bb}.alert-dark .alert-link{color:#000}@keyframes progress-bar-stripes{0%{background-position:1rem 0}to{background-position:0 0}}.progress{background-color:#e5e7eb;border-radius:.25rem;font-size:.75rem;height:1rem;line-height:0}.progress,.progress-bar{display:flex;overflow:hidden}.progress-bar{background-color:#7746ec;color:#fff;flex-direction:column;justify-content:center;text-align:center;transition:width .6s ease;white-space:nowrap}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:1rem 1rem}.progress-bar-animated{animation:progress-bar-stripes 1s linear infinite}@media (prefers-reduced-motion:reduce){.progress-bar-animated{animation:none}}.media{align-items:flex-start;display:flex}.media-body{flex:1}.list-group{border-radius:.25rem;display:flex;flex-direction:column;margin-bottom:0;padding-left:0}.list-group-item-action{color:#374151;text-align:inherit;width:100%}.list-group-item-action:focus,.list-group-item-action:hover{background-color:#f3f4f6;color:#374151;text-decoration:none;z-index:1}.list-group-item-action:active{background-color:#e5e7eb;color:#111827}.list-group-item{background-color:#fff;border:1px solid rgba(0,0,0,.125);display:block;padding:.75rem 1.25rem;position:relative}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{background-color:#fff;color:#4b5563;pointer-events:none}.list-group-item.active{background-color:#7746ec;border-color:#7746ec;color:#fff;z-index:2}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{border-top-width:1px;margin-top:-1px}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-bottom-left-radius:0;border-top-right-radius:.25rem}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-left-width:0;border-top-width:1px}.list-group-horizontal>.list-group-item+.list-group-item.active{border-left-width:1px;margin-left:-1px}@media (min-width:2px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-bottom-left-radius:0;border-top-right-radius:.25rem}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-left-width:0;border-top-width:1px}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{border-left-width:1px;margin-left:-1px}}@media (min-width:8px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-bottom-left-radius:0;border-top-right-radius:.25rem}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-left-width:0;border-top-width:1px}.list-group-horizontal-md>.list-group-item+.list-group-item.active{border-left-width:1px;margin-left:-1px}}@media (min-width:9px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-bottom-left-radius:0;border-top-right-radius:.25rem}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-left-width:0;border-top-width:1px}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{border-left-width:1px;margin-left:-1px}}@media (min-width:10px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-bottom-left-radius:0;border-top-right-radius:.25rem}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-left-width:0;border-top-width:1px}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{border-left-width:1px;margin-left:-1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{background-color:#d9cbfa;color:#3e247b}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{background-color:#c8b4f8;color:#3e247b}.list-group-item-primary.list-group-item-action.active{background-color:#3e247b;border-color:#3e247b;color:#fff}.list-group-item-secondary{background-color:#d6d8db;color:#383b43}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{background-color:#c8cbcf;color:#383b43}.list-group-item-secondary.list-group-item-action.active{background-color:#383b43;border-color:#383b43;color:#fff}.list-group-item-success{background-color:#bcebdc;color:#086043}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{background-color:#a8e5d2;color:#086043}.list-group-item-success.list-group-item-action.active{background-color:#086043;border-color:#086043;color:#fff}.list-group-item-info{background-color:#c8dcfc;color:#1f4480}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{background-color:#b0cdfb;color:#1f4480}.list-group-item-info.list-group-item-action.active{background-color:#1f4480;border-color:#1f4480;color:#fff}.list-group-item-warning{background-color:#fce4bb;color:#7f5206}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{background-color:#fbdaa3;color:#7f5206}.list-group-item-warning.list-group-item-action.active{background-color:#7f5206;border-color:#7f5206;color:#fff}.list-group-item-danger{background-color:#fbcbcb;color:#7c2323}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{background-color:#f9b3b3;color:#7c2323}.list-group-item-danger.list-group-item-action.active{background-color:#7c2323;border-color:#7c2323;color:#fff}.list-group-item-light{background-color:#fcfcfc;color:#7e7f80}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{background-color:#efefef;color:#7e7f80}.list-group-item-light.list-group-item-action.active{background-color:#7e7f80;border-color:#7e7f80;color:#fff}.list-group-item-dark{background-color:#c0c3c7;color:#10151d}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{background-color:#b3b6bb;color:#10151d}.list-group-item-dark.list-group-item-action.active{background-color:#10151d;border-color:#10151d;color:#fff}.close{color:#000;float:right;font-size:1.5rem;font-weight:600;line-height:1;opacity:.5;text-shadow:0 1px 0 #fff}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{background-color:transparent;border:0;padding:0}a.close.disabled{pointer-events:none}.toast{background-clip:padding-box;background-color:hsla(0,0%,100%,.85);border:1px solid rgba(0,0,0,.1);border-radius:.25rem;box-shadow:0 .25rem .75rem rgba(0,0,0,.1);flex-basis:350px;font-size:.875rem;max-width:350px;opacity:0}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{align-items:center;background-clip:padding-box;background-color:hsla(0,0%,100%,.85);border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px);color:#4b5563;display:flex;padding:.25rem .75rem}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{display:none;height:100%;left:0;outline:0;overflow:hidden;position:fixed;top:0;width:100%;z-index:1050}.modal-dialog{margin:.5rem;pointer-events:none;position:relative;width:auto}.modal.fade .modal-dialog{transform:translateY(-50px);transition:transform .3s ease-out}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header{flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{align-items:center;display:flex;min-height:calc(100% - 1rem)}.modal-dialog-centered:before{content:"";display:block;height:calc(100vh - 1rem);height:-moz-min-content;height:min-content}.modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;height:100%;justify-content:center}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable:before{content:none}.modal-content{background-clip:padding-box;background-color:#fff;border:1px solid rgba(0,0,0,.2);border-radius:6px;display:flex;flex-direction:column;outline:0;pointer-events:auto;position:relative;width:100%}.modal-backdrop{background-color:#000;height:100vh;left:0;position:fixed;top:0;width:100vw;z-index:1040}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{align-items:flex-start;border-bottom:1px solid #d1d5db;border-top-left-radius:5px;border-top-right-radius:5px;display:flex;justify-content:space-between;padding:1rem}.modal-header .close{margin:-1rem -1rem -1rem auto;padding:1rem}.modal-title{line-height:1.5;margin-bottom:0}.modal-body{flex:1 1 auto;padding:1rem;position:relative}.modal-footer{align-items:center;border-bottom-left-radius:5px;border-bottom-right-radius:5px;border-top:1px solid #d1d5db;display:flex;flex-wrap:wrap;justify-content:flex-end;padding:.75rem}.modal-footer>*{margin:.25rem}.modal-scrollbar-measure{height:50px;overflow:scroll;position:absolute;top:-9999px;width:50px}@media (min-width:2px){.modal-dialog{margin:1.75rem auto;max-width:500px}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered:before{height:calc(100vh - 3.5rem);height:-moz-min-content;height:min-content}.modal-sm{max-width:300px}}@media (min-width:9px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:10px){.modal-xl{max-width:1140px}}.tooltip{word-wrap:break-word;display:block;font-family:Figtree,sans-serif;font-size:.875rem;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.5;margin:0;opacity:0;position:absolute;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;z-index:1070}.tooltip.show{opacity:.9}.tooltip .arrow{display:block;height:.4rem;position:absolute;width:.8rem}.tooltip .arrow:before{border-color:transparent;border-style:solid;content:"";position:absolute}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow:before,.bs-tooltip-top .arrow:before{border-top-color:#000;border-width:.4rem .4rem 0;top:0}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{height:.8rem;left:0;width:.4rem}.bs-tooltip-auto[x-placement^=right] .arrow:before,.bs-tooltip-right .arrow:before{border-right-color:#000;border-width:.4rem .4rem .4rem 0;right:0}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow:before,.bs-tooltip-bottom .arrow:before{border-bottom-color:#000;border-width:0 .4rem .4rem;bottom:0}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{height:.8rem;right:0;width:.4rem}.bs-tooltip-auto[x-placement^=left] .arrow:before,.bs-tooltip-left .arrow:before{border-left-color:#000;border-width:.4rem 0 .4rem .4rem;left:0}.tooltip-inner{background-color:#000;border-radius:.25rem;color:#fff;max-width:200px;padding:.25rem .5rem;text-align:center}.popover{word-wrap:break-word;background-clip:padding-box;background-color:#fff;border:1px solid rgba(0,0,0,.2);border-radius:6px;font-family:Figtree,sans-serif;font-size:.875rem;font-style:normal;font-weight:400;left:0;letter-spacing:normal;line-break:auto;line-height:1.5;max-width:276px;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;top:0;white-space:normal;word-break:normal;word-spacing:normal;z-index:1060}.popover,.popover .arrow{display:block;position:absolute}.popover .arrow{height:.5rem;margin:0 6px;width:1rem}.popover .arrow:after,.popover .arrow:before{border-color:transparent;border-style:solid;content:"";display:block;position:absolute}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=top]>.arrow:before,.bs-popover-top>.arrow:before{border-top-color:rgba(0,0,0,.25);border-width:.5rem .5rem 0;bottom:0}.bs-popover-auto[x-placement^=top]>.arrow:after,.bs-popover-top>.arrow:after{border-top-color:#fff;border-width:.5rem .5rem 0;bottom:1px}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{height:1rem;left:calc(-.5rem - 1px);margin:6px 0;width:.5rem}.bs-popover-auto[x-placement^=right]>.arrow:before,.bs-popover-right>.arrow:before{border-right-color:rgba(0,0,0,.25);border-width:.5rem .5rem .5rem 0;left:0}.bs-popover-auto[x-placement^=right]>.arrow:after,.bs-popover-right>.arrow:after{border-right-color:#fff;border-width:.5rem .5rem .5rem 0;left:1px}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=bottom]>.arrow:before,.bs-popover-bottom>.arrow:before{border-bottom-color:rgba(0,0,0,.25);border-width:0 .5rem .5rem;top:0}.bs-popover-auto[x-placement^=bottom]>.arrow:after,.bs-popover-bottom>.arrow:after{border-bottom-color:#fff;border-width:0 .5rem .5rem;top:1px}.bs-popover-auto[x-placement^=bottom] .popover-header:before,.bs-popover-bottom .popover-header:before{border-bottom:1px solid #f7f7f7;content:"";display:block;left:50%;margin-left:-.5rem;position:absolute;top:0;width:1rem}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{height:1rem;margin:6px 0;right:calc(-.5rem - 1px);width:.5rem}.bs-popover-auto[x-placement^=left]>.arrow:before,.bs-popover-left>.arrow:before{border-left-color:rgba(0,0,0,.25);border-width:.5rem 0 .5rem .5rem;right:0}.bs-popover-auto[x-placement^=left]>.arrow:after,.bs-popover-left>.arrow:after{border-left-color:#fff;border-width:.5rem 0 .5rem .5rem;right:1px}.popover-header{background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:5px;border-top-right-radius:5px;font-size:1rem;margin-bottom:0;padding:.5rem .75rem}.popover-header:empty{display:none}.popover-body{color:#111827;padding:.5rem .75rem}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{overflow:hidden;position:relative;width:100%}.carousel-inner:after{clear:both;content:"";display:block}.carousel-item{-webkit-backface-visibility:hidden;backface-visibility:hidden;display:none;float:left;margin-right:-100%;position:relative;transition:transform .6s ease-in-out;width:100%}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-right,.carousel-item-next:not(.carousel-item-left){transform:translateX(100%)}.active.carousel-item-left,.carousel-item-prev:not(.carousel-item-right){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transform:none;transition-property:opacity}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{opacity:1;z-index:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{opacity:0;transition:opacity 0s .6s;z-index:0}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-next,.carousel-control-prev{align-items:center;background:none;border:0;bottom:0;color:#fff;display:flex;justify-content:center;opacity:.5;padding:0;position:absolute;text-align:center;top:0;transition:opacity .15s ease;width:15%;z-index:1}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;opacity:.9;outline:0;text-decoration:none}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{background:50%/100% 100% no-repeat;display:inline-block;height:20px;width:20px}.carousel-control-prev-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8'%3E%3Cpath d='m5.25 0-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3E%3C/svg%3E")}.carousel-control-next-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8'%3E%3Cpath d='m2.75 0-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3E%3C/svg%3E")}.carousel-indicators{bottom:0;display:flex;justify-content:center;left:0;list-style:none;margin-left:15%;margin-right:15%;padding-left:0;position:absolute;right:0;z-index:15}.carousel-indicators li{background-clip:padding-box;background-color:#fff;border-bottom:10px solid transparent;border-top:10px solid transparent;box-sizing:content-box;cursor:pointer;flex:0 1 auto;height:3px;margin-left:3px;margin-right:3px;opacity:.5;text-indent:-999px;transition:opacity .6s ease;width:30px}@media (prefers-reduced-motion:reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{bottom:20px;color:#fff;left:15%;padding-bottom:20px;padding-top:20px;position:absolute;right:15%;text-align:center;z-index:10}@keyframes spinner-border{to{transform:rotate(1turn)}}.spinner-border{animation:spinner-border .75s linear infinite;border:.25em solid;border-radius:50%;border-right:.25em solid transparent;display:inline-block;height:2rem;vertical-align:-.125em;width:2rem}.spinner-border-sm{border-width:.2em;height:1rem;width:1rem}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{animation:spinner-grow .75s linear infinite;background-color:currentcolor;border-radius:50%;display:inline-block;height:2rem;opacity:0;vertical-align:-.125em;width:2rem}.spinner-grow-sm{height:1rem;width:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{animation-duration:1.5s}}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#7746ec!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#5518e7!important}.bg-secondary{background-color:#6b7280!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#545964!important}.bg-success{background-color:#10b981!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#0c8a60!important}.bg-info{background-color:#3b82f6!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#0b63f3!important}.bg-warning{background-color:#f59e0b!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#c57f08!important}.bg-danger{background-color:#ef4444!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#eb1515!important}.bg-light{background-color:#f3f4f6!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#d6d9e0!important}.bg-dark{background-color:#1f2937!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#0d1116!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #d1d5db!important}.border-top{border-top:1px solid #d1d5db!important}.border-right{border-right:1px solid #d1d5db!important}.border-bottom{border-bottom:1px solid #d1d5db!important}.border-left{border-left:1px solid #d1d5db!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#7746ec!important}.border-secondary{border-color:#6b7280!important}.border-success{border-color:#10b981!important}.border-info{border-color:#3b82f6!important}.border-warning{border-color:#f59e0b!important}.border-danger{border-color:#ef4444!important}.border-light{border-color:#f3f4f6!important}.border-dark{border-color:#1f2937!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important}.rounded-right,.rounded-top{border-top-right-radius:.25rem!important}.rounded-bottom,.rounded-right{border-bottom-right-radius:.25rem!important}.rounded-bottom,.rounded-left{border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important}.rounded-lg{border-radius:6px!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix:after{clear:both;content:"";display:block}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}@media (min-width:2px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}}@media (min-width:8px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}}@media (min-width:9px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}}@media (min-width:10px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}}.embed-responsive{display:block;overflow:hidden;padding:0;position:relative;width:100%}.embed-responsive:before{content:"";display:block}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{border:0;bottom:0;height:100%;left:0;position:absolute;top:0;width:100%}.embed-responsive-21by9:before{padding-top:42.85714286%}.embed-responsive-16by9:before{padding-top:56.25%}.embed-responsive-4by3:before{padding-top:75%}.embed-responsive-1by1:before{padding-top:100%}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-fill{flex:1 1 auto!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}@media (min-width:2px){.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}}@media (min-width:8px){.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}}@media (min-width:9px){.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}}@media (min-width:10px){.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:2px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:8px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:9px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:10px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:sticky!important}.fixed-top{top:0}.fixed-bottom,.fixed-top{left:0;position:fixed;right:0;z-index:1030}.fixed-bottom{bottom:0}@supports (position:sticky){.sticky-top{position:sticky;top:0;z-index:1020}}.sr-only{clip:rect(0,0,0,0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;overflow:visible;position:static;white-space:normal;width:auto}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:2px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:8px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:9px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:10px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.stretched-link:after{background-color:transparent;bottom:0;content:"";left:0;pointer-events:auto;position:absolute;right:0;top:0;z-index:1}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:2px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:8px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:9px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:10px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:600!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#7746ec!important}a.text-primary:focus,a.text-primary:hover{color:#4d15d0!important}.text-secondary{color:#6b7280!important}a.text-secondary:focus,a.text-secondary:hover{color:#484d56!important}.text-success{color:#10b981!important}a.text-success:focus,a.text-success:hover{color:#0a7350!important}.text-info{color:#3b82f6!important}a.text-info:focus,a.text-info:hover{color:#0a59da!important}.text-warning{color:#f59e0b!important}a.text-warning:focus,a.text-warning:hover{color:#ac6f07!important}.text-danger{color:#ef4444!important}a.text-danger:focus,a.text-danger:hover{color:#d41212!important}.text-light{color:#f3f4f6!important}a.text-light:focus,a.text-light:hover{color:#c7ccd5!important}.text-dark{color:#1f2937!important}a.text-dark:focus,a.text-dark:hover{color:#030506!important}.text-body{color:#111827!important}.text-muted{color:#6b7280!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:hsla(0,0%,100%,.5)!important}.text-hide{background-color:transparent;border:0;color:transparent;font:0/0 a;text-shadow:none}.text-decoration-none{text-decoration:none!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,:after,:before{box-shadow:none!important;text-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]:after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #6b7280}blockquote,img,pre,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}.container,body{min-width:9px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #d1d5db!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#e5e7eb}.table .thead-dark th{border-color:#e5e7eb;color:inherit}}body{padding-bottom:20px}.container{max-width:1440px}html{min-width:1140px}[v-cloak]{display:none}svg.icon{height:1rem;width:1rem}.header{border-bottom:1px solid #e5e7eb}.header .logo{color:#374151;text-decoration:none}.header .logo svg{height:2rem;width:2rem}.sidebar .nav-item a{border-radius:6px;color:#4b5563;margin-bottom:4px;padding:.5rem .75rem}.sidebar .nav-item a svg{fill:#9ca3af;height:1.25rem;margin-right:15px;width:1.25rem}.sidebar .nav-item a.active,.sidebar .nav-item a:hover{background-color:#e5e7eb;color:#7746ec}.sidebar .nav-item a.active svg{fill:#7746ec}.card{border:none;box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1)}.card .bottom-radius{border-bottom-left-radius:6px;border-bottom-right-radius:6px}.card .card-header{background-color:#fff;border-bottom:none;min-height:60px;padding-bottom:.7rem;padding-top:.7rem}.card .card-header .btn-group .btn{padding:.2rem .5rem}.card .card-header .form-control-with-icon{position:relative}.card .card-header .form-control-with-icon .icon-wrapper{jusify-content:center;align-items:center;bottom:0;display:flex;left:.75rem;position:absolute;top:0}.card .card-header .form-control-with-icon .icon-wrapper .icon{fill:#6b7280}.card .card-header .form-control-with-icon .form-control{border-radius:9999px;font-size:.875rem;padding-left:2.25rem}.card .table td,.card .table th{padding:.75rem 1.25rem}.card .table.table-sm td,.card .table.table-sm th{padding:1rem 1.25rem}.card .table th{background-color:#f3f4f6;border-bottom:0;font-size:.875rem;padding:.5rem 1.25rem}.card .table:not(.table-borderless) td{border-top:1px solid #e5e7eb}.card .table.penultimate-column-right td:nth-last-child(2),.card .table.penultimate-column-right th:nth-last-child(2){text-align:right}.card .table td.table-fit,.card .table th.table-fit{white-space:nowrap;width:1%}.fill-text-color{fill:#111827}.fill-danger{fill:#ef4444}.fill-warning{fill:#f59e0b}.fill-info{fill:#3b82f6}.fill-success{fill:#10b981}.fill-primary{fill:#7746ec}button:hover .fill-primary{fill:#fff}.btn-outline-primary.active .fill-primary{fill:#f3f4f6}.btn-outline-primary:not(:disabled):not(.disabled).active:focus{box-shadow:none!important}.btn-muted{background:#e5e7eb;color:#4b5563}.btn-muted:focus,.btn-muted:hover{background:#d1d5db;color:#111827}.btn-muted.active{background:#7746ec;color:#fff}.badge-secondary{background:#e5e7eb;color:#4b5563}.badge-success{background:#d1fae5;color:#059669}.badge-info{background:#dbeafe;color:#2563eb}.badge-warning{background:#fef3c7;color:#d97706}.badge-danger{background:#fee2e2;color:#dc2626}.control-action svg{fill:#d1d5db;height:1.2rem;width:1.2rem}.control-action svg:hover{fill:#7c3aed}.info-icon{fill:#d1d5db}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.spin{animation:spin 2s linear infinite}.card .nav-pills{background:#fff}.card .nav-pills .nav-link{border-radius:0;color:#4b5563;font-size:.9rem;padding:.75rem 1.25rem}.card .nav-pills .nav-link:focus,.card .nav-pills .nav-link:hover{color:#1f2937}.card .nav-pills .nav-link.active{background:none;border-bottom:2px solid #7c3aed;color:#7c3aed}.list-enter-active:not(.dontanimate){transition:background 1s linear}.list-enter:not(.dontanimate),.list-leave-to:not(.dontanimate){background:#f5f3ff}.code-bg .list-enter:not(.dontanimate),.code-bg .list-leave-to:not(.dontanimate){background:#4b5563}.card table td{vertical-align:middle!important}.card-bg-secondary{background:#f3f4f6}.code-bg{background:#292d3e}.disabled-watcher{background:#ef4444;color:#fff;padding:.75rem}.badge-sm{font-size:.75rem} diff --git a/public/vendor/horizon/app.js b/public/vendor/horizon/app.js index cfff2f835..8bb4173dc 100644 --- a/public/vendor/horizon/app.js +++ b/public/vendor/horizon/app.js @@ -1,2 +1,2 @@ /*! For license information please see app.js.LICENSE.txt */ -(()=>{var t,e={9669:(t,e,n)=>{t.exports=n(1609)},5448:(t,e,n)=>{"use strict";var r=n(4867),i=n(6026),o=n(4372),a=n(5327),c=n(4097),s=n(4109),l=n(7985),u=n(5061);t.exports=function(t){return new Promise((function(e,n){var f=t.data,d=t.headers,p=t.responseType;r.isFormData(f)&&delete d["Content-Type"];var h=new XMLHttpRequest;if(t.auth){var M=t.auth.username||"",b=t.auth.password?unescape(encodeURIComponent(t.auth.password)):"";d.Authorization="Basic "+btoa(M+":"+b)}var m=c(t.baseURL,t.url);function v(){if(h){var r="getAllResponseHeaders"in h?s(h.getAllResponseHeaders()):null,o={data:p&&"text"!==p&&"json"!==p?h.response:h.responseText,status:h.status,statusText:h.statusText,headers:r,config:t,request:h};i(e,n,o),h=null}}if(h.open(t.method.toUpperCase(),a(m,t.params,t.paramsSerializer),!0),h.timeout=t.timeout,"onloadend"in h?h.onloadend=v:h.onreadystatechange=function(){h&&4===h.readyState&&(0!==h.status||h.responseURL&&0===h.responseURL.indexOf("file:"))&&setTimeout(v)},h.onabort=function(){h&&(n(u("Request aborted",t,"ECONNABORTED",h)),h=null)},h.onerror=function(){n(u("Network Error",t,null,h)),h=null},h.ontimeout=function(){var e="timeout of "+t.timeout+"ms exceeded";t.timeoutErrorMessage&&(e=t.timeoutErrorMessage),n(u(e,t,t.transitional&&t.transitional.clarifyTimeoutError?"ETIMEDOUT":"ECONNABORTED",h)),h=null},r.isStandardBrowserEnv()){var g=(t.withCredentials||l(m))&&t.xsrfCookieName?o.read(t.xsrfCookieName):void 0;g&&(d[t.xsrfHeaderName]=g)}"setRequestHeader"in h&&r.forEach(d,(function(t,e){void 0===f&&"content-type"===e.toLowerCase()?delete d[e]:h.setRequestHeader(e,t)})),r.isUndefined(t.withCredentials)||(h.withCredentials=!!t.withCredentials),p&&"json"!==p&&(h.responseType=t.responseType),"function"==typeof t.onDownloadProgress&&h.addEventListener("progress",t.onDownloadProgress),"function"==typeof t.onUploadProgress&&h.upload&&h.upload.addEventListener("progress",t.onUploadProgress),t.cancelToken&&t.cancelToken.promise.then((function(t){h&&(h.abort(),n(t),h=null)})),f||(f=null),h.send(f)}))}},1609:(t,e,n)=>{"use strict";var r=n(4867),i=n(1849),o=n(321),a=n(7185);function c(t){var e=new o(t),n=i(o.prototype.request,e);return r.extend(n,o.prototype,e),r.extend(n,e),n}var s=c(n(5655));s.Axios=o,s.create=function(t){return c(a(s.defaults,t))},s.Cancel=n(5263),s.CancelToken=n(4972),s.isCancel=n(6502),s.all=function(t){return Promise.all(t)},s.spread=n(8713),s.isAxiosError=n(6268),t.exports=s,t.exports.default=s},5263:t=>{"use strict";function e(t){this.message=t}e.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},e.prototype.__CANCEL__=!0,t.exports=e},4972:(t,e,n)=>{"use strict";var r=n(5263);function i(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");var e;this.promise=new Promise((function(t){e=t}));var n=this;t((function(t){n.reason||(n.reason=new r(t),e(n.reason))}))}i.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},i.source=function(){var t;return{token:new i((function(e){t=e})),cancel:t}},t.exports=i},6502:t=>{"use strict";t.exports=function(t){return!(!t||!t.__CANCEL__)}},321:(t,e,n)=>{"use strict";var r=n(4867),i=n(5327),o=n(782),a=n(3572),c=n(7185),s=n(4875),l=s.validators;function u(t){this.defaults=t,this.interceptors={request:new o,response:new o}}u.prototype.request=function(t){"string"==typeof t?(t=arguments[1]||{}).url=arguments[0]:t=t||{},(t=c(this.defaults,t)).method?t.method=t.method.toLowerCase():this.defaults.method?t.method=this.defaults.method.toLowerCase():t.method="get";var e=t.transitional;void 0!==e&&s.assertOptions(e,{silentJSONParsing:l.transitional(l.boolean,"1.0.0"),forcedJSONParsing:l.transitional(l.boolean,"1.0.0"),clarifyTimeoutError:l.transitional(l.boolean,"1.0.0")},!1);var n=[],r=!0;this.interceptors.request.forEach((function(e){"function"==typeof e.runWhen&&!1===e.runWhen(t)||(r=r&&e.synchronous,n.unshift(e.fulfilled,e.rejected))}));var i,o=[];if(this.interceptors.response.forEach((function(t){o.push(t.fulfilled,t.rejected)})),!r){var u=[a,void 0];for(Array.prototype.unshift.apply(u,n),u=u.concat(o),i=Promise.resolve(t);u.length;)i=i.then(u.shift(),u.shift());return i}for(var f=t;n.length;){var d=n.shift(),p=n.shift();try{f=d(f)}catch(t){p(t);break}}try{i=a(f)}catch(t){return Promise.reject(t)}for(;o.length;)i=i.then(o.shift(),o.shift());return i},u.prototype.getUri=function(t){return t=c(this.defaults,t),i(t.url,t.params,t.paramsSerializer).replace(/^\?/,"")},r.forEach(["delete","get","head","options"],(function(t){u.prototype[t]=function(e,n){return this.request(c(n||{},{method:t,url:e,data:(n||{}).data}))}})),r.forEach(["post","put","patch"],(function(t){u.prototype[t]=function(e,n,r){return this.request(c(r||{},{method:t,url:e,data:n}))}})),t.exports=u},782:(t,e,n)=>{"use strict";var r=n(4867);function i(){this.handlers=[]}i.prototype.use=function(t,e,n){return this.handlers.push({fulfilled:t,rejected:e,synchronous:!!n&&n.synchronous,runWhen:n?n.runWhen:null}),this.handlers.length-1},i.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)},i.prototype.forEach=function(t){r.forEach(this.handlers,(function(e){null!==e&&t(e)}))},t.exports=i},4097:(t,e,n)=>{"use strict";var r=n(1793),i=n(7303);t.exports=function(t,e){return t&&!r(e)?i(t,e):e}},5061:(t,e,n)=>{"use strict";var r=n(481);t.exports=function(t,e,n,i,o){var a=new Error(t);return r(a,e,n,i,o)}},3572:(t,e,n)=>{"use strict";var r=n(4867),i=n(8527),o=n(6502),a=n(5655);function c(t){t.cancelToken&&t.cancelToken.throwIfRequested()}t.exports=function(t){return c(t),t.headers=t.headers||{},t.data=i.call(t,t.data,t.headers,t.transformRequest),t.headers=r.merge(t.headers.common||{},t.headers[t.method]||{},t.headers),r.forEach(["delete","get","head","post","put","patch","common"],(function(e){delete t.headers[e]})),(t.adapter||a.adapter)(t).then((function(e){return c(t),e.data=i.call(t,e.data,e.headers,t.transformResponse),e}),(function(e){return o(e)||(c(t),e&&e.response&&(e.response.data=i.call(t,e.response.data,e.response.headers,t.transformResponse))),Promise.reject(e)}))}},481:t=>{"use strict";t.exports=function(t,e,n,r,i){return t.config=e,n&&(t.code=n),t.request=r,t.response=i,t.isAxiosError=!0,t.toJSON=function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:this.config,code:this.code}},t}},7185:(t,e,n)=>{"use strict";var r=n(4867);t.exports=function(t,e){e=e||{};var n={},i=["url","method","data"],o=["headers","auth","proxy","params"],a=["baseURL","transformRequest","transformResponse","paramsSerializer","timeout","timeoutMessage","withCredentials","adapter","responseType","xsrfCookieName","xsrfHeaderName","onUploadProgress","onDownloadProgress","decompress","maxContentLength","maxBodyLength","maxRedirects","transport","httpAgent","httpsAgent","cancelToken","socketPath","responseEncoding"],c=["validateStatus"];function s(t,e){return r.isPlainObject(t)&&r.isPlainObject(e)?r.merge(t,e):r.isPlainObject(e)?r.merge({},e):r.isArray(e)?e.slice():e}function l(i){r.isUndefined(e[i])?r.isUndefined(t[i])||(n[i]=s(void 0,t[i])):n[i]=s(t[i],e[i])}r.forEach(i,(function(t){r.isUndefined(e[t])||(n[t]=s(void 0,e[t]))})),r.forEach(o,l),r.forEach(a,(function(i){r.isUndefined(e[i])?r.isUndefined(t[i])||(n[i]=s(void 0,t[i])):n[i]=s(void 0,e[i])})),r.forEach(c,(function(r){r in e?n[r]=s(t[r],e[r]):r in t&&(n[r]=s(void 0,t[r]))}));var u=i.concat(o).concat(a).concat(c),f=Object.keys(t).concat(Object.keys(e)).filter((function(t){return-1===u.indexOf(t)}));return r.forEach(f,l),n}},6026:(t,e,n)=>{"use strict";var r=n(5061);t.exports=function(t,e,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?e(r("Request failed with status code "+n.status,n.config,null,n.request,n)):t(n)}},8527:(t,e,n)=>{"use strict";var r=n(4867),i=n(5655);t.exports=function(t,e,n){var o=this||i;return r.forEach(n,(function(n){t=n.call(o,t,e)})),t}},5655:(t,e,n)=>{"use strict";var r=n(4155),i=n(4867),o=n(6016),a=n(481),c={"Content-Type":"application/x-www-form-urlencoded"};function s(t,e){!i.isUndefined(t)&&i.isUndefined(t["Content-Type"])&&(t["Content-Type"]=e)}var l,u={transitional:{silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},adapter:(("undefined"!=typeof XMLHttpRequest||void 0!==r&&"[object process]"===Object.prototype.toString.call(r))&&(l=n(5448)),l),transformRequest:[function(t,e){return o(e,"Accept"),o(e,"Content-Type"),i.isFormData(t)||i.isArrayBuffer(t)||i.isBuffer(t)||i.isStream(t)||i.isFile(t)||i.isBlob(t)?t:i.isArrayBufferView(t)?t.buffer:i.isURLSearchParams(t)?(s(e,"application/x-www-form-urlencoded;charset=utf-8"),t.toString()):i.isObject(t)||e&&"application/json"===e["Content-Type"]?(s(e,"application/json"),function(t,e,n){if(i.isString(t))try{return(e||JSON.parse)(t),i.trim(t)}catch(t){if("SyntaxError"!==t.name)throw t}return(n||JSON.stringify)(t)}(t)):t}],transformResponse:[function(t){var e=this.transitional,n=e&&e.silentJSONParsing,r=e&&e.forcedJSONParsing,o=!n&&"json"===this.responseType;if(o||r&&i.isString(t)&&t.length)try{return JSON.parse(t)}catch(t){if(o){if("SyntaxError"===t.name)throw a(t,this,"E_JSON_PARSE");throw t}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,validateStatus:function(t){return t>=200&&t<300}};u.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],(function(t){u.headers[t]={}})),i.forEach(["post","put","patch"],(function(t){u.headers[t]=i.merge(c)})),t.exports=u},1849:t=>{"use strict";t.exports=function(t,e){return function(){for(var n=new Array(arguments.length),r=0;r{"use strict";var r=n(4867);function i(t){return encodeURIComponent(t).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}t.exports=function(t,e,n){if(!e)return t;var o;if(n)o=n(e);else if(r.isURLSearchParams(e))o=e.toString();else{var a=[];r.forEach(e,(function(t,e){null!=t&&(r.isArray(t)?e+="[]":t=[t],r.forEach(t,(function(t){r.isDate(t)?t=t.toISOString():r.isObject(t)&&(t=JSON.stringify(t)),a.push(i(e)+"="+i(t))})))})),o=a.join("&")}if(o){var c=t.indexOf("#");-1!==c&&(t=t.slice(0,c)),t+=(-1===t.indexOf("?")?"?":"&")+o}return t}},7303:t=>{"use strict";t.exports=function(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}},4372:(t,e,n)=>{"use strict";var r=n(4867);t.exports=r.isStandardBrowserEnv()?{write:function(t,e,n,i,o,a){var c=[];c.push(t+"="+encodeURIComponent(e)),r.isNumber(n)&&c.push("expires="+new Date(n).toGMTString()),r.isString(i)&&c.push("path="+i),r.isString(o)&&c.push("domain="+o),!0===a&&c.push("secure"),document.cookie=c.join("; ")},read:function(t){var e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove:function(t){this.write(t,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},1793:t=>{"use strict";t.exports=function(t){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(t)}},6268:t=>{"use strict";t.exports=function(t){return"object"==typeof t&&!0===t.isAxiosError}},7985:(t,e,n)=>{"use strict";var r=n(4867);t.exports=r.isStandardBrowserEnv()?function(){var t,e=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a");function i(t){var r=t;return e&&(n.setAttribute("href",r),r=n.href),n.setAttribute("href",r),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:"/"===n.pathname.charAt(0)?n.pathname:"/"+n.pathname}}return t=i(window.location.href),function(e){var n=r.isString(e)?i(e):e;return n.protocol===t.protocol&&n.host===t.host}}():function(){return!0}},6016:(t,e,n)=>{"use strict";var r=n(4867);t.exports=function(t,e){r.forEach(t,(function(n,r){r!==e&&r.toUpperCase()===e.toUpperCase()&&(t[e]=n,delete t[r])}))}},4109:(t,e,n)=>{"use strict";var r=n(4867),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];t.exports=function(t){var e,n,o,a={};return t?(r.forEach(t.split("\n"),(function(t){if(o=t.indexOf(":"),e=r.trim(t.substr(0,o)).toLowerCase(),n=r.trim(t.substr(o+1)),e){if(a[e]&&i.indexOf(e)>=0)return;a[e]="set-cookie"===e?(a[e]?a[e]:[]).concat([n]):a[e]?a[e]+", "+n:n}})),a):a}},8713:t=>{"use strict";t.exports=function(t){return function(e){return t.apply(null,e)}}},4875:(t,e,n)=>{"use strict";var r=n(8593),i={};["object","boolean","number","function","string","symbol"].forEach((function(t,e){i[t]=function(n){return typeof n===t||"a"+(e<1?"n ":" ")+t}}));var o={},a=r.version.split(".");function c(t,e){for(var n=e?e.split("."):a,r=t.split("."),i=0;i<3;i++){if(n[i]>r[i])return!0;if(n[i]0;){var o=r[i],a=e[o];if(a){var c=t[o],s=void 0===c||a(c,o,t);if(!0!==s)throw new TypeError("option "+o+" must be "+s)}else if(!0!==n)throw Error("Unknown option "+o)}},validators:i}},4867:(t,e,n)=>{"use strict";var r=n(1849),i=Object.prototype.toString;function o(t){return"[object Array]"===i.call(t)}function a(t){return void 0===t}function c(t){return null!==t&&"object"==typeof t}function s(t){if("[object Object]"!==i.call(t))return!1;var e=Object.getPrototypeOf(t);return null===e||e===Object.prototype}function l(t){return"[object Function]"===i.call(t)}function u(t,e){if(null!=t)if("object"!=typeof t&&(t=[t]),o(t))for(var n=0,r=t.length;n{"use strict";var r=Object.freeze({});function i(t){return null==t}function o(t){return null!=t}function a(t){return!0===t}function c(t){return"string"==typeof t||"number"==typeof t||"symbol"==typeof t||"boolean"==typeof t}function s(t){return null!==t&&"object"==typeof t}var l=Object.prototype.toString;function u(t){return"[object Object]"===l.call(t)}function f(t){return"[object RegExp]"===l.call(t)}function d(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function p(t){return o(t)&&"function"==typeof t.then&&"function"==typeof t.catch}function h(t){return null==t?"":Array.isArray(t)||u(t)&&t.toString===l?JSON.stringify(t,null,2):String(t)}function M(t){var e=parseFloat(t);return isNaN(e)?t:e}function b(t,e){for(var n=Object.create(null),r=t.split(","),i=0;i-1)return t.splice(n,1)}}var y=Object.prototype.hasOwnProperty;function A(t,e){return y.call(t,e)}function _(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}var z=/-(\w)/g,O=_((function(t){return t.replace(z,(function(t,e){return e?e.toUpperCase():""}))})),x=_((function(t){return t.charAt(0).toUpperCase()+t.slice(1)})),w=/\B([A-Z])/g,L=_((function(t){return t.replace(w,"-$1").toLowerCase()}));var N=Function.prototype.bind?function(t,e){return t.bind(e)}:function(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n};function T(t,e){e=e||0;for(var n=t.length-e,r=new Array(n);n--;)r[n]=t[n+e];return r}function C(t,e){for(var n in e)t[n]=e[n];return t}function q(t){for(var e={},n=0;n0,et=Q&&Q.indexOf("edge/")>0,nt=(Q&&Q.indexOf("android"),Q&&/iphone|ipad|ipod|ios/.test(Q)||"ios"===K),rt=(Q&&/chrome\/\d+/.test(Q),Q&&/phantomjs/.test(Q),Q&&Q.match(/firefox\/(\d+)/)),it={}.watch,ot=!1;if(G)try{var at={};Object.defineProperty(at,"passive",{get:function(){ot=!0}}),window.addEventListener("test-passive",null,at)}catch(t){}var ct=function(){return void 0===V&&(V=!G&&!J&&void 0!==n.g&&(n.g.process&&"server"===n.g.process.env.VUE_ENV)),V},st=G&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function lt(t){return"function"==typeof t&&/native code/.test(t.toString())}var ut,ft="undefined"!=typeof Symbol&<(Symbol)&&"undefined"!=typeof Reflect&<(Reflect.ownKeys);ut="undefined"!=typeof Set&<(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var dt=S,pt=0,ht=function(){this.id=pt++,this.subs=[]};ht.prototype.addSub=function(t){this.subs.push(t)},ht.prototype.removeSub=function(t){g(this.subs,t)},ht.prototype.depend=function(){ht.target&&ht.target.addDep(this)},ht.prototype.notify=function(){var t=this.subs.slice();for(var e=0,n=t.length;e-1)if(o&&!A(i,"default"))a=!1;else if(""===a||a===L(t)){var s=$t(String,i.type);(s<0||c0&&(Me((r=be(r,(e||"")+"_"+n))[0])&&Me(l)&&(u[s]=At(l.text+r[0].text),r.shift()),u.push.apply(u,r)):c(r)?Me(l)?u[s]=At(l.text+r):""!==r&&u.push(At(r)):Me(r)&&Me(l)?u[s]=At(l.text+r.text):(a(t._isVList)&&o(r.tag)&&i(r.key)&&o(e)&&(r.key="__vlist"+e+"_"+n+"__"),u.push(r)));return u}function me(t,e){if(t){for(var n=Object.create(null),r=ft?Reflect.ownKeys(t):Object.keys(t),i=0;i0,a=t?!!t.$stable:!o,c=t&&t.$key;if(t){if(t._normalized)return t._normalized;if(a&&n&&n!==r&&c===n.$key&&!o&&!n.$hasNormal)return n;for(var s in i={},t)t[s]&&"$"!==s[0]&&(i[s]=Ae(e,s,t[s]))}else i={};for(var l in e)l in i||(i[l]=_e(e,l));return t&&Object.isExtensible(t)&&(t._normalized=i),H(i,"$stable",a),H(i,"$key",c),H(i,"$hasNormal",o),i}function Ae(t,e,n){var r=function(){var t=arguments.length?n.apply(null,arguments):n({});return(t=t&&"object"==typeof t&&!Array.isArray(t)?[t]:he(t))&&(0===t.length||1===t.length&&t[0].isComment)?void 0:t};return n.proxy&&Object.defineProperty(t,e,{get:r,enumerable:!0,configurable:!0}),r}function _e(t,e){return function(){return t[e]}}function ze(t,e){var n,r,i,a,c;if(Array.isArray(t)||"string"==typeof t)for(n=new Array(t.length),r=0,i=t.length;rdocument.createEvent("Event").timeStamp&&(bn=function(){return mn.now()})}function vn(){var t,e;for(Mn=bn(),pn=!0,ln.sort((function(t,e){return t.id-e.id})),hn=0;hnhn&&ln[n].id>t.id;)n--;ln.splice(n+1,0,t)}else ln.push(t);dn||(dn=!0,oe(vn))}}(this)},yn.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||s(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(t){Ut(t,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},yn.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},yn.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},yn.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||g(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1}};var An={enumerable:!0,configurable:!0,get:S,set:S};function _n(t,e,n){An.get=function(){return this[e][n]},An.set=function(t){this[e][n]=t},Object.defineProperty(t,n,An)}function zn(t){t._watchers=[];var e=t.$options;e.props&&function(t,e){var n=t.$options.propsData||{},r=t._props={},i=t.$options._propKeys=[];t.$parent&&Lt(!1);var o=function(o){i.push(o);var a=It(o,e,n,t);Ct(r,o,a),o in t||_n(t,"_props",o)};for(var a in e)o(a);Lt(!0)}(t,e.props),e.methods&&function(t,e){t.$options.props;for(var n in e)t[n]="function"!=typeof e[n]?S:N(e[n],t)}(t,e.methods),e.data?function(t){var e=t.$options.data;u(e=t._data="function"==typeof e?function(t,e){bt();try{return t.call(e,e)}catch(t){return Ut(t,e,"data()"),{}}finally{mt()}}(e,t):e||{})||(e={});var n=Object.keys(e),r=t.$options.props,i=(t.$options.methods,n.length);for(;i--;){var o=n[i];0,r&&A(r,o)||F(o)||_n(t,"_data",o)}Tt(e,!0)}(t):Tt(t._data={},!0),e.computed&&function(t,e){var n=t._computedWatchers=Object.create(null),r=ct();for(var i in e){var o=e[i],a="function"==typeof o?o:o.get;0,r||(n[i]=new yn(t,a||S,S,On)),i in t||xn(t,i,o)}}(t,e.computed),e.watch&&e.watch!==it&&function(t,e){for(var n in e){var r=e[n];if(Array.isArray(r))for(var i=0;i-1:"string"==typeof t?t.split(",").indexOf(e)>-1:!!f(t)&&t.test(e)}function Wn(t,e){var n=t.cache,r=t.keys,i=t._vnode;for(var o in n){var a=n[o];if(a){var c=kn(a.componentOptions);c&&!e(c)&&Bn(n,o,r,i)}}}function Bn(t,e,n,r){var i=t[e];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),t[e]=null,g(n,e)}!function(t){t.prototype._init=function(t){var e=this;e._uid=Tn++,e._isVue=!0,t&&t._isComponent?function(t,e){var n=t.$options=Object.create(t.constructor.options),r=e._parentVnode;n.parent=e.parent,n._parentVnode=r;var i=r.componentOptions;n.propsData=i.propsData,n._parentListeners=i.listeners,n._renderChildren=i.children,n._componentTag=i.tag,e.render&&(n.render=e.render,n.staticRenderFns=e.staticRenderFns)}(e,t):e.$options=Rt(Cn(e.constructor),t||{},e),e._renderProxy=e,e._self=e,function(t){var e=t.$options,n=e.parent;if(n&&!e.abstract){for(;n.$options.abstract&&n.$parent;)n=n.$parent;n.$children.push(t)}t.$parent=n,t.$root=n?n.$root:t,t.$children=[],t.$refs={},t._watcher=null,t._inactive=null,t._directInactive=!1,t._isMounted=!1,t._isDestroyed=!1,t._isBeingDestroyed=!1}(e),function(t){t._events=Object.create(null),t._hasHookEvent=!1;var e=t.$options._parentListeners;e&&en(t,e)}(e),function(t){t._vnode=null,t._staticTrees=null;var e=t.$options,n=t.$vnode=e._parentVnode,i=n&&n.context;t.$slots=ve(e._renderChildren,i),t.$scopedSlots=r,t._c=function(e,n,r,i){return $e(t,e,n,r,i,!1)},t.$createElement=function(e,n,r,i){return $e(t,e,n,r,i,!0)};var o=n&&n.data;Ct(t,"$attrs",o&&o.attrs||r,null,!0),Ct(t,"$listeners",e._parentListeners||r,null,!0)}(e),sn(e,"beforeCreate"),function(t){var e=me(t.$options.inject,t);e&&(Lt(!1),Object.keys(e).forEach((function(n){Ct(t,n,e[n])})),Lt(!0))}(e),zn(e),function(t){var e=t.$options.provide;e&&(t._provided="function"==typeof e?e.call(t):e)}(e),sn(e,"created"),e.$options.el&&e.$mount(e.$options.el)}}(qn),function(t){var e={get:function(){return this._data}},n={get:function(){return this._props}};Object.defineProperty(t.prototype,"$data",e),Object.defineProperty(t.prototype,"$props",n),t.prototype.$set=qt,t.prototype.$delete=St,t.prototype.$watch=function(t,e,n){var r=this;if(u(e))return Nn(r,t,e,n);(n=n||{}).user=!0;var i=new yn(r,t,e,n);if(n.immediate)try{e.call(r,i.value)}catch(t){Ut(t,r,'callback for immediate watcher "'+i.expression+'"')}return function(){i.teardown()}}}(qn),function(t){var e=/^hook:/;t.prototype.$on=function(t,n){var r=this;if(Array.isArray(t))for(var i=0,o=t.length;i1?T(n):n;for(var r=T(arguments,1),i='event handler for "'+t+'"',o=0,a=n.length;oparseInt(this.max)&&Bn(a,c[0],c,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}}};!function(t){var e={get:function(){return j}};Object.defineProperty(t,"config",e),t.util={warn:dt,extend:C,mergeOptions:Rt,defineReactive:Ct},t.set=qt,t.delete=St,t.nextTick=oe,t.observable=function(t){return Tt(t),t},t.options=Object.create(null),P.forEach((function(e){t.options[e+"s"]=Object.create(null)})),t.options._base=t,C(t.options.components,Xn),function(t){t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=T(arguments,1);return n.unshift(this),"function"==typeof t.install?t.install.apply(t,n):"function"==typeof t&&t.apply(null,n),e.push(t),this}}(t),function(t){t.mixin=function(t){return this.options=Rt(this.options,t),this}}(t),Sn(t),function(t){P.forEach((function(e){t[e]=function(t,n){return n?("component"===e&&u(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}}))}(t)}(qn),Object.defineProperty(qn.prototype,"$isServer",{get:ct}),Object.defineProperty(qn.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(qn,"FunctionalRenderContext",{value:Xe}),qn.version="2.6.12";var Pn=b("style,class"),Rn=b("input,textarea,option,select,progress"),jn=function(t,e,n){return"value"===n&&Rn(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},In=b("contenteditable,draggable,spellcheck"),Fn=b("events,caret,typing,plaintext-only"),Hn=b("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),$n="http://www.w3.org/1999/xlink",Un=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},Vn=function(t){return Un(t)?t.slice(6,t.length):""},Yn=function(t){return null==t||!1===t};function Gn(t){for(var e=t.data,n=t,r=t;o(r.componentInstance);)(r=r.componentInstance._vnode)&&r.data&&(e=Jn(r.data,e));for(;o(n=n.parent);)n&&n.data&&(e=Jn(e,n.data));return function(t,e){if(o(t)||o(e))return Kn(t,Qn(e));return""}(e.staticClass,e.class)}function Jn(t,e){return{staticClass:Kn(t.staticClass,e.staticClass),class:o(t.class)?[t.class,e.class]:e.class}}function Kn(t,e){return t?e?t+" "+e:t:e||""}function Qn(t){return Array.isArray(t)?function(t){for(var e,n="",r=0,i=t.length;r-1?zr(t,e,n):Hn(e)?Yn(n)?t.removeAttribute(e):(n="allowfullscreen"===e&&"EMBED"===t.tagName?"true":e,t.setAttribute(e,n)):In(e)?t.setAttribute(e,function(t,e){return Yn(e)||"false"===e?"false":"contenteditable"===t&&Fn(e)?e:"true"}(e,n)):Un(e)?Yn(n)?t.removeAttributeNS($n,Vn(e)):t.setAttributeNS($n,e,n):zr(t,e,n)}function zr(t,e,n){if(Yn(n))t.removeAttribute(e);else{if(Z&&!tt&&"TEXTAREA"===t.tagName&&"placeholder"===e&&""!==n&&!t.__ieph){var r=function(e){e.stopImmediatePropagation(),t.removeEventListener("input",r)};t.addEventListener("input",r),t.__ieph=!0}t.setAttribute(e,n)}}var Or={create:Ar,update:Ar};function xr(t,e){var n=e.elm,r=e.data,a=t.data;if(!(i(r.staticClass)&&i(r.class)&&(i(a)||i(a.staticClass)&&i(a.class)))){var c=Gn(e),s=n._transitionClasses;o(s)&&(c=Kn(c,Qn(s))),c!==n._prevClass&&(n.setAttribute("class",c),n._prevClass=c)}}var wr,Lr,Nr,Tr,Cr,qr,Sr={create:xr,update:xr},kr=/[\w).+\-_$\]]/;function Er(t){var e,n,r,i,o,a=!1,c=!1,s=!1,l=!1,u=0,f=0,d=0,p=0;for(r=0;r=0&&" "===(M=t.charAt(h));h--);M&&kr.test(M)||(l=!0)}}else void 0===i?(p=r+1,i=t.slice(0,r).trim()):b();function b(){(o||(o=[])).push(t.slice(p,r).trim()),p=r+1}if(void 0===i?i=t.slice(0,r).trim():0!==p&&b(),o)for(r=0;r-1?{exp:t.slice(0,Tr),key:'"'+t.slice(Tr+1)+'"'}:{exp:t,key:null};Lr=t,Tr=Cr=qr=0;for(;!Kr();)Qr(Nr=Jr())?ti(Nr):91===Nr&&Zr(Nr);return{exp:t.slice(0,Cr),key:t.slice(Cr+1,qr)}}(t);return null===n.key?t+"="+e:"$set("+n.exp+", "+n.key+", "+e+")"}function Jr(){return Lr.charCodeAt(++Tr)}function Kr(){return Tr>=wr}function Qr(t){return 34===t||39===t}function Zr(t){var e=1;for(Cr=Tr;!Kr();)if(Qr(t=Jr()))ti(t);else if(91===t&&e++,93===t&&e--,0===e){qr=Tr;break}}function ti(t){for(var e=t;!Kr()&&(t=Jr())!==e;);}var ei,ni="__r";function ri(t,e,n){var r=ei;return function i(){var o=e.apply(null,arguments);null!==o&&ai(t,i,n,r)}}var ii=Kt&&!(rt&&Number(rt[1])<=53);function oi(t,e,n,r){if(ii){var i=Mn,o=e;e=o._wrapper=function(t){if(t.target===t.currentTarget||t.timeStamp>=i||t.timeStamp<=0||t.target.ownerDocument!==document)return o.apply(this,arguments)}}ei.addEventListener(t,e,ot?{capture:n,passive:r}:n)}function ai(t,e,n,r){(r||ei).removeEventListener(t,e._wrapper||e,n)}function ci(t,e){if(!i(t.data.on)||!i(e.data.on)){var n=e.data.on||{},r=t.data.on||{};ei=e.elm,function(t){if(o(t.__r)){var e=Z?"change":"input";t[e]=[].concat(t.__r,t[e]||[]),delete t.__r}o(t.__c)&&(t.change=[].concat(t.__c,t.change||[]),delete t.__c)}(n),fe(n,r,oi,ai,ri,e.context),ei=void 0}}var si,li={create:ci,update:ci};function ui(t,e){if(!i(t.data.domProps)||!i(e.data.domProps)){var n,r,a=e.elm,c=t.data.domProps||{},s=e.data.domProps||{};for(n in o(s.__ob__)&&(s=e.data.domProps=C({},s)),c)n in s||(a[n]="");for(n in s){if(r=s[n],"textContent"===n||"innerHTML"===n){if(e.children&&(e.children.length=0),r===c[n])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===n&&"PROGRESS"!==a.tagName){a._value=r;var l=i(r)?"":String(r);fi(a,l)&&(a.value=l)}else if("innerHTML"===n&&er(a.tagName)&&i(a.innerHTML)){(si=si||document.createElement("div")).innerHTML=""+r+"";for(var u=si.firstChild;a.firstChild;)a.removeChild(a.firstChild);for(;u.firstChild;)a.appendChild(u.firstChild)}else if(r!==c[n])try{a[n]=r}catch(t){}}}}function fi(t,e){return!t.composing&&("OPTION"===t.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(t,e)||function(t,e){var n=t.value,r=t._vModifiers;if(o(r)){if(r.number)return M(n)!==M(e);if(r.trim)return n.trim()!==e.trim()}return n!==e}(t,e))}var di={create:ui,update:ui},pi=_((function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach((function(t){if(t){var r=t.split(n);r.length>1&&(e[r[0].trim()]=r[1].trim())}})),e}));function hi(t){var e=Mi(t.style);return t.staticStyle?C(t.staticStyle,e):e}function Mi(t){return Array.isArray(t)?q(t):"string"==typeof t?pi(t):t}var bi,mi=/^--/,vi=/\s*!important$/,gi=function(t,e,n){if(mi.test(e))t.style.setProperty(e,n);else if(vi.test(n))t.style.setProperty(L(e),n.replace(vi,""),"important");else{var r=Ai(e);if(Array.isArray(n))for(var i=0,o=n.length;i-1?e.split(Oi).forEach((function(e){return t.classList.add(e)})):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function wi(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(Oi).forEach((function(e){return t.classList.remove(e)})):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" "+(t.getAttribute("class")||"")+" ",r=" "+e+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function Li(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&C(e,Ni(t.name||"v")),C(e,t),e}return"string"==typeof t?Ni(t):void 0}}var Ni=_((function(t){return{enterClass:t+"-enter",enterToClass:t+"-enter-to",enterActiveClass:t+"-enter-active",leaveClass:t+"-leave",leaveToClass:t+"-leave-to",leaveActiveClass:t+"-leave-active"}})),Ti=G&&!tt,Ci="transition",qi="animation",Si="transition",ki="transitionend",Ei="animation",Wi="animationend";Ti&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(Si="WebkitTransition",ki="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(Ei="WebkitAnimation",Wi="webkitAnimationEnd"));var Bi=G?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(t){return t()};function Di(t){Bi((function(){Bi(t)}))}function Xi(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),xi(t,e))}function Pi(t,e){t._transitionClasses&&g(t._transitionClasses,e),wi(t,e)}function Ri(t,e,n){var r=Ii(t,e),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var c=i===Ci?ki:Wi,s=0,l=function(){t.removeEventListener(c,u),n()},u=function(e){e.target===t&&++s>=a&&l()};setTimeout((function(){s0&&(n=Ci,u=a,f=o.length):e===qi?l>0&&(n=qi,u=l,f=s.length):f=(n=(u=Math.max(a,l))>0?a>l?Ci:qi:null)?n===Ci?o.length:s.length:0,{type:n,timeout:u,propCount:f,hasTransform:n===Ci&&ji.test(r[Si+"Property"])}}function Fi(t,e){for(;t.length1}function Gi(t,e){!0!==e.data.show&&$i(e)}var Ji=function(t){var e,n,r={},s=t.modules,l=t.nodeOps;for(e=0;eh?g(t,i(n[m+1])?null:n[m+1].elm,n,p,m,r):p>m&&A(e,d,h)}(d,b,m,n,u):o(m)?(o(t.text)&&l.setTextContent(d,""),g(d,null,m,0,m.length-1,n)):o(b)?A(b,0,b.length-1):o(t.text)&&l.setTextContent(d,""):t.text!==e.text&&l.setTextContent(d,e.text),o(h)&&o(p=h.hook)&&o(p=p.postpatch)&&p(t,e)}}}function x(t,e,n){if(a(n)&&o(t.parent))t.parent.data.pendingInsert=e;else for(var r=0;r-1,a.selected!==o&&(a.selected=o);else if(W(eo(a),r))return void(t.selectedIndex!==c&&(t.selectedIndex=c));i||(t.selectedIndex=-1)}}function to(t,e){return e.every((function(e){return!W(e,t)}))}function eo(t){return"_value"in t?t._value:t.value}function no(t){t.target.composing=!0}function ro(t){t.target.composing&&(t.target.composing=!1,io(t.target,"input"))}function io(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function oo(t){return!t.componentInstance||t.data&&t.data.transition?t:oo(t.componentInstance._vnode)}var ao={bind:function(t,e,n){var r=e.value,i=(n=oo(n)).data&&n.data.transition,o=t.__vOriginalDisplay="none"===t.style.display?"":t.style.display;r&&i?(n.data.show=!0,$i(n,(function(){t.style.display=o}))):t.style.display=r?o:"none"},update:function(t,e,n){var r=e.value;!r!=!e.oldValue&&((n=oo(n)).data&&n.data.transition?(n.data.show=!0,r?$i(n,(function(){t.style.display=t.__vOriginalDisplay})):Ui(n,(function(){t.style.display="none"}))):t.style.display=r?t.__vOriginalDisplay:"none")},unbind:function(t,e,n,r,i){i||(t.style.display=t.__vOriginalDisplay)}},co={model:Ki,show:ao},so={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function lo(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?lo(Ke(e.children)):t}function uo(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var i=n._parentListeners;for(var o in i)e[O(o)]=i[o];return e}function fo(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}var po=function(t){return t.tag||Je(t)},ho=function(t){return"show"===t.name},Mo={name:"transition",props:so,abstract:!0,render:function(t){var e=this,n=this.$slots.default;if(n&&(n=n.filter(po)).length){0;var r=this.mode;0;var i=n[0];if(function(t){for(;t=t.parent;)if(t.data.transition)return!0}(this.$vnode))return i;var o=lo(i);if(!o)return i;if(this._leaving)return fo(t,i);var a="__transition-"+this._uid+"-";o.key=null==o.key?o.isComment?a+"comment":a+o.tag:c(o.key)?0===String(o.key).indexOf(a)?o.key:a+o.key:o.key;var s=(o.data||(o.data={})).transition=uo(this),l=this._vnode,u=lo(l);if(o.data.directives&&o.data.directives.some(ho)&&(o.data.show=!0),u&&u.data&&!function(t,e){return e.key===t.key&&e.tag===t.tag}(o,u)&&!Je(u)&&(!u.componentInstance||!u.componentInstance._vnode.isComment)){var f=u.data.transition=C({},s);if("out-in"===r)return this._leaving=!0,de(f,"afterLeave",(function(){e._leaving=!1,e.$forceUpdate()})),fo(t,i);if("in-out"===r){if(Je(o))return l;var d,p=function(){d()};de(s,"afterEnter",p),de(s,"enterCancelled",p),de(f,"delayLeave",(function(t){d=t}))}}return i}}},bo=C({tag:String,moveClass:String},so);delete bo.mode;var mo={props:bo,beforeMount:function(){var t=this,e=this._update;this._update=function(n,r){var i=rn(t);t.__patch__(t._vnode,t.kept,!1,!0),t._vnode=t.kept,i(),e.call(t,n,r)}},render:function(t){for(var e=this.tag||this.$vnode.data.tag||"span",n=Object.create(null),r=this.prevChildren=this.children,i=this.$slots.default||[],o=this.children=[],a=uo(this),c=0;c-1?ir[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:ir[t]=/HTMLUnknownElement/.test(e.toString())},C(qn.options.directives,co),C(qn.options.components,Ao),qn.prototype.__patch__=G?Ji:S,qn.prototype.$mount=function(t,e){return function(t,e,n){var r;return t.$el=e,t.$options.render||(t.$options.render=yt),sn(t,"beforeMount"),r=function(){t._update(t._render(),n)},new yn(t,r,S,{before:function(){t._isMounted&&!t._isDestroyed&&sn(t,"beforeUpdate")}},!0),n=!1,null==t.$vnode&&(t._isMounted=!0,sn(t,"mounted")),t}(this,t=t&&G?ar(t):void 0,e)},G&&setTimeout((function(){j.devtools&&st&&st.emit("init",qn)}),0);var _o=/\{\{((?:.|\r?\n)+?)\}\}/g,zo=/[-.*+?^${}()|[\]\/\\]/g,Oo=_((function(t){var e=t[0].replace(zo,"\\$&"),n=t[1].replace(zo,"\\$&");return new RegExp(e+"((?:.|\\n)+?)"+n,"g")}));var xo={staticKeys:["staticClass"],transformNode:function(t,e){e.warn;var n=$r(t,"class");n&&(t.staticClass=JSON.stringify(n));var r=Hr(t,"class",!1);r&&(t.classBinding=r)},genData:function(t){var e="";return t.staticClass&&(e+="staticClass:"+t.staticClass+","),t.classBinding&&(e+="class:"+t.classBinding+","),e}};var wo,Lo={staticKeys:["staticStyle"],transformNode:function(t,e){e.warn;var n=$r(t,"style");n&&(t.staticStyle=JSON.stringify(pi(n)));var r=Hr(t,"style",!1);r&&(t.styleBinding=r)},genData:function(t){var e="";return t.staticStyle&&(e+="staticStyle:"+t.staticStyle+","),t.styleBinding&&(e+="style:("+t.styleBinding+"),"),e}},No=function(t){return(wo=wo||document.createElement("div")).innerHTML=t,wo.textContent},To=b("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),Co=b("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),qo=b("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),So=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,ko=/^\s*((?:v-[\w-]+:|@|:|#)\[[^=]+\][^\s"'<>\/=]*)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,Eo="[a-zA-Z_][\\-\\.0-9_a-zA-Z"+I.source+"]*",Wo="((?:"+Eo+"\\:)?"+Eo+")",Bo=new RegExp("^<"+Wo),Do=/^\s*(\/?)>/,Xo=new RegExp("^<\\/"+Wo+"[^>]*>"),Po=/^]+>/i,Ro=/^",""":'"',"&":"&"," ":"\n"," ":"\t","'":"'"},$o=/&(?:lt|gt|quot|amp|#39);/g,Uo=/&(?:lt|gt|quot|amp|#39|#10|#9);/g,Vo=b("pre,textarea",!0),Yo=function(t,e){return t&&Vo(t)&&"\n"===e[0]};function Go(t,e){var n=e?Uo:$o;return t.replace(n,(function(t){return Ho[t]}))}var Jo,Ko,Qo,Zo,ta,ea,na,ra,ia=/^@|^v-on:/,oa=/^v-|^@|^:|^#/,aa=/([\s\S]*?)\s+(?:in|of)\s+([\s\S]*)/,ca=/,([^,\}\]]*)(?:,([^,\}\]]*))?$/,sa=/^\(|\)$/g,la=/^\[.*\]$/,ua=/:(.*)$/,fa=/^:|^\.|^v-bind:/,da=/\.[^.\]]+(?=[^\]]*$)/g,pa=/^v-slot(:|$)|^#/,ha=/[\r\n]/,Ma=/\s+/g,ba=_(No),ma="_empty_";function va(t,e,n){return{type:1,tag:t,attrsList:e,attrsMap:xa(e),rawAttrsMap:{},parent:n,children:[]}}function ga(t,e){Jo=e.warn||Br,ea=e.isPreTag||k,na=e.mustUseProp||k,ra=e.getTagNamespace||k;var n=e.isReservedTag||k;(function(t){return!!t.component||!n(t.tag)}),Qo=Dr(e.modules,"transformNode"),Zo=Dr(e.modules,"preTransformNode"),ta=Dr(e.modules,"postTransformNode"),Ko=e.delimiters;var r,i,o=[],a=!1!==e.preserveWhitespace,c=e.whitespace,s=!1,l=!1;function u(t){if(f(t),s||t.processed||(t=ya(t,e)),o.length||t===r||r.if&&(t.elseif||t.else)&&_a(r,{exp:t.elseif,block:t}),i&&!t.forbidden)if(t.elseif||t.else)a=t,c=function(t){for(var e=t.length;e--;){if(1===t[e].type)return t[e];t.pop()}}(i.children),c&&c.if&&_a(c,{exp:a.elseif,block:a});else{if(t.slotScope){var n=t.slotTarget||'"default"';(i.scopedSlots||(i.scopedSlots={}))[n]=t}i.children.push(t),t.parent=i}var a,c;t.children=t.children.filter((function(t){return!t.slotScope})),f(t),t.pre&&(s=!1),ea(t.tag)&&(l=!1);for(var u=0;u]*>)","i")),d=t.replace(f,(function(t,n,r){return l=r.length,Io(u)||"noscript"===u||(n=n.replace(//g,"$1").replace(//g,"$1")),Yo(u,n)&&(n=n.slice(1)),e.chars&&e.chars(n),""}));s+=t.length-d.length,t=d,w(u,s-l,s)}else{var p=t.indexOf("<");if(0===p){if(Ro.test(t)){var h=t.indexOf("--\x3e");if(h>=0){e.shouldKeepComment&&e.comment(t.substring(4,h),s,s+h+3),z(h+3);continue}}if(jo.test(t)){var M=t.indexOf("]>");if(M>=0){z(M+2);continue}}var b=t.match(Po);if(b){z(b[0].length);continue}var m=t.match(Xo);if(m){var v=s;z(m[0].length),w(m[1],v,s);continue}var g=O();if(g){x(g),Yo(g.tagName,t)&&z(1);continue}}var y=void 0,A=void 0,_=void 0;if(p>=0){for(A=t.slice(p);!(Xo.test(A)||Bo.test(A)||Ro.test(A)||jo.test(A)||(_=A.indexOf("<",1))<0);)p+=_,A=t.slice(p);y=t.substring(0,p)}p<0&&(y=t),y&&z(y.length),e.chars&&y&&e.chars(y,s-y.length,s)}if(t===n){e.chars&&e.chars(t);break}}function z(e){s+=e,t=t.substring(e)}function O(){var e=t.match(Bo);if(e){var n,r,i={tagName:e[1],attrs:[],start:s};for(z(e[0].length);!(n=t.match(Do))&&(r=t.match(ko)||t.match(So));)r.start=s,z(r[0].length),r.end=s,i.attrs.push(r);if(n)return i.unarySlash=n[1],z(n[0].length),i.end=s,i}}function x(t){var n=t.tagName,s=t.unarySlash;o&&("p"===r&&qo(n)&&w(r),c(n)&&r===n&&w(n));for(var l=a(n)||!!s,u=t.attrs.length,f=new Array(u),d=0;d=0&&i[a].lowerCasedTag!==c;a--);else a=0;if(a>=0){for(var l=i.length-1;l>=a;l--)e.end&&e.end(i[l].tag,n,o);i.length=a,r=a&&i[a-1].tag}else"br"===c?e.start&&e.start(t,[],!0,n,o):"p"===c&&(e.start&&e.start(t,[],!1,n,o),e.end&&e.end(t,n,o))}w()}(t,{warn:Jo,expectHTML:e.expectHTML,isUnaryTag:e.isUnaryTag,canBeLeftOpenTag:e.canBeLeftOpenTag,shouldDecodeNewlines:e.shouldDecodeNewlines,shouldDecodeNewlinesForHref:e.shouldDecodeNewlinesForHref,shouldKeepComment:e.comments,outputSourceRange:e.outputSourceRange,start:function(t,n,a,c,f){var d=i&&i.ns||ra(t);Z&&"svg"===d&&(n=function(t){for(var e=[],n=0;ns&&(c.push(o=t.slice(s,i)),a.push(JSON.stringify(o)));var l=Er(r[1].trim());a.push("_s("+l+")"),c.push({"@binding":l}),s=i+r[0].length}return s-1"+("true"===o?":("+e+")":":_q("+e+","+o+")")),Fr(t,"change","var $$a="+e+",$$el=$event.target,$$c=$$el.checked?("+o+"):("+a+");if(Array.isArray($$a)){var $$v="+(r?"_n("+i+")":i)+",$$i=_i($$a,$$v);if($$el.checked){$$i<0&&("+Gr(e,"$$a.concat([$$v])")+")}else{$$i>-1&&("+Gr(e,"$$a.slice(0,$$i).concat($$a.slice($$i+1))")+")}}else{"+Gr(e,"$$c")+"}",null,!0)}(t,r,i);else if("input"===o&&"radio"===a)!function(t,e,n){var r=n&&n.number,i=Hr(t,"value")||"null";Xr(t,"checked","_q("+e+","+(i=r?"_n("+i+")":i)+")"),Fr(t,"change",Gr(e,i),null,!0)}(t,r,i);else if("input"===o||"textarea"===o)!function(t,e,n){var r=t.attrsMap.type;0;var i=n||{},o=i.lazy,a=i.number,c=i.trim,s=!o&&"range"!==r,l=o?"change":"range"===r?ni:"input",u="$event.target.value";c&&(u="$event.target.value.trim()");a&&(u="_n("+u+")");var f=Gr(e,u);s&&(f="if($event.target.composing)return;"+f);Xr(t,"value","("+e+")"),Fr(t,l,f,null,!0),(c||a)&&Fr(t,"blur","$forceUpdate()")}(t,r,i);else{if(!j.isReservedTag(o))return Yr(t,r,i),!1}return!0},text:function(t,e){e.value&&Xr(t,"textContent","_s("+e.value+")",e)},html:function(t,e){e.value&&Xr(t,"innerHTML","_s("+e.value+")",e)}},ka={expectHTML:!0,modules:Ta,directives:Sa,isPreTag:function(t){return"pre"===t},isUnaryTag:To,mustUseProp:jn,canBeLeftOpenTag:Co,isReservedTag:nr,getTagNamespace:rr,staticKeys:function(t){return t.reduce((function(t,e){return t.concat(e.staticKeys||[])}),[]).join(",")}(Ta)},Ea=_((function(t){return b("type,tag,attrsList,attrsMap,plain,parent,children,attrs,start,end,rawAttrsMap"+(t?","+t:""))}));function Wa(t,e){t&&(Ca=Ea(e.staticKeys||""),qa=e.isReservedTag||k,Ba(t),Da(t,!1))}function Ba(t){if(t.static=function(t){if(2===t.type)return!1;if(3===t.type)return!0;return!(!t.pre&&(t.hasBindings||t.if||t.for||m(t.tag)||!qa(t.tag)||function(t){for(;t.parent;){if("template"!==(t=t.parent).tag)return!1;if(t.for)return!0}return!1}(t)||!Object.keys(t).every(Ca)))}(t),1===t.type){if(!qa(t.tag)&&"slot"!==t.tag&&null==t.attrsMap["inline-template"])return;for(var e=0,n=t.children.length;e|^function(?:\s+[\w$]+)?\s*\(/,Pa=/\([^)]*?\);*$/,Ra=/^[A-Za-z_$][\w$]*(?:\.[A-Za-z_$][\w$]*|\['[^']*?']|\["[^"]*?"]|\[\d+]|\[[A-Za-z_$][\w$]*])*$/,ja={esc:27,tab:9,enter:13,space:32,up:38,left:37,right:39,down:40,delete:[8,46]},Ia={esc:["Esc","Escape"],tab:"Tab",enter:"Enter",space:[" ","Spacebar"],up:["Up","ArrowUp"],left:["Left","ArrowLeft"],right:["Right","ArrowRight"],down:["Down","ArrowDown"],delete:["Backspace","Delete","Del"]},Fa=function(t){return"if("+t+")return null;"},Ha={stop:"$event.stopPropagation();",prevent:"$event.preventDefault();",self:Fa("$event.target !== $event.currentTarget"),ctrl:Fa("!$event.ctrlKey"),shift:Fa("!$event.shiftKey"),alt:Fa("!$event.altKey"),meta:Fa("!$event.metaKey"),left:Fa("'button' in $event && $event.button !== 0"),middle:Fa("'button' in $event && $event.button !== 1"),right:Fa("'button' in $event && $event.button !== 2")};function $a(t,e){var n=e?"nativeOn:":"on:",r="",i="";for(var o in t){var a=Ua(t[o]);t[o]&&t[o].dynamic?i+=o+","+a+",":r+='"'+o+'":'+a+","}return r="{"+r.slice(0,-1)+"}",i?n+"_d("+r+",["+i.slice(0,-1)+"])":n+r}function Ua(t){if(!t)return"function(){}";if(Array.isArray(t))return"["+t.map((function(t){return Ua(t)})).join(",")+"]";var e=Ra.test(t.value),n=Xa.test(t.value),r=Ra.test(t.value.replace(Pa,""));if(t.modifiers){var i="",o="",a=[];for(var c in t.modifiers)if(Ha[c])o+=Ha[c],ja[c]&&a.push(c);else if("exact"===c){var s=t.modifiers;o+=Fa(["ctrl","shift","alt","meta"].filter((function(t){return!s[t]})).map((function(t){return"$event."+t+"Key"})).join("||"))}else a.push(c);return a.length&&(i+=function(t){return"if(!$event.type.indexOf('key')&&"+t.map(Va).join("&&")+")return null;"}(a)),o&&(i+=o),"function($event){"+i+(e?"return "+t.value+"($event)":n?"return ("+t.value+")($event)":r?"return "+t.value:t.value)+"}"}return e||n?t.value:"function($event){"+(r?"return "+t.value:t.value)+"}"}function Va(t){var e=parseInt(t,10);if(e)return"$event.keyCode!=="+e;var n=ja[t],r=Ia[t];return"_k($event.keyCode,"+JSON.stringify(t)+","+JSON.stringify(n)+",$event.key,"+JSON.stringify(r)+")"}var Ya={on:function(t,e){t.wrapListeners=function(t){return"_g("+t+","+e.value+")"}},bind:function(t,e){t.wrapData=function(n){return"_b("+n+",'"+t.tag+"',"+e.value+","+(e.modifiers&&e.modifiers.prop?"true":"false")+(e.modifiers&&e.modifiers.sync?",true":"")+")"}},cloak:S},Ga=function(t){this.options=t,this.warn=t.warn||Br,this.transforms=Dr(t.modules,"transformCode"),this.dataGenFns=Dr(t.modules,"genData"),this.directives=C(C({},Ya),t.directives);var e=t.isReservedTag||k;this.maybeComponent=function(t){return!!t.component||!e(t.tag)},this.onceId=0,this.staticRenderFns=[],this.pre=!1};function Ja(t,e){var n=new Ga(e);return{render:"with(this){return "+(t?Ka(t,n):'_c("div")')+"}",staticRenderFns:n.staticRenderFns}}function Ka(t,e){if(t.parent&&(t.pre=t.pre||t.parent.pre),t.staticRoot&&!t.staticProcessed)return Qa(t,e);if(t.once&&!t.onceProcessed)return Za(t,e);if(t.for&&!t.forProcessed)return nc(t,e);if(t.if&&!t.ifProcessed)return tc(t,e);if("template"!==t.tag||t.slotTarget||e.pre){if("slot"===t.tag)return function(t,e){var n=t.slotName||'"default"',r=ac(t,e),i="_t("+n+(r?","+r:""),o=t.attrs||t.dynamicAttrs?lc((t.attrs||[]).concat(t.dynamicAttrs||[]).map((function(t){return{name:O(t.name),value:t.value,dynamic:t.dynamic}}))):null,a=t.attrsMap["v-bind"];!o&&!a||r||(i+=",null");o&&(i+=","+o);a&&(i+=(o?"":",null")+","+a);return i+")"}(t,e);var n;if(t.component)n=function(t,e,n){var r=e.inlineTemplate?null:ac(e,n,!0);return"_c("+t+","+rc(e,n)+(r?","+r:"")+")"}(t.component,t,e);else{var r;(!t.plain||t.pre&&e.maybeComponent(t))&&(r=rc(t,e));var i=t.inlineTemplate?null:ac(t,e,!0);n="_c('"+t.tag+"'"+(r?","+r:"")+(i?","+i:"")+")"}for(var o=0;o>>0}(a):"")+")"}(t,t.scopedSlots,e)+","),t.model&&(n+="model:{value:"+t.model.value+",callback:"+t.model.callback+",expression:"+t.model.expression+"},"),t.inlineTemplate){var o=function(t,e){var n=t.children[0];0;if(n&&1===n.type){var r=Ja(n,e.options);return"inlineTemplate:{render:function(){"+r.render+"},staticRenderFns:["+r.staticRenderFns.map((function(t){return"function(){"+t+"}"})).join(",")+"]}"}}(t,e);o&&(n+=o+",")}return n=n.replace(/,$/,"")+"}",t.dynamicAttrs&&(n="_b("+n+',"'+t.tag+'",'+lc(t.dynamicAttrs)+")"),t.wrapData&&(n=t.wrapData(n)),t.wrapListeners&&(n=t.wrapListeners(n)),n}function ic(t){return 1===t.type&&("slot"===t.tag||t.children.some(ic))}function oc(t,e){var n=t.attrsMap["slot-scope"];if(t.if&&!t.ifProcessed&&!n)return tc(t,e,oc,"null");if(t.for&&!t.forProcessed)return nc(t,e,oc);var r=t.slotScope===ma?"":String(t.slotScope),i="function("+r+"){return "+("template"===t.tag?t.if&&n?"("+t.if+")?"+(ac(t,e)||"undefined")+":undefined":ac(t,e)||"undefined":Ka(t,e))+"}",o=r?"":",proxy:true";return"{key:"+(t.slotTarget||'"default"')+",fn:"+i+o+"}"}function ac(t,e,n,r,i){var o=t.children;if(o.length){var a=o[0];if(1===o.length&&a.for&&"template"!==a.tag&&"slot"!==a.tag){var c=n?e.maybeComponent(a)?",1":",0":"";return""+(r||Ka)(a,e)+c}var s=n?function(t,e){for(var n=0,r=0;r':'
',hc.innerHTML.indexOf(" ")>0}var gc=!!G&&vc(!1),yc=!!G&&vc(!0),Ac=_((function(t){var e=ar(t);return e&&e.innerHTML})),_c=qn.prototype.$mount;qn.prototype.$mount=function(t,e){if((t=t&&ar(t))===document.body||t===document.documentElement)return this;var n=this.$options;if(!n.render){var r=n.template;if(r)if("string"==typeof r)"#"===r.charAt(0)&&(r=Ac(r));else{if(!r.nodeType)return this;r=r.innerHTML}else t&&(r=function(t){if(t.outerHTML)return t.outerHTML;var e=document.createElement("div");return e.appendChild(t.cloneNode(!0)),e.innerHTML}(t));if(r){0;var i=mc(r,{outputSourceRange:!1,shouldDecodeNewlines:gc,shouldDecodeNewlinesForHref:yc,delimiters:n.delimiters,comments:n.comments},this),o=i.render,a=i.staticRenderFns;n.render=o,n.staticRenderFns=a}}return _c.call(this,t,e)},qn.compile=mc;const zc=qn;var Oc=n(8),xc=n.n(Oc);const wc={computed:{Horizon:function(t){function e(){return t.apply(this,arguments)}return e.toString=function(){return t.toString()},e}((function(){return Horizon}))},methods:{formatDate:function(t){return xc()(1e3*t).add((new Date).getTimezoneOffset()/60)},formatDateIso:function(t){return xc()(t).add((new Date).getTimezoneOffset()/60)},jobBaseName:function(t){if(!t.includes("\\"))return t;var e=t.split("\\");return e[e.length-1]},autoLoadNewEntries:function(){this.autoLoadsNewEntries?(this.autoLoadsNewEntries=!1,localStorage.autoLoadsNewEntries=0):(this.autoLoadsNewEntries=!0,localStorage.autoLoadsNewEntries=1)},readableTimestamp:function(t){return this.formatDate(t).format("YYYY-MM-DD HH:mm:ss")}}};var Lc=n(9669),Nc=n.n(Lc);const Tc=[{path:"/",redirect:"/dashboard"},{path:"/dashboard",name:"dashboard",component:n(5093).Z},{path:"/monitoring",name:"monitoring",component:n(7618).Z},{path:"/monitoring/:tag",component:n(4418).Z,children:[{path:"jobs",name:"monitoring-jobs",component:n(6461).Z,props:{type:"jobs"}},{path:"failed",name:"monitoring-failed",component:n(6461).Z,props:{type:"failed"}}]},{path:"/metrics",redirect:"/metrics/jobs"},{path:"/metrics/",component:n(1477).Z,children:[{path:"jobs",name:"metrics-jobs",component:n(4469).Z},{path:"queues",name:"metrics-queues",component:n(626).Z}]},{path:"/metrics/:type/:slug",name:"metrics-preview",component:n(8004).Z},{path:"/jobs/:type",name:"jobs",component:n(4248).Z},{path:"/jobs/pending/:jobId",name:"pending-jobs-preview",component:n(2668).Z},{path:"/jobs/completed/:jobId",name:"completed-jobs-preview",component:n(2668).Z},{path:"/failed",name:"failed-jobs",component:n(6744).Z},{path:"/failed/:jobId",name:"failed-jobs-preview",component:n(6222).Z},{path:"/batches",name:"batches",component:n(2343).Z},{path:"/batches/:batchId",name:"batches-preview",component:n(5213).Z}];function Cc(t,e){for(var n in e)t[n]=e[n];return t}var qc=/[!'()*]/g,Sc=function(t){return"%"+t.charCodeAt(0).toString(16)},kc=/%2C/g,Ec=function(t){return encodeURIComponent(t).replace(qc,Sc).replace(kc,",")};function Wc(t){try{return decodeURIComponent(t)}catch(t){0}return t}var Bc=function(t){return null==t||"object"==typeof t?t:String(t)};function Dc(t){var e={};return(t=t.trim().replace(/^(\?|#|&)/,""))?(t.split("&").forEach((function(t){var n=t.replace(/\+/g," ").split("="),r=Wc(n.shift()),i=n.length>0?Wc(n.join("=")):null;void 0===e[r]?e[r]=i:Array.isArray(e[r])?e[r].push(i):e[r]=[e[r],i]})),e):e}function Xc(t){var e=t?Object.keys(t).map((function(e){var n=t[e];if(void 0===n)return"";if(null===n)return Ec(e);if(Array.isArray(n)){var r=[];return n.forEach((function(t){void 0!==t&&(null===t?r.push(Ec(e)):r.push(Ec(e)+"="+Ec(t)))})),r.join("&")}return Ec(e)+"="+Ec(n)})).filter((function(t){return t.length>0})).join("&"):null;return e?"?"+e:""}var Pc=/\/?$/;function Rc(t,e,n,r){var i=r&&r.options.stringifyQuery,o=e.query||{};try{o=jc(o)}catch(t){}var a={name:e.name||t&&t.name,meta:t&&t.meta||{},path:e.path||"/",hash:e.hash||"",query:o,params:e.params||{},fullPath:Hc(e,i),matched:t?Fc(t):[]};return n&&(a.redirectedFrom=Hc(n,i)),Object.freeze(a)}function jc(t){if(Array.isArray(t))return t.map(jc);if(t&&"object"==typeof t){var e={};for(var n in t)e[n]=jc(t[n]);return e}return t}var Ic=Rc(null,{path:"/"});function Fc(t){for(var e=[];t;)e.unshift(t),t=t.parent;return e}function Hc(t,e){var n=t.path,r=t.query;void 0===r&&(r={});var i=t.hash;return void 0===i&&(i=""),(n||"/")+(e||Xc)(r)+i}function $c(t,e,n){return e===Ic?t===e:!!e&&(t.path&&e.path?t.path.replace(Pc,"")===e.path.replace(Pc,"")&&(n||t.hash===e.hash&&Uc(t.query,e.query)):!(!t.name||!e.name)&&(t.name===e.name&&(n||t.hash===e.hash&&Uc(t.query,e.query)&&Uc(t.params,e.params))))}function Uc(t,e){if(void 0===t&&(t={}),void 0===e&&(e={}),!t||!e)return t===e;var n=Object.keys(t).sort(),r=Object.keys(e).sort();return n.length===r.length&&n.every((function(n,i){var o=t[n];if(r[i]!==n)return!1;var a=e[n];return null==o||null==a?o===a:"object"==typeof o&&"object"==typeof a?Uc(o,a):String(o)===String(a)}))}function Vc(t){for(var e=0;e=0&&(e=t.slice(r),t=t.slice(0,r));var i=t.indexOf("?");return i>=0&&(n=t.slice(i+1),t=t.slice(0,i)),{path:t,query:n,hash:e}}(i.path||""),l=e&&e.path||"/",u=s.path?Jc(s.path,l,n||i.append):l,f=function(t,e,n){void 0===e&&(e={});var r,i=n||Dc;try{r=i(t||"")}catch(t){r={}}for(var o in e){var a=e[o];r[o]=Array.isArray(a)?a.map(Bc):Bc(a)}return r}(s.query,i.query,r&&r.options.parseQuery),d=i.hash||s.hash;return d&&"#"!==d.charAt(0)&&(d="#"+d),{_normalized:!0,path:u,query:f,hash:d}}var vs,gs=function(){},ys={name:"RouterLink",props:{to:{type:[String,Object],required:!0},tag:{type:String,default:"a"},custom:Boolean,exact:Boolean,exactPath:Boolean,append:Boolean,replace:Boolean,activeClass:String,exactActiveClass:String,ariaCurrentValue:{type:String,default:"page"},event:{type:[String,Array],default:"click"}},render:function(t){var e=this,n=this.$router,r=this.$route,i=n.resolve(this.to,r,this.append),o=i.location,a=i.route,c=i.href,s={},l=n.options.linkActiveClass,u=n.options.linkExactActiveClass,f=null==l?"router-link-active":l,d=null==u?"router-link-exact-active":u,p=null==this.activeClass?f:this.activeClass,h=null==this.exactActiveClass?d:this.exactActiveClass,M=a.redirectedFrom?Rc(null,ms(a.redirectedFrom),null,n):a;s[h]=$c(r,M,this.exactPath),s[p]=this.exact||this.exactPath?s[h]:function(t,e){return 0===t.path.replace(Pc,"/").indexOf(e.path.replace(Pc,"/"))&&(!e.hash||t.hash===e.hash)&&function(t,e){for(var n in e)if(!(n in t))return!1;return!0}(t.query,e.query)}(r,M);var b=s[h]?this.ariaCurrentValue:null,m=function(t){As(t)&&(e.replace?n.replace(o,gs):n.push(o,gs))},v={click:As};Array.isArray(this.event)?this.event.forEach((function(t){v[t]=m})):v[this.event]=m;var g={class:s},y=!this.$scopedSlots.$hasNormal&&this.$scopedSlots.default&&this.$scopedSlots.default({href:c,route:a,navigate:m,isActive:s[p],isExactActive:s[h]});if(y){if(1===y.length)return y[0];if(y.length>1||!y.length)return 0===y.length?t():t("span",{},y)}if("a"===this.tag)g.on=v,g.attrs={href:c,"aria-current":b};else{var A=_s(this.$slots.default);if(A){A.isStatic=!1;var _=A.data=Cc({},A.data);for(var z in _.on=_.on||{},_.on){var O=_.on[z];z in v&&(_.on[z]=Array.isArray(O)?O:[O])}for(var x in v)x in _.on?_.on[x].push(v[x]):_.on[x]=m;var w=A.data.attrs=Cc({},A.data.attrs);w.href=c,w["aria-current"]=b}else g.on=v}return t(this.tag,g,this.$slots.default)}};function As(t){if(!(t.metaKey||t.altKey||t.ctrlKey||t.shiftKey||t.defaultPrevented||void 0!==t.button&&0!==t.button)){if(t.currentTarget&&t.currentTarget.getAttribute){var e=t.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(e))return}return t.preventDefault&&t.preventDefault(),!0}}function _s(t){if(t)for(var e,n=0;n-1&&(c.params[d]=n.params[d]);return c.path=bs(u.path,c.params),s(u,c,a)}if(c.path){c.params={};for(var p=0;p=t.length?n():t[i]?e(t[i],(function(){r(i+1)})):r(i+1)};r(0)}var Gs={redirected:2,aborted:4,cancelled:8,duplicated:16};function Js(t,e){return Qs(t,e,Gs.redirected,'Redirected when going from "'+t.fullPath+'" to "'+function(t){if("string"==typeof t)return t;if("path"in t)return t.path;var e={};return Zs.forEach((function(n){n in t&&(e[n]=t[n])})),JSON.stringify(e,null,2)}(e)+'" via a navigation guard.')}function Ks(t,e){return Qs(t,e,Gs.cancelled,'Navigation cancelled from "'+t.fullPath+'" to "'+e.fullPath+'" with a new navigation.')}function Qs(t,e,n,r){var i=new Error(r);return i._isRouter=!0,i.from=t,i.to=e,i.type=n,i}var Zs=["params","query","hash"];function tl(t){return Object.prototype.toString.call(t).indexOf("Error")>-1}function el(t,e){return tl(t)&&t._isRouter&&(null==e||t.type===e)}function nl(t){return function(e,n,r){var i=!1,o=0,a=null;rl(t,(function(t,e,n,c){if("function"==typeof t&&void 0===t.cid){i=!0,o++;var s,l=al((function(e){var i;((i=e).__esModule||ol&&"Module"===i[Symbol.toStringTag])&&(e=e.default),t.resolved="function"==typeof e?e:vs.extend(e),n.components[c]=e,--o<=0&&r()})),u=al((function(t){var e="Failed to resolve async component "+c+": "+t;a||(a=tl(t)?t:new Error(e),r(a))}));try{s=t(l,u)}catch(t){u(t)}if(s)if("function"==typeof s.then)s.then(l,u);else{var f=s.component;f&&"function"==typeof f.then&&f.then(l,u)}}})),i||r()}}function rl(t,e){return il(t.map((function(t){return Object.keys(t.components).map((function(n){return e(t.components[n],t.instances[n],t,n)}))})))}function il(t){return Array.prototype.concat.apply([],t)}var ol="function"==typeof Symbol&&"symbol"==typeof Symbol.toStringTag;function al(t){var e=!1;return function(){for(var n=[],r=arguments.length;r--;)n[r]=arguments[r];if(!e)return e=!0,t.apply(this,n)}}var cl=function(t,e){this.router=t,this.base=function(t){if(!t)if(zs){var e=document.querySelector("base");t=(t=e&&e.getAttribute("href")||"/").replace(/^https?:\/\/[^\/]+/,"")}else t="/";"/"!==t.charAt(0)&&(t="/"+t);return t.replace(/\/$/,"")}(e),this.current=Ic,this.pending=null,this.ready=!1,this.readyCbs=[],this.readyErrorCbs=[],this.errorCbs=[],this.listeners=[]};function sl(t,e,n,r){var i=rl(t,(function(t,r,i,o){var a=function(t,e){"function"!=typeof t&&(t=vs.extend(t));return t.options[e]}(t,e);if(a)return Array.isArray(a)?a.map((function(t){return n(t,r,i,o)})):n(a,r,i,o)}));return il(r?i.reverse():i)}function ll(t,e){if(e)return function(){return t.apply(e,arguments)}}cl.prototype.listen=function(t){this.cb=t},cl.prototype.onReady=function(t,e){this.ready?t():(this.readyCbs.push(t),e&&this.readyErrorCbs.push(e))},cl.prototype.onError=function(t){this.errorCbs.push(t)},cl.prototype.transitionTo=function(t,e,n){var r,i=this;try{r=this.router.match(t,this.current)}catch(t){throw this.errorCbs.forEach((function(e){e(t)})),t}var o=this.current;this.confirmTransition(r,(function(){i.updateRoute(r),e&&e(r),i.ensureURL(),i.router.afterHooks.forEach((function(t){t&&t(r,o)})),i.ready||(i.ready=!0,i.readyCbs.forEach((function(t){t(r)})))}),(function(t){n&&n(t),t&&!i.ready&&(el(t,Gs.redirected)&&o===Ic||(i.ready=!0,i.readyErrorCbs.forEach((function(e){e(t)}))))}))},cl.prototype.confirmTransition=function(t,e,n){var r=this,i=this.current;this.pending=t;var o,a,c=function(t){!el(t)&&tl(t)&&r.errorCbs.length&&r.errorCbs.forEach((function(e){e(t)})),n&&n(t)},s=t.matched.length-1,l=i.matched.length-1;if($c(t,i)&&s===l&&t.matched[s]===i.matched[l])return this.ensureURL(),c(((a=Qs(o=i,t,Gs.duplicated,'Avoided redundant navigation to current location: "'+o.fullPath+'".')).name="NavigationDuplicated",a));var u=function(t,e){var n,r=Math.max(t.length,e.length);for(n=0;n0)){var e=this.router,n=e.options.scrollBehavior,r=$s&&n;r&&this.listeners.push(Ws());var i=function(){var n=t.current,i=fl(t.base);t.current===Ic&&i===t._startLocation||t.transitionTo(i,(function(t){r&&Bs(e,t,n,!0)}))};window.addEventListener("popstate",i),this.listeners.push((function(){window.removeEventListener("popstate",i)}))}},e.prototype.go=function(t){window.history.go(t)},e.prototype.push=function(t,e,n){var r=this,i=this.current;this.transitionTo(t,(function(t){Us(Kc(r.base+t.fullPath)),Bs(r.router,t,i,!1),e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var r=this,i=this.current;this.transitionTo(t,(function(t){Vs(Kc(r.base+t.fullPath)),Bs(r.router,t,i,!1),e&&e(t)}),n)},e.prototype.ensureURL=function(t){if(fl(this.base)!==this.current.fullPath){var e=Kc(this.base+this.current.fullPath);t?Us(e):Vs(e)}},e.prototype.getCurrentLocation=function(){return fl(this.base)},e}(cl);function fl(t){var e=window.location.pathname;return t&&0===e.toLowerCase().indexOf(t.toLowerCase())&&(e=e.slice(t.length)),(e||"/")+window.location.search+window.location.hash}var dl=function(t){function e(e,n,r){t.call(this,e,n),r&&function(t){var e=fl(t);if(!/^\/#/.test(e))return window.location.replace(Kc(t+"/#"+e)),!0}(this.base)||pl()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setupListeners=function(){var t=this;if(!(this.listeners.length>0)){var e=this.router.options.scrollBehavior,n=$s&&e;n&&this.listeners.push(Ws());var r=function(){var e=t.current;pl()&&t.transitionTo(hl(),(function(r){n&&Bs(t.router,r,e,!0),$s||ml(r.fullPath)}))},i=$s?"popstate":"hashchange";window.addEventListener(i,r),this.listeners.push((function(){window.removeEventListener(i,r)}))}},e.prototype.push=function(t,e,n){var r=this,i=this.current;this.transitionTo(t,(function(t){bl(t.fullPath),Bs(r.router,t,i,!1),e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var r=this,i=this.current;this.transitionTo(t,(function(t){ml(t.fullPath),Bs(r.router,t,i,!1),e&&e(t)}),n)},e.prototype.go=function(t){window.history.go(t)},e.prototype.ensureURL=function(t){var e=this.current.fullPath;hl()!==e&&(t?bl(e):ml(e))},e.prototype.getCurrentLocation=function(){return hl()},e}(cl);function pl(){var t=hl();return"/"===t.charAt(0)||(ml("/"+t),!1)}function hl(){var t=window.location.href,e=t.indexOf("#");return e<0?"":t=t.slice(e+1)}function Ml(t){var e=window.location.href,n=e.indexOf("#");return(n>=0?e.slice(0,n):e)+"#"+t}function bl(t){$s?Us(Ml(t)):window.location.hash=t}function ml(t){$s?Vs(Ml(t)):window.location.replace(Ml(t))}var vl=function(t){function e(e,n){t.call(this,e,n),this.stack=[],this.index=-1}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.push=function(t,e,n){var r=this;this.transitionTo(t,(function(t){r.stack=r.stack.slice(0,r.index+1).concat(t),r.index++,e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var r=this;this.transitionTo(t,(function(t){r.stack=r.stack.slice(0,r.index).concat(t),e&&e(t)}),n)},e.prototype.go=function(t){var e=this,n=this.index+t;if(!(n<0||n>=this.stack.length)){var r=this.stack[n];this.confirmTransition(r,(function(){var t=e.current;e.index=n,e.updateRoute(r),e.router.afterHooks.forEach((function(e){e&&e(r,t)}))}),(function(t){el(t,Gs.duplicated)&&(e.index=n)}))}},e.prototype.getCurrentLocation=function(){var t=this.stack[this.stack.length-1];return t?t.fullPath:"/"},e.prototype.ensureURL=function(){},e}(cl),gl=function(t){void 0===t&&(t={}),this.app=null,this.apps=[],this.options=t,this.beforeHooks=[],this.resolveHooks=[],this.afterHooks=[],this.matcher=Ls(t.routes||[],this);var e=t.mode||"hash";switch(this.fallback="history"===e&&!$s&&!1!==t.fallback,this.fallback&&(e="hash"),zs||(e="abstract"),this.mode=e,e){case"history":this.history=new ul(this,t.base);break;case"hash":this.history=new dl(this,t.base,this.fallback);break;case"abstract":this.history=new vl(this,t.base)}},yl={currentRoute:{configurable:!0}};function Al(t,e){return t.push(e),function(){var n=t.indexOf(e);n>-1&&t.splice(n,1)}}gl.prototype.match=function(t,e,n){return this.matcher.match(t,e,n)},yl.currentRoute.get=function(){return this.history&&this.history.current},gl.prototype.init=function(t){var e=this;if(this.apps.push(t),t.$once("hook:destroyed",(function(){var n=e.apps.indexOf(t);n>-1&&e.apps.splice(n,1),e.app===t&&(e.app=e.apps[0]||null),e.app||e.history.teardown()})),!this.app){this.app=t;var n=this.history;if(n instanceof ul||n instanceof dl){var r=function(t){n.setupListeners(),function(t){var r=n.current,i=e.options.scrollBehavior;$s&&i&&"fullPath"in t&&Bs(e,t,r,!1)}(t)};n.transitionTo(n.getCurrentLocation(),r,r)}n.listen((function(t){e.apps.forEach((function(e){e._route=t}))}))}},gl.prototype.beforeEach=function(t){return Al(this.beforeHooks,t)},gl.prototype.beforeResolve=function(t){return Al(this.resolveHooks,t)},gl.prototype.afterEach=function(t){return Al(this.afterHooks,t)},gl.prototype.onReady=function(t,e){this.history.onReady(t,e)},gl.prototype.onError=function(t){this.history.onError(t)},gl.prototype.push=function(t,e,n){var r=this;if(!e&&!n&&"undefined"!=typeof Promise)return new Promise((function(e,n){r.history.push(t,e,n)}));this.history.push(t,e,n)},gl.prototype.replace=function(t,e,n){var r=this;if(!e&&!n&&"undefined"!=typeof Promise)return new Promise((function(e,n){r.history.replace(t,e,n)}));this.history.replace(t,e,n)},gl.prototype.go=function(t){this.history.go(t)},gl.prototype.back=function(){this.go(-1)},gl.prototype.forward=function(){this.go(1)},gl.prototype.getMatchedComponents=function(t){var e=t?t.matched?t:this.resolve(t).route:this.currentRoute;return e?[].concat.apply([],e.matched.map((function(t){return Object.keys(t.components).map((function(e){return t.components[e]}))}))):[]},gl.prototype.resolve=function(t,e,n){var r=ms(t,e=e||this.history.current,n,this),i=this.match(r,e),o=i.redirectedFrom||i.fullPath,a=function(t,e,n){var r="hash"===n?"#"+e:e;return t?Kc(t+"/"+r):r}(this.history.base,o,this.mode);return{location:r,route:i,href:a,normalizedTo:r,resolved:i}},gl.prototype.getRoutes=function(){return this.matcher.getRoutes()},gl.prototype.addRoute=function(t,e){this.matcher.addRoute(t,e),this.history.current!==Ic&&this.history.transitionTo(this.history.getCurrentLocation())},gl.prototype.addRoutes=function(t){this.matcher.addRoutes(t),this.history.current!==Ic&&this.history.transitionTo(this.history.getCurrentLocation())},Object.defineProperties(gl.prototype,yl),gl.install=function t(e){if(!t.installed||vs!==e){t.installed=!0,vs=e;var n=function(t){return void 0!==t},r=function(t,e){var r=t.$options._parentVnode;n(r)&&n(r=r.data)&&n(r=r.registerRouteInstance)&&r(t,e)};e.mixin({beforeCreate:function(){n(this.$options.router)?(this._routerRoot=this,this._router=this.$options.router,this._router.init(this),e.util.defineReactive(this,"_route",this._router.history.current)):this._routerRoot=this.$parent&&this.$parent._routerRoot||this,r(this,this)},destroyed:function(){r(this)}}),Object.defineProperty(e.prototype,"$router",{get:function(){return this._routerRoot._router}}),Object.defineProperty(e.prototype,"$route",{get:function(){return this._routerRoot._route}}),e.component("RouterView",Yc),e.component("RouterLink",ys);var i=e.config.optionMergeStrategies;i.beforeRouteEnter=i.beforeRouteLeave=i.beforeRouteUpdate=i.created}},gl.version="3.5.1",gl.isNavigationFailure=el,gl.NavigationFailureType=Gs,gl.START_LOCATION=Ic,zs&&window.Vue&&window.Vue.use(gl);const _l=gl;var zl=n(4566),Ol=n.n(zl);window.Popper=n(8981).default;try{window.$=window.jQuery=n(9755),n(3734)}catch(t){}var xl=document.head.querySelector('meta[name="csrf-token"]');Nc().defaults.headers.common["X-Requested-With"]="XMLHttpRequest",xl&&(Nc().defaults.headers.common["X-CSRF-TOKEN"]=xl.content),zc.use(_l),zc.prototype.$http=Nc().create(),window.Horizon.basePath="/"+window.Horizon.path;var wl=window.Horizon.basePath+"/";""!==window.Horizon.path&&"/"!==window.Horizon.path||(wl="/",window.Horizon.basePath="");var Ll=new _l({routes:Tc,mode:"history",base:wl});zc.component("vue-json-pretty",Ol()),zc.component("alert",n(2254).Z),zc.mixin(wc),zc.directive("tooltip",(function(t,e){$(t).tooltip({title:e.value,placement:e.arg,trigger:"hover"})})),new zc({el:"#horizon",router:Ll,data:function(){return{alert:{type:null,autoClose:0,message:"",confirmationProceed:null,confirmationCancel:null},autoLoadsNewEntries:"1"===localStorage.autoLoadsNewEntries}}})},3734:function(t,e,n){!function(t,e,n){"use strict";function r(t){return t&&"object"==typeof t&&"default"in t?t:{default:t}}var i=r(e),o=r(n);function a(t,e){for(var n=0;n=a)throw new Error("Bootstrap's JavaScript requires at least jQuery v1.9.1 but less than v4.0.0")}};m.jQueryDetection(),b();var v="alert",g="4.6.0",y="bs.alert",A="."+y,_=".data-api",z=i.default.fn[v],O='[data-dismiss="alert"]',x="close"+A,w="closed"+A,L="click"+A+_,N="alert",T="fade",C="show",q=function(){function t(t){this._element=t}var e=t.prototype;return e.close=function(t){var e=this._element;t&&(e=this._getRootElement(t)),this._triggerCloseEvent(e).isDefaultPrevented()||this._removeElement(e)},e.dispose=function(){i.default.removeData(this._element,y),this._element=null},e._getRootElement=function(t){var e=m.getSelectorFromElement(t),n=!1;return e&&(n=document.querySelector(e)),n||(n=i.default(t).closest("."+N)[0]),n},e._triggerCloseEvent=function(t){var e=i.default.Event(x);return i.default(t).trigger(e),e},e._removeElement=function(t){var e=this;if(i.default(t).removeClass(C),i.default(t).hasClass(T)){var n=m.getTransitionDurationFromElement(t);i.default(t).one(m.TRANSITION_END,(function(n){return e._destroyElement(t,n)})).emulateTransitionEnd(n)}else this._destroyElement(t)},e._destroyElement=function(t){i.default(t).detach().trigger(w).remove()},t._jQueryInterface=function(e){return this.each((function(){var n=i.default(this),r=n.data(y);r||(r=new t(this),n.data(y,r)),"close"===e&&r[e](this)}))},t._handleDismiss=function(t){return function(e){e&&e.preventDefault(),t.close(this)}},c(t,null,[{key:"VERSION",get:function(){return g}}]),t}();i.default(document).on(L,O,q._handleDismiss(new q)),i.default.fn[v]=q._jQueryInterface,i.default.fn[v].Constructor=q,i.default.fn[v].noConflict=function(){return i.default.fn[v]=z,q._jQueryInterface};var S="button",k="4.6.0",E="bs.button",W="."+E,B=".data-api",D=i.default.fn[S],X="active",P="btn",R="focus",j='[data-toggle^="button"]',I='[data-toggle="buttons"]',F='[data-toggle="button"]',H='[data-toggle="buttons"] .btn',$='input:not([type="hidden"])',U=".active",V=".btn",Y="click"+W+B,G="focus"+W+B+" blur"+W+B,J="load"+W+B,K=function(){function t(t){this._element=t,this.shouldAvoidTriggerChange=!1}var e=t.prototype;return e.toggle=function(){var t=!0,e=!0,n=i.default(this._element).closest(I)[0];if(n){var r=this._element.querySelector($);if(r){if("radio"===r.type)if(r.checked&&this._element.classList.contains(X))t=!1;else{var o=n.querySelector(U);o&&i.default(o).removeClass(X)}t&&("checkbox"!==r.type&&"radio"!==r.type||(r.checked=!this._element.classList.contains(X)),this.shouldAvoidTriggerChange||i.default(r).trigger("change")),r.focus(),e=!1}}this._element.hasAttribute("disabled")||this._element.classList.contains("disabled")||(e&&this._element.setAttribute("aria-pressed",!this._element.classList.contains(X)),t&&i.default(this._element).toggleClass(X))},e.dispose=function(){i.default.removeData(this._element,E),this._element=null},t._jQueryInterface=function(e,n){return this.each((function(){var r=i.default(this),o=r.data(E);o||(o=new t(this),r.data(E,o)),o.shouldAvoidTriggerChange=n,"toggle"===e&&o[e]()}))},c(t,null,[{key:"VERSION",get:function(){return k}}]),t}();i.default(document).on(Y,j,(function(t){var e=t.target,n=e;if(i.default(e).hasClass(P)||(e=i.default(e).closest(V)[0]),!e||e.hasAttribute("disabled")||e.classList.contains("disabled"))t.preventDefault();else{var r=e.querySelector($);if(r&&(r.hasAttribute("disabled")||r.classList.contains("disabled")))return void t.preventDefault();"INPUT"!==n.tagName&&"LABEL"===e.tagName||K._jQueryInterface.call(i.default(e),"toggle","INPUT"===n.tagName)}})).on(G,j,(function(t){var e=i.default(t.target).closest(V)[0];i.default(e).toggleClass(R,/^focus(in)?$/.test(t.type))})),i.default(window).on(J,(function(){for(var t=[].slice.call(document.querySelectorAll(H)),e=0,n=t.length;e0,this._pointerEvent=Boolean(window.PointerEvent||window.MSPointerEvent),this._addEventListeners()}var e=t.prototype;return e.next=function(){this._isSliding||this._slide(ut)},e.nextWhenVisible=function(){var t=i.default(this._element);!document.hidden&&t.is(":visible")&&"hidden"!==t.css("visibility")&&this.next()},e.prev=function(){this._isSliding||this._slide(ft)},e.pause=function(t){t||(this._isPaused=!0),this._element.querySelector(Pt)&&(m.triggerTransitionEnd(this._element),this.cycle(!0)),clearInterval(this._interval),this._interval=null},e.cycle=function(t){t||(this._isPaused=!1),this._interval&&(clearInterval(this._interval),this._interval=null),this._config.interval&&!this._isPaused&&(this._updateInterval(),this._interval=setInterval((document.visibilityState?this.nextWhenVisible:this.next).bind(this),this._config.interval))},e.to=function(t){var e=this;this._activeElement=this._element.querySelector(Bt);var n=this._getItemIndex(this._activeElement);if(!(t>this._items.length-1||t<0))if(this._isSliding)i.default(this._element).one(Mt,(function(){return e.to(t)}));else{if(n===t)return this.pause(),void this.cycle();var r=t>n?ut:ft;this._slide(r,this._items[t])}},e.dispose=function(){i.default(this._element).off(et),i.default.removeData(this._element,tt),this._items=null,this._config=null,this._element=null,this._interval=null,this._isPaused=null,this._isSliding=null,this._activeElement=null,this._indicatorsElement=null},e._getConfig=function(t){return t=s({},st,t),m.typeCheckConfig(Q,t,lt),t},e._handleSwipe=function(){var t=Math.abs(this.touchDeltaX);if(!(t<=ct)){var e=t/this.touchDeltaX;this.touchDeltaX=0,e>0&&this.prev(),e<0&&this.next()}},e._addEventListeners=function(){var t=this;this._config.keyboard&&i.default(this._element).on(bt,(function(e){return t._keydown(e)})),"hover"===this._config.pause&&i.default(this._element).on(mt,(function(e){return t.pause(e)})).on(vt,(function(e){return t.cycle(e)})),this._config.touch&&this._addTouchEventListeners()},e._addTouchEventListeners=function(){var t=this;if(this._touchSupported){var e=function(e){t._pointerEvent&&Ft[e.originalEvent.pointerType.toUpperCase()]?t.touchStartX=e.originalEvent.clientX:t._pointerEvent||(t.touchStartX=e.originalEvent.touches[0].clientX)},n=function(e){e.originalEvent.touches&&e.originalEvent.touches.length>1?t.touchDeltaX=0:t.touchDeltaX=e.originalEvent.touches[0].clientX-t.touchStartX},r=function(e){t._pointerEvent&&Ft[e.originalEvent.pointerType.toUpperCase()]&&(t.touchDeltaX=e.originalEvent.clientX-t.touchStartX),t._handleSwipe(),"hover"===t._config.pause&&(t.pause(),t.touchTimeout&&clearTimeout(t.touchTimeout),t.touchTimeout=setTimeout((function(e){return t.cycle(e)}),at+t._config.interval))};i.default(this._element.querySelectorAll(Xt)).on(Ot,(function(t){return t.preventDefault()})),this._pointerEvent?(i.default(this._element).on(_t,(function(t){return e(t)})),i.default(this._element).on(zt,(function(t){return r(t)})),this._element.classList.add(Et)):(i.default(this._element).on(gt,(function(t){return e(t)})),i.default(this._element).on(yt,(function(t){return n(t)})),i.default(this._element).on(At,(function(t){return r(t)})))}},e._keydown=function(t){if(!/input|textarea/i.test(t.target.tagName))switch(t.which){case it:t.preventDefault(),this.prev();break;case ot:t.preventDefault(),this.next()}},e._getItemIndex=function(t){return this._items=t&&t.parentNode?[].slice.call(t.parentNode.querySelectorAll(Dt)):[],this._items.indexOf(t)},e._getItemByDirection=function(t,e){var n=t===ut,r=t===ft,i=this._getItemIndex(e),o=this._items.length-1;if((r&&0===i||n&&i===o)&&!this._config.wrap)return e;var a=(i+(t===ft?-1:1))%this._items.length;return-1===a?this._items[this._items.length-1]:this._items[a]},e._triggerSlideEvent=function(t,e){var n=this._getItemIndex(t),r=this._getItemIndex(this._element.querySelector(Bt)),o=i.default.Event(ht,{relatedTarget:t,direction:e,from:r,to:n});return i.default(this._element).trigger(o),o},e._setActiveIndicatorElement=function(t){if(this._indicatorsElement){var e=[].slice.call(this._indicatorsElement.querySelectorAll(Wt));i.default(e).removeClass(Nt);var n=this._indicatorsElement.children[this._getItemIndex(t)];n&&i.default(n).addClass(Nt)}},e._updateInterval=function(){var t=this._activeElement||this._element.querySelector(Bt);if(t){var e=parseInt(t.getAttribute("data-interval"),10);e?(this._config.defaultInterval=this._config.defaultInterval||this._config.interval,this._config.interval=e):this._config.interval=this._config.defaultInterval||this._config.interval}},e._slide=function(t,e){var n,r,o,a=this,c=this._element.querySelector(Bt),s=this._getItemIndex(c),l=e||c&&this._getItemByDirection(t,c),u=this._getItemIndex(l),f=Boolean(this._interval);if(t===ut?(n=qt,r=St,o=dt):(n=Ct,r=kt,o=pt),l&&i.default(l).hasClass(Nt))this._isSliding=!1;else if(!this._triggerSlideEvent(l,o).isDefaultPrevented()&&c&&l){this._isSliding=!0,f&&this.pause(),this._setActiveIndicatorElement(l),this._activeElement=l;var d=i.default.Event(Mt,{relatedTarget:l,direction:o,from:s,to:u});if(i.default(this._element).hasClass(Tt)){i.default(l).addClass(r),m.reflow(l),i.default(c).addClass(n),i.default(l).addClass(n);var p=m.getTransitionDurationFromElement(c);i.default(c).one(m.TRANSITION_END,(function(){i.default(l).removeClass(n+" "+r).addClass(Nt),i.default(c).removeClass(Nt+" "+r+" "+n),a._isSliding=!1,setTimeout((function(){return i.default(a._element).trigger(d)}),0)})).emulateTransitionEnd(p)}else i.default(c).removeClass(Nt),i.default(l).addClass(Nt),this._isSliding=!1,i.default(this._element).trigger(d);f&&this.cycle()}},t._jQueryInterface=function(e){return this.each((function(){var n=i.default(this).data(tt),r=s({},st,i.default(this).data());"object"==typeof e&&(r=s({},r,e));var o="string"==typeof e?e:r.slide;if(n||(n=new t(this,r),i.default(this).data(tt,n)),"number"==typeof e)n.to(e);else if("string"==typeof o){if(void 0===n[o])throw new TypeError('No method named "'+o+'"');n[o]()}else r.interval&&r.ride&&(n.pause(),n.cycle())}))},t._dataApiClickHandler=function(e){var n=m.getSelectorFromElement(this);if(n){var r=i.default(n)[0];if(r&&i.default(r).hasClass(Lt)){var o=s({},i.default(r).data(),i.default(this).data()),a=this.getAttribute("data-slide-to");a&&(o.interval=!1),t._jQueryInterface.call(i.default(r),o),a&&i.default(r).data(tt).to(a),e.preventDefault()}}},c(t,null,[{key:"VERSION",get:function(){return Z}},{key:"Default",get:function(){return st}}]),t}();i.default(document).on(wt,jt,Ht._dataApiClickHandler),i.default(window).on(xt,(function(){for(var t=[].slice.call(document.querySelectorAll(It)),e=0,n=t.length;e0&&(this._selector=a,this._triggerArray.push(o))}this._parent=this._config.parent?this._getParent():null,this._config.parent||this._addAriaAndCollapsedClass(this._element,this._triggerArray),this._config.toggle&&this.toggle()}var e=t.prototype;return e.toggle=function(){i.default(this._element).hasClass(ie)?this.hide():this.show()},e.show=function(){var e,n,r=this;if(!(this._isTransitioning||i.default(this._element).hasClass(ie)||(this._parent&&0===(e=[].slice.call(this._parent.querySelectorAll(ue)).filter((function(t){return"string"==typeof r._config.parent?t.getAttribute("data-parent")===r._config.parent:t.classList.contains(oe)}))).length&&(e=null),e&&(n=i.default(e).not(this._selector).data(Vt))&&n._isTransitioning))){var o=i.default.Event(Zt);if(i.default(this._element).trigger(o),!o.isDefaultPrevented()){e&&(t._jQueryInterface.call(i.default(e).not(this._selector),"hide"),n||i.default(e).data(Vt,null));var a=this._getDimension();i.default(this._element).removeClass(oe).addClass(ae),this._element.style[a]=0,this._triggerArray.length&&i.default(this._triggerArray).removeClass(ce).attr("aria-expanded",!0),this.setTransitioning(!0);var c=function(){i.default(r._element).removeClass(ae).addClass(oe+" "+ie),r._element.style[a]="",r.setTransitioning(!1),i.default(r._element).trigger(te)},s="scroll"+(a[0].toUpperCase()+a.slice(1)),l=m.getTransitionDurationFromElement(this._element);i.default(this._element).one(m.TRANSITION_END,c).emulateTransitionEnd(l),this._element.style[a]=this._element[s]+"px"}}},e.hide=function(){var t=this;if(!this._isTransitioning&&i.default(this._element).hasClass(ie)){var e=i.default.Event(ee);if(i.default(this._element).trigger(e),!e.isDefaultPrevented()){var n=this._getDimension();this._element.style[n]=this._element.getBoundingClientRect()[n]+"px",m.reflow(this._element),i.default(this._element).addClass(ae).removeClass(oe+" "+ie);var r=this._triggerArray.length;if(r>0)for(var o=0;o0},e._getOffset=function(){var t=this,e={};return"function"==typeof this._config.offset?e.fn=function(e){return e.offsets=s({},e.offsets,t._config.offset(e.offsets,t._element)||{}),e}:e.offset=this._config.offset,e},e._getPopperConfig=function(){var t={placement:this._getPlacement(),modifiers:{offset:this._getOffset(),flip:{enabled:this._config.flip},preventOverflow:{boundariesElement:this._config.boundary}}};return"static"===this._config.display&&(t.modifiers.applyStyle={enabled:!1}),s({},t,this._config.popperConfig)},t._jQueryInterface=function(e){return this.each((function(){var n=i.default(this).data(Me);if(n||(n=new t(this,"object"==typeof e?e:null),i.default(this).data(Me,n)),"string"==typeof e){if(void 0===n[e])throw new TypeError('No method named "'+e+'"');n[e]()}}))},t._clearMenus=function(e){if(!e||e.which!==Oe&&("keyup"!==e.type||e.which===Ae))for(var n=[].slice.call(document.querySelectorAll(je)),r=0,o=n.length;r0&&a--,e.which===ze&&adocument.documentElement.clientHeight;n||(this._element.style.overflowY="hidden"),this._element.classList.add(Tn);var r=m.getTransitionDurationFromElement(this._dialog);i.default(this._element).off(m.TRANSITION_END),i.default(this._element).one(m.TRANSITION_END,(function(){t._element.classList.remove(Tn),n||i.default(t._element).one(m.TRANSITION_END,(function(){t._element.style.overflowY=""})).emulateTransitionEnd(t._element,r)})).emulateTransitionEnd(r),this._element.focus()}},e._showElement=function(t){var e=this,n=i.default(this._element).hasClass(Ln),r=this._dialog?this._dialog.querySelector(qn):null;this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE||document.body.appendChild(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),i.default(this._dialog).hasClass(zn)&&r?r.scrollTop=0:this._element.scrollTop=0,n&&m.reflow(this._element),i.default(this._element).addClass(Nn),this._config.focus&&this._enforceFocus();var o=i.default.Event(Mn,{relatedTarget:t}),a=function(){e._config.focus&&e._element.focus(),e._isTransitioning=!1,i.default(e._element).trigger(o)};if(n){var c=m.getTransitionDurationFromElement(this._dialog);i.default(this._dialog).one(m.TRANSITION_END,a).emulateTransitionEnd(c)}else a()},e._enforceFocus=function(){var t=this;i.default(document).off(bn).on(bn,(function(e){document!==e.target&&t._element!==e.target&&0===i.default(t._element).has(e.target).length&&t._element.focus()}))},e._setEscapeEvent=function(){var t=this;this._isShown?i.default(this._element).on(gn,(function(e){t._config.keyboard&&e.which===sn?(e.preventDefault(),t.hide()):t._config.keyboard||e.which!==sn||t._triggerBackdropTransition()})):this._isShown||i.default(this._element).off(gn)},e._setResizeEvent=function(){var t=this;this._isShown?i.default(window).on(mn,(function(e){return t.handleUpdate(e)})):i.default(window).off(mn)},e._hideModal=function(){var t=this;this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._isTransitioning=!1,this._showBackdrop((function(){i.default(document.body).removeClass(wn),t._resetAdjustments(),t._resetScrollbar(),i.default(t._element).trigger(pn)}))},e._removeBackdrop=function(){this._backdrop&&(i.default(this._backdrop).remove(),this._backdrop=null)},e._showBackdrop=function(t){var e=this,n=i.default(this._element).hasClass(Ln)?Ln:"";if(this._isShown&&this._config.backdrop){if(this._backdrop=document.createElement("div"),this._backdrop.className=xn,n&&this._backdrop.classList.add(n),i.default(this._backdrop).appendTo(document.body),i.default(this._element).on(vn,(function(t){e._ignoreBackdropClick?e._ignoreBackdropClick=!1:t.target===t.currentTarget&&("static"===e._config.backdrop?e._triggerBackdropTransition():e.hide())})),n&&m.reflow(this._backdrop),i.default(this._backdrop).addClass(Nn),!t)return;if(!n)return void t();var r=m.getTransitionDurationFromElement(this._backdrop);i.default(this._backdrop).one(m.TRANSITION_END,t).emulateTransitionEnd(r)}else if(!this._isShown&&this._backdrop){i.default(this._backdrop).removeClass(Nn);var o=function(){e._removeBackdrop(),t&&t()};if(i.default(this._element).hasClass(Ln)){var a=m.getTransitionDurationFromElement(this._backdrop);i.default(this._backdrop).one(m.TRANSITION_END,o).emulateTransitionEnd(a)}else o()}else t&&t()},e._adjustDialog=function(){var t=this._element.scrollHeight>document.documentElement.clientHeight;!this._isBodyOverflowing&&t&&(this._element.style.paddingLeft=this._scrollbarWidth+"px"),this._isBodyOverflowing&&!t&&(this._element.style.paddingRight=this._scrollbarWidth+"px")},e._resetAdjustments=function(){this._element.style.paddingLeft="",this._element.style.paddingRight=""},e._checkScrollbar=function(){var t=document.body.getBoundingClientRect();this._isBodyOverflowing=Math.round(t.left+t.right)
',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:0,container:!1,fallbackPlacement:"flip",boundary:"scrollParent",customClass:"",sanitize:!0,sanitizeFn:null,whiteList:Xn,popperConfig:null},tr="show",er="out",nr={HIDE:"hide"+Un,HIDDEN:"hidden"+Un,SHOW:"show"+Un,SHOWN:"shown"+Un,INSERTED:"inserted"+Un,CLICK:"click"+Un,FOCUSIN:"focusin"+Un,FOCUSOUT:"focusout"+Un,MOUSEENTER:"mouseenter"+Un,MOUSELEAVE:"mouseleave"+Un},rr="fade",ir="show",or=".tooltip-inner",ar=".arrow",cr="hover",sr="focus",lr="click",ur="manual",fr=function(){function t(t,e){if(void 0===o.default)throw new TypeError("Bootstrap's tooltips require Popper (https://popper.js.org)");this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this.element=t,this.config=this._getConfig(e),this.tip=null,this._setListeners()}var e=t.prototype;return e.enable=function(){this._isEnabled=!0},e.disable=function(){this._isEnabled=!1},e.toggleEnabled=function(){this._isEnabled=!this._isEnabled},e.toggle=function(t){if(this._isEnabled)if(t){var e=this.constructor.DATA_KEY,n=i.default(t.currentTarget).data(e);n||(n=new this.constructor(t.currentTarget,this._getDelegateConfig()),i.default(t.currentTarget).data(e,n)),n._activeTrigger.click=!n._activeTrigger.click,n._isWithActiveTrigger()?n._enter(null,n):n._leave(null,n)}else{if(i.default(this.getTipElement()).hasClass(ir))return void this._leave(null,this);this._enter(null,this)}},e.dispose=function(){clearTimeout(this._timeout),i.default.removeData(this.element,this.constructor.DATA_KEY),i.default(this.element).off(this.constructor.EVENT_KEY),i.default(this.element).closest(".modal").off("hide.bs.modal",this._hideModalHandler),this.tip&&i.default(this.tip).remove(),this._isEnabled=null,this._timeout=null,this._hoverState=null,this._activeTrigger=null,this._popper&&this._popper.destroy(),this._popper=null,this.element=null,this.config=null,this.tip=null},e.show=function(){var t=this;if("none"===i.default(this.element).css("display"))throw new Error("Please use show on visible elements");var e=i.default.Event(this.constructor.Event.SHOW);if(this.isWithContent()&&this._isEnabled){i.default(this.element).trigger(e);var n=m.findShadowRoot(this.element),r=i.default.contains(null!==n?n:this.element.ownerDocument.documentElement,this.element);if(e.isDefaultPrevented()||!r)return;var a=this.getTipElement(),c=m.getUID(this.constructor.NAME);a.setAttribute("id",c),this.element.setAttribute("aria-describedby",c),this.setContent(),this.config.animation&&i.default(a).addClass(rr);var s="function"==typeof this.config.placement?this.config.placement.call(this,a,this.element):this.config.placement,l=this._getAttachment(s);this.addAttachmentClass(l);var u=this._getContainer();i.default(a).data(this.constructor.DATA_KEY,this),i.default.contains(this.element.ownerDocument.documentElement,this.tip)||i.default(a).appendTo(u),i.default(this.element).trigger(this.constructor.Event.INSERTED),this._popper=new o.default(this.element,a,this._getPopperConfig(l)),i.default(a).addClass(ir),i.default(a).addClass(this.config.customClass),"ontouchstart"in document.documentElement&&i.default(document.body).children().on("mouseover",null,i.default.noop);var f=function(){t.config.animation&&t._fixTransition();var e=t._hoverState;t._hoverState=null,i.default(t.element).trigger(t.constructor.Event.SHOWN),e===er&&t._leave(null,t)};if(i.default(this.tip).hasClass(rr)){var d=m.getTransitionDurationFromElement(this.tip);i.default(this.tip).one(m.TRANSITION_END,f).emulateTransitionEnd(d)}else f()}},e.hide=function(t){var e=this,n=this.getTipElement(),r=i.default.Event(this.constructor.Event.HIDE),o=function(){e._hoverState!==tr&&n.parentNode&&n.parentNode.removeChild(n),e._cleanTipClass(),e.element.removeAttribute("aria-describedby"),i.default(e.element).trigger(e.constructor.Event.HIDDEN),null!==e._popper&&e._popper.destroy(),t&&t()};if(i.default(this.element).trigger(r),!r.isDefaultPrevented()){if(i.default(n).removeClass(ir),"ontouchstart"in document.documentElement&&i.default(document.body).children().off("mouseover",null,i.default.noop),this._activeTrigger[lr]=!1,this._activeTrigger[sr]=!1,this._activeTrigger[cr]=!1,i.default(this.tip).hasClass(rr)){var a=m.getTransitionDurationFromElement(n);i.default(n).one(m.TRANSITION_END,o).emulateTransitionEnd(a)}else o();this._hoverState=""}},e.update=function(){null!==this._popper&&this._popper.scheduleUpdate()},e.isWithContent=function(){return Boolean(this.getTitle())},e.addAttachmentClass=function(t){i.default(this.getTipElement()).addClass(Yn+"-"+t)},e.getTipElement=function(){return this.tip=this.tip||i.default(this.config.template)[0],this.tip},e.setContent=function(){var t=this.getTipElement();this.setElementContent(i.default(t.querySelectorAll(or)),this.getTitle()),i.default(t).removeClass(rr+" "+ir)},e.setElementContent=function(t,e){"object"!=typeof e||!e.nodeType&&!e.jquery?this.config.html?(this.config.sanitize&&(e=In(e,this.config.whiteList,this.config.sanitizeFn)),t.html(e)):t.text(e):this.config.html?i.default(e).parent().is(t)||t.empty().append(e):t.text(i.default(e).text())},e.getTitle=function(){var t=this.element.getAttribute("data-original-title");return t||(t="function"==typeof this.config.title?this.config.title.call(this.element):this.config.title),t},e._getPopperConfig=function(t){var e=this;return s({},{placement:t,modifiers:{offset:this._getOffset(),flip:{behavior:this.config.fallbackPlacement},arrow:{element:ar},preventOverflow:{boundariesElement:this.config.boundary}},onCreate:function(t){t.originalPlacement!==t.placement&&e._handlePopperPlacementChange(t)},onUpdate:function(t){return e._handlePopperPlacementChange(t)}},this.config.popperConfig)},e._getOffset=function(){var t=this,e={};return"function"==typeof this.config.offset?e.fn=function(e){return e.offsets=s({},e.offsets,t.config.offset(e.offsets,t.element)||{}),e}:e.offset=this.config.offset,e},e._getContainer=function(){return!1===this.config.container?document.body:m.isElement(this.config.container)?i.default(this.config.container):i.default(document).find(this.config.container)},e._getAttachment=function(t){return Qn[t.toUpperCase()]},e._setListeners=function(){var t=this;this.config.trigger.split(" ").forEach((function(e){if("click"===e)i.default(t.element).on(t.constructor.Event.CLICK,t.config.selector,(function(e){return t.toggle(e)}));else if(e!==ur){var n=e===cr?t.constructor.Event.MOUSEENTER:t.constructor.Event.FOCUSIN,r=e===cr?t.constructor.Event.MOUSELEAVE:t.constructor.Event.FOCUSOUT;i.default(t.element).on(n,t.config.selector,(function(e){return t._enter(e)})).on(r,t.config.selector,(function(e){return t._leave(e)}))}})),this._hideModalHandler=function(){t.element&&t.hide()},i.default(this.element).closest(".modal").on("hide.bs.modal",this._hideModalHandler),this.config.selector?this.config=s({},this.config,{trigger:"manual",selector:""}):this._fixTitle()},e._fixTitle=function(){var t=typeof this.element.getAttribute("data-original-title");(this.element.getAttribute("title")||"string"!==t)&&(this.element.setAttribute("data-original-title",this.element.getAttribute("title")||""),this.element.setAttribute("title",""))},e._enter=function(t,e){var n=this.constructor.DATA_KEY;(e=e||i.default(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),i.default(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusin"===t.type?sr:cr]=!0),i.default(e.getTipElement()).hasClass(ir)||e._hoverState===tr?e._hoverState=tr:(clearTimeout(e._timeout),e._hoverState=tr,e.config.delay&&e.config.delay.show?e._timeout=setTimeout((function(){e._hoverState===tr&&e.show()}),e.config.delay.show):e.show())},e._leave=function(t,e){var n=this.constructor.DATA_KEY;(e=e||i.default(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),i.default(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusout"===t.type?sr:cr]=!1),e._isWithActiveTrigger()||(clearTimeout(e._timeout),e._hoverState=er,e.config.delay&&e.config.delay.hide?e._timeout=setTimeout((function(){e._hoverState===er&&e.hide()}),e.config.delay.hide):e.hide())},e._isWithActiveTrigger=function(){for(var t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1},e._getConfig=function(t){var e=i.default(this.element).data();return Object.keys(e).forEach((function(t){-1!==Jn.indexOf(t)&&delete e[t]})),"number"==typeof(t=s({},this.constructor.Default,e,"object"==typeof t&&t?t:{})).delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),m.typeCheckConfig(Fn,t,this.constructor.DefaultType),t.sanitize&&(t.template=In(t.template,t.whiteList,t.sanitizeFn)),t},e._getDelegateConfig=function(){var t={};if(this.config)for(var e in this.config)this.constructor.Default[e]!==this.config[e]&&(t[e]=this.config[e]);return t},e._cleanTipClass=function(){var t=i.default(this.getTipElement()),e=t.attr("class").match(Gn);null!==e&&e.length&&t.removeClass(e.join(""))},e._handlePopperPlacementChange=function(t){this.tip=t.instance.popper,this._cleanTipClass(),this.addAttachmentClass(this._getAttachment(t.placement))},e._fixTransition=function(){var t=this.getTipElement(),e=this.config.animation;null===t.getAttribute("x-placement")&&(i.default(t).removeClass(rr),this.config.animation=!1,this.hide(),this.show(),this.config.animation=e)},t._jQueryInterface=function(e){return this.each((function(){var n=i.default(this),r=n.data($n),o="object"==typeof e&&e;if((r||!/dispose|hide/.test(e))&&(r||(r=new t(this,o),n.data($n,r)),"string"==typeof e)){if(void 0===r[e])throw new TypeError('No method named "'+e+'"');r[e]()}}))},c(t,null,[{key:"VERSION",get:function(){return Hn}},{key:"Default",get:function(){return Zn}},{key:"NAME",get:function(){return Fn}},{key:"DATA_KEY",get:function(){return $n}},{key:"Event",get:function(){return nr}},{key:"EVENT_KEY",get:function(){return Un}},{key:"DefaultType",get:function(){return Kn}}]),t}();i.default.fn[Fn]=fr._jQueryInterface,i.default.fn[Fn].Constructor=fr,i.default.fn[Fn].noConflict=function(){return i.default.fn[Fn]=Vn,fr._jQueryInterface};var dr="popover",pr="4.6.0",hr="bs.popover",Mr="."+hr,br=i.default.fn[dr],mr="bs-popover",vr=new RegExp("(^|\\s)"+mr+"\\S+","g"),gr=s({},fr.Default,{placement:"right",trigger:"click",content:"",template:''}),yr=s({},fr.DefaultType,{content:"(string|element|function)"}),Ar="fade",_r="show",zr=".popover-header",Or=".popover-body",xr={HIDE:"hide"+Mr,HIDDEN:"hidden"+Mr,SHOW:"show"+Mr,SHOWN:"shown"+Mr,INSERTED:"inserted"+Mr,CLICK:"click"+Mr,FOCUSIN:"focusin"+Mr,FOCUSOUT:"focusout"+Mr,MOUSEENTER:"mouseenter"+Mr,MOUSELEAVE:"mouseleave"+Mr},wr=function(t){function e(){return t.apply(this,arguments)||this}l(e,t);var n=e.prototype;return n.isWithContent=function(){return this.getTitle()||this._getContent()},n.addAttachmentClass=function(t){i.default(this.getTipElement()).addClass(mr+"-"+t)},n.getTipElement=function(){return this.tip=this.tip||i.default(this.config.template)[0],this.tip},n.setContent=function(){var t=i.default(this.getTipElement());this.setElementContent(t.find(zr),this.getTitle());var e=this._getContent();"function"==typeof e&&(e=e.call(this.element)),this.setElementContent(t.find(Or),e),t.removeClass(Ar+" "+_r)},n._getContent=function(){return this.element.getAttribute("data-content")||this.config.content},n._cleanTipClass=function(){var t=i.default(this.getTipElement()),e=t.attr("class").match(vr);null!==e&&e.length>0&&t.removeClass(e.join(""))},e._jQueryInterface=function(t){return this.each((function(){var n=i.default(this).data(hr),r="object"==typeof t?t:null;if((n||!/dispose|hide/.test(t))&&(n||(n=new e(this,r),i.default(this).data(hr,n)),"string"==typeof t)){if(void 0===n[t])throw new TypeError('No method named "'+t+'"');n[t]()}}))},c(e,null,[{key:"VERSION",get:function(){return pr}},{key:"Default",get:function(){return gr}},{key:"NAME",get:function(){return dr}},{key:"DATA_KEY",get:function(){return hr}},{key:"Event",get:function(){return xr}},{key:"EVENT_KEY",get:function(){return Mr}},{key:"DefaultType",get:function(){return yr}}]),e}(fr);i.default.fn[dr]=wr._jQueryInterface,i.default.fn[dr].Constructor=wr,i.default.fn[dr].noConflict=function(){return i.default.fn[dr]=br,wr._jQueryInterface};var Lr="scrollspy",Nr="4.6.0",Tr="bs.scrollspy",Cr="."+Tr,qr=".data-api",Sr=i.default.fn[Lr],kr={offset:10,method:"auto",target:""},Er={offset:"number",method:"string",target:"(string|element)"},Wr="activate"+Cr,Br="scroll"+Cr,Dr="load"+Cr+qr,Xr="dropdown-item",Pr="active",Rr='[data-spy="scroll"]',jr=".nav, .list-group",Ir=".nav-link",Fr=".nav-item",Hr=".list-group-item",$r=".dropdown",Ur=".dropdown-item",Vr=".dropdown-toggle",Yr="offset",Gr="position",Jr=function(){function t(t,e){var n=this;this._element=t,this._scrollElement="BODY"===t.tagName?window:t,this._config=this._getConfig(e),this._selector=this._config.target+" "+Ir+","+this._config.target+" "+Hr+","+this._config.target+" "+Ur,this._offsets=[],this._targets=[],this._activeTarget=null,this._scrollHeight=0,i.default(this._scrollElement).on(Br,(function(t){return n._process(t)})),this.refresh(),this._process()}var e=t.prototype;return e.refresh=function(){var t=this,e=this._scrollElement===this._scrollElement.window?Yr:Gr,n="auto"===this._config.method?e:this._config.method,r=n===Gr?this._getScrollTop():0;this._offsets=[],this._targets=[],this._scrollHeight=this._getScrollHeight(),[].slice.call(document.querySelectorAll(this._selector)).map((function(t){var e,o=m.getSelectorFromElement(t);if(o&&(e=document.querySelector(o)),e){var a=e.getBoundingClientRect();if(a.width||a.height)return[i.default(e)[n]().top+r,o]}return null})).filter((function(t){return t})).sort((function(t,e){return t[0]-e[0]})).forEach((function(e){t._offsets.push(e[0]),t._targets.push(e[1])}))},e.dispose=function(){i.default.removeData(this._element,Tr),i.default(this._scrollElement).off(Cr),this._element=null,this._scrollElement=null,this._config=null,this._selector=null,this._offsets=null,this._targets=null,this._activeTarget=null,this._scrollHeight=null},e._getConfig=function(t){if("string"!=typeof(t=s({},kr,"object"==typeof t&&t?t:{})).target&&m.isElement(t.target)){var e=i.default(t.target).attr("id");e||(e=m.getUID(Lr),i.default(t.target).attr("id",e)),t.target="#"+e}return m.typeCheckConfig(Lr,t,Er),t},e._getScrollTop=function(){return this._scrollElement===window?this._scrollElement.pageYOffset:this._scrollElement.scrollTop},e._getScrollHeight=function(){return this._scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)},e._getOffsetHeight=function(){return this._scrollElement===window?window.innerHeight:this._scrollElement.getBoundingClientRect().height},e._process=function(){var t=this._getScrollTop()+this._config.offset,e=this._getScrollHeight(),n=this._config.offset+e-this._getOffsetHeight();if(this._scrollHeight!==e&&this.refresh(),t>=n){var r=this._targets[this._targets.length-1];this._activeTarget!==r&&this._activate(r)}else{if(this._activeTarget&&t0)return this._activeTarget=null,void this._clear();for(var i=this._offsets.length;i--;)this._activeTarget!==this._targets[i]&&t>=this._offsets[i]&&(void 0===this._offsets[i+1]||t1&&(i-=1)),[360*i,100*o,100*l]},i.rgb.hwb=function(t){var e=t[0],n=t[1],r=t[2];return[i.rgb.hsl(t)[0],1/255*Math.min(e,Math.min(n,r))*100,100*(r=1-1/255*Math.max(e,Math.max(n,r)))]},i.rgb.cmyk=function(t){var e,n=t[0]/255,r=t[1]/255,i=t[2]/255;return[100*((1-n-(e=Math.min(1-n,1-r,1-i)))/(1-e)||0),100*((1-r-e)/(1-e)||0),100*((1-i-e)/(1-e)||0),100*e]},i.rgb.keyword=function(t){var n=e[t];if(n)return n;var i,o=1/0;for(var a in r)if(r.hasOwnProperty(a)){var c=s(t,r[a]);c.04045?Math.pow((e+.055)/1.055,2.4):e/12.92)+.3576*(n=n>.04045?Math.pow((n+.055)/1.055,2.4):n/12.92)+.1805*(r=r>.04045?Math.pow((r+.055)/1.055,2.4):r/12.92)),100*(.2126*e+.7152*n+.0722*r),100*(.0193*e+.1192*n+.9505*r)]},i.rgb.lab=function(t){var e=i.rgb.xyz(t),n=e[0],r=e[1],o=e[2];return r/=100,o/=108.883,n=(n/=95.047)>.008856?Math.pow(n,1/3):7.787*n+16/116,[116*(r=r>.008856?Math.pow(r,1/3):7.787*r+16/116)-16,500*(n-r),200*(r-(o=o>.008856?Math.pow(o,1/3):7.787*o+16/116))]},i.hsl.rgb=function(t){var e,n,r,i,o,a=t[0]/360,c=t[1]/100,s=t[2]/100;if(0===c)return[o=255*s,o,o];e=2*s-(n=s<.5?s*(1+c):s+c-s*c),i=[0,0,0];for(var l=0;l<3;l++)(r=a+1/3*-(l-1))<0&&r++,r>1&&r--,o=6*r<1?e+6*(n-e)*r:2*r<1?n:3*r<2?e+(n-e)*(2/3-r)*6:e,i[l]=255*o;return i},i.hsl.hsv=function(t){var e=t[0],n=t[1]/100,r=t[2]/100,i=n,o=Math.max(r,.01);return n*=(r*=2)<=1?r:2-r,i*=o<=1?o:2-o,[e,100*(0===r?2*i/(o+i):2*n/(r+n)),(r+n)/2*100]},i.hsv.rgb=function(t){var e=t[0]/60,n=t[1]/100,r=t[2]/100,i=Math.floor(e)%6,o=e-Math.floor(e),a=255*r*(1-n),c=255*r*(1-n*o),s=255*r*(1-n*(1-o));switch(r*=255,i){case 0:return[r,s,a];case 1:return[c,r,a];case 2:return[a,r,s];case 3:return[a,c,r];case 4:return[s,a,r];case 5:return[r,a,c]}},i.hsv.hsl=function(t){var e,n,r,i=t[0],o=t[1]/100,a=t[2]/100,c=Math.max(a,.01);return r=(2-o)*a,n=o*c,[i,100*(n=(n/=(e=(2-o)*c)<=1?e:2-e)||0),100*(r/=2)]},i.hwb.rgb=function(t){var e,n,r,i,o,a,c,s=t[0]/360,l=t[1]/100,u=t[2]/100,f=l+u;switch(f>1&&(l/=f,u/=f),r=6*s-(e=Math.floor(6*s)),0!=(1&e)&&(r=1-r),i=l+r*((n=1-u)-l),e){default:case 6:case 0:o=n,a=i,c=l;break;case 1:o=i,a=n,c=l;break;case 2:o=l,a=n,c=i;break;case 3:o=l,a=i,c=n;break;case 4:o=i,a=l,c=n;break;case 5:o=n,a=l,c=i}return[255*o,255*a,255*c]},i.cmyk.rgb=function(t){var e=t[0]/100,n=t[1]/100,r=t[2]/100,i=t[3]/100;return[255*(1-Math.min(1,e*(1-i)+i)),255*(1-Math.min(1,n*(1-i)+i)),255*(1-Math.min(1,r*(1-i)+i))]},i.xyz.rgb=function(t){var e,n,r,i=t[0]/100,o=t[1]/100,a=t[2]/100;return n=-.9689*i+1.8758*o+.0415*a,r=.0557*i+-.204*o+1.057*a,e=(e=3.2406*i+-1.5372*o+-.4986*a)>.0031308?1.055*Math.pow(e,1/2.4)-.055:12.92*e,n=n>.0031308?1.055*Math.pow(n,1/2.4)-.055:12.92*n,r=r>.0031308?1.055*Math.pow(r,1/2.4)-.055:12.92*r,[255*(e=Math.min(Math.max(0,e),1)),255*(n=Math.min(Math.max(0,n),1)),255*(r=Math.min(Math.max(0,r),1))]},i.xyz.lab=function(t){var e=t[0],n=t[1],r=t[2];return n/=100,r/=108.883,e=(e/=95.047)>.008856?Math.pow(e,1/3):7.787*e+16/116,[116*(n=n>.008856?Math.pow(n,1/3):7.787*n+16/116)-16,500*(e-n),200*(n-(r=r>.008856?Math.pow(r,1/3):7.787*r+16/116))]},i.lab.xyz=function(t){var e,n,r,i=t[0];e=t[1]/500+(n=(i+16)/116),r=n-t[2]/200;var o=Math.pow(n,3),a=Math.pow(e,3),c=Math.pow(r,3);return n=o>.008856?o:(n-16/116)/7.787,e=a>.008856?a:(e-16/116)/7.787,r=c>.008856?c:(r-16/116)/7.787,[e*=95.047,n*=100,r*=108.883]},i.lab.lch=function(t){var e,n=t[0],r=t[1],i=t[2];return(e=360*Math.atan2(i,r)/2/Math.PI)<0&&(e+=360),[n,Math.sqrt(r*r+i*i),e]},i.lch.lab=function(t){var e,n=t[0],r=t[1];return e=t[2]/360*2*Math.PI,[n,r*Math.cos(e),r*Math.sin(e)]},i.rgb.ansi16=function(t){var e=t[0],n=t[1],r=t[2],o=1 in arguments?arguments[1]:i.rgb.hsv(t)[2];if(0===(o=Math.round(o/50)))return 30;var a=30+(Math.round(r/255)<<2|Math.round(n/255)<<1|Math.round(e/255));return 2===o&&(a+=60),a},i.hsv.ansi16=function(t){return i.rgb.ansi16(i.hsv.rgb(t),t[2])},i.rgb.ansi256=function(t){var e=t[0],n=t[1],r=t[2];return e===n&&n===r?e<8?16:e>248?231:Math.round((e-8)/247*24)+232:16+36*Math.round(e/255*5)+6*Math.round(n/255*5)+Math.round(r/255*5)},i.ansi16.rgb=function(t){var e=t%10;if(0===e||7===e)return t>50&&(e+=3.5),[e=e/10.5*255,e,e];var n=.5*(1+~~(t>50));return[(1&e)*n*255,(e>>1&1)*n*255,(e>>2&1)*n*255]},i.ansi256.rgb=function(t){if(t>=232){var e=10*(t-232)+8;return[e,e,e]}var n;return t-=16,[Math.floor(t/36)/5*255,Math.floor((n=t%36)/6)/5*255,n%6/5*255]},i.rgb.hex=function(t){var e=(((255&Math.round(t[0]))<<16)+((255&Math.round(t[1]))<<8)+(255&Math.round(t[2]))).toString(16).toUpperCase();return"000000".substring(e.length)+e},i.hex.rgb=function(t){var e=t.toString(16).match(/[a-f0-9]{6}|[a-f0-9]{3}/i);if(!e)return[0,0,0];var n=e[0];3===e[0].length&&(n=n.split("").map((function(t){return t+t})).join(""));var r=parseInt(n,16);return[r>>16&255,r>>8&255,255&r]},i.rgb.hcg=function(t){var e,n=t[0]/255,r=t[1]/255,i=t[2]/255,o=Math.max(Math.max(n,r),i),a=Math.min(Math.min(n,r),i),c=o-a;return e=c<=0?0:o===n?(r-i)/c%6:o===r?2+(i-n)/c:4+(n-r)/c+4,e/=6,[360*(e%=1),100*c,100*(c<1?a/(1-c):0)]},i.hsl.hcg=function(t){var e=t[1]/100,n=t[2]/100,r=1,i=0;return(r=n<.5?2*e*n:2*e*(1-n))<1&&(i=(n-.5*r)/(1-r)),[t[0],100*r,100*i]},i.hsv.hcg=function(t){var e=t[1]/100,n=t[2]/100,r=e*n,i=0;return r<1&&(i=(n-r)/(1-r)),[t[0],100*r,100*i]},i.hcg.rgb=function(t){var e=t[0]/360,n=t[1]/100,r=t[2]/100;if(0===n)return[255*r,255*r,255*r];var i=[0,0,0],o=e%1*6,a=o%1,c=1-a,s=0;switch(Math.floor(o)){case 0:i[0]=1,i[1]=a,i[2]=0;break;case 1:i[0]=c,i[1]=1,i[2]=0;break;case 2:i[0]=0,i[1]=1,i[2]=a;break;case 3:i[0]=0,i[1]=c,i[2]=1;break;case 4:i[0]=a,i[1]=0,i[2]=1;break;default:i[0]=1,i[1]=0,i[2]=c}return s=(1-n)*r,[255*(n*i[0]+s),255*(n*i[1]+s),255*(n*i[2]+s)]},i.hcg.hsv=function(t){var e=t[1]/100,n=e+t[2]/100*(1-e),r=0;return n>0&&(r=e/n),[t[0],100*r,100*n]},i.hcg.hsl=function(t){var e=t[1]/100,n=t[2]/100*(1-e)+.5*e,r=0;return n>0&&n<.5?r=e/(2*n):n>=.5&&n<1&&(r=e/(2*(1-n))),[t[0],100*r,100*n]},i.hcg.hwb=function(t){var e=t[1]/100,n=e+t[2]/100*(1-e);return[t[0],100*(n-e),100*(1-n)]},i.hwb.hcg=function(t){var e=t[1]/100,n=1-t[2]/100,r=n-e,i=0;return r<1&&(i=(n-r)/(1-r)),[t[0],100*r,100*i]},i.apple.rgb=function(t){return[t[0]/65535*255,t[1]/65535*255,t[2]/65535*255]},i.rgb.apple=function(t){return[t[0]/255*65535,t[1]/255*65535,t[2]/255*65535]},i.gray.rgb=function(t){return[t[0]/100*255,t[0]/100*255,t[0]/100*255]},i.gray.hsl=i.gray.hsv=function(t){return[0,0,t[0]]},i.gray.hwb=function(t){return[0,100,t[0]]},i.gray.cmyk=function(t){return[0,0,0,t[0]]},i.gray.lab=function(t){return[t[0],0,0]},i.gray.hex=function(t){var e=255&Math.round(t[0]/100*255),n=((e<<16)+(e<<8)+e).toString(16).toUpperCase();return"000000".substring(n.length)+n},i.rgb.gray=function(t){return[(t[0]+t[1]+t[2])/3/255*100]}}));function o(){for(var t={},e=Object.keys(i),n=e.length,r=0;r1&&(e=Array.prototype.slice.call(arguments)),t(e))};return"conversion"in t&&(e.conversion=t.conversion),e}function d(t){var e=function(e){if(null==e)return e;arguments.length>1&&(e=Array.prototype.slice.call(arguments));var n=t(e);if("object"==typeof n)for(var r=n.length,i=0;i=0&&e<1?S(Math.round(255*e)):"")}function z(t,e){return e<1||t[3]&&t[3]<1?O(t,e):"rgb("+t[0]+", "+t[1]+", "+t[2]+")"}function O(t,e){return void 0===e&&(e=void 0!==t[3]?t[3]:1),"rgba("+t[0]+", "+t[1]+", "+t[2]+", "+e+")"}function x(t,e){return e<1||t[3]&&t[3]<1?w(t,e):"rgb("+Math.round(t[0]/255*100)+"%, "+Math.round(t[1]/255*100)+"%, "+Math.round(t[2]/255*100)+"%)"}function w(t,e){return"rgba("+Math.round(t[0]/255*100)+"%, "+Math.round(t[1]/255*100)+"%, "+Math.round(t[2]/255*100)+"%, "+(e||t[3]||1)+")"}function L(t,e){return e<1||t[3]&&t[3]<1?N(t,e):"hsl("+t[0]+", "+t[1]+"%, "+t[2]+"%)"}function N(t,e){return void 0===e&&(e=void 0!==t[3]?t[3]:1),"hsla("+t[0]+", "+t[1]+"%, "+t[2]+"%, "+e+")"}function T(t,e){return void 0===e&&(e=void 0!==t[3]?t[3]:1),"hwb("+t[0]+", "+t[1]+"%, "+t[2]+"%"+(void 0!==e&&1!==e?", "+e:"")+")"}function C(t){return k[t.slice(0,3)]}function q(t,e,n){return Math.min(Math.max(e,t),n)}function S(t){var e=t.toString(16).toUpperCase();return e.length<2?"0"+e:e}var k={};for(var E in h)k[h[E]]=E;var W=function(t){return t instanceof W?t:this instanceof W?(this.valid=!1,this.values={rgb:[0,0,0],hsl:[0,0,0],hsv:[0,0,0],hwb:[0,0,0],cmyk:[0,0,0,0],alpha:1},void("string"==typeof t?(e=M.getRgba(t))?this.setValues("rgb",e):(e=M.getHsla(t))?this.setValues("hsl",e):(e=M.getHwb(t))&&this.setValues("hwb",e):"object"==typeof t&&(void 0!==(e=t).r||void 0!==e.red?this.setValues("rgb",e):void 0!==e.l||void 0!==e.lightness?this.setValues("hsl",e):void 0!==e.v||void 0!==e.value?this.setValues("hsv",e):void 0!==e.w||void 0!==e.whiteness?this.setValues("hwb",e):void 0===e.c&&void 0===e.cyan||this.setValues("cmyk",e)))):new W(t);var e};W.prototype={isValid:function(){return this.valid},rgb:function(){return this.setSpace("rgb",arguments)},hsl:function(){return this.setSpace("hsl",arguments)},hsv:function(){return this.setSpace("hsv",arguments)},hwb:function(){return this.setSpace("hwb",arguments)},cmyk:function(){return this.setSpace("cmyk",arguments)},rgbArray:function(){return this.values.rgb},hslArray:function(){return this.values.hsl},hsvArray:function(){return this.values.hsv},hwbArray:function(){var t=this.values;return 1!==t.alpha?t.hwb.concat([t.alpha]):t.hwb},cmykArray:function(){return this.values.cmyk},rgbaArray:function(){var t=this.values;return t.rgb.concat([t.alpha])},hslaArray:function(){var t=this.values;return t.hsl.concat([t.alpha])},alpha:function(t){return void 0===t?this.values.alpha:(this.setValues("alpha",t),this)},red:function(t){return this.setChannel("rgb",0,t)},green:function(t){return this.setChannel("rgb",1,t)},blue:function(t){return this.setChannel("rgb",2,t)},hue:function(t){return t&&(t=(t%=360)<0?360+t:t),this.setChannel("hsl",0,t)},saturation:function(t){return this.setChannel("hsl",1,t)},lightness:function(t){return this.setChannel("hsl",2,t)},saturationv:function(t){return this.setChannel("hsv",1,t)},whiteness:function(t){return this.setChannel("hwb",1,t)},blackness:function(t){return this.setChannel("hwb",2,t)},value:function(t){return this.setChannel("hsv",2,t)},cyan:function(t){return this.setChannel("cmyk",0,t)},magenta:function(t){return this.setChannel("cmyk",1,t)},yellow:function(t){return this.setChannel("cmyk",2,t)},black:function(t){return this.setChannel("cmyk",3,t)},hexString:function(){return M.hexString(this.values.rgb)},rgbString:function(){return M.rgbString(this.values.rgb,this.values.alpha)},rgbaString:function(){return M.rgbaString(this.values.rgb,this.values.alpha)},percentString:function(){return M.percentString(this.values.rgb,this.values.alpha)},hslString:function(){return M.hslString(this.values.hsl,this.values.alpha)},hslaString:function(){return M.hslaString(this.values.hsl,this.values.alpha)},hwbString:function(){return M.hwbString(this.values.hwb,this.values.alpha)},keyword:function(){return M.keyword(this.values.rgb,this.values.alpha)},rgbNumber:function(){var t=this.values.rgb;return t[0]<<16|t[1]<<8|t[2]},luminosity:function(){for(var t=this.values.rgb,e=[],n=0;nn?(e+.05)/(n+.05):(n+.05)/(e+.05)},level:function(t){var e=this.contrast(t);return e>=7.1?"AAA":e>=4.5?"AA":""},dark:function(){var t=this.values.rgb;return(299*t[0]+587*t[1]+114*t[2])/1e3<128},light:function(){return!this.dark()},negate:function(){for(var t=[],e=0;e<3;e++)t[e]=255-this.values.rgb[e];return this.setValues("rgb",t),this},lighten:function(t){var e=this.values.hsl;return e[2]+=e[2]*t,this.setValues("hsl",e),this},darken:function(t){var e=this.values.hsl;return e[2]-=e[2]*t,this.setValues("hsl",e),this},saturate:function(t){var e=this.values.hsl;return e[1]+=e[1]*t,this.setValues("hsl",e),this},desaturate:function(t){var e=this.values.hsl;return e[1]-=e[1]*t,this.setValues("hsl",e),this},whiten:function(t){var e=this.values.hwb;return e[1]+=e[1]*t,this.setValues("hwb",e),this},blacken:function(t){var e=this.values.hwb;return e[2]+=e[2]*t,this.setValues("hwb",e),this},greyscale:function(){var t=this.values.rgb,e=.3*t[0]+.59*t[1]+.11*t[2];return this.setValues("rgb",[e,e,e]),this},clearer:function(t){var e=this.values.alpha;return this.setValues("alpha",e-e*t),this},opaquer:function(t){var e=this.values.alpha;return this.setValues("alpha",e+e*t),this},rotate:function(t){var e=this.values.hsl,n=(e[0]+t)%360;return e[0]=n<0?360+n:n,this.setValues("hsl",e),this},mix:function(t,e){var n=this,r=t,i=void 0===e?.5:e,o=2*i-1,a=n.alpha()-r.alpha(),c=((o*a==-1?o:(o+a)/(1+o*a))+1)/2,s=1-c;return this.rgb(c*n.red()+s*r.red(),c*n.green()+s*r.green(),c*n.blue()+s*r.blue()).alpha(n.alpha()*i+r.alpha()*(1-i))},toJSON:function(){return this.rgb()},clone:function(){var t,e,n=new W,r=this.values,i=n.values;for(var o in r)r.hasOwnProperty(o)&&(t=r[o],"[object Array]"===(e={}.toString.call(t))?i[o]=t.slice(0):"[object Number]"===e&&(i[o]=t));return n}},W.prototype.spaces={rgb:["red","green","blue"],hsl:["hue","saturation","lightness"],hsv:["hue","saturation","value"],hwb:["hue","whiteness","blackness"],cmyk:["cyan","magenta","yellow","black"]},W.prototype.maxes={rgb:[255,255,255],hsl:[360,100,100],hsv:[360,100,100],hwb:[360,100,100],cmyk:[100,100,100,100]},W.prototype.getValues=function(t){for(var e=this.values,n={},r=0;r=0;i--)e.call(n,t[i],i);else for(i=0;i=1?t:-(Math.sqrt(1-t*t)-1)},easeOutCirc:function(t){return Math.sqrt(1-(t-=1)*t)},easeInOutCirc:function(t){return(t/=.5)<1?-.5*(Math.sqrt(1-t*t)-1):.5*(Math.sqrt(1-(t-=2)*t)+1)},easeInElastic:function(t){var e=1.70158,n=0,r=1;return 0===t?0:1===t?1:(n||(n=.3),r<1?(r=1,e=n/4):e=n/(2*Math.PI)*Math.asin(1/r),-r*Math.pow(2,10*(t-=1))*Math.sin((t-e)*(2*Math.PI)/n))},easeOutElastic:function(t){var e=1.70158,n=0,r=1;return 0===t?0:1===t?1:(n||(n=.3),r<1?(r=1,e=n/4):e=n/(2*Math.PI)*Math.asin(1/r),r*Math.pow(2,-10*t)*Math.sin((t-e)*(2*Math.PI)/n)+1)},easeInOutElastic:function(t){var e=1.70158,n=0,r=1;return 0===t?0:2==(t/=.5)?1:(n||(n=.45),r<1?(r=1,e=n/4):e=n/(2*Math.PI)*Math.asin(1/r),t<1?r*Math.pow(2,10*(t-=1))*Math.sin((t-e)*(2*Math.PI)/n)*-.5:r*Math.pow(2,-10*(t-=1))*Math.sin((t-e)*(2*Math.PI)/n)*.5+1)},easeInBack:function(t){var e=1.70158;return t*t*((e+1)*t-e)},easeOutBack:function(t){var e=1.70158;return(t-=1)*t*((e+1)*t+e)+1},easeInOutBack:function(t){var e=1.70158;return(t/=.5)<1?t*t*((1+(e*=1.525))*t-e)*.5:.5*((t-=2)*t*((1+(e*=1.525))*t+e)+2)},easeInBounce:function(t){return 1-j.easeOutBounce(1-t)},easeOutBounce:function(t){return t<1/2.75?7.5625*t*t:t<2/2.75?7.5625*(t-=1.5/2.75)*t+.75:t<2.5/2.75?7.5625*(t-=2.25/2.75)*t+.9375:7.5625*(t-=2.625/2.75)*t+.984375},easeInOutBounce:function(t){return t<.5?.5*j.easeInBounce(2*t):.5*j.easeOutBounce(2*t-1)+.5}},I={effects:j};R.easingEffects=j;var F=Math.PI,H=F/180,$=2*F,U=F/2,V=F/4,Y=2*F/3,G={clear:function(t){t.ctx.clearRect(0,0,t.width,t.height)},roundedRect:function(t,e,n,r,i,o){if(o){var a=Math.min(o,i/2,r/2),c=e+a,s=n+a,l=e+r-a,u=n+i-a;t.moveTo(e,s),ce.left-n&&t.xe.top-n&&t.y0&&t.requestAnimationFrame()},advance:function(){for(var t,e,n,r,i=this.animations,o=0;o=n?(ct.callback(t.onAnimationComplete,[t],e),e.animating=!1,i.splice(o,1)):++o}},gt=ct.options.resolve,yt=["push","pop","shift","splice","unshift"];function At(t,e){t._chartjs?t._chartjs.listeners.push(e):(Object.defineProperty(t,"_chartjs",{configurable:!0,enumerable:!1,value:{listeners:[e]}}),yt.forEach((function(e){var n="onData"+e.charAt(0).toUpperCase()+e.slice(1),r=t[e];Object.defineProperty(t,e,{configurable:!0,enumerable:!1,value:function(){var e=Array.prototype.slice.call(arguments),i=r.apply(this,e);return ct.each(t._chartjs.listeners,(function(t){"function"==typeof t[n]&&t[n].apply(t,e)})),i}})})))}function _t(t,e){var n=t._chartjs;if(n){var r=n.listeners,i=r.indexOf(e);-1!==i&&r.splice(i,1),r.length>0||(yt.forEach((function(e){delete t[e]})),delete t._chartjs)}}var zt=function(t,e){this.initialize(t,e)};ct.extend(zt.prototype,{datasetElementType:null,dataElementType:null,_datasetElementOptions:["backgroundColor","borderCapStyle","borderColor","borderDash","borderDashOffset","borderJoinStyle","borderWidth"],_dataElementOptions:["backgroundColor","borderColor","borderWidth","pointStyle"],initialize:function(t,e){var n=this;n.chart=t,n.index=e,n.linkScales(),n.addElements(),n._type=n.getMeta().type},updateIndex:function(t){this.index=t},linkScales:function(){var t=this,e=t.getMeta(),n=t.chart,r=n.scales,i=t.getDataset(),o=n.options.scales;null!==e.xAxisID&&e.xAxisID in r&&!i.xAxisID||(e.xAxisID=i.xAxisID||o.xAxes[0].id),null!==e.yAxisID&&e.yAxisID in r&&!i.yAxisID||(e.yAxisID=i.yAxisID||o.yAxes[0].id)},getDataset:function(){return this.chart.data.datasets[this.index]},getMeta:function(){return this.chart.getDatasetMeta(this.index)},getScaleForId:function(t){return this.chart.scales[t]},_getValueScaleId:function(){return this.getMeta().yAxisID},_getIndexScaleId:function(){return this.getMeta().xAxisID},_getValueScale:function(){return this.getScaleForId(this._getValueScaleId())},_getIndexScale:function(){return this.getScaleForId(this._getIndexScaleId())},reset:function(){this._update(!0)},destroy:function(){this._data&&_t(this._data,this)},createMetaDataset:function(){var t=this,e=t.datasetElementType;return e&&new e({_chart:t.chart,_datasetIndex:t.index})},createMetaData:function(t){var e=this,n=e.dataElementType;return n&&new n({_chart:e.chart,_datasetIndex:e.index,_index:t})},addElements:function(){var t,e,n=this,r=n.getMeta(),i=n.getDataset().data||[],o=r.data;for(t=0,e=i.length;tr&&t.insertElements(r,i-r)},insertElements:function(t,e){for(var n=0;ni?(o=i/e.innerRadius,t.arc(a,c,e.innerRadius-i,r+o,n-o,!0)):t.arc(a,c,i,r+Math.PI/2,n-Math.PI/2),t.closePath(),t.clip()}function Lt(t,e,n,r){var i,o=n.endAngle;for(r&&(n.endAngle=n.startAngle+xt,wt(t,n),n.endAngle=o,n.endAngle===n.startAngle&&n.fullCircles&&(n.endAngle+=xt,n.fullCircles--)),t.beginPath(),t.arc(n.x,n.y,n.innerRadius,n.startAngle+xt,n.startAngle,!0),i=0;ic;)i-=xt;for(;i=a&&i<=c,l=o>=n.innerRadius&&o<=n.outerRadius;return s&&l}return!1},getCenterPoint:function(){var t=this._view,e=(t.startAngle+t.endAngle)/2,n=(t.innerRadius+t.outerRadius)/2;return{x:t.x+Math.cos(e)*n,y:t.y+Math.sin(e)*n}},getArea:function(){var t=this._view;return Math.PI*((t.endAngle-t.startAngle)/(2*Math.PI))*(Math.pow(t.outerRadius,2)-Math.pow(t.innerRadius,2))},tooltipPosition:function(){var t=this._view,e=t.startAngle+(t.endAngle-t.startAngle)/2,n=(t.outerRadius-t.innerRadius)/2+t.innerRadius;return{x:t.x+Math.cos(e)*n,y:t.y+Math.sin(e)*n}},draw:function(){var t,e=this._chart.ctx,n=this._view,r="inner"===n.borderAlign?.33:0,i={x:n.x,y:n.y,innerRadius:n.innerRadius,outerRadius:Math.max(n.outerRadius-r,0),pixelMargin:r,startAngle:n.startAngle,endAngle:n.endAngle,fullCircles:Math.floor(n.circumference/xt)};if(e.save(),e.fillStyle=n.backgroundColor,e.strokeStyle=n.borderColor,i.fullCircles){for(i.endAngle=i.startAngle+xt,e.beginPath(),e.arc(i.x,i.y,i.outerRadius,i.startAngle,i.endAngle),e.arc(i.x,i.y,i.innerRadius,i.endAngle,i.startAngle,!0),e.closePath(),t=0;tt.x&&(e=jt(e,"left","right")):t.basen?n:r,r:s.right||i<0?0:i>e?e:i,b:s.bottom||o<0?0:o>n?n:o,l:s.left||a<0?0:a>e?e:a}}function Ht(t){var e=Rt(t),n=e.right-e.left,r=e.bottom-e.top,i=Ft(t,n/2,r/2);return{outer:{x:e.left,y:e.top,w:n,h:r},inner:{x:e.left+i.l,y:e.top+i.t,w:n-i.l-i.r,h:r-i.t-i.b}}}function $t(t,e,n){var r=null===e,i=null===n,o=!(!t||r&&i)&&Rt(t);return o&&(r||e>=o.left&&e<=o.right)&&(i||n>=o.top&&n<=o.bottom)}Q._set("global",{elements:{rectangle:{backgroundColor:Xt,borderColor:Xt,borderSkipped:"bottom",borderWidth:0}}});var Ut=Mt.extend({_type:"rectangle",draw:function(){var t=this._chart.ctx,e=this._view,n=Ht(e),r=n.outer,i=n.inner;t.fillStyle=e.backgroundColor,t.fillRect(r.x,r.y,r.w,r.h),r.w===i.w&&r.h===i.h||(t.save(),t.beginPath(),t.rect(r.x,r.y,r.w,r.h),t.clip(),t.fillStyle=e.borderColor,t.rect(i.x,i.y,i.w,i.h),t.fill("evenodd"),t.restore())},height:function(){var t=this._view;return t.base-t.y},inRange:function(t,e){return $t(this._view,t,e)},inLabelRange:function(t,e){var n=this._view;return Pt(n)?$t(n,t,null):$t(n,null,e)},inXRange:function(t){return $t(this._view,t,null)},inYRange:function(t){return $t(this._view,null,t)},getCenterPoint:function(){var t,e,n=this._view;return Pt(n)?(t=n.x,e=(n.y+n.base)/2):(t=(n.x+n.base)/2,e=n.y),{x:t,y:e}},getArea:function(){var t=this._view;return Pt(t)?t.width*Math.abs(t.y-t.base):t.height*Math.abs(t.x-t.base)},tooltipPosition:function(){var t=this._view;return{x:t.x,y:t.y}}}),Vt={},Yt=Tt,Gt=St,Jt=Dt,Kt=Ut;Vt.Arc=Yt,Vt.Line=Gt,Vt.Point=Jt,Vt.Rectangle=Kt;var Qt=ct._deprecated,Zt=ct.valueOrDefault;function te(t,e){var n,r,i,o,a=t._length;for(i=1,o=e.length;i0?Math.min(a,Math.abs(r-n)):a,n=r;return a}function ee(t,e,n){var r,i,o=n.barThickness,a=e.stackCount,c=e.pixels[t],s=ct.isNullOrUndef(o)?te(e.scale,e.pixels):-1;return ct.isNullOrUndef(o)?(r=s*n.categoryPercentage,i=n.barPercentage):(r=o*a,i=1),{chunk:r/a,ratio:i,start:c-r/2}}function ne(t,e,n){var r,i=e.pixels,o=i[t],a=t>0?i[t-1]:null,c=t=0&&b.min>=0?b.min:b.max,A=void 0===b.start?b.end:b.max>=0&&b.min>=0?b.max-b.min:b.min-b.max,_=M.length;if(v||void 0===v&&void 0!==g)for(r=0;r<_&&(i=M[r]).index!==t;++r)i.stack===g&&(o=void 0===(l=d._parseValue(h[i.index].data[e])).start?l.end:l.min>=0&&l.max>=0?l.max:l.min,(b.min<0&&o<0||b.max>=0&&o>0)&&(y+=o));return a=d.getPixelForValue(y),s=(c=d.getPixelForValue(y+A))-a,void 0!==m&&Math.abs(s)=0&&!p||A<0&&p?a-m:a+m),{size:s,base:a,head:c,center:c+s/2}},calculateBarIndexPixels:function(t,e,n,r){var i=this,o="flex"===r.barThickness?ne(e,n,r):ee(e,n,r),a=i.getStackIndex(t,i.getMeta().stack),c=o.start+o.chunk*a+o.chunk/2,s=Math.min(Zt(r.maxBarThickness,1/0),o.chunk*o.ratio);return{base:c-s/2,head:c+s/2,center:c,size:s}},draw:function(){var t=this,e=t.chart,n=t._getValueScale(),r=t.getMeta().data,i=t.getDataset(),o=r.length,a=0;for(ct.canvas.clipArea(e.ctx,e.chartArea);a=se?-le:v<-se?le:0)+b,y=Math.cos(v),A=Math.sin(v),_=Math.cos(g),z=Math.sin(g),O=v<=0&&g>=0||g>=le,x=v<=ue&&g>=ue||g>=le+ue,w=v<=-ue&&g>=-ue||g>=se+ue,L=v===-se||g>=se?-1:Math.min(y,y*M,_,_*M),N=w?-1:Math.min(A,A*M,z,z*M),T=O?1:Math.max(y,y*M,_,_*M),C=x?1:Math.max(A,A*M,z,z*M);l=(T-L)/2,u=(C-N)/2,f=-(T+L)/2,d=-(C+N)/2}for(r=0,i=h.length;r0&&!isNaN(t)?le*(Math.abs(t)/e):0},getMaxBorderWidth:function(t){var e,n,r,i,o,a,c,s,l=this,u=0,f=l.chart;if(!t)for(e=0,n=f.data.datasets.length;e(u=c>u?c:u)?s:u);return u},setHoverStyle:function(t){var e=t._model,n=t._options,r=ct.getHoverColor;t.$previousStyle={backgroundColor:e.backgroundColor,borderColor:e.borderColor,borderWidth:e.borderWidth},e.backgroundColor=ce(n.hoverBackgroundColor,r(n.backgroundColor)),e.borderColor=ce(n.hoverBorderColor,r(n.borderColor)),e.borderWidth=ce(n.hoverBorderWidth,n.borderWidth)},_getRingWeightOffset:function(t){for(var e=0,n=0;n0&&Me(l[t-1]._model,s)&&(n.controlPointPreviousX=u(n.controlPointPreviousX,s.left,s.right),n.controlPointPreviousY=u(n.controlPointPreviousY,s.top,s.bottom)),t0&&(o=t.getDatasetMeta(o[0]._datasetIndex).data),o},"x-axis":function(t,e){return qe(t,e,{intersect:!1})},point:function(t,e){return Ne(t,we(e,t))},nearest:function(t,e,n){var r=we(e,t);n.axis=n.axis||"xy";var i=Ce(n.axis);return Te(t,r,n.intersect,i)},x:function(t,e,n){var r=we(e,t),i=[],o=!1;return Le(t,(function(t){t.inXRange(r.x)&&i.push(t),t.inRange(r.x,r.y)&&(o=!0)})),n.intersect&&!o&&(i=[]),i},y:function(t,e,n){var r=we(e,t),i=[],o=!1;return Le(t,(function(t){t.inYRange(r.y)&&i.push(t),t.inRange(r.x,r.y)&&(o=!0)})),n.intersect&&!o&&(i=[]),i}}},ke=ct.extend;function Ee(t,e){return ct.where(t,(function(t){return t.pos===e}))}function We(t,e){return t.sort((function(t,n){var r=e?n:t,i=e?t:n;return r.weight===i.weight?r.index-i.index:r.weight-i.weight}))}function Be(t){var e,n,r,i=[];for(e=0,n=(t||[]).length;e div {\r\n\tposition: absolute;\r\n\twidth: 1000000px;\r\n\theight: 1000000px;\r\n\tleft: 0;\r\n\ttop: 0;\r\n}\r\n\r\n.chartjs-size-monitor-shrink > div {\r\n\tposition: absolute;\r\n\twidth: 200%;\r\n\theight: 200%;\r\n\tleft: 0;\r\n\ttop: 0;\r\n}\r\n",Ye=n(Object.freeze({__proto__:null,default:Ve})),Ge="$chartjs",Je="chartjs-",Ke=Je+"size-monitor",Qe=Je+"render-monitor",Ze=Je+"render-animation",tn=["animationstart","webkitAnimationStart"],en={touchstart:"mousedown",touchmove:"mousemove",touchend:"mouseup",pointerenter:"mouseenter",pointerdown:"mousedown",pointermove:"mousemove",pointerup:"mouseup",pointerleave:"mouseout",pointerout:"mouseout"};function nn(t,e){var n=ct.getStyle(t,e),r=n&&n.match(/^(\d+)(\.\d+)?px$/);return r?Number(r[1]):void 0}function rn(t,e){var n=t.style,r=t.getAttribute("height"),i=t.getAttribute("width");if(t[Ge]={initial:{height:r,width:i,style:{display:n.display,height:n.height,width:n.width}}},n.display=n.display||"block",null===i||""===i){var o=nn(t,"width");void 0!==o&&(t.width=o)}if(null===r||""===r)if(""===t.style.height)t.height=t.width/(e.options.aspectRatio||2);else{var a=nn(t,"height");void 0!==o&&(t.height=a)}return t}var on=function(){var t=!1;try{var e=Object.defineProperty({},"passive",{get:function(){t=!0}});window.addEventListener("e",null,e)}catch(t){}return t}(),an=!!on&&{passive:!0};function cn(t,e,n){t.addEventListener(e,n,an)}function sn(t,e,n){t.removeEventListener(e,n,an)}function ln(t,e,n,r,i){return{type:t,chart:e,native:i||null,x:void 0!==n?n:null,y:void 0!==r?r:null}}function un(t,e){var n=en[t.type]||t.type,r=ct.getRelativePosition(t,e);return ln(n,e,r.x,r.y,t)}function fn(t,e){var n=!1,r=[];return function(){r=Array.prototype.slice.call(arguments),e=e||this,n||(n=!0,ct.requestAnimFrame.call(window,(function(){n=!1,t.apply(e,r)})))}}function dn(t){var e=document.createElement("div");return e.className=t||"",e}function pn(t){var e=1e6,n=dn(Ke),r=dn(Ke+"-expand"),i=dn(Ke+"-shrink");r.appendChild(dn()),i.appendChild(dn()),n.appendChild(r),n.appendChild(i),n._reset=function(){r.scrollLeft=e,r.scrollTop=e,i.scrollLeft=e,i.scrollTop=e};var o=function(){n._reset(),t()};return cn(r,"scroll",o.bind(r,"expand")),cn(i,"scroll",o.bind(i,"shrink")),n}function hn(t,e){var n=t[Ge]||(t[Ge]={}),r=n.renderProxy=function(t){t.animationName===Ze&&e()};ct.each(tn,(function(e){cn(t,e,r)})),n.reflow=!!t.offsetParent,t.classList.add(Qe)}function Mn(t){var e=t[Ge]||{},n=e.renderProxy;n&&(ct.each(tn,(function(e){sn(t,e,n)})),delete e.renderProxy),t.classList.remove(Qe)}function bn(t,e,n){var r=t[Ge]||(t[Ge]={}),i=r.resizer=pn(fn((function(){if(r.resizer){var i=n.options.maintainAspectRatio&&t.parentNode,o=i?i.clientWidth:0;e(ln("resize",n)),i&&i.clientWidth0){var o=t[0];o.label?n=o.label:o.xLabel?n=o.xLabel:i>0&&o.index-1?t.split("\n"):t}function Tn(t){var e=t._xScale,n=t._yScale||t._scale,r=t._index,i=t._datasetIndex,o=t._chart.getDatasetMeta(i).controller,a=o._getIndexScale(),c=o._getValueScale();return{xLabel:e?e.getLabelForIndex(r,i):"",yLabel:n?n.getLabelForIndex(r,i):"",label:a?""+a.getLabelForIndex(r,i):"",value:c?""+c.getLabelForIndex(r,i):"",index:r,datasetIndex:i,x:t._model.x,y:t._model.y}}function Cn(t){var e=Q.global;return{xPadding:t.xPadding,yPadding:t.yPadding,xAlign:t.xAlign,yAlign:t.yAlign,rtl:t.rtl,textDirection:t.textDirection,bodyFontColor:t.bodyFontColor,_bodyFontFamily:On(t.bodyFontFamily,e.defaultFontFamily),_bodyFontStyle:On(t.bodyFontStyle,e.defaultFontStyle),_bodyAlign:t.bodyAlign,bodyFontSize:On(t.bodyFontSize,e.defaultFontSize),bodySpacing:t.bodySpacing,titleFontColor:t.titleFontColor,_titleFontFamily:On(t.titleFontFamily,e.defaultFontFamily),_titleFontStyle:On(t.titleFontStyle,e.defaultFontStyle),titleFontSize:On(t.titleFontSize,e.defaultFontSize),_titleAlign:t.titleAlign,titleSpacing:t.titleSpacing,titleMarginBottom:t.titleMarginBottom,footerFontColor:t.footerFontColor,_footerFontFamily:On(t.footerFontFamily,e.defaultFontFamily),_footerFontStyle:On(t.footerFontStyle,e.defaultFontStyle),footerFontSize:On(t.footerFontSize,e.defaultFontSize),_footerAlign:t.footerAlign,footerSpacing:t.footerSpacing,footerMarginTop:t.footerMarginTop,caretSize:t.caretSize,cornerRadius:t.cornerRadius,backgroundColor:t.backgroundColor,opacity:0,legendColorBackground:t.multiKeyBackground,displayColors:t.displayColors,borderColor:t.borderColor,borderWidth:t.borderWidth}}function qn(t,e){var n=t._chart.ctx,r=2*e.yPadding,i=0,o=e.body,a=o.reduce((function(t,e){return t+e.before.length+e.lines.length+e.after.length}),0);a+=e.beforeBody.length+e.afterBody.length;var c=e.title.length,s=e.footer.length,l=e.titleFontSize,u=e.bodyFontSize,f=e.footerFontSize;r+=c*l,r+=c?(c-1)*e.titleSpacing:0,r+=c?e.titleMarginBottom:0,r+=a*u,r+=a?(a-1)*e.bodySpacing:0,r+=s?e.footerMarginTop:0,r+=s*f,r+=s?(s-1)*e.footerSpacing:0;var d=0,p=function(t){i=Math.max(i,n.measureText(t).width+d)};return n.font=ct.fontString(l,e._titleFontStyle,e._titleFontFamily),ct.each(e.title,p),n.font=ct.fontString(u,e._bodyFontStyle,e._bodyFontFamily),ct.each(e.beforeBody.concat(e.afterBody),p),d=e.displayColors?u+2:0,ct.each(o,(function(t){ct.each(t.before,p),ct.each(t.lines,p),ct.each(t.after,p)})),d=0,n.font=ct.fontString(f,e._footerFontStyle,e._footerFontFamily),ct.each(e.footer,p),{width:i+=2*e.xPadding,height:r}}function Sn(t,e){var n,r,i,o,a,c=t._model,s=t._chart,l=t._chart.chartArea,u="center",f="center";c.ys.height-e.height&&(f="bottom");var d=(l.left+l.right)/2,p=(l.top+l.bottom)/2;"center"===f?(n=function(t){return t<=d},r=function(t){return t>d}):(n=function(t){return t<=e.width/2},r=function(t){return t>=s.width-e.width/2}),i=function(t){return t+e.width+c.caretSize+c.caretPadding>s.width},o=function(t){return t-e.width-c.caretSize-c.caretPadding<0},a=function(t){return t<=p?"top":"bottom"},n(c.x)?(u="left",i(c.x)&&(u="center",f=a(c.y))):r(c.x)&&(u="right",o(c.x)&&(u="center",f=a(c.y)));var h=t._options;return{xAlign:h.xAlign?h.xAlign:u,yAlign:h.yAlign?h.yAlign:f}}function kn(t,e,n,r){var i=t.x,o=t.y,a=t.caretSize,c=t.caretPadding,s=t.cornerRadius,l=n.xAlign,u=n.yAlign,f=a+c,d=s+c;return"right"===l?i-=e.width:"center"===l&&((i-=e.width/2)+e.width>r.width&&(i=r.width-e.width),i<0&&(i=0)),"top"===u?o+=f:o-="bottom"===u?e.height+f:e.height/2,"center"===u?"left"===l?i+=f:"right"===l&&(i-=f):"left"===l?i-=d:"right"===l&&(i+=d),{x:i,y:o}}function En(t,e){return"center"===e?t.x+t.width/2:"right"===e?t.x+t.width-t.xPadding:t.x+t.xPadding}function Wn(t){return Ln([],Nn(t))}var Bn=Mt.extend({initialize:function(){this._model=Cn(this._options),this._lastActive=[]},getTitle:function(){var t=this,e=t._options.callbacks,n=e.beforeTitle.apply(t,arguments),r=e.title.apply(t,arguments),i=e.afterTitle.apply(t,arguments),o=[];return o=Ln(o,Nn(n)),o=Ln(o,Nn(r)),o=Ln(o,Nn(i))},getBeforeBody:function(){return Wn(this._options.callbacks.beforeBody.apply(this,arguments))},getBody:function(t,e){var n=this,r=n._options.callbacks,i=[];return ct.each(t,(function(t){var o={before:[],lines:[],after:[]};Ln(o.before,Nn(r.beforeLabel.call(n,t,e))),Ln(o.lines,r.label.call(n,t,e)),Ln(o.after,Nn(r.afterLabel.call(n,t,e))),i.push(o)})),i},getAfterBody:function(){return Wn(this._options.callbacks.afterBody.apply(this,arguments))},getFooter:function(){var t=this,e=t._options.callbacks,n=e.beforeFooter.apply(t,arguments),r=e.footer.apply(t,arguments),i=e.afterFooter.apply(t,arguments),o=[];return o=Ln(o,Nn(n)),o=Ln(o,Nn(r)),o=Ln(o,Nn(i))},update:function(t){var e,n,r=this,i=r._options,o=r._model,a=r._model=Cn(i),c=r._active,s=r._data,l={xAlign:o.xAlign,yAlign:o.yAlign},u={x:o.x,y:o.y},f={width:o.width,height:o.height},d={x:o.caretX,y:o.caretY};if(c.length){a.opacity=1;var p=[],h=[];d=wn[i.position].call(r,c,r._eventPosition);var M=[];for(e=0,n=c.length;e0&&n.stroke()},draw:function(){var t=this._chart.ctx,e=this._view;if(0!==e.opacity){var n={width:e.width,height:e.height},r={x:e.x,y:e.y},i=Math.abs(e.opacity<.001)?0:e.opacity,o=e.title.length||e.beforeBody.length||e.body.length||e.afterBody.length||e.footer.length;this._options.enabled&&o&&(t.save(),t.globalAlpha=i,this.drawBackground(r,e,t,n),r.y+=e.yPadding,ct.rtl.overrideTextDirection(t,e.textDirection),this.drawTitle(r,e,t),this.drawBody(r,e,t),this.drawFooter(r,e,t),ct.rtl.restoreTextDirection(t,e.textDirection),t.restore())}},handleEvent:function(t){var e=this,n=e._options,r=!1;return e._lastActive=e._lastActive||[],"mouseout"===t.type?e._active=[]:(e._active=e._chart.getElementsAtEventForMode(t,n.mode,n),n.reverse&&e._active.reverse()),(r=!ct.arrayEquals(e._active,e._lastActive))&&(e._lastActive=e._active,(n.enabled||n.custom)&&(e._eventPosition={x:t.x,y:t.y},e.update(!0),e.pivot())),r}}),Dn=wn,Xn=Bn;Xn.positioners=Dn;var Pn=ct.valueOrDefault;function Rn(){return ct.merge(Object.create(null),[].slice.call(arguments),{merger:function(t,e,n,r){if("xAxes"===t||"yAxes"===t){var i,o,a,c=n[t].length;for(e[t]||(e[t]=[]),i=0;i=e[t].length&&e[t].push({}),!e[t][i].type||a.type&&a.type!==e[t][i].type?ct.merge(e[t][i],[zn.getScaleDefaults(o),a]):ct.merge(e[t][i],a)}else ct._merger(t,e,n,r)}})}function jn(){return ct.merge(Object.create(null),[].slice.call(arguments),{merger:function(t,e,n,r){var i=e[t]||Object.create(null),o=n[t];"scales"===t?e[t]=Rn(i,o):"scale"===t?e[t]=ct.merge(i,[zn.getScaleDefaults(o.type),o]):ct._merger(t,e,n,r)}})}function In(t){var e=(t=t||Object.create(null)).data=t.data||{};return e.datasets=e.datasets||[],e.labels=e.labels||[],t.options=jn(Q.global,Q[t.type],t.options||{}),t}function Fn(t){var e=t.options;ct.each(t.scales,(function(e){$e.removeBox(t,e)})),e=jn(Q.global,Q[t.config.type],e),t.options=t.config.options=e,t.ensureScalesHaveIDs(),t.buildOrUpdateScales(),t.tooltip._options=e.tooltips,t.tooltip.initialize()}function Hn(t,e,n){var r,i=function(t){return t.id===r};do{r=e+n++}while(ct.findIndex(t,i)>=0);return r}function $n(t){return"top"===t||"bottom"===t}function Un(t,e){return function(n,r){return n[t]===r[t]?n[e]-r[e]:n[t]-r[t]}}Q._set("global",{elements:{},events:["mousemove","mouseout","click","touchstart","touchmove"],hover:{onHover:null,mode:"nearest",intersect:!0,animationDuration:400},onClick:null,maintainAspectRatio:!0,responsive:!0,responsiveAnimationDuration:0});var Vn=function(t,e){return this.construct(t,e),this};ct.extend(Vn.prototype,{construct:function(t,e){var n=this;e=In(e);var r=An.acquireContext(t,e),i=r&&r.canvas,o=i&&i.height,a=i&&i.width;n.id=ct.uid(),n.ctx=r,n.canvas=i,n.config=e,n.width=a,n.height=o,n.aspectRatio=o?a/o:null,n.options=e.options,n._bufferedRender=!1,n._layers=[],n.chart=n,n.controller=n,Vn.instances[n.id]=n,Object.defineProperty(n,"data",{get:function(){return n.config.data},set:function(t){n.config.data=t}}),r&&i&&(n.initialize(),n.update())},initialize:function(){var t=this;return _n.notify(t,"beforeInit"),ct.retinaScale(t,t.options.devicePixelRatio),t.bindEvents(),t.options.responsive&&t.resize(!0),t.initToolTip(),_n.notify(t,"afterInit"),t},clear:function(){return ct.canvas.clear(this),this},stop:function(){return vt.cancelAnimation(this),this},resize:function(t){var e=this,n=e.options,r=e.canvas,i=n.maintainAspectRatio&&e.aspectRatio||null,o=Math.max(0,Math.floor(ct.getMaximumWidth(r))),a=Math.max(0,Math.floor(i?o/i:ct.getMaximumHeight(r)));if((e.width!==o||e.height!==a)&&(r.width=e.width=o,r.height=e.height=a,r.style.width=o+"px",r.style.height=a+"px",ct.retinaScale(e,n.devicePixelRatio),!t)){var c={width:o,height:a};_n.notify(e,"resize",[c]),n.onResize&&n.onResize(e,c),e.stop(),e.update({duration:n.responsiveAnimationDuration})}},ensureScalesHaveIDs:function(){var t=this.options,e=t.scales||{},n=t.scale;ct.each(e.xAxes,(function(t,n){t.id||(t.id=Hn(e.xAxes,"x-axis-",n))})),ct.each(e.yAxes,(function(t,n){t.id||(t.id=Hn(e.yAxes,"y-axis-",n))})),n&&(n.id=n.id||"scale")},buildOrUpdateScales:function(){var t=this,e=t.options,n=t.scales||{},r=[],i=Object.keys(n).reduce((function(t,e){return t[e]=!1,t}),{});e.scales&&(r=r.concat((e.scales.xAxes||[]).map((function(t){return{options:t,dtype:"category",dposition:"bottom"}})),(e.scales.yAxes||[]).map((function(t){return{options:t,dtype:"linear",dposition:"left"}})))),e.scale&&r.push({options:e.scale,dtype:"radialLinear",isDefault:!0,dposition:"chartArea"}),ct.each(r,(function(e){var r=e.options,o=r.id,a=Pn(r.type,e.dtype);$n(r.position)!==$n(e.dposition)&&(r.position=e.dposition),i[o]=!0;var c=null;if(o in n&&n[o].type===a)(c=n[o]).options=r,c.ctx=t.ctx,c.chart=t;else{var s=zn.getScaleConstructor(a);if(!s)return;c=new s({id:o,type:a,options:r,ctx:t.ctx,chart:t}),n[c.id]=c}c.mergeTicksOptions(),e.isDefault&&(t.scale=c)})),ct.each(i,(function(t,e){t||delete n[e]})),t.scales=n,zn.addScalesToLayout(this)},buildOrUpdateControllers:function(){var t,e,n=this,r=[],i=n.data.datasets;for(t=0,e=i.length;t=0;--n)r.drawDataset(e[n],t);_n.notify(r,"afterDatasetsDraw",[t])}},drawDataset:function(t,e){var n=this,r={meta:t,index:t.index,easingValue:e};!1!==_n.notify(n,"beforeDatasetDraw",[r])&&(t.controller.draw(e),_n.notify(n,"afterDatasetDraw",[r]))},_drawTooltip:function(t){var e=this,n=e.tooltip,r={tooltip:n,easingValue:t};!1!==_n.notify(e,"beforeTooltipDraw",[r])&&(n.draw(),_n.notify(e,"afterTooltipDraw",[r]))},getElementAtEvent:function(t){return Se.modes.single(this,t)},getElementsAtEvent:function(t){return Se.modes.label(this,t,{intersect:!0})},getElementsAtXAxis:function(t){return Se.modes["x-axis"](this,t,{intersect:!0})},getElementsAtEventForMode:function(t,e,n){var r=Se.modes[e];return"function"==typeof r?r(this,t,n):[]},getDatasetAtEvent:function(t){return Se.modes.dataset(this,t,{intersect:!0})},getDatasetMeta:function(t){var e=this,n=e.data.datasets[t];n._meta||(n._meta={});var r=n._meta[e.id];return r||(r=n._meta[e.id]={type:null,data:[],dataset:null,controller:null,hidden:null,xAxisID:null,yAxisID:null,order:n.order||0,index:t}),r},getVisibleDatasetCount:function(){for(var t=0,e=0,n=this.data.datasets.length;e=0;r--){var i=t[r];if(e(i))return i}},ct.isNumber=function(t){return!isNaN(parseFloat(t))&&isFinite(t)},ct.almostEquals=function(t,e,n){return Math.abs(t-e)=t},ct.max=function(t){return t.reduce((function(t,e){return isNaN(e)?t:Math.max(t,e)}),Number.NEGATIVE_INFINITY)},ct.min=function(t){return t.reduce((function(t,e){return isNaN(e)?t:Math.min(t,e)}),Number.POSITIVE_INFINITY)},ct.sign=Math.sign?function(t){return Math.sign(t)}:function(t){return 0==(t=+t)||isNaN(t)?t:t>0?1:-1},ct.toRadians=function(t){return t*(Math.PI/180)},ct.toDegrees=function(t){return t*(180/Math.PI)},ct._decimalPlaces=function(t){if(ct.isFinite(t)){for(var e=1,n=0;Math.round(t*e)/e!==t;)e*=10,n++;return n}},ct.getAngleFromPoint=function(t,e){var n=e.x-t.x,r=e.y-t.y,i=Math.sqrt(n*n+r*r),o=Math.atan2(r,n);return o<-.5*Math.PI&&(o+=2*Math.PI),{angle:o,distance:i}},ct.distanceBetweenPoints=function(t,e){return Math.sqrt(Math.pow(e.x-t.x,2)+Math.pow(e.y-t.y,2))},ct.aliasPixel=function(t){return t%2==0?0:.5},ct._alignPixel=function(t,e,n){var r=t.currentDevicePixelRatio,i=n/2;return Math.round((e-i)*r)/r+i},ct.splineCurve=function(t,e,n,r){var i=t.skip?e:t,o=e,a=n.skip?e:n,c=Math.sqrt(Math.pow(o.x-i.x,2)+Math.pow(o.y-i.y,2)),s=Math.sqrt(Math.pow(a.x-o.x,2)+Math.pow(a.y-o.y,2)),l=c/(c+s),u=s/(c+s),f=r*(l=isNaN(l)?0:l),d=r*(u=isNaN(u)?0:u);return{previous:{x:o.x-f*(a.x-i.x),y:o.y-f*(a.y-i.y)},next:{x:o.x+d*(a.x-i.x),y:o.y+d*(a.y-i.y)}}},ct.EPSILON=Number.EPSILON||1e-14,ct.splineCurveMonotone=function(t){var e,n,r,i,o,a,c,s,l,u=(t||[]).map((function(t){return{model:t._model,deltaK:0,mK:0}})),f=u.length;for(e=0;e0?u[e-1]:null,(i=e0?u[e-1]:null,i=e=t.length-1?t[0]:t[e+1]:e>=t.length-1?t[t.length-1]:t[e+1]},ct.previousItem=function(t,e,n){return n?e<=0?t[t.length-1]:t[e-1]:e<=0?t[0]:t[e-1]},ct.niceNum=function(t,e){var n=Math.floor(ct.log10(t)),r=t/Math.pow(10,n);return(e?r<1.5?1:r<3?2:r<7?5:10:r<=1?1:r<=2?2:r<=5?5:10)*Math.pow(10,n)},ct.requestAnimFrame="undefined"==typeof window?function(t){t()}:window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(t){return window.setTimeout(t,1e3/60)},ct.getRelativePosition=function(t,e){var n,r,i=t.originalEvent||t,o=t.target||t.srcElement,a=o.getBoundingClientRect(),c=i.touches;c&&c.length>0?(n=c[0].clientX,r=c[0].clientY):(n=i.clientX,r=i.clientY);var s=parseFloat(ct.getStyle(o,"padding-left")),l=parseFloat(ct.getStyle(o,"padding-top")),u=parseFloat(ct.getStyle(o,"padding-right")),f=parseFloat(ct.getStyle(o,"padding-bottom")),d=a.right-a.left-s-u,p=a.bottom-a.top-l-f;return{x:n=Math.round((n-a.left-s)/d*o.width/e.currentDevicePixelRatio),y:r=Math.round((r-a.top-l)/p*o.height/e.currentDevicePixelRatio)}},ct.getConstraintWidth=function(t){return n(t,"max-width","clientWidth")},ct.getConstraintHeight=function(t){return n(t,"max-height","clientHeight")},ct._calculatePadding=function(t,e,n){return(e=ct.getStyle(t,e)).indexOf("%")>-1?n*parseInt(e,10)/100:parseInt(e,10)},ct._getParentNode=function(t){var e=t.parentNode;return e&&"[object ShadowRoot]"===e.toString()&&(e=e.host),e},ct.getMaximumWidth=function(t){var e=ct._getParentNode(t);if(!e)return t.clientWidth;var n=e.clientWidth,r=n-ct._calculatePadding(e,"padding-left",n)-ct._calculatePadding(e,"padding-right",n),i=ct.getConstraintWidth(t);return isNaN(i)?r:Math.min(r,i)},ct.getMaximumHeight=function(t){var e=ct._getParentNode(t);if(!e)return t.clientHeight;var n=e.clientHeight,r=n-ct._calculatePadding(e,"padding-top",n)-ct._calculatePadding(e,"padding-bottom",n),i=ct.getConstraintHeight(t);return isNaN(i)?r:Math.min(r,i)},ct.getStyle=function(t,e){return t.currentStyle?t.currentStyle[e]:document.defaultView.getComputedStyle(t,null).getPropertyValue(e)},ct.retinaScale=function(t,e){var n=t.currentDevicePixelRatio=e||"undefined"!=typeof window&&window.devicePixelRatio||1;if(1!==n){var r=t.canvas,i=t.height,o=t.width;r.height=i*n,r.width=o*n,t.ctx.scale(n,n),r.style.height||r.style.width||(r.style.height=i+"px",r.style.width=o+"px")}},ct.fontString=function(t,e,n){return e+" "+t+"px "+n},ct.longestText=function(t,e,n,r){var i=(r=r||{}).data=r.data||{},o=r.garbageCollect=r.garbageCollect||[];r.font!==e&&(i=r.data={},o=r.garbageCollect=[],r.font=e),t.font=e;var a,c,s,l,u,f=0,d=n.length;for(a=0;an.length){for(a=0;ar&&(r=o),r},ct.numberOfLabelLines=function(t){var e=1;return ct.each(t,(function(t){ct.isArray(t)&&t.length>e&&(e=t.length)})),e},ct.color=B?function(t){return t instanceof CanvasGradient&&(t=Q.global.defaultColor),B(t)}:function(t){return t},ct.getHoverColor=function(t){return t instanceof CanvasPattern||t instanceof CanvasGradient?t:ct.color(t).saturate(.5).darken(.1).rgbString()}};function Jn(){throw new Error("This method is not implemented: either no adapter can be found or an incomplete integration was provided.")}function Kn(t){this.options=t||{}}ct.extend(Kn.prototype,{formats:Jn,parse:Jn,format:Jn,add:Jn,diff:Jn,startOf:Jn,endOf:Jn,_create:function(t){return t}}),Kn.override=function(t){ct.extend(Kn.prototype,t)};var Qn={_date:Kn},Zn={formatters:{values:function(t){return ct.isArray(t)?t:""+t},linear:function(t,e,n){var r=n.length>3?n[2]-n[1]:n[1]-n[0];Math.abs(r)>1&&t!==Math.floor(t)&&(r=t-Math.floor(t));var i=ct.log10(Math.abs(r)),o="";if(0!==t)if(Math.max(Math.abs(n[0]),Math.abs(n[n.length-1]))<1e-4){var a=ct.log10(Math.abs(t)),c=Math.floor(a)-Math.floor(i);c=Math.max(Math.min(c,20),0),o=t.toExponential(c)}else{var s=-1*Math.floor(i);s=Math.max(Math.min(s,20),0),o=t.toFixed(s)}else o="0";return o},logarithmic:function(t,e,n){var r=t/Math.pow(10,Math.floor(ct.log10(t)));return 0===t?"0":1===r||2===r||5===r||0===e||e===n.length-1?t.toExponential():""}}},tr=ct.isArray,er=ct.isNullOrUndef,nr=ct.valueOrDefault,rr=ct.valueAtIndexOrDefault;function ir(t,e){for(var n=[],r=t.length/e,i=0,o=t.length;is+l)))return a}function ar(t,e){ct.each(t,(function(t){var n,r=t.gc,i=r.length/2;if(i>e){for(n=0;nl)return o;return Math.max(l,1)}function Mr(t){var e,n,r=[];for(e=0,n=t.length;e=d||u<=1||!c.isHorizontal()?c.labelRotation=f:(e=(t=c._getLabelSizes()).widest.width,n=t.highest.height-t.highest.offset,r=Math.min(c.maxWidth,c.chart.width-e),e+6>(i=s.offset?c.maxWidth/u:r/(u-1))&&(i=r/(u-(s.offset?.5:1)),o=c.maxHeight-sr(s.gridLines)-l.padding-lr(s.scaleLabel),a=Math.sqrt(e*e+n*n),p=ct.toDegrees(Math.min(Math.asin(Math.min((t.highest.height+6)/i,1)),Math.asin(Math.min(o/a,1))-Math.asin(n/a))),p=Math.max(f,Math.min(d,p))),c.labelRotation=p)},afterCalculateTickRotation:function(){ct.callback(this.options.afterCalculateTickRotation,[this])},beforeFit:function(){ct.callback(this.options.beforeFit,[this])},fit:function(){var t=this,e=t.minSize={width:0,height:0},n=t.chart,r=t.options,i=r.ticks,o=r.scaleLabel,a=r.gridLines,c=t._isVisible(),s="bottom"===r.position,l=t.isHorizontal();if(l?e.width=t.maxWidth:c&&(e.width=sr(a)+lr(o)),l?c&&(e.height=sr(a)+lr(o)):e.height=t.maxHeight,i.display&&c){var u=fr(i),f=t._getLabelSizes(),d=f.first,p=f.last,h=f.widest,M=f.highest,b=.4*u.minor.lineHeight,m=i.padding;if(l){var v=0!==t.labelRotation,g=ct.toRadians(t.labelRotation),y=Math.cos(g),A=Math.sin(g),_=A*h.width+y*(M.height-(v?M.offset:0))+(v?0:b);e.height=Math.min(t.maxHeight,e.height+_+m);var z,O,x=t.getPixelForTick(0)-t.left,w=t.right-t.getPixelForTick(t.getTicks().length-1);v?(z=s?y*d.width+A*d.offset:A*(d.height-d.offset),O=s?A*(p.height-p.offset):y*p.width+A*p.offset):(z=d.width/2,O=p.width/2),t.paddingLeft=Math.max((z-x)*t.width/(t.width-x),0)+3,t.paddingRight=Math.max((O-w)*t.width/(t.width-w),0)+3}else{var L=i.mirror?0:h.width+m+b;e.width=Math.min(t.maxWidth,e.width+L),t.paddingTop=d.height/2,t.paddingBottom=p.height/2}}t.handleMargins(),l?(t.width=t._length=n.width-t.margins.left-t.margins.right,t.height=e.height):(t.width=e.width,t.height=t._length=n.height-t.margins.top-t.margins.bottom)},handleMargins:function(){var t=this;t.margins&&(t.margins.left=Math.max(t.paddingLeft,t.margins.left),t.margins.top=Math.max(t.paddingTop,t.margins.top),t.margins.right=Math.max(t.paddingRight,t.margins.right),t.margins.bottom=Math.max(t.paddingBottom,t.margins.bottom))},afterFit:function(){ct.callback(this.options.afterFit,[this])},isHorizontal:function(){var t=this.options.position;return"top"===t||"bottom"===t},isFullWidth:function(){return this.options.fullWidth},getRightValue:function(t){if(er(t))return NaN;if(("number"==typeof t||t instanceof Number)&&!isFinite(t))return NaN;if(t)if(this.isHorizontal()){if(void 0!==t.x)return this.getRightValue(t.x)}else if(void 0!==t.y)return this.getRightValue(t.y);return t},_convertTicksToLabels:function(t){var e,n,r,i=this;for(i.ticks=t.map((function(t){return t.value})),i.beforeTickToLabelConversion(),e=i.convertTicksToLabels(t)||i.ticks,i.afterTickToLabelConversion(),n=0,r=t.length;nr-1?null:e.getPixelForDecimal(t*i+(n?i/2:0))},getPixelForDecimal:function(t){var e=this;return e._reversePixels&&(t=1-t),e._startPixel+t*e._length},getDecimalForPixel:function(t){var e=(t-this._startPixel)/this._length;return this._reversePixels?1-e:e},getBasePixel:function(){return this.getPixelForValue(this.getBaseValue())},getBaseValue:function(){var t=this,e=t.min,n=t.max;return t.beginAtZero?0:e<0&&n<0?n:e>0&&n>0?e:0},_autoSkip:function(t){var e,n,r,i,o=this,a=o.options.ticks,c=o._length,s=a.maxTicksLimit||c/o._tickSize()+1,l=a.major.enabled?Mr(t):[],u=l.length,f=l[0],d=l[u-1];if(u>s)return br(t,l,u/s),dr(t);if(r=hr(l,t,c,s),u>0){for(e=0,n=u-1;e1?(d-f)/(u-1):null,mr(t,r,ct.isNullOrUndef(i)?0:f-i,f),mr(t,r,d,ct.isNullOrUndef(i)?t.length:d+i),dr(t)}return mr(t,r),dr(t)},_tickSize:function(){var t=this,e=t.options.ticks,n=ct.toRadians(t.labelRotation),r=Math.abs(Math.cos(n)),i=Math.abs(Math.sin(n)),o=t._getLabelSizes(),a=e.autoSkipPadding||0,c=o?o.widest.width+a:0,s=o?o.highest.height+a:0;return t.isHorizontal()?s*r>c*i?c/r:s/i:s*i=0&&(a=t),void 0!==o&&(t=n.indexOf(o))>=0&&(c=t),e.minIndex=a,e.maxIndex=c,e.min=n[a],e.max=n[c]},buildTicks:function(){var t=this,e=t._getLabels(),n=t.minIndex,r=t.maxIndex;t.ticks=0===n&&r===e.length-1?e:e.slice(n,r+1)},getLabelForIndex:function(t,e){var n=this,r=n.chart;return r.getDatasetMeta(e).controller._getValueScaleId()===n.id?n.getRightValue(r.data.datasets[e].data[t]):n._getLabels()[t]},_configure:function(){var t=this,e=t.options.offset,n=t.ticks;gr.prototype._configure.call(t),t.isHorizontal()||(t._reversePixels=!t._reversePixels),n&&(t._startValue=t.minIndex-(e?.5:0),t._valueRange=Math.max(n.length-(e?0:1),1))},getPixelForValue:function(t,e,n){var r,i,o,a=this;return yr(e)||yr(n)||(t=a.chart.data.datasets[n].data[e]),yr(t)||(r=a.isHorizontal()?t.x:t.y),(void 0!==r||void 0!==t&&isNaN(e))&&(i=a._getLabels(),t=ct.valueOrDefault(r,t),e=-1!==(o=i.indexOf(t))?o:e,isNaN(e)&&(e=t)),a.getPixelForDecimal((e-a._startValue)/a._valueRange)},getPixelForTick:function(t){var e=this.ticks;return t<0||t>e.length-1?null:this.getPixelForValue(e[t],t+this.minIndex)},getValueForPixel:function(t){var e=this,n=Math.round(e._startValue+e.getDecimalForPixel(t)*e._valueRange);return Math.min(Math.max(n,0),e.ticks.length-1)},getBasePixel:function(){return this.bottom}}),zr=Ar;_r._defaults=zr;var Or=ct.noop,xr=ct.isNullOrUndef;function wr(t,e){var n,r,i,o,a=[],c=1e-14,s=t.stepSize,l=s||1,u=t.maxTicks-1,f=t.min,d=t.max,p=t.precision,h=e.min,M=e.max,b=ct.niceNum((M-h)/u/l)*l;if(bu&&(b=ct.niceNum(o*b/u/l)*l),s||xr(p)?n=Math.pow(10,ct._decimalPlaces(b)):(n=Math.pow(10,p),b=Math.ceil(b*n)/n),r=Math.floor(h/b)*b,i=Math.ceil(M/b)*b,s&&(!xr(f)&&ct.almostWhole(f/b,b/1e3)&&(r=f),!xr(d)&&ct.almostWhole(d/b,b/1e3)&&(i=d)),o=(i-r)/b,o=ct.almostEquals(o,Math.round(o),b/1e3)?Math.round(o):Math.ceil(o),r=Math.round(r*n)/n,i=Math.round(i*n)/n,a.push(xr(f)?r:f);for(var m=1;m0&&r>0&&(t.min=0)}var i=void 0!==e.min||void 0!==e.suggestedMin,o=void 0!==e.max||void 0!==e.suggestedMax;void 0!==e.min?t.min=e.min:void 0!==e.suggestedMin&&(null===t.min?t.min=e.suggestedMin:t.min=Math.min(t.min,e.suggestedMin)),void 0!==e.max?t.max=e.max:void 0!==e.suggestedMax&&(null===t.max?t.max=e.suggestedMax:t.max=Math.max(t.max,e.suggestedMax)),i!==o&&t.min>=t.max&&(i?t.max=t.min+1:t.min=t.max-1),t.min===t.max&&(t.max++,e.beginAtZero||t.min--)},getTickLimit:function(){var t,e=this,n=e.options.ticks,r=n.stepSize,i=n.maxTicksLimit;return r?t=Math.ceil(e.max/r)-Math.floor(e.min/r)+1:(t=e._computeTickLimit(),i=i||11),i&&(t=Math.min(i,t)),t},_computeTickLimit:function(){return Number.POSITIVE_INFINITY},handleDirectionalChanges:Or,buildTicks:function(){var t=this,e=t.options.ticks,n=t.getTickLimit(),r={maxTicks:n=Math.max(2,n),min:e.min,max:e.max,precision:e.precision,stepSize:ct.valueOrDefault(e.fixedStepSize,e.stepSize)},i=t.ticks=wr(r,t);t.handleDirectionalChanges(),t.max=ct.max(i),t.min=ct.min(i),e.reverse?(i.reverse(),t.start=t.max,t.end=t.min):(t.start=t.min,t.end=t.max)},convertTicksToLabels:function(){var t=this;t.ticksAsNumbers=t.ticks.slice(),t.zeroLineIndex=t.ticks.indexOf(0),gr.prototype.convertTicksToLabels.call(t)},_configure:function(){var t,e=this,n=e.getTicks(),r=e.min,i=e.max;gr.prototype._configure.call(e),e.options.offset&&n.length&&(r-=t=(i-r)/Math.max(n.length-1,1)/2,i+=t),e._startValue=r,e._endValue=i,e._valueRange=i-r}}),Nr={position:"left",ticks:{callback:Zn.formatters.linear}},Tr=0,Cr=1;function qr(t,e,n){var r=[n.type,void 0===e&&void 0===n.stack?n.index:"",n.stack].join(".");return void 0===t[r]&&(t[r]={pos:[],neg:[]}),t[r]}function Sr(t,e,n,r){var i,o,a=t.options,c=qr(e,a.stacked,n),s=c.pos,l=c.neg,u=r.length;for(i=0;ie.length-1?null:this.getPixelForValue(e[t])}}),Wr=Nr;Er._defaults=Wr;var Br=ct.valueOrDefault,Dr=ct.math.log10;function Xr(t,e){var n,r,i=[],o=Br(t.min,Math.pow(10,Math.floor(Dr(e.min)))),a=Math.floor(Dr(e.max)),c=Math.ceil(e.max/Math.pow(10,a));0===o?(n=Math.floor(Dr(e.minNotZero)),r=Math.floor(e.minNotZero/Math.pow(10,n)),i.push(o),o=r*Math.pow(10,n)):(n=Math.floor(Dr(o)),r=Math.floor(o/Math.pow(10,n)));var s=n<0?Math.pow(10,Math.abs(n)):1;do{i.push(o),10==++r&&(r=1,s=++n>=0?1:s),o=Math.round(r*Math.pow(10,n)*s)/s}while(n=0?t:e}var jr=gr.extend({determineDataLimits:function(){var t,e,n,r,i,o,a=this,c=a.options,s=a.chart,l=s.data.datasets,u=a.isHorizontal();function f(t){return u?t.xAxisID===a.id:t.yAxisID===a.id}a.min=Number.POSITIVE_INFINITY,a.max=Number.NEGATIVE_INFINITY,a.minNotZero=Number.POSITIVE_INFINITY;var d=c.stacked;if(void 0===d)for(t=0;t0){var e=ct.min(t),n=ct.max(t);a.min=Math.min(a.min,e),a.max=Math.max(a.max,n)}}))}else for(t=0;t0?t.minNotZero=t.min:t.max<1?t.minNotZero=Math.pow(10,Math.floor(Dr(t.max))):t.minNotZero=n)},buildTicks:function(){var t=this,e=t.options.ticks,n=!t.isHorizontal(),r={min:Rr(e.min),max:Rr(e.max)},i=t.ticks=Xr(r,t);t.max=ct.max(i),t.min=ct.min(i),e.reverse?(n=!n,t.start=t.max,t.end=t.min):(t.start=t.min,t.end=t.max),n&&i.reverse()},convertTicksToLabels:function(){this.tickValues=this.ticks.slice(),gr.prototype.convertTicksToLabels.call(this)},getLabelForIndex:function(t,e){return this._getScaleLabel(this.chart.data.datasets[e].data[t])},getPixelForTick:function(t){var e=this.tickValues;return t<0||t>e.length-1?null:this.getPixelForValue(e[t])},_getFirstTickValue:function(t){var e=Math.floor(Dr(t));return Math.floor(t/Math.pow(10,e))*Math.pow(10,e)},_configure:function(){var t=this,e=t.min,n=0;gr.prototype._configure.call(t),0===e&&(e=t._getFirstTickValue(t.minNotZero),n=Br(t.options.ticks.fontSize,Q.global.defaultFontSize)/t._length),t._startValue=Dr(e),t._valueOffset=n,t._valueRange=(Dr(t.max)-Dr(e))/(1-n)},getPixelForValue:function(t){var e=this,n=0;return(t=+e.getRightValue(t))>e.min&&t>0&&(n=(Dr(t)-e._startValue)/e._valueRange+e._valueOffset),e.getPixelForDecimal(n)},getValueForPixel:function(t){var e=this,n=e.getDecimalForPixel(t);return 0===n&&0===e.min?0:Math.pow(10,e._startValue+(n-e._valueOffset)*e._valueRange)}}),Ir=Pr;jr._defaults=Ir;var Fr=ct.valueOrDefault,Hr=ct.valueAtIndexOrDefault,$r=ct.options.resolve,Ur={display:!0,animate:!0,position:"chartArea",angleLines:{display:!0,color:"rgba(0,0,0,0.1)",lineWidth:1,borderDash:[],borderDashOffset:0},gridLines:{circular:!1},ticks:{showLabelBackdrop:!0,backdropColor:"rgba(255,255,255,0.75)",backdropPaddingY:2,backdropPaddingX:2,callback:Zn.formatters.linear},pointLabels:{display:!0,fontSize:10,callback:function(t){return t}}};function Vr(t){var e=t.ticks;return e.display&&t.display?Fr(e.fontSize,Q.global.defaultFontSize)+2*e.backdropPaddingY:0}function Yr(t,e,n){return ct.isArray(n)?{w:ct.longestText(t,t.font,n),h:n.length*e}:{w:t.measureText(n).width,h:e}}function Gr(t,e,n,r,i){return t===r||t===i?{start:e-n/2,end:e+n/2}:ti?{start:e-n,end:e}:{start:e,end:e+n}}function Jr(t){var e,n,r,i=ct.options._parseFont(t.options.pointLabels),o={l:0,r:t.width,t:0,b:t.height-t.paddingTop},a={};t.ctx.font=i.string,t._pointLabelSizes=[];var c=t.chart.data.labels.length;for(e=0;eo.r&&(o.r=u.end,a.r=s),f.starto.b&&(o.b=f.end,a.b=s)}t.setReductions(t.drawingArea,o,a)}function Kr(t){return 0===t||180===t?"center":t<180?"left":"right"}function Qr(t,e,n,r){var i,o,a=n.y+r/2;if(ct.isArray(e))for(i=0,o=e.length;i270||t<90)&&(n.y-=e.h)}function ti(t){var e=t.ctx,n=t.options,r=n.pointLabels,i=Vr(n),o=t.getDistanceFromCenterForValue(n.ticks.reverse?t.min:t.max),a=ct.options._parseFont(r);e.save(),e.font=a.string,e.textBaseline="middle";for(var c=t.chart.data.labels.length-1;c>=0;c--){var s=0===c?i/2:0,l=t.getPointPosition(c,o+s+5),u=Hr(r.fontColor,c,Q.global.defaultFontColor);e.fillStyle=u;var f=t.getIndexAngle(c),d=ct.toDegrees(f);e.textAlign=Kr(d),Zr(d,t._pointLabelSizes[c],l),Qr(e,t.pointLabels[c],l,a.lineHeight)}e.restore()}function ei(t,e,n,r){var i,o=t.ctx,a=e.circular,c=t.chart.data.labels.length,s=Hr(e.color,r-1),l=Hr(e.lineWidth,r-1);if((a||c)&&s&&l){if(o.save(),o.strokeStyle=s,o.lineWidth=l,o.setLineDash&&(o.setLineDash(e.borderDash||[]),o.lineDashOffset=e.borderDashOffset||0),o.beginPath(),a)o.arc(t.xCenter,t.yCenter,n,0,2*Math.PI);else{i=t.getPointPosition(0,n),o.moveTo(i.x,i.y);for(var u=1;u0&&r>0?n:0)},_drawGrid:function(){var t,e,n,r=this,i=r.ctx,o=r.options,a=o.gridLines,c=o.angleLines,s=Fr(c.lineWidth,a.lineWidth),l=Fr(c.color,a.color);if(o.pointLabels.display&&ti(r),a.display&&ct.each(r.ticks,(function(t,n){0!==n&&(e=r.getDistanceFromCenterForValue(r.ticksAsNumbers[n]),ei(r,a,e,n))})),c.display&&s&&l){for(i.save(),i.lineWidth=s,i.strokeStyle=l,i.setLineDash&&(i.setLineDash($r([c.borderDash,a.borderDash,[]])),i.lineDashOffset=$r([c.borderDashOffset,a.borderDashOffset,0])),t=r.chart.data.labels.length-1;t>=0;t--)e=r.getDistanceFromCenterForValue(o.ticks.reverse?r.min:r.max),n=r.getPointPosition(t,e),i.beginPath(),i.moveTo(r.xCenter,r.yCenter),i.lineTo(n.x,n.y),i.stroke();i.restore()}},_drawLabels:function(){var t=this,e=t.ctx,n=t.options.ticks;if(n.display){var r,i,o=t.getIndexAngle(0),a=ct.options._parseFont(n),c=Fr(n.fontColor,Q.global.defaultFontColor);e.save(),e.font=a.string,e.translate(t.xCenter,t.yCenter),e.rotate(o),e.textAlign="center",e.textBaseline="middle",ct.each(t.ticks,(function(o,s){(0!==s||n.reverse)&&(r=t.getDistanceFromCenterForValue(t.ticksAsNumbers[s]),n.showLabelBackdrop&&(i=e.measureText(o).width,e.fillStyle=n.backdropColor,e.fillRect(-i/2-n.backdropPaddingX,-r-a.size/2-n.backdropPaddingY,i+2*n.backdropPaddingX,a.size+2*n.backdropPaddingY)),e.fillStyle=c,e.fillText(o,0,-r))})),e.restore()}},_drawTitle:ct.noop}),ii=Ur;ri._defaults=ii;var oi=ct._deprecated,ai=ct.options.resolve,ci=ct.valueOrDefault,si=Number.MIN_SAFE_INTEGER||-9007199254740991,li=Number.MAX_SAFE_INTEGER||9007199254740991,ui={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}},fi=Object.keys(ui);function di(t,e){return t-e}function pi(t){var e,n,r,i={},o=[];for(e=0,n=t.length;ee&&c=0&&a<=c;){if(i=t[(r=a+c>>1)-1]||null,o=t[r],!i)return{lo:null,hi:o};if(o[e]n))return{lo:i,hi:o};c=r-1}}return{lo:o,hi:null}}function vi(t,e,n,r){var i=mi(t,e,n),o=i.lo?i.hi?i.lo:t[t.length-2]:t[0],a=i.lo?i.hi?i.hi:t[t.length-1]:t[1],c=a[e]-o[e],s=c?(n-o[e])/c:0,l=(a[r]-o[r])*s;return o[r]+l}function gi(t,e){var n=t._adapter,r=t.options.time,i=r.parser,o=i||r.format,a=e;return"function"==typeof i&&(a=i(a)),ct.isFinite(a)||(a="string"==typeof o?n.parse(a,o):n.parse(a)),null!==a?+a:(i||"function"!=typeof o||(a=o(e),ct.isFinite(a)||(a=n.parse(a))),a)}function yi(t,e){if(ct.isNullOrUndef(e))return null;var n=t.options.time,r=gi(t,t.getRightValue(e));return null===r||n.round&&(r=+t._adapter.startOf(r,n.round)),r}function Ai(t,e,n,r){var i,o,a,c=fi.length;for(i=fi.indexOf(t);i=fi.indexOf(n);o--)if(a=fi[o],ui[a].common&&t._adapter.diff(i,r,a)>=e-1)return a;return fi[n?fi.indexOf(n):0]}function zi(t){for(var e=fi.indexOf(t)+1,n=fi.length;e1e5*l)throw e+" and "+n+" are too far apart with stepSize of "+l+" "+s;for(i=f;i=0&&(e[o].major=!0);return e}function Li(t,e,n){var r,i,o=[],a={},c=e.length;for(r=0;r1?pi(h).sort(di):h.sort(di),d=Math.min(d,h[0]),p=Math.max(p,h[h.length-1])),d=yi(c,hi(u))||d,p=yi(c,Mi(u))||p,d=d===li?+l.startOf(Date.now(),f):d,p=p===si?+l.endOf(Date.now(),f)+1:p,c.min=Math.min(d,p),c.max=Math.max(d+1,p),c._table=[],c._timestamps={data:h,datasets:M,labels:b}},buildTicks:function(){var t,e,n,r=this,i=r.min,o=r.max,a=r.options,c=a.ticks,s=a.time,l=r._timestamps,u=[],f=r.getLabelCapacity(i),d=c.source,p=a.distribution;for(l="data"===d||"auto"===d&&"series"===p?l.data:"labels"===d?l.labels:Oi(r,i,o,f),"ticks"===a.bounds&&l.length&&(i=l[0],o=l[l.length-1]),i=yi(r,hi(a))||i,o=yi(r,Mi(a))||o,t=0,e=l.length;t=i&&n<=o&&u.push(n);return r.min=i,r.max=o,r._unit=s.unit||(c.autoSkip?Ai(s.minUnit,r.min,r.max,f):_i(r,u.length,s.minUnit,r.min,r.max)),r._majorUnit=c.major.enabled&&"year"!==r._unit?zi(r._unit):void 0,r._table=bi(r._timestamps.data,i,o,p),r._offsets=xi(r._table,u,i,o,a),c.reverse&&u.reverse(),Li(r,u,r._majorUnit)},getLabelForIndex:function(t,e){var n=this,r=n._adapter,i=n.chart.data,o=n.options.time,a=i.labels&&t=0&&t0?c:1}}),Ci=Ni;Ti._defaults=Ci;var qi={category:_r,linear:Er,logarithmic:jr,radialLinear:ri,time:Ti},Si={datetime:"MMM D, YYYY, h:mm:ss a",millisecond:"h:mm:ss.SSS a",second:"h:mm:ss a",minute:"h:mm a",hour:"hA",day:"MMM D",week:"ll",month:"MMM YYYY",quarter:"[Q]Q - YYYY",year:"YYYY"};Qn._date.override("function"==typeof t?{_id:"moment",formats:function(){return Si},parse:function(e,n){return"string"==typeof e&&"string"==typeof n?e=t(e,n):e instanceof t||(e=t(e)),e.isValid()?e.valueOf():null},format:function(e,n){return t(e).format(n)},add:function(e,n,r){return t(e).add(n,r).valueOf()},diff:function(e,n,r){return t(e).diff(t(n),r)},startOf:function(e,n,r){return e=t(e),"isoWeek"===n?e.isoWeekday(r).valueOf():e.startOf(n).valueOf()},endOf:function(e,n){return t(e).endOf(n).valueOf()},_create:function(e){return t(e)}}:{}),Q._set("global",{plugins:{filler:{propagate:!0}}});var ki={dataset:function(t){var e=t.fill,n=t.chart,r=n.getDatasetMeta(e),i=r&&n.isDatasetVisible(e)&&r.dataset._children||[],o=i.length||0;return o?function(t,e){return e=n)&&r;switch(o){case"bottom":return"start";case"top":return"end";case"zero":return"origin";case"origin":case"start":case"end":return o;default:return!1}}function Wi(t){var e,n=t.el._model||{},r=t.el._scale||{},i=t.fill,o=null;if(isFinite(i))return null;if("start"===i?o=void 0===n.scaleBottom?r.bottom:n.scaleBottom:"end"===i?o=void 0===n.scaleTop?r.top:n.scaleTop:void 0!==n.scaleZero?o=n.scaleZero:r.getBasePixel&&(o=r.getBasePixel()),null!=o){if(void 0!==o.x&&void 0!==o.y)return o;if(ct.isFinite(o))return{x:(e=r.isHorizontal())?o:null,y:e?null:o}}return null}function Bi(t){var e,n,r,i,o,a=t.el._scale,c=a.options,s=a.chart.data.labels.length,l=t.fill,u=[];if(!s)return null;for(e=c.ticks.reverse?a.max:a.min,n=c.ticks.reverse?a.min:a.max,r=a.getPointPositionForValue(0,e),i=0;i0;--o)ct.canvas.lineTo(t,n[o],n[o-1],!0);else for(a=n[0].cx,c=n[0].cy,s=Math.sqrt(Math.pow(n[0].x-a,2)+Math.pow(n[0].y-c,2)),o=i-1;o>0;--o)t.arc(a,c,s,n[o].angle,n[o-1].angle,!0)}}function Ii(t,e,n,r,i,o){var a,c,s,l,u,f,d,p,h=e.length,M=r.spanGaps,b=[],m=[],v=0,g=0;for(t.beginPath(),a=0,c=h;a=0;--n)(e=s[n].$filler)&&e.visible&&(i=(r=e.el)._view,o=r._children||[],a=e.mapper,c=i.backgroundColor||Q.global.defaultColor,a&&c&&o.length&&(ct.canvas.clipArea(l,t.chartArea),Ii(l,o,a,i,c,r._loop),ct.canvas.unclipArea(l)))}},Hi=ct.rtl.getRtlAdapter,$i=ct.noop,Ui=ct.valueOrDefault;function Vi(t,e){return t.usePointStyle&&t.boxWidth>e?e:t.boxWidth}Q._set("global",{legend:{display:!0,position:"top",align:"center",fullWidth:!0,reverse:!1,weight:1e3,onClick:function(t,e){var n=e.datasetIndex,r=this.chart,i=r.getDatasetMeta(n);i.hidden=null===i.hidden?!r.data.datasets[n].hidden:null,r.update()},onHover:null,onLeave:null,labels:{boxWidth:40,padding:10,generateLabels:function(t){var e=t.data.datasets,n=t.options.legend||{},r=n.labels&&n.labels.usePointStyle;return t._getSortedDatasetMetas().map((function(n){var i=n.controller.getStyle(r?0:void 0);return{text:e[n.index].label,fillStyle:i.backgroundColor,hidden:!t.isDatasetVisible(n.index),lineCap:i.borderCapStyle,lineDash:i.borderDash,lineDashOffset:i.borderDashOffset,lineJoin:i.borderJoinStyle,lineWidth:i.borderWidth,strokeStyle:i.borderColor,pointStyle:i.pointStyle,rotation:i.rotation,datasetIndex:n.index}}),this)}}},legendCallback:function(t){var e,n,r,i=document.createElement("ul"),o=t.data.datasets;for(i.setAttribute("class",t.id+"-legend"),e=0,n=o.length;es.width)&&(f+=a+n.padding,u[u.length-(e>0?0:1)]=0),c[e]={left:0,top:0,width:r,height:a},u[u.length-1]+=r+n.padding})),s.height+=f}else{var d=n.padding,p=t.columnWidths=[],h=t.columnHeights=[],M=n.padding,b=0,m=0;ct.each(t.legendItems,(function(t,e){var r=Vi(n,a)+a/2+i.measureText(t.text).width;e>0&&m+a+2*d>s.height&&(M+=b+n.padding,p.push(b),h.push(m),b=0,m=0),b=Math.max(b,r),m+=a+d,c[e]={left:0,top:0,width:r,height:a}})),M+=b,p.push(b),h.push(m),s.width+=M}t.width=s.width,t.height=s.height}else t.width=s.width=t.height=s.height=0},afterFit:$i,isHorizontal:function(){return"top"===this.options.position||"bottom"===this.options.position},draw:function(){var t=this,e=t.options,n=e.labels,r=Q.global,i=r.defaultColor,o=r.elements.line,a=t.height,c=t.columnHeights,s=t.width,l=t.lineWidths;if(e.display){var u,f=Hi(e.rtl,t.left,t.minSize.width),d=t.ctx,p=Ui(n.fontColor,r.defaultFontColor),h=ct.options._parseFont(n),M=h.size;d.textAlign=f.textAlign("left"),d.textBaseline="middle",d.lineWidth=.5,d.strokeStyle=p,d.fillStyle=p,d.font=h.string;var b=Vi(n,M),m=t.legendHitBoxes,v=function(t,e,r){if(!(isNaN(b)||b<=0)){d.save();var a=Ui(r.lineWidth,o.borderWidth);if(d.fillStyle=Ui(r.fillStyle,i),d.lineCap=Ui(r.lineCap,o.borderCapStyle),d.lineDashOffset=Ui(r.lineDashOffset,o.borderDashOffset),d.lineJoin=Ui(r.lineJoin,o.borderJoinStyle),d.lineWidth=a,d.strokeStyle=Ui(r.strokeStyle,i),d.setLineDash&&d.setLineDash(Ui(r.lineDash,o.borderDash)),n&&n.usePointStyle){var c=b*Math.SQRT2/2,s=f.xPlus(t,b/2),l=e+M/2;ct.canvas.drawPoint(d,r.pointStyle,c,s,l,r.rotation)}else d.fillRect(f.leftForLtr(t,b),e,b,M),0!==a&&d.strokeRect(f.leftForLtr(t,b),e,b,M);d.restore()}},g=function(t,e,n,r){var i=M/2,o=f.xPlus(t,b+i),a=e+i;d.fillText(n.text,o,a),n.hidden&&(d.beginPath(),d.lineWidth=2,d.moveTo(o,a),d.lineTo(f.xPlus(o,r),a),d.stroke())},y=function(t,r){switch(e.align){case"start":return n.padding;case"end":return t-r;default:return(t-r+n.padding)/2}},A=t.isHorizontal();u=A?{x:t.left+y(s,l[0]),y:t.top+n.padding,line:0}:{x:t.left+n.padding,y:t.top+y(a,c[0]),line:0},ct.rtl.overrideTextDirection(t.ctx,e.textDirection);var _=M+n.padding;ct.each(t.legendItems,(function(e,r){var i=d.measureText(e.text).width,o=b+M/2+i,p=u.x,h=u.y;f.setWidth(t.minSize.width),A?r>0&&p+o+n.padding>t.left+t.minSize.width&&(h=u.y+=_,u.line++,p=u.x=t.left+y(s,l[u.line])):r>0&&h+_>t.top+t.minSize.height&&(p=u.x=p+t.columnWidths[u.line]+n.padding,u.line++,h=u.y=t.top+y(a,c[u.line]));var z=f.x(p);v(z,h,e),m[r].left=f.leftForLtr(z,m[r].width),m[r].top=h,g(z,h,e,i),A?u.x+=o+n.padding:u.y+=_})),ct.rtl.restoreTextDirection(t.ctx,e.textDirection)}},_getLegendItemAt:function(t,e){var n,r,i,o=this;if(t>=o.left&&t<=o.right&&e>=o.top&&e<=o.bottom)for(i=o.legendHitBoxes,n=0;n=(r=i[n]).left&&t<=r.left+r.width&&e>=r.top&&e<=r.top+r.height)return o.legendItems[n];return null},handleEvent:function(t){var e,n=this,r=n.options,i="mouseup"===t.type?"click":t.type;if("mousemove"===i){if(!r.onHover&&!r.onLeave)return}else{if("click"!==i)return;if(!r.onClick)return}e=n._getLegendItemAt(t.x,t.y),"click"===i?e&&r.onClick&&r.onClick.call(n,t.native,e):(r.onLeave&&e!==n._hoveredItem&&(n._hoveredItem&&r.onLeave.call(n,t.native,n._hoveredItem),n._hoveredItem=e),r.onHover&&e&&r.onHover.call(n,t.native,e))}});function Gi(t,e){var n=new Yi({ctx:t.ctx,options:e,chart:t});$e.configure(t,n,e),$e.addBox(t,n),t.legend=n}var Ji={id:"legend",_element:Yi,beforeInit:function(t){var e=t.options.legend;e&&Gi(t,e)},beforeUpdate:function(t){var e=t.options.legend,n=t.legend;e?(ct.mergeIf(e,Q.global.legend),n?($e.configure(t,n,e),n.options=e):Gi(t,e)):n&&($e.removeBox(t,n),delete t.legend)},afterEvent:function(t,e){var n=t.legend;n&&n.handleEvent(e)}},Ki=ct.noop;Q._set("global",{title:{display:!1,fontStyle:"bold",fullWidth:!0,padding:10,position:"top",text:"",weight:2e3}});var Qi=Mt.extend({initialize:function(t){var e=this;ct.extend(e,t),e.legendHitBoxes=[]},beforeUpdate:Ki,update:function(t,e,n){var r=this;return r.beforeUpdate(),r.maxWidth=t,r.maxHeight=e,r.margins=n,r.beforeSetDimensions(),r.setDimensions(),r.afterSetDimensions(),r.beforeBuildLabels(),r.buildLabels(),r.afterBuildLabels(),r.beforeFit(),r.fit(),r.afterFit(),r.afterUpdate(),r.minSize},afterUpdate:Ki,beforeSetDimensions:Ki,setDimensions:function(){var t=this;t.isHorizontal()?(t.width=t.maxWidth,t.left=0,t.right=t.width):(t.height=t.maxHeight,t.top=0,t.bottom=t.height),t.paddingLeft=0,t.paddingTop=0,t.paddingRight=0,t.paddingBottom=0,t.minSize={width:0,height:0}},afterSetDimensions:Ki,beforeBuildLabels:Ki,buildLabels:Ki,afterBuildLabels:Ki,beforeFit:Ki,fit:function(){var t,e=this,n=e.options,r=e.minSize={},i=e.isHorizontal();n.display?(t=(ct.isArray(n.text)?n.text.length:1)*ct.options._parseFont(n).lineHeight+2*n.padding,e.width=r.width=i?e.maxWidth:t,e.height=r.height=i?t:e.maxHeight):e.width=r.width=e.height=r.height=0},afterFit:Ki,isHorizontal:function(){var t=this.options.position;return"top"===t||"bottom"===t},draw:function(){var t=this,e=t.ctx,n=t.options;if(n.display){var r,i,o,a=ct.options._parseFont(n),c=a.lineHeight,s=c/2+n.padding,l=0,u=t.top,f=t.left,d=t.bottom,p=t.right;e.fillStyle=ct.valueOrDefault(n.fontColor,Q.global.defaultFontColor),e.font=a.string,t.isHorizontal()?(i=f+(p-f)/2,o=u+s,r=p-f):(i="left"===n.position?f+s:p-s,o=u+(d-u)/2,r=d-u,l=Math.PI*("left"===n.position?-.5:.5)),e.save(),e.translate(i,o),e.rotate(l),e.textAlign="center",e.textBaseline="middle";var h=n.text;if(ct.isArray(h))for(var M=0,b=0;b{"use strict";n.d(e,{Z:()=>o});var r=n(3645),i=n.n(r)()((function(t){return t[1]}));i.push([t.id,"#alertModal{background:rgba(0,0,0,.5);z-index:99999}#alertModal svg{display:block;height:4rem;margin:0 auto;width:4rem}",""]);const o=i},3645:t=>{"use strict";t.exports=function(t){var e=[];return e.toString=function(){return this.map((function(e){var n=t(e);return e[2]?"@media ".concat(e[2]," {").concat(n,"}"):n})).join("")},e.i=function(t,n,r){"string"==typeof t&&(t=[[null,t,""]]);var i={};if(r)for(var o=0;o0&&e-1 in t)}O.fn=O.prototype={jquery:z,constructor:O,length:0,toArray:function(){return c.call(this)},get:function(t){return null==t?c.call(this):t<0?this[t+this.length]:this[t]},pushStack:function(t){var e=O.merge(this.constructor(),t);return e.prevObject=this,e},each:function(t){return O.each(this,t)},map:function(t){return this.pushStack(O.map(this,(function(e,n){return t.call(e,n,e)})))},slice:function(){return this.pushStack(c.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(O.grep(this,(function(t,e){return(e+1)%2})))},odd:function(){return this.pushStack(O.grep(this,(function(t,e){return e%2})))},eq:function(t){var e=this.length,n=+t+(t<0?e:0);return this.pushStack(n>=0&&n+~]|[\\x20\\t\\r\\n\\f])[\\x20\\t\\r\\n\\f]*"),$=new RegExp(D+"|>"),U=new RegExp(R),V=new RegExp("^"+X+"$"),Y={ID:new RegExp("^#("+X+")"),CLASS:new RegExp("^\\.("+X+")"),TAG:new RegExp("^("+X+"|[*])"),ATTR:new RegExp("^"+P),PSEUDO:new RegExp("^"+R),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\([\\x20\\t\\r\\n\\f]*(even|odd|(([+-]|)(\\d*)n|)[\\x20\\t\\r\\n\\f]*(?:([+-]|)[\\x20\\t\\r\\n\\f]*(\\d+)|))[\\x20\\t\\r\\n\\f]*\\)|)","i"),bool:new RegExp("^(?:"+B+")$","i"),needsContext:new RegExp("^[\\x20\\t\\r\\n\\f]*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\([\\x20\\t\\r\\n\\f]*((?:-\\d)?\\d*)[\\x20\\t\\r\\n\\f]*\\)|)(?=[^-]|$)","i")},G=/HTML$/i,J=/^(?:input|select|textarea|button)$/i,K=/^h\d$/i,Q=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,tt=/[+~]/,et=new RegExp("\\\\[\\da-fA-F]{1,6}[\\x20\\t\\r\\n\\f]?|\\\\([^\\r\\n\\f])","g"),nt=function(t,e){var n="0x"+t.slice(1)-65536;return e||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},rt=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,it=function(t,e){return e?"\0"===t?"�":t.slice(0,-1)+"\\"+t.charCodeAt(t.length-1).toString(16)+" ":"\\"+t},ot=function(){d()},at=yt((function(t){return!0===t.disabled&&"fieldset"===t.nodeName.toLowerCase()}),{dir:"parentNode",next:"legend"});try{k.apply(C=E.call(A.childNodes),A.childNodes),C[A.childNodes.length].nodeType}catch(t){k={apply:C.length?function(t,e){S.apply(t,E.call(e))}:function(t,e){for(var n=t.length,r=0;t[n++]=e[r++];);t.length=n-1}}}function ct(t,e,r,i){var o,c,l,u,f,h,m,v=e&&e.ownerDocument,A=e?e.nodeType:9;if(r=r||[],"string"!=typeof t||!t||1!==A&&9!==A&&11!==A)return r;if(!i&&(d(e),e=e||p,M)){if(11!==A&&(f=Z.exec(t)))if(o=f[1]){if(9===A){if(!(l=e.getElementById(o)))return r;if(l.id===o)return r.push(l),r}else if(v&&(l=v.getElementById(o))&&g(e,l)&&l.id===o)return r.push(l),r}else{if(f[2])return k.apply(r,e.getElementsByTagName(t)),r;if((o=f[3])&&n.getElementsByClassName&&e.getElementsByClassName)return k.apply(r,e.getElementsByClassName(o)),r}if(n.qsa&&!L[t+" "]&&(!b||!b.test(t))&&(1!==A||"object"!==e.nodeName.toLowerCase())){if(m=t,v=e,1===A&&($.test(t)||H.test(t))){for((v=tt.test(t)&&mt(e.parentNode)||e)===e&&n.scope||((u=e.getAttribute("id"))?u=u.replace(rt,it):e.setAttribute("id",u=y)),c=(h=a(t)).length;c--;)h[c]=(u?"#"+u:":scope")+" "+gt(h[c]);m=h.join(",")}try{return k.apply(r,v.querySelectorAll(m)),r}catch(e){L(t,!0)}finally{u===y&&e.removeAttribute("id")}}}return s(t.replace(I,"$1"),e,r,i)}function st(){var t=[];return function e(n,i){return t.push(n+" ")>r.cacheLength&&delete e[t.shift()],e[n+" "]=i}}function lt(t){return t[y]=!0,t}function ut(t){var e=p.createElement("fieldset");try{return!!t(e)}catch(t){return!1}finally{e.parentNode&&e.parentNode.removeChild(e),e=null}}function ft(t,e){for(var n=t.split("|"),i=n.length;i--;)r.attrHandle[n[i]]=e}function dt(t,e){var n=e&&t,r=n&&1===t.nodeType&&1===e.nodeType&&t.sourceIndex-e.sourceIndex;if(r)return r;if(n)for(;n=n.nextSibling;)if(n===e)return-1;return t?1:-1}function pt(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function ht(t){return function(e){var n=e.nodeName.toLowerCase();return("input"===n||"button"===n)&&e.type===t}}function Mt(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&at(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function bt(t){return lt((function(e){return e=+e,lt((function(n,r){for(var i,o=t([],n.length,e),a=o.length;a--;)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))}))}))}function mt(t){return t&&void 0!==t.getElementsByTagName&&t}for(e in n=ct.support={},o=ct.isXML=function(t){var e=t&&t.namespaceURI,n=t&&(t.ownerDocument||t).documentElement;return!G.test(e||n&&n.nodeName||"HTML")},d=ct.setDocument=function(t){var e,i,a=t?t.ownerDocument||t:A;return a!=p&&9===a.nodeType&&a.documentElement?(h=(p=a).documentElement,M=!o(p),A!=p&&(i=p.defaultView)&&i.top!==i&&(i.addEventListener?i.addEventListener("unload",ot,!1):i.attachEvent&&i.attachEvent("onunload",ot)),n.scope=ut((function(t){return h.appendChild(t).appendChild(p.createElement("div")),void 0!==t.querySelectorAll&&!t.querySelectorAll(":scope fieldset div").length})),n.attributes=ut((function(t){return t.className="i",!t.getAttribute("className")})),n.getElementsByTagName=ut((function(t){return t.appendChild(p.createComment("")),!t.getElementsByTagName("*").length})),n.getElementsByClassName=Q.test(p.getElementsByClassName),n.getById=ut((function(t){return h.appendChild(t).id=y,!p.getElementsByName||!p.getElementsByName(y).length})),n.getById?(r.filter.ID=function(t){var e=t.replace(et,nt);return function(t){return t.getAttribute("id")===e}},r.find.ID=function(t,e){if(void 0!==e.getElementById&&M){var n=e.getElementById(t);return n?[n]:[]}}):(r.filter.ID=function(t){var e=t.replace(et,nt);return function(t){var n=void 0!==t.getAttributeNode&&t.getAttributeNode("id");return n&&n.value===e}},r.find.ID=function(t,e){if(void 0!==e.getElementById&&M){var n,r,i,o=e.getElementById(t);if(o){if((n=o.getAttributeNode("id"))&&n.value===t)return[o];for(i=e.getElementsByName(t),r=0;o=i[r++];)if((n=o.getAttributeNode("id"))&&n.value===t)return[o]}return[]}}),r.find.TAG=n.getElementsByTagName?function(t,e){return void 0!==e.getElementsByTagName?e.getElementsByTagName(t):n.qsa?e.querySelectorAll(t):void 0}:function(t,e){var n,r=[],i=0,o=e.getElementsByTagName(t);if("*"===t){for(;n=o[i++];)1===n.nodeType&&r.push(n);return r}return o},r.find.CLASS=n.getElementsByClassName&&function(t,e){if(void 0!==e.getElementsByClassName&&M)return e.getElementsByClassName(t)},m=[],b=[],(n.qsa=Q.test(p.querySelectorAll))&&(ut((function(t){var e;h.appendChild(t).innerHTML="",t.querySelectorAll("[msallowcapture^='']").length&&b.push("[*^$]=[\\x20\\t\\r\\n\\f]*(?:''|\"\")"),t.querySelectorAll("[selected]").length||b.push("\\[[\\x20\\t\\r\\n\\f]*(?:value|"+B+")"),t.querySelectorAll("[id~="+y+"-]").length||b.push("~="),(e=p.createElement("input")).setAttribute("name",""),t.appendChild(e),t.querySelectorAll("[name='']").length||b.push("\\[[\\x20\\t\\r\\n\\f]*name[\\x20\\t\\r\\n\\f]*=[\\x20\\t\\r\\n\\f]*(?:''|\"\")"),t.querySelectorAll(":checked").length||b.push(":checked"),t.querySelectorAll("a#"+y+"+*").length||b.push(".#.+[+~]"),t.querySelectorAll("\\\f"),b.push("[\\r\\n\\f]")})),ut((function(t){t.innerHTML="";var e=p.createElement("input");e.setAttribute("type","hidden"),t.appendChild(e).setAttribute("name","D"),t.querySelectorAll("[name=d]").length&&b.push("name[\\x20\\t\\r\\n\\f]*[*^$|!~]?="),2!==t.querySelectorAll(":enabled").length&&b.push(":enabled",":disabled"),h.appendChild(t).disabled=!0,2!==t.querySelectorAll(":disabled").length&&b.push(":enabled",":disabled"),t.querySelectorAll("*,:x"),b.push(",.*:")}))),(n.matchesSelector=Q.test(v=h.matches||h.webkitMatchesSelector||h.mozMatchesSelector||h.oMatchesSelector||h.msMatchesSelector))&&ut((function(t){n.disconnectedMatch=v.call(t,"*"),v.call(t,"[s!='']:x"),m.push("!=",R)})),b=b.length&&new RegExp(b.join("|")),m=m.length&&new RegExp(m.join("|")),e=Q.test(h.compareDocumentPosition),g=e||Q.test(h.contains)?function(t,e){var n=9===t.nodeType?t.documentElement:t,r=e&&e.parentNode;return t===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):t.compareDocumentPosition&&16&t.compareDocumentPosition(r)))}:function(t,e){if(e)for(;e=e.parentNode;)if(e===t)return!0;return!1},N=e?function(t,e){if(t===e)return f=!0,0;var r=!t.compareDocumentPosition-!e.compareDocumentPosition;return r||(1&(r=(t.ownerDocument||t)==(e.ownerDocument||e)?t.compareDocumentPosition(e):1)||!n.sortDetached&&e.compareDocumentPosition(t)===r?t==p||t.ownerDocument==A&&g(A,t)?-1:e==p||e.ownerDocument==A&&g(A,e)?1:u?W(u,t)-W(u,e):0:4&r?-1:1)}:function(t,e){if(t===e)return f=!0,0;var n,r=0,i=t.parentNode,o=e.parentNode,a=[t],c=[e];if(!i||!o)return t==p?-1:e==p?1:i?-1:o?1:u?W(u,t)-W(u,e):0;if(i===o)return dt(t,e);for(n=t;n=n.parentNode;)a.unshift(n);for(n=e;n=n.parentNode;)c.unshift(n);for(;a[r]===c[r];)r++;return r?dt(a[r],c[r]):a[r]==A?-1:c[r]==A?1:0},p):p},ct.matches=function(t,e){return ct(t,null,null,e)},ct.matchesSelector=function(t,e){if(d(t),n.matchesSelector&&M&&!L[e+" "]&&(!m||!m.test(e))&&(!b||!b.test(e)))try{var r=v.call(t,e);if(r||n.disconnectedMatch||t.document&&11!==t.document.nodeType)return r}catch(t){L(e,!0)}return ct(e,p,null,[t]).length>0},ct.contains=function(t,e){return(t.ownerDocument||t)!=p&&d(t),g(t,e)},ct.attr=function(t,e){(t.ownerDocument||t)!=p&&d(t);var i=r.attrHandle[e.toLowerCase()],o=i&&T.call(r.attrHandle,e.toLowerCase())?i(t,e,!M):void 0;return void 0!==o?o:n.attributes||!M?t.getAttribute(e):(o=t.getAttributeNode(e))&&o.specified?o.value:null},ct.escape=function(t){return(t+"").replace(rt,it)},ct.error=function(t){throw new Error("Syntax error, unrecognized expression: "+t)},ct.uniqueSort=function(t){var e,r=[],i=0,o=0;if(f=!n.detectDuplicates,u=!n.sortStable&&t.slice(0),t.sort(N),f){for(;e=t[o++];)e===t[o]&&(i=r.push(o));for(;i--;)t.splice(r[i],1)}return u=null,t},i=ct.getText=function(t){var e,n="",r=0,o=t.nodeType;if(o){if(1===o||9===o||11===o){if("string"==typeof t.textContent)return t.textContent;for(t=t.firstChild;t;t=t.nextSibling)n+=i(t)}else if(3===o||4===o)return t.nodeValue}else for(;e=t[r++];)n+=i(e);return n},r=ct.selectors={cacheLength:50,createPseudo:lt,match:Y,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(t){return t[1]=t[1].replace(et,nt),t[3]=(t[3]||t[4]||t[5]||"").replace(et,nt),"~="===t[2]&&(t[3]=" "+t[3]+" "),t.slice(0,4)},CHILD:function(t){return t[1]=t[1].toLowerCase(),"nth"===t[1].slice(0,3)?(t[3]||ct.error(t[0]),t[4]=+(t[4]?t[5]+(t[6]||1):2*("even"===t[3]||"odd"===t[3])),t[5]=+(t[7]+t[8]||"odd"===t[3])):t[3]&&ct.error(t[0]),t},PSEUDO:function(t){var e,n=!t[6]&&t[2];return Y.CHILD.test(t[0])?null:(t[3]?t[2]=t[4]||t[5]||"":n&&U.test(n)&&(e=a(n,!0))&&(e=n.indexOf(")",n.length-e)-n.length)&&(t[0]=t[0].slice(0,e),t[2]=n.slice(0,e)),t.slice(0,3))}},filter:{TAG:function(t){var e=t.replace(et,nt).toLowerCase();return"*"===t?function(){return!0}:function(t){return t.nodeName&&t.nodeName.toLowerCase()===e}},CLASS:function(t){var e=O[t+" "];return e||(e=new RegExp("(^|[\\x20\\t\\r\\n\\f])"+t+"("+D+"|$)"))&&O(t,(function(t){return e.test("string"==typeof t.className&&t.className||void 0!==t.getAttribute&&t.getAttribute("class")||"")}))},ATTR:function(t,e,n){return function(r){var i=ct.attr(r,t);return null==i?"!="===e:!e||(i+="","="===e?i===n:"!="===e?i!==n:"^="===e?n&&0===i.indexOf(n):"*="===e?n&&i.indexOf(n)>-1:"$="===e?n&&i.slice(-n.length)===n:"~="===e?(" "+i.replace(j," ")+" ").indexOf(n)>-1:"|="===e&&(i===n||i.slice(0,n.length+1)===n+"-"))}},CHILD:function(t,e,n,r,i){var o="nth"!==t.slice(0,3),a="last"!==t.slice(-4),c="of-type"===e;return 1===r&&0===i?function(t){return!!t.parentNode}:function(e,n,s){var l,u,f,d,p,h,M=o!==a?"nextSibling":"previousSibling",b=e.parentNode,m=c&&e.nodeName.toLowerCase(),v=!s&&!c,g=!1;if(b){if(o){for(;M;){for(d=e;d=d[M];)if(c?d.nodeName.toLowerCase()===m:1===d.nodeType)return!1;h=M="only"===t&&!h&&"nextSibling"}return!0}if(h=[a?b.firstChild:b.lastChild],a&&v){for(g=(p=(l=(u=(f=(d=b)[y]||(d[y]={}))[d.uniqueID]||(f[d.uniqueID]={}))[t]||[])[0]===_&&l[1])&&l[2],d=p&&b.childNodes[p];d=++p&&d&&d[M]||(g=p=0)||h.pop();)if(1===d.nodeType&&++g&&d===e){u[t]=[_,p,g];break}}else if(v&&(g=p=(l=(u=(f=(d=e)[y]||(d[y]={}))[d.uniqueID]||(f[d.uniqueID]={}))[t]||[])[0]===_&&l[1]),!1===g)for(;(d=++p&&d&&d[M]||(g=p=0)||h.pop())&&((c?d.nodeName.toLowerCase()!==m:1!==d.nodeType)||!++g||(v&&((u=(f=d[y]||(d[y]={}))[d.uniqueID]||(f[d.uniqueID]={}))[t]=[_,g]),d!==e)););return(g-=i)===r||g%r==0&&g/r>=0}}},PSEUDO:function(t,e){var n,i=r.pseudos[t]||r.setFilters[t.toLowerCase()]||ct.error("unsupported pseudo: "+t);return i[y]?i(e):i.length>1?(n=[t,t,"",e],r.setFilters.hasOwnProperty(t.toLowerCase())?lt((function(t,n){for(var r,o=i(t,e),a=o.length;a--;)t[r=W(t,o[a])]=!(n[r]=o[a])})):function(t){return i(t,0,n)}):i}},pseudos:{not:lt((function(t){var e=[],n=[],r=c(t.replace(I,"$1"));return r[y]?lt((function(t,e,n,i){for(var o,a=r(t,null,i,[]),c=t.length;c--;)(o=a[c])&&(t[c]=!(e[c]=o))})):function(t,i,o){return e[0]=t,r(e,null,o,n),e[0]=null,!n.pop()}})),has:lt((function(t){return function(e){return ct(t,e).length>0}})),contains:lt((function(t){return t=t.replace(et,nt),function(e){return(e.textContent||i(e)).indexOf(t)>-1}})),lang:lt((function(t){return V.test(t||"")||ct.error("unsupported lang: "+t),t=t.replace(et,nt).toLowerCase(),function(e){var n;do{if(n=M?e.lang:e.getAttribute("xml:lang")||e.getAttribute("lang"))return(n=n.toLowerCase())===t||0===n.indexOf(t+"-")}while((e=e.parentNode)&&1===e.nodeType);return!1}})),target:function(e){var n=t.location&&t.location.hash;return n&&n.slice(1)===e.id},root:function(t){return t===h},focus:function(t){return t===p.activeElement&&(!p.hasFocus||p.hasFocus())&&!!(t.type||t.href||~t.tabIndex)},enabled:Mt(!1),disabled:Mt(!0),checked:function(t){var e=t.nodeName.toLowerCase();return"input"===e&&!!t.checked||"option"===e&&!!t.selected},selected:function(t){return t.parentNode&&t.parentNode.selectedIndex,!0===t.selected},empty:function(t){for(t=t.firstChild;t;t=t.nextSibling)if(t.nodeType<6)return!1;return!0},parent:function(t){return!r.pseudos.empty(t)},header:function(t){return K.test(t.nodeName)},input:function(t){return J.test(t.nodeName)},button:function(t){var e=t.nodeName.toLowerCase();return"input"===e&&"button"===t.type||"button"===e},text:function(t){var e;return"input"===t.nodeName.toLowerCase()&&"text"===t.type&&(null==(e=t.getAttribute("type"))||"text"===e.toLowerCase())},first:bt((function(){return[0]})),last:bt((function(t,e){return[e-1]})),eq:bt((function(t,e,n){return[n<0?n+e:n]})),even:bt((function(t,e){for(var n=0;ne?e:n;--r>=0;)t.push(r);return t})),gt:bt((function(t,e,n){for(var r=n<0?n+e:n;++r1?function(e,n,r){for(var i=t.length;i--;)if(!t[i](e,n,r))return!1;return!0}:t[0]}function _t(t,e,n,r,i){for(var o,a=[],c=0,s=t.length,l=null!=e;c-1&&(o[l]=!(a[l]=f))}}else m=_t(m===a?m.splice(h,m.length):m),i?i(null,a,m,s):k.apply(a,m)}))}function Ot(t){for(var e,n,i,o=t.length,a=r.relative[t[0].type],c=a||r.relative[" "],s=a?1:0,u=yt((function(t){return t===e}),c,!0),f=yt((function(t){return W(e,t)>-1}),c,!0),d=[function(t,n,r){var i=!a&&(r||n!==l)||((e=n).nodeType?u(t,n,r):f(t,n,r));return e=null,i}];s1&&At(d),s>1&>(t.slice(0,s-1).concat({value:" "===t[s-2].type?"*":""})).replace(I,"$1"),n,s0,i=t.length>0,o=function(o,a,c,s,u){var f,h,b,m=0,v="0",g=o&&[],y=[],A=l,z=o||i&&r.find.TAG("*",u),O=_+=null==A?1:Math.random()||.1,x=z.length;for(u&&(l=a==p||a||u);v!==x&&null!=(f=z[v]);v++){if(i&&f){for(h=0,a||f.ownerDocument==p||(d(f),c=!M);b=t[h++];)if(b(f,a||p,c)){s.push(f);break}u&&(_=O)}n&&((f=!b&&f)&&m--,o&&g.push(f))}if(m+=v,n&&v!==m){for(h=0;b=e[h++];)b(g,y,a,c);if(o){if(m>0)for(;v--;)g[v]||y[v]||(y[v]=q.call(s));y=_t(y)}k.apply(s,y),u&&!o&&y.length>0&&m+e.length>1&&ct.uniqueSort(s)}return u&&(_=O,l=A),g};return n?lt(o):o}(o,i)),c.selector=t}return c},s=ct.select=function(t,e,n,i){var o,s,l,u,f,d="function"==typeof t&&t,p=!i&&a(t=d.selector||t);if(n=n||[],1===p.length){if((s=p[0]=p[0].slice(0)).length>2&&"ID"===(l=s[0]).type&&9===e.nodeType&&M&&r.relative[s[1].type]){if(!(e=(r.find.ID(l.matches[0].replace(et,nt),e)||[])[0]))return n;d&&(e=e.parentNode),t=t.slice(s.shift().value.length)}for(o=Y.needsContext.test(t)?0:s.length;o--&&(l=s[o],!r.relative[u=l.type]);)if((f=r.find[u])&&(i=f(l.matches[0].replace(et,nt),tt.test(s[0].type)&&mt(e.parentNode)||e))){if(s.splice(o,1),!(t=i.length&>(s)))return k.apply(n,i),n;break}}return(d||c(t,p))(i,e,!M,n,!e||tt.test(t)&&mt(e.parentNode)||e),n},n.sortStable=y.split("").sort(N).join("")===y,n.detectDuplicates=!!f,d(),n.sortDetached=ut((function(t){return 1&t.compareDocumentPosition(p.createElement("fieldset"))})),ut((function(t){return t.innerHTML="","#"===t.firstChild.getAttribute("href")}))||ft("type|href|height|width",(function(t,e,n){if(!n)return t.getAttribute(e,"type"===e.toLowerCase()?1:2)})),n.attributes&&ut((function(t){return t.innerHTML="",t.firstChild.setAttribute("value",""),""===t.firstChild.getAttribute("value")}))||ft("value",(function(t,e,n){if(!n&&"input"===t.nodeName.toLowerCase())return t.defaultValue})),ut((function(t){return null==t.getAttribute("disabled")}))||ft(B,(function(t,e,n){var r;if(!n)return!0===t[e]?e.toLowerCase():(r=t.getAttributeNode(e))&&r.specified?r.value:null})),ct}(r);O.find=w,O.expr=w.selectors,O.expr[":"]=O.expr.pseudos,O.uniqueSort=O.unique=w.uniqueSort,O.text=w.getText,O.isXMLDoc=w.isXML,O.contains=w.contains,O.escapeSelector=w.escape;var L=function(t,e,n){for(var r=[],i=void 0!==n;(t=t[e])&&9!==t.nodeType;)if(1===t.nodeType){if(i&&O(t).is(n))break;r.push(t)}return r},N=function(t,e){for(var n=[];t;t=t.nextSibling)1===t.nodeType&&t!==e&&n.push(t);return n},T=O.expr.match.needsContext;function C(t,e){return t.nodeName&&t.nodeName.toLowerCase()===e.toLowerCase()}var q=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function S(t,e,n){return m(e)?O.grep(t,(function(t,r){return!!e.call(t,r,t)!==n})):e.nodeType?O.grep(t,(function(t){return t===e!==n})):"string"!=typeof e?O.grep(t,(function(t){return u.call(e,t)>-1!==n})):O.filter(e,t,n)}O.filter=function(t,e,n){var r=e[0];return n&&(t=":not("+t+")"),1===e.length&&1===r.nodeType?O.find.matchesSelector(r,t)?[r]:[]:O.find.matches(t,O.grep(e,(function(t){return 1===t.nodeType})))},O.fn.extend({find:function(t){var e,n,r=this.length,i=this;if("string"!=typeof t)return this.pushStack(O(t).filter((function(){for(e=0;e1?O.uniqueSort(n):n},filter:function(t){return this.pushStack(S(this,t||[],!1))},not:function(t){return this.pushStack(S(this,t||[],!0))},is:function(t){return!!S(this,"string"==typeof t&&T.test(t)?O(t):t||[],!1).length}});var k,E=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(O.fn.init=function(t,e,n){var r,i;if(!t)return this;if(n=n||k,"string"==typeof t){if(!(r="<"===t[0]&&">"===t[t.length-1]&&t.length>=3?[null,t,null]:E.exec(t))||!r[1]&&e)return!e||e.jquery?(e||n).find(t):this.constructor(e).find(t);if(r[1]){if(e=e instanceof O?e[0]:e,O.merge(this,O.parseHTML(r[1],e&&e.nodeType?e.ownerDocument||e:g,!0)),q.test(r[1])&&O.isPlainObject(e))for(r in e)m(this[r])?this[r](e[r]):this.attr(r,e[r]);return this}return(i=g.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return t.nodeType?(this[0]=t,this.length=1,this):m(t)?void 0!==n.ready?n.ready(t):t(O):O.makeArray(t,this)}).prototype=O.fn,k=O(g);var W=/^(?:parents|prev(?:Until|All))/,B={children:!0,contents:!0,next:!0,prev:!0};function D(t,e){for(;(t=t[e])&&1!==t.nodeType;);return t}O.fn.extend({has:function(t){var e=O(t,this),n=e.length;return this.filter((function(){for(var t=0;t-1:1===n.nodeType&&O.find.matchesSelector(n,t))){o.push(n);break}return this.pushStack(o.length>1?O.uniqueSort(o):o)},index:function(t){return t?"string"==typeof t?u.call(O(t),this[0]):u.call(this,t.jquery?t[0]:t):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(t,e){return this.pushStack(O.uniqueSort(O.merge(this.get(),O(t,e))))},addBack:function(t){return this.add(null==t?this.prevObject:this.prevObject.filter(t))}}),O.each({parent:function(t){var e=t.parentNode;return e&&11!==e.nodeType?e:null},parents:function(t){return L(t,"parentNode")},parentsUntil:function(t,e,n){return L(t,"parentNode",n)},next:function(t){return D(t,"nextSibling")},prev:function(t){return D(t,"previousSibling")},nextAll:function(t){return L(t,"nextSibling")},prevAll:function(t){return L(t,"previousSibling")},nextUntil:function(t,e,n){return L(t,"nextSibling",n)},prevUntil:function(t,e,n){return L(t,"previousSibling",n)},siblings:function(t){return N((t.parentNode||{}).firstChild,t)},children:function(t){return N(t.firstChild)},contents:function(t){return null!=t.contentDocument&&a(t.contentDocument)?t.contentDocument:(C(t,"template")&&(t=t.content||t),O.merge([],t.childNodes))}},(function(t,e){O.fn[t]=function(n,r){var i=O.map(this,e,n);return"Until"!==t.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=O.filter(r,i)),this.length>1&&(B[t]||O.uniqueSort(i),W.test(t)&&i.reverse()),this.pushStack(i)}}));var X=/[^\x20\t\r\n\f]+/g;function P(t){return t}function R(t){throw t}function j(t,e,n,r){var i;try{t&&m(i=t.promise)?i.call(t).done(e).fail(n):t&&m(i=t.then)?i.call(t,e,n):e.apply(void 0,[t].slice(r))}catch(t){n.apply(void 0,[t])}}O.Callbacks=function(t){t="string"==typeof t?function(t){var e={};return O.each(t.match(X)||[],(function(t,n){e[n]=!0})),e}(t):O.extend({},t);var e,n,r,i,o=[],a=[],c=-1,s=function(){for(i=i||t.once,r=e=!0;a.length;c=-1)for(n=a.shift();++c-1;)o.splice(n,1),n<=c&&c--})),this},has:function(t){return t?O.inArray(t,o)>-1:o.length>0},empty:function(){return o&&(o=[]),this},disable:function(){return i=a=[],o=n="",this},disabled:function(){return!o},lock:function(){return i=a=[],n||e||(o=n=""),this},locked:function(){return!!i},fireWith:function(t,n){return i||(n=[t,(n=n||[]).slice?n.slice():n],a.push(n),e||s()),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!r}};return l},O.extend({Deferred:function(t){var e=[["notify","progress",O.Callbacks("memory"),O.Callbacks("memory"),2],["resolve","done",O.Callbacks("once memory"),O.Callbacks("once memory"),0,"resolved"],["reject","fail",O.Callbacks("once memory"),O.Callbacks("once memory"),1,"rejected"]],n="pending",i={state:function(){return n},always:function(){return o.done(arguments).fail(arguments),this},catch:function(t){return i.then(null,t)},pipe:function(){var t=arguments;return O.Deferred((function(n){O.each(e,(function(e,r){var i=m(t[r[4]])&&t[r[4]];o[r[1]]((function(){var t=i&&i.apply(this,arguments);t&&m(t.promise)?t.promise().progress(n.notify).done(n.resolve).fail(n.reject):n[r[0]+"With"](this,i?[t]:arguments)}))})),t=null})).promise()},then:function(t,n,i){var o=0;function a(t,e,n,i){return function(){var c=this,s=arguments,l=function(){var r,l;if(!(t=o&&(n!==R&&(c=void 0,s=[r]),e.rejectWith(c,s))}};t?u():(O.Deferred.getStackHook&&(u.stackTrace=O.Deferred.getStackHook()),r.setTimeout(u))}}return O.Deferred((function(r){e[0][3].add(a(0,r,m(i)?i:P,r.notifyWith)),e[1][3].add(a(0,r,m(t)?t:P)),e[2][3].add(a(0,r,m(n)?n:R))})).promise()},promise:function(t){return null!=t?O.extend(t,i):i}},o={};return O.each(e,(function(t,r){var a=r[2],c=r[5];i[r[1]]=a.add,c&&a.add((function(){n=c}),e[3-t][2].disable,e[3-t][3].disable,e[0][2].lock,e[0][3].lock),a.add(r[3].fire),o[r[0]]=function(){return o[r[0]+"With"](this===o?void 0:this,arguments),this},o[r[0]+"With"]=a.fireWith})),i.promise(o),t&&t.call(o,o),o},when:function(t){var e=arguments.length,n=e,r=Array(n),i=c.call(arguments),o=O.Deferred(),a=function(t){return function(n){r[t]=this,i[t]=arguments.length>1?c.call(arguments):n,--e||o.resolveWith(r,i)}};if(e<=1&&(j(t,o.done(a(n)).resolve,o.reject,!e),"pending"===o.state()||m(i[n]&&i[n].then)))return o.then();for(;n--;)j(i[n],a(n),o.reject);return o.promise()}});var I=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;O.Deferred.exceptionHook=function(t,e){r.console&&r.console.warn&&t&&I.test(t.name)&&r.console.warn("jQuery.Deferred exception: "+t.message,t.stack,e)},O.readyException=function(t){r.setTimeout((function(){throw t}))};var F=O.Deferred();function H(){g.removeEventListener("DOMContentLoaded",H),r.removeEventListener("load",H),O.ready()}O.fn.ready=function(t){return F.then(t).catch((function(t){O.readyException(t)})),this},O.extend({isReady:!1,readyWait:1,ready:function(t){(!0===t?--O.readyWait:O.isReady)||(O.isReady=!0,!0!==t&&--O.readyWait>0||F.resolveWith(g,[O]))}}),O.ready.then=F.then,"complete"===g.readyState||"loading"!==g.readyState&&!g.documentElement.doScroll?r.setTimeout(O.ready):(g.addEventListener("DOMContentLoaded",H),r.addEventListener("load",H));var $=function(t,e,n,r,i,o,a){var c=0,s=t.length,l=null==n;if("object"===_(n))for(c in i=!0,n)$(t,e,c,n[c],!0,o,a);else if(void 0!==r&&(i=!0,m(r)||(a=!0),l&&(a?(e.call(t,r),e=null):(l=e,e=function(t,e,n){return l.call(O(t),n)})),e))for(;c1,null,!0)},removeData:function(t){return this.each((function(){Z.remove(this,t)}))}}),O.extend({queue:function(t,e,n){var r;if(t)return e=(e||"fx")+"queue",r=Q.get(t,e),n&&(!r||Array.isArray(n)?r=Q.access(t,e,O.makeArray(n)):r.push(n)),r||[]},dequeue:function(t,e){e=e||"fx";var n=O.queue(t,e),r=n.length,i=n.shift(),o=O._queueHooks(t,e);"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===e&&n.unshift("inprogress"),delete o.stop,i.call(t,(function(){O.dequeue(t,e)}),o)),!r&&o&&o.empty.fire()},_queueHooks:function(t,e){var n=e+"queueHooks";return Q.get(t,n)||Q.access(t,n,{empty:O.Callbacks("once memory").add((function(){Q.remove(t,[e+"queue",n])}))})}}),O.fn.extend({queue:function(t,e){var n=2;return"string"!=typeof t&&(e=t,t="fx",n--),arguments.length\x20\t\r\n\f]*)/i,vt=/^$|^module$|\/(?:java|ecma)script/i;ht=g.createDocumentFragment().appendChild(g.createElement("div")),(Mt=g.createElement("input")).setAttribute("type","radio"),Mt.setAttribute("checked","checked"),Mt.setAttribute("name","t"),ht.appendChild(Mt),b.checkClone=ht.cloneNode(!0).cloneNode(!0).lastChild.checked,ht.innerHTML="",b.noCloneChecked=!!ht.cloneNode(!0).lastChild.defaultValue,ht.innerHTML="",b.option=!!ht.lastChild;var gt={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function yt(t,e){var n;return n=void 0!==t.getElementsByTagName?t.getElementsByTagName(e||"*"):void 0!==t.querySelectorAll?t.querySelectorAll(e||"*"):[],void 0===e||e&&C(t,e)?O.merge([t],n):n}function At(t,e){for(var n=0,r=t.length;n",""]);var _t=/<|&#?\w+;/;function zt(t,e,n,r,i){for(var o,a,c,s,l,u,f=e.createDocumentFragment(),d=[],p=0,h=t.length;p-1)i&&i.push(o);else if(l=ct(o),a=yt(f.appendChild(o),"script"),l&&At(a),n)for(u=0;o=a[u++];)vt.test(o.type||"")&&n.push(o);return f}var Ot=/^([^.]*)(?:\.(.+)|)/;function xt(){return!0}function wt(){return!1}function Lt(t,e){return t===function(){try{return g.activeElement}catch(t){}}()==("focus"===e)}function Nt(t,e,n,r,i,o){var a,c;if("object"==typeof e){for(c in"string"!=typeof n&&(r=r||n,n=void 0),e)Nt(t,c,n,r,e[c],o);return t}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=wt;else if(!i)return t;return 1===o&&(a=i,i=function(t){return O().off(t),a.apply(this,arguments)},i.guid=a.guid||(a.guid=O.guid++)),t.each((function(){O.event.add(this,e,i,r,n)}))}function Tt(t,e,n){n?(Q.set(t,e,!1),O.event.add(t,e,{namespace:!1,handler:function(t){var r,i,o=Q.get(this,e);if(1&t.isTrigger&&this[e]){if(o.length)(O.event.special[e]||{}).delegateType&&t.stopPropagation();else if(o=c.call(arguments),Q.set(this,e,o),r=n(this,e),this[e](),o!==(i=Q.get(this,e))||r?Q.set(this,e,!1):i={},o!==i)return t.stopImmediatePropagation(),t.preventDefault(),i&&i.value}else o.length&&(Q.set(this,e,{value:O.event.trigger(O.extend(o[0],O.Event.prototype),o.slice(1),this)}),t.stopImmediatePropagation())}})):void 0===Q.get(t,e)&&O.event.add(t,e,xt)}O.event={global:{},add:function(t,e,n,r,i){var o,a,c,s,l,u,f,d,p,h,M,b=Q.get(t);if(J(t))for(n.handler&&(n=(o=n).handler,i=o.selector),i&&O.find.matchesSelector(at,i),n.guid||(n.guid=O.guid++),(s=b.events)||(s=b.events=Object.create(null)),(a=b.handle)||(a=b.handle=function(e){return void 0!==O&&O.event.triggered!==e.type?O.event.dispatch.apply(t,arguments):void 0}),l=(e=(e||"").match(X)||[""]).length;l--;)p=M=(c=Ot.exec(e[l])||[])[1],h=(c[2]||"").split(".").sort(),p&&(f=O.event.special[p]||{},p=(i?f.delegateType:f.bindType)||p,f=O.event.special[p]||{},u=O.extend({type:p,origType:M,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&O.expr.match.needsContext.test(i),namespace:h.join(".")},o),(d=s[p])||((d=s[p]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(t,r,h,a)||t.addEventListener&&t.addEventListener(p,a)),f.add&&(f.add.call(t,u),u.handler.guid||(u.handler.guid=n.guid)),i?d.splice(d.delegateCount++,0,u):d.push(u),O.event.global[p]=!0)},remove:function(t,e,n,r,i){var o,a,c,s,l,u,f,d,p,h,M,b=Q.hasData(t)&&Q.get(t);if(b&&(s=b.events)){for(l=(e=(e||"").match(X)||[""]).length;l--;)if(p=M=(c=Ot.exec(e[l])||[])[1],h=(c[2]||"").split(".").sort(),p){for(f=O.event.special[p]||{},d=s[p=(r?f.delegateType:f.bindType)||p]||[],c=c[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=d.length;o--;)u=d[o],!i&&M!==u.origType||n&&n.guid!==u.guid||c&&!c.test(u.namespace)||r&&r!==u.selector&&("**"!==r||!u.selector)||(d.splice(o,1),u.selector&&d.delegateCount--,f.remove&&f.remove.call(t,u));a&&!d.length&&(f.teardown&&!1!==f.teardown.call(t,h,b.handle)||O.removeEvent(t,p,b.handle),delete s[p])}else for(p in s)O.event.remove(t,p+e[l],n,r,!0);O.isEmptyObject(s)&&Q.remove(t,"handle events")}},dispatch:function(t){var e,n,r,i,o,a,c=new Array(arguments.length),s=O.event.fix(t),l=(Q.get(this,"events")||Object.create(null))[s.type]||[],u=O.event.special[s.type]||{};for(c[0]=s,e=1;e=1))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&("click"!==t.type||!0!==l.disabled)){for(o=[],a={},n=0;n-1:O.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&c.push({elem:l,handlers:o})}return l=this,s\s*$/g;function kt(t,e){return C(t,"table")&&C(11!==e.nodeType?e:e.firstChild,"tr")&&O(t).children("tbody")[0]||t}function Et(t){return t.type=(null!==t.getAttribute("type"))+"/"+t.type,t}function Wt(t){return"true/"===(t.type||"").slice(0,5)?t.type=t.type.slice(5):t.removeAttribute("type"),t}function Bt(t,e){var n,r,i,o,a,c;if(1===e.nodeType){if(Q.hasData(t)&&(c=Q.get(t).events))for(i in Q.remove(e,"handle events"),c)for(n=0,r=c[i].length;n1&&"string"==typeof h&&!b.checkClone&&qt.test(h))return t.each((function(i){var o=t.eq(i);M&&(e[0]=h.call(this,i,o.html())),Xt(o,e,n,r)}));if(d&&(o=(i=zt(e,t[0].ownerDocument,!1,t,r)).firstChild,1===i.childNodes.length&&(i=o),o||r)){for(c=(a=O.map(yt(i,"script"),Et)).length;f0&&At(a,!s&&yt(t,"script")),c},cleanData:function(t){for(var e,n,r,i=O.event.special,o=0;void 0!==(n=t[o]);o++)if(J(n)){if(e=n[Q.expando]){if(e.events)for(r in e.events)i[r]?O.event.remove(n,r):O.removeEvent(n,r,e.handle);n[Q.expando]=void 0}n[Z.expando]&&(n[Z.expando]=void 0)}}}),O.fn.extend({detach:function(t){return Pt(this,t,!0)},remove:function(t){return Pt(this,t)},text:function(t){return $(this,(function(t){return void 0===t?O.text(this):this.empty().each((function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=t)}))}),null,t,arguments.length)},append:function(){return Xt(this,arguments,(function(t){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||kt(this,t).appendChild(t)}))},prepend:function(){return Xt(this,arguments,(function(t){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var e=kt(this,t);e.insertBefore(t,e.firstChild)}}))},before:function(){return Xt(this,arguments,(function(t){this.parentNode&&this.parentNode.insertBefore(t,this)}))},after:function(){return Xt(this,arguments,(function(t){this.parentNode&&this.parentNode.insertBefore(t,this.nextSibling)}))},empty:function(){for(var t,e=0;null!=(t=this[e]);e++)1===t.nodeType&&(O.cleanData(yt(t,!1)),t.textContent="");return this},clone:function(t,e){return t=null!=t&&t,e=null==e?t:e,this.map((function(){return O.clone(this,t,e)}))},html:function(t){return $(this,(function(t){var e=this[0]||{},n=0,r=this.length;if(void 0===t&&1===e.nodeType)return e.innerHTML;if("string"==typeof t&&!Ct.test(t)&&!gt[(mt.exec(t)||["",""])[1].toLowerCase()]){t=O.htmlPrefilter(t);try{for(;n=0&&(s+=Math.max(0,Math.ceil(t["offset"+e[0].toUpperCase()+e.slice(1)]-o-s-c-.5))||0),s}function ne(t,e,n){var r=jt(t),i=(!b.boxSizingReliable()||n)&&"border-box"===O.css(t,"boxSizing",!1,r),o=i,a=Ht(t,e,r),c="offset"+e[0].toUpperCase()+e.slice(1);if(Rt.test(a)){if(!n)return a;a="auto"}return(!b.boxSizingReliable()&&i||!b.reliableTrDimensions()&&C(t,"tr")||"auto"===a||!parseFloat(a)&&"inline"===O.css(t,"display",!1,r))&&t.getClientRects().length&&(i="border-box"===O.css(t,"boxSizing",!1,r),(o=c in t)&&(a=t[c])),(a=parseFloat(a)||0)+ee(t,e,n||(i?"border":"content"),o,r,a)+"px"}function re(t,e,n,r,i){return new re.prototype.init(t,e,n,r,i)}O.extend({cssHooks:{opacity:{get:function(t,e){if(e){var n=Ht(t,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(t,e,n,r){if(t&&3!==t.nodeType&&8!==t.nodeType&&t.style){var i,o,a,c=G(e),s=Kt.test(e),l=t.style;if(s||(e=Gt(c)),a=O.cssHooks[e]||O.cssHooks[c],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(t,!1,r))?i:l[e];"string"===(o=typeof n)&&(i=it.exec(n))&&i[1]&&(n=ut(t,e,i),o="number"),null!=n&&n==n&&("number"!==o||s||(n+=i&&i[3]||(O.cssNumber[c]?"":"px")),b.clearCloneStyle||""!==n||0!==e.indexOf("background")||(l[e]="inherit"),a&&"set"in a&&void 0===(n=a.set(t,n,r))||(s?l.setProperty(e,n):l[e]=n))}},css:function(t,e,n,r){var i,o,a,c=G(e);return Kt.test(e)||(e=Gt(c)),(a=O.cssHooks[e]||O.cssHooks[c])&&"get"in a&&(i=a.get(t,!0,n)),void 0===i&&(i=Ht(t,e,r)),"normal"===i&&e in Zt&&(i=Zt[e]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),O.each(["height","width"],(function(t,e){O.cssHooks[e]={get:function(t,n,r){if(n)return!Jt.test(O.css(t,"display"))||t.getClientRects().length&&t.getBoundingClientRect().width?ne(t,e,r):It(t,Qt,(function(){return ne(t,e,r)}))},set:function(t,n,r){var i,o=jt(t),a=!b.scrollboxSize()&&"absolute"===o.position,c=(a||r)&&"border-box"===O.css(t,"boxSizing",!1,o),s=r?ee(t,e,r,c,o):0;return c&&a&&(s-=Math.ceil(t["offset"+e[0].toUpperCase()+e.slice(1)]-parseFloat(o[e])-ee(t,e,"border",!1,o)-.5)),s&&(i=it.exec(n))&&"px"!==(i[3]||"px")&&(t.style[e]=n,n=O.css(t,e)),te(0,n,s)}}})),O.cssHooks.marginLeft=$t(b.reliableMarginLeft,(function(t,e){if(e)return(parseFloat(Ht(t,"marginLeft"))||t.getBoundingClientRect().left-It(t,{marginLeft:0},(function(){return t.getBoundingClientRect().left})))+"px"})),O.each({margin:"",padding:"",border:"Width"},(function(t,e){O.cssHooks[t+e]={expand:function(n){for(var r=0,i={},o="string"==typeof n?n.split(" "):[n];r<4;r++)i[t+ot[r]+e]=o[r]||o[r-2]||o[0];return i}},"margin"!==t&&(O.cssHooks[t+e].set=te)})),O.fn.extend({css:function(t,e){return $(this,(function(t,e,n){var r,i,o={},a=0;if(Array.isArray(e)){for(r=jt(t),i=e.length;a1)}}),O.Tween=re,re.prototype={constructor:re,init:function(t,e,n,r,i,o){this.elem=t,this.prop=n,this.easing=i||O.easing._default,this.options=e,this.start=this.now=this.cur(),this.end=r,this.unit=o||(O.cssNumber[n]?"":"px")},cur:function(){var t=re.propHooks[this.prop];return t&&t.get?t.get(this):re.propHooks._default.get(this)},run:function(t){var e,n=re.propHooks[this.prop];return this.options.duration?this.pos=e=O.easing[this.easing](t,this.options.duration*t,0,1,this.options.duration):this.pos=e=t,this.now=(this.end-this.start)*e+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):re.propHooks._default.set(this),this}},re.prototype.init.prototype=re.prototype,re.propHooks={_default:{get:function(t){var e;return 1!==t.elem.nodeType||null!=t.elem[t.prop]&&null==t.elem.style[t.prop]?t.elem[t.prop]:(e=O.css(t.elem,t.prop,""))&&"auto"!==e?e:0},set:function(t){O.fx.step[t.prop]?O.fx.step[t.prop](t):1!==t.elem.nodeType||!O.cssHooks[t.prop]&&null==t.elem.style[Gt(t.prop)]?t.elem[t.prop]=t.now:O.style(t.elem,t.prop,t.now+t.unit)}}},re.propHooks.scrollTop=re.propHooks.scrollLeft={set:function(t){t.elem.nodeType&&t.elem.parentNode&&(t.elem[t.prop]=t.now)}},O.easing={linear:function(t){return t},swing:function(t){return.5-Math.cos(t*Math.PI)/2},_default:"swing"},O.fx=re.prototype.init,O.fx.step={};var ie,oe,ae=/^(?:toggle|show|hide)$/,ce=/queueHooks$/;function se(){oe&&(!1===g.hidden&&r.requestAnimationFrame?r.requestAnimationFrame(se):r.setTimeout(se,O.fx.interval),O.fx.tick())}function le(){return r.setTimeout((function(){ie=void 0})),ie=Date.now()}function ue(t,e){var n,r=0,i={height:t};for(e=e?1:0;r<4;r+=2-e)i["margin"+(n=ot[r])]=i["padding"+n]=t;return e&&(i.opacity=i.width=t),i}function fe(t,e,n){for(var r,i=(de.tweeners[e]||[]).concat(de.tweeners["*"]),o=0,a=i.length;o1)},removeAttr:function(t){return this.each((function(){O.removeAttr(this,t)}))}}),O.extend({attr:function(t,e,n){var r,i,o=t.nodeType;if(3!==o&&8!==o&&2!==o)return void 0===t.getAttribute?O.prop(t,e,n):(1===o&&O.isXMLDoc(t)||(i=O.attrHooks[e.toLowerCase()]||(O.expr.match.bool.test(e)?pe:void 0)),void 0!==n?null===n?void O.removeAttr(t,e):i&&"set"in i&&void 0!==(r=i.set(t,n,e))?r:(t.setAttribute(e,n+""),n):i&&"get"in i&&null!==(r=i.get(t,e))?r:null==(r=O.find.attr(t,e))?void 0:r)},attrHooks:{type:{set:function(t,e){if(!b.radioValue&&"radio"===e&&C(t,"input")){var n=t.value;return t.setAttribute("type",e),n&&(t.value=n),e}}}},removeAttr:function(t,e){var n,r=0,i=e&&e.match(X);if(i&&1===t.nodeType)for(;n=i[r++];)t.removeAttribute(n)}}),pe={set:function(t,e,n){return!1===e?O.removeAttr(t,n):t.setAttribute(n,n),n}},O.each(O.expr.match.bool.source.match(/\w+/g),(function(t,e){var n=he[e]||O.find.attr;he[e]=function(t,e,r){var i,o,a=e.toLowerCase();return r||(o=he[a],he[a]=i,i=null!=n(t,e,r)?a:null,he[a]=o),i}}));var Me=/^(?:input|select|textarea|button)$/i,be=/^(?:a|area)$/i;function me(t){return(t.match(X)||[]).join(" ")}function ve(t){return t.getAttribute&&t.getAttribute("class")||""}function ge(t){return Array.isArray(t)?t:"string"==typeof t&&t.match(X)||[]}O.fn.extend({prop:function(t,e){return $(this,O.prop,t,e,arguments.length>1)},removeProp:function(t){return this.each((function(){delete this[O.propFix[t]||t]}))}}),O.extend({prop:function(t,e,n){var r,i,o=t.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&O.isXMLDoc(t)||(e=O.propFix[e]||e,i=O.propHooks[e]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(t,n,e))?r:t[e]=n:i&&"get"in i&&null!==(r=i.get(t,e))?r:t[e]},propHooks:{tabIndex:{get:function(t){var e=O.find.attr(t,"tabindex");return e?parseInt(e,10):Me.test(t.nodeName)||be.test(t.nodeName)&&t.href?0:-1}}},propFix:{for:"htmlFor",class:"className"}}),b.optSelected||(O.propHooks.selected={get:function(t){var e=t.parentNode;return e&&e.parentNode&&e.parentNode.selectedIndex,null},set:function(t){var e=t.parentNode;e&&(e.selectedIndex,e.parentNode&&e.parentNode.selectedIndex)}}),O.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],(function(){O.propFix[this.toLowerCase()]=this})),O.fn.extend({addClass:function(t){var e,n,r,i,o,a,c,s=0;if(m(t))return this.each((function(e){O(this).addClass(t.call(this,e,ve(this)))}));if((e=ge(t)).length)for(;n=this[s++];)if(i=ve(n),r=1===n.nodeType&&" "+me(i)+" "){for(a=0;o=e[a++];)r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(c=me(r))&&n.setAttribute("class",c)}return this},removeClass:function(t){var e,n,r,i,o,a,c,s=0;if(m(t))return this.each((function(e){O(this).removeClass(t.call(this,e,ve(this)))}));if(!arguments.length)return this.attr("class","");if((e=ge(t)).length)for(;n=this[s++];)if(i=ve(n),r=1===n.nodeType&&" "+me(i)+" "){for(a=0;o=e[a++];)for(;r.indexOf(" "+o+" ")>-1;)r=r.replace(" "+o+" "," ");i!==(c=me(r))&&n.setAttribute("class",c)}return this},toggleClass:function(t,e){var n=typeof t,r="string"===n||Array.isArray(t);return"boolean"==typeof e&&r?e?this.addClass(t):this.removeClass(t):m(t)?this.each((function(n){O(this).toggleClass(t.call(this,n,ve(this),e),e)})):this.each((function(){var e,i,o,a;if(r)for(i=0,o=O(this),a=ge(t);e=a[i++];)o.hasClass(e)?o.removeClass(e):o.addClass(e);else void 0!==t&&"boolean"!==n||((e=ve(this))&&Q.set(this,"__className__",e),this.setAttribute&&this.setAttribute("class",e||!1===t?"":Q.get(this,"__className__")||""))}))},hasClass:function(t){var e,n,r=0;for(e=" "+t+" ";n=this[r++];)if(1===n.nodeType&&(" "+me(ve(n))+" ").indexOf(e)>-1)return!0;return!1}});var ye=/\r/g;O.fn.extend({val:function(t){var e,n,r,i=this[0];return arguments.length?(r=m(t),this.each((function(n){var i;1===this.nodeType&&(null==(i=r?t.call(this,n,O(this).val()):t)?i="":"number"==typeof i?i+="":Array.isArray(i)&&(i=O.map(i,(function(t){return null==t?"":t+""}))),(e=O.valHooks[this.type]||O.valHooks[this.nodeName.toLowerCase()])&&"set"in e&&void 0!==e.set(this,i,"value")||(this.value=i))}))):i?(e=O.valHooks[i.type]||O.valHooks[i.nodeName.toLowerCase()])&&"get"in e&&void 0!==(n=e.get(i,"value"))?n:"string"==typeof(n=i.value)?n.replace(ye,""):null==n?"":n:void 0}}),O.extend({valHooks:{option:{get:function(t){var e=O.find.attr(t,"value");return null!=e?e:me(O.text(t))}},select:{get:function(t){var e,n,r,i=t.options,o=t.selectedIndex,a="select-one"===t.type,c=a?null:[],s=a?o+1:i.length;for(r=o<0?s:a?o:0;r-1)&&(n=!0);return n||(t.selectedIndex=-1),o}}}}),O.each(["radio","checkbox"],(function(){O.valHooks[this]={set:function(t,e){if(Array.isArray(e))return t.checked=O.inArray(O(t).val(),e)>-1}},b.checkOn||(O.valHooks[this].get=function(t){return null===t.getAttribute("value")?"on":t.value})})),b.focusin="onfocusin"in r;var Ae=/^(?:focusinfocus|focusoutblur)$/,_e=function(t){t.stopPropagation()};O.extend(O.event,{trigger:function(t,e,n,i){var o,a,c,s,l,u,f,d,h=[n||g],M=p.call(t,"type")?t.type:t,b=p.call(t,"namespace")?t.namespace.split("."):[];if(a=d=c=n=n||g,3!==n.nodeType&&8!==n.nodeType&&!Ae.test(M+O.event.triggered)&&(M.indexOf(".")>-1&&(b=M.split("."),M=b.shift(),b.sort()),l=M.indexOf(":")<0&&"on"+M,(t=t[O.expando]?t:new O.Event(M,"object"==typeof t&&t)).isTrigger=i?2:3,t.namespace=b.join("."),t.rnamespace=t.namespace?new RegExp("(^|\\.)"+b.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,t.result=void 0,t.target||(t.target=n),e=null==e?[t]:O.makeArray(e,[t]),f=O.event.special[M]||{},i||!f.trigger||!1!==f.trigger.apply(n,e))){if(!i&&!f.noBubble&&!v(n)){for(s=f.delegateType||M,Ae.test(s+M)||(a=a.parentNode);a;a=a.parentNode)h.push(a),c=a;c===(n.ownerDocument||g)&&h.push(c.defaultView||c.parentWindow||r)}for(o=0;(a=h[o++])&&!t.isPropagationStopped();)d=a,t.type=o>1?s:f.bindType||M,(u=(Q.get(a,"events")||Object.create(null))[t.type]&&Q.get(a,"handle"))&&u.apply(a,e),(u=l&&a[l])&&u.apply&&J(a)&&(t.result=u.apply(a,e),!1===t.result&&t.preventDefault());return t.type=M,i||t.isDefaultPrevented()||f._default&&!1!==f._default.apply(h.pop(),e)||!J(n)||l&&m(n[M])&&!v(n)&&((c=n[l])&&(n[l]=null),O.event.triggered=M,t.isPropagationStopped()&&d.addEventListener(M,_e),n[M](),t.isPropagationStopped()&&d.removeEventListener(M,_e),O.event.triggered=void 0,c&&(n[l]=c)),t.result}},simulate:function(t,e,n){var r=O.extend(new O.Event,n,{type:t,isSimulated:!0});O.event.trigger(r,null,e)}}),O.fn.extend({trigger:function(t,e){return this.each((function(){O.event.trigger(t,e,this)}))},triggerHandler:function(t,e){var n=this[0];if(n)return O.event.trigger(t,e,n,!0)}}),b.focusin||O.each({focus:"focusin",blur:"focusout"},(function(t,e){var n=function(t){O.event.simulate(e,t.target,O.event.fix(t))};O.event.special[e]={setup:function(){var r=this.ownerDocument||this.document||this,i=Q.access(r,e);i||r.addEventListener(t,n,!0),Q.access(r,e,(i||0)+1)},teardown:function(){var r=this.ownerDocument||this.document||this,i=Q.access(r,e)-1;i?Q.access(r,e,i):(r.removeEventListener(t,n,!0),Q.remove(r,e))}}}));var ze=r.location,Oe={guid:Date.now()},xe=/\?/;O.parseXML=function(t){var e,n;if(!t||"string"!=typeof t)return null;try{e=(new r.DOMParser).parseFromString(t,"text/xml")}catch(t){}return n=e&&e.getElementsByTagName("parsererror")[0],e&&!n||O.error("Invalid XML: "+(n?O.map(n.childNodes,(function(t){return t.textContent})).join("\n"):t)),e};var we=/\[\]$/,Le=/\r?\n/g,Ne=/^(?:submit|button|image|reset|file)$/i,Te=/^(?:input|select|textarea|keygen)/i;function Ce(t,e,n,r){var i;if(Array.isArray(e))O.each(e,(function(e,i){n||we.test(t)?r(t,i):Ce(t+"["+("object"==typeof i&&null!=i?e:"")+"]",i,n,r)}));else if(n||"object"!==_(e))r(t,e);else for(i in e)Ce(t+"["+i+"]",e[i],n,r)}O.param=function(t,e){var n,r=[],i=function(t,e){var n=m(e)?e():e;r[r.length]=encodeURIComponent(t)+"="+encodeURIComponent(null==n?"":n)};if(null==t)return"";if(Array.isArray(t)||t.jquery&&!O.isPlainObject(t))O.each(t,(function(){i(this.name,this.value)}));else for(n in t)Ce(n,t[n],e,i);return r.join("&")},O.fn.extend({serialize:function(){return O.param(this.serializeArray())},serializeArray:function(){return this.map((function(){var t=O.prop(this,"elements");return t?O.makeArray(t):this})).filter((function(){var t=this.type;return this.name&&!O(this).is(":disabled")&&Te.test(this.nodeName)&&!Ne.test(t)&&(this.checked||!bt.test(t))})).map((function(t,e){var n=O(this).val();return null==n?null:Array.isArray(n)?O.map(n,(function(t){return{name:e.name,value:t.replace(Le,"\r\n")}})):{name:e.name,value:n.replace(Le,"\r\n")}})).get()}});var qe=/%20/g,Se=/#.*$/,ke=/([?&])_=[^&]*/,Ee=/^(.*?):[ \t]*([^\r\n]*)$/gm,We=/^(?:GET|HEAD)$/,Be=/^\/\//,De={},Xe={},Pe="*/".concat("*"),Re=g.createElement("a");function je(t){return function(e,n){"string"!=typeof e&&(n=e,e="*");var r,i=0,o=e.toLowerCase().match(X)||[];if(m(n))for(;r=o[i++];)"+"===r[0]?(r=r.slice(1)||"*",(t[r]=t[r]||[]).unshift(n)):(t[r]=t[r]||[]).push(n)}}function Ie(t,e,n,r){var i={},o=t===Xe;function a(c){var s;return i[c]=!0,O.each(t[c]||[],(function(t,c){var l=c(e,n,r);return"string"!=typeof l||o||i[l]?o?!(s=l):void 0:(e.dataTypes.unshift(l),a(l),!1)})),s}return a(e.dataTypes[0])||!i["*"]&&a("*")}function Fe(t,e){var n,r,i=O.ajaxSettings.flatOptions||{};for(n in e)void 0!==e[n]&&((i[n]?t:r||(r={}))[n]=e[n]);return r&&O.extend(!0,t,r),t}Re.href=ze.href,O.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:ze.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(ze.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Pe,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":O.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(t,e){return e?Fe(Fe(t,O.ajaxSettings),e):Fe(O.ajaxSettings,t)},ajaxPrefilter:je(De),ajaxTransport:je(Xe),ajax:function(t,e){"object"==typeof t&&(e=t,t=void 0),e=e||{};var n,i,o,a,c,s,l,u,f,d,p=O.ajaxSetup({},e),h=p.context||p,M=p.context&&(h.nodeType||h.jquery)?O(h):O.event,b=O.Deferred(),m=O.Callbacks("once memory"),v=p.statusCode||{},y={},A={},_="canceled",z={readyState:0,getResponseHeader:function(t){var e;if(l){if(!a)for(a={};e=Ee.exec(o);)a[e[1].toLowerCase()+" "]=(a[e[1].toLowerCase()+" "]||[]).concat(e[2]);e=a[t.toLowerCase()+" "]}return null==e?null:e.join(", ")},getAllResponseHeaders:function(){return l?o:null},setRequestHeader:function(t,e){return null==l&&(t=A[t.toLowerCase()]=A[t.toLowerCase()]||t,y[t]=e),this},overrideMimeType:function(t){return null==l&&(p.mimeType=t),this},statusCode:function(t){var e;if(t)if(l)z.always(t[z.status]);else for(e in t)v[e]=[v[e],t[e]];return this},abort:function(t){var e=t||_;return n&&n.abort(e),x(0,e),this}};if(b.promise(z),p.url=((t||p.url||ze.href)+"").replace(Be,ze.protocol+"//"),p.type=e.method||e.type||p.method||p.type,p.dataTypes=(p.dataType||"*").toLowerCase().match(X)||[""],null==p.crossDomain){s=g.createElement("a");try{s.href=p.url,s.href=s.href,p.crossDomain=Re.protocol+"//"+Re.host!=s.protocol+"//"+s.host}catch(t){p.crossDomain=!0}}if(p.data&&p.processData&&"string"!=typeof p.data&&(p.data=O.param(p.data,p.traditional)),Ie(De,p,e,z),l)return z;for(f in(u=O.event&&p.global)&&0==O.active++&&O.event.trigger("ajaxStart"),p.type=p.type.toUpperCase(),p.hasContent=!We.test(p.type),i=p.url.replace(Se,""),p.hasContent?p.data&&p.processData&&0===(p.contentType||"").indexOf("application/x-www-form-urlencoded")&&(p.data=p.data.replace(qe,"+")):(d=p.url.slice(i.length),p.data&&(p.processData||"string"==typeof p.data)&&(i+=(xe.test(i)?"&":"?")+p.data,delete p.data),!1===p.cache&&(i=i.replace(ke,"$1"),d=(xe.test(i)?"&":"?")+"_="+Oe.guid+++d),p.url=i+d),p.ifModified&&(O.lastModified[i]&&z.setRequestHeader("If-Modified-Since",O.lastModified[i]),O.etag[i]&&z.setRequestHeader("If-None-Match",O.etag[i])),(p.data&&p.hasContent&&!1!==p.contentType||e.contentType)&&z.setRequestHeader("Content-Type",p.contentType),z.setRequestHeader("Accept",p.dataTypes[0]&&p.accepts[p.dataTypes[0]]?p.accepts[p.dataTypes[0]]+("*"!==p.dataTypes[0]?", "+Pe+"; q=0.01":""):p.accepts["*"]),p.headers)z.setRequestHeader(f,p.headers[f]);if(p.beforeSend&&(!1===p.beforeSend.call(h,z,p)||l))return z.abort();if(_="abort",m.add(p.complete),z.done(p.success),z.fail(p.error),n=Ie(Xe,p,e,z)){if(z.readyState=1,u&&M.trigger("ajaxSend",[z,p]),l)return z;p.async&&p.timeout>0&&(c=r.setTimeout((function(){z.abort("timeout")}),p.timeout));try{l=!1,n.send(y,x)}catch(t){if(l)throw t;x(-1,t)}}else x(-1,"No Transport");function x(t,e,a,s){var f,d,g,y,A,_=e;l||(l=!0,c&&r.clearTimeout(c),n=void 0,o=s||"",z.readyState=t>0?4:0,f=t>=200&&t<300||304===t,a&&(y=function(t,e,n){for(var r,i,o,a,c=t.contents,s=t.dataTypes;"*"===s[0];)s.shift(),void 0===r&&(r=t.mimeType||e.getResponseHeader("Content-Type"));if(r)for(i in c)if(c[i]&&c[i].test(r)){s.unshift(i);break}if(s[0]in n)o=s[0];else{for(i in n){if(!s[0]||t.converters[i+" "+s[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==s[0]&&s.unshift(o),n[o]}(p,z,a)),!f&&O.inArray("script",p.dataTypes)>-1&&O.inArray("json",p.dataTypes)<0&&(p.converters["text script"]=function(){}),y=function(t,e,n,r){var i,o,a,c,s,l={},u=t.dataTypes.slice();if(u[1])for(a in t.converters)l[a.toLowerCase()]=t.converters[a];for(o=u.shift();o;)if(t.responseFields[o]&&(n[t.responseFields[o]]=e),!s&&r&&t.dataFilter&&(e=t.dataFilter(e,t.dataType)),s=o,o=u.shift())if("*"===o)o=s;else if("*"!==s&&s!==o){if(!(a=l[s+" "+o]||l["* "+o]))for(i in l)if((c=i.split(" "))[1]===o&&(a=l[s+" "+c[0]]||l["* "+c[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=c[0],u.unshift(c[1]));break}if(!0!==a)if(a&&t.throws)e=a(e);else try{e=a(e)}catch(t){return{state:"parsererror",error:a?t:"No conversion from "+s+" to "+o}}}return{state:"success",data:e}}(p,y,z,f),f?(p.ifModified&&((A=z.getResponseHeader("Last-Modified"))&&(O.lastModified[i]=A),(A=z.getResponseHeader("etag"))&&(O.etag[i]=A)),204===t||"HEAD"===p.type?_="nocontent":304===t?_="notmodified":(_=y.state,d=y.data,f=!(g=y.error))):(g=_,!t&&_||(_="error",t<0&&(t=0))),z.status=t,z.statusText=(e||_)+"",f?b.resolveWith(h,[d,_,z]):b.rejectWith(h,[z,_,g]),z.statusCode(v),v=void 0,u&&M.trigger(f?"ajaxSuccess":"ajaxError",[z,p,f?d:g]),m.fireWith(h,[z,_]),u&&(M.trigger("ajaxComplete",[z,p]),--O.active||O.event.trigger("ajaxStop")))}return z},getJSON:function(t,e,n){return O.get(t,e,n,"json")},getScript:function(t,e){return O.get(t,void 0,e,"script")}}),O.each(["get","post"],(function(t,e){O[e]=function(t,n,r,i){return m(n)&&(i=i||r,r=n,n=void 0),O.ajax(O.extend({url:t,type:e,dataType:i,data:n,success:r},O.isPlainObject(t)&&t))}})),O.ajaxPrefilter((function(t){var e;for(e in t.headers)"content-type"===e.toLowerCase()&&(t.contentType=t.headers[e]||"")})),O._evalUrl=function(t,e,n){return O.ajax({url:t,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(t){O.globalEval(t,e,n)}})},O.fn.extend({wrapAll:function(t){var e;return this[0]&&(m(t)&&(t=t.call(this[0])),e=O(t,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&e.insertBefore(this[0]),e.map((function(){for(var t=this;t.firstElementChild;)t=t.firstElementChild;return t})).append(this)),this},wrapInner:function(t){return m(t)?this.each((function(e){O(this).wrapInner(t.call(this,e))})):this.each((function(){var e=O(this),n=e.contents();n.length?n.wrapAll(t):e.append(t)}))},wrap:function(t){var e=m(t);return this.each((function(n){O(this).wrapAll(e?t.call(this,n):t)}))},unwrap:function(t){return this.parent(t).not("body").each((function(){O(this).replaceWith(this.childNodes)})),this}}),O.expr.pseudos.hidden=function(t){return!O.expr.pseudos.visible(t)},O.expr.pseudos.visible=function(t){return!!(t.offsetWidth||t.offsetHeight||t.getClientRects().length)},O.ajaxSettings.xhr=function(){try{return new r.XMLHttpRequest}catch(t){}};var He={0:200,1223:204},$e=O.ajaxSettings.xhr();b.cors=!!$e&&"withCredentials"in $e,b.ajax=$e=!!$e,O.ajaxTransport((function(t){var e,n;if(b.cors||$e&&!t.crossDomain)return{send:function(i,o){var a,c=t.xhr();if(c.open(t.type,t.url,t.async,t.username,t.password),t.xhrFields)for(a in t.xhrFields)c[a]=t.xhrFields[a];for(a in t.mimeType&&c.overrideMimeType&&c.overrideMimeType(t.mimeType),t.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest"),i)c.setRequestHeader(a,i[a]);e=function(t){return function(){e&&(e=n=c.onload=c.onerror=c.onabort=c.ontimeout=c.onreadystatechange=null,"abort"===t?c.abort():"error"===t?"number"!=typeof c.status?o(0,"error"):o(c.status,c.statusText):o(He[c.status]||c.status,c.statusText,"text"!==(c.responseType||"text")||"string"!=typeof c.responseText?{binary:c.response}:{text:c.responseText},c.getAllResponseHeaders()))}},c.onload=e(),n=c.onerror=c.ontimeout=e("error"),void 0!==c.onabort?c.onabort=n:c.onreadystatechange=function(){4===c.readyState&&r.setTimeout((function(){e&&n()}))},e=e("abort");try{c.send(t.hasContent&&t.data||null)}catch(t){if(e)throw t}},abort:function(){e&&e()}}})),O.ajaxPrefilter((function(t){t.crossDomain&&(t.contents.script=!1)})),O.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(t){return O.globalEval(t),t}}}),O.ajaxPrefilter("script",(function(t){void 0===t.cache&&(t.cache=!1),t.crossDomain&&(t.type="GET")})),O.ajaxTransport("script",(function(t){var e,n;if(t.crossDomain||t.scriptAttrs)return{send:function(r,i){e=O("