first commit

This commit is contained in:
2026-02-17 08:54:43 +00:00
commit 6ab40e6d65
662 changed files with 80994 additions and 0 deletions

18
.editorconfig Executable file
View File

@@ -0,0 +1,18 @@
root = true
[*]
charset = utf-8
end_of_line = lf
indent_size = 4
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
[*.md]
trim_trailing_whitespace = false
[*.{yml,yaml}]
indent_size = 2
[compose.yaml]
indent_size = 4

65
.env.example Executable file
View File

@@ -0,0 +1,65 @@
APP_NAME=Laravel
APP_ENV=local
APP_KEY=
APP_DEBUG=true
APP_URL=http://localhost
APP_LOCALE=en
APP_FALLBACK_LOCALE=en
APP_FAKER_LOCALE=en_US
APP_MAINTENANCE_DRIVER=file
# APP_MAINTENANCE_STORE=database
# PHP_CLI_SERVER_WORKERS=4
BCRYPT_ROUNDS=12
LOG_CHANNEL=stack
LOG_STACK=single
LOG_DEPRECATIONS_CHANNEL=null
LOG_LEVEL=debug
DB_CONNECTION=sqlite
# DB_HOST=127.0.0.1
# DB_PORT=3306
# DB_DATABASE=laravel
# DB_USERNAME=root
# DB_PASSWORD=
SESSION_DRIVER=database
SESSION_LIFETIME=120
SESSION_ENCRYPT=false
SESSION_PATH=/
SESSION_DOMAIN=null
BROADCAST_CONNECTION=log
FILESYSTEM_DISK=local
QUEUE_CONNECTION=database
CACHE_STORE=database
# CACHE_PREFIX=
MEMCACHED_HOST=127.0.0.1
REDIS_CLIENT=phpredis
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379
MAIL_MAILER=log
MAIL_SCHEME=null
MAIL_HOST=127.0.0.1
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_FROM_ADDRESS="hello@example.com"
MAIL_FROM_NAME="${APP_NAME}"
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_DEFAULT_REGION=us-east-1
AWS_BUCKET=
AWS_USE_PATH_STYLE_ENDPOINT=false
VITE_APP_NAME="${APP_NAME}"

11
.gitattributes vendored Executable file
View File

@@ -0,0 +1,11 @@
* text=auto eol=lf
*.blade.php diff=html
*.css diff=css
*.html diff=html
*.md diff=markdown
*.php diff=php
/.github export-ignore
CHANGELOG.md export-ignore
.styleci.yml export-ignore

24
.gitignore vendored Executable file
View File

@@ -0,0 +1,24 @@
*.log
.DS_Store
.env
.env.backup
.env.production
.phpactor.json
.phpunit.result.cache
/.fleet
/.idea
/.nova
/.phpunit.cache
/.vscode
/.zed
/auth.json
/node_modules
/public/build
/public/hot
/public/storage
/storage/*.key
/storage/pail
/vendor
Homestead.json
Homestead.yaml
Thumbs.db

59
README.md Executable file
View File

@@ -0,0 +1,59 @@
<p align="center"><a href="https://laravel.com" target="_blank"><img src="https://raw.githubusercontent.com/laravel/art/master/logo-lockup/5%20SVG/2%20CMYK/1%20Full%20Color/laravel-logolockup-cmyk-red.svg" width="400" alt="Laravel Logo"></a></p>
<p align="center">
<a href="https://github.com/laravel/framework/actions"><img src="https://github.com/laravel/framework/workflows/tests/badge.svg" alt="Build Status"></a>
<a href="https://packagist.org/packages/laravel/framework"><img src="https://img.shields.io/packagist/dt/laravel/framework" alt="Total Downloads"></a>
<a href="https://packagist.org/packages/laravel/framework"><img src="https://img.shields.io/packagist/v/laravel/framework" alt="Latest Stable Version"></a>
<a href="https://packagist.org/packages/laravel/framework"><img src="https://img.shields.io/packagist/l/laravel/framework" alt="License"></a>
</p>
## About Laravel
Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as:
- [Simple, fast routing engine](https://laravel.com/docs/routing).
- [Powerful dependency injection container](https://laravel.com/docs/container).
- Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage.
- Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent).
- Database agnostic [schema migrations](https://laravel.com/docs/migrations).
- [Robust background job processing](https://laravel.com/docs/queues).
- [Real-time event broadcasting](https://laravel.com/docs/broadcasting).
Laravel is accessible, powerful, and provides tools required for large, robust applications.
## Learning Laravel
Laravel has the most extensive and thorough [documentation](https://laravel.com/docs) and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework. You can also check out [Laravel Learn](https://laravel.com/learn), where you will be guided through building a modern Laravel application.
If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains thousands of video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library.
## Laravel Sponsors
We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the [Laravel Partners program](https://partners.laravel.com).
### Premium Partners
- **[Vehikl](https://vehikl.com)**
- **[Tighten Co.](https://tighten.co)**
- **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)**
- **[64 Robots](https://64robots.com)**
- **[Curotec](https://www.curotec.com/services/technologies/laravel)**
- **[DevSquad](https://devsquad.com/hire-laravel-developers)**
- **[Redberry](https://redberry.international/laravel-development)**
- **[Active Logic](https://activelogic.com)**
## Contributing
Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions).
## Code of Conduct
In order to ensure that the Laravel community is welcoming to all, please review and abide by the [Code of Conduct](https://laravel.com/docs/contributions#code-of-conduct).
## Security Vulnerabilities
If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [taylor@laravel.com](mailto:taylor@laravel.com). All security vulnerabilities will be promptly addressed.
## License
The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).

View File

@@ -0,0 +1,8 @@
<?php
namespace App\Http\Controllers;
abstract class Controller
{
//
}

48
app/Models/User.php Executable file
View File

@@ -0,0 +1,48 @@
<?php
namespace App\Models;
// use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
class User extends Authenticatable
{
/** @use HasFactory<\Database\Factories\UserFactory> */
use HasFactory, Notifiable;
/**
* The attributes that are mass assignable.
*
* @var list<string>
*/
protected $fillable = [
'name',
'email',
'password',
];
/**
* The attributes that should be hidden for serialization.
*
* @var list<string>
*/
protected $hidden = [
'password',
'remember_token',
];
/**
* Get the attributes that should be cast.
*
* @return array<string, string>
*/
protected function casts(): array
{
return [
'email_verified_at' => 'datetime',
'password' => 'hashed',
];
}
}

View File

@@ -0,0 +1,24 @@
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*/
public function register(): void
{
//
}
/**
* Bootstrap any application services.
*/
public function boot(): void
{
//
}
}

18
artisan Executable file
View File

@@ -0,0 +1,18 @@
#!/usr/bin/env php
<?php
use Illuminate\Foundation\Application;
use Symfony\Component\Console\Input\ArgvInput;
define('LARAVEL_START', microtime(true));
// Register the Composer autoloader...
require __DIR__.'/vendor/autoload.php';
// Bootstrap Laravel and handle the command...
/** @var Application $app */
$app = require_once __DIR__.'/bootstrap/app.php';
$status = $app->handleCommand(new ArgvInput);
exit($status);

18
bootstrap/app.php Executable file
View File

@@ -0,0 +1,18 @@
<?php
use Illuminate\Foundation\Application;
use Illuminate\Foundation\Configuration\Exceptions;
use Illuminate\Foundation\Configuration\Middleware;
return Application::configure(basePath: dirname(__DIR__))
->withRouting(
web: __DIR__.'/../routes/web.php',
commands: __DIR__.'/../routes/console.php',
health: '/up',
)
->withMiddleware(function (Middleware $middleware): void {
//
})
->withExceptions(function (Exceptions $exceptions): void {
//
})->create();

2
bootstrap/cache/.gitignore vendored Executable file
View File

@@ -0,0 +1,2 @@
*
!.gitignore

5
bootstrap/providers.php Executable file
View File

@@ -0,0 +1,5 @@
<?php
return [
App\Providers\AppServiceProvider::class,
];

86
composer.json Executable file
View File

@@ -0,0 +1,86 @@
{
"$schema": "https://getcomposer.org/schema.json",
"name": "laravel/laravel",
"type": "project",
"description": "The skeleton application for the Laravel framework.",
"keywords": ["laravel", "framework"],
"license": "MIT",
"require": {
"php": "^8.2",
"laravel/framework": "^12.0",
"laravel/tinker": "^2.10.1"
},
"require-dev": {
"fakerphp/faker": "^1.23",
"laravel/pail": "^1.2.2",
"laravel/pint": "^1.24",
"laravel/sail": "^1.41",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.6",
"phpunit/phpunit": "^11.5.3"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"setup": [
"composer install",
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
"@php artisan key:generate",
"@php artisan migrate --force",
"npm install",
"npm run build"
],
"dev": [
"Composer\\Config::disableProcessTimeout",
"npx concurrently -c \"#93c5fd,#c4b5fd,#fb7185,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1 --timeout=0\" \"php artisan pail --timeout=0\" \"npm run dev\" --names=server,queue,logs,vite --kill-others"
],
"test": [
"@php artisan config:clear --ansi",
"@php artisan test"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi",
"@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
"@php artisan migrate --graceful --ansi"
],
"pre-package-uninstall": [
"Illuminate\\Foundation\\ComposerScripts::prePackageUninstall"
]
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}

8398
composer.lock generated Executable file

File diff suppressed because it is too large Load Diff

126
config/app.php Executable file
View File

@@ -0,0 +1,126 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Application Name
|--------------------------------------------------------------------------
|
| This value is the name of your application, which will be used when the
| framework needs to place the application's name in a notification or
| other UI elements where an application name needs to be displayed.
|
*/
'name' => env('APP_NAME', 'Laravel'),
/*
|--------------------------------------------------------------------------
| Application Environment
|--------------------------------------------------------------------------
|
| This value determines the "environment" your application is currently
| running in. This may determine how you prefer to configure various
| services the application utilizes. Set this in your ".env" file.
|
*/
'env' => env('APP_ENV', 'production'),
/*
|--------------------------------------------------------------------------
| Application Debug Mode
|--------------------------------------------------------------------------
|
| When your application is in debug mode, detailed error messages with
| stack traces will be shown on every error that occurs within your
| application. If disabled, a simple generic error page is shown.
|
*/
'debug' => (bool) env('APP_DEBUG', false),
/*
|--------------------------------------------------------------------------
| Application URL
|--------------------------------------------------------------------------
|
| This URL is used by the console to properly generate URLs when using
| the Artisan command line tool. You should set this to the root of
| the application so that it's available within Artisan commands.
|
*/
'url' => env('APP_URL', 'http://localhost'),
/*
|--------------------------------------------------------------------------
| Application Timezone
|--------------------------------------------------------------------------
|
| Here you may specify the default timezone for your application, which
| will be used by the PHP date and date-time functions. The timezone
| is set to "UTC" by default as it is suitable for most use cases.
|
*/
'timezone' => 'UTC',
/*
|--------------------------------------------------------------------------
| Application Locale Configuration
|--------------------------------------------------------------------------
|
| The application locale determines the default locale that will be used
| by Laravel's translation / localization methods. This option can be
| set to any locale for which you plan to have translation strings.
|
*/
'locale' => env('APP_LOCALE', 'en'),
'fallback_locale' => env('APP_FALLBACK_LOCALE', 'en'),
'faker_locale' => env('APP_FAKER_LOCALE', 'en_US'),
/*
|--------------------------------------------------------------------------
| Encryption Key
|--------------------------------------------------------------------------
|
| This key is utilized by Laravel's encryption services and should be set
| to a random, 32 character string to ensure that all encrypted values
| are secure. You should do this prior to deploying the application.
|
*/
'cipher' => 'AES-256-CBC',
'key' => env('APP_KEY'),
'previous_keys' => [
...array_filter(
explode(',', (string) env('APP_PREVIOUS_KEYS', ''))
),
],
/*
|--------------------------------------------------------------------------
| Maintenance Mode Driver
|--------------------------------------------------------------------------
|
| These configuration options determine the driver used to determine and
| manage Laravel's "maintenance mode" status. The "cache" driver will
| allow maintenance mode to be controlled across multiple machines.
|
| Supported drivers: "file", "cache"
|
*/
'maintenance' => [
'driver' => env('APP_MAINTENANCE_DRIVER', 'file'),
'store' => env('APP_MAINTENANCE_STORE', 'database'),
],
];

115
config/auth.php Executable file
View File

@@ -0,0 +1,115 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Authentication Defaults
|--------------------------------------------------------------------------
|
| This option defines the default authentication "guard" and password
| reset "broker" for your application. You may change these values
| as required, but they're a perfect start for most applications.
|
*/
'defaults' => [
'guard' => env('AUTH_GUARD', 'web'),
'passwords' => env('AUTH_PASSWORD_BROKER', 'users'),
],
/*
|--------------------------------------------------------------------------
| Authentication Guards
|--------------------------------------------------------------------------
|
| Next, you may define every authentication guard for your application.
| Of course, a great default configuration has been defined for you
| which utilizes session storage plus the Eloquent user provider.
|
| All authentication guards have a user provider, which defines how the
| users are actually retrieved out of your database or other storage
| system used by the application. Typically, Eloquent is utilized.
|
| Supported: "session"
|
*/
'guards' => [
'web' => [
'driver' => 'session',
'provider' => 'users',
],
],
/*
|--------------------------------------------------------------------------
| User Providers
|--------------------------------------------------------------------------
|
| All authentication guards have a user provider, which defines how the
| users are actually retrieved out of your database or other storage
| system used by the application. Typically, Eloquent is utilized.
|
| If you have multiple user tables or models you may configure multiple
| providers to represent the model / table. These providers may then
| be assigned to any extra authentication guards you have defined.
|
| Supported: "database", "eloquent"
|
*/
'providers' => [
'users' => [
'driver' => 'eloquent',
'model' => env('AUTH_MODEL', App\Models\User::class),
],
// 'users' => [
// 'driver' => 'database',
// 'table' => 'users',
// ],
],
/*
|--------------------------------------------------------------------------
| Resetting Passwords
|--------------------------------------------------------------------------
|
| These configuration options specify the behavior of Laravel's password
| reset functionality, including the table utilized for token storage
| and the user provider that is invoked to actually retrieve users.
|
| The expiry time is the number of minutes that each reset token will be
| considered valid. This security feature keeps tokens short-lived so
| they have less time to be guessed. You may change this as needed.
|
| The throttle setting is the number of seconds a user must wait before
| generating more password reset tokens. This prevents the user from
| quickly generating a very large amount of password reset tokens.
|
*/
'passwords' => [
'users' => [
'provider' => 'users',
'table' => env('AUTH_PASSWORD_RESET_TOKEN_TABLE', 'password_reset_tokens'),
'expire' => 60,
'throttle' => 60,
],
],
/*
|--------------------------------------------------------------------------
| Password Confirmation Timeout
|--------------------------------------------------------------------------
|
| Here you may define the number of seconds before a password confirmation
| window expires and users are asked to re-enter their password via the
| confirmation screen. By default, the timeout lasts for three hours.
|
*/
'password_timeout' => env('AUTH_PASSWORD_TIMEOUT', 10800),
];

117
config/cache.php Executable file
View File

@@ -0,0 +1,117 @@
<?php
use Illuminate\Support\Str;
return [
/*
|--------------------------------------------------------------------------
| Default Cache Store
|--------------------------------------------------------------------------
|
| This option controls the default cache store that will be used by the
| framework. This connection is utilized if another isn't explicitly
| specified when running a cache operation inside the application.
|
*/
'default' => env('CACHE_STORE', 'database'),
/*
|--------------------------------------------------------------------------
| Cache Stores
|--------------------------------------------------------------------------
|
| Here you may define all of the cache "stores" for your application as
| well as their drivers. You may even define multiple stores for the
| same cache driver to group types of items stored in your caches.
|
| Supported drivers: "array", "database", "file", "memcached",
| "redis", "dynamodb", "octane",
| "failover", "null"
|
*/
'stores' => [
'array' => [
'driver' => 'array',
'serialize' => false,
],
'database' => [
'driver' => 'database',
'connection' => env('DB_CACHE_CONNECTION'),
'table' => env('DB_CACHE_TABLE', 'cache'),
'lock_connection' => env('DB_CACHE_LOCK_CONNECTION'),
'lock_table' => env('DB_CACHE_LOCK_TABLE'),
],
'file' => [
'driver' => 'file',
'path' => storage_path('framework/cache/data'),
'lock_path' => storage_path('framework/cache/data'),
],
'memcached' => [
'driver' => 'memcached',
'persistent_id' => env('MEMCACHED_PERSISTENT_ID'),
'sasl' => [
env('MEMCACHED_USERNAME'),
env('MEMCACHED_PASSWORD'),
],
'options' => [
// Memcached::OPT_CONNECT_TIMEOUT => 2000,
],
'servers' => [
[
'host' => env('MEMCACHED_HOST', '127.0.0.1'),
'port' => env('MEMCACHED_PORT', 11211),
'weight' => 100,
],
],
],
'redis' => [
'driver' => 'redis',
'connection' => env('REDIS_CACHE_CONNECTION', 'cache'),
'lock_connection' => env('REDIS_CACHE_LOCK_CONNECTION', 'default'),
],
'dynamodb' => [
'driver' => 'dynamodb',
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
'table' => env('DYNAMODB_CACHE_TABLE', 'cache'),
'endpoint' => env('DYNAMODB_ENDPOINT'),
],
'octane' => [
'driver' => 'octane',
],
'failover' => [
'driver' => 'failover',
'stores' => [
'database',
'array',
],
],
],
/*
|--------------------------------------------------------------------------
| Cache Key Prefix
|--------------------------------------------------------------------------
|
| When utilizing the APC, database, memcached, Redis, and DynamoDB cache
| stores, there might be other applications using the same cache. For
| that reason, you may prefix every cache key to avoid collisions.
|
*/
'prefix' => env('CACHE_PREFIX', Str::slug((string) env('APP_NAME', 'laravel')).'-cache-'),
];

183
config/database.php Executable file
View File

@@ -0,0 +1,183 @@
<?php
use Illuminate\Support\Str;
return [
/*
|--------------------------------------------------------------------------
| Default Database Connection Name
|--------------------------------------------------------------------------
|
| Here you may specify which of the database connections below you wish
| to use as your default connection for database operations. This is
| the connection which will be utilized unless another connection
| is explicitly specified when you execute a query / statement.
|
*/
'default' => env('DB_CONNECTION', 'sqlite'),
/*
|--------------------------------------------------------------------------
| Database Connections
|--------------------------------------------------------------------------
|
| Below are all of the database connections defined for your application.
| An example configuration is provided for each database system which
| is supported by Laravel. You're free to add / remove connections.
|
*/
'connections' => [
'sqlite' => [
'driver' => 'sqlite',
'url' => env('DB_URL'),
'database' => env('DB_DATABASE', database_path('database.sqlite')),
'prefix' => '',
'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true),
'busy_timeout' => null,
'journal_mode' => null,
'synchronous' => null,
'transaction_mode' => 'DEFERRED',
],
'mysql' => [
'driver' => 'mysql',
'url' => env('DB_URL'),
'host' => env('DB_HOST', '127.0.0.1'),
'port' => env('DB_PORT', '3306'),
'database' => env('DB_DATABASE', 'laravel'),
'username' => env('DB_USERNAME', 'root'),
'password' => env('DB_PASSWORD', ''),
'unix_socket' => env('DB_SOCKET', ''),
'charset' => env('DB_CHARSET', 'utf8mb4'),
'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'),
'prefix' => '',
'prefix_indexes' => true,
'strict' => true,
'engine' => null,
'options' => extension_loaded('pdo_mysql') ? array_filter([
(PHP_VERSION_ID >= 80500 ? \Pdo\Mysql::ATTR_SSL_CA : \PDO::MYSQL_ATTR_SSL_CA) => env('MYSQL_ATTR_SSL_CA'),
]) : [],
],
'mariadb' => [
'driver' => 'mariadb',
'url' => env('DB_URL'),
'host' => env('DB_HOST', '127.0.0.1'),
'port' => env('DB_PORT', '3306'),
'database' => env('DB_DATABASE', 'laravel'),
'username' => env('DB_USERNAME', 'root'),
'password' => env('DB_PASSWORD', ''),
'unix_socket' => env('DB_SOCKET', ''),
'charset' => env('DB_CHARSET', 'utf8mb4'),
'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'),
'prefix' => '',
'prefix_indexes' => true,
'strict' => true,
'engine' => null,
'options' => extension_loaded('pdo_mysql') ? array_filter([
(PHP_VERSION_ID >= 80500 ? \Pdo\Mysql::ATTR_SSL_CA : \PDO::MYSQL_ATTR_SSL_CA) => env('MYSQL_ATTR_SSL_CA'),
]) : [],
],
'pgsql' => [
'driver' => 'pgsql',
'url' => env('DB_URL'),
'host' => env('DB_HOST', '127.0.0.1'),
'port' => env('DB_PORT', '5432'),
'database' => env('DB_DATABASE', 'laravel'),
'username' => env('DB_USERNAME', 'root'),
'password' => env('DB_PASSWORD', ''),
'charset' => env('DB_CHARSET', 'utf8'),
'prefix' => '',
'prefix_indexes' => true,
'search_path' => 'public',
'sslmode' => env('DB_SSLMODE', 'prefer'),
],
'sqlsrv' => [
'driver' => 'sqlsrv',
'url' => env('DB_URL'),
'host' => env('DB_HOST', 'localhost'),
'port' => env('DB_PORT', '1433'),
'database' => env('DB_DATABASE', 'laravel'),
'username' => env('DB_USERNAME', 'root'),
'password' => env('DB_PASSWORD', ''),
'charset' => env('DB_CHARSET', 'utf8'),
'prefix' => '',
'prefix_indexes' => true,
// 'encrypt' => env('DB_ENCRYPT', 'yes'),
// 'trust_server_certificate' => env('DB_TRUST_SERVER_CERTIFICATE', 'false'),
],
],
/*
|--------------------------------------------------------------------------
| Migration Repository Table
|--------------------------------------------------------------------------
|
| This table keeps track of all the migrations that have already run for
| your application. Using this information, we can determine which of
| the migrations on disk haven't actually been run on the database.
|
*/
'migrations' => [
'table' => 'migrations',
'update_date_on_publish' => true,
],
/*
|--------------------------------------------------------------------------
| Redis Databases
|--------------------------------------------------------------------------
|
| Redis is an open source, fast, and advanced key-value store that also
| provides a richer body of commands than a typical key-value system
| such as Memcached. You may define your connection settings here.
|
*/
'redis' => [
'client' => env('REDIS_CLIENT', 'phpredis'),
'options' => [
'cluster' => env('REDIS_CLUSTER', 'redis'),
'prefix' => env('REDIS_PREFIX', Str::slug((string) env('APP_NAME', 'laravel')).'-database-'),
'persistent' => env('REDIS_PERSISTENT', false),
],
'default' => [
'url' => env('REDIS_URL'),
'host' => env('REDIS_HOST', '127.0.0.1'),
'username' => env('REDIS_USERNAME'),
'password' => env('REDIS_PASSWORD'),
'port' => env('REDIS_PORT', '6379'),
'database' => env('REDIS_DB', '0'),
'max_retries' => env('REDIS_MAX_RETRIES', 3),
'backoff_algorithm' => env('REDIS_BACKOFF_ALGORITHM', 'decorrelated_jitter'),
'backoff_base' => env('REDIS_BACKOFF_BASE', 100),
'backoff_cap' => env('REDIS_BACKOFF_CAP', 1000),
],
'cache' => [
'url' => env('REDIS_URL'),
'host' => env('REDIS_HOST', '127.0.0.1'),
'username' => env('REDIS_USERNAME'),
'password' => env('REDIS_PASSWORD'),
'port' => env('REDIS_PORT', '6379'),
'database' => env('REDIS_CACHE_DB', '1'),
'max_retries' => env('REDIS_MAX_RETRIES', 3),
'backoff_algorithm' => env('REDIS_BACKOFF_ALGORITHM', 'decorrelated_jitter'),
'backoff_base' => env('REDIS_BACKOFF_BASE', 100),
'backoff_cap' => env('REDIS_BACKOFF_CAP', 1000),
],
],
];

80
config/filesystems.php Executable file
View File

@@ -0,0 +1,80 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Default Filesystem Disk
|--------------------------------------------------------------------------
|
| Here you may specify the default filesystem disk that should be used
| by the framework. The "local" disk, as well as a variety of cloud
| based disks are available to your application for file storage.
|
*/
'default' => env('FILESYSTEM_DISK', 'local'),
/*
|--------------------------------------------------------------------------
| Filesystem Disks
|--------------------------------------------------------------------------
|
| Below you may configure as many filesystem disks as necessary, and you
| may even configure multiple disks for the same driver. Examples for
| most supported storage drivers are configured here for reference.
|
| Supported drivers: "local", "ftp", "sftp", "s3"
|
*/
'disks' => [
'local' => [
'driver' => 'local',
'root' => storage_path('app/private'),
'serve' => true,
'throw' => false,
'report' => false,
],
'public' => [
'driver' => 'local',
'root' => storage_path('app/public'),
'url' => rtrim(env('APP_URL', 'http://localhost'), '/').'/storage',
'visibility' => 'public',
'throw' => false,
'report' => false,
],
's3' => [
'driver' => 's3',
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'region' => env('AWS_DEFAULT_REGION'),
'bucket' => env('AWS_BUCKET'),
'url' => env('AWS_URL'),
'endpoint' => env('AWS_ENDPOINT'),
'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false),
'throw' => false,
'report' => false,
],
],
/*
|--------------------------------------------------------------------------
| Symbolic Links
|--------------------------------------------------------------------------
|
| Here you may configure the symbolic links that will be created when the
| `storage:link` Artisan command is executed. The array keys should be
| the locations of the links and the values should be their targets.
|
*/
'links' => [
public_path('storage') => storage_path('app/public'),
],
];

132
config/logging.php Executable file
View File

@@ -0,0 +1,132 @@
<?php
use Monolog\Handler\NullHandler;
use Monolog\Handler\StreamHandler;
use Monolog\Handler\SyslogUdpHandler;
use Monolog\Processor\PsrLogMessageProcessor;
return [
/*
|--------------------------------------------------------------------------
| Default Log Channel
|--------------------------------------------------------------------------
|
| This option defines the default log channel that is utilized to write
| messages to your logs. The value provided here should match one of
| the channels present in the list of "channels" configured below.
|
*/
'default' => env('LOG_CHANNEL', 'stack'),
/*
|--------------------------------------------------------------------------
| Deprecations Log Channel
|--------------------------------------------------------------------------
|
| This option controls the log channel that should be used to log warnings
| regarding deprecated PHP and library features. This allows you to get
| your application ready for upcoming major versions of dependencies.
|
*/
'deprecations' => [
'channel' => env('LOG_DEPRECATIONS_CHANNEL', 'null'),
'trace' => env('LOG_DEPRECATIONS_TRACE', false),
],
/*
|--------------------------------------------------------------------------
| Log Channels
|--------------------------------------------------------------------------
|
| Here you may configure the log channels for your application. Laravel
| utilizes the Monolog PHP logging library, which includes a variety
| of powerful log handlers and formatters that you're free to use.
|
| Available drivers: "single", "daily", "slack", "syslog",
| "errorlog", "monolog", "custom", "stack"
|
*/
'channels' => [
'stack' => [
'driver' => 'stack',
'channels' => explode(',', (string) env('LOG_STACK', 'single')),
'ignore_exceptions' => false,
],
'single' => [
'driver' => 'single',
'path' => storage_path('logs/laravel.log'),
'level' => env('LOG_LEVEL', 'debug'),
'replace_placeholders' => true,
],
'daily' => [
'driver' => 'daily',
'path' => storage_path('logs/laravel.log'),
'level' => env('LOG_LEVEL', 'debug'),
'days' => env('LOG_DAILY_DAYS', 14),
'replace_placeholders' => true,
],
'slack' => [
'driver' => 'slack',
'url' => env('LOG_SLACK_WEBHOOK_URL'),
'username' => env('LOG_SLACK_USERNAME', 'Laravel Log'),
'emoji' => env('LOG_SLACK_EMOJI', ':boom:'),
'level' => env('LOG_LEVEL', 'critical'),
'replace_placeholders' => true,
],
'papertrail' => [
'driver' => 'monolog',
'level' => env('LOG_LEVEL', 'debug'),
'handler' => env('LOG_PAPERTRAIL_HANDLER', SyslogUdpHandler::class),
'handler_with' => [
'host' => env('PAPERTRAIL_URL'),
'port' => env('PAPERTRAIL_PORT'),
'connectionString' => 'tls://'.env('PAPERTRAIL_URL').':'.env('PAPERTRAIL_PORT'),
],
'processors' => [PsrLogMessageProcessor::class],
],
'stderr' => [
'driver' => 'monolog',
'level' => env('LOG_LEVEL', 'debug'),
'handler' => StreamHandler::class,
'handler_with' => [
'stream' => 'php://stderr',
],
'formatter' => env('LOG_STDERR_FORMATTER'),
'processors' => [PsrLogMessageProcessor::class],
],
'syslog' => [
'driver' => 'syslog',
'level' => env('LOG_LEVEL', 'debug'),
'facility' => env('LOG_SYSLOG_FACILITY', LOG_USER),
'replace_placeholders' => true,
],
'errorlog' => [
'driver' => 'errorlog',
'level' => env('LOG_LEVEL', 'debug'),
'replace_placeholders' => true,
],
'null' => [
'driver' => 'monolog',
'handler' => NullHandler::class,
],
'emergency' => [
'path' => storage_path('logs/laravel.log'),
],
],
];

118
config/mail.php Executable file
View File

@@ -0,0 +1,118 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Default Mailer
|--------------------------------------------------------------------------
|
| This option controls the default mailer that is used to send all email
| messages unless another mailer is explicitly specified when sending
| the message. All additional mailers can be configured within the
| "mailers" array. Examples of each type of mailer are provided.
|
*/
'default' => env('MAIL_MAILER', 'log'),
/*
|--------------------------------------------------------------------------
| Mailer Configurations
|--------------------------------------------------------------------------
|
| Here you may configure all of the mailers used by your application plus
| their respective settings. Several examples have been configured for
| you and you are free to add your own as your application requires.
|
| Laravel supports a variety of mail "transport" drivers that can be used
| when delivering an email. You may specify which one you're using for
| your mailers below. You may also add additional mailers if needed.
|
| Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2",
| "postmark", "resend", "log", "array",
| "failover", "roundrobin"
|
*/
'mailers' => [
'smtp' => [
'transport' => 'smtp',
'scheme' => env('MAIL_SCHEME'),
'url' => env('MAIL_URL'),
'host' => env('MAIL_HOST', '127.0.0.1'),
'port' => env('MAIL_PORT', 2525),
'username' => env('MAIL_USERNAME'),
'password' => env('MAIL_PASSWORD'),
'timeout' => null,
'local_domain' => env('MAIL_EHLO_DOMAIN', parse_url((string) env('APP_URL', 'http://localhost'), PHP_URL_HOST)),
],
'ses' => [
'transport' => 'ses',
],
'postmark' => [
'transport' => 'postmark',
// 'message_stream_id' => env('POSTMARK_MESSAGE_STREAM_ID'),
// 'client' => [
// 'timeout' => 5,
// ],
],
'resend' => [
'transport' => 'resend',
],
'sendmail' => [
'transport' => 'sendmail',
'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -bs -i'),
],
'log' => [
'transport' => 'log',
'channel' => env('MAIL_LOG_CHANNEL'),
],
'array' => [
'transport' => 'array',
],
'failover' => [
'transport' => 'failover',
'mailers' => [
'smtp',
'log',
],
'retry_after' => 60,
],
'roundrobin' => [
'transport' => 'roundrobin',
'mailers' => [
'ses',
'postmark',
],
'retry_after' => 60,
],
],
/*
|--------------------------------------------------------------------------
| Global "From" Address
|--------------------------------------------------------------------------
|
| You may wish for all emails sent by your application to be sent from
| the same address. Here you may specify a name and address that is
| used globally for all emails that are sent by your application.
|
*/
'from' => [
'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
'name' => env('MAIL_FROM_NAME', 'Example'),
],
];

129
config/queue.php Executable file
View File

@@ -0,0 +1,129 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Default Queue Connection Name
|--------------------------------------------------------------------------
|
| Laravel's queue supports a variety of backends via a single, unified
| API, giving you convenient access to each backend using identical
| syntax for each. The default queue connection is defined below.
|
*/
'default' => env('QUEUE_CONNECTION', 'database'),
/*
|--------------------------------------------------------------------------
| Queue Connections
|--------------------------------------------------------------------------
|
| Here you may configure the connection options for every queue backend
| used by your application. An example configuration is provided for
| each backend supported by Laravel. You're also free to add more.
|
| Drivers: "sync", "database", "beanstalkd", "sqs", "redis",
| "deferred", "background", "failover", "null"
|
*/
'connections' => [
'sync' => [
'driver' => 'sync',
],
'database' => [
'driver' => 'database',
'connection' => env('DB_QUEUE_CONNECTION'),
'table' => env('DB_QUEUE_TABLE', 'jobs'),
'queue' => env('DB_QUEUE', 'default'),
'retry_after' => (int) env('DB_QUEUE_RETRY_AFTER', 90),
'after_commit' => false,
],
'beanstalkd' => [
'driver' => 'beanstalkd',
'host' => env('BEANSTALKD_QUEUE_HOST', 'localhost'),
'queue' => env('BEANSTALKD_QUEUE', 'default'),
'retry_after' => (int) env('BEANSTALKD_QUEUE_RETRY_AFTER', 90),
'block_for' => 0,
'after_commit' => false,
],
'sqs' => [
'driver' => 'sqs',
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'),
'queue' => env('SQS_QUEUE', 'default'),
'suffix' => env('SQS_SUFFIX'),
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
'after_commit' => false,
],
'redis' => [
'driver' => 'redis',
'connection' => env('REDIS_QUEUE_CONNECTION', 'default'),
'queue' => env('REDIS_QUEUE', 'default'),
'retry_after' => (int) env('REDIS_QUEUE_RETRY_AFTER', 90),
'block_for' => null,
'after_commit' => false,
],
'deferred' => [
'driver' => 'deferred',
],
'background' => [
'driver' => 'background',
],
'failover' => [
'driver' => 'failover',
'connections' => [
'database',
'deferred',
],
],
],
/*
|--------------------------------------------------------------------------
| Job Batching
|--------------------------------------------------------------------------
|
| The following options configure the database and table that store job
| batching information. These options can be updated to any database
| connection and table which has been defined by your application.
|
*/
'batching' => [
'database' => env('DB_CONNECTION', 'sqlite'),
'table' => 'job_batches',
],
/*
|--------------------------------------------------------------------------
| Failed Queue Jobs
|--------------------------------------------------------------------------
|
| These options configure the behavior of failed queue job logging so you
| can control how and where failed jobs are stored. Laravel ships with
| support for storing failed jobs in a simple file or in a database.
|
| Supported drivers: "database-uuids", "dynamodb", "file", "null"
|
*/
'failed' => [
'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'),
'database' => env('DB_CONNECTION', 'sqlite'),
'table' => 'failed_jobs',
],
];

38
config/services.php Executable file
View File

@@ -0,0 +1,38 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Third Party Services
|--------------------------------------------------------------------------
|
| This file is for storing the credentials for third party services such
| as Mailgun, Postmark, AWS and more. This file provides the de facto
| location for this type of information, allowing packages to have
| a conventional file to locate the various service credentials.
|
*/
'postmark' => [
'key' => env('POSTMARK_API_KEY'),
],
'resend' => [
'key' => env('RESEND_API_KEY'),
],
'ses' => [
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
],
'slack' => [
'notifications' => [
'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'),
'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'),
],
],
];

217
config/session.php Executable file
View File

@@ -0,0 +1,217 @@
<?php
use Illuminate\Support\Str;
return [
/*
|--------------------------------------------------------------------------
| Default Session Driver
|--------------------------------------------------------------------------
|
| This option determines the default session driver that is utilized for
| incoming requests. Laravel supports a variety of storage options to
| persist session data. Database storage is a great default choice.
|
| Supported: "file", "cookie", "database", "memcached",
| "redis", "dynamodb", "array"
|
*/
'driver' => env('SESSION_DRIVER', 'database'),
/*
|--------------------------------------------------------------------------
| Session Lifetime
|--------------------------------------------------------------------------
|
| Here you may specify the number of minutes that you wish the session
| to be allowed to remain idle before it expires. If you want them
| to expire immediately when the browser is closed then you may
| indicate that via the expire_on_close configuration option.
|
*/
'lifetime' => (int) env('SESSION_LIFETIME', 120),
'expire_on_close' => env('SESSION_EXPIRE_ON_CLOSE', false),
/*
|--------------------------------------------------------------------------
| Session Encryption
|--------------------------------------------------------------------------
|
| This option allows you to easily specify that all of your session data
| should be encrypted before it's stored. All encryption is performed
| automatically by Laravel and you may use the session like normal.
|
*/
'encrypt' => env('SESSION_ENCRYPT', false),
/*
|--------------------------------------------------------------------------
| Session File Location
|--------------------------------------------------------------------------
|
| When utilizing the "file" session driver, the session files are placed
| on disk. The default storage location is defined here; however, you
| are free to provide another location where they should be stored.
|
*/
'files' => storage_path('framework/sessions'),
/*
|--------------------------------------------------------------------------
| Session Database Connection
|--------------------------------------------------------------------------
|
| When using the "database" or "redis" session drivers, you may specify a
| connection that should be used to manage these sessions. This should
| correspond to a connection in your database configuration options.
|
*/
'connection' => env('SESSION_CONNECTION'),
/*
|--------------------------------------------------------------------------
| Session Database Table
|--------------------------------------------------------------------------
|
| When using the "database" session driver, you may specify the table to
| be used to store sessions. Of course, a sensible default is defined
| for you; however, you're welcome to change this to another table.
|
*/
'table' => env('SESSION_TABLE', 'sessions'),
/*
|--------------------------------------------------------------------------
| Session Cache Store
|--------------------------------------------------------------------------
|
| When using one of the framework's cache driven session backends, you may
| define the cache store which should be used to store the session data
| between requests. This must match one of your defined cache stores.
|
| Affects: "dynamodb", "memcached", "redis"
|
*/
'store' => env('SESSION_STORE'),
/*
|--------------------------------------------------------------------------
| Session Sweeping Lottery
|--------------------------------------------------------------------------
|
| Some session drivers must manually sweep their storage location to get
| rid of old sessions from storage. Here are the chances that it will
| happen on a given request. By default, the odds are 2 out of 100.
|
*/
'lottery' => [2, 100],
/*
|--------------------------------------------------------------------------
| Session Cookie Name
|--------------------------------------------------------------------------
|
| Here you may change the name of the session cookie that is created by
| the framework. Typically, you should not need to change this value
| since doing so does not grant a meaningful security improvement.
|
*/
'cookie' => env(
'SESSION_COOKIE',
Str::slug((string) env('APP_NAME', 'laravel')).'-session'
),
/*
|--------------------------------------------------------------------------
| Session Cookie Path
|--------------------------------------------------------------------------
|
| The session cookie path determines the path for which the cookie will
| be regarded as available. Typically, this will be the root path of
| your application, but you're free to change this when necessary.
|
*/
'path' => env('SESSION_PATH', '/'),
/*
|--------------------------------------------------------------------------
| Session Cookie Domain
|--------------------------------------------------------------------------
|
| This value determines the domain and subdomains the session cookie is
| available to. By default, the cookie will be available to the root
| domain without subdomains. Typically, this shouldn't be changed.
|
*/
'domain' => env('SESSION_DOMAIN'),
/*
|--------------------------------------------------------------------------
| HTTPS Only Cookies
|--------------------------------------------------------------------------
|
| By setting this option to true, session cookies will only be sent back
| to the server if the browser has a HTTPS connection. This will keep
| the cookie from being sent to you when it can't be done securely.
|
*/
'secure' => env('SESSION_SECURE_COOKIE'),
/*
|--------------------------------------------------------------------------
| HTTP Access Only
|--------------------------------------------------------------------------
|
| Setting this value to true will prevent JavaScript from accessing the
| value of the cookie and the cookie will only be accessible through
| the HTTP protocol. It's unlikely you should disable this option.
|
*/
'http_only' => env('SESSION_HTTP_ONLY', true),
/*
|--------------------------------------------------------------------------
| Same-Site Cookies
|--------------------------------------------------------------------------
|
| This option determines how your cookies behave when cross-site requests
| take place, and can be used to mitigate CSRF attacks. By default, we
| will set this value to "lax" to permit secure cross-site requests.
|
| See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#samesitesamesite-value
|
| Supported: "lax", "strict", "none", null
|
*/
'same_site' => env('SESSION_SAME_SITE', 'lax'),
/*
|--------------------------------------------------------------------------
| Partitioned Cookies
|--------------------------------------------------------------------------
|
| Setting this value to true will tie the cookie to the top-level site for
| a cross-site context. Partitioned cookies are accepted by the browser
| when flagged "secure" and the Same-Site attribute is set to "none".
|
*/
'partitioned' => env('SESSION_PARTITIONED_COOKIE', false),
];

1
database/.gitignore vendored Executable file
View File

@@ -0,0 +1 @@
*.sqlite*

View File

@@ -0,0 +1,44 @@
<?php
namespace Database\Factories;
use Illuminate\Database\Eloquent\Factories\Factory;
use Illuminate\Support\Facades\Hash;
use Illuminate\Support\Str;
/**
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\User>
*/
class UserFactory extends Factory
{
/**
* The current password being used by the factory.
*/
protected static ?string $password;
/**
* Define the model's default state.
*
* @return array<string, mixed>
*/
public function definition(): array
{
return [
'name' => fake()->name(),
'email' => fake()->unique()->safeEmail(),
'email_verified_at' => now(),
'password' => static::$password ??= Hash::make('password'),
'remember_token' => Str::random(10),
];
}
/**
* Indicate that the model's email address should be unverified.
*/
public function unverified(): static
{
return $this->state(fn (array $attributes) => [
'email_verified_at' => null,
]);
}
}

View File

@@ -0,0 +1,49 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('users', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('email')->unique();
$table->timestamp('email_verified_at')->nullable();
$table->string('password');
$table->rememberToken();
$table->timestamps();
});
Schema::create('password_reset_tokens', function (Blueprint $table) {
$table->string('email')->primary();
$table->string('token');
$table->timestamp('created_at')->nullable();
});
Schema::create('sessions', function (Blueprint $table) {
$table->string('id')->primary();
$table->foreignId('user_id')->nullable()->index();
$table->string('ip_address', 45)->nullable();
$table->text('user_agent')->nullable();
$table->longText('payload');
$table->integer('last_activity')->index();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('users');
Schema::dropIfExists('password_reset_tokens');
Schema::dropIfExists('sessions');
}
};

View File

@@ -0,0 +1,35 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('cache', function (Blueprint $table) {
$table->string('key')->primary();
$table->mediumText('value');
$table->integer('expiration')->index();
});
Schema::create('cache_locks', function (Blueprint $table) {
$table->string('key')->primary();
$table->string('owner');
$table->integer('expiration')->index();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('cache');
Schema::dropIfExists('cache_locks');
}
};

View File

@@ -0,0 +1,57 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('jobs', function (Blueprint $table) {
$table->id();
$table->string('queue')->index();
$table->longText('payload');
$table->unsignedTinyInteger('attempts');
$table->unsignedInteger('reserved_at')->nullable();
$table->unsignedInteger('available_at');
$table->unsignedInteger('created_at');
});
Schema::create('job_batches', function (Blueprint $table) {
$table->string('id')->primary();
$table->string('name');
$table->integer('total_jobs');
$table->integer('pending_jobs');
$table->integer('failed_jobs');
$table->longText('failed_job_ids');
$table->mediumText('options')->nullable();
$table->integer('cancelled_at')->nullable();
$table->integer('created_at');
$table->integer('finished_at')->nullable();
});
Schema::create('failed_jobs', function (Blueprint $table) {
$table->id();
$table->string('uuid')->unique();
$table->text('connection');
$table->text('queue');
$table->longText('payload');
$table->longText('exception');
$table->timestamp('failed_at')->useCurrent();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('jobs');
Schema::dropIfExists('job_batches');
Schema::dropIfExists('failed_jobs');
}
};

View File

@@ -0,0 +1,25 @@
<?php
namespace Database\Seeders;
use App\Models\User;
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
use WithoutModelEvents;
/**
* Seed the application's database.
*/
public function run(): void
{
// User::factory(10)->create();
User::factory()->create([
'name' => 'Test User',
'email' => 'test@example.com',
]);
}
}

17
package.json Executable file
View File

@@ -0,0 +1,17 @@
{
"$schema": "https://www.schemastore.org/package.json",
"private": true,
"type": "module",
"scripts": {
"build": "vite build",
"dev": "vite"
},
"devDependencies": {
"@tailwindcss/vite": "^4.0.0",
"axios": "^1.11.0",
"concurrently": "^9.0.1",
"laravel-vite-plugin": "^2.0.0",
"tailwindcss": "^4.0.0",
"vite": "^7.0.7"
}
}

35
phpunit.xml Executable file
View File

@@ -0,0 +1,35 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
>
<testsuites>
<testsuite name="Unit">
<directory>tests/Unit</directory>
</testsuite>
<testsuite name="Feature">
<directory>tests/Feature</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory>app</directory>
</include>
</source>
<php>
<env name="APP_ENV" value="testing"/>
<env name="APP_MAINTENANCE_DRIVER" value="file"/>
<env name="BCRYPT_ROUNDS" value="4"/>
<env name="BROADCAST_CONNECTION" value="null"/>
<env name="CACHE_STORE" value="array"/>
<env name="DB_CONNECTION" value="sqlite"/>
<env name="DB_DATABASE" value=":memory:"/>
<env name="MAIL_MAILER" value="array"/>
<env name="QUEUE_CONNECTION" value="sync"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="PULSE_ENABLED" value="false"/>
<env name="TELESCOPE_ENABLED" value="false"/>
<env name="NIGHTWATCH_ENABLED" value="false"/>
</php>
</phpunit>

25
public/.htaccess Executable file
View File

@@ -0,0 +1,25 @@
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews -Indexes
</IfModule>
RewriteEngine On
# Handle Authorization Header
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
# Handle X-XSRF-Token Header
RewriteCond %{HTTP:x-xsrf-token} .
RewriteRule .* - [E=HTTP_X_XSRF_TOKEN:%{HTTP:X-XSRF-Token}]
# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} (.+)/$
RewriteRule ^ %1 [L,R=301]
# Send Requests To Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>

22106
public/assets/css/app-rtl.css Executable file

File diff suppressed because it is too large Load Diff

10
public/assets/css/app-rtl.min.css vendored Executable file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

22132
public/assets/css/app.css Executable file

File diff suppressed because it is too large Load Diff

10
public/assets/css/app.min.css vendored Executable file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

Binary file not shown.

18
public/assets/css/vendors.min.css vendored Executable file

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,460 @@
{
"data": [
{
"name": "Tiger Nixon",
"position": "System Architect",
"salary": "320800",
"start_date": "2011-04-25",
"office": "Gujarat",
"extn": "5421"
},
{
"name": "Garrett Winters",
"position": "Accountant",
"salary": "170750",
"start_date": "2011-07-25",
"office": "Tokyo",
"extn": "8422"
},
{
"name": "Ashton Cox",
"position": "Junior Technical Author",
"salary": "86000",
"start_date": "2009-01-12",
"office": "San Francisco",
"extn": "1562"
},
{
"name": "Cedric Kelly",
"position": "Senior Javascript Developer",
"salary": "433060",
"start_date": "2012-03-29",
"office": "Gujarat",
"extn": "6224"
},
{
"name": "Airi Satou",
"position": "Accountant",
"salary": "162700",
"start_date": "2008-11-28",
"office": "Tokyo",
"extn": "5407"
},
{
"name": "Brielle Williamson",
"position": "Integration Specialist",
"salary": "372000",
"start_date": "2012-12-02",
"office": "New York",
"extn": "4804"
},
{
"name": "Herrod Chandler",
"position": "Sales Assistant",
"salary": "137500",
"start_date": "2012-08-06",
"office": "San Francisco",
"extn": "9608"
},
{
"name": "Rhona Davidson",
"position": "Integration Specialist",
"salary": "327900",
"start_date": "2010-10-14",
"office": "Tokyo",
"extn": "6200"
},
{
"name": "Colleen Hurst",
"position": "Javascript Developer",
"salary": "205500",
"start_date": "2009-09-15",
"office": "San Francisco",
"extn": "2360"
},
{
"name": "Sonya Frost",
"position": "Software Engineer",
"salary": "103600",
"start_date": "2008-12-13",
"office": "Gujarat",
"extn": "1667"
},
{
"name": "Jena Gaines",
"position": "Office Manager",
"salary": "90560",
"start_date": "2008-12-19",
"office": "London",
"extn": "3814"
},
{
"name": "Quinn Flynn",
"position": "Support Lead",
"salary": "342000",
"start_date": "2013-03-03",
"office": "Gujarat",
"extn": "9497"
},
{
"name": "Charde Marshall",
"position": "Regional Director",
"salary": "470600",
"start_date": "2008-10-16",
"office": "San Francisco",
"extn": "6741"
},
{
"name": "Haley Kennedy",
"position": "Senior Marketing Designer",
"salary": "313500",
"start_date": "2012-12-18",
"office": "London",
"extn": "3597"
},
{
"name": "Tatyana Fitzpatrick",
"position": "Regional Director",
"salary": "385750",
"start_date": "2010-03-17",
"office": "London",
"extn": "1965"
},
{
"name": "Michael Silva",
"position": "Marketing Designer",
"salary": "198500",
"start_date": "2012-11-27",
"office": "London",
"extn": "1581"
},
{
"name": "Paul Byrd",
"position": "Chief Financial Officer (CFO)",
"salary": "725000",
"start_date": "2010-06-09",
"office": "New York",
"extn": "3059"
},
{
"name": "Gloria Little",
"position": "Systems Administrator",
"salary": "237500",
"start_date": "2009-04-10",
"office": "New York",
"extn": "1721"
},
{
"name": "Bradley Greer",
"position": "Software Engineer",
"salary": "132000",
"start_date": "2012-10-13",
"office": "London",
"extn": "2558"
},
{
"name": "Dai Rios",
"position": "Personnel Lead",
"salary": "217500",
"start_date": "2012-09-26",
"office": "Gujarat",
"extn": "2290"
},
{
"name": "Jenette Caldwell",
"position": "Development Lead",
"salary": "345000",
"start_date": "2011-09-03",
"office": "New York",
"extn": "1937"
},
{
"name": "Yuri Berry",
"position": "Chief Marketing Officer (CMO)",
"salary": "675000",
"start_date": "2009-06-25",
"office": "New York",
"extn": "6154"
},
{
"name": "Caesar Vance",
"position": "Pre-Sales Support",
"salary": "106450",
"start_date": "2011-12-12",
"office": "New York",
"extn": "8330"
},
{
"name": "Doris Wilder",
"position": "Sales Assistant",
"salary": "85600",
"start_date": "2010-09-20",
"office": "Sydney",
"extn": "3023"
},
{
"name": "Angelica Ramos",
"position": "Chief Executive Officer (CEO)",
"salary": "1200000",
"start_date": "2009-10-09",
"office": "London",
"extn": "5797"
},
{
"name": "Gavin Joyce",
"position": "Developer",
"salary": "92575",
"start_date": "2010-12-22",
"office": "Gujarat",
"extn": "8822"
},
{
"name": "Jennifer Chang",
"position": "Regional Director",
"salary": "357650",
"start_date": "2010-11-14",
"office": "Argentina",
"extn": "9239"
},
{
"name": "Brenden Wagner",
"position": "Software Engineer",
"salary": "206850",
"start_date": "2011-06-07",
"office": "San Francisco",
"extn": "1314"
},
{
"name": "Fiona Green",
"position": "Chief Operating Officer (COO)",
"salary": "850000",
"start_date": "2010-03-11",
"office": "San Francisco",
"extn": "2947"
},
{
"name": "Shou Itou",
"position": "Regional Marketing",
"salary": "163000",
"start_date": "2011-08-14",
"office": "Tokyo",
"extn": "8899"
},
{
"name": "Michelle House",
"position": "Integration Specialist",
"salary": "95400",
"start_date": "2011-06-02",
"office": "Sydney",
"extn": "2769"
},
{
"name": "Suki Burks",
"position": "Developer",
"salary": "114500",
"start_date": "2009-10-22",
"office": "London",
"extn": "6832"
},
{
"name": "Prescott Bartlett",
"position": "Technical Author",
"salary": "145000",
"start_date": "2011-05-07",
"office": "London",
"extn": "3606"
},
{
"name": "Gavin Cortez",
"position": "Team Leader",
"salary": "235500",
"start_date": "2008-10-26",
"office": "San Francisco",
"extn": "2860"
},
{
"name": "Martena Mccray",
"position": "Post-Sales support",
"salary": "324050",
"start_date": "2011-03-09",
"office": "Gujarat",
"extn": "8240"
},
{
"name": "Unity Butler",
"position": "Marketing Designer",
"salary": "85675",
"start_date": "2009-12-09",
"office": "San Francisco",
"extn": "5384"
},
{
"name": "Howard Hatfield",
"position": "Office Manager",
"salary": "164500",
"start_date": "2008-12-16",
"office": "San Francisco",
"extn": "7031"
},
{
"name": "Hope Fuentes",
"position": "Secretary",
"salary": "109850",
"start_date": "2010-02-12",
"office": "San Francisco",
"extn": "6318"
},
{
"name": "Vivian Harrell",
"position": "Financial Controller",
"salary": "452500",
"start_date": "2009-02-14",
"office": "San Francisco",
"extn": "9422"
},
{
"name": "Timothy Mooney",
"position": "Office Manager",
"salary": "136200",
"start_date": "2008-12-11",
"office": "London",
"extn": "7580"
},
{
"name": "Jackson Bradshaw",
"position": "Director",
"salary": "645750",
"start_date": "2008-09-26",
"office": "New York",
"extn": "1042"
},
{
"name": "Olivia Liang",
"position": "Support Engineer",
"salary": "234500",
"start_date": "2011-02-03",
"office": "Argentina",
"extn": "2120"
},
{
"name": "Bruno Nash",
"position": "Software Engineer",
"salary": "163500",
"start_date": "2011-05-03",
"office": "London",
"extn": "6222"
},
{
"name": "Sakura Yamamoto",
"position": "Support Engineer",
"salary": "139575",
"start_date": "2009-08-19",
"office": "Tokyo",
"extn": "9383"
},
{
"name": "Thor Walton",
"position": "Developer",
"salary": "98540",
"start_date": "2013-08-11",
"office": "New York",
"extn": "8327"
},
{
"name": "Finn Camacho",
"position": "Support Engineer",
"salary": "87500",
"start_date": "2009-07-07",
"office": "San Francisco",
"extn": "2927"
},
{
"name": "Serge Baldwin",
"position": "Data Coordinator",
"salary": "138575",
"start_date": "2012-04-09",
"office": "Argentina",
"extn": "8352"
},
{
"name": "Zenaida Frank",
"position": "Software Engineer",
"salary": "125250",
"start_date": "2010-01-04",
"office": "New York",
"extn": "7439"
},
{
"name": "Zorita Serrano",
"position": "Software Engineer",
"salary": "115000",
"start_date": "2012-06-01",
"office": "San Francisco",
"extn": "4389"
},
{
"name": "Jennifer Acosta",
"position": "Junior Javascript Developer",
"salary": "75650",
"start_date": "2013-02-01",
"office": "Gujarat",
"extn": "3431"
},
{
"name": "Cara Stevens",
"position": "Sales Assistant",
"salary": "145600",
"start_date": "2011-12-06",
"office": "New York",
"extn": "3990"
},
{
"name": "Hermione Butler",
"position": "Regional Director",
"salary": "356250",
"start_date": "2011-03-21",
"office": "London",
"extn": "1016"
},
{
"name": "Lael Greer",
"position": "Systems Administrator",
"salary": "103500",
"start_date": "2009-02-27",
"office": "London",
"extn": "6733"
},
{
"name": "Jonas Alexander",
"position": "Developer",
"salary": "86500",
"start_date": "2010-07-14",
"office": "San Francisco",
"extn": "8196"
},
{
"name": "Shad Decker",
"position": "Regional Director",
"salary": "183000",
"start_date": "2008-11-13",
"office": "Gujarat",
"extn": "6373"
},
{
"name": "Michael Bruce",
"position": "Javascript Developer",
"salary": "183000",
"start_date": "2011-06-27",
"office": "Argentina",
"extn": "5384"
},
{
"name": "Donna Snider",
"position": "Customer Support",
"salary": "112000",
"start_date": "2011-01-25",
"office": "New York",
"extn": "4226"
}
]
}

View File

@@ -0,0 +1,554 @@
{
"data": [
{
"id": "1",
"company": "Apple Inc.",
"symbol": "AAPL",
"price": "$2146.86",
"change": "2.92%",
"volume": "4,900,854",
"market_cap": "53.59B",
"rating": "4.7 \u2605",
"status": "Bearish"
},
{
"id": "2",
"company": "Microsoft Corp.",
"symbol": "MSFT",
"price": "$408.90",
"change": "-3.76%",
"volume": "5,714,994",
"market_cap": "927.77B",
"rating": "3.8 \u2605",
"status": "Bearish"
},
{
"id": "3",
"company": "Alphabet Inc.",
"symbol": "GOOGL",
"price": "$2787.28",
"change": "0.43%",
"volume": "7,698,249",
"market_cap": "1.88T",
"rating": "4.6 \u2605",
"status": "Bearish"
},
{
"id": "4",
"company": "Tesla Inc.",
"symbol": "TSLA",
"price": "$701.63",
"change": "-3.26%",
"volume": "7,024,386",
"market_cap": "701.98B",
"rating": "4.5 \u2605",
"status": "Bearish"
},
{
"id": "5",
"company": "Amazon.com Inc.",
"symbol": "AMZN",
"price": "$3363.58",
"change": "0.04%",
"volume": "4,466,395",
"market_cap": "1.72T",
"rating": "4.3 \u2605",
"status": "Bearish"
},
{
"id": "6",
"company": "Meta Platforms, Inc.",
"symbol": "META",
"price": "$279.44",
"change": "-1.18%",
"volume": "2,546,904",
"market_cap": "752.91B",
"rating": "4.1 \u2605",
"status": "Bullish"
},
{
"id": "7",
"company": "NVIDIA Corporation",
"symbol": "NVDA",
"price": "$742.44",
"change": "-1.44%",
"volume": "5,438,252",
"market_cap": "1.88T",
"rating": "4.9 \u2605",
"status": "Bullish"
},
{
"id": "8",
"company": "Berkshire Hathaway",
"symbol": "BRK.A",
"price": "$419247.03",
"change": "0.24%",
"volume": "1,054,720",
"market_cap": "828.66B",
"rating": "4.8 \u2605",
"status": "Bearish"
},
{
"id": "9",
"company": "Walmart Inc.",
"symbol": "WMT",
"price": "$142.11",
"change": "-1.53%",
"volume": "6,017,907",
"market_cap": "398.24B",
"rating": "4.0 \u2605",
"status": "Bearish"
},
{
"id": "10",
"company": "Johnson & Johnson",
"symbol": "JNJ",
"price": "$136.44",
"change": "-2.38%",
"volume": "5,224,035",
"market_cap": "442.89B",
"rating": "4.3 \u2605",
"status": "Bearish"
},
{
"id": "11",
"company": "Procter & Gamble",
"symbol": "PG",
"price": "$113.10",
"change": "-0.91%",
"volume": "2,638,562",
"market_cap": "358.61B",
"rating": "4.4 \u2605",
"status": "Bearish"
},
{
"id": "12",
"company": "Visa Inc.",
"symbol": "V",
"price": "$201.00",
"change": "3.73%",
"volume": "8,994,343",
"market_cap": "495.51B",
"rating": "4.7 \u2605",
"status": "Bullish"
},
{
"id": "13",
"company": "Home Depot",
"symbol": "HD",
"price": "$374.05",
"change": "3.05%",
"volume": "8,927,428",
"market_cap": "381.73B",
"rating": "4.6 \u2605",
"status": "Bullish"
},
{
"id": "14",
"company": "Coca-Cola Company",
"symbol": "KO",
"price": "$90.54",
"change": "0.38%",
"volume": "5,637,126",
"market_cap": "274.17B",
"rating": "4.2 \u2605",
"status": "Bullish"
},
{
"id": "15",
"company": "PepsiCo",
"symbol": "PEP",
"price": "$218.61",
"change": "2.58%",
"volume": "7,528,757",
"market_cap": "259.61B",
"rating": "4.5 \u2605",
"status": "Bearish"
},
{
"id": "16",
"company": "Intel Corporation",
"symbol": "INTC",
"price": "$50.74",
"change": "-0.13%",
"volume": "2,566,225",
"market_cap": "213.76B",
"rating": "3.9 \u2605",
"status": "Bearish"
},
{
"id": "17",
"company": "Cisco Systems",
"symbol": "CSCO",
"price": "$32.49",
"change": "-2.94%",
"volume": "1,107,843",
"market_cap": "238.17B",
"rating": "4.1 \u2605",
"status": "Bearish"
},
{
"id": "18",
"company": "Pfizer Inc.",
"symbol": "PFE",
"price": "$48.31",
"change": "-1.06%",
"volume": "2,699,320",
"market_cap": "246.69B",
"rating": "4.3 \u2605",
"status": "Bullish"
},
{
"id": "19",
"company": "AbbVie Inc.",
"symbol": "ABBV",
"price": "$113.84",
"change": "-3.39%",
"volume": "5,054,850",
"market_cap": "286.97B",
"rating": "4.4 \u2605",
"status": "Bearish"
},
{
"id": "20",
"company": "UnitedHealth Group",
"symbol": "UNH",
"price": "$446.07",
"change": "-1.84%",
"volume": "5,401,283",
"market_cap": "696.69B",
"rating": "4.7 \u2605",
"status": "Bearish"
},
{
"id": "21",
"company": "Mastercard Inc.",
"symbol": "MA",
"price": "$437.20",
"change": "0.88%",
"volume": "797,545",
"market_cap": "396.98B",
"rating": "4.8 \u2605",
"status": "Bearish"
},
{
"id": "22",
"company": "Oracle Corporation",
"symbol": "ORCL",
"price": "$155.87",
"change": "1.15%",
"volume": "6,380,239",
"market_cap": "314.26B",
"rating": "4.0 \u2605",
"status": "Bullish"
},
{
"id": "23",
"company": "McDonald's Corporation",
"symbol": "MCD",
"price": "$203.74",
"change": "-2.22%",
"volume": "6,741,885",
"market_cap": "367.83B",
"rating": "4.5 \u2605",
"status": "Bearish"
},
{
"id": "24",
"company": "Walt Disney Company",
"symbol": "DIS",
"price": "$150.55",
"change": "-4.19%",
"volume": "6,917,234",
"market_cap": "203.93B",
"rating": "3.8 \u2605",
"status": "Bullish"
},
{
"id": "25",
"company": "Tesla Inc.",
"symbol": "TSLA",
"price": "$723.57",
"change": "-1.39%",
"volume": "2,686,353",
"market_cap": "701.98B",
"rating": "4.5 \u2605",
"status": "Bearish"
},
{
"id": "26",
"company": "Chevron Corporation",
"symbol": "CVX",
"price": "$154.16",
"change": "1.19%",
"volume": "7,894,254",
"market_cap": "342.54B",
"rating": "4.3 \u2605",
"status": "Bearish"
},
{
"id": "27",
"company": "ExxonMobil",
"symbol": "XOM",
"price": "$141.18",
"change": "-1.28%",
"volume": "3,941,144",
"market_cap": "440.32B",
"rating": "4.6 \u2605",
"status": "Bullish"
},
{
"id": "28",
"company": "Abbott Laboratories",
"symbol": "ABT",
"price": "$125.20",
"change": "-3.47%",
"volume": "7,556,855",
"market_cap": "185.85B",
"rating": "4.4 \u2605",
"status": "Bearish"
},
{
"id": "29",
"company": "Lowe's Companies",
"symbol": "LOW",
"price": "$173.94",
"change": "-0.45%",
"volume": "9,981,740",
"market_cap": "152.93B",
"rating": "4.3 \u2605",
"status": "Bearish"
},
{
"id": "30",
"company": "Lockheed Martin",
"symbol": "LMT",
"price": "$473.21",
"change": "3.33%",
"volume": "9,994,118",
"market_cap": "121.98B",
"rating": "4.6 \u2605",
"status": "Bearish"
},
{
"id": "31",
"company": "3M Company",
"symbol": "MMM",
"price": "$113.95",
"change": "0.48%",
"volume": "518,654",
"market_cap": "66.17B",
"rating": "4.1 \u2605",
"status": "Bearish"
},
{
"id": "32",
"company": "Bristol-Myers Squibb",
"symbol": "BMY",
"price": "$36.21",
"change": "-4.2%",
"volume": "3,466,547",
"market_cap": "142.71B",
"rating": "4.2 \u2605",
"status": "Bearish"
},
{
"id": "33",
"company": "Raytheon Technologies",
"symbol": "RTX",
"price": "$46.13",
"change": "-3.05%",
"volume": "6,408,052",
"market_cap": "134.39B",
"rating": "4.5 \u2605",
"status": "Bullish"
},
{
"id": "34",
"company": "General Electric",
"symbol": "GE",
"price": "$159.81",
"change": "0.13%",
"volume": "9,911,255",
"market_cap": "101.36B",
"rating": "4.3 \u2605",
"status": "Bullish"
},
{
"id": "35",
"company": "American Express",
"symbol": "AXP",
"price": "$133.04",
"change": "-0.29%",
"volume": "2,360,835",
"market_cap": "155.83B",
"rating": "4.4 \u2605",
"status": "Bullish"
},
{
"id": "36",
"company": "Colgate-Palmolive",
"symbol": "CL",
"price": "$73.57",
"change": "2.9%",
"volume": "7,251,531",
"market_cap": "68.45B",
"rating": "4.2 \u2605",
"status": "Bullish"
},
{
"id": "37",
"company": "Johnson Controls",
"symbol": "JCI",
"price": "$17.16",
"change": "3.67%",
"volume": "3,667,577",
"market_cap": "41.42B",
"rating": "4.3 \u2605",
"status": "Bullish"
},
{
"id": "38",
"company": "Target Corporation",
"symbol": "TGT",
"price": "$151.18",
"change": "4.61%",
"volume": "8,009,736",
"market_cap": "83.32B",
"rating": "4.4 \u2605",
"status": "Bearish"
},
{
"id": "39",
"company": "Citigroup",
"symbol": "C",
"price": "$41.73",
"change": "-0.68%",
"volume": "252,870",
"market_cap": "97.68B",
"rating": "4.2 \u2605",
"status": "Bullish"
},
{
"id": "40",
"company": "Qualcomm",
"symbol": "QCOM",
"price": "$117.77",
"change": "-2.7%",
"volume": "4,310,986",
"market_cap": "130.85B",
"rating": "4.4 \u2605",
"status": "Bearish"
},
{
"id": "41",
"company": "Morgan Stanley",
"symbol": "MS",
"price": "$100.68",
"change": "-3.07%",
"volume": "8,514,285",
"market_cap": "180.71B",
"rating": "4.5 \u2605",
"status": "Bearish"
},
{
"id": "42",
"company": "Adobe Inc.",
"symbol": "ADBE",
"price": "$503.46",
"change": "2.7%",
"volume": "4,521,395",
"market_cap": "240.23B",
"rating": "4.8 \u2605",
"status": "Bearish"
},
{
"id": "43",
"company": "Salesforce",
"symbol": "CRM",
"price": "$166.64",
"change": "4.19%",
"volume": "1,096,384",
"market_cap": "213.48B",
"rating": "4.6 \u2605",
"status": "Bullish"
},
{
"id": "44",
"company": "PayPal",
"symbol": "PYPL",
"price": "$197.52",
"change": "1.68%",
"volume": "8,717,514",
"market_cap": "213.42B",
"rating": "4.2 \u2605",
"status": "Bearish"
},
{
"id": "45",
"company": "IBM",
"symbol": "IBM",
"price": "$171.71",
"change": "-3.11%",
"volume": "1,687,819",
"market_cap": "124.75B",
"rating": "4.1 \u2605",
"status": "Bearish"
},
{
"id": "46",
"company": "Tesla",
"symbol": "TSLA",
"price": "$920.23",
"change": "-0.99%",
"volume": "6,075,086",
"market_cap": "400B",
"rating": "4.6 \u2605",
"status": "Bullish"
},
{
"id": "47",
"company": "Ford Motor Company",
"symbol": "F",
"price": "$-23.24",
"change": "-0.67%",
"volume": "5,274,075",
"market_cap": "45.87B",
"rating": "3.7 \u2605",
"status": "Bearish"
},
{
"id": "48",
"company": "General Motors",
"symbol": "GM",
"price": "$60.32",
"change": "-2.23%",
"volume": "4,477,483",
"market_cap": "51.91B",
"rating": "3.9 \u2605",
"status": "Bearish"
},
{
"id": "49",
"company": "Boeing Company",
"symbol": "BA",
"price": "$217.56",
"change": "1.75%",
"volume": "4,681,504",
"market_cap": "117.92B",
"rating": "4.4 \u2605",
"status": "Bearish"
},
{
"id": "50",
"company": "Caterpillar Inc.",
"symbol": "CAT",
"price": "$314.04",
"change": "0.2%",
"volume": "8,014,308",
"market_cap": "147.56B",
"rating": "4.7 \u2605",
"status": "Bearish"
}
]
}

View File

@@ -0,0 +1,273 @@
{
"user-role": "Künstlerischer Leiter",
"role-details": "Rolle Details",
"menu-title": "Menü",
"dashboards": "Dashboards",
"dashboard-one": "Dashboard v.1",
"dashboard-two": "Dashboard v.2",
"dashboard-three": "Dashboard v.3",
"dashboard-four": "Dashboard v.4",
"dashboard-soon": "demnächst",
"dashboard-five": "Dashboard v.5",
"landing-page": "Landingpage",
"apps-title": "Apps",
"ecommerce": "E-Commerce",
"eco-products": "Produkte",
"eco-pro-listing": "Auflistung",
"eco-pro-grid": "Produktübersicht",
"eco-pro-details": "Produktdetails",
"eco-pro-add": "Produkt hinzufügen",
"eco-categories": "Kategorien",
"eco-orders": "Bestellungen",
"eco-orders-list": "Bestellungen",
"eco-order-details": "Bestelldetails",
"eco-customers": "Kunden",
"eco-sellers": "Verkäufer",
"eco-sellers-list": "Verkäufer",
"eco-sellers-details": "Verkäuferdetails",
"eco-reviews": "Bewertungen",
"eco-reports": "Berichte",
"eco-pro-views": "Produktansichten",
"eco-pro-sales": "Verkäufe",
"email": "E-Mail",
"email-inbox": "Posteingang",
"email-details": "Details",
"email-compose": "Verfassen",
"email-templates": "E-Mail-Vorlagen",
"crm": "CRM",
"crm-contacts": "Kontakte",
"crm-opportunities": "Chancen",
"crm-deals": "Dark",
"crm-leads": "Leads",
"crm-pipeline": "Pipeline",
"crm-campaign": "Kampagne",
"crm-proposals": "Vorschläge",
"crm-estimations": "Schätzungen",
"crm-customers": "Kunden",
"crm-activities": "Aktivitäten",
"social": "Soziale Feed",
"users": "Benutzer",
"contacts": "Kontakte",
"roles": "Rollen",
"permissions": "Berechtigungen",
"support": "Support-Center",
"tickets": "Ticketliste",
"ticket-details": "Ticketdetails",
"ticket-create": "Neues Ticket",
"file-manager": "Dateimanager",
"chat": "Chat",
"calendar": "Kalender",
"invoice": "Rechnung",
"invoices": "Rechnungen",
"invoice-details": "Einzelrechnung",
"invoice-create": "Neue Rechnung",
"otherapps": "Andere Apps",
"companies": "Unternehmen",
"clients": "Kunden",
"outlook": "Outlook-Ansicht",
"vote-list": "Abstimmungsliste",
"issue-tracker": "Problem-Tracker",
"api-keys": "API-Schlüssel",
"blog": "Blog",
"article": "Artikel",
"pin-board": "Pinnwand",
"forum-view": "Forum-Ansicht",
"forum-post": "Forum Beitrag",
"pages": "Seiten",
"profile": "Profil",
"pages-faq": "FAQ",
"pages-pricing": "Preise",
"pages-empty": "Leere Seite",
"pages-timeline": "Zeitleiste",
"pages-sitemap": "Sitemap",
"pages-search-results": "Suchergebnisse",
"pages-coming-soon": "In Kürze verfügbar",
"pages-terms-conditions": "AGB",
"miscellaneous": "Verschiedenes",
"misc-sortable": "Sortierbare Liste",
"misc-text-diff": "Text-Diff",
"misc-pdf-viewer": "PDF-Viewer",
"misc-i18": "i18-Support",
"misc-sweet-alerts": "Sweet-Benachrichtigungen",
"misc-idle-timer": "Leerlaufzeit",
"misc-pass-meter": "Passwort-Messgerät",
"misc-live-favicon": "Live-Favicon",
"misc-clipboard": "Zwischenablage",
"misc-tree-view": "Baumansicht",
"misc-loading-buttons": "Schaltflächen werden geladen",
"misc-gallery": "Galerie",
"misc-masonry": "Mauerwerk",
"misc-tour": "Rundgang",
"misc-animation": "Animation",
"authentication": "Authentifizierung",
"basic-auth": "Grundlegend",
"auth-sign-in": "Anmelden",
"auth-sign-up": "Registrieren",
"auth-reset-pass": "Passwort zurücksetzen",
"auth-new-pass": "Neues Passwort",
"auth-two-factor": "Zwei-Faktor",
"auth-lock-screen": "Bildschirm sperren",
"auth-success-mail": "Erfolgs-E-Mail",
"auth-login-pin": "Mit PIN anmelden",
"auth-delete-account": "Konto löschen",
"cover-auth": "Cover",
"auth-2-sign-in": "Anmelden",
"auth-2-sign-up": "Registrieren",
"auth-2-reset-pass": "Passwort zurücksetzen",
"auth-2-new-pass": "Neues Passwort",
"auth-2-two-factor": "Zwei-Faktor",
"auth-2-lock-screen": "Bildschirm sperren",
"auth-2-success-mail": "Erfolgs-E-Mail",
"auth-2-login-pin": "Mit PIN anmelden",
"auth-2-delete-account": "Konto löschen",
"error-pages": "Fehlerseiten",
"error-400": "400",
"error-401": "401",
"error-403": "403",
"error-404": "404",
"error-408": "408",
"error-500": "500",
"maintenance": "Wartung",
"layout-options": "Layout-Optionen",
"layouts-scrollable": "Scrollbar",
"layouts-compact": "Kompakt",
"layouts-boxed": "Boxed",
"layouts-horizontal": "Horizontal",
"layouts-preloader": "Preloader",
"sidebars": "Sidebars",
"sidebar-dark": "Dunkles Menü",
"sidebar-gradient": "Gradient Menu",
"sidebar-gray": "Graue Menu",
"sidebar-image": "Image Menu",
"sidebar-compact": "Compact Menu",
"sidebar-icon-view": "Icon View Menu",
"sidebar-on-hover": "On Hover Menu",
"sidebar-on-hover-active": "On Hover Active",
"sidebar-offcanvas": "Offcanvas Menu",
"sidebar-no-icons": "No Icons with Lines",
"sidebar-with-lines": "Sidebar with Lines",
"sidebar-user": "With User",
"topbar": "Ball",
"topbar-light": "Helle obere Leiste",
"topbar-gray": "Graue Topbar",
"topbar-gradient": "Farbverlauf-Topbar",
"topbar-sub-items": "Topbar mit Unterelementen",
"topbar-tools": "Topbar mit Werkzeugen",
"base-ui": "Basis-UI",
"ui-accordions": "Akkordeons",
"ui-alerts": "Warnungen",
"ui-images": "Bilder",
"ui-badges": "Badges",
"ui-breadcrumb": "Breadcrumb",
"ui-buttons": "Schaltflächen",
"ui-cards": "Karten",
"ui-carousel": "Karussell",
"ui-collapse": "Zusammenklappen",
"ui-colors": "Farben",
"ui-dropdowns": "Dropdowns",
"ui-videos": "Videos",
"ui-grid": "Rasteroptionen",
"ui-links": "Links",
"ui-list-group": "Listengruppe",
"ui-modals": "Modale Dialoge",
"ui-notifications": "Benachrichtigungen",
"ui-offcanvas": "Off-Canvas",
"ui-placeholders": "Platzhalter",
"ui-pagination": "Seitennummerierung",
"ui-popovers": "Popovers",
"ui-progress": "Fortschritt",
"ui-scrollspy": "Scrollspy",
"ui-spinners": "Spinner",
"ui-tabs": "Tabs",
"ui-tooltips": "Tooltips",
"ui-typography": "Typografie",
"ui-utilities": "Dienstprogramme",
"widgets": "Widgets",
"metrics": "Metriken",
"graphs": "Diagramme",
"charts": "Diagramme",
"apex-charts": "Apex-Diagramme",
"charts-apex-area": "Bereich",
"charts-apex-bar": "Balken",
"charts-apex-bubble": "Blase",
"charts-apex-candlestick": "Kerzen",
"charts-apex-column": "Spalte",
"charts-apex-heatmap": "Heatmap",
"charts-apex-line": "Linie",
"charts-apex-mixed": "Gemischt",
"charts-apex-timeline": "Zeitachse",
"charts-apex-boxplot": "Boxplot",
"charts-apex-treemap": "Baumkarte",
"charts-apex-pie": "Kreisdiagramm",
"charts-apex-radar": "Radar",
"charts-apex-radialbar": "Radialbalken",
"charts-apex-scatter": "Streudiagramm",
"charts-apex-polar-area": "Polarbereich",
"charts-apex-sparklines": "Sparklines",
"charts-apex-range": "Bereich",
"charts-apex-funnel": "Trichter",
"charts-apex-slope": "Steigung",
"chartjs": "Chart Js",
"chartjs-line": "Linie",
"chartjs-bar": "Balken",
"chartjs-pie": "Kreis",
"chartjs-scatter": "Streudiagramm",
"chartjs-geo-map": "Geo-Karte",
"chartjs-gauge": "Messgerät",
"chartjs-candlestick": "Kerzendiagramm",
"chartjs-area": "Bereich",
"chartjs-radar": "Radar",
"chartjs-heatmap": "Heatmap",
"chartjs-other": "Sonstige",
"charts-apextree": "Apex-Baum",
"charts-apexsankey": "Apex-Sankey",
"forms": "Formulare",
"form-elements": "Basiselemente",
"form-pickers": "Auswahl",
"form-select": "Auswählen",
"form-validation": "Validierung",
"form-wizard": "Assistent",
"form-fileuploads": "Datei-Uploads",
"form-text-editors": "Texteditoren",
"form-range-slider": "Bereichsregler",
"form-layouts": "Layouts",
"form-other-plugins": "Andere Plugins",
"tables": "Tabellen",
"tables-static": "Statische Tabellen",
"tables-custom": "Benutzerdefinierte Tabellen",
"datatables": "Datentabellen",
"tables-datatables-basic": "Basis",
"tables-datatables-export-data": "Daten exportieren",
"tables-datatables-select": "Auswählen",
"tables-datatables-ajax": "Ajax",
"tables-datatables-javascript": "Javascript-Quelle",
"tables-datatables-rendering": "Daten-Rendering",
"tables-datatables-scroll": "Scrollen",
"tables-datatables-columns": "Spalten ein- und ausblenden",
"tables-datatables-child-rows": "Untergeordnete Zeilen",
"tables-datatables-column-searching": "Spaltensuche",
"tables-datatables-range-search": "Bereichssuche",
"tables-datatables-fixed-header": "Fixierte Überschrift",
"tables-datatables-fixed-columns": "Feste Spalten",
"tables-datatables-add-rows": "Zeilen hinzufügen",
"tables-datatables-checkbox-select": "Kontrollkästchen auswählen",
"icons": "Symbole",
"icons-tabler": "Tabellen",
"icons-lucide": "Lucide",
"icons-flags": "Flaggen",
"maps": "Karten",
"maps-google": "Google Maps",
"maps-vector": "Vektorkarten",
"maps-leaflet": "Leaflet-Karten",
"menu-levels": "Menüebenen",
"second-level": "Zweite Ebene",
"third-level": "Zweite Ebene",
"disabled-menu": "Deaktiviertes Menü",
"special-menu": "Spezialmenü",
"mega-menu": "Mega-Menü",
"pages-title": "Benutzerdefinierte Seite",
"layouts-title": "Layouts",
"components-title": "Komponente",
"items-title": "Menüelemente",
"demo-text": "Dies ist die englische Version des in dieser Demo verwendeten Textes. Es dient als Standardsprachinhalt, bevor die Übersetzung angewendet wird. Durch die Einrichtung der i18n-Unterstützung kann dieser Text problemlos in andere Sprachen umgestellt werden, was eine umfassendere und zugänglichere Benutzererfahrung gewährleistet.."
}

View File

@@ -0,0 +1,271 @@
{
"user-role": "Art Director",
"menu-title": "Navigation",
"dashboards": "Dashboards",
"dashboard-one": "Dashboard 1",
"dashboard-two": "Dashboard 2",
"dashboard-three": "Dashboard 3",
"dashboard-four": "Dashboard 4",
"landing-page": "Landing Page",
"apps-title": "Apps",
"ecommerce": "Ecommerce",
"eco-products": "Products",
"eco-pro-listing": "Listing",
"eco-pro-grid": "Products Grid",
"eco-pro-details": "Product Details",
"eco-pro-add": "Add Product",
"eco-categories": "Categories",
"eco-orders": "Orders",
"eco-orders-list": "Orders",
"eco-order-details": "Order Details",
"eco-customers": "Customers",
"eco-sellers": "Sellers",
"eco-sellers-list": "Sellers",
"eco-sellers-details": "Sellers Details",
"eco-reviews": "Reviews",
"eco-reports": "Reports",
"eco-pro-views": "Product Views",
"eco-pro-sales": "Sales",
"email": "Email",
"email-inbox": "Inbox",
"email-details": "Details",
"email-compose": "Compose",
"email-templates": "Email Templates",
"crm": "CRM",
"crm-contacts": "Contacts",
"crm-opportunities": "Opportunities",
"crm-deals": "Dark",
"crm-leads": "Leads",
"crm-pipeline": "Pipeline",
"crm-campaign": "Campaign",
"crm-proposals": "Proposals",
"crm-estimations": "Estimations",
"crm-customers": "Customers",
"crm-activities": "Activities",
"social": "Social Feed",
"users": "Users",
"contacts": "Contacts",
"roles": "Roles",
"role-details": "Role Details",
"permissions": "Permissions",
"support": "Support Center",
"tickets": "Tickets List",
"ticket-details": "Ticket Details",
"ticket-create": "New Ticket",
"file-manager": "File Manager",
"chat": "Chat",
"calendar": "Calendar",
"invoice": "Invoice",
"invoices": "Invoices",
"invoice-details": "Single Invoice",
"invoice-create": "New Invoice",
"otherapps": "Other Apps",
"companies": "Companies",
"clients": "Clients",
"outlook": "Outlook View",
"vote-list": "Vote List",
"issue-tracker": "Issue Tracker",
"api-keys": "API Keys",
"blog": "Blog",
"article": "Article",
"pin-board": "Pin Board",
"forum-view": "Forum View",
"forum-post": "Forum Post",
"pages": "Pages",
"profile": "Profile",
"pages-faq": "FAQ",
"pages-pricing": "Pricing",
"pages-empty": "Empty Page",
"pages-timeline": "Timeline",
"pages-sitemap": "Sitemap",
"pages-search-results": "Search Results",
"pages-coming-soon": "Coming Soon",
"pages-terms-conditions": "Terms & Conditions",
"miscellaneous": "Miscellaneous",
"misc-sortable": "Sortable List",
"misc-text-diff": "Text Diff",
"misc-pdf-viewer": "PDF Viewer",
"misc-i18": "i18 Support",
"misc-sweet-alerts": "Sweet Alerts",
"misc-idle-timer": "Idle Timer",
"misc-pass-meter": "Password Meter",
"misc-live-favicon": "Live Favicon",
"misc-clipboard": "Clipboard",
"misc-tree-view": "Tree View",
"misc-loading-buttons": "Loading Buttons",
"misc-gallery": "Gallery",
"misc-masonry": "Masonry",
"misc-tour": "Tour",
"misc-animation": "Animation",
"authentication": "Authentication",
"basic-auth": "Basic",
"auth-sign-in": "Sign In",
"auth-sign-up": "Sign Up",
"auth-reset-pass": "Reset Password",
"auth-new-pass": "New Password",
"auth-two-factor": "Two Factor",
"auth-lock-screen": "Lock Screen",
"auth-success-mail": "Success Mail",
"auth-login-pin": "Login with PIN",
"auth-delete-account": "Delete Account",
"cover-auth": "Cover",
"auth-2-sign-in": "Sign In",
"auth-2-sign-up": "Sign Up",
"auth-2-reset-pass": "Reset Password",
"auth-2-new-pass": "New Password",
"auth-2-two-factor": "Two Factor",
"auth-2-lock-screen": "Lock Screen",
"auth-2-success-mail": "Success Mail",
"auth-2-login-pin": "Login with PIN",
"auth-2-delete-account": "Delete Account",
"error-pages": "Error Pages",
"error-400": "400 Bad Request",
"error-401": "401 Unauthorized",
"error-403": "403 Forbidden",
"error-404": "404 Not Found",
"error-408": "408 Request Timeout",
"error-500": "500 Internal Server",
"maintenance": "Maintenance",
"layout-options": "Layout Options",
"layouts-scrollable": "Scrollable",
"layouts-compact": "Compact",
"layouts-boxed": "Boxed",
"layouts-horizontal": "Horizontal",
"layouts-preloader": "Preloader",
"sidebars": "Sidebars",
"sidebar-dark": "Dark Menu",
"sidebar-gradient": "Gradient Menu",
"sidebar-gray": "Gray Menu",
"sidebar-image": "Image Menu",
"sidebar-compact": "Compact Menu",
"sidebar-icon-view": "Icon View Menu",
"sidebar-on-hover": "On Hover Menu",
"sidebar-on-hover-active": "On Hover Active",
"sidebar-offcanvas": "Offcanvas Menu",
"sidebar-no-icons": "No Icons with Lines",
"sidebar-with-lines": "Sidebar with Lines",
"sidebar-user": "With User",
"topbar": "Topbar",
"topbar-light": "Light Topbar",
"topbar-gray": "Gray Topbar",
"topbar-gradient": "Gradient Topbar",
"topbar-sub-items": "Topbar with Sub Items",
"topbar-tools": "Topbar with Tools",
"base-ui": "Base UI",
"ui-accordions": "Accordions",
"ui-alerts": "Alerts",
"ui-images": "Images",
"ui-badges": "Badges",
"ui-breadcrumb": "Breadcrumb",
"ui-buttons": "Buttons",
"ui-cards": "Cards",
"ui-carousel": "Carousel",
"ui-collapse": "Collapse",
"ui-colors": "Colors",
"ui-dropdowns": "Dropdowns",
"ui-videos": "Videos",
"ui-grid": "Grid Options",
"ui-links": "Links",
"ui-list-group": "List Group",
"ui-modals": "Modals",
"ui-notifications": "Notifications",
"ui-offcanvas": "Offcanvas",
"ui-placeholders": "Placeholders",
"ui-pagination": "Pagination",
"ui-popovers": "Popovers",
"ui-progress": "Progress",
"ui-scrollspy": "Scrollspy",
"ui-spinners": "Spinners",
"ui-tabs": "Tabs",
"ui-tooltips": "Tooltips",
"ui-typography": "Typography",
"ui-utilities": "Utilities",
"widgets": "Widgets",
"metrics": "Metrics",
"graphs": "Graphs",
"charts": "Charts",
"apex-charts": "Apex Charts",
"charts-apex-area": "Area",
"charts-apex-bar": "Bar",
"charts-apex-bubble": "Bubble",
"charts-apex-candlestick": "Candlestick",
"charts-apex-column": "Column",
"charts-apex-heatmap": "Heatmap",
"charts-apex-line": "Line",
"charts-apex-mixed": "Mixed",
"charts-apex-timeline": "Timeline",
"charts-apex-boxplot": "Boxplot",
"charts-apex-treemap": "Treemap",
"charts-apex-pie": "Pie",
"charts-apex-radar": "Radar",
"charts-apex-radialbar": "RadialBar",
"charts-apex-scatter": "Scatter",
"charts-apex-polar-area": "Polar Area",
"charts-apex-sparklines": "Sparklines",
"charts-apex-range": "Range",
"charts-apex-funnel": "Funnel",
"charts-apex-slope": "Slope",
"chartjs": "Chart Js",
"chartjs-line": "Line",
"chartjs-bar": "Bar",
"chartjs-pie": "Pie",
"chartjs-scatter": "Scatter",
"chartjs-geo-map": "GEO Map",
"chartjs-gauge": "Gauge",
"chartjs-candlestick": "Candlestick",
"chartjs-area": "Area",
"chartjs-radar": "Radar",
"chartjs-heatmap": "Heatmap",
"chartjs-other": "Other",
"charts-apextree": "Apex Tree",
"charts-apexsankey": "Apex Sankey",
"forms": "Forms",
"form-elements": "Basic Elements",
"form-pickers": "Pickers",
"form-select": "Select",
"form-validation": "Validation",
"form-wizard": "Wizard",
"form-fileuploads": "File Uploads",
"form-text-editors": "Text Editors",
"form-range-slider": "Range Slider",
"form-layouts": "Layouts",
"form-other-plugins": "Other Plugins",
"tables": "Tables",
"tables-static": "Static Tables",
"tables-custom": "Custom Tables",
"datatables": "DataTables",
"tables-datatables-basic": "Basic",
"tables-datatables-export-data": "Export Data",
"tables-datatables-select": "Select",
"tables-datatables-ajax": "Ajax",
"tables-datatables-javascript": "Javascript Source",
"tables-datatables-rendering": "Data Rendering",
"tables-datatables-scroll": "Scroll",
"tables-datatables-columns": "Show & Hide Column",
"tables-datatables-child-rows": "Child Rows",
"tables-datatables-column-searching": "Column Searching",
"tables-datatables-range-search": "Range Search",
"tables-datatables-fixed-columns": "Fixed Columns",
"tables-datatables-fixed-header": "Fixed Header",
"tables-datatables-add-rows": "Add Rows",
"tables-datatables-checkbox-select": "Checkbox Select",
"icons": "Icons",
"icons-tabler": "Tabler",
"icons-lucide": "Lucide",
"icons-flags": "Flags",
"maps": "Maps",
"maps-google": "Google Maps",
"maps-vector": "Vector Maps",
"maps-leaflet": "Leaflet Maps",
"menu-levels": "Menu Levels",
"second-level": "Second Level",
"third-level": "Second Level",
"disabled-menu": "Disabled Menu",
"pages-title": "Custom Pages",
"layouts-title": "Layouts",
"components-title": "Components",
"items-title": "Menu Items",
"special-menu": "Special Menu",
"mega-menu": "Mega Menu",
"demo-text": "This is the English version of the text used in this demo. It serves as the default language content before translation is applied. By setting up i18n support, this text can be easily switched to other languages, ensuring a more inclusive and accessible user experience."
}

View File

@@ -0,0 +1,272 @@
{
"user-role": "Director de arte",
"menu-title": "Menú",
"dashboards": "Paneles",
"dashboard-one": "Panel v.1",
"dashboard-two": "Panel v.2",
"dashboard-three": "Panel v.3",
"dashboard-four": "Panel v.4",
"dashboard-soon": "próximamente",
"dashboard-five": "Panel v.5",
"landing-page": "Página de inicio",
"apps-title": "Aplicaciones",
"ecommerce": "Comercio electrónico",
"eco-products": "Productos",
"eco-pro-listing": "Listado",
"eco-pro-grid": "Cuadrícula de productos",
"eco-pro-details": "Detalles del producto",
"eco-pro-add": "Añadir producto",
"eco-categories": "Categorías",
"eco-orders": "Pedidos",
"eco-orders-list": "Pedidos",
"eco-order-details": "Detalles del pedido",
"eco-customers": "Clientes",
"eco-sellers": "Vendedores",
"eco-sellers-list": "Vendedores",
"eco-sellers-details": "Detalles del vendedor",
"eco-reviews": "Reseñas",
"eco-reports": "Informes",
"eco-pro-views": "Visitas de producto",
"eco-pro-sales": "Ventas",
"email": "Correo electrónico",
"email-inbox": "Bandeja de entrada",
"email-details": "Detalles",
"email-compose": "Redactar",
"email-templates": "Plantillas de correo electrónico",
"crm": "CRM",
"crm-contacts": "Contactos",
"crm-opportunities": "Oportunidades",
"crm-deals": "Oculto",
"crm-leads": "Clientes potenciales",
"crm-pipeline": "Canal",
"crm-campaign": "Campaña",
"crm-proposals": "Propuestas",
"crm-estimations": "Estimaciones",
"crm-customers": "Clientes",
"crm-activities": "Actividades",
"users": "Usuarios",
"social": "Redes sociales",
"contacts": "Contactos",
"roles": "Roles",
"role-details": "Detalles del rol",
"permissions": "Permisos",
"support": "Centro de soporte",
"tickets": "Lista de tickets",
"ticket-details": "Detalles del ticket",
"ticket-create": "Nuevo ticket",
"file-manager": "Administrador de Archivos",
"chat": "Chat",
"calendar": "Calendario",
"invoice": "Factura",
"invoices": "Facturas",
"invoice-details": "Factura Única",
"invoice-create": "Nueva Factura",
"otherapps": "Otras Aplicaciones",
"companies": "Empresas",
"clients": "Clientes",
"outlook": "Vista de Outlook",
"vote-list": "Lista de Votos",
"issue-tracker": "Seguimiento de Incidencias",
"api-keys": "Claves API",
"blog": "Blog",
"article": "Artículo",
"pin-board": "Tablón de Anuncios",
"forum-view": "Vista del foro",
"forum-post": "Publicación del foro",
"pages": "Páginas",
"profile": "Perfil",
"pages-faq": "Preguntas frecuentes",
"pages-pricing": "Precios",
"pages-empty": "Página vacía",
"pages-timeline": "Cronología",
"pages-sitemap": "Mapa del sitio",
"pages-search-results": "Resultados de la búsqueda",
"pages-coming-soon": "Próximamente",
"pages-terms-conditions": "Términos y condiciones",
"miscellaneous": "Varios",
"misc-sortable": "Lista ordenable",
"misc-text-diff": "Diferencia de texto",
"misc-pdf-viewer": "Visor de PDF",
"misc-i18": "Soporte para i18",
"misc-sweet-alerts": "Alertas Sweet",
"misc-idle-timer": "Temporizador de inactividad",
"misc-pass-meter": "Contador de contraseñas",
"misc-live-favicon": "Favicon en vivo",
"misc-clipboard": "Portapapeles",
"misc-tree-view": "Vista de árbol",
"misc-loading-buttons": "Botones de carga",
"misc-gallery": "Galería",
"misc-masonry": "Masonería",
"misc-tour": "Recorrido",
"misc-animation": "Animación",
"authentication": "Autenticación",
"basic-auth": "Básico",
"auth-sign-in": "Iniciar sesión",
"auth-sign-up": "Registrarse",
"auth-reset-pass": "Restablecer contraseña",
"auth-new-pass": "Nueva contraseña",
"auth-two-factor": "Doble factor",
"auth-lock-screen": "Bloquear Pantalla",
"auth-success-mail": "Correo correcto",
"auth-login-pin": "Iniciar sesión con PIN",
"auth-delete-account": "Eliminar cuenta",
"cover-auth": "Portada",
"auth-2-sign-in": "Iniciar sesión",
"auth-2-sign-up": "Registrarse",
"auth-2-reset-pass": "Restablecer contraseña",
"auth-2-new-pass": "Nueva contraseña",
"auth-2-two-factor": "Doble factor",
"auth-2-lock-screen": "Pantalla de bloqueo",
"auth-2-success-mail": "Correo correcto",
"auth-2-login-pin": "Iniciar sesión con PIN",
"auth-2-delete-account": "Eliminar cuenta",
"error-pages": "Páginas de error",
"error-400": "400",
"error-401": "401",
"error-403": "403",
"error-404": "404",
"error-408": "408",
"error-500": "500",
"maintenance": "Mantenimiento",
"layout-options": "Opciones de diseño",
"layouts-scrollable": "Desplazable",
"layouts-compact": "Compacto",
"layouts-boxed": "Encajado",
"layouts-horizontal": "Horizontal",
"layouts-preloader": "Precargador",
"sidebars": "Barras laterales",
"sidebar-dark": "Menú oscuro",
"sidebar-gradient": "Menú degradado",
"sidebar-gray": "Menú Gris",
"sidebar-image": "Menú imagen",
"sidebar-compact": "Menú compacto",
"sidebar-icon-view": "Menú vista de iconos",
"sidebar-on-hover": "Menú al pasar el cursor",
"sidebar-on-hover-active": "Activo al pasar el cursor",
"sidebar-offcanvas": "Menú fuera del lienzo",
"sidebar-no-icons": "Sin iconos con líneas",
"sidebar-with-lines": "Barra lateral con líneas",
"sidebar-user": "Con usuario",
"topbar": "Barra superior",
"topbar-light": "Barra superior iluminada",
"topbar-gray": "Barra superior Gris",
"topbar-gradient": "Barra superior con degradado",
"topbar-sub-items": "Barra superior con subelementos",
"topbar-tools": "Barra superior con herramientas",
"base-ui": "IU base",
"ui-accordions": "Acordeones",
"ui-alerts": "Alertas",
"ui-images": "Imágenes",
"ui-badges": "Insignias",
"ui-breadcrumb": "Ruta de navegación",
"ui-buttons": "Botones",
"ui-cards": "Tarjetas",
"ui-carousel": "Carrusel",
"ui-collapse": "Contraer",
"ui-colors": "Colores",
"ui-dropdowns": "Desplegables",
"ui-videos": "Vídeos",
"ui-grid": "Opciones de cuadrícula",
"ui-links": "Enlaces",
"ui-list-group": "Grupo de listas",
"ui-modals": "Modales",
"ui-notifications": "Notificaciones",
"ui-offcanvas": "Fuera del lienzo",
"ui-placeholders": "Marcadores de posición",
"ui-pagination": "Paginación",
"ui-popovers": "Ventanas emergentes",
"ui-progress": "Progreso",
"ui-scrollspy": "Espía de desplazamiento",
"ui-spinners": "Giros giratorios",
"ui-tabs": "Pestañas",
"ui-tooltips": "Información sobre herramientas",
"ui-typography": "Tipografía",
"ui-utilities": "Utilidades",
"widgets": "Widgets",
"metrics": "Métricas",
"charts": "Gráficos",
"apex-charts": "Gráficos de ápice",
"charts-apex-area": "Área",
"charts-apex-bar": "Barra",
"charts-apex-bubble": "Burbuja",
"charts-apex-candlestick": "Vela",
"charts-apex-column": "Columna",
"charts-apex-heatmap": "Mapa de calor",
"charts-apex-line": "Línea",
"charts-apex-mixed": "Mixto",
"charts-apex-timeline": "Línea de tiempo",
"charts-apex-boxplot": "Diagrama de caja",
"charts-apex-treemap": "Mapa de árbol",
"charts-apex-pie": "Circular",
"charts-apex-radar": "Radar",
"charts-apex-radialbar": "RadialBar",
"charts-apex-scatter": "Dispersión",
"charts-apex-polar-area": "Área polar",
"charts-apex-sparklines": "Minigráficos",
"charts-apex-range": "Rango",
"charts-apex-funnel": "Embudo",
"charts-apex-slope": "Pendiente",
"chartjs": "Chart Js",
"chartjs-line": "Línea",
"chartjs-bar": "Barra",
"chartjs-pie": "Circular",
"chartjs-scatter": "Dispersión",
"chartjs-geo-map": "Mapa geográfico",
"chartjs-gauge": "Indicador",
"chartjs-candlestick": "Vela",
"chartjs-area": "Área",
"chartjs-radar": "Radar",
"chartjs-heatmap": "Mapa de calor",
"chartjs-other": "Otro",
"charts-apextree": "Árbol de ápices",
"charts-apexsankey": "Apex Sankey",
"forms": "Formularios",
"form-elements": "Elementos básicos",
"form-pickers": "Selectores",
"form-select": "Seleccionar",
"form-validation": "Validación",
"form-wizard": "Asistente",
"form-fileuploads": "Subida de archivos",
"form-text-editors": "Editores de texto",
"form-range-slider": "Control deslizante de rango",
"form-layouts": "Diseños",
"form-other-plugins": "Otros complementos",
"tables": "Tablas",
"tables-static": "Tablas estáticas",
"tables-custom": "Tablas personalizadas",
"datatables": "Tablas de datos",
"tables-datatables-basic": "Básico",
"tables-datatables-export-data": "Exportar datos",
"tables-datatables-select": "Seleccionar",
"tables-datatables-ajax": "Ajax",
"tables-datatables-javascript": "Código fuente de JavaScript",
"tables-datatables-rendering": "Renderizado de datos",
"tables-datatables-scroll": "Desplazarse",
"tables-datatables-columns": "Mostrar y ocultar columnas",
"tables-datatables-child-rows": "Filas secundarias",
"tables-datatables-column-searching": "Búsqueda de columnas",
"tables-datatables-range-search": "Búsqueda por rango",
"tables-datatables-fixed-header": "Encabezado fijo",
"tables-datatables-fixed-columns": "Columnas fijas",
"tables-datatables-add-rows": "Añadir filas",
"tables-datatables-checkbox-select": "Seleccionar casilla de verificación",
"icons": "Iconos",
"icons-tabler": "Tabler",
"icons-lucide": "Lucide",
"icons-flags": "Banderas",
"maps": "Mapas",
"maps-google": "Google Maps",
"maps-vector": "Mapas vectoriales",
"maps-leaflet": "Mapas de folletos",
"menu-levels": "Niveles del menú",
"second-level": "Segundo nivel",
"third-level": "Segundo nivel",
"disabled-menu": "Menú deshabilitado",
"special-menu": "Menú especial",
"mega-menu": "Mega Menú",
"pages-title": "Página personalizada",
"layouts-title": "Diseños",
"components-title": "Componente",
"items-title": "Elementos del menú",
"demo-text": "Esta es la versión en inglés del texto utilizado en esta demostración. Sirve como contenido de idioma predeterminado antes de aplicar la traducción. Al configurar la compatibilidad con i18n, este texto puede se puede cambiar fácilmente a otros idiomas, lo que garantiza una experiencia de usuario más inclusiva y accesible"
}

View File

@@ -0,0 +1,274 @@
{
"user-role": "कला निर्देशक",
"menu-title": "मेनू",
"dashboards": "डैशबोर्ड",
"dashboard-one": "डैशबोर्ड v.1",
"dashboard-two": "डैशबोर्ड v.2",
"dashboard-three": "डैशबोर्ड v.3",
"dashboard-four": "डैशबोर्ड v.4",
"dashboard-soon": "जल्द",
"dashboard-five": "डैशबोर्ड v.5",
"landing-page": "लैंडिंग पेज",
"apps-title": "ऐप्स",
"ecommerce": "ईकॉमर्स",
"eco-products": "उत्पाद",
"eco-pro-listing": "सूचीकरण",
"eco-pro-grid": "उत्पाद ग्रिड",
"eco-pro-details": "उत्पाद विवरण",
"eco-pro-add": "उत्पाद जोड़ें",
"eco-categories": "श्रेणियाँ",
"eco-orders": "ऑर्डर",
"eco-orders-list": "ऑर्डर",
"eco-order-details": "ऑर्डर विवरण",
"eco-customers": "ग्राहक",
"eco-sellers": "विक्रेता",
"eco-sellers-list": "विक्रेता",
"eco-sellers-details": "विक्रेता विवरण",
"eco-reviews": "समीक्षाएँ",
"eco-reports": "रिपोर्ट",
"eco-pro-views": "उत्पाद दृश्य",
"eco-pro-sales": "बिक्री",
"email": "ईमेल",
"email-inbox": "इनबॉक्स",
"email-details": "विवरण",
"email-compose": "रचना",
"email-templates": "ईमेल टेम्पलेट्स",
"users": "उपयोगकर्ता",
"crm": "सीआरएम",
"crm-users": "उपयोगकर्ता",
"crm-contacts": "संपर्क",
"crm-opportunities": "अवसर",
"crm-deals": "डील्स",
"crm-leads": "लीड्स",
"crm-pipeline": "पाइपलाइन",
"crm-campaign": "अभियान",
"crm-proposals": "प्रस्ताव",
"crm-estimations": "अनुमान",
"crm-customers": "ग्राहक",
"crm-activities": "गतिविधियाँ",
"social": "सोशल फ़ीड",
"contacts": "संपर्क",
"roles": "भूमिकाएँ",
"role-details": "भूमिका विवरण",
"permissions": "अनुमतियाँ",
"support": "सहायता केंद्र",
"tickets": "टिकट सूची",
"ticket-details": "टिकट विवरण",
"ticket-create": "नया टिकट",
"file-manager": "फ़ाइल प्रबंधक",
"chat": "चैट",
"calendar": "कैलेंडर",
"invoice": "चालान",
"invoices": "चालान",
"invoice-details": "एकल चालान",
"invoice-create": "नया चालान",
"otherapps": "अन्य ऐप्स",
"companies": "कंपनियाँ",
"clients": "ग्राहक",
"outlook": "आउटलुक दृश्य",
"vote-list": "वोट सूची",
"issue-tracker": "मुद्दा ट्रैकर",
"api-keys": "एपीआई कुंजियाँ",
"blog": "ब्लॉग",
"article": "लेख",
"pin-board": "पिन बोर्ड",
"forum-view": "फ़ोरम दृश्य",
"forum-post": "फ़ोरम पोस्ट",
"pages": "पृष्ठ",
"profile": "प्रोफ़ाइल",
"pages-faq": "अक्सर पूछे जाने वाले प्रश्न",
"pages-pricing": "मूल्य निर्धारण",
"pages-empty": "खाली पृष्ठ",
"pages-timeline": "समयरेखा",
"pages-sitemap": "साइटमैप",
"pages-search-results": "खोज परिणाम",
"pages-coming-soon": "जल्द ही आने वाले",
"pages-terms-conditions": "नियम और शर्तें",
"miscellaneous": "विविध",
"misc-sortable": "सॉर्टेबल सूची",
"misc-text-diff": "टेक्स्ट अंतर",
"misc-pdf-viewer": "पीडीएफ व्यूअर",
"misc-i18": "i18 सहायता",
"misc-sweet-alerts": "स्वीट अलर्ट",
"misc-idle-timer": "निष्क्रिय टाइमर",
"misc-pass-meter": "पासवर्ड मीटर",
"misc-live-favicon": "लाइव फ़ेविकॉन",
"misc-clipboard": "क्लिपबोर्ड",
"misc-tree-view": "ट्री व्यू",
"misc-loading-buttons": "लोडिंग बटन",
"misc-gallery": "गैलरी",
"misc-masonry": "मेसनरी",
"misc-tour": "टूर",
"misc-animation": "एनीमेशन",
"authentication": "प्रमाणीकरण",
"basic-auth": "बेसिक",
"auth-sign-in": "साइन इन करें",
"auth-sign-up": "साइन अप करें",
"auth-reset-pass": "पासवर्ड रीसेट करें",
"auth-new-pass": "नया पासवर्ड",
"auth-two-factor": "दो कारक",
"auth-lock-screen": "लॉक स्क्रीन",
"auth-success-mail": "सफल मेल",
"auth-login-pin": "पिन के साथ लॉगिन करें",
"auth-delete-account": "खाता हटाएं",
"cover-auth": "कवर",
"auth-2-sign-in": "साइन इन करें",
"auth-2-sign-up": "साइन अप करें",
"auth-2-reset-pass": "पासवर्ड रीसेट करें",
"auth-2-new-pass": "नया पासवर्ड",
"auth-2-two-factor": "दो कारक",
"auth-2-lock-screen": "लॉक स्क्रीन",
"auth-2-success-mail": "सफल मेल",
"auth-2-login-pin": "पिन के साथ लॉगिन करें",
"auth-2-delete-account": "खाता हटाएं",
"error-pages": "त्रुटि पृष्ठ",
"error-400": "400",
"error-401": "401",
"error-403": "403",
"error-404": "404",
"error-408": "408",
"error-500": "500",
"maintenance": "रखरखाव",
"layout-options": "लेआउट विकल्प",
"layouts-scrollable": "स्क्रॉल करने योग्य",
"layouts-compact": "कॉम्पैक्ट",
"layouts-boxed": "बॉक्स्ड",
"layouts-horizontal": "क्षैतिज",
"layouts-preloader": "प्रीलोडर",
"sidebars": "साइडबार",
"sidebar-dark": "डार्क मेनू",
"sidebar-gradient": "ग्रेडिएंट मेनू",
"sidebar-gray": "ग्रे मेनू",
"sidebar-image": "इमेज मेनू",
"sidebar-compact": "कॉम्पैक्ट मेनू",
"sidebar-icon-view": "आइकन व्यू मेनू",
"sidebar-on-hover": "होवर मेनू पर",
"sidebar-on-hover-active": "होवर एक्टिव पर",
"sidebar-offcanvas": "ऑफकैनवस मेनू",
"sidebar-no-icons": "लाइनों के साथ कोई आइकन नहीं",
"sidebar-with-lines": "लाइनों के साथ साइडबार",
"sidebar-user": "यूज़र के साथ",
"topbar": "टॉपबार",
"topbar-light": "लाइट टॉपबार",
"topbar-gray": "ग्रे टॉपबार",
"topbar-gradient": "ग्रेडिएंट टॉपबार",
"topbar-sub-items": "सब आइटम के साथ टॉपबार",
"topbar-tools": "टूल्स के साथ टॉपबार",
"base-ui": "बेस यूआई",
"ui-accordions": "एकॉर्डियन",
"ui-alerts": "अलर्ट",
"ui-images": "इमेज",
"ui-badges": "बैज",
"ui-breadcrumb": "ब्रेडक्रंब",
"ui-buttons": "बटन",
"ui-cards": "कार्ड",
"ui-carousel": "कैरोसेल",
"ui-collapse": "संक्षिप्त करें",
"ui-colors": "रंग",
"ui-dropdowns": "ड्रॉपडाउन",
"ui-videos": "वीडियो",
"ui-grid": "ग्रिड विकल्प",
"ui-links": "लिंक",
"ui-list-group": "सूची समूह",
"ui-modals": "मॉडल",
"ui-notifications": "सूचनाएं",
"ui-offcanvas": "ऑफकैनवास",
"ui-placeholders": "प्लेसहोल्डर",
"ui-pagination": "पृष्ठांकन",
"ui-popovers": "पॉपओवर",
"ui-progress": "प्रगति",
"ui-scrollspy": "Scrollspy",
"ui-spinners": "स्पिनर",
"ui-tabs": "टैब",
"ui-tooltips": "टूलटिप्स",
"ui-typography": "टाइपोग्राफी",
"ui-utilities": "उपयोगिताएँ",
"widgets": "विजेट्स",
"metrics": "मेट्रिक्स",
"graphs": "ग्राफ़",
"charts": "चार्ट",
"apex-charts": "एपेक्स चार्ट",
"charts-apex-area": "क्षेत्र",
"charts-apex-bar": "बार",
"charts-apex-bubble": "बबल",
"charts-apex-candlestick": "कैंडलस्टिक",
"charts-apex-column": "कॉलम",
"charts-apex-heatmap": "हीटमैप",
"charts-apex-line": "लाइन",
"charts-apex-mixed": "मिश्रित",
"charts-apex-timeline": "समयरेखा",
"charts-apex-boxplot": "बॉक्सप्लॉट",
"charts-apex-treemap": "ट्रीमैप",
"charts-apex-pie": "पाई",
"charts-apex-radar": "रडार",
"charts-apex-radialbar": "रेडियलबार",
"charts-apex-scatter": "स्कैटर",
"charts-apex-polar-area": "ध्रुवीय क्षेत्र",
"charts-apex-sparklines": "स्पार्कलाइन्स",
"charts-apex-range": "रेंज",
"charts-apex-funnel": "फ़नल",
"charts-apex-slope": "ढलान",
"chartjs": "चार्ट js",
"chartjs-line": "लाइन",
"chartjs-bar": "बार",
"chartjs-pie": "पाई",
"chartjs-scatter": "स्कैटर",
"chartjs-geo-map": "GEO मैप",
"chartjs-gauge": "गेज",
"chartjs-candlestick": "कैंडलस्टिक",
"chartjs-area": "क्षेत्र",
"chartjs-radar": "रडार",
"chartjs-heatmap": "हीटमैप",
"chartjs-other": "अन्य",
"charts-apextree": "एपेक्स ट्री",
"charts-apexsankey": "एपेक्स सेंकी",
"forms": "फ़ॉर्म",
"form-elements": "बेसिक एलिमेंट्स",
"form-pickers": "पिकर्स",
"form-select": "सिलेक्ट",
"form-validation": "वैलिडेशन",
"form-wizard": "विज़ार्ड",
"form-fileuploads": "फाइल अपलोड्स",
"form-text-editors": "टेक्स्ट एडिटर्स",
"form-range-slider": "रेंज स्लाइडर",
"form-layouts": "लेआउट्स",
"form-other-plugins": "अन्य प्लगइन्स",
"tables": "टेबल्स",
"tables-static": "स्टेटिक टेबल्स",
"tables-custom": "कस्टम टेबल्स",
"datatables": "डेटाटेबल्स",
"tables-datatables-basic": "बेसिक",
"tables-datatables-export-data": "डेटा एक्सपोर्ट करें",
"tables-datatables-select": "चयन करें",
"tables-datatables-ajax": "Ajax",
"tables-datatables-javascript": "जावास्क्रिप्ट स्रोत",
"tables-datatables-rendering": "डेटा रेंडरिंग",
"tables-datatables-scroll": "स्क्रॉल करें",
"tables-datatables-columns": "कॉलम दिखाएँ और छिपाएँ",
"tables-datatables-child-rows": "चाइल्ड पंक्तियाँ",
"tables-datatables-column-searching": "कॉलम खोज",
"tables-datatables-range-search": "रेंज खोज",
"tables-datatables-fixed-header": "फिक्स्ड हेडर",
"tables-datatables-fixed-columns": "निश्चित कॉलम",
"tables-datatables-add-rows": "पंक्तियाँ जोड़ें",
"tables-datatables-checkbox-select": "चेकबॉक्स चुनें",
"icons": "आइकन",
"icons-tabler": "टेबलर",
"icons-lucide": "ल्यूसाइड",
"icons-flags": "फ़्लैग",
"maps": "मैप्स",
"maps-google": "गूगल मैप्स",
"maps-vector": "वेक्टर मैप्स",
"maps-leaflet": "लीफ़लेट मैप्स",
"menu-levels": "मेनू लेवल",
"second-level": "दूसरा लेवल",
"third-level": "दूसरा लेवल",
"disabled-menu": "अक्षम मेनू",
"special-menu": "विशेष मेनू",
"mega-menu": "मेगा मेनू",
"pages-title": "कस्टम पेज",
"layouts-title": "लेआउट",
"components-title": "घटक",
"items-title": "मेनू आइटम",
"demo-text": "यह इस डेमो में प्रयुक्त पाठ का अंग्रेजी संस्करण है। अनुवाद लागू होने से पहले यह डिफ़ॉल्ट भाषा सामग्री के रूप में कार्य करता है। i18n समर्थन स्थापित करके, इस पाठ को आसानी से अन्य भाषाओं में बदला जा सकता है, जिससे अधिक समावेशी और सुलभ उपयोगकर्ता अनुभव सुनिश्चित हो सके।"
}

View File

@@ -0,0 +1,272 @@
{
"user-role": "Direttore artistico",
"menu-title": "Menu",
"dashboards": "Dashboard",
"dashboard-one": "Dashboard v.1",
"dashboard-two": "Dashboard v.2",
"dashboard-three": "Dashboard v.3",
"dashboard-four": "Dashboard v.4",
"dashboard-soon": "presto",
"dashboard-five": "Dashboard v.5",
"landing-page": "Pagina di destinazione",
"apps-title": "App",
"ecommerce": "Ecommerce",
"eco-products": "Prodotti",
"eco-pro-listing": "Annuncio",
"eco-pro-grid": "Griglia dei prodotti",
"eco-pro-details": "Dettagli del prodotto",
"eco-pro-add": "Aggiungi prodotto",
"eco-categories": "Categorie",
"eco-orders": "Ordini",
"eco-orders-list": "Ordini",
"eco-order-details": "Dettagli ordine",
"eco-customers": "Clienti",
"eco-sellers": "Venditori",
"eco-sellers-list": "Venditori",
"eco-sellers-details": "Dettagli venditori",
"eco-reviews": "Recensioni",
"eco-reports": "Report",
"eco-pro-views": "Visualizzazioni prodotto",
"eco-pro-sales": "Vendite",
"email": "Email",
"email-inbox": "Posta in arrivo",
"email-details": "Dettagli",
"email-compose": "Scrivi",
"email-templates": "Modelli di posta elettronica",
"users": "Utenti",
"crm": "CRM",
"crm-contacts": "Contatti",
"crm-opportunities": "Opportunità",
"crm-deals": "Oscuro",
"crm-leads": "Lead",
"crm-pipeline": "Pipeline",
"crm-campaign": "Campagna",
"crm-proposals": "Proposte",
"crm-estimations": "Stime",
"crm-customers": "Clienti",
"crm-activities": "Attività",
"social": "Feed sociale",
"contacts": "Contatti",
"roles": "Ruoli",
"role-details": "Dettagli ruolo",
"permissions": "Autorizzazioni",
"support": "Centro di supporto",
"tickets": "Elenco ticket",
"ticket-details": "Dettagli ticket",
"ticket-create": "Nuovo ticket",
"file-manager": "Gestione file",
"chat": "Chat",
"calendar": "Calendario",
"invoice": "Fattura",
"invoices": "Fatture",
"invoice-details": "Fattura singola",
"invoice-create": "Nuova fattura",
"otherapps": "Altre app",
"companies": "Aziende",
"clients": "Clienti",
"outlook": "Vista di Outlook",
"vote-list": "Elenco voti",
"issue-tracker": "Tracciamento problemi",
"api-keys": "Chiavi API",
"blog": "Blog",
"article": "Articolo",
"pin-board": "Bacheca",
"forum-view": "Vista Forum",
"forum-post": "Post del Forum",
"pages": "Pagine",
"profile": "Profilo",
"pages-faq": "FAQ",
"pages-pricing": "Prezzi",
"pages-empty": "Pagina vuota",
"pages-timeline": "Cronologia",
"pages-sitemap": "Mappa del sito",
"pages-search-results": "Risultati della ricerca",
"pages-coming-soon": "Prossimamente",
"pages-terms-conditions": "Termini e condizioni",
"miscellaneous": "Varie",
"misc-sortable": "Elenco ordinabile",
"misc-text-diff": "Confronto testo",
"misc-pdf-viewer": "Visualizzatore PDF",
"misc-i18": "Supporto i18",
"misc-sweet-alerts": "Avvisi Dolci",
"misc-idle-timer": "Timer di inattività",
"misc-pass-meter": "Misuratore password",
"misc-live-favicon": "Favicon Live",
"misc-clipboard": "Appunti",
"misc-tree-view": "Vista ad albero",
"misc-loading-buttons": "Pulsanti di caricamento",
"misc-gallery": "Galleria",
"misc-masonry": "Massoneria",
"misc-tour": "Tour",
"misc-animation": "Animazione",
"authentication": "Autenticazione",
"basic-auth": "Base",
"auth-sign-in": "Accedi",
"auth-sign-up": "Registrati",
"auth-reset-pass": "Reimposta password",
"auth-new-pass": "Nuova password",
"auth-two-factor": "A due fattori",
"auth-lock-screen": "Schermata di blocco",
"auth-success-mail": "Mail di conferma",
"auth-login-pin": "Accedi con PIN",
"auth-delete-account": "Elimina account",
"cover-auth": "Copertina",
"auth-2-sign-in": "Accedi",
"auth-2-sign-up": "Registrati",
"auth-2-reset-pass": "Reimposta password",
"auth-2-new-pass": "Nuova password",
"auth-2-two-factor": "A due fattori",
"auth-2-lock-screen": "Schermata di blocco",
"auth-2-success-mail": "Mail di conferma",
"auth-2-login-pin": "Accedi con PIN",
"auth-2-delete-account": "Elimina account",
"error-pages": "Pagine di errore",
"error-400": "400",
"error-401": "401",
"error-403": "403",
"error-404": "404",
"error-408": "408",
"error-500": "500",
"maintenance": "Manutenzione",
"layout-options": "Opzioni di Disposición",
"layouts-scrollable": "Scorrevole",
"layouts-compact": "Compatto",
"layouts-boxed": "Riquadro",
"layouts-horizontal": "Orizzontale",
"layouts-preloader": "Precaricatore",
"sidebars": "Barre laterali",
"sidebar-dark": "Menu scuro",
"sidebar-gradient": "Menu sfumato",
"sidebar-gray": "Menu Grigia",
"sidebar-image": "Menu immagine",
"sidebar-compact": "Menu compatto",
"sidebar-icon-view": "Menu vista icone",
"sidebar-on-hover": "Menu al passaggio del mouse",
"sidebar-on-hover-active": "Attivo al passaggio del mouse",
"sidebar-offcanvas": "Menu fuori canvas",
"sidebar-no-icons": "Nessuna icona con Linee",
"sidebar-with-lines": "Barra laterale con linee",
"sidebar-user": "Con utente",
"topbar": "Barra superiore",
"topbar-light": "Barra superiore leggera",
"topbar-gray": "Barra superiore grigia",
"topbar-gradient": "Barra superiore sfumata",
"topbar-sub-items": "Barra superiore con sottoelementi",
"topbar-tools": "Barra superiore con strumenti",
"base-ui": "Interfaccia utente base",
"ui-accordions": "Fisarmoniche",
"ui-alerts": "Avvisi",
"ui-images": "Immagini",
"ui-badges": "Badge",
"ui-breadcrumb": "Breadcrumb",
"ui-buttons": "Pulsanti",
"ui-cards": "Schede",
"ui-carousel": "Carosello",
"ui-collapse": "Comprimi",
"ui-colors": "Colori",
"ui-dropdowns": "Menu a discesa",
"ui-videos": "Video",
"ui-grid": "Opzioni griglia",
"ui-links": "Link",
"ui-list-group": "Gruppo elenco",
"ui-modals": "Modali",
"ui-notifications": "Notifiche",
"ui-offcanvas": "Offcanvas",
"ui-placeholders": "Segnaposto",
"ui-pagination": "Impaginazione",
"ui-popovers": "Popover",
"ui-progress": "Avanzamento",
"ui-scrollspy": "Scrollspy",
"ui-spinners": "Spinner",
"ui-tabs": "Schede",
"ui-tooltips": "Strumenti",
"ui-typography": "Tipografia",
"ui-utilities": "Utilità",
"widgets": "Widget",
"metrics": "Metriche",
"charts": "Grafici",
"apex-charts": "Grafici Apex",
"charts-apex-area": "Area",
"charts-apex-bar": "Barra",
"charts-apex-bubble": "Bolla",
"charts-apex-candlestick": "Candela",
"charts-apex-column": "Colonna",
"charts-apex-heatmap": "Mappa termica",
"charts-apex-line": "Linea",
"charts-apex-mixed": "Mista",
"charts-apex-timeline": "Linea temporale",
"charts-apex-boxplot": "Boxplot",
"charts-apex-treemap": "Mappa ad albero",
"charts-apex-pie": "Torta",
"charts-apex-radar": "Radar",
"charts-apex-radialbar": "RadialBar",
"charts-apex-scatter": "Dispersione",
"charts-apex-polar-area": "Area Polare",
"charts-apex-sparklines": "Sparkline",
"charts-apex-range": "Intervallo",
"charts-apex-funnel": "Imbuto",
"charts-apex-slope": "Pendenza",
"chartjs": "Grafico Js",
"chartjs-line": "Linea",
"chartjs-bar": "Barra",
"chartjs-pie": "Torta",
"chartjs-scatter": "Dispersione",
"chartjs-geo-map": "Mappa GEO",
"chartjs-gauge": "Indicatore",
"chartjs-candlestick": "Candeliere",
"chartjs-area": "Area",
"chartjs-radar": "Radar",
"chartjs-heatmap": "Mappa termica",
"chartjs-other": "Altro",
"charts-apextree": "Albero Apex",
"charts-apexsankey": "Apex Sankey",
"forms": "Moduli",
"form-elements": "Elementi di base",
"form-pickers": "Selettori",
"form-select": "Seleziona",
"form-validation": "Convalida",
"form-wizard": "Procedura guidata",
"form-fileuploads": "Caricamento file",
"form-text-editors": "Editor di testo",
"form-range-slider": "Cursore intervallo",
"form-layouts": "Disposición",
"form-other-plugins": "Altri plugin",
"tables": "Tabelle",
"tables-static": "Tabelle statiche",
"tables-custom": "Tabelle personalizzate",
"datatables": "DataTable",
"tables-datatables-basic": "Base",
"tables-datatables-export-data": "Esporta dati",
"tables-datatables-select": "Seleziona",
"tables-datatables-ajax": "Ajax",
"tables-datatables-javascript": "Sorgente JavaScript",
"tables-datatables-rendering": "Rendering dei dati",
"tables-datatables-scroll": "Scorrimento",
"tables-datatables-columns": "Mostra e nascondi colonna",
"tables-datatables-child-rows": "Righe figlio",
"tables-datatables-column-searching": "Ricerca per colonna",
"tables-datatables-range-search": "Ricerca per intervallo",
"tables-datatables-fixed-header": "Fisso Intestazione",
"tables-datatables-fixed-columns": "Colonne fisse",
"tables-datatables-add-rows": "Aggiungi righe",
"tables-datatables-checkbox-select": "Selezione casella di controllo",
"icons": "Icone",
"icons-tabler": "Gestione tabelle",
"icons-lucide": "Lucide",
"icons-flags": "Flag",
"maps": "Mappe",
"maps-google": "Google Maps",
"maps-vector": "Mappe vettoriali",
"maps-leaflet": "Mappe volantino",
"menu-levels": "Livelli menu",
"second-level": "Secondo livello",
"third-level": "Secondo livello",
"disabled-menu": "Menu disabilitato",
"special-menu": "Menu speciale",
"mega-menu": "Mega Menu",
"pages-title": "Pagina personalizzata",
"layouts-title": "Disposición",
"components-title": "Componente",
"items-title": "Voci di menu",
"demo-text": "Questa è la versione inglese del testo utilizzato in questa demo. Funge da contenuto linguistico predefinito prima dell'applicazione della traduzione. Impostando il supporto i18n, questo testo può può essere facilmente convertito in altre lingue, garantendo un'esperienza utente più inclusiva e accessibile."
}

View File

@@ -0,0 +1,273 @@
{
"user-role": "Арт-директор",
"menu-title": "Меню",
"dashboards": "Панели",
"dashboard-one": "Панель v.1",
"dashboard-two": "Панель v.2",
"dashboard-three": "Панель v.3",
"dashboard-four": "Панель v.4",
"dashboard-five": "Панель v.5",
"dashboard-soon": "скоро",
"landing-page": "Целевая страница",
"apps-title": "Приложения",
"ecommerce": "Электронная коммерция",
"eco-products": "Продукты",
"eco-pro-listing": "Листинг",
"eco-pro-grid": "Сетка продуктов",
"eco-pro-details": "Сведения о продукте",
"eco-pro-add": "Добавить продукт",
"eco-categories": "Категории",
"eco-orders": "Заказы",
"eco-orders-list": "Заказы",
"eco-order-details": "Сведения о заказе",
"eco-customers": "Клиенты",
"eco-sellers": "Продавцы",
"eco-sellers-list": "Продавцы",
"eco-sellers-details": "Сведения о продавцах",
"eco-reviews": "Обзоры",
"eco-reports": "Отчеты",
"eco-pro-views": "Просмотры продуктов",
"eco-pro-sales": "Продажи",
"email": "Электронная почта",
"email-inbox": "Входящие",
"email-details": "Сведения",
"email-compose": "Написать",
"email-templates": "Шаблоны электронной почты",
"users": "Пользователи",
"file-manager": "Менеджер файлов",
"crm": "CRM",
"crm-contacts": "Контакты",
"crm-opportunities": "Возможности",
"crm-deals": "Тёмные",
"crm-leads": "Лиды",
"crm-pipeline": "Воронина продаж",
"crm-campaign": "Кампания",
"crm-proposals": "Предложения",
"crm-estimations": "Оценки",
"crm-customers": "Клиенты",
"crm-activities": "Действия",
"social": "Социальная лента",
"contacts": "Контакты",
"roles": "Роли",
"role-details": "Информация о роли",
"permissions": "Разрешения",
"support": "Центр поддержки",
"tickets": "Список заявок",
"ticket-details": "Информация о заявке",
"ticket-create": "Новая заявка",
"chat": "Чат",
"calendar": "Календарь",
"invoice": "Счет-фактура",
"invoices": "Счета-фактуры",
"invoice-details": "Один счет-фактура",
"invoice-create": "Новый счет-фактура",
"otherapps": "Другие приложения",
"companies": "Компании",
"clients": "Клиенты",
"outlook": "Вид Outlook",
"vote-list": "Список голосов",
"issue-tracker": "Проблема Трекер",
"api-keys": "Ключи API",
"blog": "Блог",
"article": "Статья",
"pin-board": "Доска объявлений",
"forum-view": "Обзор форума",
"forum-post": "Сообщение форума",
"pages": "Страницы",
"profile": "Профиль",
"pages-faq": "FAQ",
"pages-pricing": "Ценообразование",
"pages-empty": "Пустая страница",
"pages-timeline": "Хронология",
"pages-sitemap": "Карта сайта",
"pages-search-results": "Результаты поиска",
"pages-coming-soon": "Скоро",
"pages-terms-conditions": "Условия и положения",
"miscellaneous": "Разное",
"misc-sortable": "Сортируемый список",
"misc-text-diff": "Разница в тексте",
"misc-pdf-viewer": "Просмотрщик PDF",
"misc-i18": "Поддержка i18",
"misc-sweet-alerts": "Сладкие оповещения",
"misc-idle-timer": "Таймер простоя",
"misc-pass-meter": "Счетчик паролей",
"misc-live-favicon": "Живая иконка",
"misc-clipboard": "Буфер обмена",
"misc-tree-view": "Дерево",
"misc-loading-buttons": "Кнопки загрузки",
"misc-gallery": "Галерея",
"misc-masonry": "Кладка",
"misc-tour": "Тур",
"misc-animation": "Анимация",
"authentication": "Аутентификация",
"basic-auth": "Базовая",
"auth-sign-in": "Войти",
"auth-sign-up": "Зарегистрироваться",
"auth-reset-pass": "Сбросить пароль",
"auth-new-pass": "Новый пароль",
"auth-two-factor": "Двухфакторная",
"auth-lock-screen": "Блокировка экрана",
"auth-success-mail": "Письмо об успешной авторизации",
"auth-login-pin": "Войти с PIN-кодом",
"auth-delete-account": "Удалить аккаунт",
"cover-auth": "Обложка",
"auth-2-sign-in": "Войти",
"auth-2-sign-up": "Зарегистрироваться",
"auth-2-reset-pass": "Сбросить пароль",
"auth-2-new-pass": "Новый пароль",
"auth-2-two-factor": "Двухфакторная",
"auth-2-lock-screen": "Блокировка экрана",
"auth-2-success-mail": "Письмо об успешной авторизации",
"auth-2-login-pin": "Войти с PIN-кодом",
"auth-2-delete-account": "Удалить аккаунт",
"error-pages": "Страницы ошибок",
"error-400": "400",
"error-401": "401",
"error-403": "403",
"error-404": "404",
"error-408": "408",
"error-500": "500",
"maintenance": "Обслуживание",
"layout-options": "Параметры макета",
"layouts-scrollable": "Прокручиваемый",
"layouts-compact": "Компактный",
"layouts-boxed": "Коробочный",
"layouts-horizontal": "Горизонтальный",
"layouts-preloader": "Предзагрузчик",
"sidebars": "Боковые панели",
"sidebar-dark": "Тёмное меню",
"sidebar-gradient": "Градиентное меню",
"sidebar-gray": "Серая меню",
"sidebar-image": "Меню изображения",
"sidebar-compact": "Компактное меню",
"sidebar-icon-view": "Меню вида значков",
"sidebar-on-hover": "Меню при наведении",
"sidebar-on-hover-active": "Активно при наведении",
"sidebar-offcanvas": "Меню вне холста",
"sidebar-no-icons": "Нет значков с Линии",
"sidebar-with-lines": "Боковая панель с линиями",
"sidebar-user": "С пользователем",
"topbar": "Верхняя панель",
"topbar-light": "Светлая верхняя панель",
"topbar-gray": "Серая верхняя панель",
"topbar-gradient": "Градиентная верхняя панель",
"topbar-sub-items": "Верхняя панель с подэлементами",
"topbar-tools": "Верхняя панель с инструментами",
"base-ui": "Базовый пользовательский интерфейс",
"ui-accordions": "Аккордеоны",
"ui-alerts": "Оповещения",
"ui-images": "Изображения",
"ui-badges": "Значки",
"ui-breadcrumb": "Хлебная крошка",
"ui-buttons": "Кнопки",
"ui-cards": "Карточки",
"ui-carousel": "Карусель",
"ui-collapse": "Свернуть",
"ui-colors": "Цвета",
"ui-dropdowns": "Раскрывающиеся списки",
"ui-videos": "Видео",
"ui-grid": "Параметры сетки",
"ui-links": "Ссылки",
"ui-list-group": "Группа списков",
"ui-modals": "Модальные окна",
"ui-notifications": "Уведомления",
"ui-offcanvas": "Вне канвы",
"ui-placeholders": "Заполнители",
"ui-pagination": "Разбивка на страницы",
"ui-popovers": "Всплывающие окна",
"ui-progress": "Прогресс",
"ui-scrollspy": "Scrollspy",
"ui-spinners": "Спиннеры",
"ui-tabs": "Вкладки",
"ui-tooltips": "Подсказки",
"ui-typography": "Типографика",
"ui-utilities": "Утилиты",
"widgets": "Виджеты",
"metrics": "Метрики",
"graphs": "Графики",
"charts": "Диаграммы",
"apex-charts": "Диаграммы Apex",
"charts-apex-area": "Область",
"charts-apex-bar": "Столбчатая диаграмма",
"charts-apex-bubble": "Пузырьковая диаграмма",
"charts-apex-candlestick": "Свеча",
"charts-apex-column": "Столбчатая диаграмма",
"charts-apex-heatmap": "Тепловая карта",
"charts-apex-line": "Линия",
"charts-apex-mixed": "Смешанная",
"charts-apex-timeline": "Временная шкала",
"charts-apex-boxplot": "Ящик с ящичками",
"charts-apex-treemap": "Древовидная карта",
"charts-apex-pie": "Круговая диаграмма",
"charts-apex-radar": "Радар",
"charts-apex-radialbar": "Радиальная полоса",
"charts-apex-scatter": "Точечная диаграмма",
"charts-apex-polar-area": "Полярная область",
"charts-apex-sparklines": "Спарклайны",
"charts-apex-range": "Диапазон",
"charts-apex-funnel": "Воронка",
"charts-apex-slope": "Наклон",
"chartjs": "Диаграмма JS",
"chartjs-line": "Линия",
"chartjs-bar": "Столбчатая диаграмма",
"chartjs-pie": "Круговая диаграмма",
"chartjs-scatter": "Точечная диаграмма",
"chartjs-geo-map": "Карта ГЕО",
"chartjs-gauge": "Датчик",
"chartjs-candlestick": "Свеча",
"chartjs-area": "Область",
"chartjs-radar": "Радар",
"chartjs-heatmap": "Тепловая карта",
"chartjs-other": "Другое",
"charts-apextree": "Дерево Apex",
"charts-apexsankey": "Apex Sankey",
"forms": "Формы",
"form-elements": "Базовые элементы",
"form-pickers": "Выборщики",
"form-select": "Выбор",
"form-validation": "Проверка",
"form-wizard": "Мастер",
"form-fileuploads": "Загрузки файлов",
"form-text-editors": "Текстовые редакторы",
"form-range-slider": "Ползунок диапазона",
"form-layouts": "Макеты",
"form-other-plugins": "Другие плагины",
"tables": "Таблицы",
"tables-static": "Статические таблицы",
"tables-custom": "Пользовательские таблицы",
"datatables": "Таблицы данных",
"tables-datatables-basic": "Базовый",
"tables-datatables-export-data": "Экспорт данных",
"tables-datatables-select": "Выбрать",
"tables-datatables-ajax": "Ajax",
"tables-datatables-javascript": "Исходный код Javascript",
"tables-datatables-rendering": "Отображение данных",
"tables-datatables-scroll": "Прокрутка",
"tables-datatables-columns": "Показать и скрыть столбец",
"tables-datatables-child-rows": "Дочерние строки",
"tables-datatables-column-searching": "Поиск по столбцам",
"tables-datatables-range-search": "Поиск по диапазону",
"tables-datatables-fixed-header": "Фиксированный заголовок",
"tables-datatables-fixed-columns": "Фиксированные столбцы",
"tables-datatables-add-rows": "Добавить строки",
"tables-datatables-checkbox-select": "Выбрать флажок",
"icons": "Иконки",
"icons-tabler": "Tabler",
"icons-lucide": "Lucide",
"icons-flags": "Флаги",
"maps": "Карты",
"maps-google": "Карты Google",
"maps-vector": "Векторные карты",
"maps-leaflet": "Карты листовок",
"menu-levels": "Уровни меню",
"second-level": "Второй уровень",
"third-level": "Второй уровень",
"disabled-menu": "Отключенное меню",
"special-menu": "Специальное меню",
"mega-menu": "Мега Меню",
"pages-title": "Пользовательская страница",
"layouts-title": "Макеты",
"components-title": "Компонент",
"items-title": "Элементы меню",
"demo-text": "Это английская версия текста, используемого в этой демонстрации. Она служит в качестве языкового контента по умолчанию до применения перевода. Настроив поддержку i18n, этот текст можно легко переключить на другие языки, что обеспечивает более инклюзивный и доступный пользовательский интерфейс"
}

View File

@@ -0,0 +1,116 @@
[
{
"id": "node_1",
"icon": "ti ti-folder-filled text-warning fs-lg",
"text": "Projects",
"children": [
{
"id": "node_4",
"icon": "ti ti-file-text text-primary fs-lg",
"text": "Project Proposal",
"children": false
},
{
"id": "node_5",
"icon": "ti ti-file-text text-primary fs-lg",
"text": "Requirements Doc",
"children": false
},
{
"id": "node_6",
"icon": "ti ti-folder-filled text-warning fs-lg",
"text": "Designs",
"children": [
{
"id": "node_13",
"icon": "ti ti-layout text-warning fs-lg",
"text": "Wireframes",
"children": false
},
{
"id": "node_15",
"icon": "ti ti-layout text-warning fs-lg",
"text": "Mockups",
"children": false
}
]
}
]
},
{
"id": "node_2",
"icon": "ti ti-folder-filled text-warning fs-lg",
"text": "Reports",
"children": [
{
"id": "node_7",
"icon": "ti ti-report text-danger fs-lg",
"text": "Q1 Report",
"children": false
},
{
"id": "node_8",
"icon": "ti ti-report text-danger fs-lg",
"text": "Q2 Report",
"children": false
},
{
"id": "node_9",
"icon": "ti ti-folder-filled text-warning fs-lg",
"text": "Annual Reports",
"children": [
{
"id": "node_16",
"icon": "ti ti-file-description text-info fs-lg",
"text": "2023 Summary",
"children": false
},
{
"id": "node_17",
"icon": "ti ti-file-description text-info fs-lg",
"text": "2024 Summary",
"children": false
}
]
}
]
},
{
"id": "node_3",
"icon": "ti ti-folder-filled text-warning fs-lg",
"text": "Documents",
"children": [
{
"id": "node_10",
"icon": "ti ti-file-text text-secondary fs-lg",
"text": "Resume",
"children": false
},
{
"id": "node_11",
"icon": "ti ti-file-text text-secondary fs-lg",
"text": "Cover Letter",
"children": false
},
{
"id": "node_12",
"icon": "ti ti-folder-filled text-warning fs-lg",
"text": "Certificates",
"children": [
{
"id": "node_18",
"icon": "ti ti-certificate text-warning fs-lg",
"text": "Completion Cert",
"children": false
},
{
"id": "node_19",
"icon": "ti ti-certificate text-warning fs-lg",
"text": "Achievement Cert",
"children": false
}
]
}
]
}
]

View File

@@ -0,0 +1,452 @@
[
{
"year": "1961",
"value": "West Side Story",
"tokens": [
"West",
"Side",
"Story"
]
},
{
"year": "1962",
"value": "Lawrence of Arabia",
"tokens": [
"Lawrence",
"of",
"Arabia"
]
},
{
"year": "1963",
"value": "Tom Jones",
"tokens": [
"Tom",
"Jones"
]
},
{
"year": "1964",
"value": "My Fair Lady",
"tokens": [
"My",
"Fair",
"Lady"
]
},
{
"year": "1965",
"value": "The Sound of Music",
"tokens": [
"The",
"Sound",
"of",
"Music"
]
},
{
"year": "1966",
"value": "A Man for All Seasons",
"tokens": [
"A",
"Man",
"for",
"All",
"Seasons"
]
},
{
"year": "1967",
"value": "In the Heat of the Night",
"tokens": [
"In",
"the",
"Heat",
"of",
"the",
"Night"
]
},
{
"year": "1968",
"value": "Oliver!",
"tokens": [
"Oliver!"
]
},
{
"year": "1969",
"value": "Midnight Cowboy",
"tokens": [
"Midnight",
"Cowboy"
]
},
{
"year": "1970",
"value": "Patton",
"tokens": [
"Patton"
]
},
{
"year": "1971",
"value": "The French Connection",
"tokens": [
"The",
"French",
"Connection"
]
},
{
"year": "1972",
"value": "The Godfather",
"tokens": [
"The",
"Godfather"
]
},
{
"year": "1973",
"value": "The Sting",
"tokens": [
"The",
"Sting"
]
},
{
"year": "1974",
"value": "The Godfather Part II",
"tokens": [
"The",
"Godfather",
"Part",
"II"
]
},
{
"year": "1975",
"value": "One Flew over the Cuckoo's Nest",
"tokens": [
"One",
"Flew",
"over",
"the",
"Cuckoo's",
"Nest"
]
},
{
"year": "1976",
"value": "Rocky",
"tokens": [
"Rocky"
]
},
{
"year": "1977",
"value": "Annie Hall",
"tokens": [
"Annie",
"Hall"
]
},
{
"year": "1978",
"value": "The Deer Hunter",
"tokens": [
"The",
"Deer",
"Hunter"
]
},
{
"year": "1979",
"value": "Kramer vs. Kramer",
"tokens": [
"Kramer",
"vs.",
"Kramer"
]
},
{
"year": "1980",
"value": "Ordinary People",
"tokens": [
"Ordinary",
"People"
]
},
{
"year": "1981",
"value": "Chariots of Fire",
"tokens": [
"Chariots",
"of",
"Fire"
]
},
{
"year": "1982",
"value": "Gandhi",
"tokens": [
"Gandhi"
]
},
{
"year": "1983",
"value": "Terms of Endearment",
"tokens": [
"Terms",
"of",
"Endearment"
]
},
{
"year": "1984",
"value": "Amadeus",
"tokens": [
"Amadeus"
]
},
{
"year": "1985",
"value": "Out of Africa",
"tokens": [
"Out",
"of",
"Africa"
]
},
{
"year": "1986",
"value": "Platoon",
"tokens": [
"Platoon"
]
},
{
"year": "1987",
"value": "The Last Emperor",
"tokens": [
"The",
"Last",
"Emperor"
]
},
{
"year": "1988",
"value": "Rain Man",
"tokens": [
"Rain",
"Man"
]
},
{
"year": "1989",
"value": "Driving Miss Daisy",
"tokens": [
"Driving",
"Miss",
"Daisy"
]
},
{
"year": "1990",
"value": "Dances With Wolves",
"tokens": [
"Dances",
"With",
"Wolves"
]
},
{
"year": "1991",
"value": "The Silence of the Lambs",
"tokens": [
"The",
"Silence",
"of",
"the",
"Lambs"
]
},
{
"year": "1992",
"value": "Unforgiven",
"tokens": [
"Unforgiven"
]
},
{
"year": "1993",
"value": "Schindlers List",
"tokens": [
"Schindlers",
"List"
]
},
{
"year": "1994",
"value": "Forrest Gump",
"tokens": [
"Forrest",
"Gump"
]
},
{
"year": "1995",
"value": "Braveheart",
"tokens": [
"Braveheart"
]
},
{
"year": "1996",
"value": "The English Patient",
"tokens": [
"The",
"English",
"Patient"
]
},
{
"year": "1997",
"value": "Titanic",
"tokens": [
"Titanic"
]
},
{
"year": "1998",
"value": "Shakespeare in Love",
"tokens": [
"Shakespeare",
"in",
"Love"
]
},
{
"year": "1999",
"value": "American Beauty",
"tokens": [
"American",
"Beauty"
]
},
{
"year": "2000",
"value": "Gladiator",
"tokens": [
"Gladiator"
]
},
{
"year": "2001",
"value": "A Beautiful Mind",
"tokens": [
"A",
"Beautiful",
"Mind"
]
},
{
"year": "2002",
"value": "Chicago",
"tokens": [
"Chicago"
]
},
{
"year": "2003",
"value": "The Lord of the Rings: The Return of the King",
"tokens": [
"The",
"Lord",
"of",
"the",
"Rings:",
"The",
"Return",
"of",
"the",
"King"
]
},
{
"year": "2004",
"value": "Million Dollar Baby",
"tokens": [
"Million",
"Dollar",
"Baby"
]
},
{
"year": "2005",
"value": "Crash",
"tokens": [
"Crash"
]
},
{
"year": "2006",
"value": "The Departed",
"tokens": [
"The",
"Departed"
]
},
{
"year": "2007",
"value": "No Country for Old Men",
"tokens": [
"No",
"Country",
"for",
"Old",
"Men"
]
},
{
"year": "2008",
"value": "Slumdog Millionaire",
"tokens": [
"Slumdog",
"Millionaire"
]
},
{
"year": "2009",
"value": "The Hurt Locker",
"tokens": [
"The",
"Hurt",
"Locker"
]
},
{
"year": "2010",
"value": "The King's Speech",
"tokens": [
"The",
"King's",
"Speech"
]
},
{
"year": "2011",
"value": "The Artist",
"tokens": [
"The",
"Artist"
]
},
{
"year": "2012",
"value": "Argo",
"tokens": [
"Argo"
]
}
]

View File

@@ -0,0 +1,52 @@
[
"Alabama",
"Alaska",
"Arizona",
"Arkansas",
"California",
"Colorado",
"Connecticut",
"Delaware",
"Florida",
"Georgia",
"Hawaii",
"Idaho",
"Illinois",
"Indiana",
"Iowa",
"Kansas",
"Kentucky",
"Louisiana",
"Maine",
"Maryland",
"Massachusetts",
"Michigan",
"Minnesota",
"Mississippi",
"Missouri",
"Montana",
"Nebraska",
"Nevada",
"New Hampshire",
"New Jersey",
"New Mexico",
"New York",
"North Carolina",
"North Dakota",
"Ohio",
"Oklahoma",
"Oregon",
"Pennsylvania",
"Rhode Island",
"South Carolina",
"South Dakota",
"Tennessee",
"Texas",
"Utah",
"Vermont",
"Virginia",
"Washington",
"West Virginia",
"Wisconsin",
"Wyoming"
]

BIN
public/assets/images/auth.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 168 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="240px" height="240px"><path fill="#1976D2" d="M45,35c0,2.209-1.791,4-4,4H7c-2.209,0-4-1.791-4-4V13c0-2.209,1.791-4,4-4h34c2.209,0,4,1.791,4,4V35z"/><path fill="#FFF" d="M22.255 20l-2.113 4.683L18.039 20h-2.695v6.726L12.341 20h-2.274L7 26.981h1.815l.671-1.558h3.432l.682 1.558h3.465v-5.185l2.299 5.185h1.563l2.351-5.095v5.095H25V20H22.255zM10.135 23.915l1.026-2.44 1.066 2.44H10.135zM37.883 23.413L41 20.018h-2.217l-1.994 2.164L34.86 20H28v6.982h6.635l2.092-2.311L38.767 27h2.21L37.883 23.413zM33.728 25.516h-4.011v-1.381h3.838v-1.323h-3.838v-1.308l4.234.012 1.693 1.897L33.728 25.516z"/></svg>

After

Width:  |  Height:  |  Size: 661 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="240px" height="240px" baseProfile="basic"><polygon fill="#388e3c" points="29,4 18,45 40,24"/><polygon fill="#f57c00" points="21,3 10,44 32,23"/></svg>

After

Width:  |  Height:  |  Size: 218 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="240px" height="240px"><path fill="#E1E7EA" d="M45,35c0,2.2-1.8,4-4,4H7c-2.2,0-4-1.8-4-4V13c0-2.2,1.8-4,4-4h34c2.2,0,4,1.8,4,4V35z"/><path fill="#FF6D00" d="M45,35c0,2.2-1.8,4-4,4H16c0,0,23.6-3.8,29-15V35z M22,24c0,1.7,1.3,3,3,3s3-1.3,3-3c0-1.7-1.3-3-3-3S22,22.3,22,24z"/><path d="M11.2,21h1.1v6h-1.1V21z M17.2,24c0,1.7,1.3,3,3,3c0.5,0,0.9-0.1,1.4-0.3v-1.3c-0.4,0.4-0.8,0.6-1.4,0.6c-1.1,0-1.9-0.8-1.9-2c0-1.1,0.8-2,1.9-2c0.5,0,0.9,0.2,1.4,0.6v-1.3c-0.5-0.2-0.9-0.4-1.4-0.4C18.5,21,17.2,22.4,17.2,24z M30.6,24.9L29,21h-1.2l2.5,6h0.6l2.5-6h-1.2L30.6,24.9z M33.9,27h3.2v-1H35v-1.6h2v-1h-2V22h2.1v-1h-3.2V27z M41.5,22.8c0-1.1-0.7-1.8-2-1.8h-1.7v6h1.1v-2.4h0.1l1.6,2.4H42l-1.8-2.5C41,24.3,41.5,23.7,41.5,22.8z M39.2,23.8h-0.3v-1.8h0.3c0.7,0,1.1,0.3,1.1,0.9C40.3,23.4,40,23.8,39.2,23.8z M7.7,21H6v6h1.6c2.5,0,3.1-2.1,3.1-3C10.8,22.2,9.5,21,7.7,21z M7.4,26H7.1v-4h0.4c1.5,0,2.1,1,2.1,2C9.6,24.4,9.5,26,7.4,26z M15.3,23.3c-0.7-0.3-0.9-0.4-0.9-0.7c0-0.4,0.4-0.6,0.8-0.6c0.3,0,0.6,0.1,0.9,0.5l0.6-0.8C16.2,21.2,15.7,21,15,21c-1,0-1.8,0.7-1.8,1.7c0,0.8,0.4,1.2,1.4,1.6c0.6,0.2,1.1,0.4,1.1,0.9c0,0.5-0.4,0.8-0.9,0.8c-0.5,0-1-0.3-1.2-0.8l-0.7,0.7c0.5,0.8,1.1,1.1,2,1.1c1.2,0,2-0.8,2-1.9C16.9,24.2,16.5,23.8,15.3,23.3z"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="240px" height="240px"><path fill="#1976D2" d="M20.4,39c-1.8,0-3.4-1.4-3.5-3.3c-0.7-10.7-9-15-9-15.1c-1.7-0.9-2.4-3-1.5-4.7c0.9-1.7,3-2.4,4.7-1.5c0.5,0.3,11.9,6.3,12.8,20.9c0.1,1.9-1.4,3.6-3.3,3.7C20.6,39,20.5,39,20.4,39z"/><path fill="#FF1744" d="M20.4,39c-0.6,0-1.3-0.2-1.9-0.6c-1.6-1-2.1-3.2-1-4.8c5.9-9.1,0.2-18.9-0.1-19.3c-1-1.7-0.5-3.8,1.2-4.8c1.7-1,3.8-0.5,4.8,1.2c0.3,0.6,8.2,13.8,0,26.7C22.7,38.4,21.6,39,20.4,39z"/><path fill="#FFC107" d="M34.4,43C34.4,43,34.4,43,34.4,43c-2,0-3.5-1.6-3.5-3.6c0.3-15.7-11.9-23.7-12.4-24c-1.6-1-2.1-3.2-1.1-4.8c1-1.6,3.2-2.1,4.8-1.1c0.7,0.4,16,10.3,15.6,30C37.9,41.5,36.4,43,34.4,43z"/><path fill="#4CAF50" d="M34.4,43c-0.6,0-1.2-0.2-1.8-0.5c-1.7-1-2.2-3.1-1.2-4.8c7.8-13.3,0-27.4,0-27.5c-0.9-1.7-0.4-3.8,1.3-4.8c1.7-1,3.8-0.4,4.8,1.3c0.4,0.7,9.8,17.8,0,34.5C36.8,42.4,35.6,43,34.4,43z"/></svg>

After

Width:  |  Height:  |  Size: 903 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="240px" height="240px"><path fill="#3F51B5" d="M45,35c0,2.209-1.791,4-4,4H7c-2.209,0-4-1.791-4-4V13c0-2.209,1.791-4,4-4h34c2.209,0,4,1.791,4,4V35z"/><path fill="#FFC107" d="M30 14A10 10 0 1 0 30 34A10 10 0 1 0 30 14Z"/><path fill="#FF3D00" d="M22.014,30c-0.464-0.617-0.863-1.284-1.176-2h5.325c0.278-0.636,0.496-1.304,0.637-2h-6.598C20.07,25.354,20,24.686,20,24h7c0-0.686-0.07-1.354-0.201-2h-6.598c0.142-0.696,0.359-1.364,0.637-2h5.325c-0.313-0.716-0.711-1.383-1.176-2h-2.973c0.437-0.58,0.93-1.122,1.481-1.595C21.747,14.909,19.481,14,17,14c-5.523,0-10,4.477-10,10s4.477,10,10,10c3.269,0,6.162-1.575,7.986-4H22.014z"/></svg>

After

Width:  |  Height:  |  Size: 689 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="240px" height="240px" baseProfile="basic"><path fill="#ffa000" d="M29.17,4.68L31,8l-3.12,1.51c-3.423-0.911-6.246-0.403-7.76,0L17,8l1.83-3.32 C22.871,3.578,26.644,3.991,29.17,4.68z"/><path fill="#c0ca33" d="M38.137,9.853l-0.075,3.79l-3.457-0.252c-2.509-2.501-5.208-3.472-6.72-3.88l1.298-4.828 C33.233,5.749,36.294,7.994,38.137,9.853z"/><path fill="#8bc34a" d="M43.317,18.817l-1.96,3.245l-2.868-1.947c-0.923-3.42-2.774-5.611-3.88-6.72l3.538-3.532 C41.121,12.811,42.65,16.285,43.317,18.817z"/><path fill="#00bfa5" d="M43.32,29.17L40,31l-1.51-3.12c0.911-3.423,0.403-6.246,0-7.76l4.83-1.29 C44.422,22.871,44.009,26.644,43.32,29.17z"/><path fill="#00acc1" d="M38.147,38.137l-3.79-0.075l0.252-3.457c2.501-2.509,3.472-5.208,3.88-6.72l4.828,1.298 C42.251,33.233,40.006,36.294,38.147,38.137z"/><path fill="#5879e6" d="M29.183,43.317l-3.245-1.96l1.947-2.868c3.42-0.923,5.611-2.774,6.72-3.88l3.532,3.538 C35.189,41.121,31.715,42.65,29.183,43.317z"/><path fill="#ba68c8" d="M18.83,43.32L17,40l3.12-1.51c3.423,0.911,6.246,0.403,7.76,0l1.29,4.83 C25.129,44.422,21.356,44.009,18.83,43.32z"/><path fill="#f06292" d="M9.863,38.147l0.075-3.79l3.457,0.252c2.509,2.501,5.208,3.472,6.72,3.88l-1.298,4.828 C14.767,42.251,11.706,40.006,9.863,38.147z"/><path fill="#ef5350" d="M4.683,29.183l1.96-3.245l2.868,1.947c0.923,3.42,2.774,5.611,3.88,6.72l-3.538,3.532 C6.879,35.189,5.35,31.715,4.683,29.183z"/><path fill="#f4511e" d="M4.68,18.83L8,17l1.51,3.12c-0.911,3.423-0.403,6.246,0,7.76l-4.83,1.29 C3.578,25.129,3.991,21.356,4.68,18.83z"/><path fill="#fa5209" d="M9.853,9.863l3.79,0.075l-0.252,3.457c-2.501,2.509-3.472,5.208-3.88,6.72l-4.828-1.298 C5.749,14.767,7.994,11.706,9.853,9.863z"/><linearGradient id="0IPmGMAmWaLQGcKfSEhCwa" x1="9.863" x2="20.115" y1="9.037" y2="9.037" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#f37a01"/><stop offset="1" stop-color="#ef8b00"/></linearGradient><path fill="url(#0IPmGMAmWaLQGcKfSEhCwa)" d="M18.817,4.683l1.298,4.828c-3.42,0.923-5.611,2.774-6.72,3.88L9.863,9.853 C12.811,6.879,16.285,5.35,18.817,4.683z"/></svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="240px" height="240px"><path fill="#1565C0" d="M18.7,13.767l0.005,0.002C18.809,13.326,19.187,13,19.66,13h13.472c0.017,0,0.034-0.007,0.051-0.006C32.896,8.215,28.887,6,25.35,6H11.878c-0.474,0-0.852,0.335-0.955,0.777l-0.005-0.002L5.029,33.813l0.013,0.001c-0.014,0.064-0.039,0.125-0.039,0.194c0,0.553,0.447,0.991,1,0.991h8.071L18.7,13.767z"/><path fill="#039BE5" d="M33.183,12.994c0.053,0.876-0.005,1.829-0.229,2.882c-1.281,5.995-5.912,9.115-11.635,9.115c0,0-3.47,0-4.313,0c-0.521,0-0.767,0.306-0.88,0.54l-1.74,8.049l-0.305,1.429h-0.006l-1.263,5.796l0.013,0.001c-0.014,0.064-0.039,0.125-0.039,0.194c0,0.553,0.447,1,1,1h7.333l0.013-0.01c0.472-0.007,0.847-0.344,0.945-0.788l0.018-0.015l1.812-8.416c0,0,0.126-0.803,0.97-0.803s4.178,0,4.178,0c5.723,0,10.401-3.106,11.683-9.102C42.18,16.106,37.358,13.019,33.183,12.994z"/><path fill="#283593" d="M19.66,13c-0.474,0-0.852,0.326-0.955,0.769L18.7,13.767l-2.575,11.765c0.113-0.234,0.359-0.54,0.88-0.54c0.844,0,4.235,0,4.235,0c5.723,0,10.432-3.12,11.713-9.115c0.225-1.053,0.282-2.006,0.229-2.882C33.166,12.993,33.148,13,33.132,13H19.66z"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="240px" height="240px"><path fill="#03A9F4" d="M41.765,38H6.235C4.439,38,3,36.63,3,34.848v-22.62C3,10.445,4.439,9,6.235,9h35.529C43.56,9,45,10.445,45,12.228v22.62C45,36.63,43.56,38,41.765,38z"/><path fill="#FFF" d="M36.847,23.277c0.069-1.101,0.354-1.613,0.926-1.613c0.548,0,0.848,0.527,0.886,1.613H36.847z M40.953,23.935c0-1.23-0.27-2.203-0.781-2.885c-0.54-0.697-1.346-1.05-2.359-1.05c-2.088,0-3.396,1.546-3.396,4.022c0,1.384,0.345,2.427,1.038,3.085C36.072,27.702,36.958,28,38.085,28c1.047,0,2.017-0.251,2.632-0.655l-0.268-1.688c-0.607,0.331-1.31,0.511-2.095,0.511c-0.47,0-0.806-0.103-1.044-0.308c-0.262-0.219-0.408-0.572-0.46-1.076h4.068C40.944,24.669,40.953,24.106,40.953,23.935z M31.057,25.533c-0.221,0.377-0.531,0.58-0.89,0.58c-0.241,0-0.472-0.053-0.669-0.147v-3.718c0.428-0.441,0.814-0.491,0.942-0.491c0.631,0,0.941,0.681,0.941,2.017C31.384,24.534,31.269,25.126,31.057,25.533z M33.113,20.709c-0.438-0.571-1.059-0.853-1.845-0.853c-0.712,0-1.343,0.302-1.934,0.936l-0.142-0.784H27V31l2.481-0.416l0.017-2.799c0.387,0.121,0.779,0.185,1.131,0.185c0.627,0,1.53-0.157,2.235-0.926c0.667-0.73,0.996-1.862,0.996-3.361C33.86,22.358,33.615,21.353,33.113,20.709z M23.527,20.008H26V28h-2.473V20.008z M24.784,19.233c0.718,0,1.3-0.594,1.3-1.313c0-0.733-0.584-1.32-1.3-1.32c-0.738,0-1.323,0.587-1.323,1.32C23.461,18.64,24.046,19.233,24.784,19.233z M22.463,19.9c-0.705,0-1.279,0.372-1.491,1.031l-0.15-0.921h-2.17V28h2.482v-5.25c0.312-0.382,0.749-0.52,1.362-0.52c0.127,0,0.256,0,0.438,0.026v-2.294C22.751,19.921,22.6,19.9,22.463,19.9z M17.68,21.855l0.308-1.848h-1.601v-2.245l-2.129,0.354l-0.309,1.891L13.2,20.13l-0.277,1.726h1.024v3.622c0,0.941,0.238,1.599,0.72,1.998c0.421,0.335,1.011,0.493,1.843,0.493c0.654,0,1.043-0.112,1.297-0.184v-1.959c-0.133,0.041-0.48,0.115-0.716,0.115c-0.48,0-0.705-0.25-0.705-0.825v-3.265h1.294V21.855z M10.531,23.05c-0.707-0.265-1.118-0.473-1.118-0.803c0-0.275,0.229-0.434,0.646-0.434c0.737,0,1.509,0.281,2.023,0.544l0.3-1.829C11.964,20.326,11.113,20,9.94,20c-0.84,0-1.535,0.22-2.014,0.621c-0.532,0.429-0.802,1.043-0.802,1.786c0,1.347,0.824,1.918,2.166,2.402c0.857,0.308,1.154,0.527,1.154,0.868c0,0.322-0.274,0.514-0.795,0.514c-0.624,0-1.641-0.31-2.327-0.703l-0.282,1.853C7.616,27.663,8.676,28,9.788,28c0.887,0,1.622-0.21,2.102-0.606c0.568-0.432,0.844-1.077,0.844-1.905C12.736,24.106,11.891,23.531,10.531,23.05L10.531,23.05z"/></svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="240px" height="240px"><path fill="#1565C0" d="M45,35c0,2.209-1.791,4-4,4H7c-2.209,0-4-1.791-4-4V13c0-2.209,1.791-4,4-4h34c2.209,0,4,1.791,4,4V35z"/><path fill="#FFF" d="M15.186 19l-2.626 7.832c0 0-.667-3.313-.733-3.729-1.495-3.411-3.701-3.221-3.701-3.221L10.726 30v-.002h3.161L18.258 19H15.186zM17.689 30L20.56 30 22.296 19 19.389 19zM38.008 19h-3.021l-4.71 11h2.852l.588-1.571h3.596L37.619 30h2.613L38.008 19zM34.513 26.328l1.563-4.157.818 4.157H34.513zM26.369 22.206c0-.606.498-1.057 1.926-1.057.928 0 1.991.674 1.991.674l.466-2.309c0 0-1.358-.515-2.691-.515-3.019 0-4.576 1.444-4.576 3.272 0 3.306 3.979 2.853 3.979 4.551 0 .291-.231.964-1.888.964-1.662 0-2.759-.609-2.759-.609l-.495 2.216c0 0 1.063.606 3.117.606 2.059 0 4.915-1.54 4.915-3.752C30.354 23.586 26.369 23.394 26.369 22.206z"/><path fill="#FFC107" d="M12.212,24.945l-0.966-4.748c0,0-0.437-1.029-1.573-1.029c-1.136,0-4.44,0-4.44,0S10.894,20.84,12.212,24.945z"/></svg>

After

Width:  |  Height:  |  Size: 1000 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 154 36" xmlns:v="https://vecta.io/nano"><path d="M20.9 30.8h25.6V5.2H20.9v25.6zm20.8-15.3h-5.4v-5.4h5.4v5.4zm-15.8-5.4h5.4v10.4h10.4v5.4H25.9V10.1zm37.4-4.9c-2.5 0-5 .8-7.1 2.2s-3.8 3.4-4.7 5.8c-1 2.3-1.2 4.9-.7 7.4s1.7 4.8 3.5 6.6 4.1 3 6.6 3.5 5.1.2 7.4-.7a13.93 13.93 0 0 0 5.8-4.7c1.4-2.1 2.2-4.6 2.2-7.1 0-3.4-1.4-6.7-3.8-9.1-2.5-2.6-5.8-3.9-9.2-3.9zm0 20.7c-1.6 0-3.1-.5-4.4-1.3-1.3-.9-2.3-2.1-2.9-3.5s-.8-3-.4-4.6c.3-1.5 1.1-2.9 2.2-4s2.5-1.9 4-2.2 3.1-.1 4.6.4c1.4.6 2.7 1.6 3.5 2.9.9 1.3 1.3 2.8 1.3 4.4 0 2.1-.8 4.1-2.3 5.6s-3.5 2.3-5.6 2.3zM122 5.2c-2.5 0-5 .8-7.1 2.2s-3.8 3.4-4.7 5.8c-1 2.3-1.2 4.9-.7 7.4s1.7 4.8 3.5 6.6 4.1 3 6.6 3.5 5.1.2 7.4-.7a13.93 13.93 0 0 0 5.8-4.7c1.4-2.1 2.2-4.6 2.2-7.1 0-3.4-1.4-6.7-3.8-9.1-2.5-2.6-5.8-3.9-9.2-3.9zm0 20.7c-1.6 0-3.1-.5-4.4-1.3-1.3-.9-2.3-2.1-2.9-3.5s-.8-3-.4-4.6c.3-1.5 1.1-2.9 2.2-4s2.5-1.9 4-2.2 3.1-.1 4.6.4c1.4.6 2.7 1.6 3.5 2.9.9 1.3 1.3 2.8 1.3 4.4 0 2.1-.8 4.1-2.3 5.6s-3.5 2.3-5.6 2.3zM92.7 5.2c-2.5 0-5 .8-7.1 2.2s-3.8 3.4-4.7 5.8c-1 2.3-1.2 4.9-.7 7.4s1.7 4.8 3.5 6.6 4.1 3 6.6 3.5 5.1.2 7.4-.7a13.93 13.93 0 0 0 5.8-4.7c1.4-2.1 2.2-4.6 2.2-7.1 0-3.4-1.4-6.7-3.8-9.1-2.6-2.6-5.8-3.9-9.2-3.9zm0 20.7c-1.5 0-2.9-.4-4.1-1.2s-2.2-1.8-2.9-3.1-1-2.7-.8-4.2c.1-1.4.6-2.8 1.5-4s2-2.1 3.4-2.7c1.3-.6 2.8-.7 4.2-.5s2.8.8 3.9 1.8c1.1.9 1.9 2.2 2.4 3.5h-7.5v4.9h7.5c-.5 1.6-1.5 2.9-2.9 3.9-1.5 1.1-3.1 1.6-4.7 1.6z" fill="#b4b7c9"/></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 154 36" fill="#b4b7c9" xmlns:v="https://vecta.io/nano"><path d="M29.4 16.4c-.4.4-.7.8-.9 1.3s-.2 1-.2 1.6h0c.1.6 0 1.3-.2 1.9s-.6 1.1-1 1.6c-.4.4-1 .8-1.6 1s-1.2.3-1.9.2h0c-.8-.1-1.5.1-2.2.5s-1.2.9-1.5 1.6a4.22 4.22 0 0 0-.3 2.2c.1.7.5 1.4 1 2 .5.5 1.2.9 2 1a4.22 4.22 0 0 0 2.2-.3c.7-.3 1.3-.8 1.6-1.5s.5-1.4.5-2.2h0c-.1-.6 0-1.3.2-1.9s.6-1.1 1-1.6c.4-.4 1-.8 1.6-1s1.2-.3 1.9-.2h0c.6.1 1.2 0 1.8-.3.6-.2 1.1-.6 1.4-1.1.4-.5.6-1.1.7-1.7s0-1.2-.2-1.8-.6-1.1-1-1.5c-.5-.4-1-.7-1.6-.8s-1.2-.1-1.8.1c-.5.1-1 .4-1.5.9h0zM22 21.6h0c.5 0 1.1 0 1.6-.2s1-.5 1.3-.9c.4-.4.7-.8.9-1.3s.2-1 .2-1.6h0c-.1-.6 0-1.3.2-1.9s.6-1.1 1-1.6c.4-.4 1-.8 1.6-1s1.2-.3 1.9-.2h0c.8.1 1.5-.1 2.2-.5s1.2-.9 1.5-1.6a4.22 4.22 0 0 0 .3-2.2c-.1-.7-.5-1.4-1-2-.5-.5-1.2-.9-2-1a4.22 4.22 0 0 0-2.2.3c-.7.3-1.3.8-1.6 1.5-.4.7-.5 1.4-.5 2.2h0c.1.6 0 1.3-.2 1.9s-.6 1.1-1 1.6c-.4.4-1 .8-1.6 1s-1.2.3-1.9.2h0c-.5-.1-1.1 0-1.6.2s-1 .5-1.3.9c-.4.4-.7.8-.9 1.3s-.2 1-.2 1.6h0c.1.6 0 1.3-.2 1.9s-.6 1.1-1 1.6c-.4.4-1 .8-1.6 1-.6.1-1.3.2-1.9.2h0c-.8-.1-1.5.1-2.2.5s-1.2.9-1.5 1.6a4.22 4.22 0 0 0-.3 2.2c.1.7.5 1.4 1 2 .5.5 1.2.9 2 1a4.22 4.22 0 0 0 2.2-.3c.7-.3 1.3-.8 1.6-1.5.4-.7.5-1.4.5-2.2h0c-.1-.6 0-1.3.2-1.9s.6-1.1 1-1.6c.4-.4 1-.8 1.6-1l1.9-.2zm-6.7-2c.4-.4.7-.8.8-1.3s.2-1 .2-1.6h0c-.1-.6 0-1.3.2-1.9s.6-1.1 1-1.6c.4-.4 1-.8 1.6-1s1.2-.3 1.9-.2h0c.8.1 1.5-.1 2.2-.5s1.2-.9 1.5-1.6a4.22 4.22 0 0 0 .3-2.2c-.1-.7-.5-1.4-1-2-.5-.5-1.2-.9-2-1a4.22 4.22 0 0 0-2.2.3c-.7.3-1.3.8-1.6 1.5-.4.7-.5 1.4-.5 2.2h0c.1.6 0 1.3-.2 1.9s-.6 1.1-1 1.6c-.4.4-1 .8-1.6 1s-1.2.3-1.9.2h0c-.6-.1-1.2 0-1.8.3-.6.2-1.1.6-1.4 1.1-.4.5-.6 1.1-.7 1.7s0 1.2.2 1.8.6 1.1 1 1.5c.5.4 1 .7 1.6.8s1.2.1 1.8-.1c.7-.1 1.2-.4 1.6-.9h0zm31-9.9h3v14.5h-3V9.7zm4.7 9.5c0-1 .3-2.1.9-2.9.6-.9 1.4-1.5 2.4-1.9s2-.5 3-.3 2 .7 2.7 1.4 1.2 1.7 1.4 2.7.1 2.1-.3 3c-.4 1-1.1 1.8-1.9 2.4a5.21 5.21 0 0 1-2.9.9c-.7 0-1.4-.1-2-.4s-1.2-.6-1.7-1.1-.9-1.1-1.1-1.7a4.55 4.55 0 0 1-.5-2.1zm7.5 0c0-.4-.2-.9-.4-1.2-.3-.4-.6-.6-1-.8s-.9-.2-1.3-.1-.8.3-1.1.6-.5.7-.6 1.2c-.1.4 0 .9.1 1.3.2.4.5.8.8 1 .4.2.8.4 1.3.4.3 0 .6 0 .9-.2.3-.1.5-.3.8-.5.2-.2.4-.5.5-.8v-.9zm14.8-5v9.4c0 3.3-2.6 4.7-5.2 4.7-.9.1-1.9-.1-2.7-.5s-1.5-1.1-2-1.9l2.5-1.5c.2.4.5.8.9 1a3.08 3.08 0 0 0 1.3.3c.3 0 .6 0 .9-.1s.5-.2.8-.4a3.04 3.04 0 0 0 .5-.7c.1-.3.1-.6.1-.9v-.9a3.25 3.25 0 0 1-1.3 1c-.5.2-1 .3-1.6.3-1.3 0-2.5-.6-3.5-1.5-.9-.9-1.4-2.2-1.4-3.5s.5-2.6 1.4-3.5 2.1-1.5 3.5-1.5a4.53 4.53 0 0 1 1.6.3c.5.2.9.6 1.3 1v-1l2.9-.1zM70.4 19c0-.5-.1-1-.4-1.4s-.6-.7-1.1-.9a2.2 2.2 0 0 0-1.4-.2c-.5.1-.9.3-1.3.6-.3.3-.6.8-.7 1.2-.1.5-.1 1 .1 1.4s.5.8.9 1.1.9.4 1.3.4c.3 0 .6 0 .9-.1s.6-.3.8-.5.4-.5.5-.8c.4-.2.4-.5.4-.8zm4.6.2c0-1 .3-2.1.9-2.9.6-.9 1.4-1.5 2.4-1.9s2-.5 3-.3 2 .7 2.7 1.4 1.2 1.7 1.4 2.7.1 2.1-.3 3c-.4 1-1.1 1.8-1.9 2.4a5.21 5.21 0 0 1-2.9.9c-.7 0-1.4-.1-2-.4s-1.2-.6-1.7-1.1-.9-1.1-1.1-1.7a4.55 4.55 0 0 1-.5-2.1zm7.5 0c0-.4-.2-.9-.4-1.2-.3-.4-.6-.6-1-.8s-.9-.2-1.3-.1-.8.3-1.2.6c-.3.3-.5.7-.6 1.2-.1.4 0 .9.1 1.3s.5.8.8 1c.4.2.8.4 1.3.4.3 0 .6 0 .9-.2.3-.1.5-.3.8-.5.2-.2.4-.5.5-.8s.1-.6.1-.9zm4.4-7.6a1.69 1.69 0 0 1 .3-1c.2-.3.5-.5.8-.7.3-.1.7-.2 1-.1s.7.2.9.5c.2.2.4.6.5.9s0 .7-.1 1-.4.6-.7.8a1.69 1.69 0 0 1-1 .3c-.5 0-.9-.2-1.3-.5-.2-.3-.4-.8-.4-1.2zm.3 2.6h3v9.9h-3v-9.9zm15.8 5c0 .7-.1 1.3-.3 1.9s-.6 1.2-1 1.7-1 .9-1.6 1.2-1.2.4-1.9.5c-.6 0-1.1-.1-1.6-.3s-1-.5-1.3-.9v4.9h-3v-14h3v.9c.4-.4.8-.7 1.3-.9a4.53 4.53 0 0 1 1.6-.3c.7 0 1.3.2 1.9.5s1.1.7 1.6 1.2c.4.5.8 1.1 1 1.7s.3 1.2.3 1.9zm-3 0c0-.5-.2-.9-.4-1.3-.3-.4-.6-.7-1.1-.8-.4-.2-.9-.2-1.4-.1s-.9.3-1.2.7c-.3.3-.5.8-.6 1.2-.1.5 0 .9.1 1.4.2.4.5.8.9 1 .4.3.8.4 1.3.4.3 0 .6 0 .9-.2.3-.1.6-.3.8-.5s.4-.5.5-.8c.2-.4.2-.7.2-1zm12.1 1.9c0 2.3-2 3.2-4.1 3.2-.9.1-1.7-.1-2.5-.5s-1.4-1.1-1.8-1.8l2.6-1.5c.1.4.3.7.6.9a1.93 1.93 0 0 0 1 .3c.7 0 1.1-.2 1.1-.6 0-1.1-4.9-.5-4.9-3.9 0-2.2 1.8-3.2 3.9-3.2.8 0 1.5.2 2.2.5a4.1 4.1 0 0 1 1.6 1.6l-2.5 1.4c-.1-.3-.3-.5-.5-.6s-.5-.2-.8-.2c-.5 0-.8.2-.8.6.1.9 4.9.2 4.9 3.8zm10.9-6.9v9.9h-3v-.9c-.3.4-.8.7-1.3.9s-1 .3-1.6.3c-2 0-3.7-1.4-3.7-4.1v-6.1h3v5.6c0 .2 0 .5.1.7s.2.4.4.6.4.3.6.4.5.1.7.1c1.1 0 1.8-.6 1.8-2v-5.4h3zm17 3.8v6.1h-3v-5.8c0-1-.5-1.6-1.4-1.6-1 0-1.5.7-1.5 1.9v5.6h-3v-5.8c0-1-.5-1.6-1.4-1.6-1 0-1.5.7-1.5 1.9v5.6h-3v-9.9h3v.9a2.73 2.73 0 0 1 1.2-.9c.5-.2 1-.3 1.5-.3s1 .1 1.5.3.8.6 1.1 1a3.25 3.25 0 0 1 1.3-1 4.53 4.53 0 0 1 1.6-.3c2.1-.2 3.6 1.5 3.6 3.9zm2.5-3.9a2.22 2.22 0 0 0 2.2-2.2 2.22 2.22 0 0 0-2.2-2.2 2.22 2.22 0 0 0-2.2 2.2c0 1.3 1 2.2 2.2 2.2z"/></svg>

After

Width:  |  Height:  |  Size: 4.3 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 154 36" xmlns:v="https://vecta.io/nano"><path d="M76.7 24.4h-5.1V10.7h5.1v13.7zm-4.6-.5h4.1V11.2h-4.1v12.7zm11.7.5h-5V10.7h10.5c1.5-.1 3 .3 4.2 1.2a6.57 6.57 0 0 1 1.2 1.7c.3.7.4 1.4.3 2.1.1 1.2-.3 2.4-1.1 3.4-.9 1.1-2.4 1.6-4.5 1.6h-5.5l-.1 3.7zm-4.5-.5h4v-3.7h.3 5.8c1.9 0 3.4-.5 4.2-1.4.7-.9 1-1.9 1-3 .1-.6 0-1.3-.2-1.9s-.6-1.1-1.1-1.6c-1.1-.8-2.5-1.2-3.9-1.1h-10l-.1 12.7zm8.9-6.3h-4.9v-3.7h5c.4 0 .7 0 1 .1s.6.3.9.6c.2.3.3.7.3 1.2 0 .4-.1.7-.2 1.1-.2.3-.5.5-.9.6s-.8.2-1.2.1h0zm-4.4-.5h4.4c.8 0 1.3-.2 1.6-.5.1-.3.2-.5.2-.8s0-.6-.2-.9h0c-.2-.4-.7-.5-1.5-.5h-4.5v2.7zm20.3 7.5c-4.5 0-7.2-1.1-8.2-3.4-.2-.4-.3-.9-.3-1.4v-.3h5.3v.2c0 .2.1.4.3.6.2.3.9.7 3.3.7 2.8 0 2.8-.5 2.8-.8 0-.4-.3-.6-2.6-.8h-.4l-2.5-.2c-4.2-.4-6.1-1.7-6.1-4.2 0-2.7 3.2-4.4 8.1-4.4 4 0 6.6 1.1 7.7 3.2.3.5.4 1 .5 1.6v.3h-5.3v-.2c0-.2-.1-.3-.2-.5-.2-.3-.8-.7-2.8-.7-2.4 0-2.7.3-2.7.6 0 .4.8.6 3.2.9l3.2.3c3.5.4 5.1 1.7 5.1 4.1-.1 1.9-1.5 4.4-8.4 4.4zm-8-4.6c.1.3.1.7.3 1 .9 2.1 3.5 3.1 7.7 3.1 3.6 0 7.8-.7 7.8-4.1 0-2.2-1.4-3.3-4.6-3.6-.6-.1-2.2-.2-3.2-.3-2.6-.3-3.7-.4-3.7-1.4s1.1-1.1 3.2-1.1c1.7 0 2.7.3 3.2.9.1.1.2.3.3.5h4.3c-.1-.4-.2-.8-.4-1.1-1-1.9-3.4-2.9-7.3-2.9-4.6 0-7.6 1.5-7.6 3.9 0 2.3 1.7 3.4 5.6 3.7.5 0 1.6.1 2.5.2h.4c2.1.2 3.1.4 3.1 1.3 0 1.1-1.2 1.3-3.3 1.3-1.9 0-3.2-.3-3.6-.9-.1-.2-.3-.4-.3-.6h-4.4zm25.8 4.6c-5.2 0-8.1-2.1-8.1-5.9v-7.9h5.1v7.9c0 1.3 1.2 2.1 3.2 2.1s3.2-.8 3.2-2.1v-7.9h5V19c0 3.5-3.1 5.6-8.4 5.6h0zm-7.6-13.4v7.4c0 4.7 4.8 5.4 7.6 5.4 2.9 0 7.9-.7 7.9-5v-7.8h-4v7.4c0 1.5-1.4 2.6-3.7 2.6s-3.7-1-3.7-2.6v-7.4h-4.1zm37.2 13.2h-4.8v-6.2l-2.7 6.2h-4.2l-2.7-6.2v6.2h-4.8V10.7h6.3l3.3 7.5 3.4-7.5h6.1l.1 13.7zm-4.3-.5h3.8V11.2h-5.3l-3.8 8.3-3.6-8.3h-5.5v12.7h3.8v-8.1l3.5 8.1h3.5l3.5-8.1.1 8.1zM7.1 10.9H2.5v13.2h12.6v-3.5h-8v-9.7zm17.2-.3c-5.8 0-8.9 2.8-8.9 6.8 0 4.6 3.2 6.9 8.9 6.9 6.2 0 8.9-2.7 8.9-6.9-.1-4.2-3-6.8-8.9-6.8h0zm0 3.5c.4 0 .8 0 1.2.1l-5.1 5.1c-.2-.5-.4-1.1-.3-1.7-.1-2.2.9-3.5 4.2-3.5h0zm0 6.9c-.4 0-.8 0-1.1-.1l5.1-5.1c.2.5.3 1.1.3 1.7 0 2-1 3.4-4.3 3.5h0zm17.9-1.8h4.7c-.1.3-.2.6-.4.9-1 .8-2.2 1.2-3.5 1.1-.6.1-1.3 0-1.9-.2s-1.1-.5-1.6-1c-.5-.7-.7-1.5-.6-2.4-.1-.9.2-1.8.7-2.5.7-.7 1.8-1.1 3.4-1.1 1-.1 2.1.2 2.9.8.3.2.5.5.6.8h4.3c0-.5-.2-1.1-.4-1.6-1-2.1-3.5-3.4-7.6-3.4-3.6 0-6 1.1-7.3 2.7-.9 1.2-1.3 2.6-1.3 4.1-.1 1.5.4 3 1.2 4.2 1.3 1.7 3.6 2.5 6.5 2.5 1.9.1 3.7-.4 5.2-1.5l.1 1.3h3.6v-7.8H42v3.1zm19-8.6c-5.8 0-8.9 2.8-8.9 6.8 0 4.6 3.2 6.9 8.9 6.9 6.2 0 8.9-2.7 8.9-6.9-.1-4.2-3-6.8-8.9-6.8h0zm0 3.5c.4 0 .8 0 1.2.1l-5.1 5.1c-.2-.5-.3-1.1-.3-1.7-.1-2.2.9-3.5 4.2-3.5h0zm0 6.8c-.4 0-.8 0-1.2-.1l5.1-5.1c.2.5.4 1.1.3 1.7.1 2.1-.9 3.5-4.2 3.5h0z" fill="#b4b7c9"/></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 154 36" fill="#b4b7c9" xmlns:v="https://vecta.io/nano"><path d="M25.7 7.7V3.4H12.3v29.2h13.4v-4.2c-2.7 0-5.4-1.1-7.3-3s-3-4.6-3-7.3 1.1-5.4 3-7.3c2-2.1 4.6-3.1 7.3-3.1z"/><path d="M25.7 7.7v20.7c2.7 0 5.4-1.1 7.3-3s3-4.6 3-7.3-1.1-5.4-3-7.3c-1.9-2.1-4.5-3.1-7.3-3.1zm17.9 2.6h3v14.4h-3V10.3zm4.7 9.5c0-1 .3-2.1.9-2.9.6-.9 1.4-1.5 2.4-1.9s2-.5 3-.3 2 .7 2.7 1.4 1.2 1.7 1.4 2.7.1 2.1-.3 3c-.4 1-1.1 1.8-1.9 2.3a5.21 5.21 0 0 1-2.9.9c-.7 0-1.4-.1-2-.4s-1.2-.6-1.7-1.1-.9-1.1-1.1-1.7c-.4-.7-.5-1.4-.5-2zm7.5 0c0-.4-.2-.9-.4-1.2-.3-.4-.6-.6-1-.8s-.9-.2-1.3-.1-.8.3-1.2.6c-.3.3-.5.7-.6 1.2-.1.4 0 .9.1 1.3.2.4.5.8.8 1 .4.2.8.4 1.3.4.3 0 .6-.1.9-.2s.5-.3.7-.5.4-.5.5-.8c.2-.3.2-.6.2-.9h0zm14.8-5v9.4c0 3.3-2.6 4.7-5.2 4.7-.9.1-1.9-.1-2.7-.5s-1.5-1.1-2-1.9l2.5-1.5c.2.4.5.8.9 1a3.08 3.08 0 0 0 1.3.3c.3 0 .6 0 .9-.1s.5-.2.8-.4c.2-.2.4-.4.5-.7s.2-.6.1-.9v-.9a3.25 3.25 0 0 1-1.3 1c-.5.2-1 .3-1.6.3-1.3 0-2.6-.5-3.5-1.5-.9-.9-1.5-2.2-1.5-3.5s.5-2.6 1.5-3.5c.9-.9 2.2-1.5 3.5-1.5a4.53 4.53 0 0 1 1.6.3c.5.2.9.6 1.3 1v-1l2.9-.1zm-2.9 4.7c0-.5-.1-1-.4-1.4s-.6-.7-1.1-.9a2.2 2.2 0 0 0-1.4-.2c-.5.1-.9.3-1.3.6-.3.3-.6.8-.7 1.2-.1.5-.1 1 .1 1.4s.5.8.9 1.1.9.4 1.3.4c.3 0 .6 0 .9-.1s.6-.3.8-.5.4-.5.5-.8c.4-.1.4-.4.4-.8zm4.6.3c0-1 .3-2.1.9-2.9.6-.9 1.4-1.5 2.4-1.9s2-.5 3-.3 2 .7 2.7 1.4 1.2 1.7 1.4 2.7.1 2.1-.3 3c-.4 1-1.1 1.8-1.9 2.4a5.21 5.21 0 0 1-2.9.9c-.7 0-1.4-.1-2-.4s-1.2-.6-1.7-1.1-.9-1.1-1.1-1.7a4.55 4.55 0 0 1-.5-2.1zm7.5 0c0-.4-.2-.9-.4-1.3-.3-.4-.6-.6-1-.8s-.9-.2-1.3-.1-.8.3-1.2.6-.5.7-.6 1.2c-.1.4 0 .9.1 1.3.2.4.5.8.8 1 .4.2.8.4 1.3.4.3 0 .6-.1.9-.2s.5-.3.7-.5.4-.5.5-.8c.2-.2.2-.5.2-.8h0zm4.3-7.6a1.69 1.69 0 0 1 .3-1c.2-.3.5-.5.8-.7.3-.1.7-.2 1-.1s.7.2.9.5c.2.2.4.6.5.9s0 .7-.1 1-.4.6-.7.8a1.69 1.69 0 0 1-1 .3c-.5 0-.9-.2-1.3-.5-.2-.3-.3-.8-.4-1.2zm.3 2.6h3v9.9h-3v-9.9zm15.9 5c0 .7-.1 1.3-.3 1.9s-.6 1.2-1 1.7-1 .9-1.6 1.2-1.2.4-1.9.5c-.6 0-1.1-.1-1.6-.3s-1-.5-1.4-.9v4.9h-3v-14h3v.9c.4-.4.8-.7 1.4-.9a4.53 4.53 0 0 1 1.6-.3c.7 0 1.3.2 1.9.5s1.1.7 1.6 1.2c.4.5.8 1.1 1 1.7.2.5.3 1.2.3 1.9zm-3 0c0-.5-.2-.9-.4-1.3-.3-.4-.6-.7-1.1-.8-.4-.2-.9-.2-1.4-.1s-.9.3-1.2.7c-.3.3-.5.8-.6 1.2-.1.5 0 .9.1 1.4.2.4.5.8.9 1 .4.3.8.4 1.3.4.3 0 .6 0 .9-.2.3-.1.6-.3.8-.5s.4-.5.5-.8c.2-.4.2-.7.2-1zm12.1 1.9c0 2.3-2 3.2-4.1 3.2-.9.1-1.7-.1-2.5-.5s-1.4-1.1-1.8-1.8l2.6-1.5c.1.4.3.7.6.9a1.93 1.93 0 0 0 1 .3c.7 0 1.1-.2 1.1-.6 0-1.1-4.9-.5-4.9-3.9 0-2.2 1.8-3.2 3.9-3.2.8 0 1.6.1 2.3.5s1.3.9 1.7 1.6l-2.6 1.4c-.1-.3-.3-.5-.5-.6-.2-.2-.5-.2-.8-.2-.5 0-.8.2-.8.5-.1 1 4.8.3 4.8 3.9zm10.9-6.9v9.9h-3v-.9c-.3.4-.8.7-1.3 1-.5.2-1 .3-1.6.3-2 0-3.7-1.4-3.7-4.1v-6.1h3v5.6c0 .2 0 .5.1.7s.2.4.4.6.4.3.6.4.5.1.7.1c1.1 0 1.8-.6 1.8-2v-5.4h3zm17 3.8v6.1h-3v-5.8c0-1-.5-1.6-1.4-1.6s-1.6.7-1.6 1.9v5.6h-3V19c0-1-.5-1.6-1.4-1.6s-1.6.7-1.6 1.9v5.6h-3V15h3v.9a2.73 2.73 0 0 1 1.2-.9c.5-.2 1-.3 1.5-.3s1 .1 1.5.3.8.6 1.1 1a3.25 3.25 0 0 1 1.3-1 4.53 4.53 0 0 1 1.6-.3c2.3-.2 3.8 1.5 3.8 3.9zm2.5-3.9a2.22 2.22 0 0 0 2.2-2.2 2.22 2.22 0 0 0-2.2-2.2 2.22 2.22 0 0 0-2.2 2.2 2.22 2.22 0 0 0 2.2 2.2z"/></svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 154 36" fill="#b4b7c9" xmlns:v="https://vecta.io/nano"><path d="M52.9 12.1h3v12.1h-3V12.1zm4.2 7.5c0-3 1.8-4.8 4.7-4.8s4.7 1.8 4.7 4.8-1.8 4.8-4.7 4.8-4.7-1.7-4.7-4.8zm6.3 0c0-1.6-.6-2.6-1.7-2.6S60 18 60 19.6s.6 2.6 1.7 2.6 1.7-.9 1.7-2.6h0zm4.2 5.2h2.9a1.21 1.21 0 0 0 .7.7c.3.2.6.2 1 .2 1.1 0 1.7-.6 1.7-1.5v-1.7h-.1c-.2.5-.6.9-1.1 1.2s-1 .4-1.6.4c-2.2 0-3.6-1.7-3.6-4.5s1.4-4.7 3.7-4.7c.6 0 1.2.1 1.7.4s.9.8 1.1 1.3V15h3v9.1c0 2.2-1.9 3.5-4.8 3.5-2.8 0-4.5-1.1-4.6-2.8h0zm6.2-5.2c0-1.5-.7-2.4-1.7-2.4s-1.7.9-1.7 2.4.6 2.3 1.7 2.3 1.7-.8 1.7-2.3h0zm4.1 0c0-3 1.8-4.8 4.7-4.8s4.7 1.8 4.7 4.8-1.8 4.8-4.7 4.8-4.7-1.7-4.7-4.8h0zm6.4 0c0-1.6-.7-2.6-1.7-2.6S81 18 81 19.6s.6 2.6 1.7 2.6c1 0 1.6-.9 1.6-2.6h0zm4.1-6.8c0-.3.1-.6.2-.9.2-.3.4-.5.7-.6s.6-.2.9-.1.6.2.8.4.4.5.4.8c.1.3 0 .6-.1.9s-.3.5-.5.7-.5.3-.8.3c-.2 0-.4 0-.6-.1s-.4-.2-.5-.3-.3-.3-.3-.5c-.1-.2-.2-.4-.2-.6h0zm0 2.2h3v9.2h-3V15zm13.9 4.6c0 3-1.3 4.7-3.6 4.7-.6 0-1.2-.1-1.7-.4s-.9-.8-1.1-1.3h-.1v4.5h-3V15h3v1.6h.1c.2-.5.6-1 1.1-1.3s1.1-.5 1.7-.4c2.3 0 3.7 1.7 3.6 4.7h0zm-3 0c0-1.5-.7-2.4-1.7-2.4s-1.7.9-1.7 2.4.7 2.4 1.7 2.4 1.7-.9 1.7-2.4h0zm8.2-4.8c2.5 0 4 1.2 4.1 3.1h-2.7c0-.6-.5-1.1-1.4-1.1-.8 0-1.2.3-1.2.8s.3.6 1 .8l1.9.4c1.8.4 2.6 1.1 2.6 2.5 0 1.9-1.7 3.1-4.3 3.1-2.5 0-4.2-1.2-4.3-3.1h2.9c.1.7.6 1.1 1.5 1.1s1.3-.3 1.3-.8-.3-.6-1-.7l-1.7-.4c-1.8-.4-2.7-1.3-2.7-2.7-.1-1.8 1.5-3 4-3h0zm14.3 9.4h-2.9v-1.7h-.1c-.2.6-.5 1.1-1 1.4s-1.1.5-1.7.5c-.5 0-.9 0-1.3-.2s-.8-.4-1.1-.7-.6-.7-.7-1.1c-.2-.4-.2-.9-.2-1.3V15h3v5.2c0 1.1.6 1.7 1.5 1.7.2 0 .4 0 .6-.1s.4-.2.5-.4.3-.4.3-.6c.1-.2.1-.4.1-.6V15h3v9.2zm1.4-9.2h2.9v1.8h.1c.2-.6.5-1.1 1-1.4.5-.4 1-.5 1.6-.5s1.2.1 1.7.5a2.37 2.37 0 0 1 .9 1.5h.1c.2-.6.6-1.1 1.1-1.5s1.1-.5 1.8-.5c.4 0 .8.1 1.2.2.4.2.7.4 1 .7s.5.6.6 1 .2.8.2 1.2v6.2h-3v-5.4c0-1-.4-1.5-1.3-1.5-.2 0-.4 0-.5.1a1.38 1.38 0 0 0-.4.3c-.1.1-.2.3-.3.5s-.1.4 0 .6v5.4h-2.8v-5.5c0-.9-.5-1.4-1.3-1.4-.2 0-.4 0-.5.1-.2.1-.3.2-.5.3-.1.1-.2.3-.3.5s-.1.4-.1.6v5.4h-3l-.2-9.2zm-78.7-2.4c-.5-1.2-1.2-2.2-2-3.2-1.2-1.5-2.7-2.7-4.4-3.5-1.7-.9-3.6-1.3-5.5-1.4s-3.8.2-5.6 1c-1.8.7-3.4 1.8-4.7 3.2s-2.4 3-3 4.8-.9 3.7-.8 5.6.7 3.8 1.6 5.4c.9 1.7 2.2 3.1 3.7 4.3a11.37 11.37 0 0 0 3.2 1.8c1.6.7 3.3 1 5.1 1 3.6 0 7-1.4 9.6-4 2.5-2.5 4-6 4-9.6a16.33 16.33 0 0 0-1.2-5.4zM32.1 7.2c1.6 0 3.1.3 4.5 1-.3.1-.7.3-1.1.3-1.2.2-2.4.7-3.2 1.6-.9.9-1.4 2-1.6 3.2a3.1 3.1 0 0 1-.9 1.8c-.5.5-1.1.8-1.8.8-1.2.2-2.4.7-3.2 1.6-.9.9-1.4 2-1.6 3.2-.1.7-.3 1.3-.8 1.7-.8-1.6-1.1-3.5-1-5.3s.7-3.6 1.7-5.1 2.3-2.8 3.9-3.7c1.5-.7 3.2-1.1 5.1-1.1h0zM23.8 25c.1-.1.2-.2.4-.3.9-.9 1.5-2 1.6-3.2a3.1 3.1 0 0 1 .9-1.8 3.1 3.1 0 0 1 1.8-.9c1.2-.2 2.4-.7 3.2-1.6.9-.9 1.4-2 1.6-3.2 0-.7.4-1.4.9-1.9s1.1-.8 1.8-.8c1.1-.2 2.2-.7 3-1.4a13.12 13.12 0 0 1 2.4 2.8c0 .1-.1.1-.1.1a3.1 3.1 0 0 1-1.8.9c-1.2.2-2.4.7-3.2 1.6-.9.9-1.4 2-1.6 3.2a3.1 3.1 0 0 1-.9 1.8 3.1 3.1 0 0 1-1.8.9c-1.2.2-2.4.7-3.2 1.6-.9.9-1.5 2-1.6 3.2-.1.5-.2 1-.5 1.4-1.2-.7-2.1-1.5-2.9-2.4zm8.3 3.9c-1 0-2-.1-3-.4.3-.6.6-1.3.6-2a3.1 3.1 0 0 1 .9-1.8 3.1 3.1 0 0 1 1.8-.9c1.2-.2 2.4-.7 3.2-1.6.9-.9 1.4-2 1.6-3.2a3.1 3.1 0 0 1 .9-1.8 3.1 3.1 0 0 1 1.8-.9c.9-.1 1.8-.5 2.6-1 .4 1.6.5 3.3.1 4.9-.3 1.6-1 3.1-2 4.5-1 1.3-2.3 2.4-3.8 3.1-1.5.6-3.1 1-4.7 1.1h0z"/></svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 154 36" fill="#b4b7c9" xmlns:v="https://vecta.io/nano"><path d="M42.5 13.2c.4 0 .5.1.5.5v7.9h4.1c.3 0 .5.1.5.5v.7c0 .4-.1.5-.5.5h-5.4c-.3 0-.5-.1-.5-.5v-9.1c0-.3.1-.5.5-.5h.8zm8.6 3.5c0-2.3 1.5-3.7 4-3.7s4 1.4 4 3.7v3.1c0 2.3-1.5 3.7-4 3.7s-4-1.4-4-3.7v-3.1zm6.3 0c0-1.3-.8-2-2.3-2s-2.3.7-2.3 2v3.1c0 1.3.8 2 2.3 2s2.3-.7 2.3-2v-3.1zM71 17.8c.4 0 .5.1.5.5v1.9a3.08 3.08 0 0 1-.3 1.3 4.44 4.44 0 0 1-.8 1.1c-.8.7-1.9 1-3 .9-2.6 0-4-1.4-4-3.7v-3.1c0-2.3 1.5-3.7 4-3.7 2 0 3.3.8 3.8 2.4v.2.2c0 .1-.1.1-.1.2 0-.1-.1 0-.1 0l-.8.3c-.3.1-.5.1-.6-.3-.2-.4-.5-.8-.9-1a3.08 3.08 0 0 0-1.3-.3c-1.5 0-2.3.7-2.3 2v3.2c0 1.3.8 2 2.3 2s2.4-.7 2.4-1.6v-.7h-2.2c-.4 0-.5-.1-.5-.5v-.7c0-.4.1-.5.5-.5H71zm4.6-1.1c0-2.3 1.5-3.7 4-3.7s4 1.4 4 3.7v3.1c0 2.3-1.5 3.7-4 3.7s-4-1.4-4-3.7v-3.1zm6.3 0c0-1.3-.8-2-2.3-2-1.4 0-2.3.7-2.3 2v3.1c0 1.3.8 2 2.3 2s2.3-.7 2.3-2v-3.1zm6.4-3.2c0-.2.1-.3.3-.3h.5c.2 0 .3.1.3.3V23c0 .2 0 .3-.3.3h-.5c-.2 0-.3-.1-.3-.3v-9.5zm10.2-.3c.8 0 1.6.3 2.2.9s.9 1.4.9 2.2-.3 1.6-.9 2.2-1.4.9-2.2.9h-3V23c0 .2-.1.3-.3.3h-.5c-.2 0-.3-.1-.3-.3v-9.5c0-.2.1-.3.3-.3h3.8zm-.1 5.3c.3 0 .6-.1.8-.2.3-.1.5-.3.7-.5s.4-.4.5-.7.2-.5.2-.8-.1-.6-.2-.8c-.1-.3-.3-.5-.5-.7s-.4-.4-.7-.5-.5-.2-.8-.2h-3v4.4h3zm11-5.4c.8-.1 1.6.1 2.2.5a3.53 3.53 0 0 1 1.5 1.7c.1.2 0 .3-.2.4l-.4.2c-.2.1-.2.1-.4-.1-.2-.5-.6-1-1.1-1.3s-1.1-.4-1.6-.4c-1.7 0-2.6.7-2.6 1.9a1.69 1.69 0 0 0 .3 1c.2.3.6.5.9.5.5.2 1.1.3 1.7.3.7 0 1.4.2 2 .4a2.73 2.73 0 0 1 1.2.9c.3.4.4.9.4 1.5 0 1.9-1.4 3-3.9 3-.8.1-1.6-.1-2.3-.5s-1.2-1.1-1.5-1.9v-.1-.1s0-.1.1-.1c0 0 .1 0 .1-.1l.4-.2h.1.1s.1 0 .1.1c0 0 0 .1.1.1.2.6.6 1 1.1 1.4.5.3 1.1.5 1.7.4 1.9 0 2.8-.7 2.8-2a1.69 1.69 0 0 0-.3-1c-.2-.3-.5-.5-.9-.6-.5-.2-1.1-.2-1.6-.3l-1.1-.1-1-.3c-.3-.1-.6-.3-.9-.5s-.5-.5-.6-.9c-.1-.3-.2-.7-.2-1 .2-1.7 1.5-2.8 3.8-2.8zm9.3 6.8c0 .7.4 1.4.9 1.9s1.2.8 1.9.8 1.4-.3 1.9-.8.8-1.1.9-1.9v-6.3c0-.2.1-.3.3-.3h.5c.2 0 .3.1.3.3v6.3c0 2.3-1.3 3.6-3.8 3.6s-3.8-1.4-3.8-3.6v-6.3c0-.2.1-.3.3-.3h.5c.2 0 .3.1.3.3v6.3zm20.4-6.6c.2 0 .3.1.3.3V23c0 .2-.1.3-.3.3h-.4c-.2 0-.3-.1-.3-.3v-5.8c0-.8.1-1.7.2-2.5h-.1c-.3.8-.7 1.5-1.1 2.2l-2.2 3.8c0 .1-.1.1-.1.2-.1 0-.1.1-.2.1h-.3c-.1 0-.1 0-.2-.1-.1 0-.1-.1-.1-.2l-2.2-3.8c-.4-.7-.7-1.4-1-2.2h-.1l.2 2.5V23c0 .2-.1.3-.3.3h-.4c-.2 0-.3-.1-.3-.3v-9.5c0-.2.1-.3.3-.3h.4c.1 0 .2 0 .2.1.1 0 .1.1.2.2l3.5 6.2 3.5-6.2c.1-.2.2-.2.4-.2h.4zM24.7 21.8V29c0 .3-.1.5-.3.7a1.08 1.08 0 0 1-.7.3c-.3 0-.5-.1-.7-.3a1.08 1.08 0 0 1-.3-.7v-7.2a1.69 1.69 0 0 0 1 .3c.3.1.7-.1 1-.3zm8.9-2.1c-.3 0-.5.1-.7.3s-.3.4-.3.7V22c0 .3.1.5.3.7a1.08 1.08 0 0 0 .7.3c.3 0 .5-.1.7-.3a1.08 1.08 0 0 0 .3-.7v-1.2c0-.1 0-.3-.1-.4s-.1-.3-.2-.4-.2-.2-.4-.2c0-.1-.1-.1-.3-.1zm-13.2 4.8a1.69 1.69 0 0 1-1-.3v7.2c0 .3.1.5.3.7a1.08 1.08 0 0 0 .7.3c.3 0 .5-.1.7-.3a1.08 1.08 0 0 0 .3-.7v-7.2c-.3.3-.6.4-1 .3zm10-7c-.1 0-.3 0-.4.1-.1 0-.2.1-.3.2s-.2.2-.2.3c-.1.1-.1.3-.1.4v5.6c0 .3.1.5.3.7a1.08 1.08 0 0 0 .7.3c.3 0 .5-.1.7-.3a1.08 1.08 0 0 0 .3-.7v-5.5c0-.1 0-.3-.1-.4s-.1-.3-.2-.4-.2-.2-.4-.2c-.1 0-.2-.1-.3-.1h0zM27 19.7a1.69 1.69 0 0 1-1-.3v7.3c0 .3.1.5.3.7a1.08 1.08 0 0 0 .7.3 1.08 1.08 0 0 0 .7-.3 1.08 1.08 0 0 0 .3-.7v-7.3c-.2.2-.6.3-1 .3h0zm-8.9 5.5V4.9a1.08 1.08 0 0 0-.3-.7c-.2-.1-.4-.2-.6-.2H17a1.08 1.08 0 0 0-.7.3c-.2.2-.3.4-.3.6v20.3a1.08 1.08 0 0 0 .3.7c.2.2.4.3.7.3h.2a1.08 1.08 0 0 0 .7-.3c.1-.2.2-.4.2-.7zm2.4-1.4h-.2a1.08 1.08 0 0 1-.7-.3c-.2-.2-.3-.4-.3-.7V7.3a1.08 1.08 0 0 1 .3-.7c.2-.2.4-.3.7-.3h.2a1.08 1.08 0 0 1 .7.3c.2.2.3.4.3.7v15.5a1.08 1.08 0 0 1-.3.7 1.08 1.08 0 0 1-.7.3h0zm3.3-2.4h-.2a1.08 1.08 0 0 1-.7-.3c-.2-.2-.3-.4-.3-.7V9.8c0-.1 0-.2.1-.4 0-.1.1-.2.2-.3s.2-.2.3-.2.2-.1.4-.1h.2a1.08 1.08 0 0 1 .7.3c.2.2.3.4.3.7v10.7a1.08 1.08 0 0 1-.3.7c-.2.1-.5.2-.7.2zm3.3-2.5h-.2a1.08 1.08 0 0 1-.7-.3c-.1-.1-.2-.4-.2-.6v-5.8c0-.1 0-.3.1-.4 0-.1.1-.2.2-.3s.2-.2.3-.2c.1-.1.2-.1.4-.1h.2a1.08 1.08 0 0 1 .7.3c.2.2.3.4.3.7V18c0 .1 0 .2-.1.4 0 .1-.1.2-.2.3s-.2.2-.3.2h-.5 0zm3.3-2.1h-.2a1.08 1.08 0 0 1-.7-.3c-.2-.2-.3-.4-.3-.7v-1.5a1.08 1.08 0 0 1 .3-.7c.2-.2.4-.3.7-.3h.2a1.08 1.08 0 0 1 .7.3c.2.2.3.4.3.7v1.5a1.08 1.08 0 0 1-.3.7c-.2.2-.4.3-.7.3h0z"/></svg>

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 154 36" fill="#b4b7c9" xmlns:v="https://vecta.io/nano"><path d="M50.5 11.1h3.2V24h-3.2V11.1zm4.4 8c0-3.2 2-5.1 4.9-5.1 3 0 4.9 1.9 4.9 5.1s-1.9 5.1-4.9 5.1-4.9-1.8-4.9-5.1zm6.7 0c0-1.7-.7-2.8-1.8-2.8s-1.8 1-1.8 2.8.7 2.8 1.8 2.8 1.9-1 1.8-2.8h0zm4.4 5.5h3.1c.1.3.4.6.7.8s.7.2 1 .2c1.2 0 1.8-.7 1.8-1.6v-1.8h0a3.04 3.04 0 0 1-1.2 1.3c-.5.3-1.1.4-1.7.4-2.3 0-3.8-1.8-3.8-4.8s1.5-4.9 3.9-4.9c.6 0 1.2.1 1.8.5.5.3.9.8 1.2 1.4h-.1v-1.8h3.1v9.6c0 2.3-2 3.8-5.1 3.8-2.7-.1-4.5-1.3-4.7-3.1h0zm6.6-5.5c0-1.5-.7-2.5-1.8-2.5s-1.8 1-1.8 2.5.7 2.4 1.8 2.4c1.1.1 1.8-.8 1.8-2.4zm4.4 0c0-3.2 2-5.1 4.9-5.1 3 0 4.9 1.9 4.9 5.1s-1.9 5.1-4.9 5.1-4.9-1.8-4.9-5.1h0zm6.7 0c0-1.7-.7-2.8-1.8-2.8s-1.8 1-1.8 2.8.7 2.8 1.8 2.8c1.2 0 1.9-1 1.8-2.8h0zm4.4-7.1c0-.3.1-.6.2-.9.2-.3.4-.5.7-.6s.6-.2.9-.1.6.2.8.4.4.5.5.8 0 .6-.1.9-.3.6-.6.7c-.3.2-.6.3-.9.3-.2 0-.4 0-.6-.1s-.4-.2-.5-.3-.3-.3-.3-.5 0-.4-.1-.6h0zm0 2.3h3.2V24h-3.1l-.1-9.7zm14.7 4.8c0 3.2-1.4 5-3.8 5-.6 0-1.2-.1-1.8-.4-.5-.3-.9-.8-1.2-1.4h0v4.8h-3.2V14.3H96V16h0c.2-.6.7-1.1 1.2-1.4s1.1-.5 1.8-.5c2.5.1 3.9 1.9 3.8 5h0zm-3.2 0c0-1.5-.7-2.5-1.8-2.5s-1.8 1-1.8 2.5.7 2.5 1.8 2.5c1.1.1 1.9-.9 1.8-2.5h0zm8.6-5c2.6 0 4.3 1.3 4.3 3.3h-2.9c0-.7-.6-1.1-1.4-1.1-.9 0-1.3.3-1.3.8s.4.7 1.1.8l2 .4c2 .4 2.8 1.2 2.8 2.7 0 2-1.8 3.3-4.5 3.3s-4.5-1.3-4.6-3.3h3.1c.1.7.7 1.1 1.6 1.1s1.4-.3 1.4-.8-.3-.6-1.1-.8l-1.8-.4c-1.9-.4-2.9-1.4-2.9-2.9 0-1.9 1.6-3.1 4.2-3.1h0zm15.2 9.9h-3.1v-1.8h-.1c-.2.6-.5 1.1-1.1 1.5-.5.4-1.1.5-1.8.5-.5 0-.9-.1-1.4-.3-.4-.2-.8-.5-1.2-.8-.3-.3-.6-.8-.7-1.2-.2-.4-.2-.9-.2-1.4v-6.2h3.2v5.6c0 1.1.6 1.8 1.6 1.8.2 0 .5-.1.7-.2s.4-.2.5-.4c.2-.2.3-.4.3-.6.1-.2.1-.5 0-.7v-5.5h3.1l.2 9.7zm1.5-9.7h3.1v1.9h.1c.2-.6.5-1.1 1-1.5s1.1-.6 1.7-.6c.6-.1 1.2.1 1.7.5s.8.9 1 1.6h.1c.2-.6.6-1.2 1.1-1.5.5-.4 1.2-.6 1.8-.5.4 0 .9.1 1.3.2.4.2.8.4 1.1.7s.5.7.7 1.1c.1.4.2.8.2 1.3V24h-3.2v-5.8c0-1-.5-1.5-1.4-1.5-.2 0-.4 0-.6.1s-.3.2-.5.3c-.1.1-.2.3-.3.5s-.1.4 0 .6V24h-3v-5.8c0-1-.5-1.5-1.3-1.5-.2 0-.4 0-.6.1s-.3.2-.5.4c-.1.2-.2.3-.3.5s-.1.4-.1.6V24h-3.2l.1-9.7zM44.3 12c0-2-.6-3.9-1.7-5.5s-2.7-2.9-4.5-3.6-3.8-.9-5.7-.4c-1.9.4-3.6 1.5-5 2.9H15.1v26H41V19.2c1-.9 1.8-2 2.4-3.3s.9-2.5.9-3.9zm-5 0c0 .9-.3 1.9-.8 2.6-.5.8-1.3 1.4-2.1 1.8-.9.4-1.8.5-2.7.3s-1.8-.6-2.4-1.3A4.74 4.74 0 0 1 30 13c-.2-.9-.1-1.9.3-2.7.4-.9 1-1.6 1.7-2.1.8-.5 1.7-.8 2.6-.8A4.76 4.76 0 0 1 38 8.8c.8.7 1.3 1.9 1.3 3.2zM36 26.4H20v-16h4.9c-.1.5-.1 1.1-.1 1.6 0 2.6 1 5.1 2.9 6.9 1.8 1.8 4.3 2.9 6.9 2.9.5 0 1 0 1.5-.1v4.7z"/></svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 439 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

BIN
public/assets/images/favicon.ico Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 KiB

View File

@@ -0,0 +1,76 @@
<svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-ac" viewBox="0 0 512 512">
<path fill="#006" d="M512 512V0H0v512z"/>
<path fill="#8fc5ff" stroke="#fff" stroke-width="3.5" d="M471.1 219.4c0 57.8-9.2 120.2-84.4 150-74.8-29.8-84-92.2-84.4-150z"/>
<path fill="#366cc9" stroke="#000" stroke-width="3.5" d="M386.7 369a121.6 121.7 0 0 0 66.7-56.7h-7.1c-2.1-.3-72-7-80.5-10.6-7-2.5-34.8 2.5-47.5 7a120.6 120.6 0 0 0 68.4 60.4z"/>
<path fill="#5d3100" stroke="#000" stroke-width=".4" d="M334.2 333.6h4.3c1 0 1 0 1.4-1 .4-1.1 1.4-.8 2.1-.4.7.3 2.2 0 2.9-.7.7-.7.7-.7 1.4 0s1 .3 1.8 0c.3 0 1.7-.7 2-1.8.4-1 1.5-1.4 1.9-.7.3.7 1 .7 1.7.7.8 0 .8.4.8 1.4 0 .7 0 1 1.7-.3 1.4 1.4 1.8.7 1.8-.7 0-1.5 0-7.1-.7-7.5-.7-.3-1-2.8-1.4-4.6 0-3.5 0-3.5-3.6-5.3 0-1-.7-1.4-3.5-1.4.3-.4 0-1.5-.7-1.8-.7-.4-.7-.7 0-2.1.7 0 2 0 2.4-1.1.8-.7 2.9-.7 4.3 0s2.8.7 5.3 0l4.3-2.1c1.8-1 2.1-1.4 2.1-2.9 0-3.5-1-7-1.8-8.8-1-1.8-1-3.6-2.4-6.8-1.5-2.8-1.5-3.5-2.9-5.3-.7-.7-1-1-1-2.1a5.3 5.3 0 0 0-1.8-3.6c-2.9-2.4-3.6-10.6-5-16.6-.7-3.6 0-11.7-1.4-13.2-2.5-1.7-3.6-1.4-5.3-2-1.4-1.9-1.8-5-3.2-8.2-1.8.3-2.9 2-4 2.8-1 .7-1.3.7-1.3 2.5 0 1.4-1.1 3.5-2.5 6.4-1.4 2.8-4.6 1.7-7.1 5.6-5-6-5-7.8-5.3-9.5 0-1.8-1.1-2.2-4-4.7v-5.3c-2.4-1.7-3.8-1.4-4.9 0-1 1-1.8 2.9-3.5 3.6-.8 1.4-3.6 4.2-5.7 8.1 2.1 32 9.2 63.9 30.8 89.4z"/>
<path fill="#ff0" stroke="#fff" stroke-width="3.5" d="M471.1 219.4c0-22-1-43.3-.7-61.7a225.6 225.6 0 0 0-83.7-15.3c-18.8 0-55.7 2.9-83.7 15.3.7 18.4-.7 39.7-.7 61.7z"/>
<path fill="#cf6200" d="M307 244.5c.9 1.5 2.6 4 2.7 5.4.8-1.3 1.2-2 1.3-2.7.2-.8 1.2-2.5.8-3.3-.5-.9-.6-1.6.4-1 1 .7.8 1.8.6 3.4-.6 4.5-2.5 5.5-2.8 8.6 2.7 6.3.7 8.6 3.6 14.9.5.3 1.7-.2 2.1 0 1.6-1.2 2.7-.8 5-.4 2.1.5 3.3 2 3.3 3.5 0 1.4 0 1.7.5 2.5.5 1 1.5 2.2 1.2 3-.2 1 .2 1.5.5 2s-.1 1.4-.4 2.1c-.3.8-.2 1.5 1 3 1 1.3 3.6 7 3.6 10.5 0 3.3.2 5 1.6 5.6 1.4.7 1.9 1.2 1.6 2.7a84 84 0 0 0 .9 10.3c.2 1.2.6 1 1.1 1.6.6.6 1 1.4 2.8 1.4 2 0 3.6-.3 4.9 0 1.6 2.2 2.6 5.3 3 7.3.3 2 .3 4.6 1 4.6.6 0 1.3 0 1-2.3-.2-2.4-.3-2.8-1.1-4-.9-1.2-1.3-1.8-.9-2.5.5-.7.6-2 .4-2.9-.2-.9-.4-2.3 1.1-.5l2.6 3c.5.7.6 1.8.5 3-.1 1 .1 1.5.7 1 .7-.6 1.5.4 1.1 1.6-.3 1.2 0 2 1.2 2.3 1.2.3 1.6.6 1.8 1.4.2.8 1.3 1.2 1.3-.4 0-1.7-.7-5.2-1.1-6.3-.5-1.1-.9-3.5-1-5 0-1.3-.3-1.6-1-2-.6-.2-1.2-.6-1.3-1.4 0-.7-.7-.7-1-.7-.4 0-.8-.4-1-.8-.2-.5-.5-.5-1-.6-.4 0-1.2.2-1.4-.5-.2-.7-.6-1.8-1-2.4-.4-.7-.9-.8-1-3 0-2 0-2.2-.7-3a23 23 0 0 1-2.2-3.5c-.4-.7-1-1.6-1 .1 0 1.7 0 2.7 1.2 3.3 1.1.7 1.4.7.9 1.6-.5.9 0 1.6.2 2.2.2.7.6 1.3 0 2-.6.6-1.1.4-1-.6a5.7 5.7 0 0 0-.7-3c-.5-.9-.9-1.5-1.4-1-.6.5-1 0-.7-.4.4-.3.3-.7 0-1-.3-.1-.3-.5.2-1 .5-.6.4-.9.1-2.2-.3-1.2-2.3-7.7-3.2-9.2-1-1.5-.8-2.6.3-1 1.2 1.4 2.3 2.6 2.3 3.9.2 1.2.5 2 .7 2.4.3.5.8.2.9-.7.1-1 1-.7-.4-2.7-1.2-1.9-3.6-5.1-4.5-11-1-5.8-1.3-9.6-2.3-11.1-.9-1.6-1.2-2-1.3-3.5 0-1.5 0-3-.7-4s-1-1.3-1.1.4a21 21 0 0 0 .5 6c.5.6.3 2.2.1 3.2-.1.9-1.5 1.8 1.5 3.7 1.2.7 1 1.7.8 2.3-.1.7-.3.6-1-.4-.6-1-1.3-1.8-2-2.4-.6-.6-.6-1-.6-2.2.1-1.2.4-2.2 0-2.7-.3-.4-.5 0-.7.7-.2.7-.3 2.7-.7 3.2-.4.5-.6.3-.9-1-.3-1.2.1-3 .7-5.1.7-2.2 1.1-4.3.6-7.1-.6-2.8-.3-3.6-2.5-6-2.1-2.2-4.4-4.4-5.5-7.3-1-2.9-1.2-5.3-2.3-6.6a15.1 15.1 0 0 0-3.7-3.4V234c0-1-.5-1.6-1.6-1.4-1.2.2-2 1.1-2.7 2.6-.7 1.3-1.3.7-2.3 3-1.1 2.4-2.5 3.6-2.5 6.2z"/>
<path fill="#cf6200" d="M313.7 271.6c.7.5 1.4.7 2.5.2 1-.5 2.4-2.2 4-.6a10 10 0 0 1 2.2 6.2c0 2 0 5.8 2.3 7.9 2.3 2.1 3.6 4.3 3.6 7.1.1 2.8 1.1 7 1.5 8.2.2 1 .8 2.3 1.5 3 .8.8 1.3 3 1.5 5 0 2.4-.3 4 0 5s0 2-.9 1.4c-.8-.5-1-.7-1.4-1.7-.4-1-1.1-.7-.6.7.5 1.5 1.8 2.6 3 2.6s1.6.2 2.3 1c.7.7.9 1.1 2.2 1.1 1.3 0 1.4 0 2.6.4 1.2.3 1.2.1 1.9 0 .6-.2 1.3.3 1.7 1.5.4 1.3 1.6 4.6 1.6 5.4 0 .9 0 1.9.6 2.8.7 1 .5 1.9-.3 1.3-.7-.6-.7-.3-1.2-.3-.6.1-1-.1-1.7-.6s-.3-.4-1-1.5c-.7-1-1.2-1.5-1.2-.7s0 1.9-.7 1.5c-.5-.5-.8-.5-1.3 0s-.6.8-1.2-.1c-.5-.9-1.1-1-1.7-1.2-.6-.2-.6-.1-.8-1-.3-.8-1.1-1-1.9-1-.7 0-1.1-.3-1.2-.9 0-.6-.5-1-.9-1.2-.4-.3-.1-1-.3-1.6-.1-.6-.6-.4-1-.5-.4-.1-.6 0-.6-1s-.4-1.2-.7-1.9c-.2-.7 0-1.3.2-2a2 2 0 0 0-.4-1.8c-.6-.7-.1-1.3-1.6-2.6-1.4-1.3-2.2-.2-2.7-3.3a48 48 0 0 0-2.2-10.3c-.7-1-1.4-1.7-2.2-2-.8-.3-1.4 0-1.4-1.9-.2-1.7-.7-3.9-1.8-5l-2.2-2c-.5-.3-.7-1.2 0-2.8.8-1.6.5-3.7.4-4.7 0-1-.4-2.3-.1-3.4.2-1 0-2.5-.3-3.2-.2-.7-.6-1-.1-1.5zm22.2-26.2a20 20 0 0 1-4.3 4.2c-1.8 1.2-4 2.1-2.8 4.3 1.3 2 2.3 2.3 2.5 3.9.3 1.6.6 2.9 1.8 3.3 1.3.4 1.8.1 1.8 2.7s0 3.6 1.1 4.5c1.2 1 1 2 1.4 4.4.5 2.3.5 7.3 2 10.7 1.6 3.4 4.9 10 4.5 11.3-.4 1.3-.9 2.4.6 4a11 11 0 0 1 2.6 5.3c.1 1.4.3 1.9 1.8 1.4s2.2-1 2.7-1.7c.5-.6 1.4-.4 2.8.3s3.5 1.4 4.7.7c1.2-.7 1.9-1.8 3-1.8 1.7-1.3 2.3-3.9 2.7-4.6.3-.7 0-.7-.7-1.4s-.3-2-.5-3.2a14 14 0 0 0-2-5.8c-1.5-2.7-2.4-6-3.4-7-1-.8-1.4-2.8-1.5-3.8-.2-1-1.3-1.9-2-2.6-.8-.7-1.5-1.8-2.3-6.2-.9-4.3-1.5-7.3-1.5-8 0-.8-.2-1-1-1.1-.6-.3-1-1.5-.8-2.2.2-.6-.2-1.2-.5-2-.3-.6 0-2 .5-2.8.5-.7.4-2.8-.1-4.5-.5-1.7-1-3.2-2.9-3.5-2-.2-2.3-.7-3.1-2.3-.8-1.6-1.5-4.4-1.8-5-.2-.7-.5-.7-2 .5s-2 1.6-2 3.9c0 1.4.2 2 .7 2.9.5.8.7 1 1 3.4.4 2.4 2.5 6-.2 8.1-2.8 2.2-2.3 2.6-2.2 4 0 1.5-.7 2.5-1.2.4-.5-2 0-3.3 1.4-4.3 1.5-1 2.9-2.2 1.9-3.6-1-1.3-1.4-4.5-1.4-6-.1-1.4-.5-2-1.3-.8z"/>
<path fill="#00b800" d="m314 276.7.2 3c0 1 .4 3.1-.4 4.6-.7 1.6-.5 2.5 0 3a2.2 2.2 0 0 0 1.4-3 3 3 0 0 1 .2-2.8c.4-.8.4-1.3 0-1.9-.4-.6-.4-.6 0-2.4.5-1.5-.6-1.5-1.4-.5zm15.8 23.9c-.4-1.2-1.4-5.4-1.5-8.2a10 10 0 0 0-3.6-7.1c-1.8-1.6-2.1-4.3-2.3-6.3-1.3-.9-1.9-.5-1.7 1 0 1.7 1.7 2.5 1.5 4.8-.3 2.5-.3 1.8.9 3 1.1 1.3 1.6 2.3 1 2.8-.6.5-.7 1.3.1 1.6.9.4 1 1.3.8 2.2 0 .8.7 1 1.2 1.6a3 3 0 0 1 0 3c-.4.8-.5 2.1.4 1.4.9-.7 1.2 0 1.9 1.2.5 1 1 .7 1.7.3a7.7 7.7 0 0 1-.5-1.4zm11.9 21.4c-.6 1-1.2.7-1.7.1-.6-.5-1.3-.5-1-1.5.3-1 .2-1.2-.6-1.8a5.5 5.5 0 0 0-.2 0h-.8c-1.3 0-1.5-.5-2.2-1.2a6.2 6.2 0 0 0-.4-.5v.7c0 1 0 .8-1 1.1-1 .3-.9-1-1.1-1.8a3 3 0 0 0-.1-.5c-1.1-.2-2.3-1.4-2.7-2.6-.5-1.5 0-1.6.5-.7.4.8.7 1.2 1.5 1.7s1-.3.8-1.4a4.7 4.7 0 0 1 0-1.2c-.3-.4-.5-.7-.9-.9-1.4-.6-1-.8-.9-2 0-1.1-.2-1.1-1.1-.6-1 .8-1 0-1-1.9 0-1.8-1.3-1.8-1.5-.5-.3 1.3-.7.4-1.3-1.4-.5-1.9-1.3-2.3-1.4-.5 0 1.4-.4 1.8-1.4 1l.4 2.8c.5 3 1.2 2 2.7 3.3 1.5 1.3 1 2 1.5 2.6.6.6.7 1 .5 1.8-.2.7-.5 1.4-.2 2 .3.7.7 1 .7 1.8 0 .9.2.9.6 1.1l.7.1.7-1c1.2-1 3 .1 3.4 1.5.5 1.3 1.2 1.8 2 .7.8-1 .6-1 1.5 0 .8 1 1.3.9 1.3.9s1-.4 1.6.2c.6.5 1 .4 2.1-1.3 1.3-1.7-.5-1.2-1 0zm3.3-50.6c.3-2.7 0-5.4 1.2-6.4 1-1 2.4-2.9 2.3 1.3 0 4.1-.2 4-1 4.8-1 1-1.7 1.3-.8 3 .9 1.5 1 1.6.9 4-.2 2.5-.2 3.5.8 4.7 1 1.3 1.2 1.4 1.4 2.8a9 9 0 0 0 2.2 4.1c1 1 2.4 3.8 2.5 5.8.2 2 1.9 2.5 3.5 3.8 1.5 1.4-.4 2.3-1.6 1.8-1.2-.8-.7 0-1.5.7-.7 1-1 1-1.6-.4-.7-1.4-2.7-2.5-3.7-2.9-.9-.3-1.8-1.9-2.7-3.5a4.5 4.5 0 0 0-3.6-2.5c.5 1 .7 1.9.5 2.2-.3 1.4-.8 2.4.7 4a11 11 0 0 1 2.6 5.3c0 1.3.3 1.8 1.7 1.3 1.6-.5 2.3-1 2.8-1.6.5-.6 1.4-.5 2.8.3 1.3.7 3.4 1.4 4.6.7 1.3-.7 1.9-1.8 3-1.8 1.8-1.3 2.3-3.9 2.7-4.6.4-.7.1-.7-.6-1.4s-.3-2-.5-3.2c-.1-1.3-.6-3.1-2.1-5.8-1.5-2.8-2.3-6-3.3-7-1-.8-1.4-2.8-1.6-3.9 0-1-1.2-1.8-2-2.6-.7-.7-1.4-1.7-2.3-6l-1.4-7.4c-.8 1.5-1.4 1.8-1.8.8-.3-1-.8-1.7-1.3-1s-.7-.6-.7-1.2 0-.7-.7-.7c-.6 0-.1-1-.4-2.9-.2-1.8-.6-2-.8.2-.2 2.2-1.4 3.5-1 4 .5.5.3 1.5-.2 3-.5 1.4-.3 2.3.1 3.3s-.3 2.9-.5 4.4c-.3 1.6 1 3.2 1.4.5zm-22.5-22c-1 0-1.6.8-1 3.6.3 1.7-1 1.4-1.4.5-.6-.9-1-2.7-2-4.3-.9-1.6-.5 1-.5 2.6-.2 1.4.8 1.4 1.7 2.7.9 1.3 0 1.7-.9 1.7s-.5 2-.3 3.3c.3 1.4-.2 1.6-.9.5s-.3-2.8-.1-5c.1-2 .2-1.5-1.2-2-1.3-.5-1-.7-.6-2 .5-1.2 1-1.8.4-2.5-.6-.5-.5-.9.5-1 1-.2.6-.9 1.4-1.2.9-.2 1.3.2 1.5-1.4 0-1.4.5-2.2 1.4-1.7.7 2 1.4 5.2 2 6.1zm12.3 14.4c0 2.6 0 3.6 1.1 4.5 1.2 1 1 2 1.5 4.4.5 2.3.5 7.3 2 10.7l1.6 3.7a6.9 6.9 0 0 0 1.8-2.3c.4-.8-.7-2.5-1.6-4-.9-1.5.1-2 1-3.8.8-2-.2-2-1.5-2.5-1.4-.5-1.4-1.7-2.1-3.7-.7-2-.6-2.8 0-3.9.3-1.1 0-2-1-2.2-1-.3-.7-1-.4-2.2.5-1.3.7-1.5-.8-1.2-1.1.3-1.4.5-1.8 1 .2.3.2.8.2 1.5z"/>
<path fill="#5d3100" d="M349 269c0 1.4 0 2.1-.4 2.6s-.2 1.3.2 2c.3.8.6 1.8.3 3-.4 1.4.2 2.6.9 3 .7.3 1.1 0 .9 1.7a5.3 5.3 0 0 0 1.5 4.3c.9.7 1.5 1.9 1.5 2.6-.2.7.5 1.5 1.4 1.9.9.3.7.5.7 1s.4.5 1.4.7c1 .2 1.7.9 2.9 2.2 1.1 1.4 2.6 2.2 2.4.6-.2-1.6 0-2.4-1.4-3.2-1.6-.7-2.7-4.3-3.3-6.7a14 14 0 0 0-3.7-6.5c-.1-1.6.1-2.5-1-3.3a3.6 3.6 0 0 1-1.4-2.9c0-.9-.7-2-1.1-2.1-.5-.3-.7-1-.7-1.7s-1-.6-1 .7z"/>
<path fill="#00d860" d="M342.5 334.8a35.9 35.9 0 0 0 8.9-2.4 13.6 13.6 0 0 0 5.1 2.4c-2.1.5-3.5.2-4-.2.2.7 1 1.7 1.4 1.8-2-.1-4.3-.6-5-1.3-1.8.7-4.7.9-6.4-.2zm4 3 5.2.7c-1.3 1.2-.2 2.2 2 2-1.1.2-2.2.6-1.5.7a20.8 20.8 0 0 0 8-1.5c-1.7 2.2-10.2 4.3-13.7-2zm3.5 5.4c1-.5 3.7-.3 5 .3-1.5.5-4.2.5-5-.3z"/>
<path d="M354 343.2c1.8-.3 7.1 1 9-.2-.7 1.7-4 2-5.1 1.6-1.2-.4-2.2-.9-3-.8.3-.3-.3-.3-1-.6z"/>
<path fill="#00d860" d="M355.9 345.8c1.4.2 6.5-.4 8-1 1.7.5 5 1.5 5.7 1.3-1.5 1-4.5.4-5.5 0-2.8 1-5 1.2-8.2-.3z"/>
<path fill="#00d860" d="M358.3 346.7c2.1.4 3.8.1 5.8-.6a9 9 0 0 0 3.5.6c1 .5 2.2 1.2 3.4 1.3a14 14 0 0 1-6.7-.5 18.7 18.7 0 0 0-7.3 1.4c0-.7.4-1.6 1.3-2.2z"/>
<path d="M355.9 336.3c1.6.5 7.4.3 10.3-1 1.2-.7 1.9.2.5.7-4.7 1.6-8.5 2.3-11.3.9-1.1-.7-1.2-1.2.5-.6z"/>
<path fill="#00d860" d="M384.1 328.4c-7 3.4-11.7 4.4-21.6 1.4-.9-.3-1.5 0-.5.6a31 31 0 0 0 7.7 2.2c1.3 0 .8.7 0 .9-.8.2-1 .8 0 .3 1.2-.4 7-.5 9.5.8 1 .5 1.4.4 1.2 0-.1-.5.5-.7 1.3-.8.8 0 1.2-.3.6-.6-.5-.3-.7-.4-.2-.6.5-.2.5-.4-.2-.6-.7 0-1.1-.3-.5-.7.7-.3 1.6-.5 2.4-.5.1-.5-.2-2 .3-2.3z"/>
<path d="M372.4 329.3a24 24 0 0 0 15.5-5.4c1.3.8 3.3 1.7 4.3 2 1 .1 2 1 .3 1-1.5 0-3.8-.7-4.8-1a27.3 27.3 0 0 1-15.3 3.9c-1-.1-1.4-.6 0-.5z"/>
<path fill="#00d860" d="M360.4 307.2a10.8 10.8 0 0 0 7 2.3 15.4 15.4 0 0 0 5.1 2.5c-2.1.9-4.4 1.6-5 2.3-1-.9-2.2-.7-2.6-1.2-.8.7-.7 1.2-.1 1.6.5.4 5.2 1.1 6.4.8 1.1-.4 1.4.7.5 1-2.6.8-7.4 0-9-2.7-1.7-2.6-3-3.6-7.6-1.2-.5-1.3-.5-1.6-1.4-1.6-1 0-2.5-1.2-1.3-1.1 1.3 0 5-.5 8-2.7z"/>
<path fill="#00d860" d="M361.5 313c-.7.3-3 1.5-3.8 1.5-.7.1-2.1 1.3-.7 1.3 1.5 0 3.3-1.5 4.3-1.7 1.1-.2 1.1-1.3.2-1zm4.4 4.8c-.5 0-2.9.6-3.6.5-.7 0-1.2.2-1.1.6 0 .5.2.7-.7.7-1 0-1.9.3-2.2.5-.3.3-.3.6.7.8 1 .1 1.4.1 2.5-.4 1.2-.5 2.2-1.3 3.4-1.4 1.2 0 2.4-1.5 1-1.4z"/>
<path d="M362.6 320.6c1 .7 6 2.3 7.8 2.2 1.8-.1 1.5.7.1 1-2.8.6-6.2-.6-8.6-2.4-1-1 0-1.3.7-.8z"/>
<path fill="#00d860" d="M386.2 323c-3.8 1.2-7.7.8-9.2.4-1.6-.3-3-.5-2 .5 1.1 1 4.5 1.7 6.5 1.2-6.9 1.6-8.7 1.4-10.4 1.1a33 33 0 0 0-6.3 0c-1 0-2.4 0-3-.5-.5-.4-.8-1 1-.8 1.8.2 2-.2.5-.5-1.6-.2-3.8.5-1.6 1.8 2.1 1.4 6.7 0 9.7.8 3 .8 9.2 1.4 15.2-3.4.3-.2.8-1-.4-.6zm-18.7-5.6v1.3c-.1.3-.1.7.4.3.6-.4 1-1 1.6-.7a7 7 0 0 0 2.9.2c.7 0 .8-.2-.2-.7-1-.4-2-.5-2.6-.5-.5.1-1.2 0-1.7-.2-.5-.3-.5-.1-.4.3z"/>
<path fill="#00d860" d="M377.3 319.2a10 10 0 0 1-2.8-.7c-.8-.3-2-.4-1.1.6.8 1.1 4.2 1.7 5.4 1.2 1.3-.5.7-1 1.9-.4 1.2.7 2.4 1.3 3.3 1.3.9 0 1.2 0 .2-.6-1-.5-1.4-.7-1.4-1.1 0-.4-.3-.7.6-.4.8.3 1.8.7 2.5.3.8-.3 2-1.1 3.2-1.1l.3-.7c-1.7-.2-2.7.3-3.3.5a4 4 0 0 1-2.1.2c-.9-.2-2-.3-2.3-.5-.3-.2-.3-.5.4-.6.7-.1 1-.6 0-.4-1 .2-3.7 0-5.1-.4-1.5-.4-2-.5-2.7-.3-.6.2-.5.9.4 1 .8 0 2.8.2 3.6.8.7.7.5.7-.3.4-.7-.4-2.1-.2-.7 1z"/>
<path fill="#00d860" d="m389.3 317.6-.2.7a19 19 0 0 1 7.2 1.1c1.3-1 1-1.3 2-1.1 1 .1 2 .5 2.6.2.5-.3.8-.2 1.4-.2.5.2 1.7 0 2.4-.5.6-.4 2.1-1 3-1 .8 0 1.8-.1.3-.4a14 14 0 0 0-4.6.5c-.8.3-3.2.5-4.6.5-1.3 0-3.3.7-4.8.3-1.6-.4-3.8-.1-4.7-.1z"/>
<path d="M410.7 316.8c-2.7 2-6.1 2.4-10 2.7-1.2 0-.8.4.2.5 4 .4 8.9-1 10.4-2.8.5-.4.5-1.2-.6-.4z"/>
<path fill="#00d860" d="M391.9 321.4c1.1 0 5.3 1.2 6.7 1.6 1 0 1.3-.3 1-.7-.2-.4-.3-.7 1.5-.7h7c.6-.2 2-1.3 2.7-1.4-1.7.2-8.7.5-9.5.4a3 3 0 0 0-1.9.3c-.6.3-.8.5-1.6.2-.7-.2-1.9-.7-2.5-.2-.8.4-2.2 0-3.4.5z"/>
<path fill="#00d860" d="M408 321.6c.7-.2 2.1-1.4 2.8-1.4 1.2 0 2.5.4 3.2.5.6 0 1.3 0 .8-.5s0-1.4 2-1.1c1.8.2 2.8.5 4.6.3 1.8-.1 2.7 1.2 6.1-.2-.2 1.4.5 1.4 1.1 1.2.7-.2 1.4-.2 2.5.7 1 .8 7.8 1 9.4.6 1.5-.3 2.4.5 1.2 1-1.2.3-1.5.8-1.2 1.2.2.4.5.8-1 .7-1.4-.2-1.7.2-2.4.8-.7.6-1 .7-3 .3-2-.3-2.4 0-3.5.2-1.2.2-1.3.1-2.5-.2a9.2 9.2 0 0 0-5-.3c-1.5.4-2.5 1-3.8.6-1.3-.4-1.4-.3-.6-1 .9-.8 1-.8 2.6-1 1.6-.2 2.8-.7 1.7-1.3-1.2-.6-1.5-.6-3 .2-1.4.7-2.2 1.2-3.9.3-1.6-1-2.4-.8-3.6-.5-1.1.3-2.9-.3-4.5-1zm5.6 2.8c-2.2.3-2.7-1-5-.7-.6 0-2 1-.2.8 1.7-.1 3.6.8 5.2.7 1.7-.2 1-.9 0-.8zM411 326c1.2-.4 3.5.4 4.4.2 1-.1 2 .4.9.8-1.1.3-3.5-.6-4.6-.3-1 .3-2.2-.1-.7-.7zm-22 6c1.5 0 7-.2 9.2-4.8.1-.4.3-.5 1 0 .6.5 3.2 2 8 2.3 1.3.2 2.7.8 0 .6-2.7-.2-6.9-.8-8.3-1.8-2.4 3.8-6.7 4.3-10 4.2-1.8 0-1.3-.6 0-.5z"/>
<path fill="#00d860" d="M401 325.7c-.8 1-3.3 2.8-4.4 3-1.3 0-4.7-.4-5.6-.7-.8-.3-2-.2-.7.7a10 10 0 0 0 5.6 1.1c1.3-.2 2.7-.7 3.6 0 1 .7 2.9 1.7 3.9 1.5a9 9 0 0 1 4 .1c.6.3 1.8 1.3 0 .7-1.8-.6-3.2 0-4.1-.5 1 1.3 3 3.4 4.8 3.4.4 0 .7.7-.2 1.1.8.5 2.9.8 4-.2-.3.4-.1.7.3.9.4.2 1 .6.2.6-.8.1-2.7.3-3.3.1 1.8 1.1 6.5 3 11.2 2 1 0 1.4-.5 0-.4-3.2 0-3.3 0-3.9-.3-.6-.3-.4-.6.5-.9.8-.3 3-.5 4-.5.9 0 1.8-.5 0-.5s-4.3 0-5.2-.3c-.9-.2-1.6-.7-.7-1.4 1-.7 2-.4 2.5-1-3 0-6.8-1.6-4.7-3.2.5-.3.3-.3-.5-.4-.8 0-3-.7-4-1.3-1-.6-.3-1 .4-1.1-1.7.3-5.3-.7-7.8-2.5zm27-.1a12 12 0 0 1-6.1 1.8c-1.3 0-1.6.4-.5.6 1 .1 2.1.2 2.6.1s.7-.1 1.5.1a5 5 0 0 0 3.4.1 14 14 0 0 1 4.3-.5c.9 0 1.9 0 0-.4a14 14 0 0 0-5.2 0c-.6.1-2.5 0-1.5-.2a7 7 0 0 0 2.3-1.3c-.3 0-.5-.2-.8-.3zm-.9 3.6a10.8 10.8 0 0 1-5.6 2.1c2 .7 3.6 2.8 4.8 2.7-.6.3-1.4.8-2.1 1 1.2.3 3.2 0 4.8-1 2.8.8 6.4.3 7.6-.7a8.6 8.6 0 0 1-4.9-1.5c.9 0 1.7-.5 2.2-1-2.2.3-5.8-.8-6.8-1.6z"/>
<path fill="#00d860" d="M424.2 335c.8 0 1.5-.7 2.1-1a18 18 0 0 1-10.2-2.3c-1.9-1.8-1.9-.4-.5.8a9.8 9.8 0 0 0 8.6 2.5zm4.8 4.2c-.8.5-4.8.7-6 .5-1.3-.3-2-.2-1.6.3.4.5.5 1-.6.9a9 9 0 0 0-3.7.3c-.7.3-1.8 1 0 .7 1.5-.2 3-.6 4.3-.2 1.2.3 5.7.4 6.6 0 .8-.5.3-.4-.2-.4-.4 0-.5-.2 0-.5.6-.3 1.1-1 1.2-1.6zm-38.3-5.4a46.6 46.6 0 0 1-8.6 2.3 12 12 0 0 1-4.3 1.3c.7.6 3.1 1.2 4.1.9a8 8 0 0 1-2.3 1.4c1.5-.1 3.2.2 4 .3a11 11 0 0 1-6 1.3c.4.7 1 1.3 2 1.3a10 10 0 0 1-5 .1c.4 1 .9 1.5 1.5 1.6-1.4.2-3.3.4-4.9-.5 1.2 1.6 3.9 2.2 8 1.7a18 18 0 0 0 8.1-3c-1.7.2-3.9.3-5 0a28 28 0 0 0 7.9-3.3 4.4 4.4 0 0 1-2.5-.7c1.2.1 5.8-.4 7.1-1a5.3 5.3 0 0 1-3.1-2 31 31 0 0 0 15.4.5c.7-.2.9-1.2-.6-1-2.6.1-7.6-.6-8.9-1.2a9.2 9.2 0 0 0 3.7 1.6c-2.4.7-5.8 1.2-10.6-1.6z"/>
<path fill="#00d860" d="m379.6 339.8 2.3-1.4a7.9 7.9 0 0 1-4.1-.9c.9 0 2.4-.5 4.3-1.3-3.4-.1-5.7-.1-7-.7a8 8 0 0 0-4.2-.3c-.8.2-.5 1.5 3 1.2a12 12 0 0 1-6.9 1c.4 1.2.7 2.4.3 3 2 1.1 7 2.6 9.5 2.3-2.2-.8-3.4-1.7-1.6-1.9 1.8-.2 2.8-.6 4.4-1z"/>
<path d="M374 345.8c4.3-.4 10.2-.5 15-4.4 1.2-1.1 2-.7.8.3a26 26 0 0 1-14.6 5.3c-2.4 0-3.5-1-1.2-1.2z"/>
<path fill="#00d860" d="M407 338.4c-1.1.5-4.2 1-5.1.9-1-.1-2.3-.2-3 .2-.8.4-.8.7.2.9l3 .1a4.9 4.9 0 0 0-1.6 1.4c1.4-.4 4.2.3 5 .8-.7.1-1.3-.1-1.8-.4 2.5 2.7 9.9 2.7 11 2.2-.5.4-1 .8-1.6 1 2.1.3 4.5.3 6.8-1.1a20.8 20.8 0 0 1-3.7-.2 4.4 4.4 0 0 1 1.8-1 12.2 12.2 0 0 0-4.5.3c.3-.6.7-1.3 1.3-1.5a28 28 0 0 1-9.7-1c2.6.3 5.4-1.2 6.7-1.2-2 0-4.3-.5-4.8-1.4zm-9.3 2.1a34 34 0 0 0-5.2 1.4c-.8.4-1.5.8 0 .8a163.8 163.8 0 0 1 .6-.2c-.6 0-1.4 0-.2-.4s2.8-1.2 4.8-1.6zm-3.6 4.3c.6 0 3.5 0 4.5-1 1.2.9 3.4 2.2 4.8 2.2 1.5 0 1.3.3 0 .5-1.2.1-3.6-.7-4.8-1.6-1.7.6-3.1.1-4.6-.2zm-21.4 12.4c2.9 1.1 6.6 2 9.4 1 1.6 1.4 4.8 1.5 6.6 1.1 1.7-.3 3.3-.6 5.2 0 2 .7 5.9.8 7 1.7-1 0-3.1 0-3.7.2-.5.1-.2.4.7 1a19.3 19.3 0 0 0-10.2 2.5 5.7 5.7 0 0 1 5.4-3.4c-1.6-.6-7-.6-8.7.4-.5-.5-1.1-1.4-1.1-1.7-2.9 1.5-8.3-.8-10.6-2.8zm-7.3-5.2c3.4-.4 5.8-1.5 6.8-2.6.5.6 3 1.2 5.7.3a1.4 1.4 0 0 0-.4 1.6 20 20 0 0 0-6.3 1.6c-1.1.5-4.5 1-5.6.4-1-.6-1.1-1.2-.2-1.3z"/>
<path fill="#00d860" d="M377.5 351.3c-1.8 0-5.1 1-6.3 1.6l.5 1.7a40.2 40.2 0 0 1 13.7-1.5c-1.3 0-4 1.5-5.4 1.7 3.6-.3 7 .5 8 .7.9.2 1 1 .4 1.6-.7.6-1 .7.5.7 1.4 0 4.5 0 5.9-1.4-.6-.6-2-.4-2.4-.8a6.4 6.4 0 0 0 2.4-1.5 18 18 0 0 1-4.2-.3c-.8-.2-1.4-.4-.4-1a6 6 0 0 0 1.8-1.4c-1.8.5-4.6 1-7-1 1 .4 3 .2 3.7-.1-.8-.5-1.4-.7-2-.7 1.8-1 5.5-1.8 10.2 0a23 23 0 0 1 6.5.4c.8-.7 2.3-2.5 3.1-2.9-5.4.4-15.1-.6-15-3.4-1.7 2.3-5.7 3.6-7.5 3.2-.2.8.5 1.8 1.1 2.4-1.7.3-4.9.7-6.4.3.8.9 2.4 1.6 3.4 1.5-2 0-3 .4-4.6.2z"/>
<path fill="#00d860" d="M388.9 357.8c1.4 0 4.5 0 5.9-1.4-.6-.6-2-.4-2.4-.8a6.5 6.5 0 0 0 2.4-1.5c3.9-.4 7.3-.2 9-.7 1.7-.5 6-.2 6.7-.5-3.6.7-4.3 1-4.6 1.6-.2.6 1.3 1 2.1 1-1.6 0-3.7 1.7-4 2.4-2-1.2-3.1.3-3.4.8a7 7 0 0 0-5.6 1c-2-.5-3.3-.9-5.3-.5 1.3-.3 1-1.2-.8-1.3zm17.6-10.8c1.3 0 4 .2 5 0a6 6 0 0 0-1.7 1.2c3.2-.4 7.4-.6 8.6-.4-1.4-.3-3 .7-3.8 1.3-.8.5-.3.7.7.9 1.1.1 2.6 1 .6.7a36 36 0 0 0-6.7-.1c-.9.1-1.4-.3 0-.5 1.2-.3 2.2-.7 2.8-1a12 12 0 0 1-3.8 0c-.7-.2-1.1-.6-.4-.7.7-.1.3-.5-.5-.4-.8.2-2.8 1-3.9 2 1.2-1.2 2.3-2.3 3.1-2.9z"/>
<path d="M392.5 349.2a7.9 7.9 0 0 0 6.2 2.7c.6 0 1.7.8.2.9-3.8.1-5.7-.7-7.4-3.2-.4-.6.2-1.3 1-.5zm23-32.3a24 24 0 0 0 9.4 1.7c.6 0 1.6.5.3.7a16.5 16.5 0 0 1-9.9-1.9c-.7-.4-.5-.8.3-.5z"/>
<path fill="#00d860" d="M417.6 317c3.2-.2 5.6-.2 6.5.8 1.8-.6 5-1 5.7-.7.8.2 1.6-.3-.1-.7-1.7-.4-5.7-.6-6.9-.3-1.2.2-5 .4-6.4.2.5.1.9.2 1.2.5zm12.2 1.1c1.5-.8 5.8 0 7-.6-1 1.1 3 1.2 6.3.3-1.3.8-4 1-5.2 1.5-1.2.5-1.9.1-2.8-.2-1-.4-3.3-1.3-5.3-1z"/>
<path fill="#00d860" d="M443.1 317.8c-3.3 1-7.2.8-6.2-.3-1.4.6-5.6-.2-7 .6 1.4-.9 2.6-.2 3.7-2.1.8.2 2.3.3 3-.5a9 9 0 0 1 3 1.2c.6.5 1.4-.1.7-1 1.4-.5.5.8 4.1-.2.7-.2 2.5-.5 3.2-.5a21.8 21.8 0 0 1-4.4 2.8z"/>
<path fill="#ff0" stroke="#000" stroke-width=".4" d="m377.9 302.4-.8-78.7c0-3.6-1.7-2.9-1.7 0v78zm25.5-83 2.8 83-.3.7H404l-1.8-83.7zm24.1 70.2-1.4-67.4c0-2-1.8-1.7-1.8.4l1.4 67z"/>
<path fill="#fff" stroke="#000" stroke-width=".4" d="m389.2 233.2-24.8-.3c-1 5 5 4.6 7 3.5 3 1.8 5 1.8 6.5 0 2 1.8 5 1.4 6 0 2.8 2.5 6 0 5.3-3.5zm1.8 12.1h-24.8c-4.7 4.3 1 6.4 6 3.5.7 1.5 3.5 2.2 5.7 1.1 2 1.4 5 .4 6.3-1 2.5 1 5.7 1.4 7.1-3.6zm-.7 16h-24.1c-.4 3.9 4.6 3.5 6.3 2.4 1.8 2.9 6 2.2 7.5.4 2.5 1.8 4.6 1.4 5.7 0 2.4 2.1 5-.7 4.6-2.8zm1.4 15.6-27.3-.4c-1.4 4.6 2.8 5.3 4.6 4.3.7 2.4 4.2 1.7 5.3 0 1.4 1 3.2.3 4-.7.3 2.4 3.5 2.8 6 .7 5 3.5 9.5-.7 7-4zm23.7-6.4h-22.3c1 4.2 3.2 5.3 6.7 2.8 2.9 2.9 7.1 1.8 8.2.4 5 3.9 7.4-.7 7.4-3.6zm-2-15.6-22-.7c.3 5.6 5.6 5.3 8.4 3.2 1.8 2.4 5.4 1.7 7.1 0 2.5 2.8 7.1 1 6.4-2.5zm2.8-17.4h-23.4c0 3.9 5.3 6 9.2 2.5 1 4.6 5.3 3.2 7 1.4 2.9 3.5 9-.7 7.2-3.6zm-1.5-11.7-21.2.3c0 3.6 5 5 6.7 2.2 1 1.7 4.6 1.4 5.7 0 1.4 2.5 3.5.7 4.2 0 2.5 1.7 5 .7 4.6-2.5zm24.5 7.8-25.5-.4c0 2.5 2.5 3.6 4.2 2.5 0 2.9 3.6 3.6 6 1.4 1.5 2.5 6 2.9 7.9 0 3.5 3.2 7.8.7 7-3.5zm-.3 21H414c0 3.5 4 4.5 6.4 2.8.4 2.8 3.6 3.1 5.3 1.4 2.5 2.5 6 2.8 8.2 0 2.8 1 5.3-1.4 5-4.3zm-1.5 18.7h-19.8c0 3.6 4.2 3.6 6 1.8 2.1 2.5 5 2.5 6.7.7 2.5 2.1 6.8 1.4 7.1-2.5z"/>
<path stroke="#000" stroke-width=".4" d="M405.9 303.1c-10.7 0-21.7 0-29.1-.7-7.5-.7-9.6-2.1-14.9-5.3L342 285c-1.7-.8-3.5.3-1 1.7l19.8 13.1c5.4 3.6 8.9 6.8 12 10.7 4.3 4.6 7.2 4.6 9.3 3.9 2.1-.7 5-1.8 8.2-1.1 2.8.7 7 1 9.2.7 1.8 1.8 6.4 1.4 8.9.7a12 12 0 0 1 6-.3h6c1.8 0 6.4-1.1 9.6-.7 3.5.7 6.7 0 8.9 0a17.7 17.7 0 0 1 7-.4 9.3 9.3 0 0 0 3.6-5c2.1-.3 2.8-.7 3.2-1.7l2.1-5.7h.7v-2.1l-1.4-2.2.7-3.5 1.8-.7-.7-3.6-31.2.7a7 7 0 0 0-2.2 4l-9.2 1.4c-1 .3-2.1.3-3.2 1.7z"/>
<path stroke="#000" stroke-width=".4" d="m443.1 289.3 4.6-17.4c.7-1.8-1-2.1-1.8 0l-4.6 17.4z"/>
<path fill="#fff" stroke="#000" stroke-width=".4" d="M461.2 269.8c-3.9 1.7-6 2.8-7.8 2.1-1.8-.7-4-1-5.3-.4a1.8 1.8 0 0 1 0 .4 1749.5 1749.6 0 0 1-4 13.5c3 1 7.9 1 9 0 1.4-1.4 4.6-1 6.3-1 1-1.5 1.4-3.3 1-4-.3-.7 0-2.5 0-3.5 0-1.1 1.5-5 .8-7.1z"/>
<path fill="none" stroke="#000" stroke-width=".4" d="M371.8 236.4a188.7 188.7 0 0 1-28.3 49.7m7 4.2a193.3 193.3 0 0 0 40.5-44.6m-24.8 15.2c-1.1 9.6-4 26.6-5.4 35.5m9.3-14.2c-3.6 3.5-8.2 9.2-12.1 12.4m45-31.6c-2.8 2.9-6 6.4-9.2 7.1m11-6.4a24.8 24.8 0 0 0 9.6 6.8m-11.4-22a30.1 30.1 0 0 1-10.6 6m12-5.7a25 25 0 0 0 7.9 6M393 237.6a24.8 24.8 0 0 0 9.6-5.3m1 0c2.5 2.5 7.1 5 9.6 5.6m-19.5-11.7a14.2 14.2 0 0 0 8.5-5m1-.6c2.6 2.1 7.2 5 9.7 5.3m11.3 2.8c-1.4 1.8-5.3 4.6-7.8 4.6m9.6-4.6c1 1.8 3.9 4.6 5.7 4.6m-17 21.3a25.5 25.5 0 0 0 9.9-6.7m1.7.3a19.9 19.9 0 0 0 6.8 6.4M418.6 273c1.5 0 5.4-2.2 6.4-4.6m2.2-1.1a24.8 24.8 0 0 0 7 6m-66.3 3.2a49 49 0 0 0 18.1-12.4m-8.5 6.7a36 36 0 0 0 11.4 6m-22-15.9a28.4 28.4 0 0 0 8.5-5.3m1.7-.4c1.1 1.4 8.6 6 11.8 6m-13.5-20.9a34.8 34.8 0 0 1-8.9 5m10.6-5c2.5 1.8 7.8 5 11 5m-12.7-19.2a32.2 32.2 0 0 1-8.5 6.8m10.2-6.4c1.5 2.5 5.7 6 8.6 6.4M414 242a108.5 108.5 0 0 0 30.9 34m-50-47.1c10 14.2 29 45 47.5 56.4m3.5-12a65.3 65.3 0 0 1-17.3 16.2m16-12.4c-6.1-10-9.3-22.3-14.3-39m-49.6 44 7 21.3m-8.4-21.7L386 303m-8.5-22.3 6.4 22m-7.1-21.7 5 21.7m0-.8h6m-.7-2h-5.7m5-1.9h-5.7m5-1.7H380m4.6-2.2H380m-.4-1.7h4.6m-5-1.4h4.7m-5-1.8h4.3m-4.6-1.4h3.9m-4.3-1.8h3.6m-4-1.4h3.6m-3.9-1.1h3.5m-3.5-1.4h3.2m-9.2 0-4.3 17.7m5.3-17.7-3.5 18.4m4.6-19.1-2.8 19.5M375 281l-2.1 20.6m2.5-1.4h-7.1m7-1.8h-8m8-2.1H368m7.1-1.8h-6.7m7-1.8h-6.7m6.8-2.1h-6m6-1.8h-6m5.6-1.8h-5.3m5.3-1.7h-4.6m4.6-1.8h-4.2m4.2-1h-3.9m3.6 19.4V281m23-7-14.2 28.7m15.3-29.1-12 29.4m12.7-29.8L390 303m10.7-29-7.8 29m.3-1h-8.9m9.6-2.9h-8.5m8.9-2.1H387m8.5-2.1h-7.1m7.4-2.2h-6.7m7.5-2.1h-6.4m7-2.5h-5.6m6-1.8h-5.3m6-2h-5m5.4-1.5h-4.6m5-1.4h-5m4.6-1.4h-3.6m3.6-1.1h-3.2m3.5-1.4h-2.8m3.5-1.4H397m2.8-1.1h-2.4m12-.4 6 19.9m-5-19.5 7.5 19.1m-6.4-19.1 9 18.8m2-1.8-9.9-17.4m10 17.8h-7.2m6.4-2.9h-7m6-2.1H414m5.3-2.5h-6m4.6-2.1h-5.3m4-2.5h-4.7m3.5-2.5h-4.2m2.8-2.1h-3.5m11.3.4-6.4 18.4m8.2-19.2-5.7 18.8m2.5-.3 4.3-17.7m1 .7-3.5 16.6m-6-1h6m-5.3-2.2h6m-5.3-2.4h5.7m-4.7-2.2h5.4m-4.7-2.5h5m-4.2-2h4.6m-3.6-2.6h4.3m-3.6-2h3.6m3.2.3 2.8 12.7m-1.8-13.4 4 13m-2.5-13 4.2 13m-2.5-12.3 4.6 12.4m-.3-1h-6m5.3-1.9h-5.7m5-1.7h-5.4m4.7-2.2h-5.4m4.3-1.7h-5m4.3-1.8h-4.6m3.9-1.8h-4.3"/>
<path fill="#00b800" d="M374.2 309.7a10 10 0 0 1 10.2.4c3-1.7 8.3-1.2 10.8 1 3.8-2.6 7-3 10.7-.5 3-2 7.2-2.2 10.7.2 3.3-1.6 7-2.9 10.2.6-2-1.4-6-2.6-10.2.6-3.3-3.2-8.9-2-10.7.2a7 7 0 0 0-10.5.2c-3.3-2.8-8.3-2.9-11-.7-2.1-1.7-5.2-3.1-10.2-2z"/>
<path fill="#cf6200" d="M424.5 305.8a217.4 217.4 0 0 1-53.6-1c-2.3-.7-1.7-1.5.3-1A172.2 172.2 0 0 0 406 305l5.7-7.7c1-1.1 1.2-1.3 3-1.6l8-1.3v1.1l-.6.6c0 1.8.4 6.4.7 8.2.4 0 .9-.3 1-.3.8-.2 1.4 1.5.8 1.7z"/>
<path fill="#cf6200" d="M448.6 306.5h1.9a2 2 0 0 0 1.8-1.4l2-5.8-1.5-2.2a125.1 125.1 0 0 0 .7-4.8l2-.7c0-.4-.1-1.6-.6-2-6.3.3-25 1-28.6 1-.8 0-1.2 0-1.5 1.1-1.8 6.6.7 15.8 7.3 21 .5.5 1 .1.2-.6a23.5 23.5 0 0 1-3.9-5l4.7-.2c.4 1.5 1.5 4.8 1.8 5.3.2.6.7.8.5 0-.7-2-1-4.3-1.3-5.3l5-.1.2 4.7c0 .7.6.7.6 0v-4.8l4.3-.1-.4 4.7c0 .7.3 1.2.5 0l.7-4.7h3c0 .8-1 3.9-1.3 4.6-.2.8.1.8.4 0a21.5 21.5 0 0 0 1.5-4.7z"/>
<path d="M427.6 305.7c-.4-1-2-4.6-2.1-7.2l6.2-.2a74.6 74.6 0 0 0 1.2 7.3zm5.3-7.4 1 7.3h5l-.2-7.4zm-7.2-6.4c-.2 1.3-.3 4.1-.2 5.4l6.1-.1-.5-5.5zm6.6-.2.4 5.4 6-.1-.3-5.5zm7.3-.2c0 1.2.2 4.6.1 5.5l5.3-.2c0-1.2.2-4.6.1-5.5zm6.5-.2-.1 5.5 5.6-.2c.3-1.1.8-4.3.8-5.6zm5.8 6.5-6 .2a188 188 0 0 1-.6 7.3l5.7-.2a48.8 48.8 0 0 0 2-5.6l-1.1-1.7zm-12 .3.1 7.3 4.3-.1.6-7.3-5 .1zm-24.6-1.4-2.3.5a177.1 177.1 0 0 1-5.8 7.9l8.4-.2-.3-8.1zm1.1-.2.3 8.3 5-.4-.7-8.7z"/>
<path stroke="#000" stroke-width=".4" d="M391.7 276.9h-27.3v-.7l27.3.3zm21.3-22c.3 0 .3 0 0 0l-21.3-.4c-.4 0-.4 0 0 0H413zm-22.7 6c.3 0 .3.4 0 .4h-24.1c-.4 0 0-.4 0-.4zm.7-15.6c.3 0 .3.4 0 .4h-25.2c-.4 0-.4-.4 0-.4zm-1.8-12.4c.4 0 .4.3 0 .3h-24.5c-.3 0 0-.7 0-.7l24.9.4z"/>
<path fill="#fff" stroke="#000" stroke-width=".4" d="m414.7 225.8-21.2.3z"/>
<path stroke="#000" stroke-width=".4" d="M415.8 237.8c.4 0 .4 0 0 0h-23c-.4 0-.4 0 0 0zm23 16.4v.3H414c-.7 0-.7 0 0 0h25zm0-21c.8 0 .8.4 0 .4h-25.1c-.4 0-.4-.4 0-.4h25.5zm-23.4 37c.4 0 .4.3 0 .3h-22.6v-.4zm22 3.1c.4 0 .4 0 0 0h-19.8z"/>
<path fill="#ef072d" stroke="#000" stroke-width=".4" d="M455.5 276.9a10.6 10.6 0 0 0 0-5 3.9 3.9 0 0 1-2.1 0 10.6 10.6 0 0 0-1-.7c0 1.4-.8 5.3-1.5 6.7-1 0-3.5 0-4.6-.7l-1 3.6a12.4 12.4 0 0 0 5.3 0c0 2-.4 3.9-1.5 5.3 1.8 0 3.6 0 4-1 1-1.5 1-3.6 1.4-4.7l1.7-.3 1.8-.8 2.5-.3v-2.1l.7-1.5-5.7 1.8z"/>
<path stroke="#000" stroke-width=".4" d="M367.6 157a47 47 0 0 0-10.7.7c-1 .7-1.4 1 .7 1.4 2.2.4 6 1.8 8.2 2.8a8 8 0 0 1 3.5 7.1 21.3 21.3 0 0 0 10.7 22.4c.3.3.7.7.3 2.1l-1 4c0 .6-.4 1.3.7 1a71 71 0 0 1-3.6 5.7c-5.6-.8-10.6 0-10.6 6.3 0 .7 0 1.5.7 0 1-1.4 2.1-2.8 4.6-3.5-1.4 2.5-2.1 4.6-1.8 6 0 1 .8 1.8 1.5 0 .3-1.4 1.7-2.8 2.8-3.9.7-.3.7-.3.4.7-.4 1 .3 3.2 1 4 .7.6 1 .3.7-.8 0-1.4 0-3.9 1.8-4.6 2.1-1.4 4.3-.7 5 .7 1 1.8 1.7 0 .7-1.4s-2.2-3.2-3.6-3.2l3.6-6c0-.7.7-1 1.4-.7 0 .3.7.3 1-.7l2.5-5 2.2-.7 3.5 5.3v2.1c0 1.5-1.4 4.6-1.8 5.7-4.2 0-6.3 0-7.8 2.5-.7 1 .4 1.4 1.5 1a7 7 0 0 1 3.5-1c.7 0 1 .7 0 1-2.5 1.1-4.3 2.9-4.3 5.4 0 .7.8 1 1.1 0 1-1.8 2.9-3.2 4.6-3.6 0 1.8.4 4.6 1.8 5.3 1 .8 1 0 .7-1-.7-1.8 0-3.6 1-4.6 1.8-2.2 6.1.7 7.2 1.4.7.7 1.4 1 .7-1-.4-2.6-4-3.6-7.1-4.3l4.2-15c1.8 1.1 3.6-1.7 6.4-.6 5 2.1 12.4 6.7 13.5 7.8 1.4 1 1.8.7 2.5 0 .7-.4 1.8 0 2.8 0 .7.3 1.4.7.4-1.4a25.5 25.5 0 0 0-8.5-9.3c2.8 0 6.3 0 6.3-.7s-4.2-2.1-6-2.1a11.7 11.7 0 0 0 5.7-2.8c.7-.8 0-1.1-2.9-1.1-7.4 0-11.3 0-15.2-2.1-6.4-3.6-10.3-7.8-13.5-9.3-1.4-1-2.5-3.2-3.5-5-1.8-5.2-1.8-8-6.4-9.9a14 14 0 0 0-13.1 2.9z"/>
<path fill="#fff" stroke="#000" stroke-width=".4" d="M368 158.4h-6.1s-.7 0 0 0l5.3 1.4c1 0 .7 1 0 .7-.7-.3-1.4 0-.7.7 3.6 2.5 4.3 3.6 3.6 13.2l1.7 1.4c.7 0 .4.7 0 .3-.3-.3-1.7 0-.7.7 1 .8 1.8.8.7.8-1 0-2.1.7 0 .3 1.8 0 2.9.7 0 1-2.1 0-1.4.8 0 .8 2.5 0 1.8.7 1 .7-.6 0-1 .7.8.7h2.5c.3 0 .7 0 0 .4-.7 0-.7.7.3.7 1.1 0 1.8 0 .7.3-.3 0-1 .4 0 .7 2.5 0 2.9.7 2.2 1-.7.4-1 .4 0 .4s2.1.4 1 .8c-.7 0-1 .7 0 .7 1.1 0 1.8.7 1.1 1-.7.4-1 .7 0 .7s1.4.4.7.7c-.7.8-1 .8-1.8 0 0-.7-.7-.7-.7 0l-.7-1c-.3-1-1-1-1 0s-.8.3-1.5 0a11.7 11.7 0 0 0 14.2 2.8c.4 0 .7 0 1 1l2.2 4c.4.7 1 0 1-.7l2.2-6c0-1.1 1.4-1.8 1 1 1.1-.7 5.4-1 9 0a43.3 43.3 0 0 1 9.5 5.3 2.1 2.1 0 0 0 1.8.4c1 0 1.4 0-.4-1.8-1.7-1.8-1-2.5 0-1.8 1.1.8 1.8.4.7-.7l-3.5-3.2c-.4 0-.4-.7-2.1-.7h-5.4c-.7 0-1.4 0 .8.7 2 .7 6 3.6 7 4.3 1.1.7 1.5 2.1-.3.7a78.4 78.4 0 0 0-12.8-7c-9.5 1-17.4 2-23-4-2.9-3.2-2.9-10 1.7-12.8-.7-.7-.7-1.4-.3-1.4v-2.1c-.7-.4-1.4-1-1.4-1.8-1 0-1.8-1.8-3.6-1-1.7.7-2.1 0-2.8-.4-.4-.7-.7-.7-1.8-.7-1 0-1.8 0-1.8-.7s.8-.7 2.2 0c2.5 1 4.6 1.8 6.4-.7 1.4-2.2-.8-4-3.6-4.6-3.2-.7-5.3 1.7-6.7 2.8z"/>
<path fill="#fff" stroke="#000" stroke-width=".4" d="M383.5 157.3a10 10 0 0 0-3.5-2c-1 0-1 .6-.7 1v2.1c.7.4 1 1 0 1-.7.8 0 3.3 1 2.5h.7s0 1.1.8 1.1c.7 0 0 .7 0 1h.7c.7 0 .3 1.5-.4 1.8 1 0 1.4 0 1.4.8.4.7 1.4 1 1.4 2 0 1.2 0 1.2-1.4.8-1.4-.4-1.4 0-1.7.7-.4.7-.8 1 0 1 .7 0 1.4.4.3.8-1 .3-2.1 0-2.5 1 0 1.1 0 1.5.7 1.1l2.5-1.4 1.8.3c.7.4 0 1.8-.7 1.1s-1.4 0-1.8.4l-1.8.7c-.7 0-1.4 0-1 1.7 0 5 3.9 8.6 11 8.6H402c-2.2-1.5-3.6-2.2-4.6-2.2h-1.1c.4-.3 0-1-.4-1-.3 0-1-.7-1.7 0l-3.6 1.7c-.7 0-1.7 0-.7-.7l3.2-1.4c.7 0 .4-.7.4-.7s0-1 1-.7a21 21 0 0 0 6.4 3.2c1 0 1.4-.7.7-1a2 2 0 0 1-1-1.5c0-.4.3-.7 1.7 0a18 18 0 0 0 4.6 2.1c1.1.4 1.8.4 0-.7l-8.1-6c-1-1-1 0-.7.7.3.7-1 1-1.8.4-.7-.8-1-1.1 0-1.5 1-.3.7-.7-.4-1.7-1.4-1.1-1.7-1.1-1.4 0 .4 1 .4 1.7-.7 1.4-1-.4-2.1-1-1-1.4.7-.7 1.7-1.1 0-2.2-1.8-1-.8 0-1.1.7-.4.8-1.4.8-1.8 0-.3-.7-1-1-.7-1.4.4-.3.4-.7 1 0 .8.7 1.5 0 .4-1-1-1.1-1.4-.7-1 0 .3.7-.7 1.4-2.2 0-.7-.4-.7-1.1 0-1.5.7 0 .7-.3 0-1-2.5-4.3-1.4-7.5-4.2-10.7z"/>
<path fill="#cf6200" d="M383.7 158c-.2.4-.3.4-.7.7-.6.3-.7 1.4.2 1.2.7 0 1-.5 1.2-.7a8 8 0 0 0-.7-1.2zm-2.9-2.3c-.7.7-.8 1-.5 1 .5 0 .3 0 0 .5s.6.7 1 .5c.3-.3.4-.5.6 0 .2.3.7 0 1.2-.4a10.2 10.2 0 0 0-2.3-1.6zm-1.3 4c-.9.5-.5 2.8.8 2.2.5-.2.9-.2.8.2v.6a4.3 4.3 0 0 0 1.6-1.1c.9-1 0-1-1.2-1-1.3 0-1.7-.1-.4-.9 1-.7.3-1.1-1.2-.9.2.3 0 .7-.4.9zm5.4 5.4c-.8-.7-.3-1.1.5-1.4l.3-.4-.6-2.3c-.4 0-.8.9-1 1.4-.1.6-.3 1-.9.7-.6-.1-1.1.5-1.2 1.2h.3c.3 0 .5.4.4.7 1.7 0 2 1.1 2.2 2 .3.8.7.6 1 .2.2-.5-.4-1.4-1-2.2z"/>
<path fill="#ff0" d="M385.3 174.7c-.3.7-.3.7-1.3.7s-2.2.3-2.7.8c-.3.3-2 .4-2 1.2 0 .7 0 1.3.7 1.4.7 0 .8.2.6.7-.3.5-.5 1.5.7 1.5 1.3.1 2.3-.2 2.6.5.3.7 0 2 .2 2.3.3.5 1.2.8 2.5 1.2 1 .2 4.3.4 5.4.3 1-.2.7-.7-.4-.9-1 0-1.9-.2-2.2-1-.2-.7-.4-1.1.3-1.8.5-.7 1.1-1.1.8-2.2-.4-1-1-2.4-2.2-2.7-1.2-.3-.8-2-2-2.1l-1 .1z"/>
<path fill="#cf6200" d="M379.3 184.8c1.1 0 2 .3 1.2.6-1 .2-1.5.7-.3.8 1.1.1 2 .5 1.2.8-.8.3-1 .8 0 .7 1 0 1.5.6.8 1s-1.2.7-1.7 0c-.4-.7-.7-1-.9-.4-.1.5-.4.1-.8-.7-.3-.9-1-1-.8-.4.2.7-.7.7-1.5.4a16 16 0 0 0 2.7 2.2c1-.4 2.4 0 2.8 0 .4 0 1.9.4 2.6.7.8.4 1.3-.3 1-1-.3-1-.4-.6-.7-.2-.5.5-.5-.2-.5-1.2 0-.7-.5-.5-.8 0-.2.5-.5-.3-.3-.8s0-.7-.5-.6c-.4.2-.4 0-.5-1 0-.9-.4-.7-.5-.4-.2.4-.5-.1-1.1-.8-.5-.7-1-.3-2 .1l.7.2z"/>
<path fill="#ff0" d="M390.5 190.4c-5 2.1-8.6 1.2-11.4-.7 1.2-.3 2.5 0 2.9 0a9 9 0 0 1 2.6.9c.8.4 1.3-.4 1-1.2.8.9 1.2 1.5 2 1.5 1-.1 2.2-.2 3-.5zm-10.7-23.1c-.3-1-.6-1.3-1.2-1.3l-1.4-.2c-.6-.3-1.5 0-1.5 1.1 0 1.2-.8 1.7-1.7 2.3-1 .7-1.5 1.3-1.5 2.4 0 1-.3 1.4-.8 2.1l-1.1 1.2 1.2.8c.6.2.4.7-.3.5-.7-.1-1.3.2-.2.5 1 .2 1.6.7.6.7-1.1 0-2.3.8-.2.6 2-.2 2.8.7.4.7-2.5.2-1.5 1-.2 1 2.3 0 1.6.6 1 .6-.6 0-.9.7.6.6h.1c.2-.2.4-.5.5-.9.2-.7.5-2.8 1.4-3.5.8-.6 1.3-1.4 1.3-2a9 9 0 0 1 2.1-4c.9-.7 1.2-2.2 1-3.2z"/>
<path fill="#cf6200" d="M378 167.3c-.9-.6-1.8-.2-1.8.8 0 1.1-.5 1.5-1.2 1.8a3.2 3.2 0 0 0-1.5 2.2c-.2.8.1 1.4-.6 2.1-.5.7-.7 1.2-.2 1.6.5.4.5.4.6 1 .2.5 1.2 0 1.2-.7s.3-.7 1-1c.7-.4 1.8-2.2 1.5-2.7-.2-.4-.8-.8 0-1.5.8-.8 1.6-.8 1.6-1.5s.2-.8.5-1.1c.2-.2-.6-.6-1.1-1z"/>
<path d="M378 166.4c-.6-.2-.9 1-.1 1.2.8.1.9-1 0-1.2zm-.2 1.6c-.5 0-1.3.8-.2.7 1-.1 1.4-.9.2-.7zm-1.1 1.4c-.7.4-.5 1.2.3.6.9-.7 1.2-1.3-.3-.5zm-1 1.4c-.7.3-.5 1.1.4.5.9-.6 1.2-1.3-.4-.5z"/>
<path d="M374.4 171.3c-.7.3-.2 1.2.7.6 1-.5.9-1.4-.7-.5zm.7.8c-.6.3-.1 1.2.7.6.9-.6 1-1.4-.7-.6z"/>
<path d="M374.1 172.4c-.7.4-.3 1.2.7.6s.8-1.4-.7-.6zm.7 1c-.7.3-.3 1.1.7.5.9-.6.8-1.3-.8-.5z"/>
<path d="M373.7 173.9c-.7.3-.2 1.1.8.5 1-.5.7-1.3-.8-.5z"/>
<path d="M373.8 174.7c-.7.3-.3 1.1.7.5 1-.5.8-1.3-.7-.5z"/>
<path fill="#cf6200" d="M373.3 182.5c-.7 0-1 1-.3 1.1.8.2 1 .2 1 .9 0 .6.2 1.4 1.1 1.5.9 0 1.7-1 .9-1.2-.8-.3-1.5-.6-1.5-1.2 0-.8-.7-1.2-1.2-1.1z"/>
<path fill="#ff0" d="m396 177.2.3.4c.6.5 1.8 0 1.6-.4-.1-.5-.7-1.8.7-.7l8.5 5.9c1.7 1.2.6 1.4-.2 1l-4.5-2.1c-1.4-.8-1.5-.5-1.8-.3-.1.3 0 .8.5 1.3-.8.1-2.1 0-2.5-1-.5-1-1.6-2.3-2.3-3.3-.3-.4-.5-.6-.4-.8z"/>
<path fill="#00d860" d="M441.7 328.2c-1.2.7-2.8 2.1-1.7 4l.3-.2a113.3 113.3 0 0 0 11.7-17.2v-.5a16.2 16.2 0 0 1-4 2.5c.5 1.5-2 3.4-3.5 4 .6 1 .4 2.3-.8 2.6.3.8-.7.8-1.7 1.3-1.1.5-1.7.7-2 1.4.5-.4 1.4-.7 1.8-.5.4.2.6.8-.3 1-.8.2-1.4.6-1.6 1 1.2-.4 2.9-.2 1.7.6z"/>
<path stroke="#000" stroke-width=".4" d="M387 175.4c-1.3-1-1.7-.3-1.3 0 .3.4 0 1.4-1.1 1.8H381c-.7 0-1.7 1.4 0 1l5.7-1c.7 0 1.4-.7 0-1.8zm2.6 2.2c-1.1-1.1-1.5-.8-1.1 0 .4.7-.4 1-1 1l-5 1.4c-1.5 0-1.5 1.1.3 1.1s5.3-1.8 5.7-1.8c.4 0 .7-1 1-.7.4.4 1.1 0 0-1zm1 2.8-3.5 1.8c-1 0-1.8 1 0 1s3.5-1.7 4.2-2.1l1.5-.7s1.4-.4 0-1.4c-1.5-1-2.9 0-2.2.3.7.4 0 1 0 1z"/>
<path d="M376.1 157.3c-2.2-1.4-4.8 1.6-2.3 3.3 2.2 1.5 4.5-1.9 2.3-3.3z"/>
<path fill="#fff" d="M373.3 158.7h.7c-.2.7.5 1.7 1.6 1.5-.9.6-2.5-.1-2.3-1.5zm8.8 33.5c.7.2 3 .5 3.8.5l-1 2c-.3.6-.4.7-.4-.2 0-1-.6-1.6-1-.6l-1 1.7c-.2.4-.6.6-.5-.4v-2.9z"/>
<path fill="none" stroke="#000" stroke-width="1.1" d="M471.1 219.4c0 57.8-9.2 120.2-84.4 150-74.8-29.8-84-92.2-84.4-150zm0 0c0-22-1-43.3-.7-61.7a225.6 225.6 0 0 0-83.7-15.3c-18.8 0-55.7 2.9-83.7 15.3.7 18.4-.7 39.7-.7 61.7z"/>
<path fill="#012169" d="M0 0h256v256H0Z"/>
<path fill="#fff" d="M256 0v32l-95 96 95 93.5V256h-33.5L127 162l-93 94H0v-34l93-93.5L0 37V0h31l96 94 93-94z"/>
<path fill="#c8102e" d="m92 162 5.5 17L21 256H0v-1.5zm62-6 27 4 75 73.5V256ZM256 0l-96 98-2-22 75-76ZM0 .5 96.5 95 67 91 0 24.5Z"/>
<path fill="#fff" d="M88 0v256h80V0ZM0 88v80h256V88Z"/>
<path fill="#c8102e" d="M0 104v48h256v-48ZM104 0v256h48V0Z"/>
</svg>

After

Width:  |  Height:  |  Size: 30 KiB

148
public/assets/images/flags/ad.svg Executable file
View File

@@ -0,0 +1,148 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="flag-icons-ad" viewBox="0 0 512 512">
<path fill="#d0103a" d="M0 0h512v512H0z"/>
<path fill="#fedf00" d="M0 0h348.2v512H0z"/>
<path fill="#0018a8" d="M0 0h163.8v512H0z"/>
<path fill="#c7b37f" d="M240.3 173.3c6.2 0 8.7 5.3 14.9 5.3 3.8 0 6-1.2 9.3-3.1 2.4-1.3 3.8-2 6.5-2s4.4.8 5.8 3.1a9 9 0 0 1 1 5.4 32 32 0 0 1-2.1 6.7c-.5 1.2-1 2-1 3.3 0 3.3 4.4 4.4 7.4 4.5.7 0 6.3 0 9.7-3.4-1.9 0-4-1.5-4-3.4 0-2 1.5-3.5 3.5-4.1.4-.1 1 .2 1.4 0 .5-.2.2-.8.7-1.1 1-.8 1.6-1.3 2.9-1.3a3 3 0 0 1 2 .6c.3.2.5.6.9.6 1 0 1.4-.6 2.3-.6.7 0 1.2 0 1.8.4.6.3.6 1.2 1.2 1.2.3 0 1.9-.6 2.8-.6 1.7 0 2.7.6 3.8 2 .3.3.5 1 .8 1a5 5 0 0 1 3.9 2.4c.2.3.5 1.1.9 1.3.4.1.7.1 1.3.5a4.8 4.8 0 0 1 2.3 3.9c0 .5-.3 1.2-.4 1.7-1.5 5.2-5.1 7-8.7 11.4-1.6 2-2.8 3.5-2.8 6 0 .6.8 1.7 1 2.2-.1-1.2.4-2.6 1.6-2.7 1.7 0 3 1.2 3.2 2.8 0 .4 0 1.1-.2 1.5.9-.6 2-1 3.2-1.1a9.9 9.9 0 0 1 1.5 0 13 13 0 0 1 7.4 3 16.9 16.9 0 0 1 5.9 13.4c-.7 4.3-.3 11.9-11 15 2 .8 3.3 2.3 3.3 4.1 0 2-1.5 3.8-3.5 3.8a3.5 3.5 0 0 1-2.8-1.1c-2.2 2.2-2.7 4.5-2.7 7.7 0 1.9.4 3 1.2 4.7a9 9 0 0 0 3 4.2c.8-1.2 1.6-2 3-2 1.5 0 2.7.4 3.3 1.7.1.3 0 .7.2 1 .2.5.7.6 1 1.1.3.8 0 1.4.3 2.2.2.5.7.6 1 1 .3.9.4 1.4.4 2.3 0 2.4-2.2 4-4.6 4-.8 0-1.2-.2-1.9-.1 1.4 1.3 2.4 2 3.5 3.6a14.1 14.1 0 0 1 2.3 8.2c0 3.6-.6 5.8-2.2 9a16 16 0 0 1-5.6 6.8 28 28 0 0 1-12.8 5c-3.4.7-5.3 1-8.8 1.2l-11.3.6c-5.7.4-9.7 1.2-13.8 5.3 2 1.4 3.3 2.8 3.3 5.2 0 2.4-1.5 4.2-3.9 5-.5.1-1 0-1.4.2-.6.3-.6 1-1.2 1.4a5 5 0 0 1-3 .8c-2.2 0-3.6-.5-5.2-2-1.7 1.4-2.3 2.7-4.3 3.9-.7.3-1 .8-1.7.8-1.2 0-1.8-.7-2.7-1.4a18.4 18.4 0 0 1-3.6-3.3c-1.8 1.1-2.9 2-5 2a5.2 5.2 0 0 1-3.1-.9c-.6-.3-.7-.9-1.3-1.2-.6-.4-1-.2-1.7-.5-2.4-1-4-2.8-4-5.5 0-2.3 1.5-3.8 3.6-4.7-4-4-8-4.7-13.6-5-4.4-.4-7-.4-11.3-.7-3.4-.2-5.4-.6-8.8-1.1-2.6-.4-4.1-.6-6.5-1.7-8.2-3.8-13.4-9-14.5-18v-2c0-4.7 1.8-7.5 5-10.8-.8-.2-1.3 0-2.2-.2-2-.8-3.5-2.2-3.5-4.4 0-.8 0-1.4.4-2 .3-.6.8-.7 1-1.2.1-.8 0-1.3.3-2 .2-.5.6-.5.8-1 .7-1.5 1.6-2.7 3.3-2.7 1.4 0 2.3.8 3 2 1.4-.7 1.8-1.7 2.6-3 1.3-2.2 1.8-3.7 1.8-6.2a11 11 0 0 0-.7-4.4c-.4-1.2-.5-2-1.4-3a3.5 3.5 0 0 1-2.8 1.2c-2.3 0-4-2-4-4.3 0-1.7.8-3 2.4-3.7-1.3-1-2.4-1.2-3.7-2-2.1-1.4-2.9-2.7-4.2-4.8-1-1.4-1.2-2.3-1.6-3.8a15 15 0 0 1-.9-5v-1.3c.6-3.9 1.3-6.4 3.8-9.5a11 11 0 0 1 4.6-3.9 11.6 11.6 0 0 1 6.5-1.3c1 .2 1.5.2 2.3.7.3.2.9.7.9.3l-.2-1c0-1.7 1.2-3.2 2.8-3.2 1.2 0 1.7 1 2.3 2 .4-.6.6-1 .6-1.7 0-2.8-1.5-4.2-3.2-6.3-3.7-4.7-8.4-6.9-8.4-12.8 0-1.8.9-3 2.4-4 .4-.2 1 0 1.5-.2.3-.3.3-.7.5-1.1a4 4 0 0 1 1.3-1.3c.8-.8 1.6-.5 2.5-1.2.5-.3.6-.7 1-1.2 1-1.2 2-1.8 3.6-1.8.8 0 1.3 0 2 .3.3 0 .8.5.9.4.1-.2.6-.7 1.1-1 .7-.3 1-.4 1.8-.4.9 0 1.4.5 2.3.5.4 0 .4-.3.7-.5.8-.5 1.2-.8 2.2-.8 1 0 1.4.3 2.2.8.7.4.8 1 1.6 1.5l1.2.3c2 .6 3.6 2 3.6 4.2 0 1.2-.2 2-1.1 2.8-.7.6-1.4.5-2.3.8a13 13 0 0 0 9 2.8c3.5 0 7.6-1.3 7.6-4.7 0-1.6-.9-2.4-1.5-3.8a15 15 0 0 1-1.7-6.9c0-2.2.2-3.5 1.5-5.3 1.3-1.9 3-2.3 5.2-2.3z"/>
<g fill="none" stroke="#703d29">
<path stroke-linejoin="round" stroke-width=".5" d="M217.9 191.2c.2.9.9 1.6 2 2a3 3 0 0 0 3-1.1c.8-1 .7-2.3.5-3.3a3.8 3.8 0 0 0-1.4-1.8l-4.1 4.2z"/>
<path stroke-linecap="round" stroke-width=".5" d="M320.8 252.9c-1-2.3-3.4-1.3-3.6 0-.3 3 2.3 3.8 4.1 3.3.9-.2 1.6-.8 2-1.5.5-.8.6-2 .3-3a4 4 0 0 0-.7-1.3 4 4 0 0 0-1-1c-.7-.4-1.5-.5-2.7-.5-4.4 0-8.3 5.3-9.6 10.8a23.6 23.6 0 0 0-.2 9.6 18 18 0 0 0 4.7 9 20 20 0 0 0 7.9 4.7c1.1.3 2.2.3 3.1 0 2.7-.5 3.9-3 2.6-5.5-1.1-2-4.3-3.2-5.8-.6a2.6 2.6 0 0 0-.4 1.3c0 .7.3 1.5.8 1.8 1.2.8 3 .6 3-1.5"/>
<path stroke-width=".7" d="M307 283.2a9 9 0 0 1 5.3-3c2.4-.2 4.5.5 6.6 1.6a14.9 14.9 0 0 1 8.6 13.6c0 3-.8 6-1.5 7.6-.7 1.3-2.5 7.1-12.3 11.2a67.4 67.4 0 0 1-20.5 3c-8.4.4-16 .7-20.5 6.2"/>
<g stroke-width=".6">
<path d="M309.1 292.6c-.2-.9 0-1.7.7-2.7 1-1.3 2.9-1.7 4.7-.7.6.3 1.3.8 2 1.7l1 1.2.8 2c2 5.6-1.2 11.7-5.2 14.1-3.2 2-7 2.8-11.5 3.3l-5.3.3h-7.6a56.3 56.3 0 0 0-5.8 0l-6 .6-4.4.8-1.5.4-1 .3a31.9 31.9 0 0 0-7.7 3.3c-.7.4-1.5.9-2 1.4l-1.1 1c-1.5 1.4-3.1 3-3.5 5.3v1.3c0 1.4 1.1 3.4 4.3 4m4.4-136.1c.6 1.2 1 2 .6 3.1-.4 1.4-1.4 2.3-2.8 2.3-3.2 0-5-3.8-3.6-6.2 2.5-4.3 7.4-1.9 12 .2-.3-1-.7-1.4-.6-2.8 0-3.3 2.6-4.8 3.6-8 .6-1.8.8-3.4-.6-4.7-1.1-1.2-2.5-1.1-4-.5-3.1 1.2-6.8 4.6-13.3 4.7-6.5 0-10.3-3.5-13.4-4.7-1.5-.6-2.9-.7-4 .5-1.4 1.3-1.2 3-.6 4.8 1 3 3.5 4.6 3.6 8 0 1.3-.3 1.6-.6 2.7 4.6-2 9.7-4.7 12-.2 1.3 2.5-.4 6.2-3.6 6.2-1.4 0-2.4-1-2.8-2.3-.4-1.1 0-2.2.6-3.1"/>
<path stroke-linecap="round" d="M251.7 191.9c1.2 1 2 2.1 1.9 4-.1 2-.7 2.5-2.2 3.6m1.9-3c-.1 1.2-.6 2-1.8 2.5"/>
</g>
<path fill="#c7b37f" stroke="none" d="m221.4 186.6.5.4.6.7.4.8.2.6v1.5l-.2.7-.4.5-.4.5-.7.3-.9.2-.7.2-.8-.4-.8-.5-.4-.7-.3-.8v-.3l3.9-3.7z"/>
<path stroke-linecap="round" stroke-width=".5" d="M220.2 189.7c-.3-1.3-1.8-1.6-2.4-.8-1 1.2-.3 3.2 1.6 3.8a3 3 0 0 0 3-1.1c.8-1 .8-2.3.5-3.2-.2-.7-.7-1.2-1.4-1.7-2.2-1.7-5.7-1.3-6.8 1.5-1.5 3.6 1.7 6.3 4.7 8.3 3.8 2.5 8 3 11.3 3 7.3-.1 12.9-3.6 16.5-5.6.8-.5 1.7-.4 2.1.2.5.6.5 1.5-.2 2.2"/>
<path stroke-width=".5" d="m198.4 289-1.6.5-1.7 1.3-.7 1-.9 1.6-.4 1.2-.3 1.5-.2 1m15.2-8v1.4l-.3 1-.7 1.7-1.1 1.5-1.2 1-1 .4-1.2.3"/>
<path stroke-width=".6" d="M255.8 327.3c-.3 1.3-1.5 2.8-4.3 3.4h-.5"/>
<path stroke-width=".7" d="M323.4 285a14.6 14.6 0 0 1 4.5 10.8c-.1 2.8-.8 6-1.6 7.5-.7 1.3-2.5 7.2-12.3 11.2a67.7 67.7 0 0 1-20.5 3.1c-8.2.4-15.8.7-20.3 6"/>
<path stroke-width=".5" d="M310 290.3c.6-.9 2.8-1.9 4.6-1a5 5 0 0 1 2 1.7"/>
<path stroke-width=".7" d="m321.3 283 1.1.4a5.6 5.6 0 0 0 3.2 0c2.2-.6 3.7-2.7 2.5-5.5a4.5 4.5 0 0 0-1.4-1.7"/>
<path stroke-linecap="round" stroke-width=".5" d="M192.2 223.8c-1.5 1-2.6 1.2-3.8 2.5a22.5 22.5 0 0 0-2.1 5.5m36.9-41.4c0 1.4-1 2.3-2.4 2.6"/>
<path stroke-width=".5" d="M317.7 217.6c3.8 0 14.8 2.9 14.9 15.8 0 12.8-8 14.9-11.1 15.7"/>
<path stroke-width=".5" d="M318.7 217.6c6.5-.3 13.2 4.5 13.5 16.5.3 9.4-6.4 13.6-9.6 14.5m-7.6 14.1.2-1.2.4-2 .6-1.7.7-1.3.8-1m6.3-2.7-.1 1.2-.4.9-.5.8-.7.5-1 .3h-1.5m-11.4-42.3.3-1.3.6-1.3.7-1.2 1.4-1.7 1-1.2 1.7-1.7 1.5-1.5 1-1.1 1.2-1.5 1-1.7.7-1.3.4-1.8.1-2.1-.2-.7M310 296.7l1.3-.3 1-.5.5-.5.4-.7.2-1v-.6M187 283.3l.9.1h1.2l1.3-.5m4-29.3-.2 1.2-.2.4-.4.5-.5.4-.6.3-.8.1h-.5m8-12.5-.3 1.8-.4.7-.7 1-1 .7-.9.5-1.8.4m12.2-31.8-.3 1-.5.8-.6.9-.8.7-1 .5-.8.2h-.6m.3-5v.8"/>
<g stroke-width=".5">
<path stroke-linecap="round" d="M203.4 243.3a5.5 5.5 0 0 1-1.6 1M322.2 280l.4.2c1 .7 3.3-.2 2.7-2"/>
<path d="M318.2 255.7c.8 1 2.4 1.3 3.6 1 .9-.2 1.5-.8 2-1.6.4-.8.6-1.9.3-3a4 4 0 0 0-.7-1.3 5.4 5.4 0 0 0-1.1-1.1l-.3-.2m5.2 27.2a3.1 3.1 0 0 0 0-.6c0-.9-.4-1.7-1-2.3-.2-.2-.4-.5-.7-.6m.4.3c0-1.5-1.3-2.5-2.8-2.8m-3.3 2.3c-.4-.3-.8-.5-1-.9a12.6 12.6 0 0 1-3.5-8.5c0-3.3 1.3-6.7 2.8-8M273 323.3l1.5-1.3 1-.8 1.8-1.1 1.8-.9 1.2-.3 2.5-.5 2.9-.5M262 333.4a14.1 14.1 0 0 1-6.1 5 14.1 14.1 0 0 1-6.1-5"/>
<path stroke-linecap="round" d="M251.5 330.1a8 8 0 0 1-1.7 3.3"/>
<path d="m251.8 328.4-.4 1.8m-1.8 3.3-.8.8-1.4.7-1.5.5m-4.5-142.2c.2-.6.4-1.1.3-2.1 0-3.4-2.5-4.9-3.5-8-.6-1.8-.9-3.4.5-4.8 1.2-1.1 2.5-1 4-.5 3.2 1.2 6.9 4.7 13.4 4.8-6.5-.1-10.2-3.6-13.3-4.8-1.6-.6-3-.8-4.2.4-1.4 1.3-1 3-.4 5 1 3 3.3 4.5 3.4 7.9 0 1-.2 1.5-.4 2m14.9-10.7c6.4-.4 11.9-4.7 13.7-5 1.6-.3 2.4-.2 3.6.9-1.2-1.1-2.5-1-4-.5-3 1.2-6.8 4.7-13.3 4.8m63.7 90.3a12.4 12.4 0 0 1-5-9.9c0-3.3 1.3-6.7 2.9-8m-56 78a14.1 14.1 0 0 1-6 5 14 14 0 0 1-6.2-5"/>
<path stroke-linecap="round" d="m245.3 195 1.9-1c.8-.6 1.9-.5 2.3 0 .5.7.6 1.7-.1 2.3"/>
<path d="M235.8 199.4c4.4-.9 8-2.9 10.6-4.4m25.9 131.4.6.7.2.7c.2 1.2-.6 2-1.5 2.1a2.7 2.7 0 0 1-2.8-1.6m-33.3-129.1c4.4-1 8-2.9 10.7-4.4m78 85.5c-.7.3-1.2.3-2.2-.2l-1.5-.8c-2-1.1-4.5-3-6.8-7.2a15 15 0 0 1-1.3-3.6c-.2-.9-.4-1.8-.4-2.7a20.5 20.5 0 0 1 .5-5 16.2 16.2 0 0 1 3.2-7.2c1-1.3 1.7-2 3.5-2m-115-31.5a5.7 5.7 0 0 1 2.1 4.6c0 2.5-2 6.5-7.2 8-2 .5-3.8 0-5-.7"/>
<path d="M205 228.5c1 .6 1.3 1.4 1.3 2.6 0 .8-.5 2-1.5 3a9.9 9.9 0 0 1-7 3.2 8.2 8.2 0 0 1-4.8-1.4 7.3 7.3 0 0 1-3-4.3"/>
<path d="M205 233.8c1 1 1.3 2.2 1.3 3.7 0 2.2-.9 3.9-3 5.7a5 5 0 0 1-1.5 1m103.6-17.6v2.9m-.3-3.6v4m.3-12.6v5.2m-.3-6.3v7m-1.5 65.7c-1 2-1.8 3-3.3 4.5a15.7 15.7 0 0 1-4.7 3.3 19.7 19.7 0 0 1-5.2 1.7c-2.1.5-3.4.6-5.5.7-2 0-3.1 0-5.1-.2-2.1 0-3.3-.4-5.4-.6-1.7-.1-2.7-.3-4.5-.3a22.8 22.8 0 0 0-8.7 1.5c-2.2.9-4.6 2.4-5.1 3-.5-.6-3-2.1-5.1-3a22.8 22.8 0 0 0-8.8-1.5c-1.7 0-2.7.2-4.4.3-2.1.2-3.3.5-5.4.6a37.3 37.3 0 0 1-10.6-.5c-2.1-.5-3.3-.8-5.3-1.8a15.7 15.7 0 0 1-5-3.7m33.6 42.7 1.5-.2m24.2-1.9 1.4-.1 1.4-.6 1-.5 1.3-1.6.3-.6.2-1.3v-.6M314 218.8c.6-2.1-.2-4.3-2.2-4.3m-105.6 37.3a6.5 6.5 0 0 1-2.9 3.7m3-37.4a5.2 5.2 0 0 1-3 3.2c-1.4.7-3.2 0-4-.6"/>
<path stroke-linecap="round" d="M195 225.9c1.3.6 2.5-.3 2.3-1.9a2.3 2.3 0 0 0-2-1.8"/>
<path d="M200.1 293.3c.3.3.4.6.7.6.5.1 1 .3 1.5-.4.7-.9.3-2.2-.4-3.1a4 4 0 0 0-4.7-.7c-.5.3-1.3.7-2 1.6l-.9 1.3-.9 2c-1.6 4.6.3 9.5 3.4 12.5"/>
<path stroke-linecap="round" d="m272.2 326.3.5.6.2.7c.2 1.2-.6 2-1.6 2-1.3.2-2.2-.6-2.7-1.6"/>
<path d="M311.6 187.8a6 6 0 0 1 5 5.6c0 3.6-1.2 4.9-3.1 7.4-2 2.7-8.5 7.7-8.5 13.4 0 3.4 1 5.6 3.4 6.7 1.6.7 3.5 0 4.3-.8 2-1.9 1.3-5.2-1-5.6-2.5-.4-3 3.7-.5 3.4m14.3 55.3a3 3 0 0 0-2.9-2.5 3 3 0 0 0-3 3c0 .8.4 1.5.9 2"/>
<path d="M307.1 220.1a5.7 5.7 0 0 0-2.1 4.6c0 2.5 2 6.5 7.2 8 1.9.5 3.8.4 5-.3m-124.9-8.2a7.5 7.5 0 0 0-3.8 2.7 13.5 13.5 0 0 0-1.9 4.9c-.1.7-.3 3 .1 5.3a12.7 12.7 0 0 0 1.9 4.5l.8 1 .9.7m51.2 73.6c3.9 1.8 6.7 3 9.2 6.9a8.2 8.2 0 0 1-1.7 10 6.6 6.6 0 0 1-5.4 1.6c-1.5-.2-3-1.3-3.2-2m-37.2-90a6.6 6.6 0 0 1 3.1 6c0 3-1.5 4.8-3.2 5.9"/>
<path stroke-linecap="round" d="M201.2 253.1c3.3 4.1 5 6.5 5.1 11.3.1 4.6-1.4 7.7-4 11"/>
<path d="M263.8 199.5a3.3 3.3 0 0 0 1.3-1.8c.4-1.2.4-2.2-.3-3.1.8 1 .9 1.9.7 3.1-.2.8-.7 1.2-1.3 1.8m41.2 69v12.8a19.6 19.6 0 0 1-.3 3.4m0-17.5V283l-.4 2.1m.4-34.3v11.6m.3-10.7v9.4m0-21.5v7.1m-.3-7.9v8.8m.3-15.2v2.8m-.3-3.4v4m-1.4 52.2-.3.5a15 15 0 0 1-3.4 4.6 15.7 15.7 0 0 1-4.6 3.2 19.7 19.7 0 0 1-5.3 1.8c-2 .5-3.3.6-5.5.7-2 0-3 0-5-.2-2.2-.1-3.3-.4-5.4-.6-1.8-.1-2.8-.3-4.5-.3a22.9 22.9 0 0 0-8.8 1.5c-2.1.9-4.5 2.4-5 3a17 17 0 0 0-5.1-3 22.9 22.9 0 0 0-8.8-1.5c-1.7 0-2.7.2-4.5.3-2 .2-3.2.5-5.4.6a37.3 37.3 0 0 1-10.5-.5 19.8 19.8 0 0 1-10-5 17.6 17.6 0 0 1-1.9-2.3m-1.6-2.5a8 8 0 0 1-1.8 6.2c-.7.7-2.2 2-4 2-3 .1-4-2-4.1-2.5"/>
<path d="M204.5 287a8.2 8.2 0 0 1 1.5 2.1c.7 1.4.5 3.8-.1 5a3.7 3.7 0 0 1-.3.3m-16.1 14.4c1.8 2 4.5 4 8.7 5.7a67.4 67.4 0 0 0 20.5 3.1c8 .3 15.5.7 20 5.7m13.9-3.3a12 12 0 0 1 3.2 4.5m-5.9 9.2a7 7 0 0 1-.5.5 6.6 6.6 0 0 1-5.3 1.6 5 5 0 0 1-3.5-2m-4.3-2.4.3.3a6 6 0 0 0 4 2m21.6 0a14.1 14.1 0 0 1-6.1 4.9 14.1 14.1 0 0 1-6.1-5l-.2-.3m12.4.3.6.6a6.6 6.6 0 0 0 5.3 1.6 4.4 4.4 0 0 0 3.3-2l.4-.6"/>
<path d="m271.2 333.3-.6 1-.9.7-1.3.6H267"/>
<path d="M274.4 324.2a6.1 6.1 0 0 1 1.9 2.3c.2.6.4 1.3.4 2a4.7 4.7 0 0 1-1.1 3.2 6 6 0 0 1-4.4 2 4.4 4.4 0 0 1-.3 0m.1-.2a5.5 5.5 0 0 1-4.1-1.7m51-54.3a19 19 0 0 1-4-5.2 15 15 0 0 1-1.3-3.6c-.2-.9-.4-1.7-.4-2.6 0-1.6.1-3.2.5-5a16.7 16.7 0 0 1 3.3-7.3c.5-.6 1-1.4 1.6-1.8m-1-60.6c2 .2 3.8 2.3 3.8 4.5 0 3.1-1 4.4-3.5 7.4-2.1 2.7-8.5 7.3-8.3 11.7 0 .8.5 1.6 1 2.2M307 220c.4.5 1 .8 1.6 1.1a4 4 0 0 0 3.4-.2m-16.9-34.6a4.8 4.8 0 0 1 1.8 2.1c1.4 3.6-1.8 6.3-4.8 8.3a17 17 0 0 1-6.6 2.6"/>
<path d="M291.7 193.2c-.7 0-1.6-.2-2.5-1.2a2.7 2.7 0 0 1-.6-.7m-11.9 3.9a3.7 3.7 0 0 1-1-.8c-.7-.8-1.2-1.9-.7-3.5.5-1.5 3-5.8 3-8.7.3-4.5-1.5-7.2-4.2-8.2"/>
<path stroke-linecap="round" d="m277.9 181.2-.1 1.7-.5 1.7-.9 2.3-.7 1.6-.7 1.5-.3 1-.2.8.1.8m30.5 101c0 .3.4.6.4.6a6.2 6.2 0 0 0 4.4 2.5c3 0 3.7-2.1 3.8-2.6.4-2.3-.4-3-1.6-3.6 0 0-.7-.3-1.5-.2"/>
<path d="M189.6 283.5a5.5 5.5 0 0 1-3 0c-2.3-.7-4-2.9-3.1-5.5m10.7-25.5c.2.2.3.6.3.8.3 3-2.2 3.8-4 3.4a4.5 4.5 0 0 1-2.5-1.9 3.8 3.8 0 0 1-.5-1.8m17.7-19c.4.5.8 1 1 1.5m-1-6.8c.5.3.8.6 1 1"/>
<path stroke-linecap="round" d="M206.3 232.4a6.8 6.8 0 0 1-1.3 2 9.9 9.9 0 0 1-7 3.1 8.2 8.2 0 0 1-4.8-1.4 7.6 7.6 0 0 1-3.3-4.4"/>
<path d="M204.3 220.2a6.2 6.2 0 0 1 2 2.7"/>
<path stroke-linecap="round" d="M206.3 226.6a9.4 9.4 0 0 1-7 6.3 7 7 0 0 1-5.2-.9"/>
<path d="M192 226c.2 2.1 1.7 3.7 4.3 3.8 3.8 0 6-5.4 2.7-9.3"/>
<path stroke-linecap="round" d="M183.6 244.4c.5.7 1.2 1.3 1.8 1.9a13.4 13.4 0 0 0 4.8 2.6m4.2.4c3.4-.4 5.3-2.9 4.9-5.8-.3-2.3-2.4-4-3.8-4"/>
<path d="M199.9 214.5c1.4 0 2.3 1.3 2.2 2.4"/>
<path stroke-linecap="round" d="M199.5 194.5a9.2 9.2 0 0 0 4 4.6M319 224a3.7 3.7 0 0 1-3.3 5.7 4.2 4.2 0 0 1-3.5-2"/>
<path d="M305.4 199.3v12.6"/>
<path stroke-linecap="round" d="M195 225.9c1.2.8 2.6-.6 2-2.1-.3-1-1.8-2.1-3.8-.8-2.1 1.5-1.5 6.3 2.7 6.3 3.7.1 6-5.4 2.7-9.2-3.2-3.7-9-2.9-13 .2a17.1 17.1 0 0 0-5.6 9.3 17 17 0 0 0 0 7.4 16.7 16.7 0 0 0 2.4 6l1 1.3 1.6 1.6a12 12 0 0 0 8.3 3c3.8-.1 6-2.8 5.5-5.9-.4-3-3.4-4.5-5.4-3-1.3.9-1.8 3.8.6 4.5 1.3.4 2.5-1.3 1.6-2.3m103.6-57.5c2.2-1.2 3.8-1 5 .7a7.9 7.9 0 0 1 1.3 5.8c-.4 2.2-1 3-2.8 4.6"/>
<path stroke-linecap="round" d="M304.4 185.6c2.5-1.6 5.2-1 6.6 1.3a7.3 7.3 0 0 1 1.3 4.9 9 9 0 0 1-4.6 7.3"/>
<path d="M316 191.3c2 .2 3.7 2 3.7 4.2 0 3-.8 4.4-3.3 7.4-2.1 2.6-8.4 7.2-8.3 11.7 0 1.6 1.5 3.2 2.7 3.3"/>
<path stroke-linecap="round" d="M316.3 225.9c-1.2.8-2.6-.5-2-2 .4-1 1.8-2.2 3.7-.9 2.2 1.5 1.6 6.3-2.6 6.3-3.7.1-6.3-5.2-2.7-9.2 3.3-3.7 9.4-3 13.2 0 1.6 1.4 5 5 5.6 9.6.9 5.6.7 12.6-5 16.8a13.8 13.8 0 0 1-8.5 2.4c-3.8-.1-6-2.8-5.5-5.9.4-3 3.3-4.3 5.4-3 2.2 1.1 1.8 4.3-.6 4.5-1.4.2-2.5-1.3-1.6-2.3"/>
<path d="M314.3 224c.6-2.9 3-3.1 5-3.1 5.2 0 8.9 6.3 9 12.4 0 7.6-3.3 12.1-9 12.3-1.3.1-3.8-.6-3.9-2.3"/>
<path stroke-linecap="square" d="M317.5 222.7c5.6 1.2 7.6 6.2 7.6 11 0 3.9-.4 9.2-8 11"/>
<path d="M326.7 276.3a3.1 3.1 0 1 0-5 1.8"/>
<path stroke-linecap="round" d="M315.6 271.5a13.3 13.3 0 0 0 5 4.8m-1 8.4c-2.7-1.7-7.7-4-12.2-1.8a6.3 6.3 0 0 0-3.4 3.5 8 8 0 0 0 1.5 7.7 6 6 0 0 0 4 2.1c3 0 3.7-2 3.8-2.5.3-2.2-1-3.1-1.6-3.3-.6-.2-2.2-.2-2.6 1-.1.4-.1 1.1.2 1.6"/>
<path stroke-linecap="round" d="M272.4 326.7c.8 1.8-.1 2.6-1.3 2.7-1.7.2-2.6-1.1-2.7-2.3-.2-2 1.5-3.9 3.5-3.8a4.4 4.4 0 0 1 4 2.8c.2.6.3 1.2.3 1.9a4.7 4.7 0 0 1-1.1 3.3 6 6 0 0 1-4.3 2c-3.4.1-6-3-6-6.3 0-6.1 9.1-9.5 12.8-10.4a67 67 0 0 1 14.3-1.8c2.9-.2 5-.1 8.1-.4 2.8-.3 4.3-.5 7.2-1.1a22 22 0 0 0 10-5.2 13.7 13.7 0 0 0 3.7-17.7 11.5 11.5 0 0 0-8.2-5.3c-3-.5-5.6.8-7.2 3.8a6.2 6.2 0 0 0 .1 5c.5.9 2 2.3 3.8 2.3 3 0 3.8-2 3.9-2.5.3-2.2-1-3.1-1.6-3.3-.6-.2-2.2-.2-2.6 1-.1.4-.1 1.1.2 1.6"/>
<path stroke-linecap="round" d="M269.8 317c-4 1.7-6.8 3-9.2 6.7a7.9 7.9 0 0 0-1 4c0 2.1 1 4.5 2.7 6a6.6 6.6 0 0 0 5.4 1.7c1.5-.2 3-1.3 3.2-2"/>
<path d="M308 243.3c-1.7.6-3 3.4-3 6 0 3 1.4 5 3.2 6"/>
<path stroke-linecap="round" d="M310 253.1c-3.2 4.1-5 6.5-5 11.3-.1 4.6 1.3 7.7 4 11"/>
<path d="m292.7 185.6.3-.4c1.3-2 3.7-2.5 5.5-1.2 2 1.6 2.6 4.3 2 7.2a7 7 0 0 1-3.2 4.4"/>
<path stroke-linecap="round" d="M212 184.7c-2-1-3.7-.8-5 .7a7.5 7.5 0 0 0-1.2 5.8c.4 2.1 1 3 2.8 4.6"/>
<path d="M206.9 185.6c-2.5-1.6-5.2-1-6.6 1.3a7.3 7.3 0 0 0-1.3 4.9 9 9 0 0 0 4.6 7.3"/>
<path d="M199.7 187.8a5.5 5.5 0 0 0-4.8 5.3c0 3.6.9 5 2.9 7.7s8.5 7.7 8.5 13.4c0 3.4-1 5.6-3.4 6.7-1.6.7-3.5 0-4.3-.8-2-1.9-1.2-5.2.9-5.6 2.6-.4 3.1 3.7.6 3.4"/>
<path d="M195.2 191.3c-2 .2-4 2-4 4 0 3.1 1.2 4.5 3.7 7.6 2 2.6 8 7.2 7.9 11.6 0 1.6-1.2 3.7-2.3 3.4"/>
<path stroke-linecap="round" d="M190.5 252.9c1-2.3 3.4-1.3 3.5 0 .4 3-2.2 3.8-4 3.3-1-.2-1.6-.8-2-1.5a3.9 3.9 0 0 1 .4-4.3 4 4 0 0 1 1-1c.7-.4 1.5-.5 2.7-.5 4.4 0 8.3 5.3 9.6 10.8a23.6 23.6 0 0 1 .2 9.6 18 18 0 0 1-4.7 9 20.1 20.1 0 0 1-7.9 4.7 5.6 5.6 0 0 1-3.2 0c-2.2-.6-3.7-2.8-2.5-5.5 1-2.1 4.3-3.2 5.8-.6.1.3.3.7.3 1.3 0 .7-.3 1.5-.8 1.8-1.1.8-3 .6-2.9-1.5"/>
<path d="M187 280.3c.8.3 1.3.3 2.3-.2l1.5-.8c2-1.1 4.5-3 6.7-7.2a15.1 15.1 0 0 0 1.4-3.6c.2-.9.4-1.8.4-2.7a20.5 20.5 0 0 0-.5-5 16.2 16.2 0 0 0-3.2-7.2c-1-1.3-1.7-2-3.5-2m-7.5 24.7a3.1 3.1 0 1 1 5 1.8"/>
<path d="M185.8 273.2a3 3 0 0 1 2.9-2.5 3 3 0 0 1 3 3 3 3 0 0 1-1 2"/>
<path d="M191.5 273a12.4 12.4 0 0 0 5-9.9c0-3.3-1.3-6.7-2.9-8"/>
<path stroke-linecap="round" d="M195.7 271.5a13.2 13.2 0 0 1-5 4.8"/>
<path d="M203.7 283c-.8-1.8-2.2-2.6-4.6-2.9a11 11 0 0 0-6.6 1.6 14.8 14.8 0 0 0-8 9 13.7 13.7 0 0 0-.6 4.6c0 2.9.8 6 1.6 7.5.6 1.4 2.4 7.2 12.2 11.2a67.7 67.7 0 0 0 20.6 3.2c8.3.3 16 .6 20.4 6.1"/>
<path stroke-linecap="round" d="M191.7 284.7c2.7-1.7 7.6-4 12.1-1.8a7 7 0 0 1 3.5 3.5 8 8 0 0 1-1.5 7.7c-.7.7-2.1 2-4 2.1-3 0-3.7-2-3.8-2.5-.3-2.2 1-3.1 1.6-3.3.5-.2 2.2-.2 2.6 1 .1.4.1 1.1-.2 1.6"/>
<path d="M202.2 292.6a2.7 2.7 0 0 0-.7-2.7 4.1 4.1 0 0 0-4.7-.7 5 5 0 0 0-2 1.7l-1 1.2-.8 2c-2 5.6 1.2 11.6 5.2 14.1a24 24 0 0 0 11.5 3.3l5.3.3h13.4l6 .6 4.4.8 1.5.4 1 .3a31.9 31.9 0 0 1 7.7 3.3c.7.4 1.5.8 2 1.4l1.1 1c1.5 1.4 3.1 3 3.5 5.3v1.3c0 1.4-1.1 3.4-4.3 4"/>
<path d="M239 326.7c-1 1.8 0 2.6 1.2 2.7 1.7.2 2.6-1.1 2.7-2.3.2-2-1.5-3.9-3.5-3.8a4.4 4.4 0 0 0-4 2.8 5.5 5.5 0 0 0-.3 1.9 4.7 4.7 0 0 0 1 3.3 6 6 0 0 0 4.4 2c3.4.1 6-3 6-6.3 0-6.1-9.1-9.5-12.8-10.4a67 67 0 0 0-14.3-1.8c-2.9-.2-5-.1-8.1-.4-2.8-.3-4.3-.5-7.2-1.1a22 22 0 0 1-10-5.2 13.7 13.7 0 0 1-3.7-17.7 11.5 11.5 0 0 1 8.2-5.3c3-.5 5.6.8 7.1 3.8.8 1.4.6 3.8 0 5a4.8 4.8 0 0 1-3.9 2.3c-3 0-3.7-2-3.8-2.5-.3-2.2 1-3.1 1.6-3.3.5-.2 2.2-.2 2.6 1 .1.4.1 1.1-.2 1.6"/>
<path stroke-linecap="round" d="M218.6 185.6a97 97 0 0 0-.3-.4c-1.3-2-3.7-2.5-5.5-1.2-2 1.6-2.6 4.3-2 7.2a7 7 0 0 0 3.2 4.4"/>
<path d="M293.4 191.7c-3.2 3.5-6.5 4.6-11.3 4.8-1.5 0-4.4-.5-6-1.7-1-.8-2.3-2-1.5-4.4.5-1.5 3-5.7 3-8.7.2-4.5-1.5-7-4.2-7.9-5-1.8-10.4 3.2-13.6 4.3a11 11 0 0 1-4.1.6c-1.6 0-2.5 0-4.2-.6-3.2-1.1-8.6-6-13.6-4.3-2.7 1-4.4 3.4-4.2 8 0 2.9 2.5 7.1 3 8.6.8 2.3-.4 3.6-1.5 4.4a11.6 11.6 0 0 1-6 1.7c-4.9-.2-8-1.3-11.3-4.8"/>
<path stroke-linecap="round" d="M237.9 315.5c.6.3.1-.1 4.2 1.7 3.8 1.7 6.6 3.2 9 7a8.5 8.5 0 0 1 .7 5.9"/>
<path d="M238.1 332.8a6.4 6.4 0 0 0 2.6.7c3.4.1 6-3 6-6.3 0-2.2-1.2-4-2.9-5.6"/>
<path stroke-linecap="round" d="M238.9 326.7c-.9 1.9.3 2.8 1.5 3 1.7.2 2.6-1.2 2.8-2.4a3.6 3.6 0 0 0-1.7-3.3"/>
<path d="M312 187.8c2.6 0 4.9 2.9 4.9 5.8 0 3.4-1.8 5.5-3.1 7-1 1.3-2.2 2.4-3.6 3.8"/>
<path stroke-linecap="round" d="M309 185.1a5 5 0 0 1 2.3 2 7.3 7.3 0 0 1 1.2 4.9c-.1 3.4-2.5 5.7-4.7 7.1m-3.8-14 .5.6a7 7 0 0 1 1.2 5.7 6.5 6.5 0 0 1-3 4.4m-4-11.6c2 1.6 2.7 4.4 2 7.2-.5 2-1.8 3.3-3.3 4.2m8.9 32.9c.2.7.6 1 1.2 1.5a10.8 10.8 0 0 0 4.9 2.9 6.2 6.2 0 0 0 5-.7M187 275.4c1 0 2 .6 2.7 1.8a2.6 2.6 0 0 1 .3 1.2c0 .7-.3 1.4-.8 1.8-1.2.7-3.2.4-3.1-1.7"/>
<path d="M193.2 249c4 .8 7.7 5.5 9 10.7a23.6 23.6 0 0 1 .2 9.6 18 18 0 0 1-4.7 9c-.5.6-1 1-1.7 1.5l-.9.6m-6.3-9.7c1.6 0 3 1.5 3 3.2a3 3 0 0 1-.8 2"/>
<path d="M187.7 272.6c1.7 0 3.3 1.6 3.3 3.3a3.1 3.1 0 0 1-1.2 2.5"/>
<path stroke-linecap="round" d="M203.2 255.6c1.5 2 2.6 3.9 3 6.2m0 6.8a13.8 13.8 0 0 1-1.2 3.2 14.2 14.2 0 0 1-2.8 3.7"/>
<path d="M203.4 243.5a7.5 7.5 0 0 1 2.8 3.8"/>
<path stroke-linecap="round" d="M206.3 239.6a8.7 8.7 0 0 1-2.7 3.7m-7.3-13.8 1.7-.4 1-.8.7-1 .5-1.4.3-1.2"/>
<path d="m192.8 223.4-2 .7a7 7 0 0 0-2.8 2.4 13.5 13.5 0 0 0-1.8 4.8c-.2.7-.4 3 0 5.3a12.6 12.6 0 0 0 2 4.6l.8 1c1 1 2 1.7 3.5 1.4"/>
<path stroke-linecap="round" d="M202.4 215.8c-.2 1-.8 2.3-2.4 2.2"/>
<path d="M196.5 222.8c-1.5-1.5-4.8-1.9-8 .2-.5.2-.9.6-1.3 1a7 7 0 0 0-1.1 1.2l-1.2 2a10 10 0 0 0-.7 2c-.6 2.3-.6 4.5-.6 5l.3 2.2a15 15 0 0 0 1.8 5 8.2 8.2 0 0 0 6.2 4.3c1.4.1 3.9-.6 4-2.4"/>
<path stroke-linecap="round" d="M291 189.7c.2-1.4 1.8-1.6 2.4-.8 1 1.2.4 3.2-1.5 3.8a3 3 0 0 1-3-1.1c-.9-1-.8-2.2-.5-3.2.2-.7.7-1.2 1.4-1.7 2.1-1.7 5.7-1.3 6.8 1.5 1.5 3.6-1.7 6.3-4.7 8.3-3.8 2.5-8 3-11.3 3-7.3-.1-12.9-3.6-16.5-5.6-.8-.5-1.7-.4-2.1.2-.5.6-.5 1.5.2 2.1"/>
<path stroke-linecap="round" d="M292.5 188.4c.8 0 1 .4 1.2.7 1 1.2.3 3.2-1.6 3.8m14.3 41.2c-2.8 3-.3 8.3 1.8 9.5.7.5 1 .2 1.6.6"/>
<path d="M306.5 228.3c-1 .7-1.2 1.4-1.3 2.6a4.2 4.2 0 0 0 1.2 3.2 11.2 11.2 0 0 0 7.3 3 8.2 8.2 0 0 0 4.9-1.4 7.3 7.3 0 0 0 3-4.3M305 281v2c-.4 2.2-.7 3.5-1.7 5.5a15 15 0 0 1-3.4 4.5 15.7 15.7 0 0 1-4.7 3.3 19.7 19.7 0 0 1-5.2 1.8 33 33 0 0 1-5.5.6h-5l-5.5-.7c-1.7-.2-2.7-.3-4.4-.3a22.8 22.8 0 0 0-8.8 1.5 17 17 0 0 0-5 3c-.6-.6-3-2.2-5.2-3a17.6 17.6 0 0 0-4.1-1.2c-1.8-.3-2.8-.3-4.6-.3-1.8 0-2.7.1-4.5.3-2 .2-3.3.5-5.4.6-2 .1-3 .2-5 .1-2.2 0-3.4-.2-5.6-.6a19.7 19.7 0 0 1-5.2-1.8c-2-1-3-1.7-4.7-3.3a15 15 0 0 1-3.3-4.5 15.1 15.1 0 0 1-1.7-5.5v-83.4H305V281z"/>
</g>
<g fill="#c7b37f" stroke="#c7b37f">
<path stroke-width=".3" d="M198.3 292.5a2 2 0 1 1 4 0 2 2 0 0 1-4 0zm-12.2-14.1c0-1 .6-1.8 1.4-1.8.8 0 1.4.8 1.4 1.8s-.6 1.8-1.4 1.8c-.8 0-1.4-.8-1.4-1.8z"/>
<path stroke="none" d="M193 242.9c0-.8.7-1.5 1.4-1.5.8 0 1.4.7 1.4 1.5s-.6 1.4-1.4 1.4c-.7 0-1.3-.6-1.3-1.4zm24.6-52.5c-.1-.9.4-1.6 1-1.6.7-.1 1.4.5 1.5 1.3 0 .8-.4 1.5-1.1 1.6-.7 0-1.4-.5-1.4-1.3z"/>
</g>
<g stroke="#c7b37f" stroke-linecap="round" stroke-width=".5">
<path d="M191.4 251.2a1.8 1.8 0 0 0-.6.4l-.5.7-.2 1m3.8 21.3.7-.8.6-.8.4-.7.5-1m-1 11-1.2.6-.9.5a14 14 0 0 0-1 .7l-1 .8m12-30.3-.6-.7-.7-.7-.8-.5"/>
<path stroke-linecap="butt" d="m203.3 244-1 .4a4 4 0 0 1-1.1.2"/>
<path d="M190 230.8c0 .4.1.7.3 1.1l.7 1.4a6.8 6.8 0 0 0 2.2 2.1l1.2.7m-.9-4.7 1 .5a6 6 0 0 0 2.4.5l1.5-.1m5.7-32.5-1.6-1a9.6 9.6 0 0 1-2.4-2.3l-.7-1m6-3.6.5 1.3 1.2 1.7c.7.8 1.3 1 2.2 1.6m1.1-4.7.5 1.2.7 1 1 1c.6.5 1 .6 1.6 1"/>
</g>
<path fill="#703d29" stroke-width=".1" d="M266.6 185.3c0-1.4-1.3-1.5-1.9-1.5-1.4 0-1.8 1-3.7 2a9.5 9.5 0 0 1-5.3 1.4 9 9 0 0 1-5.4-1.5c-1.9-1-2.2-1.9-3.6-1.9-.8 0-1.9.7-1.8 2v.7s.2 0 .2.2c0-.7.1-1 .4-1.4a1.8 1.8 0 0 1 1.3-.7c1.5 0 2 1 3.9 2a9.5 9.5 0 0 0 5.3 1.5c2 0 3.1-.3 5.4-1.5 1.9-1 2.4-2 3.9-2 .5 0 .8.3 1 .8v.7h.2c0-.1.2-.2.1-.8z"/>
</g>
<g fill="#703d29">
<path d="M211.5 299.2c.4-.4.8-.3.8-.5l-.2-.2-.7-.2-.7-.3s-.3-.2-.4 0c0 .3.9.3.5 1.1 0 .2-.1.5-.6 1l-2.1 2.3-.2.2V299l.1-1.4c.2-.4.6 0 .7-.3 0-.2 0-.2-.2-.3-.2 0-.4 0-1-.3l-.7-.3c-.1 0-.4-.2-.5 0l.1.2c.3.2.4.3.4.7v6c0 .4.1.6.2.6l.3-.2 4.2-4.6z"/>
<path d="M214 300.1c.3-.8.8-.3.9-.6l-.3-.2-1-.3-1-.4h-.3c0 .4 1 .4.7 1.3l-1.4 4.4c-.3.8-.8.4-.9.7v.1l1 .3 1.2.4h.3c.1-.3-1-.2-.6-1.3l1.4-4.3zm3 1c.1-.6.4-.6.7-.5.8.3 1 1.1.8 2-.2.5-.4 1-1.6.7-.3-.1-.6-.2-.5-.4l.6-1.9zm-2.3 3.9c-.4 1.1-1 .6-1 1l.2.1 1.3.4.7.2h.3c0-.4-.9-.2-.6-1.2l.5-1.6c0-.3 0-.4.5-.3.4.2.5.3.6.7l.3 1.7c0 .6.2 1.3.8 1.4.3.2 1 .1 1-.2v-.1h-.3l-.3-.3-.5-3 .6-.2c.3-.2.6-.4.8-1 .1-.4.3-1.7-1.5-2.3l-1.6-.4-1-.3h-.2c-.1.4.9.3.6 1.3l-1.2 4zm6.7 2c-.2 1-1 .4-1.2.7 0 .2.1.3.3.3l1.2.2 1.1.4.5-.1c0-.3-1.1-.3-.8-1.4l1-4.2c0-.5.2-.5.5-.4l.7.2c1 .2.5 1.1.8 1.2.3 0 .2-.3.3-.5v-1.1l-2.6-.6-2.5-.6c-.2 0-.2 0-.2.2l-.5 1.2v.3c.5.1.5-1.2 1.4-1l.7.2c.4.1.5.2.4.6l-1 4.3zm10.2-2.7c.3-.5.7-.4.7-.6l-.3-.2h-.7l-.7-.2c-.1 0-.4-.1-.4 0 0 .4.9.2.7 1 0 .2-.1.6-.5 1.1l-1.7 2.7-.1.2v-.3l-.6-3.2a4.3 4.3 0 0 1-.1-1.3c0-.4.5-.2.6-.5l-.3-.2-1-.1-.8-.2c-.1 0-.4-.1-.4 0l.1.2c.4.2.5.3.5.7l1.1 5.9c.1.4.2.5.3.5l.2-.2 3.4-5.3zm.5 5.4.1.4 1.4.6c1.1.2 2-.5 2.3-1.7.2-1.2-.3-1.7-1.2-2.3-1-.8-1.5-1-1.3-1.6 0-.6.5-1 1-.8 1.5.2 1.4 2 1.6 2 .1 0 .2 0 .2-.3l.1-1.3v-.3h-.5c-.3 0-.5-.4-1.2-.5-1-.2-1.8.5-2 1.6-.2 1 .2 1.4 1 1.9 1.2.9 1.7 1 1.6 1.9-.2.7-.8 1.1-1.4 1-1-.2-1.3-1.1-1.5-2l-.1-.3c-.2 0-.2.3-.2.4v1.3zm12.6-3.5c.3-.6.6-.5.7-.7 0-.2-.2-.2-.3-.2h-.8l-.7-.1-.4.1c0 .4 1 0 .8 1 0 .1 0 .5-.3 1l-1.4 2.9-.2.2v-.2l-1-3.2a4.3 4.3 0 0 1-.2-1.3c0-.4.6-.3.6-.5s0-.2-.3-.2h-1l-.8-.1c-.1 0-.4-.1-.4 0l.1.2c.4.2.5.3.6.6l1.7 5.8c.1.4.2.5.3.5l.2-.3 2.8-5.5z"/>
<path d="M246 310.8c0 1-.8.8-.8 1.2h1l1 .1.4-.1c0-.5-1.1.2-1.1-1.7v-3.4s.2 0 .3.2l4 5h.3v-.2l.1-5.3c0-1 .8-.8.8-1.1l-.2-.1h-2v.1c0 .3 1 .2 1 1v3.2l-.1.4-.3-.3-3.4-4.2c-.1-.2 0-.3-.3-.3h-1.4l-.1.2c0 .4 1-.2.9 1.7v3.6zm8.4-4.3c0-1 .6-.6.6-.9l-.3-.1h-2.3c0 .4.9.1.9 1v4.6c0 1-.6.7-.6 1v.1h2.3l.3-.1c0-.3-1 .1-1-1v-4.6zm3.6 4.4c0 1.2-1 .7-1 1 0 .3.2.3.3.3h2.4c.3 0 .5 0 .5-.2 0-.3-1.1 0-1.1-1.2v-4.3c0-.5 0-.5.3-.5h.8c1 0 .7 1 1 1 .3 0 .2-.4.2-.5l-.1-.9s0-.2-.2-.2H256c-.2 0-.2.2-.2.3l-.1 1.2.1.4c.4 0 .1-1.3 1.1-1.3h.7c.4 0 .5 0 .5.5v4.4zm5-1.8h-.3v-.4l.6-1.8h.1l1 1.7v.3l-.2.1-1.2.1zm1.5.4c.2 0 .3 0 .6.8l.2.6c0 .6-.6.6-.6.8 0 .2.2.1.3.1h1l1-.1c.3 0 .4 0 .4-.2 0-.3-.5.1-.8-.6l-2.8-5.6-.2-.3-.2.4-1.9 5.9c-.2.5-.6.5-.6.7 0 .2.2.1.3.1h1.5c.2-.1.5 0 .5-.3 0-.2-1 0-1-.7l.1-.7c.2-.7.3-.7.5-.7l1.7-.2zm6.6-4c0-.6 0-.6 1-.7 1.6-.3 1.1 1 1.5.9.2 0 .1-.4.1-.5l-.1-1h-.2l-2 .2-2.2.3c-.2 0-.2 0-.2.2 0 .3 1 0 1 .8l.6 4.4c.2 1.2-.5.7-.5 1.2h.2l1.1-.1 1-.1c.2 0 .4 0 .4-.2 0-.3-1 0-1.1-1l-.2-1.4c0-.5-.1-.6.3-.7h.6c.9-.2.8.9 1 .8.3 0 .2-.3.1-.5l-.2-1.6c0-.3-.2-.3-.2-.3-.2 0-.1 1-.8 1l-.6.1c-.4 0-.4 0-.4-.4l-.2-1.3zm3.2 2.2c.3 2 1.7 3 3.4 2.7 2.7-.5 2.8-3 2.5-4.2-.3-2-1.8-3-3.5-2.7-2 .4-2.8 2.2-2.4 4.2zm.9-.7c-.3-1.4 0-2.7 1.4-3 1-.3 2.3.6 2.7 2.7.3 1.6 0 3-1.4 3.2-1.5.3-2.4-1.5-2.7-2.9zm6.7-3.3c-.2-.6.1-.7.4-.7.8-.2 1.5.3 1.7 1.3.1.5.2 1-1 1.3-.3.1-.6.2-.7 0l-.4-2zm0 4.5c.3 1.2-.5 1-.4 1.3 0 .2.2.2.3.1l1.3-.3.7-.1c.2 0 .2-.2.2-.2 0-.4-.8.2-1-.8l-.4-1.6c-.1-.3-.2-.4.3-.5.4 0 .6 0 .9.3l1 1.3c.4.5.8 1 1.5.9.3-.1.8-.5.7-.7 0-.1 0-.2-.1-.1h-.6l-2-2.3.5-.5c.1-.3.3-.7.2-1.3-.1-.4-.6-1.7-2.5-1.2l-1.6.4-1 .2-.2.2c.1.4 1-.2 1.2.8l1 4.1zm6.9-1.5c.3 1-.8.9-.7 1.2 0 .2.2.2.3.2l1.2-.4 1.2-.3c.2 0 .4 0 .3-.2 0-.3-1 .2-1.3-.9l-1.1-4.2c-.1-.4 0-.5.3-.6l.7-.2c1-.3 1 .8 1.3.8.2 0 0-.4 0-.5l-.4-.9s0-.2-.2-.2l-2.5.7-2.5.7c-.2 0-.1.1-.1.2l.2 1.3c0 .1 0 .3.2.3.3-.1-.2-1.3.7-1.5l.7-.2c.3 0 .4 0 .6.4l1 4.3zm4.4-5.9c-.3-.9.4-.7.3-1h-.3c-.4 0-.7.2-1 .3l-1 .2s-.3 0-.2.2c0 .3 1-.2 1.2.6l1.2 4.4c.2 1-.4.8-.3 1.2l1-.2 1.3-.3c.2-.1.2-.2.2-.3 0-.3-.9.4-1.2-.7l-1.2-4.4zm1.8 2.1c.6 1.9 2.1 2.7 3.8 2.2 2.6-.9 2.3-3.3 1.9-4.5-.6-2-2.3-2.7-3.8-2.2-2 .7-2.6 2.6-1.9 4.5zm.8-.8c-.4-1.3-.4-2.7 1-3.2 1-.4 2.3.3 3 2.4.5 1.5.5 2.8-1 3.3-1.4.5-2.5-1.2-3-2.5zm6.1-4.3c-.2-.6 0-.7.4-.8.8-.3 1.5.2 1.8 1 .2.6.4 1-.8 1.6-.3 0-.6.2-.7 0l-.7-1.8zm.7 4.5c.4 1-.4 1-.2 1.3 0 .2.2.1.3 0 .4 0 .8-.3 1.2-.4l.7-.3c.2 0 .2-.1.2-.2-.1-.3-.8.3-1.2-.6l-.6-1.5c0-.4-.2-.4.3-.6.4-.1.5-.1.9.2l1.2 1.2c.5.4 1 .8 1.6.6.3-.1.7-.5.6-.8 0 0 0-.1-.1 0h-.6l-2.2-2 .3-.5c.1-.3.2-.7 0-1.3-.2-.4-.8-1.6-2.6-.9l-1.6.7-1 .3v.2c.1.3.8-.4 1.2.6l1.6 4z"/>
</g>
<g fill="#fedf00" transform="matrix(.512 0 0 .512 0 76.8)">
<path fill="#d52b1e" d="M412.7 249.3h82.1v82h-82.1z"/>
<path id="a" fill="#fff" d="M451.2 313.8s0 3-.8 5.3c-1 2.7-1 2.7-1.9 4a13.2 13.2 0 0 1-3.8 4c-2 1.2-4 1.8-6 1.6-5.4-.4-8-6.4-9.2-11.2-1.3-5.1-5-8-7.5-6-1.4 1-1.4 2.8-.3 4.6a9 9 0 0 0 4.1 2.8l-2.9 3.7s-6.3-.8-7.5-7.4c-.5-2.5.7-7.1 4.9-8.5 5.3-1.8 8.6 2 10.3 5.2 2.2 4.4 3.2 12.4 9.4 11.2 3.4-.7 5-5.6 5-7.9l2.4-2.6 3.7 1.2h.1z"/>
<use xlink:href="#a" width="100%" height="100%" transform="matrix(-1 0 0 1 907.5 0)"/>
<path d="m461.1 279 10.8-11.7s1.6-1.3 1.6-3.4l-2.2.4-.5-1.2-.1-1.1 3-.7V260l.3-1.3-3.2.2.3-1.4.5-1 1.9-.4h1.9c1.8-3.4 9.2-6.4 14.4-1 3.8 4 3 11.2-2 13.2a6.3 6.3 0 0 1-6.8-1.1l2-4c2.7 1.7 5-.3 4.8-2.4-.2-2.7-2-4.3-4.3-4.5-2.3-.2-4 1-5 3-.6 1.3-.3 2.2-.5 3.6-.2 1.5 0 2.3-.5 3.8a8.8 8.8 0 0 1-2.4 3.6l-11 12-43 46.4-3.2-3 43.2-46.7z"/>
<path fill="#fff" d="M429.5 283s2.7 13.4 11.9 33.5c4.7-1.7 7.4-2.8 12.4-2.8 4.9 0 7.6 1 12.3 2.8A171 171 0 0 0 478 283l-24.2-31-24.4 31z"/>
<path d="m456.1 262.4 16.8 21.7s-2.2 10.5-9 26.3c-2.7-.6-5-1.1-7.8-1.3v-46.7zm-4.7 0-16.8 21.7s2.2 10.5 9 26.3c2.7-.6 5-1.1 7.8-1.3v-46.7z"/>
</g>
<g fill="#d52b1e">
<path fill="#fedf00" d="M257.8 204.4H300v42h-42z"/>
<path d="M263.7 204.4h6.3v42h-6.3zm12 0h6.3v42h-6.2zm12 0h6.3v42h-6.2z"/>
</g>
<g fill="#d52b1e" stroke="#d52b1e" stroke-width=".5">
<path fill="#fedf00" stroke="none" d="M211.4 282.8c.2.8.4 2 1.1 3.4.8 1.2.5 1.2 2.2 3a13.8 13.8 0 0 0 6.7 3.6c3.4 1 5.7 1 8.5.9 2.2-.1 3.9-.4 5.3-.6 2-.2 3.4-.4 5.7-.5a32.4 32.4 0 0 1 3.1 0c1.2 0 2.4.3 3.7.5 2.8.6 5.6 1.7 5.6 1.7v-43.9h-42v30l.1 2z"/>
<path stroke-width=".3" d="m216.3 290.5 2 1.2 2.7 1v-41.8h-4.7zm23.4 2v-41.6H235v42.2l4.7-.5zm9.3-41.6h-4.6v41.7a31 31 0 0 1 4.6.8V251zm-18.6 0v42.7h-4.7v-42.7z"/>
</g>
<g transform="matrix(.512 0 0 .512 0 76.8)">
<path fill="#fedf00" d="M585.5 402.4a20.8 20.8 0 0 1-2.2 6.6c-1.5 2.3-1 2.3-4.3 6a26.3 26.3 0 0 1-13 7 51.8 51.8 0 0 1-16.6 1.6c-4.3-.2-7.5-.7-10.3-1-3.8-.6-6.7-.9-11-1a62.9 62.9 0 0 0-6.2 0 83.3 83.3 0 0 0-18.3 4.2V340h82.2v58.5l-.3 3.8z"/>
<g id="b">
<path fill="#d52b1e" d="m524.6 347-.6.2-.8.8c-.4.4-.7.5-1.2.8l-.6.5c-.3.3 0 .6-.3 1-.1.4-.3.6-.6 1-.4.4-.7.5-1 1l-1.2 1-.3.1h-.6c-.4.2-.5.6-.8.8l.3.6.8 1.4c.2.3.2.7.5.8.5.2.9.2 1.3.1.8.2 1.3.2 2 .5l1.5.8c.5.3.8.4 1.3.5h1.8v.3l2 1a1.7 1.7 0 0 0-.1.4c-.1.3-.2.7-.1.8.6 1.9 1.2 3 1.5 3.2.6.2.8.9 1.1 1.5l-.3.3c-.6.6-1.2 1-1.7 1.8-.7 1.2-1.2 1.2-.3 2.8l1.5 2.4c.4.7.6 1.2.8 2 .2.7.3 1.2.3 2l1 .3.7-.6.6-1.2v-1c-.2-.1-.3-.4-.2-.7 0-.4.5-.3.7-.6.3-.5-.4-.8-.7-1.1-.6-.7-1.4-.9-1.6-1.9 0-.2 0-.4.4-.7l2-1.8c.2.1.6.2 1 .1l1.3.4c.6.2.9 0 1.2 0h.4l.1.6c.1 1-.1 3 .2 3.5l.3.6.2.6v2l-.2 1.7c0 .4-.2.7-.5 1-.2.4-.6.4-1 .7v1l1.1.5 1.3.3.7-.3.1-.6.5-.5c.4-.2.8 0 .9-.1.2-.3 0-.4 0-.8 0-.6-.2-1-.3-1.6a11.8 11.8 0 0 1-.1-2.8c0-.6 0-1 .2-1.5.1-1 .4-1.4.6-2.2.3-1 .3-1.6.4-2.5a24.4 24.4 0 0 0 10.1-.6c.8.7 1.7 1.2 2.7 1.6v1c0 .3 0 .4.2.7l.3.3c.3 0 .5 0 .7-.2.2-.2.2-.4.2-.7v-.7h1.8v1.1c.1.3.3.4.5.4a.7.7 0 0 0 .6 0c.3-.2.2-.6.3-1v-.7l1-.4a5.1 5.1 0 0 1 0 .9l-.3.9c-.2.6-.5.8-.8 1.4-.4.6-.5 1-1 1.5l-.6.7-.6.9-.9 1c-.7.6-1.2.2-2 .9l-.3 1 1.4.6 1.3.2.4-.2c0-.3 0-.6.3-.8.2-.3.4-.3.7-.4.4 0 .8 0 1-.2.4-.3.4-1 .7-1.5a12.7 12.7 0 0 1 3-3.9l1.7-1.4c.2-.4.5-.5.5-1l-.2-.6-.2-1c1.5.7 1 .7 1.2 1.4.3.6 0 1 .1 1.7.1.8.5 1.1.5 1.9.1.9-.1 1.4-.3 2.3-.1.8-.1 1.3-.5 2a3.8 3.8 0 0 1-1.1 1.5l-.6.5-.1 1 1.1.4 1.6.4.4-.3c.2-.7 0-1.7.4-1.7.4-.1.7 0 .8-.3v-.7l.7-4.5.4-1.9.4-1.7c.7-2-.2-2.3-1-3.6-.5-.7-.7-1-.7-1.5V362a42.7 42.7 0 0 1 0-2.8l.4-.2c1.2-.7 1.7-.9 2.4-2.5a3.4 3.4 0 0 0 .3-1.5v-1l-.4-1a3.2 3.2 0 0 0-.6-.8c-.7-1-1.7-1.1-2.7-1.5-1.5-.5-2.5-.4-4-.5-1.8-.2-2.7-.2-4.4 0-2 0-3.1.4-5.1.7l-4.9.4c-2.3 0-4.4-.5-5.8-.4-2.4.2-2.5.8-6.2 1.1a67 67 0 0 1-3.8.2l-2.2-.7c.9-.3 1.1-.5 1.5-1 .3-.4.2-.7.6-1.1l.7-1a2.2 2.2 0 0 0-.9-.4h-1a3 3 0 0 0-1.2.3l-.8.6-2.2-1.2a8.8 8.8 0 0 0-3-.9zm2 11.8z"/>
<g fill="none" stroke="#fedf00" stroke-linecap="round">
<path d="m568.8 359.5-.8.3c-.9.4-1.6.4-2.6.5-2.6.2-4.3-1.1-7-.9-1.4.1-2 1.2-3.5 1.6a9.3 9.3 0 0 1-1.7.2l.5-1s-1.2.3-2 .3a7.5 7.5 0 0 1-1.6-.2l1-1-1.3-.2a4 4 0 0 1-1-.7 20.5 20.5 0 0 0 1.7-.3c1.5-.4 2-1.2 3.9-1.4 1.1 0 3 0 7.6.8 3 .5 4.4.2 5.5-.3.8-.3 1-1 1.1-1.8.1-.8-.4-1.4-.8-1.8-.1 0-.5-.3-1.1-.4"/>
<path fill="#fcd900" stroke-linecap="butt" stroke-width=".5" d="M524.8 350.6c-.5 0-.9 0-1.3.3-.5.3-.6.7-1 1.1.5.1.8.4 1.2.3.4 0 .5-.2.8-.5.3-.4.4-.7.4-1.2h-.1z"/>
<path d="M536 363.8a13.6 13.6 0 0 0 1 2.3c.2.8 0 1.2.2 2v1.6m6.8-7-.3 1.3-1 3.5v.7m-11-4c.9.2.6 3.3 1.9 4"/>
<path stroke-linecap="butt" d="m560.1 369.8.4-.3a8.2 8.2 0 0 0 2.7-1.8"/>
<path d="M552.4 368c3.5-.9 5.9-2.6 7.6-2.9m-4-1.5h.8c1.5-.3 1.7.6 2.7 1.2 1.9 1 2.1 2.3 4.3 3.4l.4.1.8.4"/>
<path fill="#fcd900" stroke-linecap="butt" stroke-width=".5" d="M517.7 354.5h.7l.8-.2c.3 0 .5 0 .7.2.2 0 .2.1.3.3 0 .2.2.3.1.5 0 .2-.3.4-.6.4-.2 0-.4 0-.5-.3a.5.5 0 0 1 0-.4 1 1 0 0 1-.9 0 1 1 0 0 1-.6-.5z"/>
</g>
<path fill="#0065bd" d="m525.1 364.2-2-.9c.4-.2.7-.2 1-.5.3-.4.3-.8.5-1.3s.2-1 .7-1.4c.3-.2.8-.2 1.1-.1.4 0 .8.4.9.7 0 .6-.2 1-.3 1.5 0 .6-.3.9-.2 1.4 0 .4.2.6.4 1l-2-.4zm-1 1a.6.6 0 1 1 .7.5.6.6 0 0 1-.7-.6zm-1.7-16.6h-.2c-.4-.4-.4-.8-.6-1.2a4 4 0 0 1-.3-1.2v-2c0-.3 0-.6-.2-.9 0-.2-.4-.3-.3-.4 0-.1.3 0 .4 0 .4 0 .6.1 1 .4.3.3.5.6.6 1l.4 1.5.3.8.5.6-.7.8-.9.6zm3.6 10.6 2.2 1a9.2 9.2 0 0 0 3.5-3.8c.9-1.8 1-2.7 1.4-4.4l-1.8-.5h-.4c-.5 1.8-.7 2.7-1.6 4.2-.8 1.3-1.7 2.3-2.6 3l-.7.5zm5 18.2.8-1.3 1.4-1.1h.4a8.7 8.7 0 0 1-.5 2.8l-.4 1-.5.5c-.5-.8-1.3-1.3-1.3-2zm33 1.8 1.4.6 1.5.9v.5l-1.5.2a8.4 8.4 0 0 1-1.3 0h-1l-.6-.4c.5-.7.8-1.6 1.4-1.8zm-9.8-2 1.4.5 1.5 1c0 .1.1.3 0 .4a9 9 0 0 1-2.7.3l-1-.1-.7-.3c.6-.7.9-1.7 1.5-1.8zm-17.4 2.1 1.5.5 1.5 1v.5a9 9 0 0 1-2.8.2h-1l-.6-.4c.5-.7.8-1.6 1.4-1.8zm-9-29.8c-.6-.3-1-1-.6-1.6.1-.2.4-.2.6-.4.2-.3.1-.5 0-.8l-.1-1-.2-1c0-.6 0-1 .4-1.6.2-.3.7-.6.8-.6.2.1 0 .5 0 .8 0 .5.1.7.3 1.2l.7 1.3c.2.6.4.8.4 1.4 0 .5 0 .7-.2 1.2a2 2 0 0 1-.6.8 2 2 0 0 1-.8.4 1.1 1.1 0 0 1-.6 0z"/>
</g>
<use xlink:href="#b" width="100%" height="100%" y="36.6"/>
</g>
<path fill="none" stroke="#703d29" stroke-width=".4" d="M211.3 204.4h42v42h-42zm46.5 0H300v42h-42zm-46.4 78.4c.2.8.4 2 1.1 3.4.8 1.2.5 1.2 2.2 3a13.8 13.8 0 0 0 6.7 3.6c3.4 1 5.7 1 8.5.9 2.2-.1 3.9-.4 5.3-.6 2-.2 3.4-.4 5.7-.5a32.4 32.4 0 0 1 3.1 0c1.2 0 2.4.3 3.7.5 2.8.6 5.6 1.7 5.6 1.7v-43.9h-42v30l.1 2zm88.4 0c-.1.8-.4 2-1.1 3.4-.8 1.2-.5 1.2-2.2 3a13.8 13.8 0 0 1-6.7 3.6 26.1 26.1 0 0 1-8.5.9c-2.2-.1-3.9-.4-5.3-.6a55.6 55.6 0 0 0-5.6-.5 32.4 32.4 0 0 0-3.2 0c-1.2 0-2.4.3-3.7.5-2.8.6-5.7 1.7-5.7 1.7v-43.9H300v30l-.1 2z"/>
</svg>

After

Width:  |  Height:  |  Size: 32 KiB

View File

@@ -0,0 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-ae" viewBox="0 0 512 512">
<path fill="#00732f" d="M0 0h512v170.7H0z"/>
<path fill="#fff" d="M0 170.7h512v170.6H0z"/>
<path d="M0 341.3h512V512H0z"/>
<path fill="red" d="M0 0h180v512H0z"/>
</svg>

After

Width:  |  Height:  |  Size: 259 B

View File

@@ -0,0 +1,81 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="flag-icons-af" viewBox="0 0 512 512">
<g fill-rule="evenodd" stroke-width="1pt">
<path d="M0 0h512v512H0z"/>
<path fill="#090" d="M341.3 0H512v512H341.3z"/>
<path fill="#bf0000" d="M170.7 0h170.6v512H170.7z"/>
</g>
<g fill="#fff" fill-rule="evenodd" stroke="#bd6b00" stroke-width=".5" transform="translate(2.2 86.8) scale(.84611)">
<path d="M319.5 225.8h8.3c0 3.2 2 6.6 4.5 8.5h-16c2.5-2.2 3.2-5 3.2-8.5z"/>
<path stroke="none" d="m266.7 178.5 4.6 5 57 .2 4.6-5-14.6-.3-7-5h-23l-6.6 5.1h-15z"/>
<path d="M290 172.7h19.7c2.6-1.4 3.5-5.9 3.5-8.4 0-7.4-5.3-11-10.5-11.2-.8 0-1.7-.6-1.9-1.3-.5-1.6-.4-2.7-1-2.6-.4 0-.3 1-.7 2.4-.3.8-1.1 1.5-2 1.6-6.4.3-10.6 5-10.5 11.1.1 4 .6 6.4 3.4 8.4z"/>
<path stroke="none" d="M257.7 242.8H342l-7.5-6.1h-69.4l-7.5 6.1z"/>
<path d="m296.4 219.7 1.5 4.6h3.5l-2.8-4.6h-2.2zm-2 4.6 1 4.6h4l-1.5-4.6h-3.5zm7 0 2.8 4.6h5.9l-4.6-4.6h-4.1zm-34.5 10.4c3.1-2.9 5.1-5.3 5.1-8.8h7.6c0 2 .7 3.1 1.8 3h7.7v-4.5h-5.6v-24.7c-.2-8.8 10.6-13.8 15-13.8h-26.3v-.8h55.3v.8H301c7.9 0 15.5 7.5 15.6 13.8v7h-1l-.1-6.9c0-6.9-8.7-13.3-15.7-13.1-6 .1-15.4 5.9-15.3 13v2.2l14.3.1-.1 2.5 2.2 1.4 4.5 1.4v3.8l3.2.9v3.7l3.8 1.7v3.8l2.5 1.5-.1 3.9 3.3 2.3h-7.8l4.9 5.5h-7.3l-3.6-5.5h-4.7l2.1 5.4h-5l-1.3-5.4h-6.2v5.8H267zm22.2-15v4.6h5.3l-1-4.6H289z"/>
<path fill="none" d="M289.4 211.7h3.3v7.6h-3.3z"/>
<path fill="none" d="M284.7 219.8h3.2v-5.6c0-2.4 2.2-4.9 3.2-5 1.2 0 2.9 2.3 3 4.8v5.8h3.4v-14.4h-12.8v14.4zm25.6 3.3h4v3.2h-4zm-2.4-5.3h4v3.1h-4zm-3.9-5.4h4v3.1h-4zm-3.3-4.5h4v3.1h-4z"/>
<path fill="none" d="m298 219.8 4.2.2 7.3 6.4v-3.8l-2.5-1.8v-3l-3.6-2v-3.3l-3.5-1.2V207l-1.7-1.5-.1 14.4z"/>
<path d="M315.4 210.3h1v7.1h-1z"/>
<g id="a">
<path d="M257.3 186.5c-1.2-2-2.7 2.8-7.8 6.3-2.3 1.6-4 5.9-4 8.7 0 2 .2 3.9 0 5.8-.1 1.1-1.4 3.8-.5 4.5 2.2 1.6 5.1 5.4 6.4 6.7 1.2 1 2.2-5.3 3-8 1-3 .6-6.7 3.2-9.4 1.8-2 6.4-3.8 6-4.6l-6.3-10z"/>
<path fill="#bf0000" d="M257 201.9a10 10 0 0 0-1.6-2.6 6.1 6.1 0 0 0-2.4-1.8 5.3 5.3 0 0 1-2.4-1.5 3.6 3.6 0 0 1-.8-1.5 5.9 5.9 0 0 1 0-2l-.3.3c-2.3 1.6-4 5.9-4 8.7a28.5 28.5 0 0 0 0 2.3c.2.5.3 1 .6 1.3l1.1.8 2.7.7a7.1 7.1 0 0 1 2.6 2 10.5 10.5 0 0 1 1.8 2.6l.2-.8c.8-2.7.7-5.9 2.6-8.5z"/>
<path fill="none" d="M249.8 192.4c-.5 3.3 1.4 4.5 3.2 5.1 1.8.7 3.3 2.6 4 4.4m-11.7 1.5c.8 3 2.8 2.6 4.6 3.2 1.8.7 3.7 3 4.5 4.8"/>
<path d="m255.6 184.5 1-.6 17.7 29.9-1 .6-17.7-30z"/>
<path d="M257.5 183.3a2 2 0 1 1-4 0 2 2 0 1 1 4 0zm15.2-24h7.2v1.6h-7.2zm0 3.1h7.2v13.8h-7.2zm-.4-5h8c.2-2.7-2.5-5.6-4-5.6-1.6.1-4.1 3-4 5.6z"/>
<path fill="#bd6b00" stroke="none" d="M292.6 155.8c-1.5.6-2.7 2.3-3.4 4.3-.7 2-1 4.3-.6 6.1 0 .7.3 1.1.5 1.5.2.3.4.5.6.5.3 0 .6 0 .7-.3l.2-.8c-.1-2-.1-3.8.3-5.4a7.7 7.7 0 0 1 3-4.4c.3-.2.4-.5.5-.7a1 1 0 0 0-.3-.7c-.4-.3-1-.4-1.5-.1zm.2.4c.4-.2.8 0 1 .1l.1.2c0 .1 0 .2-.3.4a8.2 8.2 0 0 0-3.1 4.6 16.7 16.7 0 0 0-.3 5.6 1 1 0 0 1-.2.6s0 .1-.2 0c0 0-.2 0-.4-.3a3.9 3.9 0 0 1-.4-1.2c-.3-1.8 0-4 .7-6 .7-1.8 1.8-3.4 3-4z"/>
<path fill="#bd6b00" stroke="none" d="M295.2 157.7c-1.5.7-2.5 2.3-3 4.2a13.6 13.6 0 0 0-.3 5.9c.2 1.3 1 2 1.6 2 .3.1.6 0 .8-.3.2-.3.3-.6.2-1-.4-1.6-.5-3.4-.3-5.1.3-1.7 1-3.2 2.2-4.1.3-.3.5-.5.5-.8a.8.8 0 0 0-.2-.6c-.4-.3-1-.4-1.5-.2zm.2.5c.4-.2.8-.1 1 0l.1.3-.3.4a6.5 6.5 0 0 0-2.4 4.4c-.3 1.8-.1 3.7.2 5.2.1.4 0 .6 0 .8l-.5.1c-.3 0-1-.5-1.2-1.7-.3-1.7-.2-3.9.3-5.7.5-1.8 1.5-3.3 2.8-3.8z"/>
<path d="M272.3 187.4h8v11h-8zm.5 17.4h7.7v2.4h-7.7zm-.2 4.1h8v8.7h-8zm-.6 10.5h8.7v4.9H272zm1.1-16.6h7l1.4-2.4h-9.6l1.2 2.4zm9.4-8.6.1-6h4.8a17.4 17.4 0 0 0-4.9 6z"/>
<path fill="none" d="M273.6 196.7c0 1.3 1.5.8 1.5.1v-5.6c0-1 2.4-.8 2.4-.1v6c0 1 1.7.9 1.6 0v-7c0-2.2-5.5-2.1-5.5-.1v6.7zm0 13.3h5.7v7h-5.7z"/>
<path d="M277.2 213h2v1h-2zm-3.5 0h2v1h-2zm2-3h1.5v3h-1.5zm0 4h1.5v3.1h-1.5zM244 139c.4 5.5-1.4 8.6-4.3 8.1-.8-3 1-5.1 4.3-8.1zm-6.5 12.3c-2.6-1.3-.7-11.5.3-15.8.7 5.5 2 13.3-.3 15.8z"/>
<path d="M238.4 151.8c4.4 1.5 8-3.2 9.1-8.7-3.6 5-9.5 5-9 8.7zm-3.3 5.1c-3.4-.9-1.4-11.7-.7-16 .7 4.5 3.1 14.5.7 16zm1.2-.3c.2-3.7 3.9-2.7 6.5-4.7-.5 2-2 5.2-6.5 4.7zm-4.2 5c-3.4-1-1.4-12.6-1.6-17.4 1 4.2 4.2 16.3 1.6 17.4zm1.6-.5c2.8.9 6.5-1 6.8-4.3-2.5 1.7-6.3.4-6.8 4.3z"/>
<path d="M229.5 166.7c-3.2.3-1.8-9.6-1.8-18.8 1.2 8.6 4.5 16.5 1.8 18.8z"/>
<path d="M230.7 166.3c2.2 1 6.1-.7 7.2-4.4-4 1.7-6.6 0-7.2 4.4zm25.6-22.2c-.6 4.9-2.6 7.7-5.5 7.2-.8-3 1.6-5 5.5-7.2zm-7.8 12.4c4.9.7 6.6-3 10-7.9-4.7 3.4-10.2 4-10 8z"/>
<path d="M247 156c-2.6-3.2 0-7.3 2-10.7-.4 5.1 1.3 8-2 10.7zm-1 5.3c-.4-3.2 5-3.9 7.4-5.6-.9 1.8-2 6.7-7.5 5.6z"/>
<path d="M244.8 161.3c-3.7-.4-2.2-6.7.5-10.1-1.1 4.8 2 8.1-.5 10.1z"/>
<path d="M242 166.6c-4.2-2-1.5-7.2 0-10.3-.6 4.1 2.8 7.2 0 10.2z"/>
<path d="M242.8 166c2.2 3 6.5-.8 7.4-5.2-3.7 3.1-6.5 2.6-7.4 5.3zm-9.6 20.3c-.4-4.3 2.8-12 .5-16.2-.3-.6.7-2.1 1.4-1.2 1 1.5 2 5.7 2.5 4.1.4-1.7.5-4.6 2-5.2 1-.3 2.3-.6 1.9 1-.4 1.4-1.2 3.4-.3 3.5.5 0 2-2 3.3-3 1-.8 2.6.6 1 1.8-4.8 4-9.5 5.9-12.3 15.2zm-8.7 64.5c-.6 0-1.3-.3-.6.6 5.7 7 7.3 9 15.6 8 8.3-1.1 10.3-3.4 16.2-6.7a14.6 14.6 0 0 1 11.2-1c1.6.5 2.6.5 1.4-.7-1.2-1.1-2.5-2.7-4-3.8a17.5 17.5 0 0 0-12.7-2.7c-6 1-11.1 4.9-17.2 6.4a25 25 0 0 1-9.9 0zm47.8 12.5c1 .2 1.7 2.2 2.3.9.8-2.3.2-4-.8-3.9-1.2.3-3.1 3-1.5 3z"/>
<path stroke="none" d="M220.6 183c-1.2-1.4-.9-1.8 1-1.9 1.4 0 4.2 1 5.3.1 1-.7.5-3.7 1-5 .2-.9.7-2 2-.2 3.6 5.8 8 12.8 10 19.6 1 3.8 0 9.8-3.4 13.8 0-3.4-1.2-5.7-2.7-8.6-2-3.7-9.1-14-13.2-17.9z"/>
<path d="M235.5 213.4c4 0 4.7-5.3 4.7-6.8-2 .4-5.4 3.7-4.7 6.8zm34.5 51.9c2.8.6 2.7-6.2-.2-9.1 1.3 4.4-2 8.4.1 9zm-1.2-.1c.2 3.2-8-.4-10-3 4.8 2.1 9.8.4 10 3zm-3.5-4.6c.3 3.1-7 .3-9.3-2.1 4.9 1.6 9-.5 9.3 2zm1.3.4c2.9.7 2.4-6.4-.4-8.8 1.4 4.7-1.8 8.1.4 8.8zm-3-4.3c2.9.7 1.2-5.4-.9-7.8.4 4.4-1 7.5 1 7.8zm-1.5 0c.3 3.2-5.4.8-7.6-2.3 4.8 1.5 7.3-.3 7.6 2.3zm-1.5-2.5c1.8-1.3-.1-4.8-3.7-4.6.4 2.1 1.6 5.9 3.7 4.6zm14 14.7c.1 3.2-8 1.6-10.6-1.8 5.2 1 10.3-.8 10.5 1.8zm-32.4-5.8c.3 3.2-8.6-.4-10.8-3.4 4.7 1.6 10.5.8 10.8 3.4zm5.4 1.3c1.9-1.3-1.9-4.7-5-5.5.4 2.1 3 6.8 5 5.6zm.6 2.3c.2 2.9-9.5 1.3-12-1.4 8.3 1.5 11.7-1.1 12 1.4z"/>
<path d="M252.8 268.6c1 2.7-8.3 2-11.6.5 5.3 0 10.8-2.4 11.6-.5z"/>
<path d="M257.1 270.6c1 2.4-7.6 2.4-11.8 1 5.6 0 10.8-3.4 11.8-1zm6.3 1.3c1.6 2.9-7.6 3.1-10.5 1.7 5.2-.7 9.2-4 10.5-1.7zm-10.7-4.9c-2.9 1.8-2.7-3.6-5-7.3 3.6 3.3 7 5.6 5 7.3z"/>
<path d="M257.9 269c-2.4 2.1-4.4-5.3-6.6-9.5 3.6 4 8.8 7.7 6.6 9.4zm6.8 2c-2 2.4-8-7-10.2-12 3.3 3.9 11.8 10 10.2 12zm-5.8 7.2c-1 3.6-16.2-3.4-18-7.1 8.8 4.6 18.2 3.6 18 7zm-48.7-73.8c-.4-.5-1.4 0-1.2 1.1.3 1.5 2.5 9.2 6.3 11.8 2.7 2 17 5.1 23.4 6.5 3.6.7 6.5 2.5 8.9 5.3a94.4 94.4 0 0 0-3-9.8c-1.2-3-4.4-6.2-7.8-6.3-6.1-.3-14.1-.8-20-3.3a16 16 0 0 1-6.7-5.3z"/>
<path d="M245.5 234.9c2 1.4 4.1-3.7 1.7-8.6-.1 4.7-3.8 6.3-1.7 8.6z"/>
<path d="M247.4 239.6c2.7.8 3.5-4 1.8-7.8.3 4.1-4.3 6.6-1.8 7.8z"/>
<path d="M249.5 243.4c2.6 1.3 3.5-3.6 1.7-7.1.2 4.5-3.7 5.9-1.7 7z"/>
<path d="M248.4 243.7c-1 3-7-2.7-8-5.8 3.7 3.7 8.7 3.2 8 5.7z"/>
<path d="M245.7 239c-1.2 3-8.7-5-10.4-8.7 3.7 3.7 11.2 6.5 10.4 8.6z"/>
<path d="M244.2 234.3c-1.2 3.5-9.3-5.8-11.7-9.1 4 3.6 12.6 6.6 11.7 9.1zm-.3-3.4c3-.6-.1-3-3.7-6.9-.1 4.1.5 7 3.7 6.9z"/>
<path d="M239 228.5c1.3-1.3-1.1-1.9-4.1-5.3-.5 2.3 2.8 6.5 4.2 5.3zm14 15.2c1.6 1 2.6-2.3.7-5.2-.5 3.2-2.1 4-.7 5.2zm-34.2-20.3c-3.3 2-8.6-6-10-9.3 2.9 3.8 10.6 7.2 10 9.3z"/>
<path d="M221.7 228c-1.9 2-7.7-3.5-9.7-6.3 3 2.7 10.5 3 9.7 6.3z"/>
<path d="M224.8 232.2c-.6 2.8-9-3.5-11-6.5 3.6 3.5 11.6 3.2 11 6.5z"/>
<path d="M223.5 235.3c-1.3 2.5-8.2-3.8-9.9-7 4.3 3.6 11 4.5 10 7zM220 223c2.1-2.3 1.2-3.4-.4-7-.8 3.7-2.1 5.2.4 7zm2.9 4.3c4 .2 0-4.6-1-8.7.4 4.6-1 8.3 1 8.7z"/>
<path d="M225.4 231.1c2.7-.6 2-4.5-.2-9.2.5 5.1-2.3 8 .2 9.2zm-1 7.7c-1 3-8.8-4-10-6.8 4 3.4 10.7 4.5 10 6.8z"/>
<path d="M229.1 243.6c-1.1 3-9.3-3.2-11.8-6.6 4.9 4 12.4 3.6 11.8 6.6z"/>
<path d="M233.9 248.5c-1.3 4.3-9.9-2.6-12.4-6 5.4 4.2 13 3 12.4 6zm-8-11c2.3 1.1 3.2-5.4 1.9-10.1 0 5-4.7 8.8-2 10z"/>
<path d="M229.8 242.7c2.8.8 2-6.3-.5-11-.3 4.7-2.3 9 .5 11zm5 4.9c3 .1 1-6.1-1.6-9.6.4 4.5-1 9 1.6 9.6zm-5.5 2.6c-1 1.6-3.2-1.3-7-3.5 3.4 1 7.4 2 7 3.5zm-1.8-52.7c3-2.2.7-6.2 0-10-1 3.6-3.4 8.4 0 10zm0 5.3c-4.5-.5-3.8-6.1-4-9.7 1.4 4.9 5 5.7 4 9.8zm.6-.7c3.7-.2 3.5-4.4 3.7-8.6-1.9 3.9-4 4.5-3.7 8.6z"/>
<path d="M228 207.3c-3 .3-4.4-2.6-5-7 2.7 4.1 5.1 2.8 5 7zm1-.3c3.7.5 3-3.8 3-7-1.2 3-4.2 4-3 7z"/>
<path d="M223.2 205.2c.3 2.8 2.1 7.6 5 6.5 1.1-3.4-2.6-4.1-5-6.5z"/>
<path d="M229 212c-1.2-2.4 3-3.7 3.8-6.9.5 4.6.1 7.6-3.8 7zm-11.9-29.2c2.3-2.4.3-6.4-.4-10.2-1 3.6-2.5 8.4.4 10.2zm0 4.6c-4 .5-5-7.7-5.5-11.3 1.4 4.9 6 7 5.5 11.4zm.8 0c2.8-1.5 2.2-4.7 3-7-1.8 2.9-3.6 3.3-3 7z"/>
<path d="M217 192.8c-4.1.3-6.6-8.8-6.8-12.4 1.3 4.9 7.4 7.5 6.9 12.4zm.9-.2c4-.9 3.5-3.5 2.9-7.6-1.3 4.2-3.5 3.3-2.9 7.6z"/>
<path d="M217 198c-4.6.8-4.3-6.6-8-11.9 3.2 4 9 9 8 11.9zm1-.3c3.6.2 4-5.1 3.8-7.3-.9 2.2-5 4.2-3.7 7.4z"/>
<path d="M209.8 192.3c1.7 5.7 4.2 11.4 7.2 11 1.5-3.3-2.9-3.7-7.2-11z"/>
<path d="M218.1 202.4c-1.2-2.5 3-3.7 3.8-6.9.5 4.6.1 7.6-3.8 6.9zm-7.1-3.6c2.5 5.1 3.6 11 7 10.1 1.3-4-3.8-4.8-7-10.1z"/>
<path d="M218.7 208c-1.5-2.8 2.7-3.7 3.8-7.4.5 4.8 0 8.3-3.8 7.3zm7.2-34.5c2.4.6 5-2.1 4.1-6.2-2.8.6-4 3.2-4.1 6.2zm-7.9-2.1c.2 1.2 1.7 1.3 1.2-.4a5.3 5.3 0 0 1 0-3.4 7.5 7.5 0 0 0 0-4.6c-.4-1-1.8-.4-1.2.4.6.9.7 2.8.2 3.7-.6 1.3-.4 3-.2 4.3zm22.9 16c-1 1.3-2.9.4-1.4-1.5 1.2-1.5 3-2.8 3-4.4.2-2 1.3-5 2.4-6.1 1.1-1.1 2.4.4 1.2 1.2-1.3.8-2.2 4.4-2.1 5.8-.1 2-2 3.5-3.1 5zm-3-2.3c-1 1.4-2.4.5-1.6-1.7.7-1.5.8-3.5 1.6-4.6 1.2-1.7 3-3.1 4.1-4.2 1.2-1 2 0 1 1a27 27 0 0 0-3.3 4c-1.4 2.2-.8 4-1.8 5.5zm-15.7-7.2c-.1 2 1.5 2.4 1.4-.4 0-3-2.2-5.8-1-10.3.8-2.2.8-6.3.4-8.4-.4-2.2-2-.8-1.3.9.6 2-.1 5.6-.6 7.5-1.5 5.4 1.2 8 1 10.7zm4.3-11c-.2 1.9-1.8 2-1.3-.5.4-2 .4-3.6 0-5.3-.6-2.1-.4-5.7 0-7.2.5-1.6 2-.7 1.4.5a9.9 9.9 0 0 0-.3 5.9c.6 2 .5 4.8.2 6.7zM210.9 204c.8.9 2 .3 1-1-1-1-.7-1.2-1.3-2.4-.6-1.4-.5-2.1-1.2-3-.7-1-1.6 0-1 .7.8 1 .6 1.6 1 2.5 1 1.5.7 2.3 1.5 3.2zm20.4 24.6a8.6 8.6 0 0 1 4.4 6.7 16 16 0 0 0 2 7.1c-2-.5-3-3.7-3.3-6.8-.3-3.2-2-4.5-3-7zm5.1 5.9c1.7 3.1 4 4.3 4.2 6.6.2 2.7.4 2.8 1.1 5.4-2-.5-2.5-.7-3-4.7-.3-2.8-2.6-4.7-2.3-7.3z"/>
<path stroke="none" d="M289 263.3c1 1.8 2 4.5 4 4 0-1.3-2.1-2.3-4-4zm3 .6c3.7 1.6 7 1.2 7.5 3.6-3.6.4-5-1-7.6-3.6zm-16.1-12.7a14 14 0 0 1 5 7.7 29 29 0 0 0 3.6 7.8 13 13 0 0 1-5.3-7.4c-.7-3-1.6-5.3-3.3-8zm3.1 0c2.8 2.2 5.4 4.8 6.2 7.9.8 2.9 1.3 5.1 3.2 8-3-1.9-4.1-4.7-5-7.8-.7-3-2.5-5.2-4.4-8zm9.2 7.3a1.1 1.1 0 0 1 .7-1.2 33.4 33.4 0 0 1 2.6-.8c1-.3 1.6.4 1.6.9v2c0 .7-.2.8-.7.9-.7.1-1.7.2-2.4.7-.6.4-1.2.1-1.5-.5l-.3-2zm10.6 0c0-.6-.2-1.1-.6-1.2a5.4 5.4 0 0 0-2.4-.4c-1 0-1.1.2-1.1.6v2.1c0 .8 0 .8.4 1 .7 0 1.8 0 2.5.6.5.3 1 0 1.1-.6l.1-2.1z"/>
</g>
<use xlink:href="#a" width="100%" height="100%" x="-600" transform="scale(-1 1)"/>
<g stroke="none">
<path d="M328.5 286.6c0 1.2.2 2.2 1 3.1a19 19 0 0 0-13.8 1.1c-1.8.8-4-1-1.9-2.7 3-2.3 9.7-1 14.7-1.5zm-57.5 0a7 7 0 0 1-.4 3c4.4-1.7 9.1-.2 13.6 1.6 3 1.3 3.3-1 2.8-1.7a6.5 6.5 0 0 0-5-2.9h-11zm3.8-21.7c-1.3-.5-2.7 0-4 1.4-4.3 4.2-9.4 8.3-13.5 11.6-1.5 1.3-3 3.7 3.4 6 .3.2 5 2 8 2 1.3 0 1.3 1.8 1 2.3-.5 1-.1 1.4-1.1 2.3-1.1 1 0 2.1 1 1.3 3.6-3.2 9.6-1.1 15.3.7 1.4.4 3.8.3 3.8-1.6 0-2 1.5-3.4 2.4-3.5 2.4.4 14 .5 17.5.1 2-.3 2.2 2.9 3.3 4 .8.9 3.7 1.1 5.8.2 4-1.8 10-1.8 12.5 0 1 .7 1.9 0 1.3-.7-.8-1-.7-1.6-1.1-2.4-1-2-.2-2.4.8-2.5 11-1.5 14.6-5.2 11.2-8.3-4.4-3.8-9.2-7.7-13.4-12.2-1.2-1.2-2-1.7-4.3-.7a66.5 66.5 0 0 1-25.3 5.9 76 76 0 0 1-24.6-5.8z"/>
<path fill="#bd6b00" d="m326.6 265.5-1.6.4c-9 3.2-17.2 5.4-25.7 5.4-8.3 0-17-2.4-24.9-5.6a2.3 2.3 0 0 0-1.5 0c-.5.1-1 .4-1.3.7a115.5 115.5 0 0 1-11.8 10.3c-.7.5-.6 1.8.5 2.2 8.3 3 16.4 8.5 39.6 8.3 23.5-.2 31.8-5.6 39.2-8.1.5-.2 1-.5 1.3-1a1 1 0 0 0 .1-.8 2 2 0 0 0-.6-.8c-4.3-3.5-8.8-6.3-11.8-10.4-.3-.5-.9-.6-1.5-.5zm0 .5c.5 0 1 0 1.1.3 3 4.3 7.7 7 11.9 10.5l.4.7a.5.5 0 0 1 0 .4c-.1.3-.6.6-1 .7-7.6 2.6-15.7 8-39 8.2-23.2.2-31.2-5.3-39.5-8.3-.8-.4-.7-1.2-.4-1.4 4.2-3.2 8.2-6.8 11.8-10.4a2.5 2.5 0 0 1 1.1-.6h1.2a68 68 0 0 0 25 5.6c8.7 0 17-2.2 26-5.3a6.7 6.7 0 0 1 1.5-.4z"/>
<path d="M269.7 114.6c0-1.4 2-1.5 1.8.4-.3 2.3 4.5 8.3 4.9 12 .3 2.5-1.5 4.6-3.2 6a6.6 6.6 0 0 1-6.8.5c-.9-.8-1.7-3.3-1-4.3.2-.3 1.3 3.7 3.7 3.7 3.3 0 6-2.5 6-4.7.2-3.8-5.3-9.8-5.4-13.6zm9.5 9.4c.6-.4 1.4 1.3.8 1.7-.5.3-1.5-1.3-.8-1.8zm1.5-3.5c-.3.2-.8 0-.7-.2a12 12 0 0 1 3.6-3.3c.4-.2 1 .4.8.7a11 11 0 0 1-3.7 2.8zm12.6-10c.3-.6 2.1-1.3 2.6-1.7.4-.5.6.4.4.7-.3.7-1.9 1.7-2.6 1.8-.3 0-.6-.4-.4-.7zm4.3.3a8.3 8.3 0 0 1 2.5-3.4c.5-.3 1.3 0 1.1.4a9 9 0 0 1-2.9 3.3c-.3.3-.8 0-.7-.3zm-3.7 2.7c-.3.2-.1.7.1.8.6.2 1.5.2 2 0 .6-.4.3-2.9-.5-1.6-.6.8-1 .6-1.6.8zm-7.3 5.6c-1.3-1 .4-2.4 1.7-1.4 2.7 2-4 9.8-7.6 13.4-.7.7-1.3-1-.4-1.9a33.7 33.7 0 0 0 6.7-7.6c.4-.5.7-1.6-.4-2.5zm15.3-6.6c.1-1-1.6 0-1.6-1.3 0-.7 1.9-1.2 2.7-.4 1.3 1.4.3 3.7-2 3.9-1.8 0-5 2.7-4.5 3.2.5.7 5.4 1.1 8.3.7 1.8-.3 1.4 1.3-.4 1.5-1.8.2-3.2 0-4.8.6-2 .5-2.8 3-3.9 4-.2.2-.8-.8-.6-1.2.8-1.2 2-3 3.4-3.6.8-.3-2.4-.4-3.4-.7-.8-.2-.6-1.3-.3-1.9.4-.8 3.4-3.9 4.7-3.8 1.1 0 2.3-.3 2.4-1zm5 .2c.6-.5 1-1.3 1.5-1.8.3-.3.9 0 .8.8-.1.7-1 1.2-1.5 1.7-.5.3-1-.4-.7-.7zm6.5-2.3c.9 0 1 1.6.2 1.8-.6.2-1-1.7-.2-1.8zm-2.1 5c0 1.5.7 1.4 2 1.3 1.3 0 2.4 0 2.4-1.2 0-1.3-.7-2.5-1-1.6-.1.8-.3 2.2-.8 1.6-.4-.5-.2-.6-1 .2-.5.5-.5-.2-.8-.6-.2-.3-.8.2-.8.4zm-9.2 7.2c-.3 1.9 0 4.5.9 4.5 1.2 0 3.6-4 4.8-6.2.7-1.2 1.8-1.4 1.3-.1-.7 1.9-.6 6 0 7.2.4.6 3-.6 3.4-1.5.8-1.7.1-4.8.4-6.7.1-1.2 1.3-1.5 1.2-.3a75.6 75.6 0 0 0-.1 7.5c0 1 2.9 2.4 3.3-.6.2-1.8 1.2-3.7 0-5.7-.8-1.3 1.1-1.2 2.1.6.7 1.2-.6 3.2-.5 4.7 0 2.4-1.8 3.8-3.1 3.8-1.2 0-2-1.5-3-1.5s-2.2 1.7-3 1.6c-3.6-.2-1.7-5.3-2.8-5.4-1.2 0-2.5 5-4 4.9-1.4-.2-3-4.2-2.3-5.8.5-1.6 1.5-2 1.4-1zm16.9-8c-1.7-1 0-3.7.9-2.8 1.6 2 3.2 6.5 4.4 6.9.7.2.6-3.4 1.1-5 .4-1.3 1.8-.9 1.6.7-.1.5-2 6.4-1.8 6.6a47.1 47.1 0 0 1 3.3 7.8c.3 1.2-1.1.4-1.3.2-.9-1.4-2.4-6.5-2.4-6.2l-1.7 7.7c-.2 1-1.7.8-1.3-1 .3-1.4 2.3-8.3 2.2-8.6a17.2 17.2 0 0 0-5-6.3z"/>
<path d="M322 131.2c-.4 0-1.2 1 1.2 1.5 3.1.6 6.6-.5 7.6-3.6 1.3-3.7 2-7.2 2.7-8.5.8-1.5 1.8-1.4 1-3.6-.5-1.7-1.5-1.2-1.7-.3-.5 2.3-2.6 10-3.3 11.3-1.2 2.6-3.7 3.6-7.5 3.2z"/>
<path d="M328.4 119c-.4-.7-1.2 0-1 .7a1.2 1.2 0 0 0 1.2 1c.7 0 2.2.1 2.2-1 0-.8-.7-1.5-1.1-.6-.5.8-1 .7-1.3 0zm.7-3c-.2.2 0 1.1.3 1a7 7 0 0 0 3.3-.8c.2-.2.1-.7-.2-.7-1 0-2.6 0-3.4.5zm8.8 2.3c.8-1.2 2.8-1.3 2 .4a614.3 614.3 0 0 1-6.3 12.3c-.8 1.4-1.4.7-.8-.4.7-1.4 4.9-12 5.1-12.3z"/>
<path d="M330.2 133c-.2-.8-1.5-2-1.3.2.2 3.8 5.5 2.6 7 1.3s.3 4.3 2.2 4.9c1 .3 3-1.1 4-2.4 2.7-3.5 4.5-8.6 7-12 1-1.4-.5-2.4-1-1.3-2.4 3.8-5.2 11.6-8.3 13.6-2.5 1.6-1.7-2-1.8-3.2-.1-.8-1.1-2-2.4-.9a5.5 5.5 0 0 1-3.7 1.2c-.7 0-1.4 0-1.7-1.4z"/>
<path d="M339.6 126c0-.3-1.1-.4-1 .7 0 .8 1 1 1.1 1 1.5-1.2-.3-.6-.1-1.8zm-2.3 4.4c-.3 0-.6 1 .2 1.1l3.9-.2c.4 0 .6-.9-.4-.8-1.2 0-2.7-.3-3.7 0zm-62-16.6c.5 0 1.6 1.4 1.5 1.9 0 .2-1.2 0-1.5-.3-.3-.3-.2-1.6 0-1.6zm-5.3 10.4c-1 .6.2 1.7 1 1.2 2.8-1.9 7-3.8 8-7.5.3-1.2 1.4-3.1 2.5-3.5 1-.5 2.6 1.9 3.6 0 .6-1 2.7.7 3.2-.4.6-1.3.3-2 .3-3.4 0-.8-.7-1-1.2.3-.2.6 0 1.2-.1 1.6-.2.2-.6.4-1 .2-.2-.2 0-.7-.6-1-.2 0-.6-.1-.8.2-.7 1.3-1 2.5-2.1 1-.9-1-1.4-3.1-2-.3-.2 1-1.7 2.4-2.6 2.4-1.1 0-.8-3-3.2-2.5-1.3.3-1.2 2.7-1 3.5.3 1.3 4 .4 3.7 1.2-.6 2.7-4.4 5.4-7.7 7zm-22.7 13.2c-.1.5.5 1.7 1.1 1.8.6 0 1-1.3.8-1.8-.2-.3-1.8-.3-1.9 0zm3.3 4.9c-.4-.4-1.6.7-.6 1.5.5.5 2.5 1.1 3 .2.8-1.2-.7-5.5 0-6 .5-.5 2.8 2.8 4 3 2.7.4 2-4.6 5-4.2 1.9.2 2.1-2.2 1.8-3.8-.2-1.5-2.6-3.6-3.7-4.6-1.4-1.2-2.1 1-1.2 1.6 1.2 1 3.3 2.9 3.6 4.1.1.6-1.4 1.8-2 1.5-1.4-.8-2.6-4-3.8-4.7-.4-.2-1.4.3-1 1.3.6 1.1 3 2.7 3.1 3.9.1 1-1 3.2-1.8 3.2-.9 0-3-2.7-3.7-4-.4-.5-1.5-.5-1.7.4a22 22 0 0 0 .5 5.5c.2 1.6-.9 1.7-1.5 1.1zm-4-8.6c-.4.4.8 1.2 1 1 .4-.4 2.1-2.3 1.8-3-.3-.6-2.6-2-3-1.3-.7 1.1 2.2 1.7 1.7 2a7 7 0 0 0-1.5 1.3zm4.1-8.4s.8 2.5 1.4 1.4c.4-.7-1.4-1.4-1.4-1.4zm1.2 4c-.2 0-1 .7-.5 1 .8.4 2.9.8 2.4-.7-.3-.9 3.2 0 2.3-2.4a3.7 3.7 0 0 0-1.7-1.7c-.4 0-1.5.5-.8.9.5.2 2 1.1 1.5 1.7-.7.6-1.1-.3-1.9-.1-.4 0-.1 1.2-.4 1.5 0 .2-.7-.4-.9-.3zm5.5-9.5a3.5 3.5 0 0 0-1.2 2c0 .2.3.6.5.5a3.2 3.2 0 0 0 1.2-1.9c0-.3-.2-.8-.5-.6zm2.8-.3c-.8-1 1-2.6 1.7-.5.5 1.3 5.5 7.9 6.5 10.1.8 1.5 0 2.1-.9 1-2.5-3.2-4.6-7.2-7.3-10.6zm5.2.1c.9-1 2.7-3 2.2-4-.4-1-1.5-1-1.7-.7-1 1.3.8 1 .5 1.4-.5 1-1 1.6-1.3 2.6-.1.3.1.9.3.7zm77.8 3.2c-.7-.5.6-3 1.5-2 2.3 2.7 3.4 11.6 4.1 18.3 0 0-1 .9-1 .7 0-3.5-1.5-14.4-4.6-17zm-53.1-8.6c-.8-1.8 1.1-2.4 1.4-1.2 1.3 5.8 4.5 10.2 7 14.1.7 1.2 0 2-1.7.8-1.2-.8-2.5-3.9-3-4-1.2-.2-3.8 5-9.1 3.5-1.4-.4-1.3-4.5-1.4-6.3 0-.9 1-1 1 0 0 1.7 0 5.2 2.1 5.4 1.8 0 5.6-2.4 6.4-4.4.8-2-1.9-5.9-2.7-8z"/>
<path d="M344.6 138.4c.4-1.2 6.1-10.8 6.9-12.9.4-1 2 1.8.4 3.3-1.4 1.2-5.5 8-6.3 10.4-.4 1-1.4.5-1-.8z"/>
<path d="M354.3 129.3c1-4 3.6.6 1.3 2.8-3.4 3.4-4.5 9.9-10 10.9-1.4.3-4-.7-4.8-1.3-.3-.2.2-1.6 1.1-.9 1.3 1 4.1 1.3 5.6.1a25.4 25.4 0 0 0 6.8-11.6zm-57 12.7c-.3.3-1 .3-1.1.7-.3 1.4 0 2.2-.3 3.6s-1.3 1.4-1.2.3c0-1.4 1.3-3.5.4-3.6-.6-.1-1-.9-.4-1.3 1.1-.7 1.7-.6 2.4-.4.3.1.4.5.2.7z"/>
<path d="M296.5 140c-1.4 1.4-2.8 1.9-4.1 3.5-.6.6-.5 1.5-.9 2.4-.3.9-1.4 1-1.7.9-.5-.4-.4-2-1-1.2-.6.9-.9 2-1.7 2-.7 0-2-1.5-1.3-1.5 2.3-.3 2.2-2 3-2.2 1-.1 1 1.5 1.7 1.2.4-.2.7-2.1 1.2-2.6 1.5-1.6 2.7-2.4 4.3-3.6.7-.6 1.3.5.5 1.2zm5.3 5c-1.2.2-1 1.7-.6 1.8.5.3 1.4.4 1.7-1.3.2-.7.3 3.5 1.8 1.9 1-1 3.1.2 4-1 .7-.9 1-1.5.4-2.7-.2-.3-1-.2-1 .7 0 .8-.5 1.7-1.3 1.6-.4-.1.2-1.9-.2-2.4a.5.5 0 0 0-.7 0c-.3.4.3 2.2-.6 2.4-1.2.2-.6-1.2-1-1.4-1.7-.8-1.8.2-2.5.3zm9-3c.9-.2.6-.2 2-1.3.5-.4.6.8.5 1.3 0 .7-1 .2-1.3.9-.4.9-.2 3-.4 3.8 0 .4-.8.4-.8 0-.2-1 .1-2 0-3.3 0-.4-.5-1.1 0-1.3zm-5-2.5c-.2.9-.2 1.6-.2 2.3 0 .5 1 .2 1 .1 0-.8.2-2 0-2.3-.2-.1-.7-.3-.8-.1z"/>
<path d="m299.5 130.2-1.4 5.6-2-3.8v3.9l-4.4-5.2 1.5 5.6-4-3.4 2.2 3.8-7-4.5 4.4 5.2-5.6-2.8 4 3.4-9-3.4 8.7 4.3a29 29 0 0 1 12.6-2.6c4.9 0 9.3 1 12.5 2.6l8.8-4.3-9 3.4 4-3.4-5.5 2.8 4.3-5.2-7 4.5 2.2-3.8-4 3.3 1.5-5.5-4.3 5.2V132l-2 3.8-1.5-5.6z"/>
</g>
</g>
<path fill="#fff" d="m249 299.7-.1 2.2h-.4v-1.5a7.4 7.4 0 0 0-.4-1.3 5.8 5.8 0 0 0-.5-1 11.3 11.3 0 0 0-.8-1.1l.7-1.8a5.3 5.3 0 0 1 1.1 2 7.5 7.5 0 0 1 .5 2.5m5.5-3.4c0 .6-.1 1-.3 1.2-.2.3-.6.5-1 .6l.2 1.1a5.3 5.3 0 0 1 0 1.7v1h-.4v-1a4.4 4.4 0 0 0-.2-.8 28.8 28.8 0 0 0-.3-.8 8.4 8.4 0 0 0-.6-1.2l-.8-1.3.5-1.6.8.9.7.2c.7 0 1-.3 1-1h.3a8 8 0 0 0 0 .5v.5m5.1 3.9-.4 1.7-.6-.6a3.5 3.5 0 0 1-.3-1 9.9 9.9 0 0 1 0-1.4 3 3 0 0 1-.9.1c-.4 0-.7 0-1-.3a1 1 0 0 1-.4-.8c0-.7.2-1.3.6-1.8.3-.6.7-.9 1.2-.9.3 0 .6.1.7.3l.3.8v1.6c0 .7 0 1.2.2 1.4 0 .3.3.5.6.9m-1.5-2.9c0-.4-.3-.6-.7-.6a.8.8 0 0 0-.4.1c-.2.1-.2.2-.2.3 0 .2.2.3.8.3a2.2 2.2 0 0 0 .5 0m6.9 2.3-.2 2.1c-.4-.3-.8-.8-1.1-1.5a20 20 0 0 1-1.1-3.3 41.3 41.3 0 0 1-.8 3l-.6 1.3a2 2 0 0 1-.6.6v-2l.8-1.2a6 6 0 0 0 .6-1.4 16 16 0 0 0 .3-2h.4l.7 2a6.7 6.7 0 0 0 1.6 2.4"/>
<path fill="#bf0000" d="M280.5 319.2c.3.3.5.6.6 1l.2 1.2h-.6a6.2 6.2 0 0 0-.7-1.1 15.2 15.2 0 0 0-1-1l-1.3-1.2a27.3 27.3 0 0 0-1.6-1.3l-.5-.4-.2-.6a9 9 0 0 1-.1-1.3l2.1 1.7a35.3 35.3 0 0 1 2 1.8l1.1 1.2m-7.6-4.6-.1 1.6-2.5-.1.2-1.6h2.4m6.7 7.1-6 1.9-1.2-1.6 5.2-1.5a6.3 6.3 0 0 0-.5-.7l-.7-.5a1.1 1.1 0 0 1-.4.8 2 2 0 0 1-.8.5 2.7 2.7 0 0 1-1.4 0c-.5 0-.8-.3-1-.6a3.1 3.1 0 0 1-.5-1.7c0-.8.2-1.3.6-1.5.6-.2 1.4 0 2.5.5a6.5 6.5 0 0 1 2.4 2l1.8 2.4m-4.7-3.2a3.1 3.1 0 0 0-.6-.2.9.9 0 0 0-.5 0 .5.5 0 0 0-.4.3.4.4 0 0 0 0 .4l.4.2h.5a.9.9 0 0 0 .3-.3l.3-.4m-6.4-1.2-.4 1.6-2.5-.3.4-1.5 2.5.2m6 6-1.4.4a4.2 4.2 0 0 1-1.4 0 2.8 2.8 0 0 1-1.2-.3c-.2.4-.6.7-1.1 1a5.9 5.9 0 0 1-1.3.4l-1 .3-.8-1.6 1-.2 1-.3.6-.4a4.7 4.7 0 0 0-.7-.4 1 1 0 0 0-.6-.1.3.3 0 0 0-.2 0 .5.5 0 0 0 0 .3h-.5c-.4-.7-.5-1.2-.3-1.6.3-.4.8-.7 1.6-.9.8-.2 1.5-.2 2.1 0 .6 0 1 .3 1.2.6.1.2.2.4.1.6 0 .2 0 .5-.3 1a1.6 1.6 0 0 0 1 0l1.3-.3.8 1.6m-6.4 1.5-1.3.2c-.7 0-1.3 0-1.8-.4a4.3 4.3 0 0 1-1.3-2l-.6-1.7a2 2 0 0 0-.6-1l-.8-.3.5-1.7 1.1.9.8 1.3.4 1.2a5 5 0 0 0 1 1.7c.2.3.4.4.7.3l1.3-.2.6 1.7m-5.5-6-.9 1.5-2.3-.6.8-1.5 2.4.6m1.4 6.7-6 .5-.3-1.6 5-.5a1.9 1.9 0 0 0-.6-.7 6 6 0 0 0-.8-.5l.5-1.5c.5.3 1 .6 1.2 1 .2.4.5 1 .6 1.7l.4 1.6m-4.8.8a13 13 0 0 1-1.8-.2 8.3 8.3 0 0 1-1.3-.4 4.5 4.5 0 0 1-1 .3h-3c-.5 0-.8 0-1-.2l-.6-.8a3.3 3.3 0 0 1-1.3.7 4 4 0 0 1-1.3.2h-1.4l.2-1.8 1.3.1c.7 0 1.3 0 1.7-.3.6-.3 1-.8 1-1.4h.6a22.9 22.9 0 0 0-.1 1c0 .3 0 .5.3.6l.7.2h2.9c.4-.2.6-.5.7-1l.1-.3a2.6 2.6 0 0 1 .4-.2l.4-.1v.6l-.3.8a6.4 6.4 0 0 0 1.7.4c0-.1 0-.3-.2-.5 0-.3-.2-.4-.2-.5a.4.4 0 0 1 .1-.2l.3-.2.8-.7.3.7c0 .2.1.5 0 .8l-.1 2.4m-9-7-1.5 1-1.1-.6-1.1.8-1.5-.9 1.4-1 1.2.7 1.1-.9 1.5 1m-2.4 6.4-5.8-1 .7-1.6 4.8.8a1.3 1.3 0 0 0 0-.8 4 4 0 0 0-.5-.6l1.3-1.3c.3.4.5.8.5 1.2 0 .4 0 1-.4 1.7l-.6 1.6m-4.9-.8-1.2-.3c-.7-.1-1.1-.4-1.2-.9-.1-.5.1-1.2.7-2.2l1-1.7.2-.9-.3-.6 1.8-1.2.2 1.1c0 .4-.2.9-.6 1.4l-.6 1.2a4 4 0 0 0-.7 1.7c0 .3.1.5.4.5l1.2.3-.9 1.6m-3-6.3-2 .9-1.4-1.4 2-.8 1.5 1.3m-.9 5.3a4 4 0 0 1-1.2 1.1c-.4.3-.9.4-1.4.5a7 7 0 0 1-1.9 0 11.8 11.8 0 0 1-2.2-.6 6 6 0 0 1-2.7-1.6c-.5-.6-.5-1.2 0-1.8a5.6 5.6 0 0 1 1.5-1.3 18.8 18.8 0 0 1 3-1.2l.4.4c-1 .4-1.8.7-2.2 1a3.3 3.3 0 0 0-1 .7c-.3.4-.3.8.1 1.3a8.4 8.4 0 0 0 5 1.8c1 0 1.6-.3 1.9-.6l.4-.7.1-1.4 2-1.2-.1 1.2c-.1.4-.4.8-.8 1.3l-.9 1.1"/>
</svg>

After

Width:  |  Height:  |  Size: 21 KiB

View File

@@ -0,0 +1,14 @@
<svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-ag" viewBox="0 0 512 512">
<defs>
<clipPath id="a">
<path fill="#25ff01" d="M109 47.6h464.8v464.9H109z"/>
</clipPath>
</defs>
<g fill-rule="evenodd" clip-path="url(#a)" transform="translate(-120 -52.4) scale(1.1014)">
<path fill="#fff" d="M0 47.6h693V512H0z"/>
<path d="M1.5 48.2h690.9v196.2H1.5z"/>
<path fill="#0061ff" d="M128.3 232.1h458.5v103.4H128.3z"/>
<path fill="#e20000" d="M692.5 49.2v463.3H347L692.5 49.2zm-691.3 0v463.3h345.7L1.2 49.2z"/>
<path fill="#ffd600" d="m508.8 232.2-69.3-17.6 59-44.4-72.5 10.3 37.3-63-64.1 37.2 11.3-73.5-43.4 58-17.6-67.3-19.6 69.3-43.4-59 12.4 75.6-64.1-39.3 37.2 63-70.3-11.3 57.9 43.4-72.4 18.6h321.6z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 757 B

758
public/assets/images/flags/ai.svg Executable file
View File

@@ -0,0 +1,758 @@
<svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-ai" viewBox="0 0 512 512">
<path fill="#012169" d="M0 0h512v512H0z"/>
<path fill="#49497d" d="m384 212.7 2 2z"/>
<path fill="#0e0e6e" d="m386 212.7 2 2z"/>
<path fill="#262678" d="m379.9 214.7 2 2z"/>
<path fill="#808067" d="m382 214.7 2 2z"/>
<path fill="#58587b" d="m388 214.7 2 2z"/>
<path fill="#0e0e6e" d="m312.9 216.8 2 2z"/>
<path fill="#1b1b74" d="m375.9 216.8 2 2z"/>
<path fill="#6e6c70" d="m377.9 216.8 2 2z"/>
<path fill="#cc3" d="M316.5 220.4c0 52.5-6 111.6 33 152.7 8 8.4 23.4 27.7 36.5 27 13.7-.8 31.4-21.1 39.2-31 34-44.8 28.7-98.2 29.8-150.2-15.3 6.9-23 9.2-36.4 9-10 1-25.3-5.5-34.5-10-6 4-14.7 8.9-30.4 9.4-18 .8-23.8-2.3-37.2-7z"/>
<path fill="#99994e" d="m390 216.8 2 2z"/>
<path fill="#49497d" d="m392 216.8 2 2z"/>
<path fill="#0e0e6e" d="m455 216.8 2 2z"/>
<path fill="#a4a43d" d="m315 218.8 2 2z"/>
<path fill="#6e6c70" d="m317 218.8 2 2z"/>
<path fill="#3a3a7c" d="m319 218.8 2 2z"/>
<path fill="#1b1b74" d="m371.8 218.8 2 2z"/>
<path fill="#6e6c70" d="m373.8 218.8 2 2z"/>
<path fill="#a4a43d" d="m375.9 218.8 2 2z"/>
<path fill="#d0d045" d="m384 218.8 2 2z"/>
<path fill="#a4a43d" d="m392 218.8 2 2z"/>
<path fill="#8d8d5b" d="m394 218.8 2 2z"/>
<path fill="#3a3a7c" d="m396.2 218.8 2 2z"/>
<path fill="#262678" d="m448.9 218.8 2 2z"/>
<path fill="#53527c" d="m451 218.8 2 2z"/>
<path fill="#8d8d5b" d="m453 218.8 2 2z"/>
<path fill="#737370" d="m323 220.9 2 2z"/>
<path fill="#53527c" d="m325 220.9 2 2z"/>
<path fill="#1b1b74" d="m327 220.9 2 2z"/>
<path fill="#262678" d="m367.7 220.9 2 2z"/>
<path fill="#6e6c70" d="m369.8 220.9 2 2z"/>
<path fill="#a4a43d" d="m371.8 220.9 2 2z"/>
<path fill="#e5e59d" d="m382 220.9 2 2z"/>
<path fill="#fff" d="M320.6 226a509 509 0 0 0 4 88.2c4.9 15.4 4.2 23.9 11.3 33l99-.7c6-9.7 10.5-24.4 11-30.3 5.6-29.7 5.7-62.6 5.9-92a62 62 0 0 1-35.7 7.4 69 69 0 0 1-30.5-9.2c-9.5 5.6-12.8 8.2-28.4 8.9-12.2.6-22 1.6-36.6-5.2z"/>
<path fill="#f2f1d7" d="m386 220.9 2 2z"/>
<path fill="#d9d868" d="m388 220.9 2 2z"/>
<path fill="#a4a43d" d="m396.2 220.9 2 2z"/>
<path fill="#99994e" d="m398.2 220.9 2 2z"/>
<path fill="#49497d" d="m400.2 220.9 2 2z"/>
<path fill="#0e0e6e" d="m402.2 220.9 2 2z"/>
<path fill="#3a3a7c" d="m442.9 220.9 2 2z"/>
<path fill="#667" d="m444.9 220.9 2 2z"/>
<path fill="#99994e" d="m446.9 220.9 2 2z"/>
<path fill="#a4a43d" d="m448.9 220.9 2 2-2-2m-121.8 2 2 2z"/>
<path fill="#99994e" d="m329.2 222.9 2 2z"/>
<path fill="#6e6c70" d="m331.2 222.9 2 2z"/>
<path fill="#49497d" d="m333.2 222.9 2 2z"/>
<path fill="#1b1b74" d="m335.2 222.9 2 2-2-2m26.4 0 2 2z"/>
<path fill="#53527c" d="m363.6 222.9 2 2-2-2z"/>
<path fill="#8d8d5b" d="m365.7 222.9 2 2z"/>
<path fill="#a4a43d" d="m367.7 222.9 2 2z"/>
<path fill="#e5e59d" d="m377.9 222.9 2 2z"/>
<path fill="#fbfaf2" d="m379.9 222.9 2 2z"/>
<path fill="#f2f1d2" d="m390 222.9 2 2z"/>
<path fill="#d9d868" d="m392 222.9 2 2z"/>
<path fill="#a4a43d" d="m402.2 222.9 2 2z"/>
<path fill="#6e6c70" d="m404.3 222.9 2 2z"/>
<path fill="#3a3a7c" d="m406.3 222.9 2 2z"/>
<path fill="#0e0e6e" d="m432.7 222.9 2 2z"/>
<path fill="#32327b" d="m434.7 222.9 2 2z"/>
<path fill="#58587b" d="m436.8 222.9 2 2z"/>
<path fill="#808067" d="m438.8 222.9 2 2z"/>
<path fill="#a4a43d" d="m442.2 223.5 1.3.7z"/>
<path fill="#dddc7a" d="m319 224.9 2 2z"/>
<path fill="#d0d045" d="m321 224.9 2 2z"/>
<path fill="#a4a43d" d="m336.6 225.5 1.4.7z"/>
<path fill="#808067" d="m339.3 224.9 2 2z"/>
<path fill="#667" d="m341.3 224.9 2 2z"/>
<path fill="#58587b" d="m343.4 224.9 2 2z"/>
<path fill="#49497d" d="m345.4 224.9 2 2z"/>
<path fill="#737370" d="m357.6 224.9 2 2z"/>
<path fill="#99994e" d="m359.6 224.9 2 2z"/>
<path fill="#a4a43d" d="m361.6 224.9 2 2z"/>
<path fill="#e5e59d" d="m373.8 224.9 2 2z"/>
<path fill="#fbfaf2" d="m375.9 224.9 2 2z"/>
<path fill="#f2f1d2" d="m394 224.9 2 2z"/>
<path fill="#d9d868" d="m396.2 224.9 2 2z"/>
<path fill="#a4a43d" d="m407.6 225.5 1.4.7-1.3-.7z"/>
<path fill="#808067" d="m410.4 224.9 2 2z"/>
<path fill="#667" d="m412.4 224.9 2 2z"/>
<path fill="#58587b" d="m414.4 224.9 2 2z"/>
<path fill="#3a3a7c" d="m416.5 224.9 2 2z"/>
<path fill="#58587b" d="m425.9 225.5 1.4.7z"/>
<path fill="#737370" d="m428.6 224.9 2 2z"/>
<path fill="#99994e" d="m430.6 224.9 2 2-2-2z"/>
<path fill="#a4a43d" d="m432.7 224.9 2 2z"/>
<path fill="#dddc7a" d="m448.9 224.9 2 2z"/>
<path fill="#d0d045" d="m451 224.9 2 2z"/>
<path fill="#f2f1d7" d="m323 226.9 2 2z"/>
<path fill="#e0dea1" d="m325 226.9 2 2z"/>
<path fill="#dddc7a" d="m327 226.9 2 2z"/>
<path fill="#d9d868" d="m367.7 226.9 2 2z"/>
<path fill="#e5e3af" d="m369.8 226.9 2 2z"/>
<path fill="#f6f6e4" d="m398.2 226.9 2 2z"/>
<path fill="#e1e18c" d="m400.2 226.9 2 2z"/>
<path fill="#d4d456" d="m440.8 226.9 2 2z"/>
<path fill="#e1e18c" d="m442.9 226.9 2 2z"/>
<path fill="#eeedc1" d="m444.9 226.9 2 2z"/>
<path fill="#f2f1d2" d="m331.2 228.9 2 2z"/>
<path fill="#e0dea1" d="m333.2 228.9 2 2z"/>
<path fill="#dddc7a" d="m335.2 228.9 2 2z"/>
<path fill="#d0d045" d="m337.3 228.9 2 2z"/>
<path fill="#dddc7a" d="m361.6 228.9 2 2z"/>
<path fill="#e5e3af" d="m363.6 228.9 2 2-2-2z"/>
<path fill="#f6f6e4" d="m365.7 228.9 2 2z"/>
<path fill="#eeedc1" d="m404.3 228.9 2 2z"/>
<path fill="#e1e18c" d="m406.3 228.9 2 2z"/>
<path fill="#d4d456" d="m408.3 228.9 2 2z"/>
<path fill="#d9d868" d="m432.7 228.9 2 2z"/>
<path fill="#e1e18c" d="m434.7 228.9 2 2z"/>
<path fill="#eeedc1" d="m436.8 228.9 2 2z"/>
<path fill="#f6f6e4" d="m438.8 228.9 2 2z"/>
<path fill="#f2f1d7" d="m341.3 230.9 2 2-2-2z"/>
<path fill="#f2f1d2" d="m343.4 230.9 2 2-2-2z"/>
<path fill="#eeedc1" d="m345.4 230.9 2 2-2-2z"/>
<path fill="#f2f1d2" d="m354.9 231.6 1.3.7z"/>
<path fill="#fbfaf2" d="m357.6 230.9 2 2-2-2z"/>
<path fill="#fef8f1" d="m367.7 230.9 4 4v-4h-4z"/>
<path fill="#f2f1d7" d="m412.4 230.9 2 2-2-2z"/>
<path fill="#f2f1d2" d="m414.4 230.9 2 2-2-2z"/>
<path fill="#e5e3af" d="m416.5 230.9 2 2-2-2z"/>
<path fill="#e5e59d" d="m419.9 231.6 1.3.7-1.4-.7z"/>
<path fill="#e0dea1" d="m422.6 230.9 2 2-2-2z"/>
<path fill="#f2f1d2" d="m425.9 231.6 1.4.7z"/>
<path fill="#fbfaf2" d="m428.6 230.9 2 2-2-2z"/>
<path fill="#fef8f1" d="m363.6 233 2 2-2-2z"/>
<path fill="#fbbe66" d="m365.7 233 2 2z"/>
<path fill="#fbc477" d="m363.6 235 2 2-2-2z"/>
<path fill="#fcb144" d="m367.7 235 2 2z"/>
<path fill="#fe9f11" d="m363.6 237 2 2-2-2z"/>
<path fill="#fea522" d="m367.7 237 2 2z"/>
<path fill="#fae3c9" d="m361.6 239 2 2-2-2m8.2 0 2 2z"/>
<path fill="#fbead6" d="m379.9 239 2 2z"/>
<path fill="#f9d6aa" d="m382 239 2 2z"/>
<path fill="#fae3c9" d="m390 239 2 2z"/>
<path fill="#fef8f1" d="m392 239 2 2z"/>
<path fill="#f9d099" d="m361.6 241 2 2z"/>
<path fill="#fdab33" d="m369.8 241 2 2z"/>
<path fill="#fcf1e4" d="m373.8 241 2 2z"/>
<path fill="#fbc477" d="m375.9 241 2 2z"/>
<path fill="#fea522" d="m377.9 241 2 2z"/>
<path fill="#fcb755" d="m394 241 2 2z"/>
<path fill="#f9d6aa" d="m396.2 241 2 2z"/>
<path fill="#faca88" d="m361.6 243.2 2 2z"/>
<path fill="#fea522" d="m371.8 243.2 2 2-2-2m26.4 0 2 2z"/>
<path fill="#f8dcbb" d="m400.2 243.2 2 2z"/>
<path fill="#f6f6e4" d="m319 245.2 2 2z"/>
<path fill="#fbc477" d="m361.6 245.2 2 2z"/>
<path fill="#fbbe66" d="m402.2 245.2 2 2z"/>
<path fill="#f8dcbb" d="m404.3 245.2 2 2z"/>
<path fill="#faca88" d="m361.6 247.2 2 2z"/>
<path fill="#fcb755" d="m408.3 247.2 2 2z"/>
<path fill="#f8dcbb" d="m410.4 247.2 2 2z"/>
<path fill="#fef8f1" d="m359.6 249.3 2 2z"/>
<path fill="#fe9f11" d="m361.6 249.3 2 2z"/>
<path fill="#fdab33" d="m418.5 249.3 2 2z"/>
<path fill="#fcb144" d="m420.6 249.3 2 2z"/>
<path fill="#fbc477" d="m422.6 249.3 2 2z"/>
<path fill="#f9d6aa" d="m424.6 249.3 4 4z"/>
<path fill="#fef8f1" d="m426.6 249.3 2 2z"/>
<path fill="#fcb144" d="m359.6 251.3 2 2z"/>
<path fill="#fdab33" d="m388 251.3 2 2z"/>
<path fill="#fbc477" d="m390 251.3 2 2zm8 0 2.2 2-2-2z"/>
<path fill="#fea522" d="m400.2 251.3 2 2z"/>
<path fill="#fae3c9" d="m357.6 253.3 2 2z"/>
<path fill="#fcb144" d="m384 253.3 2 2z"/>
<path fill="#fae3c9" d="m386 253.3 2 2z"/>
<path fill="#f8dcbb" d="m402.2 253.3 2 2z"/>
<path fill="#fdab33" d="m404.3 253.3 2 2z"/>
<path fill="#fe9f11" d="m416.5 253.3 2 2z"/>
<path fill="#fcb755" d="m418.5 253.3 2 2z"/>
<path fill="#f9d099" d="m420.6 253.3 2 2z"/>
<path fill="#fbead6" d="m422.6 253.3 2 2z"/>
<path fill="#fcb144" d="m357.6 255.3 2 2z"/>
<path fill="#fbbe66" d="m382 255.3 2 2z"/>
<path fill="#f9d099" d="m406.3 255.3 2 2z"/>
<path fill="#fbead6" d="m414.4 255.3 2 2z"/>
<path fill="#fcf1e4" d="m355.6 257.4 2 2z"/>
<path fill="#fbbe66" d="m379.9 257.4 2 2z"/>
<path fill="#f9d099" d="m408.3 257.4 2 2z"/>
<path fill="#fae3c9" d="m414.4 257.4 2 2z"/>
<path fill="#fbc477" d="m355.6 259.4 2 2z"/>
<path fill="#fcb144" d="m377.9 259.4 2 2-2-2m32.5 0 2 2z"/>
<path fill="#fbbe66" d="m414.4 259.4 2 2z"/>
<path fill="#f6f6e4" d="m319 261.4 2 2z"/>
<path fill="#fea522" d="m355.6 261.4 2 2z"/>
<path fill="#fbead6" d="m377.9 261.4 2 2z"/>
<path fill="#fcf1e4" d="m410.4 261.4 2 2z"/>
<path fill="#fef8f1" d="m416.5 261.4 2 2z"/>
<path fill="#fcf1e4" d="m353.6 263.5 2 2z"/>
<path fill="#fbbe66" d="m375.9 263.5 2 2z"/>
<path fill="#faca88" d="m412.4 263.5 2 2z"/>
<path fill="#f9d099" d="m416.5 263.5 2 2z"/>
<path fill="#f9d6aa" d="m353.6 265.5 2 2z"/>
<path fill="#fcf1e4" d="m375.9 265.5 2 2z"/>
<path fill="#fae3c9" d="m386 265.5 2 2z"/>
<path fill="#fea522" d="m388 265.5 2 2z"/>
<path fill="#fcb144" d="m390 265.5 2 2z"/>
<path fill="#f9d6aa" d="m392 265.5 2 2z"/>
<path fill="#fef8f1" d="m412.4 265.5 2 2z"/>
<path fill="#fea522" d="m414.4 265.5 2 2z"/>
<path fill="#fdab33" d="m416.5 265.5 2 2z"/>
<path fill="#faca88" d="m353.6 267.5-2.1 6 2-6z"/>
<path fill="#fea522" d="m373.8 267.5 2 2z"/>
<path fill="#fef8f1" d="m375.9 267.5 2 2z"/>
<path fill="#f9d099" d="m386 267.5 2 2z"/>
<path fill="#fdab33" d="m394 267.5 2 2z"/>
<path fill="#fae3c9" d="m396.2 267.5 2 2z"/>
<path fill="#f8dcbb" d="m414.4 267.5 2 2z"/>
<path fill="#f90" d="m416.5 267.5 2 2z"/>
<path fill="#fbead6" d="m419.2 268.9.6 1.3z"/>
<path fill="#fea522" d="m377.9 269.5 2 2z"/>
<path fill="#fbbe66" d="m379.9 269.5 2 2z"/>
<path fill="#faca88" d="m382 269.5 2 2z"/>
<path fill="#fcb144" d="m384 269.5 2 2z"/>
<path fill="#fae3c9" d="m386 269.5 2 2z"/>
<path fill="#fe9f11" d="m388 269.5 2 2z"/>
<path fill="#fdab33" d="m398.2 269.5 2 2z"/>
<path fill="#fbc477" d="m400.2 269.5 2 2z"/>
<path fill="#faca88" d="m402.2 269.5 2 2z"/>
<path fill="#f9d6aa" d="m404.3 269.5 2 2z"/>
<path fill="#fae3c9" d="m407.6 270.2 1.4.7-1.3-.7z"/>
<path fill="#fef8f1" d="m410.4 269.5 2 2z"/>
<path fill="#fbc477" d="m416.5 269.5 2 2z"/>
<path fill="#fef8f1" d="m329.2 271.6 2 2z"/>
<path fill="#fcf1e4" d="m331.2 271.6 2 2z"/>
<path fill="#fcb755" d="m384 271.6 2 2z"/>
<path fill="#fbead6" d="m388 271.6 2 2z"/>
<path fill="#fea522" d="m390 271.6 2 2z"/>
<path fill="#fe9f11" d="m406.3 271.6 2 2z"/>
<path fill="#fcb144" d="m408.3 271.6-2 4z"/>
<path fill="#fe9f11" d="m412.4 271.6 2 2z"/>
<path fill="#fbbe66" d="m414.4 271.6 2 2z"/>
<path fill="#fcf1e4" d="m416.5 271.6 2 2z"/>
<path fill="#fae3c9" d="m329.2 273.6 2 2z"/>
<path fill="#fe9f11" d="m331.2 273.6 4 4z"/>
<path fill="#fbead6" d="m333.2 273.6 2 2zm18.3 0 2 2z"/>
<path fill="#fae3c9" d="m353.6 273.6 2 2z"/>
<path fill="#fe9f11" d="m371.8 273.6 2 2z"/>
<path fill="#fbc477" d="m373.8 273.6 2 2z"/>
<path fill="#fea522" d="m375.9 273.6 2 2z"/>
<path fill="#fbc477" d="m382 273.6 2 2z"/>
<path fill="#fef8f1" d="m384 273.6 2 2z"/>
<path fill="#fbc477" d="m392 273.6 2 2z"/>
<path fill="#fff" d="m408.3 273.6 2 2z"/>
<path fill="#fdab33" d="m410.4 273.6 2 2z"/>
<path fill="#fbc477" d="m418.5 273.6 2 2z"/>
<path fill="#fef8f1" d="m329.2 275.6 2 2z"/>
<path fill="#fbead6" d="m335.2 275.6 2 2z"/>
<path fill="#f9d6aa" d="m345.4 275.6 2 2z"/>
<path fill="#fe9f11" d="m355.6 275.6 2 2z"/>
<path fill="#f9d6aa" d="m358.9 276.3 1.4.7z"/>
<path fill="#f8dcbb" d="m371.8 275.6 2 2z"/>
<path fill="#fcf1e4" d="m377.9 275.6 2 2z"/>
<path fill="#f9d6aa" d="m394 275.6 2 2z"/>
<path fill="#fdab33" d="m408.3 275.6 2 2z"/>
<path fill="#fcb755" d="m420.6 275.6 2 2z"/>
<path fill="#fef8f1" d="m422.6 275.6 2 2z"/>
<path fill="#53527c" d="m312.9 277.7 2 2z"/>
<path fill="#fcb755" d="m331.2 277.7 2 2z"/>
<path fill="#fea522" d="m335.2 277.7 2 2z"/>
<path fill="#fbead6" d="m343.4 277.7 2 2z"/>
<path fill="#fe9f11" d="m347.4 277.7 2 2z"/>
<path fill="#fcf1e4" d="m349.5 277.7 2 2z"/>
<path fill="#fbbe66" d="m355.6 277.7 2 2z"/>
<path fill="#fbc477" d="m357.6 277.7 2 2z"/>
<path fill="#fbbe66" d="m359.6 277.7 2 2z"/>
<path fill="#fea522" d="m369.8 277.7 2 2z"/>
<path fill="#f9d6aa" d="m396.2 277.7 2 2z"/>
<path fill="#fcb144" d="m422.6 277.7 2 2z"/>
<path fill="#8d8d5b" d="m455 277.7 2 2z"/>
<path fill="#e5e3af" d="m319 279.7 2 2z"/>
<path fill="#f8dcbb" d="m331.2 279.7 2 2z"/>
<path fill="#fdab33" d="m337.3 279.7 2 2z"/>
<path fill="#fe9f11" d="m343.4 279.7 2 2z"/>
<path fill="#faca88" d="m347.4 279.7 2 2z"/>
<path fill="#fcf1e4" d="m355.6 279.7 2 2z"/>
<path fill="#f9d099" d="m369.8 279.7 2 2-2-2m28.4 0 2 2z"/>
<path fill="#fbbe66" d="m424.6 279.7 2 2z"/>
<path fill="#fea522" d="m333.2 281.7 2 2z"/>
<path fill="#fdab33" d="m339.3 281.7 2 2z"/>
<path fill="#fea522" d="m341.3 281.7 2 2z"/>
<path fill="#fe9f11" d="m345.4 281.7 2 2z"/>
<path fill="#fef8f1" d="m347.4 281.7 2 2z"/>
<path fill="#fbbe66" d="m357.6 281.7 2 2z"/>
<path fill="#fef8f1" d="m369.8 281.7 2 2z"/>
<path fill="#fbbe66" d="m400.2 281.7 2 2z"/>
<path fill="#f9d099" d="m426.6 281.7 2 2z"/>
<path fill="#f9d6aa" d="m333.2 283.8 2 2z"/>
<path fill="#f9d099" d="m345.4 283.8 2 2z"/>
<path fill="#fcf1e4" d="m357.6 283.8 2 2z"/>
<path fill="#fdab33" d="m367.7 283.8 2 2-2-2m34.5 0 2 2z"/>
<path fill="#fbead6" d="m428.6 283.8 2 2z"/>
<path fill="#fea522" d="m335.2 285.8 2 2z"/>
<path fill="#fe9f11" d="m343.4 285.8 2 2z"/>
<path fill="#fcb144" d="m359.6 285.8 2 2z"/>
<path fill="#faca88" d="m367.7 285.8 2 2z"/>
<path fill="#f8dcbb" d="m402.2 285.8 2 2z"/>
<path fill="#fcb144" d="m428.6 285.8 2 2z"/>
<path fill="#d3d079" d="m319 287.9 2 2z"/>
<path fill="#faca88" d="m335.2 287.9 2 2zm24.4 0 2 2z"/>
<path fill="#fae3c9" d="m367.7 287.9 2 2-2-2m34.5 0 2 2z"/>
<path fill="#f8dcbb" d="m430.6 287.9 2 2-2-2z"/>
<path fill="#f2f1d7" d="m448.9 287.9 2 2z"/>
<path fill="#58587b" d="m455.7 289.2.7 1.3z"/>
<path fill="#d9d868" d="m319.6 291.2.8 1.4-.7-1.4z"/>
<path fill="#f8dcbb" d="m335.2 289.9 2 2z"/>
<path fill="#f9d6aa" d="m400.2 289.9 2 2z"/>
<path fill="#fe9f11" d="m402.2 289.9 2 2z"/>
<path fill="#fcb144" d="m430.6 289.9 2 2-2-2z"/>
<path fill="#f2f1d2" d="m449.6 291.2.7 1.4z"/>
<path fill="#fcf1e4" d="m335.2 291.9 2 2z"/>
<path fill="#fef8f1" d="m398.2 291.9 2 2z"/>
<path fill="#fe9f11" d="m400.2 291.9 2 2z"/>
<path fill="#fdab33" d="m406.3 291.9-2 4z"/>
<path fill="#fcb755" d="m408.3 291.9 2 2z"/>
<path fill="#fea522" d="m432.7 291.9 2 2z"/>
<path fill="#f9d099" d="m434.7 291.9 2 2z"/>
<path fill="#53527c" d="m455 291.9 2 2z"/>
<path fill="#808067" d="m315.6 295.3.7 1.3z"/>
<path fill="#fea522" d="m337.3 293.9 2 2-2-2m6 0 2 2-2-2z"/>
<path fill="#fe9f11" d="m365.7 293.9 2 2z"/>
<path fill="#fae3c9" d="m398.2 293.9 2 2z"/>
<path fill="#fef8f1" d="m406.3 293.9 2 2z"/>
<path fill="#fcb144" d="m410.4 293.9 2 2z"/>
<path fill="#fcb755" d="m436.8 293.9 2 2z"/>
<path fill="#fef8f1" d="m438.8 293.9 4 4z"/>
<path fill="#e5e59d" d="m449.6 295.3.7 1.3z"/>
<path fill="#32327b" d="m455.7 295.3.7 1.3z"/>
<path fill="#fcb755" d="m338 297.3.6 1.4z"/>
<path fill="#fef8f1" d="m345.4 295.9 2 2z"/>
<path fill="#fbbe66" d="m365.7 295.9 2 2z"/>
<path fill="#fbead6" d="m398.2 295.9 2 2z"/>
<path fill="#fe9f11" d="m402.2 295.9 2 2z"/>
<path fill="#fcf1e4" d="m404.3 295.9 2 2z"/>
<path fill="#fbead6" d="m410.4 295.9 2 2z"/>
<path fill="#fdab33" d="m438.8 295.9 2 2z"/>
<path fill="#667" d="m315 297.9 2 2-2-2z"/>
<path fill="#f6f6e4" d="m321 297.9 2 2-2-2z"/>
<path fill="#f9d6aa" d="m345.4 297.9 2 2-2-2z"/>
<path fill="#fdab33" d="m361.6 297.9 2 2-2-2z"/>
<path fill="#fe9f11" d="m363.6 297.9 2 2-2-2z"/>
<path fill="#fcf1e4" d="m365.7 297.9 2 2-2-2z"/>
<path fill="#fea522" d="m400.2 297.9 2 2-2-2z"/>
<path fill="#faca88" d="m402.2 297.9 2 2-2-2m10.2 0 2 2z"/>
<path fill="#fcb144" d="m440.8 297.9 2 2-2-2z"/>
<path fill="#dddc7a" d="m448.9 297.9 2 2-2-2z"/>
<path fill="#58587b" d="m315 300 2 2z"/>
<path fill="#f2f1d2" d="m321 300 2 2z"/>
<path fill="#fcb144" d="m338 301.4.6 1.3z"/>
<path fill="#fea522" d="m345.4 300 2 2z"/>
<path fill="#fef8f1" d="m365.7 300 2 2z"/>
<path fill="#fea522" d="m367.7 300 2 2z"/>
<path fill="#fcb144" d="m371.8 300 2 2z"/>
<path fill="#fbead6" d="m373.8 300 2 2z"/>
<path fill="#f8dcbb" d="m400.2 300 2 2z"/>
<path fill="#fcf1e4" d="m402.2 300 2 2z"/>
<path fill="#fef8f1" d="m412.4 300 2 2z"/>
<path fill="#fe9f11" d="m414.4 300 2 2z"/>
<path fill="#fbead6" d="m442.9 300 2 2z"/>
<path fill="#d9d868" d="m448.9 300 2 2z"/>
<path fill="#3a3a7c" d="m315 302 2 2z"/>
<path fill="#e5e3af" d="m321 302 2 2z"/>
<path fill="#faca88" d="m347.4 302 2 2z"/>
<path fill="#fbead6" d="m367.7 302 2 2z"/>
<path fill="#fe9f11" d="m373.8 302 2 2z"/>
<path fill="#fcf1e4" d="m375.9 302 2 2z"/>
<path fill="#fbead6" d="m398.2 302 2 2z"/>
<path fill="#fae3c9" d="m400.2 302 2 2z"/>
<path fill="#fbead6" d="m402.2 302 2 2z"/>
<path fill="#fbbe66" d="m414.4 302 2 2-2-2m16.3 0 2 2z"/>
<path fill="#fcf1e4" d="m432.7 302 2 2z"/>
<path fill="#fef8f1" d="m434.7 302 2 2z"/>
<path fill="#f8dcbb" d="m436.8 302 2 2z"/>
<path fill="#fcb755" d="m438.8 302 2 2z"/>
<path fill="#fae3c9" d="m442.9 302 2 2z"/>
<path fill="#808067" d="m453 302 2 2z"/>
<path fill="#32327b" d="m315 304 2 2z"/>
<path fill="#a4a43d" d="m317.6 305.4.7 1.4-.6-1.4z"/>
<path fill="#e5e59d" d="m321 304 2 2z"/>
<path fill="#fbc477" d="m337.3 304 2 2z"/>
<path fill="#f9d6aa" d="m349.5 304 2 2z"/>
<path fill="#fbbe66" d="m369.8 304 2 2z"/>
<path fill="#f9d099" d="m375.9 304 2 2z"/>
<path fill="#fae3c9" d="m394 304 2 2z"/>
<path fill="#fcb144" d="m396.2 304 2 2z"/>
<path fill="#fae3c9" d="m404.3 304 2 2z"/>
<path fill="#f8dcbb" d="m414.4 304 2 2z"/>
<path fill="#f9d099" d="m430.6 304 2 2-2-2z"/>
<path fill="#fbc477" d="m440.8 304 2 2z"/>
<path fill="#fbead6" d="m442.9 304 2 2z"/>
<path fill="#737370" d="m453 304 2 2z"/>
<path fill="#d9d868" d="m321 306 2 2z"/>
<path fill="#f9d099" d="m337.3 306 2 2z"/>
<path fill="#f9d6aa" d="m351.5 306 2 2-2-2m18.3 0 2 2z"/>
<path fill="#fbc477" d="m375.9 306 2 2z"/>
<path fill="#fef8f1" d="m386 306 2 2z"/>
<path fill="#f8dcbb" d="m388 306 2 2z"/>
<path fill="#fbc477" d="m390 306 2 2z"/>
<path fill="#fea522" d="m392 306 2 2z"/>
<path fill="#fbead6" d="m404.3 306 2 2z"/>
<path fill="#f2f1d2" d="m446.9 306 2 2z"/>
<path fill="#58587b" d="m453 306 2 2z"/>
<path fill="#99994e" d="m317 308 2 2z"/>
<path fill="#d0d045" d="m321 308 2 2z"/>
<path fill="#fcb144" d="m353.6 308 2 2z"/>
<path fill="#fae3c9" d="m355.6 308 2 2z"/>
<path fill="#fef8f1" d="m369.8 308 2 2z"/>
<path fill="#fcb755" d="m377.9 308 2 2z"/>
<path fill="#fbc477" d="m379.9 308 2 2z"/>
<path fill="#fcb144" d="m382 308 2 2z"/>
<path fill="#fea522" d="m384 308 2 2z"/>
<path fill="#fe9f11" d="m400.2 308 2 2z"/>
<path fill="#f9d6aa" d="m402.2 308 2 2z"/>
<path fill="#fef8f1" d="m430.6 308 2 2-2-2z"/>
<path fill="#e0dea1" d="m446.9 308 2 2z"/>
<path fill="#3a3a7c" d="m453 308 2 2z"/>
<path fill="#737370" d="m317 310.2 2 2z"/>
<path fill="#fbfaf2" d="m323 310.2 2 2z"/>
<path fill="#fea522" d="m339.3 310.2 2 2z"/>
<path fill="#fe9f11" d="m357.6 310.2 2 2z"/>
<path fill="#fcb144" d="m359.6 310.2 2 2z"/>
<path fill="#fbc477" d="m361.6 310.2 2 2z"/>
<path fill="#faca88" d="m363.6 310.2 2 2-2-2z"/>
<path fill="#fbc477" d="m365.7 310.2 2 2z"/>
<path fill="#fcb144" d="m367.7 310.2 2 2z"/>
<path fill="#fdab33" d="m369.8 310.2 2 2z"/>
<path fill="#fbc477" d="m398.2 310.2 2 2z"/>
<path fill="#fef8f1" d="m400.2 310.2 2 2z"/>
<path fill="#fdab33" d="m428.6 310.2 2 2z"/>
<path fill="#e1e18c" d="m446.9 310.2 2 2z"/>
<path fill="#a4a43d" d="m451.6 311.5.7 1.4z"/>
<path fill="#262678" d="m453 310.2 2 2z"/>
<path fill="#58587b" d="m317 312.2 2 2z"/>
<path fill="#f2f1d2" d="m323 312.2 2 2z"/>
<path fill="#faca88" d="m339.3 312.2 2 2z"/>
<path fill="#fe9f11" d="m394 312.2 2 2z"/>
<path fill="#fbead6" d="m396.2 312.2 2 2z"/>
<path fill="#fbc477" d="m414.4 312.2 2 2z"/>
<path fill="#faca88" d="m428.6 312.2 2 2z"/>
<path fill="#d4d456" d="m446.9 312.2 2 2z"/>
<path fill="#32327b" d="m317 314.2 2 2z"/>
<path fill="#e5e59d" d="m323 314.2 2 2z"/>
<path fill="#fef8f1" d="m339.3 314.2 2 2z"/>
<path fill="#fe9f11" d="m341.3 314.2 2 2z"/>
<path fill="#fbead6" d="m394 314.2 2 2z"/>
<path fill="#fea522" d="m414.4 314.2 2 2z"/>
<path fill="#fcf1e4" d="m428.6 314.2 2 2z"/>
<path fill="#808067" d="m451 314.2 2 2z"/>
<path fill="#0e0e6e" d="m317 316.2 2 2z"/>
<path fill="#a4a43d" d="m319 316.2 2 2z"/>
<path fill="#d9d868" d="m323 316.2 2 2z"/>
<path fill="#f8dcbb" d="m341.3 316.2 2 2z"/>
<path fill="#f9d6aa" d="m412.4 316.2 2 2z"/>
<path fill="#faca88" d="m426.6 316.2 2 2z"/>
<path fill="#f2f1d2" d="m444.9 316.2 2 2z"/>
<path fill="#58587b" d="m451 316.2 2 2z"/>
<path fill="#8d8d5b" d="m319 318.3 2 2z"/>
<path fill="#f9d6aa" d="m343.4 318.3 2 2z"/>
<path fill="#fdab33" d="m384 318.3 2 2z"/>
<path fill="#fff" d="m386 318.3 2 2z"/>
<path fill="#fcb144" d="m389.4 318.9 1.4.7z"/>
<path fill="#fef8f1" d="m410.4 318.3-2 4z"/>
<path fill="#fe9f11" d="m412.4 318.3 2 2z"/>
<path fill="#fdab33" d="m424.6 318.3-2 4z"/>
<path fill="#e5e59d" d="m444.9 318.3 2 2z"/>
<path fill="#3a3a7c" d="m451 318.3 2 2z"/>
<path fill="#667" d="m319 320.3 2 2z"/>
<path fill="#f2f1d2" d="m325 320.3 2 2z"/>
<path fill="#f9d6aa" d="m345.4 320.3 2 2z"/>
<path fill="#fe9f11" d="m384 320.3 2 2z"/>
<path fill="#faca88" d="m386 320.3 2 2z"/>
<path fill="#fea522" d="m388 320.3 2 2z"/>
<path fill="#fcf1e4" d="m390 320.3 2 2z"/>
<path fill="#fdab33" d="m410.4 320.3 2 2z"/>
<path fill="#fef8f1" d="m424.6 320.3 2 2z"/>
<path fill="#d9d868" d="m444.9 320.3 2 2z"/>
<path fill="#a4a43d" d="m448.9 320.3 2 2z"/>
<path fill="#0e0e6e" d="m451 320.3 2 2z"/>
<path fill="#3a3a7c" d="m319 322.3 2 2z"/>
<path fill="#e5e59d" d="m325 322.3 2 2z"/>
<path fill="#fae3c9" d="m347.4 322.3 4 4z"/>
<path fill="#fe9f11" d="m349.5 322.3 2 2z"/>
<path fill="#f8dcbb" d="m388 322.3 2 2z"/>
<path fill="#fcf1e4" d="m406.3 322.3 2 2z"/>
<path fill="#fdab33" d="m408.3 322.3 2 2z"/>
<path fill="#fcb144" d="m420.6 322.3 2 2z"/>
<path fill="#fef8f1" d="m422.6 322.3 2 2z"/>
<path fill="#fbfaf2" d="m442.9 322.3 2 2z"/>
<path fill="#8d8d5b" d="m448.9 322.3 2 2z"/>
<path fill="#0e0e6e" d="m319 324.4 2 2z"/>
<path fill="#a4a43d" d="m321 324.4 2 2z"/>
<path fill="#d4d456" d="m325 324.4 2 2z"/>
<path fill="#f9d6aa" d="m386 324.4 2 2z"/>
<path fill="#f9d099" d="m404.3 324.4 2 2z"/>
<path fill="#fe9f11" d="m406.3 324.4 2 2z"/>
<path fill="#faca88" d="m418.5 324.4 2 2z"/>
<path fill="#eeedc1" d="m442.9 324.4 2 2z"/>
<path fill="#58587b" d="m448.9 324.4 2 2z"/>
<path fill="#737370" d="m321 326.4 2 2z"/>
<path fill="#f6f6e4" d="m327 326.4 2 2z"/>
<path fill="#fbbe66" d="m349.5 326.4 2 2z"/>
<path fill="#fcb144" d="m382 326.4 2 2z"/>
<path fill="#f8dcbb" d="m384.6 327.8.7 1.3z"/>
<path fill="#fbbe66" d="m400.2 326.4 2 2z"/>
<path fill="#fe9f11" d="m402.2 326.4 2 2z"/>
<path fill="#fbc477" d="m414.4 326.4 2 2z"/>
<path fill="#fcf1e4" d="m416.5 326.4 2 2z"/>
<path fill="#d3d079" d="m442.9 326.4 2 2z"/>
<path fill="#a4a43d" d="m446.9 326.4 2 2z"/>
<path fill="#262678" d="m448.9 326.4 2 2z"/>
<path fill="#49497d" d="m321 328.4 2 2z"/>
<path fill="#e0dea1" d="m327 328.4 2 2z"/>
<path fill="#fae3c9" d="m347.4 328.4 2 2z"/>
<path fill="#fdab33" d="m375.9 328.4 2 2z"/>
<path fill="#fbc477" d="m377.9 328.4 2 2z"/>
<path fill="#fbead6" d="m379.9 328.4 2 2z"/>
<path fill="#fcb144" d="m386 328.4 2 2z"/>
<path fill="#f9d6aa" d="m412.4 328.4 2 2z"/>
<path fill="#99994e" d="m446.9 328.4 2 2z"/>
<path fill="#0e0e6e" d="m321 330.5 2 2z"/>
<path fill="#a4a43d" d="m323 330.5 2 2z"/>
<path fill="#d4d456" d="m327 330.5 2 2z"/>
<path fill="#f9d099" d="m345.4 330.5 2 2z"/>
<path fill="#fe9f11" d="m347.4 330.5 2 2-2-2m10.2 0 2 2z"/>
<path fill="#f9d6aa" d="m359.6 330.5 2 2z"/>
<path fill="#f9d099" d="m361.6 330.5 2 2z"/>
<path fill="#f9d6aa" d="m369.8 330.5 2 2z"/>
<path fill="#fae3c9" d="m371.8 330.5 2 2z"/>
<path fill="#fef8f1" d="m373.8 330.5 2 2z"/>
<path fill="#fbead6" d="m390 330.5 2 2z"/>
<path fill="#fae3c9" d="m392 330.5 2 2z"/>
<path fill="#faca88" d="m394 330.5 2 2z"/>
<path fill="#fbc477" d="m396.2 330.5 2 2z"/>
<path fill="#fdab33" d="m398.2 330.5 2 2z"/>
<path fill="#fe9f11" d="m408.3 330.5 2 2z"/>
<path fill="#f9d6aa" d="m410.4 330.5 2 2z"/>
<path fill="#e5e3af" d="m440.8 330.5 2 2z"/>
<path fill="#667" d="m446.9 330.5 2 2z"/>
<path fill="#737370" d="m323 332.5 2 2z"/>
<path fill="#f2f1d7" d="m329.2 332.5 2 2z"/>
<path fill="#fea522" d="m343.4 332.5 2 2z"/>
<path fill="#fe9f11" d="m353.6 332.5 2 2z"/>
<path fill="#fbbe66" d="m355.6 332.5 2 2z"/>
<path fill="#fcf1e4" d="m357.6 332.5 2 2z"/>
<path fill="#fea522" d="m406.3 332.5 2 2z"/>
<path fill="#fbead6" d="m408.3 332.5 2 2z"/>
<path fill="#dddc7a" d="m440.8 332.5 2 2z"/>
<path fill="#a4a43d" d="m444.9 332.5 2 2z"/>
<path fill="#262678" d="m446.9 332.5 2 2z"/>
<path fill="#49497d" d="m323 334.5 2 2z"/>
<path fill="#a4a43d" d="m325.8 335.9.7 1.3z"/>
<path fill="#d3d079" d="m329.2 334.5 2 2z"/>
<path fill="#f9d099" d="m345.4 334.5 2 2z"/>
<path fill="#fcb144" d="m347.4 334.5 2 2z"/>
<path fill="#faca88" d="m349.5 334.5 2 2z"/>
<path fill="#f8dcbb" d="m351.5 334.5 2 2z"/>
<path fill="#fef8f1" d="m353.6 334.5 2 2z"/>
<path fill="#f8dcbb" d="m398.2 334.5 2 2z"/>
<path fill="#fcf1e4" d="m406.3 334.5 2 2z"/>
<path fill="#f6f6e4" d="m438.8 334.5 2 2z"/>
<path fill="#8d8d5b" d="m444.9 334.5 2 2z"/>
<path fill="#fbfaf2" d="m331.2 336.5 2 2z"/>
<path fill="#fbbe66" d="m398.2 336.5 2 2z"/>
<path fill="#faca88" d="m404.3 336.5 2 2z"/>
<path fill="#e1e18c" d="m438.8 336.5 2 2z"/>
<path fill="#49497d" d="m444.9 336.5 2 2z"/>
<path fill="#58587b" d="m325 338.6 2 2z"/>
<path fill="#e5e59d" d="m331.2 338.6 2 2z"/>
<path fill="#fe9f11" d="m398.2 338.6 2 2z"/>
<path fill="#fdab33" d="m402.2 338.6 2 2z"/>
<path fill="#fbfaf2" d="m436.8 338.6 2 2z"/>
<path fill="#a4a43d" d="m442.9 338.6 2 2z"/>
<path fill="#0e0e6e" d="m444.9 338.6 2 2z"/>
<path fill="#1b1b74" d="m325 340.6 2 2z"/>
<path fill="#a4a43d" d="m327 340.6 2 2z"/>
<path fill="#d0d045" d="m331.2 340.6 2 2z"/>
<path fill="#fbead6" d="m396.2 340.6 2 2z"/>
<path fill="#fe9f11" d="m400.2 340.6 2 2z"/>
<path fill="#fbead6" d="m402.2 340.6 2 2z"/>
<path fill="#e5e59d" d="m436.8 340.6 2 2z"/>
<path fill="#667" d="m442.9 340.6 2 2z"/>
<path fill="#6e6c70" d="m327 342.6 2 2z"/>
<path fill="#e5e3af" d="m333.2 342.6 2 2z"/>
<path fill="#faca88" d="m396.8 344 .7 1.4z"/>
<path fill="#fae3c9" d="m400.2 342.6 2 2z"/>
<path fill="#fbfaf2" d="m434.7 342.6 2 2z"/>
<path fill="#a4a43d" d="m440.8 342.6 2 2z"/>
<path fill="#1b1b74" d="m442.9 342.6 2 2-2-2m-115.8 2 2 2z"/>
<path fill="#a4a43d" d="m329.2 344.7 2 2z"/>
<path fill="#d0d045" d="m333.2 344.7 2 2z"/>
<path fill="#fbfaf2" d="m335.2 344.7 2 2z"/>
<path fill="#f9d6aa" d="m398.2 344.7 2 2z"/>
<path fill="#e5e59d" d="m434.7 344.7 2 2z"/>
<path fill="#6e6c70" d="m440.8 344.7 2 2-2-2m-111.6 2 2 2z"/>
<path fill="#8cbf84" d="m335.2 346.7 2 2z"/>
<path fill="#0cf" d="M336 346.7c7 14.8 32 49.8 51 49.2 18.7-.7 39.6-35 47.7-49.2z"/>
<path fill="#a4a43d" d="m438.8 346.7 2 2z"/>
<path fill="#1b1b74" d="m440.8 346.7 2 2-2-2m-111.6 2 2 2z"/>
<path fill="#a4a43d" d="m331.2 348.7 2 2z"/>
<path fill="#adb333" d="m335.2 348.7 2 2z"/>
<path fill="#1ac5b5" d="m337.3 348.7 2 2z"/>
<path fill="#68b070" d="m432.7 348.7 2 2z"/>
<path fill="#667" d="m438.8 348.7 2 2z"/>
<path fill="#58587b" d="m331.2 350.8 2 2z"/>
<path fill="#7fb15c" d="m337.3 350.8 2 2z"/>
<path fill="#27c2aa" d="m430.6 350.8 2 2-2-2z"/>
<path fill="#a4a43d" d="m436.8 350.8-2 4z"/>
<path fill="#0e0e6e" d="m438.8 350.8 2 2-2-2m-107.6 2 2 2z"/>
<path fill="#a4a43d" d="m333.2 352.8 4 4z"/>
<path fill="#34be9e" d="m339.3 352.8 2 2z"/>
<path fill="#96b247" d="m430.6 352.8 2 2-2-2z"/>
<path fill="#53527c" d="m436.8 352.8 2 2z"/>
<path fill="#3a3a7c" d="m333.2 354.9 2 2z"/>
<path fill="#a2b23d" d="m339.3 354.9 2 2z"/>
<path fill="#0dc9c1" d="m341.3 354.9 2 2z"/>
<path fill="#5bb47c" d="m428.6 354.9 2 2z"/>
<path fill="#8d8d5b" d="m434.7 354.9 2 2z"/>
<path fill="#737370" d="m335.2 356.9 2 2z"/>
<path fill="#74b166" d="m341.3 356.9 2 2z"/>
<path fill="#27c2aa" d="m426.6 356.9 2 2z"/>
<path fill="#a4a43d" d="m432.7 356.9-2 4z"/>
<path fill="#262678" d="m434.7 356.9 2 2z"/>
<path fill="#0e0e6e" d="m335.2 358.9 2 2z"/>
<path fill="#a4a43d" d="m337.3 358.9 4 4z"/>
<path fill="#42bb92" d="m343.4 358.9 2 2z"/>
<path fill="#0dc9c1" d="m424.6 358.9 2 2z"/>
<path fill="#96b247" d="m426.6 358.9 2 2z"/>
<path fill="#58587b" d="m432.7 358.9 2 2z"/>
<path fill="#3a3a7c" d="m337.3 360.9 2 2z"/>
<path fill="#adb333" d="m343.4 360.9 2 2z"/>
<path fill="#27c2aa" d="m345.4 360.9 2 2z"/>
<path fill="#74b166" d="m424.6 360.9 2 2z"/>
<path fill="#8d8d5b" d="m430.6 360.9 2 2-2-2z"/>
<path fill="#6e6c70" d="m339.3 362.9 2 2z"/>
<path fill="#96b247" d="m345.4 362.9 2 2z"/>
<path fill="#0dc9c1" d="m347.4 362.9 2 2z"/>
<path fill="#42bb92" d="m422.6 362.9 2 2z"/>
<path fill="#a4a43d" d="m428.6 362.9-4 6 4-6z"/>
<path fill="#1b1b74" d="m430.6 362.9 2 2-2-2z"/>
<path fill="#0e0e6e" d="m339.3 364.9 2 2-2-2z"/>
<path fill="#8d8d5b" d="m341.3 364.9 2 2-2-2z"/>
<path fill="#7fb15c" d="m347.4 364.9 2 2-2-2z"/>
<path fill="#34be9e" d="m420.6 364.9 2 2-2-2z"/>
<path fill="#3a3a7c" d="m428.6 364.9 2 2-2-2z"/>
<path fill="#1b1b74" d="m341.3 367 2 2z"/>
<path fill="#a4a43d" d="m343.4 367 22.3 22.3z"/>
<path fill="#74b166" d="m349.5 367 2 2z"/>
<path fill="#27c2aa" d="m418.5 367 2 2z"/>
<path fill="#adb333" d="m420.6 367 2 2z"/>
<path fill="#667" d="m426.6 367 2 2z"/>
<path fill="#32327b" d="m343.4 369 2 2z"/>
<path fill="#42bb92" d="m351.5 369 2 2z"/>
<path fill="#0dc9c1" d="m416.5 369-8.2 10.2 8.3-10.3z"/>
<path fill="#adb333" d="m418.5 369 2 2z"/>
<path fill="#737370" d="m424.6 369 2 2z"/>
<path fill="#49497d" d="m345.4 371 2 2z"/>
<path fill="#42bb92" d="m353.6 371 2 2z"/>
<path fill="#96b247" d="m416.5 371 2 2z"/>
<path fill="#8d8d5b" d="m422.6 371-2 4z"/>
<path fill="#0e0e6e" d="m424.6 371 2 2z"/>
<path fill="#53527c" d="m347.4 373 2 2z"/>
<path fill="#42bb92" d="m355.6 373 2 2z"/>
<path fill="#96b247" d="m414.4 373 2 2z"/>
<path fill="#0e0e6e" d="m422.6 373 2 2z"/>
<path fill="#6e6c70" d="m349.5 375 2 2z"/>
<path fill="#42bb92" d="m357.6 375 2 2z"/>
<path fill="#96b247" d="m412.4 375 2 2z"/>
<path fill="#a4a43d" d="m418.5 375-4 6.2 4-6z"/>
<path fill="#262678" d="m420.6 375 2 2z"/>
<path fill="#6e6c70" d="m351.5 377.2 2 2z"/>
<path fill="#42bb92" d="m359.6 377.2 2 2z"/>
<path fill="#96b247" d="m410.4 377.2 2 2z"/>
<path fill="#262678" d="m418.5 377.2 2 2z"/>
<path fill="#6e6c70" d="m353.6 379.2 2 2z"/>
<path fill="#68b070" d="m361.6 379.2 2 2z"/>
<path fill="#27c2aa" d="m406.3 379.2 2 2z"/>
<path fill="#adb333" d="m408.3 379.2 2 2z"/>
<path fill="#262678" d="m416.5 379.2 2 2z"/>
<path fill="#667" d="m355.6 381.2 2 2z"/>
<path fill="#74b166" d="m363.6 381.2 2 2-2-2z"/>
<path fill="#34be9e" d="m404.3 381.2 2 2z"/>
<path fill="#adb333" d="m406.3 381.2 2 2z"/>
<path fill="#8d8d5b" d="m412.4 381.2-2 4z"/>
<path fill="#262678" d="m414.4 381.2 2 2z"/>
<path fill="#49497d" d="m357.6 383.2 2 2z"/>
<path fill="#96b247" d="m365.7 383.2 2 2z"/>
<path fill="#0dc9c1" d="m367.7 383.2 2 2z"/>
<path fill="#42bb92" d="m402.2 383.2 2 2z"/>
<path fill="#0e0e6e" d="m412.4 383.2 2 2z"/>
<path fill="#49497d" d="m359.6 385.3 2 2z"/>
<path fill="#a2b23d" d="m367.7 385.3 2 2z"/>
<path fill="#27c2aa" d="m369.8 385.3 2 2z"/>
<path fill="#74b166" d="m400.2 385.3 2 2z"/>
<path fill="#a4a43d" d="m406.3 385.3-6 8z"/>
<path fill="#808067" d="m408.3 385.3 2 2z"/>
<path fill="#0e0e6e" d="m410.4 385.3 2 2z"/>
<path fill="#262678" d="m361.6 387.3 2 2z"/>
<path fill="#adb333" d="m369.8 387.3 2 2z"/>
<path fill="#42bb92" d="m371.8 387.3 2 2z"/>
<path fill="#0dc9c1" d="m396.2 387.3 2 2z"/>
<path fill="#96b247" d="m398.2 387.3 2 2z"/>
<path fill="#6e6c70" d="m406.3 387.3 2 2z"/>
<path fill="#1b1b74" d="m363.6 389.3 2 2-2-2z"/>
<path fill="#8d8d5b" d="m365.7 389.3 2 2z"/>
<path fill="#74b166" d="m373.8 389.3 2 2z"/>
<path fill="#0dc9c1" d="m375.9 389.3 2 2z"/>
<path fill="#34be9e" d="m394 389.3 2 2z"/>
<path fill="#adb333" d="m396.2 389.3 2 2z"/>
<path fill="#49497d" d="m404.3 389.3 2 2z"/>
<path fill="#0e0e6e" d="m365.7 391.4 2 2z"/>
<path fill="#6e6c70" d="m367.7 391.4 2 2z"/>
<path fill="#a4a43d" d="m369.8 391.4 4 4z"/>
<path fill="#96b247" d="m375.9 391.4 2 2z"/>
<path fill="#27c2aa" d="m377.9 391.4 2 2z"/>
<path fill="#68b070" d="m392 391.4 2 2z"/>
<path fill="#32327b" d="m402.2 391.4 2 2z"/>
<path fill="#49497d" d="m369.8 393.4 2 2z"/>
<path fill="#5bb47c" d="m379.9 393.4 2 2z"/>
<path fill="#27c2aa" d="m388 393.4 2 2z"/>
<path fill="#96b247" d="m390 393.4 2 2z"/>
<path fill="#a4a43d" d="m396.2 393.4-2 4z"/>
<path fill="#808067" d="m398.2 393.4 2 2z"/>
<path fill="#0e0e6e" d="m400.2 393.4 2 2z"/>
<path fill="#262678" d="m371.8 395.4 2 2z"/>
<path fill="#8d8d5b" d="m373.8 395.4 2 2z"/>
<path fill="#8bb252" d="m382 395.4 2 2z"/>
<path fill="#1ac5b5" d="m384 395.4 2 2z"/>
<path fill="#5bb47c" d="m386 395.4 2 2z"/>
<path fill="#58587b" d="m396.2 395.4 2 2z"/>
<path fill="#0e0e6e" d="m373.8 397.5 2 2z"/>
<path fill="#667" d="m375.9 397.5 2 2z"/>
<path fill="#a4a43d" d="m377.9 397.5 2 2z"/>
<path fill="#99994e" d="m392 397.5 2 2z"/>
<path fill="#32327b" d="m394 397.5 2 2-2-2m-16.1 2 2 2z"/>
<path fill="#99994e" d="m379.9 399.5 2 2z"/>
<path fill="#a4a43d" d="m388 399.5 2 2z"/>
<path fill="#667" d="m390 399.5 2 2z"/>
<path fill="#0e0e6e" d="m392 399.5 2 2-2-2m-12.1 2 2 2z"/>
<path fill="#667" d="m382 401.5 2 2z"/>
<path fill="#a4a43d" d="m384 401.5 2 2z"/>
<path fill="#99994e" d="m386 401.5 2 2z"/>
<path fill="#32327b" d="m388 401.5 2 2z"/>
<path fill="#262678" d="m384 403.5 2 2z"/>
<path fill="#0e0e6e" d="m386 403.5 2 2z"/>
<path fill="#f90" d="M388 267.5c3.2 7.4 13.2 15.5 16 19.5-3.5 4-4.2 3.6-3.8 11 6-6.4 6.2-7 10.2-6.1 8.6 8.6 1.5 27-5.6 31-7.1 4.3-5.8-.1-16.5 5.2 4.9 4.2 10.6-.6 15.2.7 2.5 3-1.2 8.4.7 13.6 4-.4 3.6-8.7 4.6-11.7 3-11 21-18.6 21.9-28.7 3.8-1.7 7.5-.5 12 2-2.2-9.4-9.7-9.3-11.8-12.2-4.8-7.4-9.1-15.8-19.4-18-8-1.7-7.3.5-12.3-3-3.2-2.4-12.7-7-11.2-3.3z"/>
<path fill="#fff" fill-rule="evenodd" d="M410.6 275.9a1.6 1.6 0 1 1-3.3 0 1.6 1.6 0 0 1 3.3 0z"/>
<path fill="#f90" d="M362.9 298.8c5-6.2 7.6-19 9.8-23.2 5.2 1.2 5 2 11.5-1.8-8.5-2.4-9.2-2.2-10.2-6.1 3.6-11.7 23.2-14 30-9.6 7.2 4.3 2.7 5.2 12.4 12 1.4-6.2-5.5-9-6.5-13.6 1.5-3.7 8-3 11.6-7-2.2-3.5-9.3.8-12.4 1.4-11 2.5-26.3-9.8-35.6-6-3.3-2.5-4-6.4-4-11.7-7.1 6.5-3.5 13-5.2 16.3-4.2 7.7-9.7 15.5-6.8 25.6 2.2 7.8 3.8 6.2 3.2 12.3-.7 3.9-.4 14.5 2.2 11.4z"/>
<path fill="#fff" fill-rule="evenodd" d="M359.8 274.9c.8-.4 1.8-.1 2.2.7a1.6 1.6 0 1 1-2.2-.7z"/>
<path fill="#f90" d="M404 303c-8-1-20.1 3.4-25 3.8-1.5-5.1-.8-5.5-7.4-9 2.3 8.6 2.8 9 0 12-11.8 2.9-24-12.7-23.8-20.8 0-8.3 3.2-5 4-17-6 2-4.8 9.5-8.3 12.8-4 .6-6.6-5.3-12-6.3-1.8 3.7 5.5 7.5 7.6 9.9 7.9 8.2 5.2 27.5 13.3 33.5-.4 4.2-3.4 6.8-8 9.4 9.3 2.9 13-3.7 16.7-4 8.8-.2 18.3.4 25.5-7.3 5.4-6 3.3-6.5 8.8-9 3.7-1.4 12.6-7.2 8.6-8z"/>
<path fill="#fff" fill-rule="evenodd" d="M385.2 318.2a1.6 1.6 0 1 1 1.7-2.8 1.6 1.6 0 0 1-1.7 2.8z"/>
<path fill="#012169" d="M0 0h256v256H0z"/>
<path fill="#fff" d="M256 0v32l-95 96 95 93.5V256h-33.5L127 162l-93 94H0v-34l93-93.5L0 37V0h31l96 94 93-94z"/>
<path fill="#c8102e" d="m92 162 5.5 17L21 256H0v-1.5zm62-6 27 4 75 73.5V256zM256 0l-96 98-2-22 75-76zM0 .5 96.5 95 67 91 0 24.5z"/>
<path fill="#fff" d="M88 0v256h80V0zM0 88v80h256V88z"/>
<path fill="#c8102e" d="M0 104v48h256v-48zM104 0v256h48V0z"/>
</svg>

After

Width:  |  Height:  |  Size: 36 KiB

View File

@@ -0,0 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="flag-icons-al" viewBox="0 0 512 512">
<path fill="#e41e20" d="M0 0h512v512H0z"/>
<path id="a" d="M204.9 99.5c-5 0-13.2 1.6-13 5.4-14-2.3-15.4 3.4-14.6 8.5 1.4-2 3-3.1 4.2-3.3 1.9-.3 3.8.3 5.8 1.5a23 23 0 0 1 5 4.4c-4.8 1.1-8.6.4-12.4-.3a17.6 17.6 0 0 1-6.1-2.5c-1.6-1.1-2.1-2.1-4.6-4.7-2.9-3-6-2.1-5 2.5 2.2 4.3 6 6.3 10.7 7 2.2.4 5.6 1.2 9.4 1.2 3.8 0 8.1-.5 10.5 0-1.4.8-3 2.4-6.2 3-3.2.6-8-2-11-2.6.4 2.5 3.5 4.8 9.7 6 10.2 2.2 18.7 4 24.3 7 5.6 3 9.1 6.8 11.6 9.8 5 6 5.3 10.5 5.6 11.5 1 9.5-2.2 14.8-8.4 16.4-3 .8-8.5-.7-10.5-3-2-2.4-4-6.4-3.4-12.7.5-2.5 3.4-9 1-10.3a291.6 291.6 0 0 0-34.4-16c-2.7-1.1-5 2.5-5.8 4A53.5 53.5 0 0 1 129 107c-4.6-8.1-12.1 0-10.9 7.7 2.1 8.6 8.6 14.8 16.5 19.2 8 4.5 18.1 8.8 28.3 8.6 5.5 1 5.5 8.2-1.1 9.5-13 0-23.2-.2-32.9-9.6-7.4-6.7-11.5 1.3-9.4 5.8 3.6 14 23.6 18 43.8 13.4 7.8-1.3 3.1 7 .9 7.2-8.4 6-23.5 12-36.8-.1-6.1-4.7-10.2-.7-8 6 6 17.5 28.5 13.8 44 5.2 4-2.2 7.6 3 2.7 6.9-19.2 13.4-28.9 13.6-37.6 8.4-10.8-4.3-11.8 7.8-5.3 11.8 7.2 4.4 25.4 1 38.9-7.4 5.7-4.2 6 2.4 2.3 5-15.9 13.8-22.2 17.5-38.8 15.2-8.2-.6-8 9.5-1.6 13.5 8.8 5.4 26.1-3.6 39.5-14.7 5.6-3 6.6 2 3.8 7.8a57.4 57.4 0 0 1-23.3 19.2 29.1 29.1 0 0 1-19.5.7c-6.2-2.2-7 4.2-3.6 10 2 3.5 10.6 4.7 19.7 1.4 9.2-3.2 19-10.8 25.7-19.8 6-5.1 5.2 1.8 2.5 6.7-13.5 21.3-25.9 29.2-42.1 27.9-7.3-1.2-8.9 4.4-4.3 9.6 8 6.7 18.2 6.4 27-.2a751 751 0 0 0 30.8-32.6c5.5-4.4 7.3 0 5.7 9-1.5 5.1-5.2 10.5-15.3 14.5-7 4-1.8 9.4 3.4 9.5 2.9 0 8.7-3.3 13-8.3 5.9-6.5 6.2-11 9.5-21.1 3-5 8.4-2.7 8.4 2.5-2.6 10.2-4.8 12-10 16.2-5.1 4.7 3.4 6.3 6.3 4.4 8.3-5.6 11.3-12.8 14.1-19.4 2-4.8 7.8-2.5 5.1 5.3-6.4 18.5-17 25.8-35.5 29.6-1.9.3-3 1.4-2.4 3.6l7.5 7.5c-11.5 3.3-20.8 5.2-32.2 8.5L142 300.6c-1.5-3.4-2.2-8.7-10.4-5-5.7-2.6-8.2-1.6-11.4 1 4.5.1 6.5 1.3 8.3 3.4 2.3 6 7.6 6.6 13 5 3.5 2.9 5.4 5.2 9 8.2l-17.8-.6c-6.3-6.7-11.3-6.3-15.8-1-3.5.5-5 .5-7.3 4.7 3.7-1.5 6-2 7.7-.3 6.6 3.9 11 3 14.3 0l18.7 1.1c-2.3 2-5.6 3.1-8 5.2-9.7-2.8-14.7 1-16.4 8.8a18.2 18.2 0 0 0-1.4 10c1-3.2 2.5-5.9 5.3-7.6 8.6 2.2 11.8-1.3 12.3-6.5 4.2-3.4 10.5-4.1 14.6-7.6 4.9 1.6 7.2 2.6 12.1 4.1 1.7 5.3 5.7 7.4 12 6 7.7.3 6.3 3.4 7 5.9 2-3.6 2-7-2.8-10.3-1.7-4.6-5.5-6.7-10.4-4-4.7-1.3-5.9-3.2-10.5-4.6 11.7-3.7 20-4.5 31.8-8.3 3 2.8 5.2 4.8 8.2 7.2 1.6 1 3 1.2 4 0 7.3-10.6 10.6-20 17.4-27 2.6-2.9 6-6.8 9.6-7.8 1.8-.4 4-.2 5.5 1.4 1.4 1.6 2.6 4.4 2 8.7-.6 6.2-2 8.2-3.8 11.8-1.7 3.7-3.9 6-6 8.8-4.4 5.7-10.1 9-13.5 11.2-6.8 4.4-9.7 2.5-15 2.2-6.7.8-8.5 4.1-3 8.7a21 21 0 0 0 13.7 2.3c3.3-.6 7-4.8 9.8-7 3-3.6 8.1.6 4.7 4.7-6.3 7.5-12.6 12.4-20.3 12.3-8.2 1-6.7 5.7-1.3 7.9 9.8 4 18.6-3.5 23-8.5 3.5-3.7 6-3.9 5.3 2-3.4 10.5-8.1 14.6-15.7 15.1-6.2-.5-6.3 4.2-1.7 7.5 10.3 7 17.7-5 21.2-12.4 2.5-6.6 6.3-3.5 6.7 2 0 7.3-3.2 13.2-12 20.7 6.7 10.7 14.5 21.7 21.3 32.5l20.5-228.2-20.5-36c-2.1-2-9.3-10.5-11.2-11.7-.7-.7-1.1-1.2-.1-1.6 1-.4 3.2-.8 4.8-1-4.4-4.4-8-5.8-16.3-8.2 2-.8 4-.3 9.9-.6a32.3 32.3 0 0 0-14.4-11c4.5-3 5.3-3.3 9.8-7-7.7-.6-14.3-2-20.8-4a41 41 0 0 0-12.8-3.7zm.7 9c4 0 6.6 1.4 6.6 3 0 1.7-2.5 3.1-6.6 3.1-4 0-6.6-1.5-6.6-3.2 0-1.7 2.6-3 6.6-3z"/>
<use xlink:href="#a" width="100%" height="100%" transform="matrix(-1 0 0 1 512 0)"/>
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@@ -0,0 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-am" viewBox="0 0 512 512">
<path fill="#d90012" d="M0 0h512v170.7H0z"/>
<path fill="#0033a0" d="M0 170.7h512v170.6H0z"/>
<path fill="#f2a800" d="M0 341.3h512V512H0z"/>
</svg>

After

Width:  |  Height:  |  Size: 236 B

View File

@@ -0,0 +1,13 @@
<svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-ao" viewBox="0 0 512 512">
<g fill-rule="evenodd" stroke-width="1pt">
<path fill="red" d="M0 0h512v259.8H0z"/>
<path d="M0 252.2h512V512H0z"/>
</g>
<path fill="#ffec00" fill-rule="evenodd" d="M228.7 148.2c165.2 43.3 59 255.6-71.3 167.2l-8.8 13.6c76.7 54.6 152.6 10.6 174-46.4 22.2-58.8-7.6-141.5-92.6-150l-1.3 15.6z"/>
<path fill="#ffec00" fill-rule="evenodd" d="m170 330.8 21.7 10.1-10.2 21.8-21.7-10.2zm149-99.5h24v24h-24zm-11.7-38.9 22.3-8.6 8.7 22.3-22.3 8.7zm-26-29.1 17.1-16.9 16.9 17-17 16.9zm-26.2-39.8 22.4 8.4-8.5 22.4-22.4-8.4zM316 270l22.3 8.9-9 22.2-22.2-8.9zm-69.9 70 22-9.3 9.5 22-22 9.4zm-39.5 2.8h24v24h-24zm41.3-116-20.3-15-20.3 14.6 8-23-20.3-15h24.5l8.5-22.6 7.8 22.7 24.7-.3-19.6 15.3 7 23.4z"/>
<path fill="#fe0" fill-rule="evenodd" d="M336 346.4c-1.2.4-6.2 12.4-9.7 18.2l3.7 1c13.6 4.8 20.4 9.2 26.2 17.5a7.9 7.9 0 0 0 10.2.7s2.8-1 6.4-5c3-4.5 2.2-8-1.4-11.1-11-8-22.9-14-35.4-21.3z"/>
<path fill-rule="evenodd" d="M365.3 372.8a4.3 4.3 0 1 1-8.7 0 4.3 4.3 0 0 1 8.6 0zm-21.4-13.6a4.3 4.3 0 1 1-8.7 0 4.3 4.3 0 0 1 8.7 0zm10.9 7a4.3 4.3 0 1 1-8.7 0 4.3 4.3 0 0 1 8.7 0z"/>
<path fill="#fe0" fill-rule="evenodd" d="M324.5 363.7c-42.6-24.3-87.3-50.5-130-74.8-18.7-11.7-19.6-33.4-7-49.9 1.2-2.3 2.8-1.8 3.4-.5 1.5 8 6 16.3 11.4 21.5A5288 5288 0 0 1 334 345.6c-3.4 5.8-6 12.3-9.5 18z"/>
<path fill="#ffec00" fill-rule="evenodd" d="m297.2 305.5 17.8 16-16 17.8-17.8-16z"/>
<path fill="none" stroke="#000" stroke-width="3" d="m331.5 348.8-125-75.5m109.6 58.1L274 304.1m18.2 42.7L249.3 322"/>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -0,0 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-aq" viewBox="0 0 512 512">
<path fill="#3a7dce" d="M0 0h512v512H0z"/>
<path fill="#fff" d="M107.7 240.9c-3.5-7.9-3.5-7.9-3.5-15.7-1.8 0-2.1.4-3.1 0-1-.3-1.4 7.3-4.7 5.8-.5-.7 2.4-6.2-.8-8.4-1-.8.3-5.3-.2-7.2 0 0-4 2.3-7-5.9-1.4-2.1-3.4 2-3.4 2s.9 2.5-.7 3c-2.3-1.8-3.9-.8-6.7-3.3-2.9-2.5.6-5.4-4.8-7.6 3.5-9.8 3.5-7.8 12.2-11.8-5.2-3.9-5.2-3.9-8.7-9.8-5.3-2-7-3.9-12.2-7.8-7-9.8-10.5-29.4-10.5-43.2 4.4-4.6 10.5 15.7 19.2 21.6l12.2 5.9c7 4 8.7 7.8 14 11.8l15.6 5.9c7 5.8 10.5 13.7 15.7 15.6 5.7 0 6.8-3.6 8.6-3.9 10.2-.5 15.5-2 17.5-5.5 2-2.8 7 1.6 21-4.3l-1.8-7.8s3.8-3.5 8.8-2c-.2-3.6-.5-13.1 4.4-17.5-3-3.5-1-6-1-6s2.8-3 3.2-4.6c-1.5-8.7 1.2-8.8 1.9-11.3.6-2.6-2.4-1.7-1.6-5.2.9-3.5 6-4.4 6.6-7.3.7-2.8-1.5-4.3-1.3-5 1-2.7.1-9.2 0-11.7 9.3-2.9 12.4-11.4 15.7-7.9 1.7-11.8 3.5-15.7 14-15.7 1.4-3.6-3.9-6.7-1.8-7.8 3.5-.5 6.1-.3 10.2 5.7 1.3 1.9 1.5-2.8 2.8-3.3 1.4-.5 4.5-.5 5-2.8.4-2.4 1.1-5.5 2.9-9.4 1.5-3.2 2.6 1.2 4 7.4 7.3.3 23.9 2.2 30.9 4.3 5.2 1.6 8.7-1.5 13.7-2.1 3.7 4.2 7.2 1 9.1 10 2.8 4.7 7.3.3 8.3 1.8 5.9 18 26 5.8 27.4 6.1 2.6 0 5.7 8.1 7.7 8 3.3-.7 2.4-3.2 5.2-2.2-.7 6.8 5.7 14.7 5.7 19.7 0 0 1.5.9 3-.6 1.4-1.5 2.7-5.4 4-5.3 3 .5 4.3 1 7.8 1.6 9.4 3.7 14.3 4.5 18 6.3 1.6 3.6 3.3 5.4 6.8 4.7 2.8 2.2.7 5 2.4 5.2 3.5-2 4.7-4.1 8.1-2.2 3.5 2 7 6 8.8 9.8 0 2-1.8 9.8 0 21.6.8 4 1.3 7 5 13.8-1 6.9 4.7 18.5 4.7 21.5 0 3.9-2.8 6-4.5 9.8 7 6 0 15.7-3.5 21.6 26.2 5.9 14 17.7 34.9 11.8-5.3 13.7-3.4 12.6 1.8 26.3-10.4 7.9-.2 10.3-7.2 20-.4.7 4.2 8.6 10.6 8.6-1.7 15.7-7 9.8-5.2 33.3-13.8-.3-8.2 17.6-17.5 15.7.6 11.3 5.3 12.2 3.5 23.6-7 2-7 2-10.4 7.8l-5.3-2c-1.7 9.9-5.2 11.8 0 21.6 0 0-6.7.3-8.7 0-.1 3.4 3 4.3 3.5 7.9-.3 1.4-10 7.6-17.4 7.8-2 4.9 5.2 10 4.8 12.5-8.2 1.7-11.8 13-11.8 13s4.2 2 3.5 4c-2.3-1.9-3.5-2-7-2-1.7.5-6-.1-10 7.6-4.5 1.7-6.6 1-10 6.1-1.5-4.8-3.7 0-6.3 2-2.7 1.8-6.2 6.4-6.7 6.2.1-1.3 1.6-6.2 1.6-6.2l-8.7 2h-1c-.8.1-.6-5.7-2.2-5.5-1.7.3-6.4 7.3-8 7.6-1.6.2-2.1-2.3-3.5-2-1.4.1-4.1 7.4-5 7.6-1 .2-5-4.4-8.3-3.8-17.2 6.8-19.9-13.4-22.6-2-3.6-2.1-3-.9-6.6.2-2.3.7-2.5-3.5-4.6-3.4-4.2.1-4 4.5-6.2 3.2-1.8-9.2-13-7.5-14.1-11.5-.9-4 4.8-4 6.7-6.8 1.4-4-1.5-5.5 4.3-9.4 7.4-5.7 3.1-7.8 4.4-12.1 2.4-6.2 2.4-7.7.4-13.2 0 0-5.8-17.6-7-17.6-3.4-1.1-3.4 6.5-8.5 8.6-10.5 3.9-29-10-32.2-10-3 .1-16.5 3.7-16-4-2 7.5-9.6 1.8-10 1.8-7 0-4.3 6-9 5.8-2.1-.8-23.6-2.2-23.6-2.2v4l-14-8-12.2-3.9c-10.4-3.9-5.2-13.7-22.6-7.8v-11.8h-8.7c3.4-23.5 0-11.7-1.8-33.3l-7 2c-7-10.7 9.7-8.6-5.2-15.8 0 0 .3-11.7-3.5-7.8-.7.5 1.8 5.9 1.8 5.9-14-2-17.5-5.9-17.5-21.6 0 0 11.5 1.9 10.5 0-1.6-3-3.8-22-3.4-23.3-.2-2.6 10.7-9.1 8.6-15.3 1.3-.6 5.3-.6 5.3-.6"/>
<path fill="none" stroke="#fff" stroke-linejoin="round" stroke-width="2.5" d="M595.5 297.6c-.6 1.3-.5 2.6.1 3.6 1.1-1.7.2-2.4 0-3.6zm-476-149.4s-3-.4-2.4 2.3c1-2 2.3-2.2 2.4-2.3zm-.3-6.4c-1.7 0-3.8-.2-3 2.5 1-2.1 3-2.4 3-2.5zm12.7 36.3s2.6-.2 2 2.5c-1-2-2-2.4-2-2.5z" transform="matrix(.86021 0 0 .96774 -50 10)"/>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@@ -0,0 +1,32 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="flag-icons-ar" viewBox="0 0 512 512">
<path fill="#74acdf" d="M0 0h512v512H0z"/>
<path fill="#fff" d="M0 170.7h512v170.7H0z"/>
<g id="c" transform="translate(-153.6) scale(1.024)">
<path id="a" fill="#f6b40e" stroke="#85340a" stroke-width="1.1" d="m396.8 251.3 28.5 62s.5 1.2 1.3.9c.8-.4.3-1.6.3-1.6l-23.7-64m-.7 24.2c-.4 9.4 5.4 14.6 4.7 23-.8 8.5 3.8 13.2 5 16.5 1 3.3-1.2 5.2-.3 5.7 1 .5 3-2.1 2.4-6.8-.7-4.6-4.2-6-3.4-16.3.8-10.3-4.2-12.7-3-22"/>
<use xlink:href="#a" width="100%" height="100%" transform="rotate(22.5 400 250)"/>
<use xlink:href="#a" width="100%" height="100%" transform="rotate(45 400 250)"/>
<use xlink:href="#a" width="100%" height="100%" transform="rotate(67.5 400 250)"/>
<path id="b" fill="#85340a" d="M404.3 274.4c.5 9 5.6 13 4.6 21.3 2.2-6.5-3.1-11.6-2.8-21.2m-7.7-23.8 19.5 42.6-16.3-43.9"/>
<use xlink:href="#b" width="100%" height="100%" transform="rotate(22.5 400 250)"/>
<use xlink:href="#b" width="100%" height="100%" transform="rotate(45 400 250)"/>
<use xlink:href="#b" width="100%" height="100%" transform="rotate(67.5 400 250)"/>
</g>
<use xlink:href="#c" width="100%" height="100%" transform="rotate(90 256 256)"/>
<use xlink:href="#c" width="100%" height="100%" transform="rotate(180 256 256)"/>
<use xlink:href="#c" width="100%" height="100%" transform="rotate(-90 256 256)"/>
<circle cx="256" cy="256" r="28.4" fill="#f6b40e" stroke="#85340a" stroke-width="1.5"/>
<path id="h" fill="#843511" stroke-width="1" d="M265.7 250c-2 0-3.8.8-4.9 2.5 2.2 2 7 2.2 10.3-.2a7.5 7.5 0 0 0-5.4-2.4zm0 .4c1.9 0 3.6.8 3.9 1.7-2.2 2.4-5.7 2.2-7.9.4 1-1.5 2.5-2.1 4-2.1z"/>
<use xlink:href="#d" width="100%" height="100%" transform="matrix(-1 0 0 1 512.3 0)"/>
<use xlink:href="#e" width="100%" height="100%" transform="matrix(-1 0 0 1 512.3 0)"/>
<use xlink:href="#f" width="100%" height="100%" transform="translate(19.3)"/>
<use xlink:href="#g" width="100%" height="100%" transform="matrix(-1 0 0 1 512.3 0)"/>
<path fill="#85340a" d="M251.6 260a2 2 0 1 0 2 3c.8.6 1.8.6 2.4.6h.3c.5 0 1.6 0 2.3-.6.4.5 1 .8 1.6.8a2 2 0 0 0 .4-3.9c.5.2.9.7.9 1.3a1.3 1.3 0 0 1-2.7 0 3 3 0 0 1-2.7 1.8 3.3 3.3 0 0 1-2.7-1.8c0 .7-.6 1.3-1.3 1.3a1.3 1.3 0 0 1-.4-2.6zM253.8 265.8c-2.2 0-3 2-5 3.3 1-.5 2-1.3 3.5-2.2 1.5-.9 2.8.2 3.7.2.9 0 2.2-1.1 3.7-.2 1.5.9 2.4 1.7 3.5 2.2-2-1.4-2.8-3.3-5-3.3a6 6 0 0 0-2.2.6c-1-.4-1.8-.6-2.2-.6z"/>
<path fill="#85340a" d="M253 268.3c-.8 0-2 .3-3.6.8 4-1 4.8.4 6.6.4 1.7 0 2.6-1.3 6.6-.4-4.4-1.4-5.3-.5-6.6-.5-.9 0-1.5-.3-3-.3z"/>
<path fill="#85340a" d="M249.6 269h-.8c4.6.5 2.4 3.1 7.2 3.1 4.8 0 2.6-2.6 7.2-3-4.8-.5-3.3 2.4-7.2 2.4-3.7 0-2.6-2.5-6.4-2.5z"/>
<path fill="#85340a" d="M260 276.1a4 4 0 0 0-8 0 4 4 0 0 1 8 0z"/>
<path id="e" fill="#85340a" stroke-width="1" d="M238.3 249.9c5-4.4 11.4-5 14.9-1.8a8.6 8.6 0 0 1 1.6 3.7c.5 2.5-.3 5.2-2.3 8 .3 0 .7.1 1 .4 1.7-3.4 2.3-6.8 1.7-10l-.7-2.5c-4.8-4-11.4-4.4-16.2 2.2z"/>
<path id="d" fill="#85340a" stroke-width="1" d="M246.2 248.6c2.8 0 3.5.6 4.8 1.7 1.3 1.1 2 .9 2.2 1.1.2.2 0 .9-.4.7-.5-.3-1.4-.7-2.7-1.8-1.3-1-2.6-1-4-1-3.8 0-6 3.2-6.5 3-.4-.2 2.2-3.7 6.6-3.7z"/>
<use xlink:href="#h" width="100%" height="100%" transform="translate(-19.6)"/>
<circle id="f" cx="246.3" cy="252.1" r="2" fill="#85340a" stroke-width="1"/>
<path id="g" fill="#85340a" stroke-width="1" d="M241 253.4c3.7 2.8 7.4 2.6 9.6 1.3 2.2-1.3 2.2-1.8 1.7-1.8-.4 0-.9.5-2.6 1.4-1.8.8-4.4.8-8.8-1z"/>
</svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@@ -0,0 +1,73 @@
<svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-as" viewBox="0 0 512 512">
<path fill="#006" d="M0 0h512v512H0Z"/>
<path fill="#bd1021" d="M0 256 512 0v512Z"/>
<path fill="#fff" d="m41.4 256 470-228.6v457.2"/>
<path d="M334.9 288.5c5.4.3 5.2 5.7 5.2 5.7l19.3.5c2.5-6.8 5-6 9.7-2.6a35 35 0 0 0 9.3 4.5c2-9.6 15.6-7.7 15.6-7.7 5.8-13.9 6.3-13.7 2.8-15.5a11.4 11.4 0 0 1-4.9-4.7 28 28 0 0 1-5.4-13.3c-.4-3.5-4.5 1.7-5.2.7-.7-1.2-6.8-.5-6.8-.5 1.5 1.6-3.6.6-3.6.6.5.5 0 2 0 2-.5-.7-4.4-1.4-4.4-1.4a6.5 6.5 0 0 1-1.2 1.7c-2.1-.8-6.3-.7-6.3-.7a21.4 21.4 0 0 0-11.7 3c-1.7 1-8 4-13 9-5.1 5-8 4.3-8 4.3-1.5 5.6-13.6 12.3-13.6 12.3-2 1.7-8.1 2.5-11.2 0-3.1-2.6 0-7.4 0-7.4 1.2-2 2.3-2 2.4-9.5.1-5 5.3-9.2 10.7-15 6.6-7.3 15.9-19.3 15.9-19.3 0 3.7 2 4.3 2 4.3 1.8-3.7 4.4-6.7 4.4-6.7.2.3.6.5.6.5 2-2.8 3.3-3.9 3.3-3.9-.7-.3-6.5 0-11.8 4.7-5.4 4.7-9 3.1-9 3.1-3.7-1.2-4-4-4-4-2.8-11.8 7.9-20 7.9-20-14.3-3.5-4-21.7 13.8-29.5 17.7-7.7 17.5-11.2 17.5-11.2a13.9 13.9 0 0 1 2 3.3c0-.1 1.4-2 11.7-6.6a76 76 0 0 0 15-8.5c1.4 2.6 1.2 4.4 1.2 4.4 28-9.8 55.5-32.4 55.5-32.4.8 1.9.4 4.8.4 4.8 4.6-4.3 21-14 21-14 .3 6.2-4.8 8.6-4.8 8.6a8.2 8.2 0 0 1 .8 2.5 384 384 0 0 0 15.4-10.2c4.6 4 .5 10.4.5 10.4 1.6-.2 2.7-1.6 2.7-1.6 1.3 6.8-6.3 12.8-6.3 12.8 1.3 0 3.6-1.4 3.6-1.4-1.5 7.4-15.5 15.6-15.5 15.6 2 1.8.1 4.2-1.6 5.4-1.7 1-4.6 3.4-3.7 4.4.9 1 7.1-3.5 7.1-3.5 1 3.1-6.9 9.3-6.9 9.3 5.6.7 21-6.3 21-6.3-1.3 6-7 10.6-14.3 13.3-7.1 2.7-6.7 3.1-6.7 3.1 1.2 1 11-1.9 11-1.9-2.9 6.6-13.2 11.2-13.2 11.2 2.8 2.5 6.7-.4 10.6-3a62 62 0 0 1 15-6.9c5.7-2 9.8-.5 9.8-.5 5-1.5 9 .7 9 .7 9.2.7 10.2 4 10.2 4 1 .3 1.8.7 4.2 2.5 2.4 1.7 2.2 7.1 2.1 9.8 0 2.6-.8 2.6-1.3 3.3-.4.8-.5 1.6-.5 2.6s-2.4 7.4-16.7 7.4h-21.8c-1.2 0-2.6.7-2.6.7-6 3-2.8-2-10 3.8-7.2 6-10.9 5-10.9 5a96.2 96.2 0 0 1-13 11.2c-4.3 2.8-3.6 2.5.2 4.1s9.4 0 9.4 0c-3.6 2.5-1 3.6-1 3.6 4.6-3 7.6-1.9 7.6-1.9 1.5 4.2-4 10.8-4 10.8 2.1.2 6.1 0 6.1 0-1 2.8-4.9 5.9-7.8 6.8-3 1-2.5 1.4-1.6 3 .8 1.9.2 3.7.2 3.7-5.2-3.5-5.3-.4-5.3-.4-.6 4.1-.5 10.2-.5 10.2-3.6-1.8-3.8.6-3.8.6-1 3.8-5.4 8.1-5.4 8.1-.1-2.3-2.3-3-2.3-3-2.3 4.5-6.6 7.2-6.6 7.2-.5 3.8.6 9.1.6 9.1-2.8-.5-3.8-.5-4.2.1-.4.7.6 1 .6 1l35.6.9c.5 0 2.6.3 2.6 4 .1 4-3 4.2-3 4.2l-39-1s.2 1.1-1.8 2.2-1.3-1.2-2 3.6c-.5 4.7-8.2-.4-8.2-.4-1.3 1.9-4.3 4.3-4.3 4.3-1.8-5.3-3.6-7-6.4-2.4-2.7 4.6 5.1 3.8 5.1 3.8s45.7-6.7 48.2-7c2.5-.2 5.1 0 6.3 3.4 1 3.5-5.6 4-5.6 4l-46.9 5.2c-1 2.7-4.9 2.6-4.9 2.6.4 2.6-2.4 4.3-3.8 5.2-1.5 1-6 .6-6 .6-5.4 3.7-8 .8-8 .8-3.6 1.5-5.8.8-8.7-.4-3-1.3-2.7-4.8-2.7-4.8l-29.6 3a7.2 7.2 0 0 0-2.3 1.5c1 1.3-2.2 4.4-2.2 4.4 1 .6 2.6 2.3 2.9 6 .2 4-4.8 4.6-2.3 7.4 2.4 2.7 7.1.4 12.3-2 5-2.5 10-2.2 12.2-2.2 2.2 0 8.3 1.6 12.1 3 3.8 1.2 5.1.4 5.4-1.5.2-2 2-2.5 2-2.5-.5 1.9.5 2.8.5 2.8 1.5 0 4-1.4 4-1.4-.2 1.5-2.1 2.4-2.1 2.4-3.7 2.4 1.4 1.5 1.4 1.5a50.3 50.3 0 0 1 16.5-1.6 130.7 130.7 0 0 1 15.2 5.6c.4-1.3.2-4.4.2-4.4 3.1 1 4.4 2.8 4.4 2.8 1.3-1.3.5-3.6.5-3.6 10.2 5.8-2.2 8.4-5.5 9.6-3.3 1-3.3 2.4-3.3 2.4 2.8-.8 4.7-1.2 7-1.4 2.2-.1 1.4 0 6.9-1 5.5-1.2 8.3 1.2 8.3 1.2-4.6.2-6 1.6-6 1.6 3 1.9.2 3.6.2 3.6-4.1-5.2-7.7.2-7.7.2a16.3 16.3 0 0 1 6.8 1.4c.9.6 3 1.7 5.7 3 3.8 1.6 3 .6 6 1.6 3 1.2 1.8 4 1.8 4a7.3 7.3 0 0 0-4-3.2c-.2 3.1-3.3 3.7-3.3 3.7 3.9-4.2-4.4-6.1-8.3-6-3.8 0-6.7 2.5-6.7 2.5 7.8 7.4 13.2 5 13.2 5-1 2.6-7.4 1.5-7.4 1.5 3 2.3 2.6 3.9 2.6 3.9-1.6-1.6-4.1-.8-9.8-4.4-5.5-3.6-10.5-2.4-10.5-2.4 5.5 5.7-2 9.2-2 9.2-2.8 1.7 1.2 3.7 1.2 3.7-3.5.7-4-2.8-4-2.8-1.8-.4-4.4 1.8-4.4 1.8.2-3.5 4.9-1.7 5-5.4.1-3.7-4.3-6.6-17.5-4.8-13.2 1.9-17-2.4-17-2.4-1.2 0-1.3 1.2-1.3 1.2 2 2.1 3 3 2.7 4.4-.4 1.5.7 2 .7 2-2.5-.2-2.6-3-2.6-3 0 1.2-.5 1.2-1.3 2.5s0 2.8 0 2.8c-1.1-.9-3-2-1.2-4.5 1.3-2-2.8-4.5-2.8-4.5-1.7-1.7-6-.1-6-.1-9 1.7-14.2-4-14.2-4-1 0-3-.5-3-.5-9.5 4.2-17.9-5-17.9-5-7.1 1.4-10.4-2-12.5-5.5a12.3 12.3 0 0 0-5.6-5.4c-2.8-1.6-5.5-6.6-2.8-9.2 2.2-2.3 1.6-2.8 1.6-2.8-3.8-6.3 6.5-8.2 6.8-9.8.2-2.1 2.4-3.5 4.7-3.7 2.4-.1 2.4 0 4-1.4 1.4-1.7 4.3.3 4.3.3.7-.4 5.8-4.4 10.3-2.4 4.6 2 8.4.7 8.4.7 3.2-.7 29.9-4.3 29.9-4.3 1.6-2.7 3-5.8 10.3-7.4s12.8-6.4 12.8-6.4c-1.3-1.4-3.5-1.3-4.6-1.4-1.1-.1-3.4-2.2-3.4-2.2-1.4.7-2 .4-11.7 6.3-8.7 5.2-9-5.2-9-5.2h-18.7c-.3 4-3.3 5.6-3.3 5.6l-7 .3c-3.7-2-3.7-8.8-3.7-8.8a65.2 65.2 0 0 0-32.2 7.7c-23.4-11.9-41.7-14.7-41.7-14.7 28.4-3 43.5-11 43.5-11a67.5 67.5 0 0 0 30.4 9.7c.5-5.7 4.4-7.1 4.4-7.1z"/>
<path fill="#ffc221" d="M301 335.7c-5.9 3.4-4.8 5.3-4.3 6.4.5 1 .6 2.1-1 3.8-1.7 1.6-1.5 2.2-1.5 2.2.3 5.7 4.3 7 6 8.4 1.5 1.1 3.9 4.9 3.9 4.9a9.3 9.3 0 0 0 8.7 4.4c2.4 0 2.2-.2 1-1.3l-3.6-3a18.8 18.8 0 0 1 6.2 4.5c6 6.6 11.6 5.7 14 5.4 2.5-.3 2.1-1.8 2.1-1.8-.1-.2-2.4-.4-2.4-.4-9.2-.8-11.9-6.8-11.9-6.8a25.7 25.7 0 0 0 16.7 6.4c2.6-.1 2.4.7 1.9.8-.6.1-1.3 0-2.6-.1-1.2 0-1.2.2-1 .8.4.4 1.5.5 3 .4 1.4 0 .2.2 4 3 3.8 3 13 .6 13 .6-6-1.5-6.8-4.3-6.8-4.3-8.2 1-11.5-3.9-11.5-3.9a34.7 34.7 0 0 0-5.9-3.7c-4.6-2-5.3-6.2-5.3-6.2 1.3 2 3.8 4 7 5 3.3.8 4.1 1.2 4.1 1.2a4 4 0 0 1-2.4-.2c-3.2-1-1.4.3-1.4.3 3.6 2.9 4.5 2.6 4.5 2.6 9.3 1 4.7-2.7 4.7-2.7 6.5 1.6 7.7-.9 7.7-.9 1.4 3 6.4 1.8 6.4 1.8-6.7 3.3-1.7 2.3-1.7 2.3 6.8-1.2 8.2.5 8.2.5 1.7 1.7 3.6 1.5 3.6 1.5s1.2 0 3.7.5c2.6.5 6.6 2.7 10.3 2.3 3.6-.5 4.3.6 4.3.6-.8-.2-2.4-.5-5.2.8-2.9 1.3-7.9 1.7-15.2 0s-7.8-1.4-7.8-1.4a10 10 0 0 1 3.6 4.3c.3 1.2 1.6 1.3 1.6 1.3.5-1.6 2.6-2.3 2.6-2.3 1.5 1.3 5.4 3 5.4 3 .4-.8 0-1.4 0-1.4 2.7 2.7 6 1.9 6 1.9.8-.6.6-2.2.6-2.2 1.1 0 1.3.7 2 1.3 1 .4 3.4.1 3.4.1-1-.4-1.7-1.8-1.7-1.8 3.8-2.5 11.7-1.5 11.7-1.5 5.7 1.1 5 4.9 5 4.9 1.2.5 2.8 2.3 2.8 2.3.5-1.4 0-2.7 0-2.7 2.7 1.2 3.2 4.3 3.2 4.3 3-3.5-2.9-7.4-2.9-7.4 2.9-.4 6-.1 8 .1a14.7 14.7 0 0 1 7 3.3 19 19 0 0 0 6.2 2.7c0-.8-2.2-2.1-2.7-2.4-.5-.2-.7-1-.7-1 2 .4 3.3.2 3.3.2a47.2 47.2 0 0 1-8.7-6.2c2.6.3 4.1-1.3 4.1-1.3-5.5 0-5.7-1.3-5.7-1.3.7.1 3.2.8 6.5.1s7.8 0 7.8 0c-2.4-3.8-11.5-3.1-14.5-3-3 .2-4-.2-4-.2.4-.2 1-.7 3.2-.8 2.3 0 4.6.3 7.2-1.6 2.5-1.7 6.1-1.1 6.1-1.1-.8-1.8-5-2.4-8.6 0-3.6 2.2-7 1.6-7 1.6 5.8-.8 7.4-2.9 7.4-2.9-1.6-.5-2.6.1-6 .8-3.5.7-4.4-.5-4.4-.5 3.7-2.2 6.4-3.1 6.4-3.1-3.2-.8-6.2-2.2-6.2-2.2-3.3 3.2-6 5-12.4 1.7-6.4-3.5-9.8-3-9.8-3a15 15 0 0 1 15.7.6c4.2 2.5 5.5.5 5.5.5-1.4-.8-1.2-1.6-1.2-1.6 10.2 5.2 14.7 2 17 .5 2.2-1.6-1.1-3.6-1.1-3.6-.2 3.2-4.4 4.9-7.7 3.7-3.3-1.1-6.3-2.5-11-4.6-4.8-2-10.6-.9-16.2.3-5.6 1.1-6.2.6-6.8.2-.5-.5-.7-1.8-3.6-.7-2.8 1.2-9.4-1.9-13.5-2.9a25 25 0 0 0-16.5 2.7c-5.8 3.3-8.7 2.5-10.4 1.7-1.7-.8-2.9-3-1-5s2-2.4 1.9-5.2c-.2-2.8-3-4.5-3-4.5 2.6-2.6 3.2-3.3 2.3-4.4-.8-1.1.5-1.1 2-1.8 1.5-.6.8-.7.5-1.6-.4-.8-1.2-.6-1.2-.6-3.4.1-5.3-.9-5.3-.9-5.5-2.5-10.8 2.5-10.8 2.5-3.1-2.5-3.9-.8-4.5-.3-.4.6-1.6 1-3 1.2-1.4.1-3.5.6-4.1 2 0 0-.7 1 0 2 0 0 .9 1.4-.6 3-1.6 1.6-2.2 1.9-1.6 3.4.4 1.5.3 2.7-.4 3.6 0 0-.7-.8-.5-1.8.2-1 .2-1.7 0-2.2 0 0-1.6 1.5-1.8 2.6 0 0-.7-1.7 1.6-4 2.2-2.2 3.3-3.3 2.6-4.2-.5-.7-2.1.4-2.5.7z"/>
<path d="M307.5 360.6s-2.8-2.2-2.5-5.2c.3-3 .3-3.2 0-4 0 0-.6.3-.5 1.5l-.2 2.4s-1.5-2.4-2.2-2.9c0 0 .6-2.6-.2-3.7s-1.6-1.2-2.5-.8c-1.4.4-2.3 1.6 2 5.2 0 0 1.6 1.3 2.7 4 1.1 2.9 3 3.3 3.3 3.5zm14-8.3s-.3-1.6 1.3-4.6a6.5 6.5 0 0 0 .2-6c-.3-.8-.5-.5 1-1.8 2-1.6-.7-3.6 2.5-6.4 0 0 2-1.7 2.4-2.4 0 0-3.2 1.7-5.4 2.6-2.2.9-10.3 4.9-8.5 7.6 1.8 2.7 1.6 2.8 1.3 4 0 0-5-2.6-3.1-6.8 0 0 .7-1.6 2.7-3.6 2-1.7.9.4 4.6-1.8 0 0 3-1.8 4.6-4.1 0 0-2 1.2-2.7 1.4 0 0-4.4.8-6.2 2.6-1.7 2-5.5 5.1-4.3 8.7 0 0-4.3-.5-5.3-5 0 0-8.1 9.9 9 14.6 0 0 3 .9 5.9 1z"/>
<path fill="#ffc221" d="M396.2 318.9c6.4-.9 43.2-6.5 46.6-6.9 3.6-.3 5-.8 6.2 2.2 1.4 3.2-5 3.3-5 3.3l-44 5c-2 .2-2.5-.6-2.5-.6l-1.7-2.2s-.5-.6.4-.8z"/>
<path fill="#5a3719" d="M306.4 339s-4.8 9.9 13.9 12.3c0 0 0-1 .8-2.7.8-1.5 2.4-4.7.8-6.7-1.5-2 1.3-1 1.6-3.7.5-2.6-.2-2.3 1.1-4 0 0-5.8 2.1-8 4.7-2.3 2.6 3 4.5 0 7.4 0 0-2.8-1-4.3-3.9 0 0-3.6.1-6-3.5z"/>
<path d="M324.7 351.2s4.6 4 10 3.8c5.5-.2 7.9-1.6 9.3-3.8 0 0 1 1.6 1 2.7 0 0 4.8-3.9 13-.4s5.6 2.4 7.4 2.7c0 0-3.5-.6-11.4 3-8.2 3.7-29.6 2.4-29.4-8z"/>
<path fill="#5a3719" d="M317 333.5s2 .4 4-2c0 0-2.7.6-4 2zm-15.7 18.6s-3.8-3-1.4-3.6c0 0 1.8-.4 1.4 3.6z"/>
<path d="M385.1 371s2.2-3.7 8-3.7c6 0 6.6 2.8 14 3.3 0 0-8.9 2.5-15.1.3a8.9 8.9 0 0 0-6.9.1z"/>
<path fill="#5a3719" d="M326.6 353.9s9 5.3 16.8-.5c0 0 .6.6 1.2 2 0 0 6-5.7 16.6.5 0 0-1.3-.2-6.3 2-6.5 2.8-22.9 4.7-28.3-4.1z"/>
<path d="M360.8 359.3s8.5 1 15.6.5c4.4-.2 9.2-1 6.9.4-2.5 1.5-1.3 1.7 8.9.8 10-1-.1 1.9 6.8 2.8 0 0-16.9 8.6-38.2-4.5z"/>
<path fill="#5a3719" d="M383 353.9s5-1.8 9.7.3c4.5 2.2 3.8 2.4 6.9 2.7 0 0-2.1 3-7.2.6-5-2.5-6.4-3-9.4-3.6zm5.6 15.2s4.9-2.4 10.3.1c.6.4 2 1 3.5 1.3 0 0-4.1 1.3-8.4 0a30 30 0 0 0-5.4-1.4zm-24.2-8.7s11 1 16.8-.2c0 0-6.8 3.3 10.4 1.8 0 0 3.7-.4 3.3.2-.5.6-.8 1 1.1 1.6 0 0-12.7 5.8-31.6-3.4z"/>
<path d="M310 351.2s.1.8 2.5 1.9c2.5 1 3.8 3 4.3 4a6 6 0 0 0 3.7 3.1s-8.6 1.8-12.3-2.7c0 0-3-3.1 1.7-6.3"/>
<path fill="#5a3719" d="M377.2 370.9s-3.3-.3-8-1.8c-4.6-1.7-5.8-.3-8.4-2.2-2.6-2-7.9-.8-8.8-.6-1 0-3.8 0-.4-2.3 0 0-2.7 0-3.8-1.5 0 0-1.2 1.3-6 .8 0 0 2.2 3.3-6.3 2.3a11 11 0 0 0 11.8 3.3s-.6 2.6 3.3 3.6c4 1 4.7 1.7 6.8 2.5 0 0 .2-1.6-5-5.4 0 0 2.8-.1 6.8.9s13.1 3.2 18 .4zm2.1 3.9s.9 2 3.5 1.5c2.5-.5 6.7-1.2 10.8.9 0 0 .8-3.5-7.5-3.7 0 0-5.1.2-6.8 1.3zm-69.6-22.4s-3.2 2.6-.3 5.3c2.6 2.5 6.7 2.3 8.7 2.2 0 0-1.3-.6-2.2-2.2-1.1-1.5-1.1-2.6-3.3-3.6-2.2-1-2.5-1.2-2.9-1.7zm-3.2-13.5s-4.9 10 13.9 12.4c0 0 0-1 .8-2.7.6-1.5 2.3-4.7.8-6.7-1.6-2 1.2-1 1.6-3.7.4-2.6-.3-2.3 1-4 0 0-5.8 2.1-8 4.7-2.3 2.6 3 4.5 0 7.4 0 0-2.8-1-4.3-3.8 0 0-3.6 0-6-3.6z"/>
<path d="M355.4 362s4-.7 13.9 3c10 3.7 14.1 2.8 15.6 2.8 0 0-5.6 2.9-14.3-1-7.7-3.4-8.2-2-15.2-4.8z"/>
<path fill="#ffc221" d="M417.8 359.8s2.2-.1 3.6.4c0 0 .8-.7 3-1 0 0-1.4-1.2-6.6.6zm-6.8-5.6s2.2 0 3-1.2c0 0-1.3-1.4-3-2.2 0 0 .4 1.7 0 3.4zm-76.5-25.4s-.5-1.2 2-1.5l33.3-4.8s1.6 0 1.9 1c.2 1.3-.2 2.1-7.7 3-7.5.8-27.3 3.3-27.3 3.3s-2 .4-2.2-1z"/>
<path fill="#ffc221" d="M364.7 327.4s0 4.4 4.5 5c4.3.7 5.8-.2 7-2.5.3-.6 1.6-5.2-.3-5.5a7 7 0 0 0-3.1.3c-1.5.7-2.9 1.4-2.5 2.1 1.2 1.7 1.4 2 1 2.2-1.1.3-1.9-.7-2.1-1.4-.2-.8.6-1.3-2.3-.8-1.2.1-2.2.1-2.2.6z"/>
<path fill="#ffc221" d="M383.3 324c2.2.3 2 5.1-.6 7.3-3 2.4-5.7 1.5-5.7 1.5-1.6-.6-1.3-.4-.2-2.1 1-1.7 1.6-3.9 1-5.4-.2-.5.3-1 1-1 0 0 2.2-.5 4.5-.3z"/>
<path fill="#ffc221" d="M385.3 324.5s1.6 2-.4 5.8c0 0-1 1.1 1.1 1 2-.2 6.6-2.3 6-5.1 0 0 0-.7-1.3-.7-1.2.1-.2-.6.3-.8.5 0 2-.7-2-3.3 0 0-.6-.5-1.4-.3-.6.3-2.7 1-2.7 2.4 0 .5.4 1 .4 1z"/>
<path fill="#ffc221" d="M389.6 321s3.3 2.3 3.2 3c0 .6-.3 1.6.6 1.4.8 0 4.2-.8 3.3-3-1-2.3-2-3-3.5-3.7-1.6-.5-2 .2-3.4 1.3 0 0-1 .6-.2 1zm-17.1 3.2s.5-1.6-2.4-2.3c0 0 1.2-1 3.7-.5 2.3.5 2.1 2.2 2.1 2.3 0 0-1.9 0-3.4.5zm6.2-.4s3.2-.6 4.7-.4c0 0-1.6-3.6-6-2.5 0 0 1.6 2 1.3 2.9zm5.6-.8s0-1.2 2.8-2.3c0 0-1.3-1.3-3.3-1.1-2.1 0-2.6.8-2.6.8s2.5.9 3.1 2.5zm1-4s1.9.6 3 1.5c0 0 1.6-1.8 3-2.2 0 0-2.7-1.4-6 .8z"/>
<path fill="#5a3719" d="M294 310.3s7.7-6.5 12-5.7c4.3.8 2.2.3 6.8-.5 4.8-.7 9.6-1.2 11.6-1 0 0-5.8-4-15.9-4 0 0-7.1 2.5-12 5.8 0 0-9.6-5.3-19.4-2.2 0 0 10.7 4 17 7.6z"/>
<path fill="#ffc221" d="m375.6 321.6 1.3-.2s2.1 2.6.6 2.6c-1.3 0-.9-.3-1-1a2.5 2.5 0 0 0-1-1.4zm-9.7.2s-.8 1 .7.8c1.8-.3 1.5 0 3.3-1.3 0 0 1.3-1.3 3.5-.5 0 0 1.8.6 3.3-.1 1.6-.8 1.9-.7 2.7-.7.8.1.8.3 1.8-.5 1.2-.8 3-.2 4.2-1.2 1.2-1 2.7-.1 0-2 0 0-.6-.6-.5-1 0 0 1 .3 1.9 1 .8.7 2 .5 2.3.3 0 0 .2-2.4 2.5-4.6 2.4-2.2 2.4-2.3 1-2.3s-3.7-.6-4.5 0-7.7 5.1-11.8 5.9c-4 .8-7.7 2-10.4 6.2zm-108-25s12.5 3.2 15.2 4.5c0 0 .7-2-5-3.6 0 0 13.8-.4 28.2 6.2 0 0 7-6 29.6-4.2 0 0 0-2 .2-3.5 0 0-15.8-.5-30.3-9.3 0 0-13.1 6.4-37.9 10zm69 6c-.7-12.7 4-13.9 4-13.9s2.4.1 4.8.5c0 0-3.8 4.6-2.8 13.7 0 0 .4 1.4-2.8 1.4S327 303 327 303z"/>
<path fill="#5a3719" d="M330.3 311.2s-2.4-2.4-2.6-5.2c0 0 0-.7 2.3-.7 2.4.1 2.7-.1 3.3 1.3.5 1.3 2 4.1 2.4 4.5z"/>
<path fill="#ffc221" d="M335.4 304.9a30.2 30.2 0 0 1-.3-4.9c.2-7 1.3-6.4 1.8-5.5h2.5s-1.8-8-4-3.3a20.3 20.3 0 0 0-1.6 11.2c.2 2.1.4 3.4.7 4.2z"/>
<path fill="#5a3719" d="M362.8 304.9s4.6.8-2.5 2.4c0 0 .3 8.7 8.7 2.6 0 0 5.1-3.2 8.5-4.5 0 0 1.8-.5 1.6-1.9 0 0 .2-1.6-1.6-1.2 0 0-1.5 0-2.5-.3 0 0-1-1.2-1.6-.8-.7.5-2.3.2-1 1.8 1.2 1.4 1.6 1 2.2.6.6-.4 3.3-1.4.8.8s-4.4-1.3-5.2-2zm-23.5 1h-2s-1.2 1.6-2-1l-.7 1.7s2.4 9.3 4.7-.7z"/>
<path fill="#ffc221" d="M336.4 295.1s-1.1 6.2.3 9.8l22.5.5s-.3-4.3 0-10.3H356s-.5 5 0 8h-.6s-.4-4.2 0-8h-2.6s-.4 4.6-.1 8h-.5s-.4-4 0-8h-2.5s-.5 4.1 0 8h-.7s-.5-4.1 0-8h-2.9s-.6 3.9 0 8h-.5s-.7-3.9 0-8h-2.9s-.6 4.4 0 8h-.6s-.4-4.2.1-8h-2.7s-.7 3.7 0 8h-.7s-.4-3.2.2-8h-2.7zm23.7 11.1s-.5-11 1.5-13.8c2.1-2.8 2.6-2.3 6.2 0s8.2 4.8 9 5c.7.3 1.8.6 1.8 2.6s.3 2.6-2.8 0c-.4-.3-1.9-1.6-3-2-2.7-.8.7.6 1.7 2.1.8 1.2 1.6 1-.6 1.6a233.6 233.6 0 0 0-13.8 4.5z"/>
<path d="M368 298.3s-1.7-2 .5-2.4c2-.5 2.2 3.2 2.6 5.4.3 2.3-2.6-2.2-3-2.9zm-3 9.7s-2.4.9-.8 1.6c1.6.8 6-2.9 4.5-2.6-1.6.2-3.7 1-3.7 1zm3.3-3.4s2.1-.2 1.6.7c-.3 1-1.1.4-1.4.1-.4-.1-1.8-.7-.2-.8z"/>
<path fill="#ffc221" d="M379.7 301.7s.5 4.2 4.1 5.3c0 0 2.2.5 1.7-1.3l-.6-2.2c-.3-.7-1.8-1.1-2-1.2-.1 0-.3-.5.7-.1 1 .3 1.1.4 1-.4 0-.7-.6-.4-1.5-.8-.3-.2 0-.5.4-.4.4 0 1.3.4 1.3-1 0 0 .2-.9-.9-.9-1.2 0-1.1-.6-.8-.7.4 0 1.6.8 2-.7.4-1.4-1.7-.5-1.4-1.3.3-.8 1.8.4 1.8-.5.2-.8 1.4-1.2-.7-1.5-.9-.1 0-.6 1-.4 1.2.1 1.9-1.2 2.5-1.7.8-.5 4.5-2.7-.6-2-5 .7-6.5 3.2-6.7 3.7a13.9 13.9 0 0 0-1.3 8.1z"/>
<path fill="#ffc221" d="M391.4 305c.7-.1 1.3 0 1.5.4.8 1.7-1 1.2-2.1 2.4s-1.2 1-2.6.6c-1.5-.5-2-2.7-2-2.7-.2-.8.4-.8 1.1-.7 0 0 2.5.3 4.1 0zm-5.4-.9s0 .4 1 .5c.7 0 3.2.3 4.8-.2 0 0 .4 0 .2-1 0 0 0-.7-1.3-.4-1.4.2-3.3 0-4-.1-.6-.2-1 0-.7 1.1zm-.2-3s0 1.2 1.2 1.4h3.7c.6 0 1.5-.3 1.6-1 0-.9.3-1.4-1.4-1s-3.6.1-3.8 0c-.2 0-1.3-.3-1.3.5zm.6-2.8s-.4.7-.3 1.2c0 .6 1 .9 2.7.9 1.7 0 3.3-.3 3.4-.9.1-.6.5-1.3-.8-1a12 12 0 0 1-3.8 0c-.7-.3-1.2-.4-1.2-.2z"/>
<path fill="#5a3719" d="M450.2 305.1s0 1.1.9 2.4l-48.2-1.4s.6-.4.8-2.3z"/>
<path fill="#ffc221" d="M386.8 296.4s-.4 1.2.4 1.4c.8.3 2.3.5 4.3.2 0 0 1 0 1.3-1 .4-1 .3-.5-2.4-1 0 0-.9-.3 1.6-.3 0 0 1.5 0 1.6-.2.3-.2 2.2-1.8-.3-1.6-2.4 0-1.2-.5 0-.5 1.3 0 1.6.3 2 0s0-.2-.6-.9-.2-.5.3 0c.5.3.8.4 1.3 0 .6-.6-.4-1.3 0-1.2.4 0 .7.9 2.2.2 1.7-.9 3.8-.5 4.4 0 .5.4 2.2 1 3.2 0s-1.2-2-.3-2c1-.2 1.6.2 2-.6.4-.8-1.5-1.4.3-2 1.7-.4.2-5.3-.3-5.7 0 0-2 1.1-4.1 4.5-2.2 3.5-3.5 5.6-6.4 4.5-4-1.6-6.3.7-7 1-1 .7 2.2 1 .3 1-1.8 0-1.8.2-2 .5-.1.2 0 .5.4.6.3 0 1 .6-.1.6-1.2 0-2-.2-1.6 1 0 0 0 .2.6.3.7 0 1 .8-.3.8-.8 0-.8.3-.8.4zm4.4 12s-.8.6.3.7c1.2 0 1.8.3 2.2-.3s2-.4 1-1.3c-1.2-.9-1.9-.4-3.5 1z"/>
<path fill="#ffc221" d="M396.2 293.9s4-3.8 7.3-1.2l3.8 3s.4.3-.5 1.1c-1 .9 0 .9 1 .3 1-.5 1 0 1.5.6.5.5 1.2.8-.4.8H404s-2.2.2-1-.8c1-.9.8-2 .3-2-.6 0 0 .6-.4 1s-1.1.8-2 .8-1.4.6-.2 1c1.3.5-.1.8-.8.8s-3.7.2-.6.6c3.2.4-.3.3 2 1.6 2.7 1.5.8 4.6-.2 4.9 0 0-1 .6.3.4 1.4-.2 2.1-.3 1.1.4-.9.8-2.8 3.1-5.4 1.3 0 0-1.3-.5.9-.7 2.2 0-1.8-.6-2.5-1-.6-.4-3-3-1.5-2.7 1.6.3 1-.6 0-.9-.9-.3-1-1.7 0-1.5 1 .4 2.2 1 3.1.9.9 0 .6-.4-1.2-.9-1.8-.6-2.5-.7-2.1-2.2.4-1.5 2.4.6 2-.5-.5-1.2-2.3-.6-1.4-2s1.2-.9 1.6-.7c.4.1 1 0 0-.8-.9-.6 0-1.4.2-1.6z"/>
<path d="M399 295s0-.5.8-.4c.7 0 .5-.3.7-.5.2 0 2 .6.3 1.2-.6.2-1.6 0-1.7-.3z"/>
<path fill="#ffc221" d="M403 299.2s-1.4.7-.2 2.1c1 1.3 1 1.7 1 2.5-.1.8 46.4 1.3 46.4 1.3s-.1-3 1.8-4.7l-49-1.2z"/>
<path fill="#5a3719" d="M450.9 304.3s.2-2.6 1.6-3.4c.8-.5 1.8-.2 2.2 1.8.7 2.9-1.8 5.4-2.9 4.3-1-1-.8-2.7-.8-2.7z"/>
<path fill="#7b3c20" d="M397.6 315.1s3.1-2.7 3.6-3.8c0 0 8.4 6 7.9.5 0 0 0-1.5.2-2.9 0 0 3 .4 3.5-2l-7.8-.3s-.8-.2-2 1.1-3.7 2.7-6 1.5c0 0-1-.8-2-.1-1 .7-1 .8-.2 1.6s2.5 3.1 2.8 4.4zm18-16.4-4.6-.1s-1.6-2.4-4.9-5c0 0-1-.4.8-1.9 2-1.5 2.5-3 2.5-3.8 0-.6 0-1.8.7-1 .6.9 5.3 5.2 6 4 .7-1.3.9-1.9.9-2.3.2-.4.3-1.6 1-.3.7 1.2 1.1.9 1.2 4 0 0 0 3.3.6 4.4 0 0-6-1.9-4.1 2zm-19.8-9.8s3.5 2 5.2-.6c1.6-2.6 2.8-3 1.5-5.7-1.3-2.4 0-3.6 1-4.7 1-1 1.9-.8 2-5 .1-4 3-5.3 4.2-6.6 1.3-1.2 4.4-3.1-.4-4-4.7-.7-14.3-3.2-16.7-6.9-2.5-3.7-3.6-1.5-3.6-1.4 0 .2-.8 2.9 1.6 7.8s4.5 8 7 9.6c2.3 1.7 4.4 2.5 3.2 5.8s-3.2 9.1-5 11.8z"/>
<path fill="#5a3719" d="M408.7 278.5s.5 8.5 6.7 11.5c0 0 1.4-3.3.8-6.6 0 0 2 .2 2.6 1.1 0 0 0-2.4-2.8-3.3-3-.9-1.5-6.4-.5-7 1-.6.7-1.8 0-2.8-.7-1-.8-2.4 1.6-1.8 2.4.6 2-.6.5-1.8-1.4-1.2-1.3-2.7.7-2.7s5.5-2 3.4-2.6c-2-.6-2.7-1.3 0-2 2.9-1 4.3-1.9 2.2-2.1-2.2-.3-3.6-1-1.5-1.3 2-.4-.3-2.5-2.7-2.6-2.5-.1-7.5.8-3.5-2.4s-5.7-.8-1.7-3c4-2-1.4-1.2-2.2-1.2-.7 0-.7 0-.4-1 .3-1.1-.5-1.7-1.8-1-1.1.7-1.1.7-1-.8 0-1.5-1.4-.4-2.3 0-1 .4-3.1 2-4.1 1.2-.8-1-1.3-1.9-4-.3-2.9 1.7-2.2.3-2.1-.5 0-.8 1-3.6-2.7-.5s-.8-3.3-3.7-1.2c-3 2.2-3.3 2.6-3.8 1.7-.4-1-1-1.8-4.3.3-3.3 2-.8-1.3-.4-2 .5-.8 1.9-5.5-1-1.8 0 0-1.4 2.6-4.5-2 0 0-3.2 4.6-4.1 2.5-.9-2-1.7-2.2-2.8-.9-1 1.3-.3 0-.7-1.2-.5-1-.8-3.1-6.3.8-5.4 4.1 2 1.2-2.2 3s-14.3 7.5-5.1 6.2c9.3-1.3-4.5 3.6-1.3 4.5 3.2.9 2.2 3.7 14.3.4 12-3.3 10-.5 16.2-3.2 6.2-2.6-1.4.9 6.8.8 8.3-.3 1.4 0 3 1.6 1.7 1.7 8.6 5.7 15 6.5 6.6.6 8.2-1.8 6.4 1-2 2.8-2.6 3.9-3.7 5-1 .8-4.2 3.1-4.3 7 0 3.9-5 4.5-3.2 8.9l4.5-4.4z"/>
<path fill="#5a3719" d="M419.4 288s-1.5-1.1-1.5-3c0 0 1 .2 1.5.8 0 0 3.7-4.2-.9-5.7-4.4-1.6-2.2-5.6-.6-5.6 1.5 0 1.8-.4.5-2.2-1.3-1.6-1.2-1.8 1.4-2.2 2.4-.4 2.2-1 1-1.6a8.2 8.2 0 0 1-2-1.6s7.2-3.1 4.9-4.6c-2.4-1.4 0-1 2-2.5 2.2-1.5 2.5-1.8 2.7-2.4 0 0-2 .2-3.6 0 0 0 1.8-1 0-2.5s-2.4-2.7-5.4-2c-2.8.6-1.8-.3-.8-1.5 1.2-1.2.7-1.9-1.4-2.2 0 0 .3-1.2 1.8-2.7 0 0-3.9.3-5.2-.4 0 0 1.6-1 1.6-2.4 0 0-2 .8-4.8.5 0 0 1.7-1.4 1.7-2.6 0 0-4.8 1-7 2.7 0 0-.4 0-.7-.6-.4-.4-.7-1-5.9.6 0 0 .6-2.3 1.9-3.3 1.2-.8 1-2.6-7 2.4 0 0-1.1-.6-2-3 0 0-1.8 2.4-3.1 3.2 0 0-1.2.5-1-1 .2-1.7-.8-.6-1.6 0-.8.3-1.4 1.5-1-1.7s-1.2-3.9-1.2-3.9-2.4 3.6-3.9 4c0 0-2.6-2.6-3.6-4.3-.9-1.6-.9-2.3-1.8.7-1 3-2 3.2-2 3.2s-1.7-1.4-1.9-2.2c0 0-.2.9-.8 1.2 0 0-1.4-1.7-1.3-4 0 0-8.7 4.8-9.8 7.7 0 0-8.2-.5-11.5.1 0 0 .8-2.6 3-4 0 0-2.2-.2-2.3-2.4 0 0 1.7.2 2.8 0 1-.3-1.5-3.4 1.2-3.5 2.7 0 4.4 1.3 3.3-2.3-1.3-3.6-.8-3.6-.8-3.6s4.8 2.8 5.5 2c.8-.6-.6-2 3.6-1.4 4.2.8 3-1.6 4.7-1.8 1.6 0 2.4 1 1.4-6.5s5.1 3.7 1-7.7c0 0-1-3.5-3.6-5 0 0-.6 2.5-3.3.4-2.9-2.3-8.4-3-6-4.8 2.3-1.8 3.4-4 2.7-5.5 0 0-2.8 2.8-7.5.8-3.8-1.7-4.6 1.3-8.4.5 0 0 0-1 3.2-3.6 3.3-2.6-1.8.8-3.8 1.3-2 .5-2.6 0 1.6-3.3 4.3-3.3 12.8-9 11.6-13.9 0 0 2 2.6 7.3.7 5.2-1.8 9.2-2.5 10.7-5.3 1.6-2.6 5.7-5.3 6.8-6 1.1-.6 2.5-1 .9 1.6-1.7 2.6-4.3 7-11.5 10-7.3 3-10 5.1-11.4 6.8-1.3 1.5-8 5-3.6 4.5 4.3-.7 11.7 0 8.2-1-3.4-1-7.4.6-4.2-2.3s3.8-3.8 8.4-5.8c4.7-2 9.8-6.4 9.3-1.6-.5 4.6-9.2 9.7-11.3 11.2-2.1 1.6-1.3 1.4-1.3 2 0 .6-.3 1.9-1.2 2.4-.9.6-.6 1.3-.4 2.6.3 1.4-.2 1.9.4 2.1.7.2 1.3.3 1.5 1.2.3 1 .7 1.1 2 1 1.2-.1 2 0 2 .8.2.7 1.4 1.7 1.5-.5.1-2.3 1-2.7-1.3-1.7-2.3 1-2.8.7-2.7-.4 0-1-.3-.8-1.2-.9-1 0-1.3-1.4.4-2.3 1.7-.9 1.7 0 3.8-1.8 2.1-1.8 2.1-2.2 2.5-3 .3-.9-3 2.4-4.7 3.1-1.6.8-1.1-.5-.8-2.3.2-1.8 4.2-4.3 6-4.3 1.9 0 6 1 4.3 3.6-1.8 2.5-6.9 5.5-4.8 5.7 2.2.2 2.6-.6 3.9.4 1.2 1.2 0 3.5-.5 4.7a9 9 0 0 1-2.4 3s-2.3-4.2-2.2-.9c0 3.3-.5 4.4 0 4.5.5.2 3 1.9 3.8 1.9s-4.4 2.4-2.2 2.6c2.2.2 5.8-1 7-3.3 0 0-4.6-1-6.3-2.7 0 0 5.1-1.2 3.7-6.2 0 0 5.2 1.4 3 3.8-2.3 2.3-3.7 2-1.7 2.6 2 .6 2.8 1.2 2.8 1.2s1.4.7.6 1.7c-.8 1.2-.8 2.8 0 2.7.5 0 2.7-1 1-2-2-1.2 2-1 .3-2-1.6-1-2.1-1.1-2.5-1.6-.5-.4 21-13 10.1-8.3 0 0 2.3-5 5.5-5 3 0 3.3 2.5 1.6 4.5-1.9 1.9-3 4.9-7.2 5.5 0 0 6 3-1.1 7.8 0 0-1.6.7-1 1.2.6.6 4.8-1.8 5.4-3.2a5.9 5.9 0 0 1 3.1-3.2c1.6-.8 9.6-6.2 12-10.3 2.4-4 3-4.1 7.6-7.9s3.9-3 4.5-3.9c.6-.9.8-2.4 3-3.6 2-1.2 10.4-5.8 13-7.7 2.6-1.9 8-5.4 10.2-8.3 2.3-2.9 8.5-6.6 10-6 1.6.8 0 3-3.7 5.7s-12.6 10-14.1 11.2a47.7 47.7 0 0 1-12 7c-2.8.4-2.5 1.4-4.2 3.3s-5.7 5.7-7 6.7c-1.3 1.2-4.5 3.3-4.7 4.9-.1 1.5.6 1.7-2 4-2.5 2.5-9.9 7.9-12.7 8.7 0 0 4.8 1.6 2 4.9-2.9 3.2-2.7 2.7-2.9 3 0 0 7.2-1.2 2.2 4.5 0 0-1.1 1.7 1.2 0 2.4-2 1.4-4.4 1.1-4.7 0 0 3.9-2.5 8.4-2.5 4.4 0 4.2-.4.2-1.5 0 0 2.9-3.5 5.2-1.7 2.5 1.6 1.7 2.7-.8 4-2.6 1.4-6.3 1.8-9 3.4 0 0 5.2 1 8-1.1 2.8-2.2 3-1.1 3.3-.7.4.4.7 1-.5 2.9-1.3 1.8-1.4 1.8-1.3 2.2 0 .5-.2 1.7-2.7 2-2.4.5-3.7 1.6-2.8 2.8.8 1.2.8 4.1-1.3 3.9-2.1-.3-1.6-2-2.4-2.7-.8-.6-2-1.6-5.8.3-3.8 2-4-.4-3.9-1.7 0 0-2.4 2.2-4.5.3-2-2-.2-2.8 1-3.8s6-3.1 3.1-2.7c-3 .3-7.2.5-8.1-1.6-1.1-2.3 2-2 2.6-1.8.5.1 2.4 1.8 2.6-.3 0-2.3 3.2-2.5 2.1-3-1-.3-2.6 1-3 1.6 0 0-2.2-3.1-5.8-2.2-3.6 1.1 1.1.7 2 .9 1 .1.4 2-2.8 4.9-3.2 2.8-1.8 2 .6 2 2.5 0 8.3 0 5 2.7-3.5 2.9-4.9 4.2-6.6 3.8-1.8-.5.1-1.7 1-2.3.8-.4 1.2-1.3-.5-.6-1.7.6-2.2.7-3.6-1.6-1.3-2.5-.8-1.7-.2-3.3.6-1.6 1.9-3.2.3-2.6-1.6.6-1.4.6-1.3-1.2.1-1.8-1.8-2.2-1.8-2.2s.9 1.8.1 3c-.6 1.1-.7 1.5.4 1.8 1.2.3 2.2 1.3.7 2.3-1.6 1-1.3.9-.4 1.5 1 .7 2.4 1.4.9 2.9-1.5 1.4-.3 1 .5 1s2.4.6 2.4 2c0 1.5 0 1.8 2.4.5 2.4-1.4 7.2-1.2 7.2.6-.1 2-.7 2.5 2 .8 2.5-1.6 3.6 1.5 5.4 0 1.7-1.5 2.9-3 5-.4 2 2.6 1.3 3.3-1.2 5.2-2.4 1.8 1.3.4 3.1-.6s7.2-1.6 10.3-.2c3 1.3 3.9 1 6 0 2.4-.8 3.5-1 6.9 1.2a13 13 0 0 0 7.8 2.6s-3.7 1.5-8 1.7c-4.2.4-6.4 1-7.2 1.7 0 0 2.5 1.7 3 3.5 0 0 2.8-.4 4.1.1 0 0-.6 2 1 3.1 1.8 1.1 3 1.5 1.7 3s2 .8.1 2.8c-1.8 2.2-2.3 3.1-2.4 4.9 0 1.6.4 1.8-1.2 2-1.6.2.3 2-.5 4.3-.7 2-5.3 1.8-5.1 7.7 0 0 1.3-2.8 4-5.4 2.7-2.4 2.8-2.7 2.7-4.2 0-1.5-.1-1.2 1.4-2.3 1.3-1.2-.7-2.2.8-3.9 1.4-1.6.1-1.3 1.9-2.9 1.6-1.6-1.6-1.8.2-3.5 1.6-1.6-4.3-3.7-2.5-4.7 1.7-1.1 4.6-2.7-5.3-2.5 0 0 2.4-4 10.7-3.1 0 0-2 1.6-2.3 3.1l1.6.7s-.4 1.1-2 2.4c0 0 4.5 2.5 5.2 4 0 0-2.7.8-3.4 2 0 0 1.2 1.4 1.6 3 0 0-3-.3-3.4 2-.4 2.2-1.3.7-1.3 2s0 1.9-1 2.1c-1 .2-.2 1.3 0 2 .1.8.5 2.5.4 3 0 0-1.6 0-2.3.2 0 0 .5 3.3-1.3 3.7-1.8.5 1 1.2-1 1.5-1.9.3-1.6.5-4 4.7 0 0 2-1.1 4-2.5 2.2-1.4 0-1 3.4-4.3 3.4-3.5 2.8-3.7 2.5-5.4-.3-1.7-.3-3.1.9-4.8 1.3-1.6 1.6-3.5 6.1-3.2 0 0-1.3-3-3-3.7 0 0 2.2-1.5 4.4-1.6 0 0-2-2.5-6-4.7 0 0 3.3-2.9 4.1-4.2 0 0-1.5.3-2.8 0 0 0 .6-1.3 3.6-3.3 0 0 1.7 1.5 1.5 3.1 0 0 5.2-2.9 8-2.5 0 0 1.5 3.6-5.6 10.5 0 0 4.4.4 6.3.2 0 0-1 3.3-6.4 5.3-5.3 2 1.1 4.4-4.3 4-5.4-.4-3.8 1.4-3.6 4.1.1 2.8.3 5.7.2 6.4 0 0-4.3-1.4-4.2 2.8 0 4.2-2.3 5.1-2.7 5.5 0 0-1.3-1-3.2-1.8 0 0-2.7 5.1-7 8.1z"/>
<path fill="#7b3c20" d="M413.2 235.2s1.4-.2 4 1.4c2.4 1.6 4.9-1.7 2.2-2.5-2.9-.8 0-1.9 2.4.2 2.6 2 3.6 1 4.5.3 1-.7 2-1.2.3-2.3-1.7-1.2 1.2-.6 2.5.3 1.3.8.8 1.6.6 1.8-.2.3-.3 3 2.2.5 2.6-2.6 3.9-5.1 3.8-6.4 0 0 1.4.9 1.6 2.5.2 1.6 2.2-.8 2.8-1.7.7-.8 1.7-3.1 1.6-4.8 0 0 1.7 2.7 4.3 0 2.5-2.6 1.5-1 4.5-1.8a18.8 18.8 0 0 0 9-5.5c2.1-2.6 2.3-.8 5-1.5s8.1-4.4 8.6-6.5c.5-2 .4-3.3-.3-2.5-.8.6-.5 0-1.6-.6-1.3-.8-3 .9-3 .9s1.7 1.3.4 1.9c-1.3.5-2.4 2.4-5 1.6-2.4-.7-5 2.4-5 2.4s2.2 1.7-.8 2.8c-2.8 1.2-2.4 1.5-4.1.3 0 0-3.1 3.9-5 4.7 0 0-.7 0-1.2-.8 0 0-2 2.3-3 2.7 0 0-1.4-1.2-2.5-1.6 0 0-2.5 3-4.5 4 0 0-.6-1.2-1.9-2 0 0-.6 4-4.9 6.3 0 0 .3-1-1.9-2.5 0 0-5.3 4.6-7.3 5.1-2.1.4-.3-1 0-1.6.3-.6 1.6-2.5-1-3.3s-2 .6-2.6.8c-.6.3-.6-.5-2.4-.2-1.6.2-1.4 1-2.1 1.3-.8.2-3.8-.5-3.6 1.4.2 2 1.6 3.4-1 4.5-2.7 1.2 1 1 4.4.4z"/>
<path fill="#5a3719" d="M423.9 229.7s.6-2.6-1.6-3.8c0 0 14-2.2 3.4-7.6 0 0 12.7-2.5 9.7-6.5s-6-3.3-6.3-3.1c-.4 0 2.7-2.4 3.5-2 .8.3 11 4.1 8.3.8-2.5-3.3-2.3-3.1-2.7-4.1 0 0 3.3 0 8.4 4.9 0 0 1-1 1-3.1 0 0 3.5 1 4.7 2.1 0 0 .6-1.2.3-2 0 0 3.2 1.7 4.3 3.5 0 0 1.4-1.2 1.6-2.7 0 0 3.1 1.3 4 2.3 0 0 1-1.4.6-3.3 0 0 5.1 1.5 5.9-1.6 0 0 5.1 1 1.8 3-4.4 2.7-.5-.6-5 2.5-3.4 2.5-5.3 5.3-7 4.7-1.2-.5-2.7 3-4.3 1.4-1.6-1.8-1.6-1-2.9.8a26.1 26.1 0 0 1-3 3.7s-.8-.5-1.6-1.3c0 0-1 1.7-2.2 3 0 0-1-1.4-2.7-2.2 0 0-2.6 3-4.1 4 0 0-1.6-1.5-3.1-2 0 0-.3 4-3.4 6 0 0-.6-1.2-2.7-2 0 0-1.5 2.4-4.9 4.5z"/>
<path fill="#5a3719" d="M416.5 223.5s-1.7 1.3-.6 2.7c1.1 1.4 1.2-.3 2.6-.3 1.4-.2 18.6-3.2 3-7.8 0 0 .6-.7 3.3-.8 2.7-.4 12.5-3 8-6.5-4.6-3.4-8.5 1.2-4.6-3 3-3.3.6-4.9.6-4.9s-9 6-11 7.2c-2 1-5 3.3-1.5 4.3 3.4 1 5.7-3.7 6-2.6.3 1-6.9 5-5.8 6.9 1 1.8.8 3.4 2.5 3 1.8-.3 6.6.9 2.7.8-3.9-.2-5.2 1-5.2 1z"/>
<path d="M422.7 214.8s-1.6 1.2.5.6 6.3-1.5 5.6-2.5c-.9-1.2-3.6.1-6 2z"/>
<path fill="#7b3c20" d="M450.4 196.9s8-.3 11.3 2c3.3 2.2 4.9 3.7 5.9 4 0 0-.2 3-5.3.8 0 0 .3 1.5-.3 3 0 0-1.9-1.4-4-1.8 0 0-.5 1.1-1.1 1.8 0 0-2.3-2.3-5-3l-.8 1.6s-2.8-1.7-5-1.7c0 0 .5 1.7 0 2.5 0 0-5.7-4.7-10.9-4.1 0 0 2.5 3.7 4.1 5.5 0 0-10.5-.8-8.7-6.5 1.7-5.6-.1-4.2 6.7-4.1h13.1z"/>
<path fill="#5a3719" d="M401.3 212.5s-1.2 1 0 1.8 5.3-2.2 5.9-2.6c.6-.5 2-.4 0 1.2s-4 3.2-5.5 4.9c0 0 7-2 11.5-5.8 4.5-4-.2-1.4 7.5-5.1 7.7-3.8 11.7-9.7 7.6-9-4.1.6-7.9 5.3-11.1 7.1-3.2 1.8-5 2-4.5 1s2.8-.7 7.3-4.2c4.4-3.6 3.4-3.2 3.4-4.5 0-1.3-1.6-4.4 5-7.9 6.7-3.5 27.4-15.5 29.2-19.8 0 0-6 .7-14 6.6a74.3 74.3 0 0 1-14.4 9.4c-2.2.8-2 .2-3.3 2a183.2 183.2 0 0 1-10.8 10.4c-1.4 1-1.9 1.8-2 4 0 1.1-9 8-11.7 10.5z"/>
<path fill="#5a3719" d="M428.7 196.7s-1.7.6-3.1 0c-1.5-.8-1-4 2.6-5.9a53.3 53.3 0 0 1 13.4-5.1s-.5 4-10.8 7.6c0 0 .7 2-2.1 3.4z"/>
<path fill="#aa5323" d="M432.3 194s.3 1 0 1.9c0 0 19 1.8 29-9.8 0 0-13.6 1.3-19 4.5 0 0 3.5-4.2 13.6-7.7s14.3-8 15.2-10.3c0 0-13 4.5-19 4.5 0 0-1.2 0-2.4.6-1.2.7-9.3 6.6-11.5 7.6 0 0 4.6-.4 6.2-1.8 0 0-3.2 8.5-12.1 10.5z"/>
<path fill="#5a3719" d="M395.7 204.9s-2.5 1.8-1.5 2.6c1 .9 2.8 1 6.5-2 3.8-3.3 12.9-11 7.1-11.3 0 0-7.3-.5-7 4 .2 4.5-4.8 6.4-5.1 6.7zm-17-2.7s4.9 2.9 3 5.2c0 0 14.9-12.6 10.6-15.4-4-2.7-7.3 2.5-6.3 3s3.1-.4 2.4.5a82.5 82.5 0 0 1-9.7 6.7zm-3.9-4s3.3 1 3.5 2.4c0 1.3 9.8-6.9 7.2-10.4-1.2-1.5-6.5-2.2-6.8 1-.3 3 4.9-.4 3 1.8-2.2 3-6.1 4.7-6.9 5.2zm34.8-6.9s-2 1.5-.1 2.4c1.9.9 3-.5 4-1.3.9-.9 5.5-4.3 6.5-6.4 1.2-2.2 2.7-2.9 4.4-4 1.7-1 13.5-7 20.8-13.5 7.3-6.5 4.2-4.8 11.7-9s12.5-8 14.1-12.6c0 0-3.5 1.2-6.5 3.2-3.1 2-10 6.3-11.5 7-1.4.5-3.2.6-4.3 1.7-1 1.1-1 2.4-4.6 5.4-3.7 3-22.4 16.2-24.7 18.1a357 357 0 0 0-9.8 9z"/>
<path fill="#aa5323" d="M394.6 195.7s2-1.1 5.9-.8c3.8.2 19-14.6 23.4-17.5a364.4 364.4 0 0 0 20-14.7c2-1.9 2.3-3.8 3.9-4.9 1.6-1 3.1-.9 6.8-3 3.7-2.1 21.6-12.8 20.6-19 0 0-26.7 15.9-32.8 21.1a400 400 0 0 1-26.3 18.9c-3 2-5.4 5.2-10.5 9.4-5.1 4-10.2 7.6-11 10.5z"/>
<path fill="#aa5323" d="M389 190s4.9-.5 5.6 2c0 0 10.5-7.3 13-10.3 2.4-3-.9-1.3 5.1-5.2a634 634 0 0 0 28.9-20.4c2.8-2.5 8.3-5.8 12.6-8.8 4.4-2.9 21.3-11.2 19.4-18l-15.2 10.1c-2.8 1.9-4 .8-6.8 3-3 2.3-9.2 6.7-10.3 8.2a172 172 0 0 1-15.3 11.8c-4.7 3-15 9.1-20.1 13.5a643 643 0 0 1-17 14z"/>
<path fill="#aa5323" d="M373.7 188.6s2.4 0 3.3 1c0 0 4.5-4.1 9.4 0 0 0 18-12.3 19.8-15.3 1.8-3 4.8-3.1 11.7-8.2 7-5.1 11.4-7.3 16-10.8 4.7-3.7 8.7-7.8 12-10 3.3-2.1 11.8-7.7 10.4-12.4 0 0-6.9 3.8-11.3 8.7-4.5 5-4 .8-8.6 4.8A88.2 88.2 0 0 1 419 159c-5.8 2.9-2.3 2.6-6.6 5.3-4.1 2.7-3.8 2.3-5.4 2.7a10.6 10.6 0 0 0-5.4 3.2 53.6 53.6 0 0 1-10.3 6.9 113.6 113.6 0 0 0-17.7 11.6z"/>
<path fill="#aa5323" d="M379 179.3s-.9-2 .8-3.5c1.7-1.4 5-5.2 5.4-7.5.5-2.5.1-2 5-4.1a200.7 200.7 0 0 0 40.8-23c2-1.6 7-5 8.9-6.6 0 0 .9 2.6-1.3 4.5a237 237 0 0 1-23 15.8c-2.3 1.3-8 4.2-10.1 6-2 1.6-1.7 2.1-10.9 6.6-9.1 4.4-9.5 5-9.3 5.3.3.4 4.4-1.4 6.4-2.6 2-1.1 9.4-4.6 11.7-6.4 2.2-1.8 6-4.5 7.6-5.4 1.6-.8 15-9 19-11.9 3.8-2.8 4.9-3.7 5.7-3.2.8.4 2.2.4.5 2s-7.2 6.6-9.3 8c-2.1 1.3-8.7 5.2-10.5 6.1-1.8 1-2.5 2.7-3.6 3.5-1 .8-4 2.8-7.6 3.6s-4.2 3.6-6.6 5.2c-2.4 1.5-19.3 10.6-19.8 11 0 0 1-1 .3-3.4z"/>
<path fill="#aa5323" d="M437.5 141.3s-.9.8-.4 1.3c.6.7 3 2.3 6-.6a113.6 113.6 0 0 1 13.4-10.8c2.4-1.5 3.7-2.9 3.6-5 0 0-12.1 6.5-22.6 15.1zm16.7-1s1.8-3.2 6.4-6.1c4.6-3 11.5-7.2 12.3-8.2 0 0 1.6 1.8-1.9 4.1a332.5 332.5 0 0 0-11.4 7.5 15 15 0 0 1-5.4 2.6z"/>
<path fill="#7b3c20" d="M361.4 174s-5 2.7-3.2 4.4c1.8 1.6 4.5 1.1 5.7.6 1-.4 3.2-1 3.5-1 .3-.1 4.7-1.4 5.9-3.5 1-2 4-4.4 6.4-6 2.4-1.7 3.3-3.5 2.9-4.7 0 0-20 9.4-21.2 10.2zm-30.2 23.4s3.6-2.1 8.5-.8c0 0-.2-1.1-1-1.8 0 0 6-1.5 7.3-4.2 1.3-2.7 1.6-2 2.7-2.8 1.2-.8 9.2-7.3 8.3-8.7-1-1.4-1.1-3.2-1.8-3.9 0 0-1.6 2.3-9.5 6-7.8 3.9-16.5 6.7-22.9 15.2-6.3 8.6-5.6 13.5 2.1 15.7 0 0 5.4-3.4 18.7-2.3 13.3 1.3 17.8 6.2 18.7 7.1.8 1 3.5 4.2.9 9.8 0 0 2.7 1.1 2.8-1.4.3-2.6.4-2 1-1.7.7.5 1.4.5 1-1.4-.2-2-1-6.3-2.4-7.8-1.1-1.5.3-.8 1-.6.8.4 3.6 2.7 2-1.6-1.7-4-2.2-2-2.3-1.9 0 .3-.3 1.3-4-1.4a28.6 28.6 0 0 0-9.4-4.8c-2.4-.6-.7-.6.8-1.1 1.5-.6 3.3-.8 4-2.5 0 0-1.4.4-4-.6a14 14 0 0 0-12.3 2.2s1.3-5-2.6-4.7c-4 .3-6.6.2-10.8 3.5 0 0-.2-5 3.7-7.6 4-2.6 3.4-1 5.6-1.7 2.2-.6 2.4-2.8 1.4-3.6 0 0 5.2 1 13.8-6.2 0 0-4.7 6-10.3 7.3 0 0-.9 3.3-6 4-5 .6-4.9 3.6-4.9 4.3z"/>
<path fill="#5a3719" d="M316.6 227s2.4-15.1 16.6-16.2c12.2-1 16.2.6 18.6 1.4s8.5 2.5 6.1 4.5c-2.3 1.9-3.6 1.6-3.6 1.6s2.6-3 .2-3.6c-2.5-.4-2.6 1-3 2.2-.4 1.4-.4 2.8-1.7 3.8 0 0-1.2-1.4-3-.2s-.2 1.3.5 1.1c.7-.2 1.6-.6 1.4.6-.2 1-1.1 3-4 4.5-3 1.4-2.9 1.4-6.3 2-3.5.5-6.7 1.9-11.1 5.6-4.5 3.9-9.3 2.6-10.3-1.6-.8-3.7-.4-5.7-.4-5.7z"/>
<path d="M332.7 226.4s1.3-3-1-4.3c0 0-7.4 1.3-9.7-.9 0 0 8-.5 13-2.5 5-1.8 3.6-3.2 1.9-3.6-1.8-.3-5 .5-5.3 2 0 0-1-1.5.3-2.7 1.3-1.1 3.2-1.3 5-.8 1.8.5 3.3 1.3 9.1-1.7 0 0 3.4.8 3.5 3 0 2.3-.2 3.2-.6 3.5-.2.4-.6 1-1.3 1-.7 0-1.7-.2-2.5 1.3-.8 1.6-1.4 3-2.9 4 0 0 1.7-4.9-2.6-6 0 0-3.5 2-6.2 2.2 0 0 3.5 3.2-.8 5.5z"/>
<path fill="#5a3719" d="M340.4 217.4s-1.6-1.7.5-2c2.2 0 5 1.5 4.4 2.9-.5 1.3-3 1.2-4.9-.9z"/>
<path fill="#fff" d="M461.4 193.7s-4 1.1-.3 3.6c3.6 2.4 5.4 4.5 8 5.1 2.7.7 5.4 1.6 5.4 4.3 0 2.6-.6 3.7-2 5.5-1.5 1.9.8 2.6 2.7 1.6l4.8-2.3c1.2-.8 3.3-.7 1.5.3-2 1-4 1.6-1.5 1.6 2.4.1 17.3.4 20.4-.6 3.1-1 7.2-1.3 7.5-5.3 0 0 .2-1.8 1.3-2.6 1.2-.8 2-2.5.3-1.4-1.7 1.3-3 1.8-3.3 1.5-.3-.4-.5-.6.8-1.2 1.2-.6 1.9 0 3-1.6 1.2-1.8 1.1-1.5.5-2.2-.6-.6-2-1-1.3-1.8.7-.9 1.3-3.3-1.4-2-2.7 1.5-8.1 5.2-10.7 5.8-2.4.6-4.3 1.3-7.6 2a30 30 0 0 0-9 3.4c-3.6 2-3.3-1.2-2.7-1.6 0 0 1.4 2.5 5-.7 3.6-3.1 2.4-.2 11.3-3.1 8.8-2.9 6.7-3.4 10.1-5.1 3.6-1.8 6.8-2 4.4-4.4-2.5-2.4-2.7-2.6-5.8 0a36.8 36.8 0 0 1-17 7s20-8.6 18-9.8a22.1 22.1 0 0 0-5.7-2.7c-1.4-.4-1.8-.7-5 .8-3.2 1.4-3.7 1.7-4.6 1.8-1 0-3.7.6-7.5 2.6s-5.8 2.8-8.5 4.3c0 0 1.8-3.6 9.8-6 7.8-2.3 11.8-4.4 11-4.8s-2.9-.9-4.3-.5c-1.5.2-1-.2-6 1.8-4.7 1.8-2.7 1.4-6.5 2.3-4 .8-5.5 1.6-7.4 2.4 0 0 .8-1 3.4-2 1.4-.4-1.5-1 2.3-1.1h1a34.3 34.3 0 0 0 9.2-3.4c-.8-.2-5.4-.7-10.2 1.6-4.7 2.1-2.6 1.4-4.2 1.6-1.6.4-5.2 2.6-6.4 3.6-1.2 1-2.8 1.7-2.8 1.7z"/>
<path fill="#5a3719" d="M344.1 215.3s1.9.6 2.4 1.9c.5 1.3 1.6-.6 1.6-1.2 0-.5-1.2-3.2-3.2-2-2 1.2-1 1.2-.8 1.3z"/>
<path fill="#7b3c20" d="M339 241.1s3.9-1.8 7.3-1.6c0 0-1.4-4.7 1-4 2.3.9 1.6.6 2.1.6 0 0 .2-3.1-.5-4.4 0 0 2.5.6 4.9.6 0 0-2.3-4.4.2-7.5a7.4 7.4 0 0 0 4.5 3.7v-2.6s1.8-.2 3.3.5c1.4.8 2.6-8-1.7-10 0 0-1 1.7-5 2.5s-4 1.6-5.6 4.7-3 3-6.5 5.2a17.8 17.8 0 0 0-5.5 7s1.7 2 1.5 5.3z"/>
<path fill="#999" d="M472.5 189.7c1.4-.2-1.5-1 2.3-1.1h1a34.3 34.3 0 0 0 9.2-3.4c-.8-.2-5.4-.7-10.2 1.5s-2.6 1.5-4.2 1.8a22 22 0 0 0-6.4 3.5c-1.2 1-2.8 1.7-2.8 1.7s-4 1.1-.3 3.6c3.6 2.4 5.4 4.5 8 5.1 2.7.7 5.4 1.6 5.4 4.3a7.4 7.4 0 0 1-2 5.5c-1.5 1.9.8 2.6 2.7 1.6l4.8-2.3c1.2-.8 3.3-.7 1.4.3-2 1-3.9 1.6-1.4 1.6 2.4.1 17.3.4 20.4-.6 3.1-1 7.2-1.3 7.5-5.3 0 0 .2-1.8 1.3-2.6 1.2-.8 2-2.5.3-1.4-1.7 1.3-3 1.8-3.3 1.5-.3-.4-.5-.6.8-1.2 1.2-.6 1.9 0 3-1.6 1.2-1.8 1.1-1.5.5-2.2-.4-.3-.9-.5-1.1-.9 0 0-1-.8-2-.1a29.4 29.4 0 0 1-7.4 2.8c-1.8.2-3.8 1-7 2.6s-8.8 5-9.7 1.8l-2.8 1.2c-3.7 1.9-3.4-.8-2.7-1.6 0 0-2 2.2-1.9.3 0-2 1.3-1.7 3.5-2.3 2.1-.7 5.5-2 4.1-3.2-1.4-1.1-2.9 1.2-4.4 1.9-1.6.7-4.7 1.3-5.2-1-.5-2.2-.5-3.8-4.6-4-4.2-.2-4.1-2.9-3-4 1.3-1.1 2.2-3 6.2-3.8z"/>
<path d="M485.9 210s6.5-2.9 12.5-4.3 1.3.2.3.5-10.4 3.4-12.6 4.5c-2.2 1-1.8.1-.2-.5zm1.4 1.5s7.4-2.5 8.8-1.5c1.4 1 .2.6-1.4.8-1.6.2-6 1-7.2 1-1.2 0-.2-.3-.2-.3zm11.9-2.6s1.4-.3 1.5.3c.1.5-.6.6-1.4.5-.8-.2-1.4-.6-.1-.8z"/>
<path fill="#fff" d="M305 273s-.3-6.5 3-9.8 19-19.7 21.4-24.3c0 0 2 1.4 2.1 4 0 0 2.7-4.5 4.8-6.3 0 0 1.9 2 1.6 5.8 0 0 3.8-2 9.7-2 0 0-2.3 2.4-2.3 4 0 0 8.1-1 12.5-.2 0 0-11.3 6.2-8.2 6.8 3.3.6 6.5 0 6.5 0s-3.6 3.6-9.3 4.3c0 0 7.3 0 8.8 1.6 0 0-7.1 1-12.8 5.4 0 0-.6-.3-.6-1.9 0 0-.2 1.5-1.8 2.9-1.7 1.3-5.5 4.2-7 5.7-1.4 1.4-4 4.3-7 4.2 0 0 .6-2.3-1.5-3a6 6 0 0 0-6.3 1.6s-7.6.2-10.1.5c0 0 1.7-2.7 3.3-2.7 1.6 0 8 1 8.6-3.4.5-4.3-4.1-3.2-2.4-5.7 1.8-2.6 1.4-2.5 1.5-2.8 0 0-1.5.8-2.3 3.1a11.4 11.4 0 0 1-4.5 6.4 16 16 0 0 0-5.2 5.3s-1.4.2-2.6.5z"/>
<path fill="#fff" d="M312.3 269s.2-.7 2.4-1.2c2.3-.4 2.5-1.4 2.1-2-.3-.3-1.6-.3.5-2.9 0 0 .8.3 1.3.9.6.6 3 5.8-6.3 5.3z"/>
<path fill="#999" d="M307 264.5c0 4.3 5.7 2.7 5.7 2.7a22.9 22.9 0 0 0-4.1 3.7c.4-2-3.2-2.6-3.2-2.6a13 13 0 0 1 1.6-3.8zm20.6-23 1.8-2.6s2 1.4 2.1 4c0 0 2.7-4.5 4.8-6.3 0 0 1.9 2 1.6 5.8 0 0 3.8-2 9.7-2 0 0-2.3 2.4-2.3 4 0 0 8.1-1 12.5-.2 0 0-11.3 6.2-8.2 6.8 3.3.6 6.5 0 6.5 0s-3.6 3.6-9.3 4.3c0 0 7.3 0 8.8 1.6 0 0-2.2.3-5 1.3 0 0-2-2-8.1-1.6 0 0 4.7-2.7 8.5-3.6 0 0-1.6-2.1-4.3-.2 0 0-5.1-3.5-.8-6.5 0 0-3-.6-5 .8 0 0 0-2.5 2.2-3.5 0 0-5.7-1-7 3.2 0 0-1.2-1.7-.6-3.6 0 0-3.5 2-5.1 4.2 0 0-.6-4.3-2.8-5.9m-11 27.3c-1 .3-2.5.4-4.3.3 0 0 .1-.6 1.4-1 0 0 .3.7 2.8.7"/>
<path d="M327 252.6s2.6 2 3.5 3.2c0 0 2.4-1.6 3.2-3 0 0 2 1.2 2.5 3 0 0 1.4-.8 1.6-2 0 0 3.3.6 4.4 1.6 0 0 .5-3 0-5.1 0 0 2.3.2 3.7.8 0 0-1.3-2.1 5.3-4.8 0 0-5 1.1-7 3.2 0 0-2 .2-3-.4v4.7s-1.2-.6-3.7-1.2c0 0-.6 1.1-1 1.4 0 0-1.7-1.4-2.3-2.9 0 0-2.5 2.2-3.3 3.1 0 0-2.4-1.6-4-1.6z"/>
<path fill="#ffc221" d="M312 285.2s1 .5 3.4-1.5 9.3-6.3 9.9-9.8c.7-3.5-2.2-3.7-4.4-2.7-2.3 1-1.3 3-1.2 3.6 0 .6.2 3-3.5 6.4l-4.3 4z"/>
<path fill="#ffc221" d="M311.2 286.2s-5.5-2.3-.6-4.7 7.1-3.1 7.7-5.2c.6-2 .3-1.7-1.6-.9-1.8.9-8.8 4.1-9.8 1.1 0 0 2.8 1.1 6.4-.6 3.6-1.8 6.6-2.3 4.3-3-2.3-.7-10.6.2-11.9.6-1.4.4-1 .3-1.3 1.6-.2 1.4-1.7 4.3-2.3 5-.5.9-2 4.4.6 6a9.2 9.2 0 0 0 8.5.1z"/>
<path d="M309 274.3s-1.2.2-1 .7c.3.4.6.4 1 .4.5 0 1.2-.3 1.3-.5 0-.4-.8-.8-1.2-.6z"/>
<path fill="#fff" d="M310.8 285s-2.5-1.2.4-2.8c3-1.6 6-3.2 6.5-3.8 0 0-1.4 2-6.8 6.6z"/>
</svg>

After

Width:  |  Height:  |  Size: 32 KiB

View File

@@ -0,0 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-at" viewBox="0 0 512 512">
<g fill-rule="evenodd">
<path fill="#fff" d="M512 512H0V0h512z"/>
<path fill="#c8102e" d="M512 512H0V341.3h512zm0-341.2H0V.1h512z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 239 B

View File

@@ -0,0 +1,8 @@
<svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-au" viewBox="0 0 512 512">
<path fill="#00008B" d="M0 0h512v512H0z"/>
<path fill="#fff" d="M256 0v32l-95 96 95 93.5V256h-33.5L127 162l-93 94H0v-34l93-93.5L0 37V0h31l96 94 93-94z"/>
<path fill="red" d="m92 162 5.5 17L21 256H0v-1.5zm62-6 27 4 75 73.5V256zM256 0l-96 98-2-22 75-76zM0 .5 96.5 95 67 91 0 24.5z"/>
<path fill="#fff" d="M88 0v256h80V0zM0 88v80h256V88z"/>
<path fill="red" d="M0 104v48h256v-48zM104 0v256h48V0z"/>
<path fill="#fff" d="m202 402.8-45.8 5.4 4.6 45.9-32.8-32.4-33 32.2 4.9-45.9-45.8-5.8L93 377.4 69 338l43.6 15 15.8-43.4 15.5 43.5 43.7-14.7-24.3 39.2 38.8 25.1Zm222.7 8-20.5 2.6 2.2 20.5-14.8-14.4-14.7 14.5 2-20.5-20.5-2.4 17.3-11.2-10.9-17.5 19.6 6.5 6.9-19.5 7.1 19.4 19.5-6.7-10.7 17.6 17.5 11.1ZM415 293.6l2.7-13-9.8-9 13.2-1.5 5.5-12.1 5.5 12.1 13.2 1.5-9.8 9 2.7 13-11.6-6.6-11.6 6.6Zm-84.1-60-20.3 2.2 1.8 20.3-14.4-14.5-14.8 14.1 2.4-20.3-20.2-2.7 17.3-10.8-10.5-17.5 19.3 6.8 7.2-19.1 6.7 19.3 19.4-6.3-10.9 17.3 17 11.2Zm175.8-32.8-20.9 2.7 2.3 20.9-15.1-14.7-15 14.8 2.1-21-20.9-2.4 17.7-11.5-11.1-17.9 20 6.7 7-19.8 7.2 19.8 19.9-6.9-11 18 17.8 11.3Zm-82.1-83.5-20.7 2.3 1.9 20.8-14.7-14.8L376 140l2.4-20.7-20.7-2.8 17.7-11-10.7-17.9 19.7 6.9 7.3-19.5 6.8 19.7 19.8-6.5-11.1 17.6 17.4 11.5Z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

186
public/assets/images/flags/aw.svg Executable file
View File

@@ -0,0 +1,186 @@
<svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-aw" viewBox="0 0 512 512">
<defs>
<clipPath id="a">
<path fill="gray" d="M0 0h512v512H0z"/>
</clipPath>
</defs>
<g clip-path="url(#a)">
<path fill="#39c" d="M0 0v512h768V0H0z"/>
<path fill="#ff0" d="M0 341.3v28.5h768v-28.5H0zm0 57v28.4h768v-28.5H0z"/>
<path fill="#9cc" d="m122 28 2.4 2.5-2.3-2.4zm-2.3 4.8 2.4 2.4-2.4-2.4m4.7 0 2.4 2.4-2.3-2.4z"/>
<path fill="#ccf" d="m119.7 35.2 2.4 2.4-2.4-2.4m4.7 0 2.4 2.4-2.3-2.4z"/>
<path fill="#6cc" d="m117.3 40 2.4 2.3-2.4-2.3z"/>
<path fill="#c66" d="m122 40 2.4 2.3-2.3-2.3z"/>
<path fill="#6cc" d="m126.8 40 2.4 2.3-2.4-2.3z"/>
<path fill="#ccf" d="m117.3 42.4 2.4 2.3-2.4-2.3zm9.5 0 2.4 2.3-2.4-2.3z"/>
<path fill="#fcc" d="m119.7 44.7 2.4 2.4-2.4-2.4m4.7 0 2.4 2.4-2.3-2.4z"/>
<path fill="#6cc" d="m115 47.1 2.3 2.4-2.4-2.4z"/>
<path fill="#c00" stroke="#fff" stroke-width="3" d="M121.7 32.9 105 96.2l-63.5 17.2 63.3 16.5 16.9 63.3 16.9-63.3 63.2-16.9-63.3-16.8-16.8-63.3z"/>
<path fill="#6cc" d="m129.2 47.1 2.4 2.4-2.4-2.4z"/>
<path fill="#9cf" d="m115 49.5 2.3 2.4-2.4-2.4m14.3 0 2.4 2.4-2.4-2.4z"/>
<path fill="#fcc" d="m117.3 51.9 2.4 2.3-2.4-2.3m9.5 0 2.4 2.3-2.4-2.3z"/>
<path fill="#69c" d="m112.5 54.3 2.4 2.3-2.4-2.3z"/>
<path fill="#c33" d="m118.1 55.8.8 1.6-.8-1.6m9.5 0 .8 1.6-.8-1.6z"/>
<path fill="#69c" d="m131.6 54.3 2.4 2.3-2.4-2.3z"/>
<path fill="#9cf" d="M112.5 56.6 115 59l-2.4-2.4m19 0L134 59l-2.4-2.4z"/>
<path fill="#fcc" d="m115 59 2.3 2.4-2.4-2.4m14.3 0 2.4 2.4-2.4-2.4z"/>
<path fill="#69c" d="m110.2 61.4 2.3 2.4-2.3-2.4zm23.8 0 2.4 2.4-2.4-2.4z"/>
<path fill="#9cc" d="m110.2 63.8 2.3 2.4-2.3-2.4m23.8 0 2.4 2.4-2.4-2.4z"/>
<path fill="#cff" d="m110.2 66.2 2.3 2.3-2.3-2.3m23.8 0 2.4 2.3-2.4-2.3z"/>
<path fill="#69c" d="m107.8 68.5 2.4 2.4-2.4-2.4z"/>
<path fill="#fcc" d="M112.5 68.5 115 71l-2.4-2.4m19 0L134 71l-2.4-2.4z"/>
<path fill="#69c" d="m136.3 68.5 2.4 2.4-2.3-2.4z"/>
<path fill="#9cc" d="m107.8 71 2.4 2.3-2.4-2.4z"/>
<path fill="#c33" d="m113.3 72.5.8 1.6-.8-1.6m19 0 .9 1.6-.8-1.6z"/>
<path fill="#9cc" d="m136.3 71 2.4 2.3-2.3-2.4z"/>
<path fill="#cff" d="m107.8 73.3 2.4 2.4-2.4-2.4m28.6 0 2.3 2.4-2.3-2.4z"/>
<path fill="#fcc" d="m110.2 75.7 2.3 2.3-2.3-2.3m23.8 0 2.4 2.3-2.4-2.3z"/>
<path fill="#9cc" d="m105.4 78 2.4 2.4-2.4-2.3z"/>
<path fill="#c33" d="m111 79.6.7 1.6-.8-1.6m23.9 0 .8 1.6-.8-1.6z"/>
<path fill="#9cc" d="m138.7 78 2.4 2.4-2.4-2.3z"/>
<path fill="#ccf" d="m105.4 80.4 2.4 2.4-2.4-2.4m33.3 0 2.4 2.4-2.4-2.4z"/>
<path fill="#fcc" d="m107.8 82.8 2.4 2.4-2.4-2.4m28.6 0 2.3 2.4-2.3-2.4z"/>
<path fill="#9cc" d="m103 85.2 2.4 2.4-2.4-2.4z"/>
<path fill="#c33" d="m108.6 86.8.8 1.6-.8-1.6m28.5 0 .8 1.6-.8-1.6z"/>
<path fill="#9cc" d="m141.1 85.2 2.4 2.4-2.4-2.4z"/>
<path fill="#ccf" d="m103 87.6 2.4 2.4-2.4-2.4m38.1 0 2.4 2.4-2.4-2.4z"/>
<path fill="#fcc" d="m105.4 90 2.4 2.3-2.4-2.3m33.3 0 2.4 2.3-2.4-2.3z"/>
<path fill="#9cc" d="m100.6 92.3 2.4 2.4-2.4-2.4z"/>
<path fill="#c33" d="m105.4 92.3 2.4 2.4-2.4-2.4m33.3 0 2.4 2.4-2.4-2.4z"/>
<path fill="#9cc" d="m143.5 92.3 2.4 2.4-2.4-2.4m-50 2.4 2.4 2.4-2.4-2.4z"/>
<path fill="#ccf" d="m95.9 94.7 2.4 2.4-2.4-2.4m52.3 0 2.4 2.4-2.3-2.4z"/>
<path fill="#9cc" d="m150.6 94.7 2.4 2.4-2.4-2.4m-64.2 2.4 2.3 2.4-2.3-2.4z"/>
<path fill="#ccf" d="m88.7 97.1 2.4 2.4-2.4-2.4z"/>
<path fill="#fcc" d="m98.3 97.1 2.3 2.4-2.3-2.4z"/>
<path fill="#c33" d="m100.6 97.1 2.4 2.4-2.4-2.4m42.9 0 2.4 2.4-2.4-2.4z"/>
<path fill="#fcc" d="m145.9 97.1 2.3 2.4L146 97z"/>
<path fill="#ccf" d="m155.4 97.1 2.4 2.4-2.4-2.4z"/>
<path fill="#9cc" d="m157.8 97.1 2.3 2.4-2.3-2.4z"/>
<path fill="#69c" d="m76.8 99.5 2.4 2.4-2.4-2.4z"/>
<path fill="#9cc" d="m79.2 99.5 2.4 2.4-2.4-2.4z"/>
<path fill="#cff" d="m81.6 99.5 2.4 2.4-2.4-2.4z"/>
<path fill="#fcc" d="m91.1 99.5 2.4 2.4-2.4-2.4z"/>
<path fill="#c33" d="m95 100.3 1.7.8-1.6-.8m54.7 0 1.6.8-1.6-.8z"/>
<path fill="#fcc" d="m153 99.5 2.4 2.4-2.4-2.4z"/>
<path fill="#cff" d="m162.5 99.5 2.4 2.4-2.4-2.4z"/>
<path fill="#9cc" d="m165 99.5 2.3 2.4-2.4-2.4z"/>
<path fill="#69c" d="m167.3 99.5 2.4 2.4-2.4-2.4m-97.6 2.4 2.4 2.3-2.4-2.3z"/>
<path fill="#9cc" d="m72 101.9 2.5 2.3L72 102z"/>
<path fill="#cff" d="m74.5 101.9 2.3 2.3-2.3-2.3z"/>
<path fill="#fcc" d="m84 101.9 2.4 2.3L84 102z"/>
<path fill="#c33" d="m88 102.7 1.5.8-1.5-.8m69 0 1.6.8-1.6-.8z"/>
<path fill="#fcc" d="m160.2 101.9 2.3 2.3-2.3-2.3z"/>
<path fill="#cff" d="m169.7 101.9 2.3 2.3-2.3-2.3z"/>
<path fill="#9cc" d="m172 101.9 2.4 2.3-2.3-2.3z"/>
<path fill="#69c" d="m174.4 101.9 2.4 2.3-2.4-2.3m-111.8 2.3 2.3 2.4-2.3-2.4z"/>
<path fill="#9cf" d="m65 104.2 2.3 2.4-2.4-2.4z"/>
<path fill="#fcc" d="m76.8 104.2 2.4 2.4-2.4-2.4z"/>
<path fill="#c33" d="m80.8 105 1.6.8-1.6-.8m83.3 0 1.6.8-1.6-.8z"/>
<path fill="#fcc" d="m167.3 104.2 2.4 2.4-2.4-2.4z"/>
<path fill="#9cf" d="m179.2 104.2 2.4 2.4-2.4-2.4z"/>
<path fill="#69c" d="m181.6 104.2 2.3 2.4-2.3-2.4z"/>
<path fill="#6cc" d="m55.4 106.6 2.4 2.4-2.4-2.4z"/>
<path fill="#9cf" d="m57.8 106.6 2.4 2.4-2.4-2.4z"/>
<path fill="#fcc" d="m67.3 106.6 2.4 2.4-2.4-2.4zm109.5 0 2.4 2.4-2.4-2.4z"/>
<path fill="#9cf" d="m186.3 106.6 2.4 2.4-2.4-2.4z"/>
<path fill="#6cc" d="m188.7 106.6 2.4 2.4-2.4-2.4M48.3 109l2.4 2.4-2.4-2.4z"/>
<path fill="#ccf" d="m50.6 109 2.4 2.4-2.3-2.4z"/>
<path fill="#fcc" d="m60.2 109 2.3 2.4-2.3-2.4z"/>
<path fill="#c33" d="m64.1 109.8 1.6.8-1.6-.8m116.7 0 1.6.8-1.6-.8z"/>
<path fill="#fcc" d="m184 109 2.3 2.4-2.3-2.4z"/>
<path fill="#ccf" d="m193.5 109 2.4 2.4-2.4-2.4z"/>
<path fill="#6cc" d="m195.9 109 2.3 2.4-2.3-2.4z"/>
<path fill="#9cc" d="m41.1 111.4 2.4 2.4-2.4-2.4z"/>
<path fill="#ccf" d="m43.5 111.4 2.4 2.4-2.4-2.4z"/>
<path fill="#fcc" d="m53 111.4 2.4 2.4-2.4-2.4zm138.1 0 2.4 2.4-2.4-2.4z"/>
<path fill="#ccf" d="m200.6 111.4 2.4 2.4-2.4-2.4z"/>
<path fill="#9cc" d="m203 111.4 2.4 2.4-2.4-2.4m-166.6 2.4 2.4 2.3-2.4-2.3z"/>
<path fill="#c66" d="m48.3 113.8 2.4 2.3-2.4-2.3zm147.6 0 2.3 2.3-2.3-2.3z"/>
<path fill="#9cc" d="m207.8 113.8 2.3 2.3-2.3-2.3M41 116l2.4 2.4L41 116z"/>
<path fill="#ccf" d="m43.5 116.1 2.4 2.4-2.4-2.4z"/>
<path fill="#fcc" d="m53 116.1 2.4 2.4-2.4-2.4m138.1 0 2.4 2.4-2.4-2.4z"/>
<path fill="#ccf" d="m200.6 116.1 2.4 2.4-2.4-2.4z"/>
<path fill="#9cc" d="m203 116.1 2.4 2.4-2.4-2.4z"/>
<path fill="#6cc" d="m48.3 118.5 2.4 2.4-2.4-2.4z"/>
<path fill="#ccf" d="M50.6 118.5 53 121l-2.3-2.4z"/>
<path fill="#fcc" d="m60.2 118.5 2.3 2.4-2.3-2.4z"/>
<path fill="#c33" d="m64.1 119.3 1.6.8-1.6-.8m116.7 0 1.6.8-1.6-.8z"/>
<path fill="#fcc" d="m184 118.5 2.3 2.4-2.3-2.4z"/>
<path fill="#ccf" d="m193.5 118.5 2.4 2.4-2.4-2.4z"/>
<path fill="#6cc" d="m195.9 118.5 2.3 2.4-2.3-2.4M55.4 121l2.4 2.4-2.4-2.4z"/>
<path fill="#9cf" d="m57.8 120.9 2.4 2.4-2.4-2.4z"/>
<path fill="#fcc" d="m67.3 120.9 2.4 2.4-2.4-2.4zm109.5 0 2.4 2.4-2.4-2.4z"/>
<path fill="#9cf" d="m186.3 120.9 2.4 2.4-2.4-2.4z"/>
<path fill="#6cc" d="m188.7 120.9 2.4 2.4-2.4-2.4z"/>
<path fill="#69c" d="m62.5 123.3 2.4 2.4-2.3-2.4z"/>
<path fill="#9cf" d="m65 123.3 2.3 2.4-2.4-2.4z"/>
<path fill="#fcc" d="m76.8 123.3 2.4 2.4-2.4-2.4z"/>
<path fill="#c33" d="m80.8 124 1.6.9-1.6-.8m83.3 0 1.6.8-1.6-.8z"/>
<path fill="#fcc" d="m167.3 123.3 2.4 2.4-2.4-2.4z"/>
<path fill="#9cf" d="m179.2 123.3 2.4 2.4-2.4-2.4z"/>
<path fill="#69c" d="m181.6 123.3 2.3 2.4-2.3-2.4m-111.9 2.4 2.4 2.3-2.4-2.3z"/>
<path fill="#9cc" d="m72 125.7 2.5 2.3-2.4-2.3z"/>
<path fill="#cff" d="m74.5 125.7 2.3 2.3-2.3-2.3z"/>
<path fill="#fcc" d="m84 125.7 2.4 2.3-2.4-2.3z"/>
<path fill="#c33" d="m88 126.5 1.5.7-1.5-.8m69 0 1.6.8-1.6-.8z"/>
<path fill="#fcc" d="m160.2 125.7 2.3 2.3-2.3-2.3z"/>
<path fill="#cff" d="m169.7 125.7 2.3 2.3-2.3-2.3z"/>
<path fill="#9cc" d="m172 125.7 2.4 2.3-2.3-2.3z"/>
<path fill="#69c" d="m174.4 125.7 2.4 2.3-2.4-2.3M76.8 128l2.4 2.4-2.4-2.4z"/>
<path fill="#9cc" d="m79.2 128 2.4 2.4-2.4-2.4z"/>
<path fill="#cff" d="m81.6 128 2.4 2.4-2.4-2.4z"/>
<path fill="#fcc" d="m91.1 128 2.4 2.4-2.4-2.4z"/>
<path fill="#c33" d="m95 128.8 1.7.8-1.6-.8m54.7 0 1.6.8-1.6-.8z"/>
<path fill="#fcc" d="m153 128 2.4 2.4-2.4-2.4z"/>
<path fill="#cff" d="m162.5 128 2.4 2.4-2.4-2.4z"/>
<path fill="#9cc" d="m165 128 2.3 2.4-2.4-2.4z"/>
<path fill="#69c" d="m167.3 128 2.4 2.4-2.4-2.4z"/>
<path fill="#9cc" d="m86.4 130.4 2.3 2.4-2.3-2.4z"/>
<path fill="#ccf" d="m88.7 130.4 2.4 2.4-2.4-2.4z"/>
<path fill="#fcc" d="m98.3 130.4 2.3 2.4-2.3-2.4z"/>
<path fill="#c33" d="m100.6 130.4 2.4 2.4-2.4-2.4m42.9 0 2.4 2.4-2.4-2.4z"/>
<path fill="#fcc" d="m145.9 130.4 2.3 2.4-2.3-2.4z"/>
<path fill="#ccf" d="m155.4 130.4 2.4 2.4-2.4-2.4z"/>
<path fill="#9cc" d="m157.8 130.4 2.3 2.4-2.3-2.4m-64.3 2.4 2.4 2.4-2.4-2.4z"/>
<path fill="#ccf" d="m95.9 132.8 2.4 2.4-2.4-2.4m52.3 0 2.4 2.4-2.3-2.4z"/>
<path fill="#9cc" d="m150.6 132.8 2.4 2.4-2.4-2.4m-50 2.4 2.4 2.4-2.4-2.4z"/>
<path fill="#c33" d="m105.4 135.2 2.4 2.4-2.4-2.4m33.3 0 2.4 2.4-2.4-2.4z"/>
<path fill="#9cc" d="m143.5 135.2 2.4 2.4-2.4-2.4z"/>
<path fill="#fcc" d="m105.4 137.6 2.4 2.3-2.4-2.3m33.3 0 2.4 2.3-2.4-2.3z"/>
<path fill="#ccf" d="m103 140 2.4 2.3-2.4-2.4z"/>
<path fill="#c33" d="m108.6 141.5.8 1.6-.8-1.6m28.5 0 .8 1.6-.8-1.6z"/>
<path fill="#ccf" d="m141.1 140 2.4 2.3-2.4-2.4z"/>
<path fill="#9cc" d="m103 142.3 2.4 2.4-2.4-2.4m38.1 0 2.4 2.4-2.4-2.4z"/>
<path fill="#fcc" d="m107.8 144.7 2.4 2.4-2.4-2.4m28.6 0 2.3 2.4-2.3-2.4z"/>
<path fill="#ccf" d="m105.4 147 2.4 2.5-2.4-2.4z"/>
<path fill="#c33" d="m111 148.7.7 1.6-.8-1.6m23.9 0 .8 1.6-.8-1.6z"/>
<path fill="#ccf" d="m138.7 147 2.4 2.5-2.4-2.4z"/>
<path fill="#9cc" d="m105.4 149.5 2.4 2.3-2.4-2.3m33.3 0 2.4 2.3-2.4-2.3z"/>
<path fill="#fcc" d="m110.2 151.8 2.3 2.4-2.3-2.3m23.8 0 2.4 2.3-2.4-2.3z"/>
<path fill="#cff" d="m107.8 154.2 2.4 2.4-2.4-2.4z"/>
<path fill="#c33" d="m113.3 155.8.8 1.6-.8-1.6m19 0 .9 1.6-.8-1.6z"/>
<path fill="#cff" d="m136.3 154.2 2.4 2.4-2.3-2.4z"/>
<path fill="#9cc" d="m107.8 156.6 2.4 2.4-2.4-2.4m28.6 0 2.3 2.4-2.3-2.4z"/>
<path fill="#69c" d="m107.8 159 2.4 2.4-2.4-2.4z"/>
<path fill="#fcc" d="m112.5 159 2.4 2.4-2.4-2.4m19 0 2.5 2.4-2.4-2.4z"/>
<path fill="#69c" d="m136.3 159 2.4 2.4-2.3-2.4z"/>
<path fill="#cff" d="m110.2 161.4 2.3 2.3-2.3-2.3zm23.8 0 2.4 2.3-2.4-2.3z"/>
<path fill="#9cc" d="m110.2 163.8 2.3 2.3-2.3-2.3m23.8 0 2.4 2.3-2.4-2.3z"/>
<path fill="#69c" d="m110.2 166.1 2.3 2.4-2.3-2.4m23.8 0 2.4 2.4-2.4-2.4z"/>
<path fill="#fcc" d="m115 168.5 2.3 2.4-2.4-2.4m14.3 0 2.4 2.4-2.4-2.4z"/>
<path fill="#9cf" d="m112.5 170.9 2.4 2.4-2.4-2.4z"/>
<path fill="#c33" d="m118.1 172.5.8 1.6-.8-1.6m9.5 0 .8 1.6-.8-1.6z"/>
<path fill="#9cf" d="m131.6 170.9 2.4 2.4-2.4-2.4z"/>
<path fill="#69c" d="m112.5 173.3 2.4 2.3-2.4-2.3m19 0 2.5 2.3-2.4-2.3z"/>
<path fill="#fcc" d="m117.3 175.7 2.4 2.3-2.4-2.3m9.5 0 2.4 2.3-2.4-2.3z"/>
<path fill="#9cf" d="m115 178 2.3 2.4-2.4-2.4zm14.2 0 2.4 2.4-2.4-2.4z"/>
<path fill="#6cc" d="m115 180.4 2.3 2.4-2.4-2.4m14.3 0 2.4 2.4-2.4-2.4z"/>
<path fill="#fcc" d="m119.7 182.8 2.4 2.4-2.4-2.4m4.7 0 2.4 2.4-2.3-2.4z"/>
<path fill="#ccf" d="m117.3 185.2 2.4 2.3-2.4-2.3m9.5 0 2.4 2.3-2.4-2.3z"/>
<path fill="#6cc" d="m117.3 187.6 2.4 2.3-2.4-2.3z"/>
<path fill="#c66" d="m122 187.6 2.4 2.3-2.3-2.3z"/>
<path fill="#6cc" d="m126.8 187.6 2.4 2.3-2.4-2.3z"/>
<path fill="#ccf" d="m119.7 192.3 2.4 2.4-2.4-2.4m4.7 0 2.4 2.4-2.3-2.4z"/>
<path fill="#9cc" d="m119.7 194.7 2.4 2.4-2.4-2.4m4.7 0 2.4 2.4-2.3-2.4m-2.4 4.8 2.4 2.3-2.4-2.4z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

View File

@@ -0,0 +1,18 @@
<svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-ax" viewBox="0 0 512 512">
<defs>
<clipPath id="a">
<path fill-opacity=".7" d="M166 0h850v850H166z"/>
</clipPath>
</defs>
<g clip-path="url(#a)" transform="translate(-100) scale(.6024)">
<path fill="#0053a5" d="M0 0h1300v850H0z"/>
<g fill="#ffce00">
<path d="M400 0h250v850H400z"/>
<path d="M0 300h1300v250H0z"/>
</g>
<g fill="#d21034">
<path d="M475 0h100v850H475z"/>
<path d="M0 375h1300v100H0z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 538 B

View File

@@ -0,0 +1,8 @@
<svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-az" viewBox="0 0 512 512">
<path fill="#3f9c35" d="M0 0h512v512H0z"/>
<path fill="#ed2939" d="M0 0h512v341.3H0z"/>
<path fill="#00b9e4" d="M0 0h512v170.7H0z"/>
<circle cx="238.8" cy="256" r="76.8" fill="#fff"/>
<circle cx="255.9" cy="256" r="64" fill="#ed2939"/>
<path fill="#fff" d="m324.2 213.3 8.1 23 22-10.5-10.4 22 23 8.2-23 8.2 10.4 22-22-10.5-8.1 23-8.2-23-22 10.5 10.5-22-23-8.2 23-8.2-10.5-22 22 10.5 8.2-23z"/>
</svg>

After

Width:  |  Height:  |  Size: 495 B

View File

@@ -0,0 +1,12 @@
<svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-ba" viewBox="0 0 512 512">
<defs>
<clipPath id="a">
<path fill-opacity=".7" d="M0 0h512v512H0z"/>
</clipPath>
</defs>
<g fill-rule="evenodd" clip-path="url(#a)">
<path fill="#009" d="M0 0h512v512H0z"/>
<path fill="#fc0" d="m77 0 437 437V0H77z"/>
<path fill="#FFF" d="m461.4 470.4-26.1-19.1-26.9 19 10.2-31.2-26.4-19.2h32.7l10.2-31 10 31.1 32.8.1-26.2 19.4 9.7 30.9zm76.7 10.4h-32.7l-10-31.2-10.2 31.1h-32.8l26.4 19.2-10.1 31.2 26.8-19 26.2 19-9.8-30.9 26.2-19.4zM391.8 379.6l26.2-19.4h-32.7L375.2 329 365 360h-32.7l26.4 19.3-10.1 31.1 26.8-19 26.1 19.1-9.7-31zm-60.3-60.4 26.2-19.4-32.8-.1-10-31.2-10.2 31.2-32.7-.1 26.4 19.2-10.2 31.2 26.9-19 26.1 19.1-9.7-31zm-59.7-59.7 26.2-19.4h-32.7l-10.1-31.2L245 240h-32.7l26.4 19.2-10.1 31.2 26.8-19 26.1 19-9.7-30.9zm-60.4-60.3 26.2-19.3-32.8-.1-10-31.2-10.2 31.2-32.7-.1 26.4 19.2-10.2 31.2 26.9-19 26.1 19-9.7-30.8zm-59.7-59.9L178 120l-32.7-.1-10-31.2-10.3 31.1H92.2l26.4 19.2-10.1 31.2 26.8-19 26.1 19-9.7-30.9zm-60-60L118 60l-32.7-.1-10-31.2L65 59.8H32.2L58.6 79l-10.1 31.2 26.8-19 26.2 19-9.8-30.9zm-60-60L58 0 25.2-.1l-10-31.2L4.8-.2h-32.7L-1.4 19l-10.1 31.2 26.8-19 26.1 19-9.7-30.9z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

Some files were not shown because too many files have changed in this diff Show More