diff --git a/app/Http/Controllers/Auth/AuthenticatedSessionController.php b/app/Http/Controllers/Auth/AuthenticatedSessionController.php new file mode 100644 index 0000000..09abe87 --- /dev/null +++ b/app/Http/Controllers/Auth/AuthenticatedSessionController.php @@ -0,0 +1,54 @@ +authenticate(); + + $request->session()->regenerate(); + + return redirect()->intended(RouteServiceProvider::HOME); + } + + /** + * Destroy an authenticated session. + * + * @param \Illuminate\Http\Request $request + * @return \Illuminate\Http\RedirectResponse + */ + public function destroy(Request $request) + { + Auth::guard('web')->logout(); + + $request->session()->invalidate(); + + $request->session()->regenerateToken(); + + return redirect('/'); + } +} diff --git a/app/Http/Controllers/Auth/ConfirmablePasswordController.php b/app/Http/Controllers/Auth/ConfirmablePasswordController.php new file mode 100644 index 0000000..1175010 --- /dev/null +++ b/app/Http/Controllers/Auth/ConfirmablePasswordController.php @@ -0,0 +1,44 @@ +validate([ + 'email' => $request->user()->email, + 'password' => $request->password, + ])) { + throw ValidationException::withMessages([ + 'password' => __('auth.password'), + ]); + } + + $request->session()->put('auth.password_confirmed_at', time()); + + return redirect()->intended(RouteServiceProvider::HOME); + } +} diff --git a/app/Http/Controllers/Auth/EmailVerificationNotificationController.php b/app/Http/Controllers/Auth/EmailVerificationNotificationController.php new file mode 100644 index 0000000..3362dca --- /dev/null +++ b/app/Http/Controllers/Auth/EmailVerificationNotificationController.php @@ -0,0 +1,27 @@ +user()->hasVerifiedEmail()) { + return redirect()->intended(RouteServiceProvider::HOME); + } + + $request->user()->sendEmailVerificationNotification(); + + return back()->with('status', 'verification-link-sent'); + } +} diff --git a/app/Http/Controllers/Auth/EmailVerificationPromptController.php b/app/Http/Controllers/Auth/EmailVerificationPromptController.php new file mode 100644 index 0000000..e247f95 --- /dev/null +++ b/app/Http/Controllers/Auth/EmailVerificationPromptController.php @@ -0,0 +1,23 @@ +user()->hasVerifiedEmail() + ? redirect()->intended(RouteServiceProvider::HOME) + : view('auth.verify-email'); + } +} diff --git a/app/Http/Controllers/Auth/NewPasswordController.php b/app/Http/Controllers/Auth/NewPasswordController.php new file mode 100644 index 0000000..1df8e21 --- /dev/null +++ b/app/Http/Controllers/Auth/NewPasswordController.php @@ -0,0 +1,65 @@ + $request]); + } + + /** + * Handle an incoming new password request. + * + * @param \Illuminate\Http\Request $request + * @return \Illuminate\Http\RedirectResponse + * + * @throws \Illuminate\Validation\ValidationException + */ + public function store(Request $request) + { + $request->validate([ + 'token' => ['required'], + 'email' => ['required', 'email'], + 'password' => ['required', 'confirmed', Rules\Password::defaults()], + ]); + + // Here we will attempt to reset the user's password. If it is successful we + // will update the password on an actual user model and persist it to the + // database. Otherwise we will parse the error and return the response. + $status = Password::reset( + $request->only('email', 'password', 'password_confirmation', 'token'), + function ($user) use ($request) { + $user->forceFill([ + 'password' => Hash::make($request->password), + 'remember_token' => Str::random(60), + ])->save(); + + event(new PasswordReset($user)); + } + ); + + // If the password was successfully reset, we will redirect the user back to + // the application's home authenticated view. If there is an error we can + // redirect them back to where they came from with their error message. + return $status == Password::PASSWORD_RESET + ? redirect()->route('login')->with('status', __($status)) + : back()->withInput($request->only('email')) + ->withErrors(['email' => __($status)]); + } +} diff --git a/app/Http/Controllers/Auth/PasswordResetLinkController.php b/app/Http/Controllers/Auth/PasswordResetLinkController.php new file mode 100644 index 0000000..667ab94 --- /dev/null +++ b/app/Http/Controllers/Auth/PasswordResetLinkController.php @@ -0,0 +1,47 @@ +validate([ + 'email' => ['required', 'email'], + ]); + + // We will send the password reset link to this user. Once we have attempted + // to send the link, we will examine the response then see the message we + // need to show to the user. Finally, we'll send out a proper response. + $status = Password::sendResetLink( + $request->only('email') + ); + + return $status == Password::RESET_LINK_SENT + ? back()->with('status', __($status)) + : back()->withInput($request->only('email')) + ->withErrors(['email' => __($status)]); + } +} diff --git a/app/Http/Controllers/Auth/RegisteredUserController.php b/app/Http/Controllers/Auth/RegisteredUserController.php new file mode 100644 index 0000000..487fedb --- /dev/null +++ b/app/Http/Controllers/Auth/RegisteredUserController.php @@ -0,0 +1,54 @@ +validate([ + 'name' => ['required', 'string', 'max:255'], + 'email' => ['required', 'string', 'email', 'max:255', 'unique:users'], + 'password' => ['required', 'confirmed', Rules\Password::defaults()], + ]); + + $user = User::create([ + 'name' => $request->name, + 'email' => $request->email, + 'password' => Hash::make($request->password), + ]); + + event(new Registered($user)); + + Auth::login($user); + + return redirect(RouteServiceProvider::HOME); + } +} diff --git a/app/Http/Controllers/Auth/VerifyEmailController.php b/app/Http/Controllers/Auth/VerifyEmailController.php new file mode 100644 index 0000000..6baa9aa --- /dev/null +++ b/app/Http/Controllers/Auth/VerifyEmailController.php @@ -0,0 +1,30 @@ +user()->hasVerifiedEmail()) { + return redirect()->intended(RouteServiceProvider::HOME.'?verified=1'); + } + + if ($request->user()->markEmailAsVerified()) { + event(new Verified($request->user())); + } + + return redirect()->intended(RouteServiceProvider::HOME.'?verified=1'); + } +} diff --git a/app/Http/Controllers/HomeController.php b/app/Http/Controllers/HomeController.php new file mode 100644 index 0000000..445154e --- /dev/null +++ b/app/Http/Controllers/HomeController.php @@ -0,0 +1,85 @@ +middleware('can:create role')->only('create'); + } + /** + * Display a listing of the resource. + * + * @return \Illuminate\Http\Response + */ + public function index(Request $request) + { + // $this->authorize('read role'); + // if(Gate::allows('read role')){ + // abort(403, 'unauthorized'); + // } + + return view('role.index'); + } + + /** + * Show the form for creating a new resource. + * + * @return \Illuminate\Http\Response + */ + public function create() + { + // + } + + /** + * Store a newly created resource in storage. + * + * @param \Illuminate\Http\Request $request + * @return \Illuminate\Http\Response + */ + public function store(Request $request) + { + // + } + + /** + * Display the specified resource. + * + * @param int $id + * @return \Illuminate\Http\Response + */ + public function show($id) + { + // + } + + /** + * Show the form for editing the specified resource. + * + * @param int $id + * @return \Illuminate\Http\Response + */ + public function edit($id) + { + // + } + + /** + * Update the specified resource in storage. + * + * @param \Illuminate\Http\Request $request + * @param int $id + * @return \Illuminate\Http\Response + */ + public function update(Request $request, $id) + { + // + } + + /** + * Remove the specified resource from storage. + * + * @param int $id + * @return \Illuminate\Http\Response + */ + public function destroy($id) + { + // + } +} diff --git a/app/Http/Requests/Auth/LoginRequest.php b/app/Http/Requests/Auth/LoginRequest.php new file mode 100644 index 0000000..940a2d4 --- /dev/null +++ b/app/Http/Requests/Auth/LoginRequest.php @@ -0,0 +1,93 @@ + ['required', 'string', 'email'], + 'password' => ['required', 'string'], + ]; + } + + /** + * Attempt to authenticate the request's credentials. + * + * @return void + * + * @throws \Illuminate\Validation\ValidationException + */ + public function authenticate() + { + $this->ensureIsNotRateLimited(); + + if (! Auth::attempt($this->only('email', 'password'), $this->boolean('remember'))) { + RateLimiter::hit($this->throttleKey()); + + throw ValidationException::withMessages([ + 'email' => trans('auth.failed'), + ]); + } + + RateLimiter::clear($this->throttleKey()); + } + + /** + * Ensure the login request is not rate limited. + * + * @return void + * + * @throws \Illuminate\Validation\ValidationException + */ + public function ensureIsNotRateLimited() + { + if (! RateLimiter::tooManyAttempts($this->throttleKey(), 5)) { + return; + } + + event(new Lockout($this)); + + $seconds = RateLimiter::availableIn($this->throttleKey()); + + throw ValidationException::withMessages([ + 'email' => trans('auth.throttle', [ + 'seconds' => $seconds, + 'minutes' => ceil($seconds / 60), + ]), + ]); + } + + /** + * Get the rate limiting throttle key for the request. + * + * @return string + */ + public function throttleKey() + { + return Str::lower($this->input('email')).'|'.$this->ip(); + } +} diff --git a/app/Models/Home.php b/app/Models/Home.php new file mode 100644 index 0000000..17e94f9 --- /dev/null +++ b/app/Models/Home.php @@ -0,0 +1,11 @@ + [ + + /* + * When using the "HasPermissions" trait from this package, we need to know which + * Eloquent model should be used to retrieve your permissions. Of course, it + * is often just the "Permission" model but you may use whatever you like. + * + * The model you want to use as a Permission model needs to implement the + * `Spatie\Permission\Contracts\Permission` contract. + */ + + 'permission' => Spatie\Permission\Models\Permission::class, + + /* + * When using the "HasRoles" trait from this package, we need to know which + * Eloquent model should be used to retrieve your roles. Of course, it + * is often just the "Role" model but you may use whatever you like. + * + * The model you want to use as a Role model needs to implement the + * `Spatie\Permission\Contracts\Role` contract. + */ + + 'role' => Spatie\Permission\Models\Role::class, + + ], + + 'table_names' => [ + + /* + * When using the "HasRoles" trait from this package, we need to know which + * table should be used to retrieve your roles. We have chosen a basic + * default value but you may easily change it to any table you like. + */ + + 'roles' => 'roles', + + /* + * When using the "HasPermissions" trait from this package, we need to know which + * table should be used to retrieve your permissions. We have chosen a basic + * default value but you may easily change it to any table you like. + */ + + 'permissions' => 'permissions', + + /* + * When using the "HasPermissions" trait from this package, we need to know which + * table should be used to retrieve your models permissions. We have chosen a + * basic default value but you may easily change it to any table you like. + */ + + 'model_has_permissions' => 'model_has_permissions', + + /* + * When using the "HasRoles" trait from this package, we need to know which + * table should be used to retrieve your models roles. We have chosen a + * basic default value but you may easily change it to any table you like. + */ + + 'model_has_roles' => 'model_has_roles', + + /* + * When using the "HasRoles" trait from this package, we need to know which + * table should be used to retrieve your roles permissions. We have chosen a + * basic default value but you may easily change it to any table you like. + */ + + 'role_has_permissions' => 'role_has_permissions', + ], + + 'column_names' => [ + /* + * Change this if you want to name the related pivots other than defaults + */ + 'role_pivot_key' => null, //default 'role_id', + 'permission_pivot_key' => null, //default 'permission_id', + + /* + * Change this if you want to name the related model primary key other than + * `model_id`. + * + * For example, this would be nice if your primary keys are all UUIDs. In + * that case, name this `model_uuid`. + */ + + 'model_morph_key' => 'model_id', + + /* + * Change this if you want to use the teams feature and your related model's + * foreign key is other than `team_id`. + */ + + 'team_foreign_key' => 'team_id', + ], + + /* + * When set to true, the method for checking permissions will be registered on the gate. + * Set this to false, if you want to implement custom logic for checking permissions. + */ + + 'register_permission_check_method' => true, + + /* + * When set to true the package implements teams using the 'team_foreign_key'. If you want + * the migrations to register the 'team_foreign_key', you must set this to true + * before doing the migration. If you already did the migration then you must make a new + * migration to also add 'team_foreign_key' to 'roles', 'model_has_roles', and + * 'model_has_permissions'(view the latest version of package's migration file) + */ + + 'teams' => false, + + /* + * When set to true, the required permission names are added to the exception + * message. This could be considered an information leak in some contexts, so + * the default setting is false here for optimum safety. + */ + + 'display_permission_in_exception' => false, + + /* + * When set to true, the required role names are added to the exception + * message. This could be considered an information leak in some contexts, so + * the default setting is false here for optimum safety. + */ + + 'display_role_in_exception' => false, + + /* + * By default wildcard permission lookups are disabled. + */ + + 'enable_wildcard_permission' => false, + + 'cache' => [ + + /* + * By default all permissions are cached for 24 hours to speed up performance. + * When permissions or roles are updated the cache is flushed automatically. + */ + + 'expiration_time' => \DateInterval::createFromDateString('24 hours'), + + /* + * The cache key used to store all permissions. + */ + + 'key' => 'spatie.permission.cache', + + /* + * You may optionally indicate a specific cache driver to use for permission and + * role caching using any of the `store` drivers listed in the cache.php config + * file. Using 'default' here means to use the `default` set in cache.php. + */ + + 'store' => 'default', + ], +]; diff --git a/database/migrations/2023_08_22_031832_create_permission_tables.php b/database/migrations/2023_08_22_031832_create_permission_tables.php new file mode 100644 index 0000000..04c3278 --- /dev/null +++ b/database/migrations/2023_08_22_031832_create_permission_tables.php @@ -0,0 +1,141 @@ +bigIncrements('id'); // permission id + $table->string('name'); // For MySQL 8.0 use string('name', 125); + $table->string('guard_name'); // For MySQL 8.0 use string('guard_name', 125); + $table->timestamps(); + + $table->unique(['name', 'guard_name']); + }); + + Schema::create($tableNames['roles'], function (Blueprint $table) use ($teams, $columnNames) { + $table->bigIncrements('id'); // role id + if ($teams || config('permission.testing')) { // permission.testing is a fix for sqlite testing + $table->unsignedBigInteger($columnNames['team_foreign_key'])->nullable(); + $table->index($columnNames['team_foreign_key'], 'roles_team_foreign_key_index'); + } + $table->string('name'); // For MySQL 8.0 use string('name', 125); + $table->string('guard_name'); // For MySQL 8.0 use string('guard_name', 125); + $table->timestamps(); + if ($teams || config('permission.testing')) { + $table->unique([$columnNames['team_foreign_key'], 'name', 'guard_name']); + } else { + $table->unique(['name', 'guard_name']); + } + }); + + Schema::create($tableNames['model_has_permissions'], function (Blueprint $table) use ($tableNames, $columnNames, $teams) { + $table->unsignedBigInteger(PermissionRegistrar::$pivotPermission); + + $table->string('model_type'); + $table->unsignedBigInteger($columnNames['model_morph_key']); + $table->index([$columnNames['model_morph_key'], 'model_type'], 'model_has_permissions_model_id_model_type_index'); + + $table->foreign(PermissionRegistrar::$pivotPermission) + ->references('id') // permission id + ->on($tableNames['permissions']) + ->onDelete('cascade'); + if ($teams) { + $table->unsignedBigInteger($columnNames['team_foreign_key']); + $table->index($columnNames['team_foreign_key'], 'model_has_permissions_team_foreign_key_index'); + + $table->primary([$columnNames['team_foreign_key'], PermissionRegistrar::$pivotPermission, $columnNames['model_morph_key'], 'model_type'], + 'model_has_permissions_permission_model_type_primary'); + } else { + $table->primary([PermissionRegistrar::$pivotPermission, $columnNames['model_morph_key'], 'model_type'], + 'model_has_permissions_permission_model_type_primary'); + } + + }); + + Schema::create($tableNames['model_has_roles'], function (Blueprint $table) use ($tableNames, $columnNames, $teams) { + $table->unsignedBigInteger(PermissionRegistrar::$pivotRole); + + $table->string('model_type'); + $table->unsignedBigInteger($columnNames['model_morph_key']); + $table->index([$columnNames['model_morph_key'], 'model_type'], 'model_has_roles_model_id_model_type_index'); + + $table->foreign(PermissionRegistrar::$pivotRole) + ->references('id') // role id + ->on($tableNames['roles']) + ->onDelete('cascade'); + if ($teams) { + $table->unsignedBigInteger($columnNames['team_foreign_key']); + $table->index($columnNames['team_foreign_key'], 'model_has_roles_team_foreign_key_index'); + + $table->primary([$columnNames['team_foreign_key'], PermissionRegistrar::$pivotRole, $columnNames['model_morph_key'], 'model_type'], + 'model_has_roles_role_model_type_primary'); + } else { + $table->primary([PermissionRegistrar::$pivotRole, $columnNames['model_morph_key'], 'model_type'], + 'model_has_roles_role_model_type_primary'); + } + }); + + Schema::create($tableNames['role_has_permissions'], function (Blueprint $table) use ($tableNames) { + $table->unsignedBigInteger(PermissionRegistrar::$pivotPermission); + $table->unsignedBigInteger(PermissionRegistrar::$pivotRole); + + $table->foreign(PermissionRegistrar::$pivotPermission) + ->references('id') // permission id + ->on($tableNames['permissions']) + ->onDelete('cascade'); + + $table->foreign(PermissionRegistrar::$pivotRole) + ->references('id') // role id + ->on($tableNames['roles']) + ->onDelete('cascade'); + + $table->primary([PermissionRegistrar::$pivotPermission, PermissionRegistrar::$pivotRole], 'role_has_permissions_permission_id_role_id_primary'); + }); + + app('cache') + ->store(config('permission.cache.store') != 'default' ? config('permission.cache.store') : null) + ->forget(config('permission.cache.key')); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + $tableNames = config('permission.table_names'); + + if (empty($tableNames)) { + throw new \Exception('Error: config/permission.php not found and defaults could not be merged. Please publish the package configuration before proceeding, or drop the tables manually.'); + } + + Schema::drop($tableNames['role_has_permissions']); + Schema::drop($tableNames['model_has_roles']); + Schema::drop($tableNames['model_has_permissions']); + Schema::drop($tableNames['roles']); + Schema::drop($tableNames['permissions']); + } +} diff --git a/database/seeders/DatabaseSeeder.php b/database/seeders/DatabaseSeeder.php index 57b73b5..6a00f00 100644 --- a/database/seeders/DatabaseSeeder.php +++ b/database/seeders/DatabaseSeeder.php @@ -14,5 +14,7 @@ class DatabaseSeeder extends Seeder public function run() { // \App\Models\User::factory(10)->create(); + + $this->call(UserRolePermissionSeeder::class); } } diff --git a/database/seeders/UserRolePermissionSeeder.php b/database/seeders/UserRolePermissionSeeder.php new file mode 100644 index 0000000..6c2fecc --- /dev/null +++ b/database/seeders/UserRolePermissionSeeder.php @@ -0,0 +1,64 @@ + now(), + 'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password + 'remember_token' => Str::random(10), + ]; + + DB::beginTransaction(); + try { + //code... + + + $admin = User::create(array_merge([ + 'email' => 'admin@gmail.com', + 'name' => 'admin', + ], $default_user_value)); + + $staff = User::create(array_merge([ + 'email' => 'staff@gmail.com', + 'name' => 'staff', + ], $default_user_value)); + + $role_admin = Role::create(['name' => 'admin']); + $role_staff = Role::create(['name' => 'staff']); + + $permission = Permission::create(['name' => 'read role']); + $permission = Permission::create(['name' => 'create role']); + $permission = Permission::create(['name' => 'update role']); + $permission = Permission::create(['name' => 'delete role']); + + $role_admin->givePermissionTo('read role'); + $role_admin->givePermissionTo('create role'); + $role_admin->givePermissionTo('update role'); + $role_admin->givePermissionTo('delete role'); + + $admin->assignRole('admin'); + $staff->assignRole('staff'); + + DB::commit(); + } catch (\Throwable $th) { + throw $th; + } + } +} diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..cd48fa3 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,9472 @@ +{ + "name": "hse", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "devDependencies": { + "@tailwindcss/forms": "^0.5.2", + "alpinejs": "^3.4.2", + "autoprefixer": "^10.4.2", + "axios": "^0.21", + "laravel-mix": "^6.0.6", + "lodash": "^4.17.19", + "postcss": "^8.4.6", + "tailwindcss": "^3.1.0" + } + }, + "node_modules/@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.10.tgz", + "integrity": "sha512-/KKIMG4UEL35WmI9OlvMhurwtytjvXoFcGNrOvyG9zIzA8YmPjVtIZUf7b05+TPO7G7/GEmLHDaoCgACHl9hhA==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.22.10", + "chalk": "^2.4.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/code-frame/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/code-frame/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/@babel/code-frame/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.22.9", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.9.tgz", + "integrity": "sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz", + "integrity": "sha512-fTmqbbUBAwCcre6zPzNngvsI0aNrPZe77AeqvDxWM9Nm+04RrJ3CAmGHA9f7lJQY6ZMhRztNemy4uslDxTX4Qw==", + "dev": true, + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.22.10", + "@babel/generator": "^7.22.10", + "@babel/helper-compilation-targets": "^7.22.10", + "@babel/helper-module-transforms": "^7.22.9", + "@babel/helpers": "^7.22.10", + "@babel/parser": "^7.22.10", + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.10", + "@babel/types": "^7.22.10", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.2", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/generator": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.10.tgz", + "integrity": "sha512-79KIf7YiWjjdZ81JnLujDRApWtl7BxTqWD88+FFdQEIOG8LJ0etDOM7CXuIgGJa55sGOwZVwuEsaLEm0PJ5/+A==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.10", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", + "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.10.tgz", + "integrity": "sha512-Av0qubwDQxC56DoUReVDeLfMEjYYSN1nZrTUrWkXd7hpU73ymRANkbuDm3yni9npkn+RXy9nNbEJZEzXr7xrfQ==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.10" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.10.tgz", + "integrity": "sha512-JMSwHD4J7SLod0idLq5PKgI+6g/hLD/iuWBq08ZX49xE14VpVEojJ5rHWptpirV2j020MvypRLAXAO50igCJ5Q==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.22.9", + "@babel/helper-validator-option": "^7.22.5", + "browserslist": "^4.21.9", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.10.tgz", + "integrity": "sha512-5IBb77txKYQPpOEdUdIhBx8VrZyDCQ+H82H0+5dX1TmuscP5vJKEE3cKurjtIw/vFwzbVH48VweE78kVDBrqjA==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-member-expression-to-functions": "^7.22.5", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.22.9", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.9.tgz", + "integrity": "sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "regexpu-core": "^5.3.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.2.tgz", + "integrity": "sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw==", + "dev": true, + "dependencies": { + "@babel/helper-compilation-targets": "^7.22.6", + "@babel/helper-plugin-utils": "^7.22.5", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz", + "integrity": "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz", + "integrity": "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==", + "dev": true, + "dependencies": { + "@babel/template": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz", + "integrity": "sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz", + "integrity": "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.22.9", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.9.tgz", + "integrity": "sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-module-imports": "^7.22.5", + "@babel/helper-simple-access": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-validator-identifier": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", + "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", + "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.22.9", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.9.tgz", + "integrity": "sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-wrap-function": "^7.22.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.22.9", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.9.tgz", + "integrity": "sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-member-expression-to-functions": "^7.22.5", + "@babel/helper-optimise-call-expression": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", + "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", + "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", + "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", + "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz", + "integrity": "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz", + "integrity": "sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-wrap-function": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.10.tgz", + "integrity": "sha512-OnMhjWjuGYtdoO3FmsEFWvBStBAe2QOgwOLsLNDjN+aaiMD8InJk1/O3HSD8lkqTjCgg5YI34Tz15KNNA3p+nQ==", + "dev": true, + "dependencies": { + "@babel/helper-function-name": "^7.22.5", + "@babel/template": "^7.22.5", + "@babel/types": "^7.22.10" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.10.tgz", + "integrity": "sha512-a41J4NW8HyZa1I1vAndrraTlPZ/eZoga2ZgS7fEr0tZJGVU4xqdE80CEm0CcNjha5EZ8fTBYLKHF0kqDUuAwQw==", + "dev": true, + "dependencies": { + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.10", + "@babel/types": "^7.22.10" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.10.tgz", + "integrity": "sha512-78aUtVcT7MUscr0K5mIEnkwxPE0MaxkR5RxRwuHaQ+JuU5AmTPhY+do2mdzVTnIJJpyBglql2pehuBIWHug+WQ==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.22.5", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/parser": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.10.tgz", + "integrity": "sha512-lNbdGsQb9ekfsnjFGhEiF4hfFqGgfOP3H3d27re3n+CGhNuTSUEQdfWk556sTLNTloczcdM5TYF2LhzmDQKyvQ==", + "dev": true, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5.tgz", + "integrity": "sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.5.tgz", + "integrity": "sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/plugin-transform-optional-chaining": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" + } + }, + "node_modules/@babel/plugin-proposal-object-rest-spread": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz", + "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.20.5", + "@babel/helper-compilation-targets": "^7.20.7", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.0-placeholder-for-preset-env.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", + "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", + "dev": true, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-assertions": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz", + "integrity": "sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-attributes": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz", + "integrity": "sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-unicode-sets-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", + "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz", + "integrity": "sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-generator-functions": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.10.tgz", + "integrity": "sha512-eueE8lvKVzq5wIObKK/7dvoeKJ+xc6TvRn6aysIjS6pSCeLy7S/eVi7pEQknZqyqvzaNKdDtem8nUNTBgDVR2g==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-remap-async-to-generator": "^7.22.9", + "@babel/plugin-syntax-async-generators": "^7.8.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz", + "integrity": "sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-remap-async-to-generator": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz", + "integrity": "sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.10.tgz", + "integrity": "sha512-1+kVpGAOOI1Albt6Vse7c8pHzcZQdQKW+wJH+g8mCaszOdDVwRXa/slHPqIw+oJAJANTKDMuM2cBdV0Dg618Vg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-properties": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz", + "integrity": "sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-static-block": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.5.tgz", + "integrity": "sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" + } + }, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.6.tgz", + "integrity": "sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-compilation-targets": "^7.22.6", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz", + "integrity": "sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/template": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.10.tgz", + "integrity": "sha512-dPJrL0VOyxqLM9sritNbMSGx/teueHF/htMKrPT7DNxccXxRDPYqlgPFFdr8u+F+qUZOkZoXue/6rL5O5GduEw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz", + "integrity": "sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz", + "integrity": "sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dynamic-import": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.5.tgz", + "integrity": "sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz", + "integrity": "sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==", + "dev": true, + "dependencies": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-export-namespace-from": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.5.tgz", + "integrity": "sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.5.tgz", + "integrity": "sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz", + "integrity": "sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==", + "dev": true, + "dependencies": { + "@babel/helper-compilation-targets": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-json-strings": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.5.tgz", + "integrity": "sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-json-strings": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz", + "integrity": "sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-logical-assignment-operators": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.5.tgz", + "integrity": "sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz", + "integrity": "sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.22.5.tgz", + "integrity": "sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.5.tgz", + "integrity": "sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-simple-access": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.5.tgz", + "integrity": "sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==", + "dev": true, + "dependencies": { + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz", + "integrity": "sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz", + "integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz", + "integrity": "sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.5.tgz", + "integrity": "sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-numeric-separator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.5.tgz", + "integrity": "sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-rest-spread": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.5.tgz", + "integrity": "sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.22.5", + "@babel/helper-compilation-targets": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz", + "integrity": "sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-catch-binding": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.5.tgz", + "integrity": "sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-chaining": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.10.tgz", + "integrity": "sha512-MMkQqZAZ+MGj+jGTG3OTuhKeBpNcO+0oCEbrGNEaOmiEn+1MzRyQlYsruGiU8RTK3zV6XwrVJTmwiDOyYK6J9g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.5.tgz", + "integrity": "sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-methods": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz", + "integrity": "sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-property-in-object": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.5.tgz", + "integrity": "sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz", + "integrity": "sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.10.tgz", + "integrity": "sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "regenerator-transform": "^0.15.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz", + "integrity": "sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.22.10.tgz", + "integrity": "sha512-RchI7HePu1eu0CYNKHHHQdfenZcM4nz8rew5B1VWqeRKdcwW5aQ5HeG9eTUbWiAS1UrmHVLmoxTWHt3iLD/NhA==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "babel-plugin-polyfill-corejs2": "^0.4.5", + "babel-plugin-polyfill-corejs3": "^0.8.3", + "babel-plugin-polyfill-regenerator": "^0.5.2", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz", + "integrity": "sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-spread": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz", + "integrity": "sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz", + "integrity": "sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz", + "integrity": "sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz", + "integrity": "sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.10.tgz", + "integrity": "sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-property-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz", + "integrity": "sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz", + "integrity": "sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-sets-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz", + "integrity": "sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.22.10.tgz", + "integrity": "sha512-riHpLb1drNkpLlocmSyEg4oYJIQFeXAK/d7rI6mbD0XsvoTOOweXDmQPG/ErxsEhWk3rl3Q/3F6RFQlVFS8m0A==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.22.9", + "@babel/helper-compilation-targets": "^7.22.10", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-option": "^7.22.5", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.22.5", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.22.5", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-import-assertions": "^7.22.5", + "@babel/plugin-syntax-import-attributes": "^7.22.5", + "@babel/plugin-syntax-import-meta": "^7.10.4", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.22.5", + "@babel/plugin-transform-async-generator-functions": "^7.22.10", + "@babel/plugin-transform-async-to-generator": "^7.22.5", + "@babel/plugin-transform-block-scoped-functions": "^7.22.5", + "@babel/plugin-transform-block-scoping": "^7.22.10", + "@babel/plugin-transform-class-properties": "^7.22.5", + "@babel/plugin-transform-class-static-block": "^7.22.5", + "@babel/plugin-transform-classes": "^7.22.6", + "@babel/plugin-transform-computed-properties": "^7.22.5", + "@babel/plugin-transform-destructuring": "^7.22.10", + "@babel/plugin-transform-dotall-regex": "^7.22.5", + "@babel/plugin-transform-duplicate-keys": "^7.22.5", + "@babel/plugin-transform-dynamic-import": "^7.22.5", + "@babel/plugin-transform-exponentiation-operator": "^7.22.5", + "@babel/plugin-transform-export-namespace-from": "^7.22.5", + "@babel/plugin-transform-for-of": "^7.22.5", + "@babel/plugin-transform-function-name": "^7.22.5", + "@babel/plugin-transform-json-strings": "^7.22.5", + "@babel/plugin-transform-literals": "^7.22.5", + "@babel/plugin-transform-logical-assignment-operators": "^7.22.5", + "@babel/plugin-transform-member-expression-literals": "^7.22.5", + "@babel/plugin-transform-modules-amd": "^7.22.5", + "@babel/plugin-transform-modules-commonjs": "^7.22.5", + "@babel/plugin-transform-modules-systemjs": "^7.22.5", + "@babel/plugin-transform-modules-umd": "^7.22.5", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", + "@babel/plugin-transform-new-target": "^7.22.5", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.22.5", + "@babel/plugin-transform-numeric-separator": "^7.22.5", + "@babel/plugin-transform-object-rest-spread": "^7.22.5", + "@babel/plugin-transform-object-super": "^7.22.5", + "@babel/plugin-transform-optional-catch-binding": "^7.22.5", + "@babel/plugin-transform-optional-chaining": "^7.22.10", + "@babel/plugin-transform-parameters": "^7.22.5", + "@babel/plugin-transform-private-methods": "^7.22.5", + "@babel/plugin-transform-private-property-in-object": "^7.22.5", + "@babel/plugin-transform-property-literals": "^7.22.5", + "@babel/plugin-transform-regenerator": "^7.22.10", + "@babel/plugin-transform-reserved-words": "^7.22.5", + "@babel/plugin-transform-shorthand-properties": "^7.22.5", + "@babel/plugin-transform-spread": "^7.22.5", + "@babel/plugin-transform-sticky-regex": "^7.22.5", + "@babel/plugin-transform-template-literals": "^7.22.5", + "@babel/plugin-transform-typeof-symbol": "^7.22.5", + "@babel/plugin-transform-unicode-escapes": "^7.22.10", + "@babel/plugin-transform-unicode-property-regex": "^7.22.5", + "@babel/plugin-transform-unicode-regex": "^7.22.5", + "@babel/plugin-transform-unicode-sets-regex": "^7.22.5", + "@babel/preset-modules": "0.1.6-no-external-plugins", + "@babel/types": "^7.22.10", + "babel-plugin-polyfill-corejs2": "^0.4.5", + "babel-plugin-polyfill-corejs3": "^0.8.3", + "babel-plugin-polyfill-regenerator": "^0.5.2", + "core-js-compat": "^3.31.0", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-env/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/preset-modules": { + "version": "0.1.6-no-external-plugins", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", + "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==", + "dev": true + }, + "node_modules/@babel/runtime": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.10.tgz", + "integrity": "sha512-21t/fkKLMZI4pqP2wlmsQAWnYW1PDyKyyUV4vCi+B25ydmdaYTKXPwCj0BzSUnZf4seIiYvSA3jcZ3gdsMFkLQ==", + "dev": true, + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", + "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.10.tgz", + "integrity": "sha512-Q/urqV4pRByiNNpb/f5OSv28ZlGJiFiiTh+GAHktbIrkPhPbl90+uW6SmpoLyZqutrg9AEaEf3Q/ZBRHBXgxig==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.22.10", + "@babel/generator": "^7.22.10", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/parser": "^7.22.10", + "@babel/types": "^7.22.10", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.10.tgz", + "integrity": "sha512-obaoigiLrlDZ7TUQln/8m4mSqIW2QFeOrCQc9r+xsaHGNoplVNYlRVpsfE8Vj35GEm2ZH4ZhrNYogs/3fj85kg==", + "dev": true, + "dependencies": { + "@babel/helper-string-parser": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.5", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@colors/colors": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", + "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.1.90" + } + }, + "node_modules/@discoveryjs/json-ext": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", + "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", + "dev": true, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz", + "integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.19", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz", + "integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@leichtgewicht/ip-codec": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", + "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==", + "dev": true + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@tailwindcss/forms": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/forms/-/forms-0.5.4.tgz", + "integrity": "sha512-YAm12D3R7/9Mh4jFbYSMnsd6jG++8KxogWgqs7hbdo/86aWjjlIEvL7+QYdVELmAI0InXTpZqFIg5e7aDVWI2Q==", + "dev": true, + "dependencies": { + "mini-svg-data-uri": "^1.2.3" + }, + "peerDependencies": { + "tailwindcss": ">=3.0.0 || >= 3.0.0-alpha.1" + } + }, + "node_modules/@trysound/sax": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", + "dev": true, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/@types/babel__core": { + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.1.tgz", + "integrity": "sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", + "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", + "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.1.tgz", + "integrity": "sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.20.7" + } + }, + "node_modules/@types/body-parser": { + "version": "1.19.2", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", + "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", + "dev": true, + "dependencies": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "node_modules/@types/bonjour": { + "version": "3.5.10", + "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz", + "integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/clean-css": { + "version": "4.2.6", + "resolved": "https://registry.npmjs.org/@types/clean-css/-/clean-css-4.2.6.tgz", + "integrity": "sha512-Ze1tf+LnGPmG6hBFMi0B4TEB0mhF7EiMM5oyjLDNPE9hxrPU0W+5+bHvO+eFPA+bt0iC1zkQMoU/iGdRVjcRbw==", + "dev": true, + "dependencies": { + "@types/node": "*", + "source-map": "^0.6.0" + } + }, + "node_modules/@types/connect": { + "version": "3.4.35", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", + "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/connect-history-api-fallback": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.0.tgz", + "integrity": "sha512-4x5FkPpLipqwthjPsF7ZRbOv3uoLUFkTA9G9v583qi4pACvq0uTELrB8OLUzPWUI4IJIyvM85vzkV1nyiI2Lig==", + "dev": true, + "dependencies": { + "@types/express-serve-static-core": "*", + "@types/node": "*" + } + }, + "node_modules/@types/eslint": { + "version": "8.44.2", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.44.2.tgz", + "integrity": "sha512-sdPRb9K6iL5XZOmBubg8yiFp5yS/JdUDQsq5e6h95km91MCYMuvp7mh1fjPEYUhvHepKpZOjnEaMBR4PxjWDzg==", + "dev": true, + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/eslint-scope": { + "version": "3.7.4", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", + "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", + "dev": true, + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz", + "integrity": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==", + "dev": true + }, + "node_modules/@types/express": { + "version": "4.17.17", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.17.tgz", + "integrity": "sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==", + "dev": true, + "dependencies": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.33", + "@types/qs": "*", + "@types/serve-static": "*" + } + }, + "node_modules/@types/express-serve-static-core": { + "version": "4.17.35", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.35.tgz", + "integrity": "sha512-wALWQwrgiB2AWTT91CB62b6Yt0sNHpznUXeZEcnPU3DRdlDIz74x8Qg1UUYKSVFi+va5vKOLYRBI1bRKiLLKIg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*", + "@types/send": "*" + } + }, + "node_modules/@types/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", + "dev": true, + "dependencies": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "node_modules/@types/http-errors": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.1.tgz", + "integrity": "sha512-/K3ds8TRAfBvi5vfjuz8y6+GiAYBZ0x4tXv1Av6CWBWn0IlADc+ZX9pMq7oU0fNQPnBwIZl3rmeLp6SBApbxSQ==", + "dev": true + }, + "node_modules/@types/http-proxy": { + "version": "1.17.11", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.11.tgz", + "integrity": "sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/imagemin": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/@types/imagemin/-/imagemin-8.0.1.tgz", + "integrity": "sha512-DSpM//dRPzme7doePGkmR1uoquHi0h0ElaA5qFnxHECfFcB8z/jhMI8eqmxWNpHn9ZG18p4PC918sZLhR0cr5A==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/imagemin-gifsicle": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/@types/imagemin-gifsicle/-/imagemin-gifsicle-7.0.1.tgz", + "integrity": "sha512-kUz6sUh0P95JOS0RGEaaemWUrASuw+dLsWIveK2UZJx74id/B9epgblMkCk/r5MjUWbZ83wFvacG5Rb/f97gyA==", + "dev": true, + "dependencies": { + "@types/imagemin": "*" + } + }, + "node_modules/@types/imagemin-mozjpeg": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/@types/imagemin-mozjpeg/-/imagemin-mozjpeg-8.0.1.tgz", + "integrity": "sha512-kMQWEoKxxhlnH4POI3qfW9DjXlQfi80ux3l2b3j5R3eudSCoUIzKQLkfMjNJ6eMYnMWBcB+rfQOWqIzdIwFGKw==", + "dev": true, + "dependencies": { + "@types/imagemin": "*" + } + }, + "node_modules/@types/imagemin-optipng": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/@types/imagemin-optipng/-/imagemin-optipng-5.2.1.tgz", + "integrity": "sha512-XCM/3q+HUL7v4zOqMI+dJ5dTxT+MUukY9KU49DSnYb/4yWtSMHJyADP+WHSMVzTR63J2ZvfUOzSilzBNEQW78g==", + "dev": true, + "dependencies": { + "@types/imagemin": "*" + } + }, + "node_modules/@types/imagemin-svgo": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/@types/imagemin-svgo/-/imagemin-svgo-8.0.1.tgz", + "integrity": "sha512-YafkdrVAcr38U0Ln1C+L1n4SIZqC47VBHTyxCq7gTUSd1R9MdIvMcrljWlgU1M9O68WZDeQWUrKipKYfEOCOvQ==", + "dev": true, + "dependencies": { + "@types/imagemin": "*", + "@types/svgo": "^1" + } + }, + "node_modules/@types/json-schema": { + "version": "7.0.12", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.12.tgz", + "integrity": "sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==", + "dev": true + }, + "node_modules/@types/mime": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz", + "integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==", + "dev": true + }, + "node_modules/@types/minimatch": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", + "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", + "dev": true + }, + "node_modules/@types/node": { + "version": "20.5.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.5.1.tgz", + "integrity": "sha512-4tT2UrL5LBqDwoed9wZ6N3umC4Yhz3W3FloMmiiG4JwmUJWpie0c7lcnUNd4gtMKuDEO4wRVS8B6Xa0uMRsMKg==", + "dev": true + }, + "node_modules/@types/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", + "dev": true + }, + "node_modules/@types/qs": { + "version": "6.9.7", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", + "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", + "dev": true + }, + "node_modules/@types/range-parser": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", + "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", + "dev": true + }, + "node_modules/@types/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", + "dev": true + }, + "node_modules/@types/send": { + "version": "0.17.1", + "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.1.tgz", + "integrity": "sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==", + "dev": true, + "dependencies": { + "@types/mime": "^1", + "@types/node": "*" + } + }, + "node_modules/@types/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==", + "dev": true, + "dependencies": { + "@types/express": "*" + } + }, + "node_modules/@types/serve-static": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.2.tgz", + "integrity": "sha512-J2LqtvFYCzaj8pVYKw8klQXrLLk7TBZmQ4ShlcdkELFKGwGMfevMLneMMRkMgZxotOD9wg497LpC7O8PcvAmfw==", + "dev": true, + "dependencies": { + "@types/http-errors": "*", + "@types/mime": "*", + "@types/node": "*" + } + }, + "node_modules/@types/sockjs": { + "version": "0.3.33", + "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz", + "integrity": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/svgo": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/@types/svgo/-/svgo-1.3.6.tgz", + "integrity": "sha512-AZU7vQcy/4WFEuwnwsNsJnFwupIpbllH1++LXScN6uxT1Z4zPzdrWG97w4/I7eFKFTvfy/bHFStWjdBAg2Vjug==", + "dev": true + }, + "node_modules/@types/ws": { + "version": "8.5.5", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.5.tgz", + "integrity": "sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@vue/reactivity": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.1.5.tgz", + "integrity": "sha512-1tdfLmNjWG6t/CsPldh+foumYFo3cpyCHgBYQ34ylaMsJ+SNHQ1kApMIa8jN+i593zQuaw3AdWH0nJTARzCFhg==", + "dev": true, + "dependencies": { + "@vue/shared": "3.1.5" + } + }, + "node_modules/@vue/shared": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.1.5.tgz", + "integrity": "sha512-oJ4F3TnvpXaQwZJNF3ZK+kLPHKarDmJjJ6jyzVNDKH9md1dptjC7lWR//jrGuLdek/U6iltWxqAnYOu8gCiOvA==", + "dev": true + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", + "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", + "dev": true, + "dependencies": { + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", + "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "dev": true, + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", + "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "dev": true, + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "dev": true, + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", + "dev": true + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", + "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-opt": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6", + "@webassemblyjs/wast-printer": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", + "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", + "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", + "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", + "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webpack-cli/configtest": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.2.0.tgz", + "integrity": "sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg==", + "dev": true, + "peerDependencies": { + "webpack": "4.x.x || 5.x.x", + "webpack-cli": "4.x.x" + } + }, + "node_modules/@webpack-cli/info": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-1.5.0.tgz", + "integrity": "sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ==", + "dev": true, + "dependencies": { + "envinfo": "^7.7.3" + }, + "peerDependencies": { + "webpack-cli": "4.x.x" + } + }, + "node_modules/@webpack-cli/serve": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.7.0.tgz", + "integrity": "sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==", + "dev": true, + "peerDependencies": { + "webpack-cli": "4.x.x" + }, + "peerDependenciesMeta": { + "webpack-dev-server": { + "optional": true + } + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dev": true, + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn": { + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-import-assertions": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", + "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", + "dev": true, + "peerDependencies": { + "acorn": "^8" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dev": true, + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/ajv-formats/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/alpinejs": { + "version": "3.12.3", + "resolved": "https://registry.npmjs.org/alpinejs/-/alpinejs-3.12.3.tgz", + "integrity": "sha512-fLz2dfYQ3xCk7Ip8LiIpV2W+9brUyex2TAE7Z0BCvZdUDklJE+n+a8gCgLWzfZ0GzZNZu7HUP8Z0z6Xbm6fsSA==", + "dev": true, + "dependencies": { + "@vue/reactivity": "~3.1.1" + } + }, + "node_modules/ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "dev": true, + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "dev": true + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "dev": true + }, + "node_modules/array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", + "dev": true + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/asn1.js": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", + "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", + "dev": true, + "dependencies": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + } + }, + "node_modules/asn1.js/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + }, + "node_modules/assert": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", + "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", + "dev": true, + "dependencies": { + "object-assign": "^4.1.1", + "util": "0.10.3" + } + }, + "node_modules/assert/node_modules/inherits": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", + "integrity": "sha512-8nWq2nLTAwd02jTqJExUYFSD/fKq6VH9Y/oG2accc/kdI0V98Bag8d5a4gi3XHz73rDWa2PvTtvcWYquKqSENA==", + "dev": true + }, + "node_modules/assert/node_modules/util": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", + "integrity": "sha512-5KiHfsmkqacuKjkRkdV7SsfDJ2EGiPsK92s2MhNSY0craxjTdKTtqKsJaCWp4LW33ZZ0OPUv1WO/TFvNQRiQxQ==", + "dev": true, + "dependencies": { + "inherits": "2.0.1" + } + }, + "node_modules/autoprefixer": { + "version": "10.4.15", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.15.tgz", + "integrity": "sha512-KCuPB8ZCIqFdA4HwKXsvz7j6gvSDNhDP7WnUjBleRkKjPdvCmHFuQ77ocavI8FT6NdvlBnE2UFr2H4Mycn8Vew==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "browserslist": "^4.21.10", + "caniuse-lite": "^1.0.30001520", + "fraction.js": "^4.2.0", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/axios": { + "version": "0.21.4", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz", + "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==", + "dev": true, + "dependencies": { + "follow-redirects": "^1.14.0" + } + }, + "node_modules/babel-loader": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.3.0.tgz", + "integrity": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==", + "dev": true, + "dependencies": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^2.0.0", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + }, + "engines": { + "node": ">= 8.9" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "webpack": ">=2" + } + }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.4.5", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.5.tgz", + "integrity": "sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.22.6", + "@babel/helper-define-polyfill-provider": "^0.4.2", + "semver": "^6.3.1" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.3.tgz", + "integrity": "sha512-z41XaniZL26WLrvjy7soabMXrfPWARN25PZoriDEiLMxAp50AUW3t35BGQUMg5xK3UrpVTtagIDklxYa+MhiNA==", + "dev": true, + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.4.2", + "core-js-compat": "^3.31.0" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.2.tgz", + "integrity": "sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA==", + "dev": true, + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.4.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", + "dev": true + }, + "node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/bn.js": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz", + "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==", + "dev": true + }, + "node_modules/body-parser": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", + "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", + "dev": true, + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/body-parser/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/body-parser/node_modules/qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "dev": true, + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/bonjour-service": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.1.1.tgz", + "integrity": "sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==", + "dev": true, + "dependencies": { + "array-flatten": "^2.1.2", + "dns-equal": "^1.0.0", + "fast-deep-equal": "^3.1.3", + "multicast-dns": "^7.2.5" + } + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "dev": true + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==", + "dev": true + }, + "node_modules/browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "dev": true, + "dependencies": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "dev": true, + "dependencies": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + } + }, + "node_modules/browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "dev": true, + "dependencies": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/browserify-rsa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", + "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", + "dev": true, + "dependencies": { + "bn.js": "^5.0.0", + "randombytes": "^2.0.1" + } + }, + "node_modules/browserify-sign": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz", + "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==", + "dev": true, + "dependencies": { + "bn.js": "^5.1.1", + "browserify-rsa": "^4.0.1", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "elliptic": "^6.5.3", + "inherits": "^2.0.4", + "parse-asn1": "^5.1.5", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + } + }, + "node_modules/browserify-sign/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/browserify-zlib": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", + "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "dev": true, + "dependencies": { + "pako": "~1.0.5" + } + }, + "node_modules/browserslist": { + "version": "4.21.10", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz", + "integrity": "sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001517", + "electron-to-chromium": "^1.4.477", + "node-releases": "^2.0.13", + "update-browserslist-db": "^1.0.11" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/buffer": { + "version": "4.9.2", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", + "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", + "dev": true, + "dependencies": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4", + "isarray": "^1.0.0" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "node_modules/buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==", + "dev": true + }, + "node_modules/builtin-status-codes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", + "integrity": "sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==", + "dev": true + }, + "node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dev": true, + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "dev": true, + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001522", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001522.tgz", + "integrity": "sha512-TKiyTVZxJGhsTszLuzb+6vUZSjVOAhClszBr2Ta2k9IwtNBT/4dzmL6aywt0HCgEZlmwJzXJd8yNiob6HgwTRg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/charenc": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz", + "integrity": "sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "dev": true, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", + "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/clean-css": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.2.tgz", + "integrity": "sha512-JVJbM+f3d3Q704rF4bqQ5UUyTtuJ0JRKNbTKVEeujCCBoMdkEi+V+e8oktO9qGQNSvHrFTM6JZRXrUvGR1czww==", + "dev": true, + "dependencies": { + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 10.0" + } + }, + "node_modules/cli-table3": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.3.tgz", + "integrity": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0" + }, + "engines": { + "node": "10.* || >= 12.*" + }, + "optionalDependencies": { + "@colors/colors": "1.5.0" + } + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/collect.js": { + "version": "4.36.1", + "resolved": "https://registry.npmjs.org/collect.js/-/collect.js-4.36.1.tgz", + "integrity": "sha512-jd97xWPKgHn6uvK31V6zcyPd40lUJd7gpYxbN2VOVxGWO4tyvS9Li4EpsFjXepGTo2tYcOTC4a8YsbQXMJ4XUw==", + "dev": true + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/colord": { + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", + "dev": true + }, + "node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "dev": true + }, + "node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", + "dev": true + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dev": true, + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "dev": true, + "dependencies": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/compression/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/concat": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/concat/-/concat-1.0.3.tgz", + "integrity": "sha512-f/ZaH1aLe64qHgTILdldbvyfGiGF4uzeo9IuXUloIOLQzFmIPloy9QbZadNsuVv0j5qbKQvQb/H/UYf2UsKTpw==", + "dev": true, + "dependencies": { + "commander": "^2.9.0" + }, + "bin": { + "concat": "bin/concat" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/concat/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "node_modules/connect-history-api-fallback": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", + "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/consola": { + "version": "2.15.3", + "resolved": "https://registry.npmjs.org/consola/-/consola-2.15.3.tgz", + "integrity": "sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==", + "dev": true + }, + "node_modules/console-browserify": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", + "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==", + "dev": true + }, + "node_modules/constants-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", + "integrity": "sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==", + "dev": true + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dev": true, + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + }, + "node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "dev": true + }, + "node_modules/core-js-compat": { + "version": "3.32.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.32.1.tgz", + "integrity": "sha512-GSvKDv4wE0bPnQtjklV101juQ85g6H3rm5PDP20mqlS5j0kXF3pP97YvAu5hl+uFHqMictp3b2VxOHljWMAtuA==", + "dev": true, + "dependencies": { + "browserslist": "^4.21.10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true + }, + "node_modules/cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "dev": true, + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/create-ecdh": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", + "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", + "dev": true, + "dependencies": { + "bn.js": "^4.1.0", + "elliptic": "^6.5.3" + } + }, + "node_modules/create-ecdh/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + }, + "node_modules/create-hash": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "dev": true, + "dependencies": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "node_modules/create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "dev": true, + "dependencies": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/crypt": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz", + "integrity": "sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/crypto-browserify": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", + "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "dev": true, + "dependencies": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" + }, + "engines": { + "node": "*" + } + }, + "node_modules/css-declaration-sorter": { + "version": "6.4.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz", + "integrity": "sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.0.9" + } + }, + "node_modules/css-loader": { + "version": "5.2.7", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-5.2.7.tgz", + "integrity": "sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==", + "dev": true, + "dependencies": { + "icss-utils": "^5.1.0", + "loader-utils": "^2.0.0", + "postcss": "^8.2.15", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.1.0", + "schema-utils": "^3.0.0", + "semver": "^7.3.5" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.27.0 || ^5.0.0" + } + }, + "node_modules/css-loader/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "dev": true, + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css-select/node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "dev": true, + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "dev": true, + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "dev": true, + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true, + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano": { + "version": "5.1.15", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.15.tgz", + "integrity": "sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==", + "dev": true, + "dependencies": { + "cssnano-preset-default": "^5.2.14", + "lilconfig": "^2.0.3", + "yaml": "^1.10.2" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/cssnano" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/cssnano-preset-default": { + "version": "5.2.14", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz", + "integrity": "sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==", + "dev": true, + "dependencies": { + "css-declaration-sorter": "^6.3.1", + "cssnano-utils": "^3.1.0", + "postcss-calc": "^8.2.3", + "postcss-colormin": "^5.3.1", + "postcss-convert-values": "^5.1.3", + "postcss-discard-comments": "^5.1.2", + "postcss-discard-duplicates": "^5.1.0", + "postcss-discard-empty": "^5.1.1", + "postcss-discard-overridden": "^5.1.0", + "postcss-merge-longhand": "^5.1.7", + "postcss-merge-rules": "^5.1.4", + "postcss-minify-font-values": "^5.1.0", + "postcss-minify-gradients": "^5.1.1", + "postcss-minify-params": "^5.1.4", + "postcss-minify-selectors": "^5.2.1", + "postcss-normalize-charset": "^5.1.0", + "postcss-normalize-display-values": "^5.1.0", + "postcss-normalize-positions": "^5.1.1", + "postcss-normalize-repeat-style": "^5.1.1", + "postcss-normalize-string": "^5.1.0", + "postcss-normalize-timing-functions": "^5.1.0", + "postcss-normalize-unicode": "^5.1.1", + "postcss-normalize-url": "^5.1.0", + "postcss-normalize-whitespace": "^5.1.1", + "postcss-ordered-values": "^5.1.3", + "postcss-reduce-initial": "^5.1.2", + "postcss-reduce-transforms": "^5.1.0", + "postcss-svgo": "^5.1.0", + "postcss-unique-selectors": "^5.1.1" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/cssnano-utils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz", + "integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "dev": true, + "dependencies": { + "css-tree": "^1.1.2" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/default-gateway": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", + "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", + "dev": true, + "dependencies": { + "execa": "^5.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/des.js": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.1.0.tgz", + "integrity": "sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "dev": true, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", + "dev": true + }, + "node_modules/didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", + "dev": true + }, + "node_modules/diffie-hellman": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "dev": true, + "dependencies": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + } + }, + "node_modules/diffie-hellman/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "dev": true + }, + "node_modules/dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==", + "dev": true + }, + "node_modules/dns-packet": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.0.tgz", + "integrity": "sha512-rza3UH1LwdHh9qyPXp8lkwpjSNk/AMD3dPytUoRoqnypDUhY0xvbdmVhWOfxO68frEfV9BU8V12Ez7ZsHGZpCQ==", + "dev": true, + "dependencies": { + "@leichtgewicht/ip-codec": "^2.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "dev": true, + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/dom-serializer/node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "dev": true, + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/domain-browser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", + "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", + "dev": true, + "engines": { + "node": ">=0.4", + "npm": ">=1.2" + } + }, + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ] + }, + "node_modules/domhandler": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-3.3.0.tgz", + "integrity": "sha512-J1C5rIANUbuYK+FuFL98650rihynUOEzRLxW+90bKZRWB6A1X1Tf82GxR1qAWLyfNPRvjqfip3Q5tdYlmAa9lA==", + "dev": true, + "dependencies": { + "domelementtype": "^2.0.1" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dev": true, + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/domutils/node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "dev": true, + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dev": true, + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/dotenv": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz", + "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/dotenv-expand": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz", + "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==", + "dev": true + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "dev": true + }, + "node_modules/electron-to-chromium": { + "version": "1.4.498", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.498.tgz", + "integrity": "sha512-4LODxAzKGVy7CJyhhN5mebwe7U2L29P+0G+HUriHnabm0d7LSff8Yn7t+Wq+2/9ze2Fu1dhX7mww090xfv7qXQ==", + "dev": true + }, + "node_modules/elliptic": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", + "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", + "dev": true, + "dependencies": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "node_modules/elliptic/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/enhanced-resolve": { + "version": "5.15.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", + "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/envinfo": { + "version": "7.10.0", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.10.0.tgz", + "integrity": "sha512-ZtUjZO6l5mwTHvc1L9+1q5p/R3wTopcfqMW8r5t8SJSKqeVI/LtajORwRFEKpEFuekjD0VBjwu1HMxL4UalIRw==", + "dev": true, + "bin": { + "envinfo": "dist/cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/es-module-lexer": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.3.0.tgz", + "integrity": "sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA==", + "dev": true + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "dev": true + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esrecurse/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", + "dev": true + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true, + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "dev": true, + "dependencies": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/express": { + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", + "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", + "dev": true, + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.1", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/express/node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "dev": true + }, + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/express/node_modules/qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "dev": true, + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-glob": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", + "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fastest-levenshtein": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", + "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", + "dev": true, + "engines": { + "node": ">= 4.9.1" + } + }, + "node_modules/fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "dev": true, + "dependencies": { + "websocket-driver": ">=0.5.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/file-loader": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", + "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", + "dev": true, + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/file-loader/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/file-type": { + "version": "12.4.2", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-12.4.2.tgz", + "integrity": "sha512-UssQP5ZgIOKelfsaB5CuGAL+Y+q7EmONuiwF3N5HAH0t27rvrttgi6Ra9k/+DVaY9UF6+ybxu5pOXLUdA8N7Vg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dev": true, + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + } + }, + "node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/follow-redirects": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", + "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fraction.js": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.1.tgz", + "integrity": "sha512-/KxoyCnPM0GwYI4NN0Iag38Tqt+od3/mLuguepLgCAKPn0ZhC544nssAW0tG2/00zXEYl9W+7hwAIpLHo6Oc7Q==", + "dev": true, + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://www.patreon.com/infusion" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/fs-monkey": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.4.tgz", + "integrity": "sha512-INM/fWAxMICjttnD0DX1rBvinKskj5G1w+oy/pnm9u/tSlnBrzFonJMcalKJ30P8RRsPzKcCG7Q8l0jx5Fh9YQ==", + "dev": true + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", + "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "dev": true + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/globby": { + "version": "10.0.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-10.0.2.tgz", + "integrity": "sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==", + "dev": true, + "dependencies": { + "@types/glob": "^7.1.1", + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.0.3", + "glob": "^7.1.3", + "ignore": "^5.1.1", + "merge2": "^1.2.3", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "node_modules/growly": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz", + "integrity": "sha512-+xGQY0YyAWCnqy7Cd++hc2JqMYzlm0dG30Jd0beaA64sROr8C4nt8Yc9V5Ro3avlSUDTN0ulqP/VBKi1/lLygw==", + "dev": true + }, + "node_modules/handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", + "dev": true + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hash-base": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", + "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/hash-base/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hash-sum": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-1.0.2.tgz", + "integrity": "sha512-fUs4B4L+mlt8/XAtSOGMUO1TXmAelItBPtJG7CyHJfYTdDjwisntGO2JQz7oUsatOY9o68+57eziUVNw/mRHmA==", + "dev": true + }, + "node_modules/hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true, + "bin": { + "he": "bin/he" + } + }, + "node_modules/hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==", + "dev": true, + "dependencies": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "node_modules/hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "node_modules/html-entities": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.4.0.tgz", + "integrity": "sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/mdevils" + }, + { + "type": "patreon", + "url": "https://patreon.com/mdevils" + } + ] + }, + "node_modules/html-loader": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/html-loader/-/html-loader-1.3.2.tgz", + "integrity": "sha512-DEkUwSd0sijK5PF3kRWspYi56XP7bTNkyg5YWSzBdjaSDmvCufep5c4Vpb3PBf6lUL0YPtLwBfy9fL0t5hBAGA==", + "dev": true, + "dependencies": { + "html-minifier-terser": "^5.1.1", + "htmlparser2": "^4.1.0", + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/html-loader/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/html-minifier-terser": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz", + "integrity": "sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==", + "dev": true, + "dependencies": { + "camel-case": "^4.1.1", + "clean-css": "^4.2.3", + "commander": "^4.1.1", + "he": "^1.2.0", + "param-case": "^3.0.3", + "relateurl": "^0.2.7", + "terser": "^4.6.3" + }, + "bin": { + "html-minifier-terser": "cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/html-minifier-terser/node_modules/clean-css": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.4.tgz", + "integrity": "sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==", + "dev": true, + "dependencies": { + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/html-minifier-terser/node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/html-minifier-terser/node_modules/terser": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.1.tgz", + "integrity": "sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==", + "dev": true, + "dependencies": { + "commander": "^2.20.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.12" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/html-minifier-terser/node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "node_modules/htmlparser2": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-4.1.0.tgz", + "integrity": "sha512-4zDq1a1zhE4gQso/c5LP1OtrhYTncXNSpvJYtWJBtXAETPlMfi3IFNjGuQbYLuVY4ZR0QMqRVvo4Pdy9KLyP8Q==", + "dev": true, + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^3.0.0", + "domutils": "^2.0.0", + "entities": "^2.0.0" + } + }, + "node_modules/http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", + "dev": true + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dev": true, + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/http-parser-js": { + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", + "dev": true + }, + "node_modules/http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "dev": true, + "dependencies": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/http-proxy-middleware": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", + "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", + "dev": true, + "dependencies": { + "@types/http-proxy": "^1.17.8", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "@types/express": "^4.17.13" + }, + "peerDependenciesMeta": { + "@types/express": { + "optional": true + } + } + }, + "node_modules/https-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", + "integrity": "sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==", + "dev": true + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/imagemin": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/imagemin/-/imagemin-7.0.1.tgz", + "integrity": "sha512-33AmZ+xjZhg2JMCe+vDf6a9mzWukE7l+wAtesjE7KyteqqKjzxv7aVQeWnul1Ve26mWvEQqyPwl0OctNBfSR9w==", + "dev": true, + "dependencies": { + "file-type": "^12.0.0", + "globby": "^10.0.0", + "graceful-fs": "^4.2.2", + "junk": "^3.1.0", + "make-dir": "^3.0.0", + "p-pipe": "^3.0.0", + "replace-ext": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/img-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/img-loader/-/img-loader-4.0.0.tgz", + "integrity": "sha512-UwRcPQdwdOyEHyCxe1V9s9YFwInwEWCpoO+kJGfIqDrBDqA8jZUsEZTxQ0JteNPGw/Gupmwesk2OhLTcnw6tnQ==", + "dev": true, + "dependencies": { + "loader-utils": "^1.1.0" + }, + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "imagemin": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/img-loader/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/img-loader/node_modules/loader-utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "dev": true, + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/interpret": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz", + "integrity": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/ipaddr.js": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.1.0.tgz", + "integrity": "sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "node_modules/is-core-module": { + "version": "2.13.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", + "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", + "dev": true, + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "dev": true, + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-plain-obj": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dev": true, + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/jiti": { + "version": "1.19.3", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.19.3.tgz", + "integrity": "sha512-5eEbBDQT/jF1xg6l36P+mWGGoH9Spuy0PCdSr2dtWRDGC6ph/w9ZCL4lmESW8f8F7MwT3XKescfP0wnZWAKL9w==", + "dev": true, + "bin": { + "jiti": "bin/jiti.js" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/junk": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/junk/-/junk-3.1.0.tgz", + "integrity": "sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/klona": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", + "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/laravel-mix": { + "version": "6.0.49", + "resolved": "https://registry.npmjs.org/laravel-mix/-/laravel-mix-6.0.49.tgz", + "integrity": "sha512-bBMFpFjp26XfijPvY5y9zGKud7VqlyOE0OWUcPo3vTBY5asw8LTjafAbee1dhfLz6PWNqDziz69CP78ELSpfKw==", + "dev": true, + "dependencies": { + "@babel/core": "^7.15.8", + "@babel/plugin-proposal-object-rest-spread": "^7.15.6", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-transform-runtime": "^7.15.8", + "@babel/preset-env": "^7.15.8", + "@babel/runtime": "^7.15.4", + "@types/babel__core": "^7.1.16", + "@types/clean-css": "^4.2.5", + "@types/imagemin-gifsicle": "^7.0.1", + "@types/imagemin-mozjpeg": "^8.0.1", + "@types/imagemin-optipng": "^5.2.1", + "@types/imagemin-svgo": "^8.0.0", + "autoprefixer": "^10.4.0", + "babel-loader": "^8.2.3", + "chalk": "^4.1.2", + "chokidar": "^3.5.2", + "clean-css": "^5.2.4", + "cli-table3": "^0.6.0", + "collect.js": "^4.28.5", + "commander": "^7.2.0", + "concat": "^1.0.3", + "css-loader": "^5.2.6", + "cssnano": "^5.0.8", + "dotenv": "^10.0.0", + "dotenv-expand": "^5.1.0", + "file-loader": "^6.2.0", + "fs-extra": "^10.0.0", + "glob": "^7.2.0", + "html-loader": "^1.3.2", + "imagemin": "^7.0.1", + "img-loader": "^4.0.0", + "lodash": "^4.17.21", + "md5": "^2.3.0", + "mini-css-extract-plugin": "^1.6.2", + "node-libs-browser": "^2.2.1", + "postcss-load-config": "^3.1.0", + "postcss-loader": "^6.2.0", + "semver": "^7.3.5", + "strip-ansi": "^6.0.0", + "style-loader": "^2.0.0", + "terser": "^5.9.0", + "terser-webpack-plugin": "^5.2.4", + "vue-style-loader": "^4.1.3", + "webpack": "^5.60.0", + "webpack-cli": "^4.9.1", + "webpack-dev-server": "^4.7.3", + "webpack-merge": "^5.8.0", + "webpack-notifier": "^1.14.1", + "webpackbar": "^5.0.0-3", + "yargs": "^17.2.1" + }, + "bin": { + "laravel-mix": "bin/cli.js", + "mix": "bin/cli.js" + }, + "engines": { + "node": ">=12.14.0" + }, + "peerDependencies": { + "@babel/core": "^7.15.8", + "@babel/plugin-proposal-object-rest-spread": "^7.15.6", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-transform-runtime": "^7.15.8", + "@babel/preset-env": "^7.15.8", + "postcss": "^8.3.11", + "webpack": "^5.60.0", + "webpack-cli": "^4.9.1" + } + }, + "node_modules/launch-editor": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.6.0.tgz", + "integrity": "sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ==", + "dev": true, + "dependencies": { + "picocolors": "^1.0.0", + "shell-quote": "^1.7.3" + } + }, + "node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "node_modules/loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "dev": true, + "engines": { + "node": ">=6.11.5" + } + }, + "node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "dev": true + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "dev": true + }, + "node_modules/lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", + "dev": true + }, + "node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dev": true, + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/md5": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/md5/-/md5-2.3.0.tgz", + "integrity": "sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==", + "dev": true, + "dependencies": { + "charenc": "0.0.2", + "crypt": "0.0.2", + "is-buffer": "~1.1.6" + } + }, + "node_modules/md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "dev": true, + "dependencies": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", + "dev": true + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/memfs": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", + "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", + "dev": true, + "dependencies": { + "fs-monkey": "^1.0.4" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", + "dev": true + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", + "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "dev": true, + "dependencies": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + }, + "bin": { + "miller-rabin": "bin/miller-rabin" + } + }, + "node_modules/miller-rabin/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true, + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/mini-css-extract-plugin": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-1.6.2.tgz", + "integrity": "sha512-WhDvO3SjGm40oV5y26GjMJYjd2UMqrLAGKy5YS2/3QKJy2F7jgynuHTir/tgUUOiNQu5saXHdc8reo7YuhhT4Q==", + "dev": true, + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0", + "webpack-sources": "^1.1.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.4.0 || ^5.0.0" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/mini-svg-data-uri": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/mini-svg-data-uri/-/mini-svg-data-uri-1.4.4.tgz", + "integrity": "sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==", + "dev": true, + "bin": { + "mini-svg-data-uri": "cli.js" + } + }, + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "dev": true + }, + "node_modules/minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==", + "dev": true + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/multicast-dns": { + "version": "7.2.5", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", + "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", + "dev": true, + "dependencies": { + "dns-packet": "^5.2.2", + "thunky": "^1.0.2" + }, + "bin": { + "multicast-dns": "cli.js" + } + }, + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dev": true, + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "node_modules/nanoid": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dev": true, + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "dev": true, + "engines": { + "node": ">= 6.13.0" + } + }, + "node_modules/node-libs-browser": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", + "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", + "dev": true, + "dependencies": { + "assert": "^1.1.1", + "browserify-zlib": "^0.2.0", + "buffer": "^4.3.0", + "console-browserify": "^1.1.0", + "constants-browserify": "^1.0.0", + "crypto-browserify": "^3.11.0", + "domain-browser": "^1.1.1", + "events": "^3.0.0", + "https-browserify": "^1.0.0", + "os-browserify": "^0.3.0", + "path-browserify": "0.0.1", + "process": "^0.11.10", + "punycode": "^1.2.4", + "querystring-es3": "^0.2.0", + "readable-stream": "^2.3.3", + "stream-browserify": "^2.0.1", + "stream-http": "^2.7.2", + "string_decoder": "^1.0.0", + "timers-browserify": "^2.0.4", + "tty-browserify": "0.0.0", + "url": "^0.11.0", + "util": "^0.11.0", + "vm-browserify": "^1.0.1" + } + }, + "node_modules/node-notifier": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-9.0.1.tgz", + "integrity": "sha512-fPNFIp2hF/Dq7qLDzSg4vZ0J4e9v60gJR+Qx7RbjbWqzPDdEqeVpEx5CFeDAELIl+A/woaaNn1fQ5nEVerMxJg==", + "dev": true, + "dependencies": { + "growly": "^1.3.0", + "is-wsl": "^2.2.0", + "semver": "^7.3.2", + "shellwords": "^0.1.1", + "uuid": "^8.3.0", + "which": "^2.0.2" + } + }, + "node_modules/node-releases": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", + "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==", + "dev": true + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "dev": true, + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/object-inspect": { + "version": "1.12.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", + "dev": true + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dev": true, + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/open": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", + "dev": true, + "dependencies": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/os-browserify": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", + "integrity": "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==", + "dev": true + }, + "node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-pipe": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-pipe/-/p-pipe-3.1.0.tgz", + "integrity": "sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-retry": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", + "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", + "dev": true, + "dependencies": { + "@types/retry": "0.12.0", + "retry": "^0.13.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", + "dev": true + }, + "node_modules/param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "dev": true, + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-asn1": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", + "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", + "dev": true, + "dependencies": { + "asn1.js": "^5.2.0", + "browserify-aes": "^1.0.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dev": true, + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/path-browserify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", + "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==", + "dev": true + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", + "dev": true + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/pbkdf2": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", + "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", + "dev": true, + "dependencies": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + }, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/postcss": { + "version": "8.4.28", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.28.tgz", + "integrity": "sha512-Z7V5j0cq8oEKyejIKfpD8b4eBy9cwW2JWPk0+fB1HOAMsfHbnAXLLS+PfVWlzMSLQaWttKDt607I0XHmpE67Vw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-calc": { + "version": "8.2.4", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz", + "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.9", + "postcss-value-parser": "^4.2.0" + }, + "peerDependencies": { + "postcss": "^8.2.2" + } + }, + "node_modules/postcss-colormin": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.1.tgz", + "integrity": "sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==", + "dev": true, + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "colord": "^2.9.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-convert-values": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz", + "integrity": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==", + "dev": true, + "dependencies": { + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-comments": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz", + "integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-duplicates": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", + "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-empty": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz", + "integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-overridden": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz", + "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-import": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-js": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", + "dev": true, + "dependencies": { + "camelcase-css": "^2.0.1" + }, + "engines": { + "node": "^12 || ^14 || >= 16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.4.21" + } + }, + "node_modules/postcss-load-config": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz", + "integrity": "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==", + "dev": true, + "dependencies": { + "lilconfig": "^2.0.5", + "yaml": "^1.10.2" + }, + "engines": { + "node": ">= 10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": ">=8.0.9", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "postcss": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/postcss-loader": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz", + "integrity": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==", + "dev": true, + "dependencies": { + "cosmiconfig": "^7.0.0", + "klona": "^2.0.5", + "semver": "^7.3.5" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "postcss": "^7.0.0 || ^8.0.1", + "webpack": "^5.0.0" + } + }, + "node_modules/postcss-merge-longhand": { + "version": "5.1.7", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz", + "integrity": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0", + "stylehacks": "^5.1.1" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-merge-rules": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz", + "integrity": "sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==", + "dev": true, + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "cssnano-utils": "^3.1.0", + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-font-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz", + "integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-gradients": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz", + "integrity": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==", + "dev": true, + "dependencies": { + "colord": "^2.9.1", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-params": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz", + "integrity": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==", + "dev": true, + "dependencies": { + "browserslist": "^4.21.4", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-selectors": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz", + "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-modules-extract-imports": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-local-by-default": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz", + "integrity": "sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==", + "dev": true, + "dependencies": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-scope": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", + "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "dev": true, + "dependencies": { + "icss-utils": "^5.0.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-nested": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", + "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.11" + }, + "engines": { + "node": ">=12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } + }, + "node_modules/postcss-normalize-charset": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz", + "integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-display-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz", + "integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-positions": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz", + "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-repeat-style": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz", + "integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-string": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz", + "integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-timing-functions": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz", + "integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-unicode": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz", + "integrity": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==", + "dev": true, + "dependencies": { + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-url": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz", + "integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==", + "dev": true, + "dependencies": { + "normalize-url": "^6.0.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-whitespace": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz", + "integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-ordered-values": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz", + "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==", + "dev": true, + "dependencies": { + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-reduce-initial": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz", + "integrity": "sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==", + "dev": true, + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-reduce-transforms": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz", + "integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.13", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", + "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", + "dev": true, + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-svgo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz", + "integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0", + "svgo": "^2.7.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-unique-selectors": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz", + "integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, + "node_modules/pretty-time": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/pretty-time/-/pretty-time-1.1.0.tgz", + "integrity": "sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "dev": true, + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dev": true, + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/proxy-addr/node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/public-encrypt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", + "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "dev": true, + "dependencies": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/public-encrypt/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + }, + "node_modules/punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==", + "dev": true + }, + "node_modules/qs": { + "version": "6.11.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.2.tgz", + "integrity": "sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==", + "dev": true, + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/querystring-es3": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", + "integrity": "sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==", + "dev": true, + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/randomfill": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", + "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "dev": true, + "dependencies": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "dev": true, + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dev": true, + "dependencies": { + "pify": "^2.3.0" + } + }, + "node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/readable-stream/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/readable-stream/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/rechoir": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz", + "integrity": "sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==", + "dev": true, + "dependencies": { + "resolve": "^1.9.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "dev": true + }, + "node_modules/regenerate-unicode-properties": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz", + "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==", + "dev": true, + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", + "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==", + "dev": true + }, + "node_modules/regenerator-transform": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", + "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.8.4" + } + }, + "node_modules/regexpu-core": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", + "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", + "dev": true, + "dependencies": { + "@babel/regjsgen": "^0.8.0", + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.1.0", + "regjsparser": "^0.9.1", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regjsparser": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "dev": true, + "dependencies": { + "jsesc": "~0.5.0" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/regjsparser/node_modules/jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + } + }, + "node_modules/relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/replace-ext": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", + "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", + "dev": true + }, + "node_modules/resolve": { + "version": "1.22.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.4.tgz", + "integrity": "sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-cwd/node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/retry": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", + "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "dev": true, + "dependencies": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "node_modules/schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==", + "dev": true + }, + "node_modules/selfsigned": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.1.1.tgz", + "integrity": "sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==", + "dev": true, + "dependencies": { + "node-forge": "^1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "node_modules/serialize-javascript": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", + "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", + "dev": true, + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", + "dev": true, + "dependencies": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/serve-index/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/serve-index/node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", + "dev": true, + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "dev": true + }, + "node_modules/serve-index/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/serve-index/node_modules/setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "dev": true + }, + "node_modules/serve-index/node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "dev": true, + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", + "dev": true + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true + }, + "node_modules/sha.js": { + "version": "2.4.11", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "bin": { + "sha.js": "bin.js" + } + }, + "node_modules/shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/shell-quote": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", + "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/shellwords": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz", + "integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==", + "dev": true + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/sockjs": { + "version": "0.3.24", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", + "dev": true, + "dependencies": { + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" + } + }, + "node_modules/source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==", + "dev": true + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "dev": true, + "dependencies": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "dev": true, + "dependencies": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + } + }, + "node_modules/spdy-transport/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", + "deprecated": "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility", + "dev": true + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/std-env": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.4.2.tgz", + "integrity": "sha512-Cw6eJDX9AxEEL0g5pYj8Zx9KXtDf60rxwS2ze0HBanS0aKhj1sBlzcsmg+R0qYy8byFa854/yR2X5ZmBSClVmg==", + "dev": true + }, + "node_modules/stream-browserify": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", + "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", + "dev": true, + "dependencies": { + "inherits": "~2.0.1", + "readable-stream": "^2.0.2" + } + }, + "node_modules/stream-http": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", + "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", + "dev": true, + "dependencies": { + "builtin-status-codes": "^3.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.3.6", + "to-arraybuffer": "^1.0.0", + "xtend": "^4.0.0" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/style-loader": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-2.0.0.tgz", + "integrity": "sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ==", + "dev": true, + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/style-loader/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/stylehacks": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz", + "integrity": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==", + "dev": true, + "dependencies": { + "browserslist": "^4.21.4", + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/sucrase": { + "version": "3.34.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.34.0.tgz", + "integrity": "sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "7.1.6", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/sucrase/node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/sucrase/node_modules/glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/svgo": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", + "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", + "dev": true, + "dependencies": { + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^4.1.3", + "css-tree": "^1.1.3", + "csso": "^4.2.0", + "picocolors": "^1.0.0", + "stable": "^0.1.8" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/tailwindcss": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.3.3.tgz", + "integrity": "sha512-A0KgSkef7eE4Mf+nKJ83i75TMyq8HqY3qmFIJSWy8bNt0v1lG7jUcpGpoTFxAwYcWOphcTBLPPJg+bDfhDf52w==", + "dev": true, + "dependencies": { + "@alloc/quick-lru": "^5.2.0", + "arg": "^5.0.2", + "chokidar": "^3.5.3", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.2.12", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "jiti": "^1.18.2", + "lilconfig": "^2.1.0", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.0.0", + "postcss": "^8.4.23", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.1", + "postcss-nested": "^6.0.1", + "postcss-selector-parser": "^6.0.11", + "resolve": "^1.22.2", + "sucrase": "^3.32.0" + }, + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/tailwindcss/node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/tailwindcss/node_modules/postcss-load-config": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz", + "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==", + "dev": true, + "dependencies": { + "lilconfig": "^2.0.5", + "yaml": "^2.1.1" + }, + "engines": { + "node": ">= 14" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": ">=8.0.9", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "postcss": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/tailwindcss/node_modules/yaml": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", + "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==", + "dev": true, + "engines": { + "node": ">= 14" + } + }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/terser": { + "version": "5.19.2", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.19.2.tgz", + "integrity": "sha512-qC5+dmecKJA4cpYxRa5aVkKehYsQKc+AHeKl0Oe62aYjBL8ZA33tTljktDHJSaxxMnbI5ZYw+o/S2DxxLu8OfA==", + "dev": true, + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "5.3.9", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz", + "integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.17", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.1", + "terser": "^5.16.8" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true + } + } + }, + "node_modules/terser-webpack-plugin/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dev": true, + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "dev": true, + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", + "dev": true + }, + "node_modules/timers-browserify": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz", + "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", + "dev": true, + "dependencies": { + "setimmediate": "^1.0.4" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/to-arraybuffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", + "integrity": "sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA==", + "dev": true + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "dev": true, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", + "dev": true + }, + "node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/tty-browserify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", + "integrity": "sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==", + "dev": true + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dev": true, + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dev": true, + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", + "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "dev": true, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", + "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/uri-js/node_modules/punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/url": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.1.tgz", + "integrity": "sha512-rWS3H04/+mzzJkv0eZ7vEDGiQbgquI1fGfOad6zKvgYQi1SzMmhl7c/DdRGxhaWrVH6z0qWITo8rpnxK/RfEhA==", + "dev": true, + "dependencies": { + "punycode": "^1.4.1", + "qs": "^6.11.0" + } + }, + "node_modules/util": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", + "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", + "dev": true, + "dependencies": { + "inherits": "2.0.3" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/util/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "dev": true + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "dev": true, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true, + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/vm-browserify": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", + "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==", + "dev": true + }, + "node_modules/vue-style-loader": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/vue-style-loader/-/vue-style-loader-4.1.3.tgz", + "integrity": "sha512-sFuh0xfbtpRlKfm39ss/ikqs9AbKCoXZBpHeVZ8Tx650o0k0q/YCM7FRvigtxpACezfq6af+a7JeqVTWvncqDg==", + "dev": true, + "dependencies": { + "hash-sum": "^1.0.2", + "loader-utils": "^1.0.2" + } + }, + "node_modules/vue-style-loader/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/vue-style-loader/node_modules/loader-utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/watchpack": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "dev": true, + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "dev": true, + "dependencies": { + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/webpack": { + "version": "5.88.2", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.88.2.tgz", + "integrity": "sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==", + "dev": true, + "dependencies": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^1.0.0", + "@webassemblyjs/ast": "^1.11.5", + "@webassemblyjs/wasm-edit": "^1.11.5", + "@webassemblyjs/wasm-parser": "^1.11.5", + "acorn": "^8.7.1", + "acorn-import-assertions": "^1.9.0", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.15.0", + "es-module-lexer": "^1.2.1", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.9", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.2.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.3.7", + "watchpack": "^2.4.0", + "webpack-sources": "^3.2.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-cli": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.10.0.tgz", + "integrity": "sha512-NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w==", + "dev": true, + "dependencies": { + "@discoveryjs/json-ext": "^0.5.0", + "@webpack-cli/configtest": "^1.2.0", + "@webpack-cli/info": "^1.5.0", + "@webpack-cli/serve": "^1.7.0", + "colorette": "^2.0.14", + "commander": "^7.0.0", + "cross-spawn": "^7.0.3", + "fastest-levenshtein": "^1.0.12", + "import-local": "^3.0.2", + "interpret": "^2.2.0", + "rechoir": "^0.7.0", + "webpack-merge": "^5.7.3" + }, + "bin": { + "webpack-cli": "bin/cli.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "4.x.x || 5.x.x" + }, + "peerDependenciesMeta": { + "@webpack-cli/generators": { + "optional": true + }, + "@webpack-cli/migrate": { + "optional": true + }, + "webpack-bundle-analyzer": { + "optional": true + }, + "webpack-dev-server": { + "optional": true + } + } + }, + "node_modules/webpack-dev-middleware": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz", + "integrity": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==", + "dev": true, + "dependencies": { + "colorette": "^2.0.10", + "memfs": "^3.4.3", + "mime-types": "^2.1.31", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/webpack-dev-middleware/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/webpack-dev-middleware/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/webpack-dev-middleware/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/webpack-dev-middleware/node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/webpack-dev-server": { + "version": "4.15.1", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.15.1.tgz", + "integrity": "sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==", + "dev": true, + "dependencies": { + "@types/bonjour": "^3.5.9", + "@types/connect-history-api-fallback": "^1.3.5", + "@types/express": "^4.17.13", + "@types/serve-index": "^1.9.1", + "@types/serve-static": "^1.13.10", + "@types/sockjs": "^0.3.33", + "@types/ws": "^8.5.5", + "ansi-html-community": "^0.0.8", + "bonjour-service": "^1.0.11", + "chokidar": "^3.5.3", + "colorette": "^2.0.10", + "compression": "^1.7.4", + "connect-history-api-fallback": "^2.0.0", + "default-gateway": "^6.0.3", + "express": "^4.17.3", + "graceful-fs": "^4.2.6", + "html-entities": "^2.3.2", + "http-proxy-middleware": "^2.0.3", + "ipaddr.js": "^2.0.1", + "launch-editor": "^2.6.0", + "open": "^8.0.9", + "p-retry": "^4.5.0", + "rimraf": "^3.0.2", + "schema-utils": "^4.0.0", + "selfsigned": "^2.1.1", + "serve-index": "^1.9.1", + "sockjs": "^0.3.24", + "spdy": "^4.0.2", + "webpack-dev-middleware": "^5.3.1", + "ws": "^8.13.0" + }, + "bin": { + "webpack-dev-server": "bin/webpack-dev-server.js" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.37.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "webpack": { + "optional": true + }, + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-dev-server/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/webpack-dev-server/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/webpack-dev-server/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/webpack-dev-server/node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/webpack-merge": { + "version": "5.9.0", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.9.0.tgz", + "integrity": "sha512-6NbRQw4+Sy50vYNTw7EyOn41OZItPiXB8GNv3INSoe3PSFaHJEz3SHTrYVaRm2LilNGnFUzh0FAwqPEmU/CwDg==", + "dev": true, + "dependencies": { + "clone-deep": "^4.0.1", + "wildcard": "^2.0.0" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/webpack-notifier": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/webpack-notifier/-/webpack-notifier-1.15.0.tgz", + "integrity": "sha512-N2V8UMgRB5komdXQRavBsRpw0hPhJq2/SWNOGuhrXpIgRhcMexzkGQysUyGStHLV5hkUlgpRiF7IUXoBqyMmzQ==", + "dev": true, + "dependencies": { + "node-notifier": "^9.0.0", + "strip-ansi": "^6.0.0" + }, + "peerDependencies": { + "@types/webpack": ">4.41.31" + }, + "peerDependenciesMeta": { + "@types/webpack": { + "optional": true + } + } + }, + "node_modules/webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "dev": true, + "dependencies": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + } + }, + "node_modules/webpack/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/webpack/node_modules/webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "dev": true, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpackbar": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/webpackbar/-/webpackbar-5.0.2.tgz", + "integrity": "sha512-BmFJo7veBDgQzfWXl/wwYXr/VFus0614qZ8i9znqcl9fnEdiVkdbi0TedLQ6xAK92HZHDJ0QmyQ0fmuZPAgCYQ==", + "dev": true, + "dependencies": { + "chalk": "^4.1.0", + "consola": "^2.15.3", + "pretty-time": "^1.1.0", + "std-env": "^3.0.1" + }, + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "webpack": "3 || 4 || 5" + } + }, + "node_modules/websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "dev": true, + "dependencies": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wildcard": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz", + "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==", + "dev": true + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/ws": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz", + "integrity": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==", + "dev": true, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "dev": true, + "engines": { + "node": ">=0.4" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + }, + "node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "engines": { + "node": ">=12" + } + } + } +} diff --git a/package.json b/package.json index 00c6506..5fd31f0 100644 --- a/package.json +++ b/package.json @@ -10,9 +10,13 @@ "production": "mix --production" }, "devDependencies": { + "@tailwindcss/forms": "^0.5.2", + "alpinejs": "^3.4.2", + "autoprefixer": "^10.4.2", "axios": "^0.21", "laravel-mix": "^6.0.6", "lodash": "^4.17.19", - "postcss": "^8.1.14" + "postcss": "^8.4.6", + "tailwindcss": "^3.1.0" } } diff --git a/postcss.config.js b/postcss.config.js new file mode 100644 index 0000000..67cdf1a --- /dev/null +++ b/postcss.config.js @@ -0,0 +1,6 @@ +module.exports = { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +}; diff --git a/public/css/app.css b/public/css/app.css new file mode 100644 index 0000000..e3ca8f6 --- /dev/null +++ b/public/css/app.css @@ -0,0 +1,1492 @@ +/* +! tailwindcss v3.3.3 | MIT License | https://tailwindcss.com +*//* +1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4) +2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116) +*/ + +*, +::before, +::after { + box-sizing: border-box; /* 1 */ + border-width: 0; /* 2 */ + border-style: solid; /* 2 */ + border-color: #e5e7eb; /* 2 */ +} + +::before, +::after { + --tw-content: ''; +} + +/* +1. Use a consistent sensible line-height in all browsers. +2. Prevent adjustments of font size after orientation changes in iOS. +3. Use a more readable tab size. +4. Use the user's configured `sans` font-family by default. +5. Use the user's configured `sans` font-feature-settings by default. +6. Use the user's configured `sans` font-variation-settings by default. +*/ + +html { + line-height: 1.5; /* 1 */ + -webkit-text-size-adjust: 100%; /* 2 */ + -moz-tab-size: 4; /* 3 */ + -o-tab-size: 4; + tab-size: 4; /* 3 */ + font-family: Nunito, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */ + font-feature-settings: normal; /* 5 */ + font-variation-settings: normal; /* 6 */ +} + +/* +1. Remove the margin in all browsers. +2. Inherit line-height from `html` so users can set them as a class directly on the `html` element. +*/ + +body { + margin: 0; /* 1 */ + line-height: inherit; /* 2 */ +} + +/* +1. Add the correct height in Firefox. +2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655) +3. Ensure horizontal rules are visible by default. +*/ + +hr { + height: 0; /* 1 */ + color: inherit; /* 2 */ + border-top-width: 1px; /* 3 */ +} + +/* +Add the correct text decoration in Chrome, Edge, and Safari. +*/ + +abbr:where([title]) { + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; +} + +/* +Remove the default font size and weight for headings. +*/ + +h1, +h2, +h3, +h4, +h5, +h6 { + font-size: inherit; + font-weight: inherit; +} + +/* +Reset links to optimize for opt-in styling instead of opt-out. +*/ + +a { + color: inherit; + text-decoration: inherit; +} + +/* +Add the correct font weight in Edge and Safari. +*/ + +b, +strong { + font-weight: bolder; +} + +/* +1. Use the user's configured `mono` font family by default. +2. Correct the odd `em` font sizing in all browsers. +*/ + +code, +kbd, +samp, +pre { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */ + font-size: 1em; /* 2 */ +} + +/* +Add the correct font size in all browsers. +*/ + +small { + font-size: 80%; +} + +/* +Prevent `sub` and `sup` elements from affecting the line height in all browsers. +*/ + +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} + +sub { + bottom: -0.25em; +} + +sup { + top: -0.5em; +} + +/* +1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297) +2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016) +3. Remove gaps between table borders by default. +*/ + +table { + text-indent: 0; /* 1 */ + border-color: inherit; /* 2 */ + border-collapse: collapse; /* 3 */ +} + +/* +1. Change the font styles in all browsers. +2. Remove the margin in Firefox and Safari. +3. Remove default padding in all browsers. +*/ + +button, +input, +optgroup, +select, +textarea { + font-family: inherit; /* 1 */ + font-feature-settings: inherit; /* 1 */ + font-variation-settings: inherit; /* 1 */ + font-size: 100%; /* 1 */ + font-weight: inherit; /* 1 */ + line-height: inherit; /* 1 */ + color: inherit; /* 1 */ + margin: 0; /* 2 */ + padding: 0; /* 3 */ +} + +/* +Remove the inheritance of text transform in Edge and Firefox. +*/ + +button, +select { + text-transform: none; +} + +/* +1. Correct the inability to style clickable types in iOS and Safari. +2. Remove default button styles. +*/ + +button, +[type='button'], +[type='reset'], +[type='submit'] { + -webkit-appearance: button; /* 1 */ + background-color: transparent; /* 2 */ + background-image: none; /* 2 */ +} + +/* +Use the modern Firefox focus style for all focusable elements. +*/ + +:-moz-focusring { + outline: auto; +} + +/* +Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737) +*/ + +:-moz-ui-invalid { + box-shadow: none; +} + +/* +Add the correct vertical alignment in Chrome and Firefox. +*/ + +progress { + vertical-align: baseline; +} + +/* +Correct the cursor style of increment and decrement buttons in Safari. +*/ + +::-webkit-inner-spin-button, +::-webkit-outer-spin-button { + height: auto; +} + +/* +1. Correct the odd appearance in Chrome and Safari. +2. Correct the outline style in Safari. +*/ + +[type='search'] { + -webkit-appearance: textfield; /* 1 */ + outline-offset: -2px; /* 2 */ +} + +/* +Remove the inner padding in Chrome and Safari on macOS. +*/ + +::-webkit-search-decoration { + -webkit-appearance: none; +} + +/* +1. Correct the inability to style clickable types in iOS and Safari. +2. Change font properties to `inherit` in Safari. +*/ + +::-webkit-file-upload-button { + -webkit-appearance: button; /* 1 */ + font: inherit; /* 2 */ +} + +/* +Add the correct display in Chrome and Safari. +*/ + +summary { + display: list-item; +} + +/* +Removes the default spacing and border for appropriate elements. +*/ + +blockquote, +dl, +dd, +h1, +h2, +h3, +h4, +h5, +h6, +hr, +figure, +p, +pre { + margin: 0; +} + +fieldset { + margin: 0; + padding: 0; +} + +legend { + padding: 0; +} + +ol, +ul, +menu { + list-style: none; + margin: 0; + padding: 0; +} + +/* +Reset default styling for dialogs. +*/ +dialog { + padding: 0; +} + +/* +Prevent resizing textareas horizontally by default. +*/ + +textarea { + resize: vertical; +} + +/* +1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300) +2. Set the default placeholder color to the user's configured gray 400 color. +*/ + +input::-moz-placeholder, textarea::-moz-placeholder { + opacity: 1; /* 1 */ + color: #9ca3af; /* 2 */ +} + +input::placeholder, +textarea::placeholder { + opacity: 1; /* 1 */ + color: #9ca3af; /* 2 */ +} + +/* +Set the default cursor for buttons. +*/ + +button, +[role="button"] { + cursor: pointer; +} + +/* +Make sure disabled buttons don't get the pointer cursor. +*/ +:disabled { + cursor: default; +} + +/* +1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14) +2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210) + This can trigger a poorly considered lint error in some tools but is included by design. +*/ + +img, +svg, +video, +canvas, +audio, +iframe, +embed, +object { + display: block; /* 1 */ + vertical-align: middle; /* 2 */ +} + +/* +Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14) +*/ + +img, +video { + max-width: 100%; + height: auto; +} + +/* Make elements with the HTML hidden attribute stay hidden by default */ +[hidden] { + display: none; +} + +[type='text'],input:where(:not([type])),[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + background-color: #fff; + border-color: #6b7280; + border-width: 1px; + border-radius: 0px; + padding-top: 0.5rem; + padding-right: 0.75rem; + padding-bottom: 0.5rem; + padding-left: 0.75rem; + font-size: 1rem; + line-height: 1.5rem; + --tw-shadow: 0 0 #0000; +} + +[type='text']:focus, input:where(:not([type])):focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus { + outline: 2px solid transparent; + outline-offset: 2px; + --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/); + --tw-ring-offset-width: 0px; + --tw-ring-offset-color: #fff; + --tw-ring-color: #2563eb; + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); + border-color: #2563eb; +} + +input::-moz-placeholder, textarea::-moz-placeholder { + color: #6b7280; + opacity: 1; +} + +input::placeholder,textarea::placeholder { + color: #6b7280; + opacity: 1; +} + +::-webkit-datetime-edit-fields-wrapper { + padding: 0; +} + +::-webkit-date-and-time-value { + min-height: 1.5em; +} + +::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field { + padding-top: 0; + padding-bottom: 0; +} + +select { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e"); + background-position: right 0.5rem center; + background-repeat: no-repeat; + background-size: 1.5em 1.5em; + padding-right: 2.5rem; + -webkit-print-color-adjust: exact; + print-color-adjust: exact; +} + +[multiple],[size]:where(select:not([size="1"])) { + background-image: initial; + background-position: initial; + background-repeat: unset; + background-size: initial; + padding-right: 0.75rem; + -webkit-print-color-adjust: unset; + print-color-adjust: unset; +} + +[type='checkbox'],[type='radio'] { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + padding: 0; + -webkit-print-color-adjust: exact; + print-color-adjust: exact; + display: inline-block; + vertical-align: middle; + background-origin: border-box; + -webkit-user-select: none; + -moz-user-select: none; + user-select: none; + flex-shrink: 0; + height: 1rem; + width: 1rem; + color: #2563eb; + background-color: #fff; + border-color: #6b7280; + border-width: 1px; + --tw-shadow: 0 0 #0000; +} + +[type='checkbox'] { + border-radius: 0px; +} + +[type='radio'] { + border-radius: 100%; +} + +[type='checkbox']:focus,[type='radio']:focus { + outline: 2px solid transparent; + outline-offset: 2px; + --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/); + --tw-ring-offset-width: 2px; + --tw-ring-offset-color: #fff; + --tw-ring-color: #2563eb; + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); +} + +[type='checkbox']:checked,[type='radio']:checked { + border-color: transparent; + background-color: currentColor; + background-size: 100% 100%; + background-position: center; + background-repeat: no-repeat; +} + +[type='checkbox']:checked { + background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e"); +} + +[type='radio']:checked { + background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e"); +} + +[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus { + border-color: transparent; + background-color: currentColor; +} + +[type='checkbox']:indeterminate { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e"); + border-color: transparent; + background-color: currentColor; + background-size: 100% 100%; + background-position: center; + background-repeat: no-repeat; +} + +[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus { + border-color: transparent; + background-color: currentColor; +} + +[type='file'] { + background: unset; + border-color: inherit; + border-width: 0; + border-radius: 0; + padding: 0; + font-size: unset; + line-height: inherit; +} + +[type='file']:focus { + outline: 1px solid ButtonText; + outline: 1px auto -webkit-focus-ring-color; +} + +*, ::before, ::after { + --tw-border-spacing-x: 0; + --tw-border-spacing-y: 0; + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + --tw-pan-x: ; + --tw-pan-y: ; + --tw-pinch-zoom: ; + --tw-scroll-snap-strictness: proximity; + --tw-gradient-from-position: ; + --tw-gradient-via-position: ; + --tw-gradient-to-position: ; + --tw-ordinal: ; + --tw-slashed-zero: ; + --tw-numeric-figure: ; + --tw-numeric-spacing: ; + --tw-numeric-fraction: ; + --tw-ring-inset: ; + --tw-ring-offset-width: 0px; + --tw-ring-offset-color: #fff; + --tw-ring-color: rgb(59 130 246 / 0.5); + --tw-ring-offset-shadow: 0 0 #0000; + --tw-ring-shadow: 0 0 #0000; + --tw-shadow: 0 0 #0000; + --tw-shadow-colored: 0 0 #0000; + --tw-blur: ; + --tw-brightness: ; + --tw-contrast: ; + --tw-grayscale: ; + --tw-hue-rotate: ; + --tw-invert: ; + --tw-saturate: ; + --tw-sepia: ; + --tw-drop-shadow: ; + --tw-backdrop-blur: ; + --tw-backdrop-brightness: ; + --tw-backdrop-contrast: ; + --tw-backdrop-grayscale: ; + --tw-backdrop-hue-rotate: ; + --tw-backdrop-invert: ; + --tw-backdrop-opacity: ; + --tw-backdrop-saturate: ; + --tw-backdrop-sepia: ; +} + +::backdrop { + --tw-border-spacing-x: 0; + --tw-border-spacing-y: 0; + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + --tw-pan-x: ; + --tw-pan-y: ; + --tw-pinch-zoom: ; + --tw-scroll-snap-strictness: proximity; + --tw-gradient-from-position: ; + --tw-gradient-via-position: ; + --tw-gradient-to-position: ; + --tw-ordinal: ; + --tw-slashed-zero: ; + --tw-numeric-figure: ; + --tw-numeric-spacing: ; + --tw-numeric-fraction: ; + --tw-ring-inset: ; + --tw-ring-offset-width: 0px; + --tw-ring-offset-color: #fff; + --tw-ring-color: rgb(59 130 246 / 0.5); + --tw-ring-offset-shadow: 0 0 #0000; + --tw-ring-shadow: 0 0 #0000; + --tw-shadow: 0 0 #0000; + --tw-shadow-colored: 0 0 #0000; + --tw-blur: ; + --tw-brightness: ; + --tw-contrast: ; + --tw-grayscale: ; + --tw-hue-rotate: ; + --tw-invert: ; + --tw-saturate: ; + --tw-sepia: ; + --tw-drop-shadow: ; + --tw-backdrop-blur: ; + --tw-backdrop-brightness: ; + --tw-backdrop-contrast: ; + --tw-backdrop-grayscale: ; + --tw-backdrop-hue-rotate: ; + --tw-backdrop-invert: ; + --tw-backdrop-opacity: ; + --tw-backdrop-saturate: ; + --tw-backdrop-sepia: ; +} +.container { + width: 100%; +} +@media (min-width: 640px) { + + .container { + max-width: 640px; + } +} +@media (min-width: 768px) { + + .container { + max-width: 768px; + } +} +@media (min-width: 1024px) { + + .container { + max-width: 1024px; + } +} +@media (min-width: 1280px) { + + .container { + max-width: 1280px; + } +} +@media (min-width: 1536px) { + + .container { + max-width: 1536px; + } +} +.static { + position: static; +} +.fixed { + position: fixed; +} +.absolute { + position: absolute; +} +.relative { + position: relative; +} +.left-0 { + left: 0px; +} +.right-0 { + right: 0px; +} +.top-0 { + top: 0px; +} +.z-0 { + z-index: 0; +} +.z-50 { + z-index: 50; +} +.mx-auto { + margin-left: auto; + margin-right: auto; +} +.-ml-px { + margin-left: -1px; +} +.-mr-2 { + margin-right: -0.5rem; +} +.-mt-px { + margin-top: -1px; +} +.mb-3 { + margin-bottom: 0.75rem; +} +.mb-4 { + margin-bottom: 1rem; +} +.ml-1 { + margin-left: 0.25rem; +} +.ml-12 { + margin-left: 3rem; +} +.ml-2 { + margin-left: 0.5rem; +} +.ml-3 { + margin-left: 0.75rem; +} +.ml-4 { + margin-left: 1rem; +} +.mr-2 { + margin-right: 0.5rem; +} +.mt-1 { + margin-top: 0.25rem; +} +.mt-2 { + margin-top: 0.5rem; +} +.mt-3 { + margin-top: 0.75rem; +} +.mt-4 { + margin-top: 1rem; +} +.mt-6 { + margin-top: 1.5rem; +} +.mt-8 { + margin-top: 2rem; +} +.block { + display: block; +} +.flex { + display: flex; +} +.inline-flex { + display: inline-flex; +} +.grid { + display: grid; +} +.hidden { + display: none; +} +.h-10 { + height: 2.5rem; +} +.h-16 { + height: 4rem; +} +.h-20 { + height: 5rem; +} +.h-4 { + height: 1rem; +} +.h-5 { + height: 1.25rem; +} +.h-6 { + height: 1.5rem; +} +.h-8 { + height: 2rem; +} +.min-h-screen { + min-height: 100vh; +} +.w-20 { + width: 5rem; +} +.w-4 { + width: 1rem; +} +.w-48 { + width: 12rem; +} +.w-5 { + width: 1.25rem; +} +.w-6 { + width: 1.5rem; +} +.w-8 { + width: 2rem; +} +.w-80 { + width: 20rem; +} +.w-auto { + width: auto; +} +.w-full { + width: 100%; +} +.max-w-6xl { + max-width: 72rem; +} +.max-w-7xl { + max-width: 80rem; +} +.max-w-xl { + max-width: 36rem; +} +.flex-1 { + flex: 1 1 0%; +} +.shrink-0 { + flex-shrink: 0; +} +.origin-top { + transform-origin: top; +} +.origin-top-left { + transform-origin: top left; +} +.origin-top-right { + transform-origin: top right; +} +.scale-100 { + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} +.scale-95 { + --tw-scale-x: .95; + --tw-scale-y: .95; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} +.transform { + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} +.cursor-default { + cursor: default; +} +.list-inside { + list-style-position: inside; +} +.list-disc { + list-style-type: disc; +} +.grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)); +} +.flex-col { + flex-direction: column; +} +.items-center { + align-items: center; +} +.justify-end { + justify-content: flex-end; +} +.justify-center { + justify-content: center; +} +.justify-between { + justify-content: space-between; +} +.space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2rem * var(--tw-space-x-reverse)); + margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))); +} +.space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); +} +.overflow-hidden { + overflow: hidden; +} +.rounded { + border-radius: 0.25rem; +} +.rounded-lg { + border-radius: 0.5rem; +} +.rounded-md { + border-radius: 0.375rem; +} +.rounded-l-md { + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; +} +.rounded-r-md { + border-top-right-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; +} +.border { + border-width: 1px; +} +.border-b { + border-bottom-width: 1px; +} +.border-b-2 { + border-bottom-width: 2px; +} +.border-l-4 { + border-left-width: 4px; +} +.border-r { + border-right-width: 1px; +} +.border-t { + border-top-width: 1px; +} +.border-gray-100 { + --tw-border-opacity: 1; + border-color: rgb(243 244 246 / var(--tw-border-opacity)); +} +.border-gray-200 { + --tw-border-opacity: 1; + border-color: rgb(229 231 235 / var(--tw-border-opacity)); +} +.border-gray-300 { + --tw-border-opacity: 1; + border-color: rgb(209 213 219 / var(--tw-border-opacity)); +} +.border-gray-400 { + --tw-border-opacity: 1; + border-color: rgb(156 163 175 / var(--tw-border-opacity)); +} +.border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgb(129 140 248 / var(--tw-border-opacity)); +} +.border-transparent { + border-color: transparent; +} +.bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgb(243 244 246 / var(--tw-bg-opacity)); +} +.bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgb(31 41 55 / var(--tw-bg-opacity)); +} +.bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgb(238 242 255 / var(--tw-bg-opacity)); +} +.bg-white { + --tw-bg-opacity: 1; + background-color: rgb(255 255 255 / var(--tw-bg-opacity)); +} +.fill-current { + fill: currentColor; +} +.p-2 { + padding: 0.5rem; +} +.p-6 { + padding: 1.5rem; +} +.px-1 { + padding-left: 0.25rem; + padding-right: 0.25rem; +} +.px-2 { + padding-left: 0.5rem; + padding-right: 0.5rem; +} +.px-4 { + padding-left: 1rem; + padding-right: 1rem; +} +.px-6 { + padding-left: 1.5rem; + padding-right: 1.5rem; +} +.py-1 { + padding-top: 0.25rem; + padding-bottom: 0.25rem; +} +.py-12 { + padding-top: 3rem; + padding-bottom: 3rem; +} +.py-2 { + padding-top: 0.5rem; + padding-bottom: 0.5rem; +} +.py-4 { + padding-top: 1rem; + padding-bottom: 1rem; +} +.py-6 { + padding-top: 1.5rem; + padding-bottom: 1.5rem; +} +.pb-1 { + padding-bottom: 0.25rem; +} +.pb-3 { + padding-bottom: 0.75rem; +} +.pl-3 { + padding-left: 0.75rem; +} +.pr-4 { + padding-right: 1rem; +} +.pt-1 { + padding-top: 0.25rem; +} +.pt-2 { + padding-top: 0.5rem; +} +.pt-4 { + padding-top: 1rem; +} +.pt-6 { + padding-top: 1.5rem; +} +.pt-8 { + padding-top: 2rem; +} +.text-left { + text-align: left; +} +.text-center { + text-align: center; +} +.font-sans { + font-family: Nunito, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; +} +.text-base { + font-size: 1rem; + line-height: 1.5rem; +} +.text-lg { + font-size: 1.125rem; + line-height: 1.75rem; +} +.text-sm { + font-size: 0.875rem; + line-height: 1.25rem; +} +.text-xl { + font-size: 1.25rem; + line-height: 1.75rem; +} +.text-xs { + font-size: 0.75rem; + line-height: 1rem; +} +.font-medium { + font-weight: 500; +} +.font-semibold { + font-weight: 600; +} +.uppercase { + text-transform: uppercase; +} +.leading-5 { + line-height: 1.25rem; +} +.leading-7 { + line-height: 1.75rem; +} +.leading-tight { + line-height: 1.25; +} +.tracking-wider { + letter-spacing: 0.05em; +} +.tracking-widest { + letter-spacing: 0.1em; +} +.text-gray-200 { + --tw-text-opacity: 1; + color: rgb(229 231 235 / var(--tw-text-opacity)); +} +.text-gray-300 { + --tw-text-opacity: 1; + color: rgb(209 213 219 / var(--tw-text-opacity)); +} +.text-gray-400 { + --tw-text-opacity: 1; + color: rgb(156 163 175 / var(--tw-text-opacity)); +} +.text-gray-500 { + --tw-text-opacity: 1; + color: rgb(107 114 128 / var(--tw-text-opacity)); +} +.text-gray-600 { + --tw-text-opacity: 1; + color: rgb(75 85 99 / var(--tw-text-opacity)); +} +.text-gray-700 { + --tw-text-opacity: 1; + color: rgb(55 65 81 / var(--tw-text-opacity)); +} +.text-gray-800 { + --tw-text-opacity: 1; + color: rgb(31 41 55 / var(--tw-text-opacity)); +} +.text-gray-900 { + --tw-text-opacity: 1; + color: rgb(17 24 39 / var(--tw-text-opacity)); +} +.text-green-600 { + --tw-text-opacity: 1; + color: rgb(22 163 74 / var(--tw-text-opacity)); +} +.text-indigo-600 { + --tw-text-opacity: 1; + color: rgb(79 70 229 / var(--tw-text-opacity)); +} +.text-indigo-700 { + --tw-text-opacity: 1; + color: rgb(67 56 202 / var(--tw-text-opacity)); +} +.text-red-600 { + --tw-text-opacity: 1; + color: rgb(220 38 38 / var(--tw-text-opacity)); +} +.text-white { + --tw-text-opacity: 1; + color: rgb(255 255 255 / var(--tw-text-opacity)); +} +.underline { + text-decoration-line: underline; +} +.antialiased { + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} +.opacity-0 { + opacity: 0; +} +.opacity-100 { + opacity: 1; +} +.shadow { + --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); + --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} +.shadow-lg { + --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); + --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} +.shadow-md { + --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); + --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} +.shadow-sm { + --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); + --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} +.ring-1 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} +.ring-black { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(0 0 0 / var(--tw-ring-opacity)); +} +.ring-gray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity)); +} +.ring-opacity-5 { + --tw-ring-opacity: 0.05; +} +.transition { + transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter; + transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; + transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} +.duration-150 { + transition-duration: 150ms; +} +.duration-200 { + transition-duration: 200ms; +} +.duration-75 { + transition-duration: 75ms; +} +.ease-in { + transition-timing-function: cubic-bezier(0.4, 0, 1, 1); +} +.ease-in-out { + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); +} +.ease-out { + transition-timing-function: cubic-bezier(0, 0, 0.2, 1); +} +.hover\:border-gray-300:hover { + --tw-border-opacity: 1; + border-color: rgb(209 213 219 / var(--tw-border-opacity)); +} +.hover\:bg-gray-100:hover { + --tw-bg-opacity: 1; + background-color: rgb(243 244 246 / var(--tw-bg-opacity)); +} +.hover\:bg-gray-50:hover { + --tw-bg-opacity: 1; + background-color: rgb(249 250 251 / var(--tw-bg-opacity)); +} +.hover\:bg-gray-700:hover { + --tw-bg-opacity: 1; + background-color: rgb(55 65 81 / var(--tw-bg-opacity)); +} +.hover\:text-gray-400:hover { + --tw-text-opacity: 1; + color: rgb(156 163 175 / var(--tw-text-opacity)); +} +.hover\:text-gray-500:hover { + --tw-text-opacity: 1; + color: rgb(107 114 128 / var(--tw-text-opacity)); +} +.hover\:text-gray-700:hover { + --tw-text-opacity: 1; + color: rgb(55 65 81 / var(--tw-text-opacity)); +} +.hover\:text-gray-800:hover { + --tw-text-opacity: 1; + color: rgb(31 41 55 / var(--tw-text-opacity)); +} +.hover\:text-gray-900:hover { + --tw-text-opacity: 1; + color: rgb(17 24 39 / var(--tw-text-opacity)); +} +.focus\:z-10:focus { + z-index: 10; +} +.focus\:border-blue-300:focus { + --tw-border-opacity: 1; + border-color: rgb(147 197 253 / var(--tw-border-opacity)); +} +.focus\:border-gray-300:focus { + --tw-border-opacity: 1; + border-color: rgb(209 213 219 / var(--tw-border-opacity)); +} +.focus\:border-gray-900:focus { + --tw-border-opacity: 1; + border-color: rgb(17 24 39 / var(--tw-border-opacity)); +} +.focus\:border-indigo-300:focus { + --tw-border-opacity: 1; + border-color: rgb(165 180 252 / var(--tw-border-opacity)); +} +.focus\:border-indigo-700:focus { + --tw-border-opacity: 1; + border-color: rgb(67 56 202 / var(--tw-border-opacity)); +} +.focus\:bg-gray-100:focus { + --tw-bg-opacity: 1; + background-color: rgb(243 244 246 / var(--tw-bg-opacity)); +} +.focus\:bg-gray-50:focus { + --tw-bg-opacity: 1; + background-color: rgb(249 250 251 / var(--tw-bg-opacity)); +} +.focus\:bg-indigo-100:focus { + --tw-bg-opacity: 1; + background-color: rgb(224 231 255 / var(--tw-bg-opacity)); +} +.focus\:text-gray-500:focus { + --tw-text-opacity: 1; + color: rgb(107 114 128 / var(--tw-text-opacity)); +} +.focus\:text-gray-700:focus { + --tw-text-opacity: 1; + color: rgb(55 65 81 / var(--tw-text-opacity)); +} +.focus\:text-gray-800:focus { + --tw-text-opacity: 1; + color: rgb(31 41 55 / var(--tw-text-opacity)); +} +.focus\:text-indigo-800:focus { + --tw-text-opacity: 1; + color: rgb(55 48 163 / var(--tw-text-opacity)); +} +.focus\:outline-none:focus { + outline: 2px solid transparent; + outline-offset: 2px; +} +.focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} +.focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(199 210 254 / var(--tw-ring-opacity)); +} +.focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5; +} +.active\:bg-gray-100:active { + --tw-bg-opacity: 1; + background-color: rgb(243 244 246 / var(--tw-bg-opacity)); +} +.active\:bg-gray-900:active { + --tw-bg-opacity: 1; + background-color: rgb(17 24 39 / var(--tw-bg-opacity)); +} +.active\:text-gray-500:active { + --tw-text-opacity: 1; + color: rgb(107 114 128 / var(--tw-text-opacity)); +} +.active\:text-gray-700:active { + --tw-text-opacity: 1; + color: rgb(55 65 81 / var(--tw-text-opacity)); +} +.disabled\:opacity-25:disabled { + opacity: 0.25; +} +@media (prefers-color-scheme: dark) { + + .dark\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgb(55 65 81 / var(--tw-border-opacity)); + } + + .dark\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgb(31 41 55 / var(--tw-bg-opacity)); + } + + .dark\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgb(17 24 39 / var(--tw-bg-opacity)); + } + + .dark\:text-gray-400 { + --tw-text-opacity: 1; + color: rgb(156 163 175 / var(--tw-text-opacity)); + } + + .dark\:text-gray-500 { + --tw-text-opacity: 1; + color: rgb(107 114 128 / var(--tw-text-opacity)); + } + + .dark\:text-white { + --tw-text-opacity: 1; + color: rgb(255 255 255 / var(--tw-text-opacity)); + } +} +@media (min-width: 640px) { + + .sm\:-my-px { + margin-top: -1px; + margin-bottom: -1px; + } + + .sm\:ml-0 { + margin-left: 0px; + } + + .sm\:ml-10 { + margin-left: 2.5rem; + } + + .sm\:ml-6 { + margin-left: 1.5rem; + } + + .sm\:block { + display: block; + } + + .sm\:flex { + display: flex; + } + + .sm\:hidden { + display: none; + } + + .sm\:h-20 { + height: 5rem; + } + + .sm\:max-w-md { + max-width: 28rem; + } + + .sm\:flex-1 { + flex: 1 1 0%; + } + + .sm\:items-center { + align-items: center; + } + + .sm\:justify-start { + justify-content: flex-start; + } + + .sm\:justify-center { + justify-content: center; + } + + .sm\:justify-between { + justify-content: space-between; + } + + .sm\:rounded-lg { + border-radius: 0.5rem; + } + + .sm\:px-6 { + padding-left: 1.5rem; + padding-right: 1.5rem; + } + + .sm\:pt-0 { + padding-top: 0px; + } + + .sm\:text-left { + text-align: left; + } + + .sm\:text-right { + text-align: right; + } +} +@media (min-width: 768px) { + + .md\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); + } + + .md\:border-l { + border-left-width: 1px; + } + + .md\:border-t-0 { + border-top-width: 0px; + } +} +@media (min-width: 1024px) { + + .lg\:px-8 { + padding-left: 2rem; + padding-right: 2rem; + } +} + diff --git a/public/hse/assets/bootstrap/0-circle-fill.svg b/public/hse/assets/bootstrap/0-circle-fill.svg deleted file mode 100644 index 08afbb1..0000000 --- a/public/hse/assets/bootstrap/0-circle-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/0-circle.svg b/public/hse/assets/bootstrap/0-circle.svg deleted file mode 100644 index 8c518f7..0000000 --- a/public/hse/assets/bootstrap/0-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/0-square-fill.svg b/public/hse/assets/bootstrap/0-square-fill.svg deleted file mode 100644 index d5375d4..0000000 --- a/public/hse/assets/bootstrap/0-square-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/0-square.svg b/public/hse/assets/bootstrap/0-square.svg deleted file mode 100644 index aa66709..0000000 --- a/public/hse/assets/bootstrap/0-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/1-circle-fill.svg b/public/hse/assets/bootstrap/1-circle-fill.svg deleted file mode 100644 index 9b257b9..0000000 --- a/public/hse/assets/bootstrap/1-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/1-circle.svg b/public/hse/assets/bootstrap/1-circle.svg deleted file mode 100644 index 785af34..0000000 --- a/public/hse/assets/bootstrap/1-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/1-square-fill.svg b/public/hse/assets/bootstrap/1-square-fill.svg deleted file mode 100644 index de579e6..0000000 --- a/public/hse/assets/bootstrap/1-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/1-square.svg b/public/hse/assets/bootstrap/1-square.svg deleted file mode 100644 index 4f57d79..0000000 --- a/public/hse/assets/bootstrap/1-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/123.svg b/public/hse/assets/bootstrap/123.svg deleted file mode 100644 index 3ee3396..0000000 --- a/public/hse/assets/bootstrap/123.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/2-circle-fill.svg b/public/hse/assets/bootstrap/2-circle-fill.svg deleted file mode 100644 index 03a9251..0000000 --- a/public/hse/assets/bootstrap/2-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/2-circle.svg b/public/hse/assets/bootstrap/2-circle.svg deleted file mode 100644 index fea4a56..0000000 --- a/public/hse/assets/bootstrap/2-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/2-square-fill.svg b/public/hse/assets/bootstrap/2-square-fill.svg deleted file mode 100644 index a89e1f7..0000000 --- a/public/hse/assets/bootstrap/2-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/2-square.svg b/public/hse/assets/bootstrap/2-square.svg deleted file mode 100644 index 558c78b..0000000 --- a/public/hse/assets/bootstrap/2-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/3-circle-fill.svg b/public/hse/assets/bootstrap/3-circle-fill.svg deleted file mode 100644 index 06d2ea5..0000000 --- a/public/hse/assets/bootstrap/3-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/3-circle.svg b/public/hse/assets/bootstrap/3-circle.svg deleted file mode 100644 index 23c3479..0000000 --- a/public/hse/assets/bootstrap/3-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/3-square-fill.svg b/public/hse/assets/bootstrap/3-square-fill.svg deleted file mode 100644 index c6890a3..0000000 --- a/public/hse/assets/bootstrap/3-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/3-square.svg b/public/hse/assets/bootstrap/3-square.svg deleted file mode 100644 index b56b684..0000000 --- a/public/hse/assets/bootstrap/3-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/4-circle-fill.svg b/public/hse/assets/bootstrap/4-circle-fill.svg deleted file mode 100644 index 199a5e2..0000000 --- a/public/hse/assets/bootstrap/4-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/4-circle.svg b/public/hse/assets/bootstrap/4-circle.svg deleted file mode 100644 index 3af547d..0000000 --- a/public/hse/assets/bootstrap/4-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/4-square-fill.svg b/public/hse/assets/bootstrap/4-square-fill.svg deleted file mode 100644 index 03b0f94..0000000 --- a/public/hse/assets/bootstrap/4-square-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/4-square.svg b/public/hse/assets/bootstrap/4-square.svg deleted file mode 100644 index dd85455..0000000 --- a/public/hse/assets/bootstrap/4-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/5-circle-fill.svg b/public/hse/assets/bootstrap/5-circle-fill.svg deleted file mode 100644 index e940e98..0000000 --- a/public/hse/assets/bootstrap/5-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/5-circle.svg b/public/hse/assets/bootstrap/5-circle.svg deleted file mode 100644 index 47eefd0..0000000 --- a/public/hse/assets/bootstrap/5-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/5-square-fill.svg b/public/hse/assets/bootstrap/5-square-fill.svg deleted file mode 100644 index 1a87860..0000000 --- a/public/hse/assets/bootstrap/5-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/5-square.svg b/public/hse/assets/bootstrap/5-square.svg deleted file mode 100644 index 9c54c77..0000000 --- a/public/hse/assets/bootstrap/5-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/6-circle-fill.svg b/public/hse/assets/bootstrap/6-circle-fill.svg deleted file mode 100644 index 18f66ef..0000000 --- a/public/hse/assets/bootstrap/6-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/6-circle.svg b/public/hse/assets/bootstrap/6-circle.svg deleted file mode 100644 index ab5f748..0000000 --- a/public/hse/assets/bootstrap/6-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/6-square-fill.svg b/public/hse/assets/bootstrap/6-square-fill.svg deleted file mode 100644 index d67fa52..0000000 --- a/public/hse/assets/bootstrap/6-square-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/6-square.svg b/public/hse/assets/bootstrap/6-square.svg deleted file mode 100644 index 79762c8..0000000 --- a/public/hse/assets/bootstrap/6-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/7-circle-fill.svg b/public/hse/assets/bootstrap/7-circle-fill.svg deleted file mode 100644 index bb4522b..0000000 --- a/public/hse/assets/bootstrap/7-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/7-circle.svg b/public/hse/assets/bootstrap/7-circle.svg deleted file mode 100644 index 0dc4685..0000000 --- a/public/hse/assets/bootstrap/7-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/7-square-fill.svg b/public/hse/assets/bootstrap/7-square-fill.svg deleted file mode 100644 index 8a4789c..0000000 --- a/public/hse/assets/bootstrap/7-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/7-square.svg b/public/hse/assets/bootstrap/7-square.svg deleted file mode 100644 index a314c4a..0000000 --- a/public/hse/assets/bootstrap/7-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/8-circle-fill.svg b/public/hse/assets/bootstrap/8-circle-fill.svg deleted file mode 100644 index 15cd6b4..0000000 --- a/public/hse/assets/bootstrap/8-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/8-circle.svg b/public/hse/assets/bootstrap/8-circle.svg deleted file mode 100644 index fb14542..0000000 --- a/public/hse/assets/bootstrap/8-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/8-square-fill.svg b/public/hse/assets/bootstrap/8-square-fill.svg deleted file mode 100644 index 766d42a..0000000 --- a/public/hse/assets/bootstrap/8-square-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/8-square.svg b/public/hse/assets/bootstrap/8-square.svg deleted file mode 100644 index f450b17..0000000 --- a/public/hse/assets/bootstrap/8-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/9-circle-fill.svg b/public/hse/assets/bootstrap/9-circle-fill.svg deleted file mode 100644 index 6ebd865..0000000 --- a/public/hse/assets/bootstrap/9-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/9-circle.svg b/public/hse/assets/bootstrap/9-circle.svg deleted file mode 100644 index 7c97f29..0000000 --- a/public/hse/assets/bootstrap/9-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/9-square-fill.svg b/public/hse/assets/bootstrap/9-square-fill.svg deleted file mode 100644 index daee3e8..0000000 --- a/public/hse/assets/bootstrap/9-square-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/9-square.svg b/public/hse/assets/bootstrap/9-square.svg deleted file mode 100644 index ade9233..0000000 --- a/public/hse/assets/bootstrap/9-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/activity.svg b/public/hse/assets/bootstrap/activity.svg deleted file mode 100644 index 1c45d1b..0000000 --- a/public/hse/assets/bootstrap/activity.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/airplane-engines-fill.svg b/public/hse/assets/bootstrap/airplane-engines-fill.svg deleted file mode 100644 index b58d49f..0000000 --- a/public/hse/assets/bootstrap/airplane-engines-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/airplane-engines.svg b/public/hse/assets/bootstrap/airplane-engines.svg deleted file mode 100644 index 78b7934..0000000 --- a/public/hse/assets/bootstrap/airplane-engines.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/airplane-fill.svg b/public/hse/assets/bootstrap/airplane-fill.svg deleted file mode 100644 index c8f2fce..0000000 --- a/public/hse/assets/bootstrap/airplane-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/airplane.svg b/public/hse/assets/bootstrap/airplane.svg deleted file mode 100644 index 2e04c92..0000000 --- a/public/hse/assets/bootstrap/airplane.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/alarm-fill.svg b/public/hse/assets/bootstrap/alarm-fill.svg deleted file mode 100644 index bec569f..0000000 --- a/public/hse/assets/bootstrap/alarm-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/alarm.svg b/public/hse/assets/bootstrap/alarm.svg deleted file mode 100644 index 53f7cbe..0000000 --- a/public/hse/assets/bootstrap/alarm.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/alexa.svg b/public/hse/assets/bootstrap/alexa.svg deleted file mode 100644 index a68f1d9..0000000 --- a/public/hse/assets/bootstrap/alexa.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/align-bottom.svg b/public/hse/assets/bootstrap/align-bottom.svg deleted file mode 100644 index d9484c0..0000000 --- a/public/hse/assets/bootstrap/align-bottom.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/align-center.svg b/public/hse/assets/bootstrap/align-center.svg deleted file mode 100644 index af0d75b..0000000 --- a/public/hse/assets/bootstrap/align-center.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/align-end.svg b/public/hse/assets/bootstrap/align-end.svg deleted file mode 100644 index 28f861d..0000000 --- a/public/hse/assets/bootstrap/align-end.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/align-middle.svg b/public/hse/assets/bootstrap/align-middle.svg deleted file mode 100644 index 95c6598..0000000 --- a/public/hse/assets/bootstrap/align-middle.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/align-start.svg b/public/hse/assets/bootstrap/align-start.svg deleted file mode 100644 index a72ba98..0000000 --- a/public/hse/assets/bootstrap/align-start.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/align-top.svg b/public/hse/assets/bootstrap/align-top.svg deleted file mode 100644 index d2934f5..0000000 --- a/public/hse/assets/bootstrap/align-top.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/alipay.svg b/public/hse/assets/bootstrap/alipay.svg deleted file mode 100644 index df7def9..0000000 --- a/public/hse/assets/bootstrap/alipay.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/alt.svg b/public/hse/assets/bootstrap/alt.svg deleted file mode 100644 index 22b7886..0000000 --- a/public/hse/assets/bootstrap/alt.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/amd.svg b/public/hse/assets/bootstrap/amd.svg deleted file mode 100644 index 15dab80..0000000 --- a/public/hse/assets/bootstrap/amd.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/android.svg b/public/hse/assets/bootstrap/android.svg deleted file mode 100644 index d890952..0000000 --- a/public/hse/assets/bootstrap/android.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/android2.svg b/public/hse/assets/bootstrap/android2.svg deleted file mode 100644 index 37613cc..0000000 --- a/public/hse/assets/bootstrap/android2.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/app-indicator.svg b/public/hse/assets/bootstrap/app-indicator.svg deleted file mode 100644 index 450a011..0000000 --- a/public/hse/assets/bootstrap/app-indicator.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/app.svg b/public/hse/assets/bootstrap/app.svg deleted file mode 100644 index 819df1b..0000000 --- a/public/hse/assets/bootstrap/app.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/apple.svg b/public/hse/assets/bootstrap/apple.svg deleted file mode 100644 index b8bc2a0..0000000 --- a/public/hse/assets/bootstrap/apple.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/archive-fill.svg b/public/hse/assets/bootstrap/archive-fill.svg deleted file mode 100644 index 077aa29..0000000 --- a/public/hse/assets/bootstrap/archive-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/archive.svg b/public/hse/assets/bootstrap/archive.svg deleted file mode 100644 index b41be30..0000000 --- a/public/hse/assets/bootstrap/archive.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-90deg-down.svg b/public/hse/assets/bootstrap/arrow-90deg-down.svg deleted file mode 100644 index 1193b5d..0000000 --- a/public/hse/assets/bootstrap/arrow-90deg-down.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-90deg-left.svg b/public/hse/assets/bootstrap/arrow-90deg-left.svg deleted file mode 100644 index 1656b22..0000000 --- a/public/hse/assets/bootstrap/arrow-90deg-left.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-90deg-right.svg b/public/hse/assets/bootstrap/arrow-90deg-right.svg deleted file mode 100644 index a7d32ce..0000000 --- a/public/hse/assets/bootstrap/arrow-90deg-right.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-90deg-up.svg b/public/hse/assets/bootstrap/arrow-90deg-up.svg deleted file mode 100644 index 6c95e3d..0000000 --- a/public/hse/assets/bootstrap/arrow-90deg-up.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-bar-down.svg b/public/hse/assets/bootstrap/arrow-bar-down.svg deleted file mode 100644 index fe18e39..0000000 --- a/public/hse/assets/bootstrap/arrow-bar-down.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-bar-left.svg b/public/hse/assets/bootstrap/arrow-bar-left.svg deleted file mode 100644 index 8f9252e..0000000 --- a/public/hse/assets/bootstrap/arrow-bar-left.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-bar-right.svg b/public/hse/assets/bootstrap/arrow-bar-right.svg deleted file mode 100644 index 9b64347..0000000 --- a/public/hse/assets/bootstrap/arrow-bar-right.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-bar-up.svg b/public/hse/assets/bootstrap/arrow-bar-up.svg deleted file mode 100644 index 090b6bd..0000000 --- a/public/hse/assets/bootstrap/arrow-bar-up.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-clockwise.svg b/public/hse/assets/bootstrap/arrow-clockwise.svg deleted file mode 100644 index b072eb0..0000000 --- a/public/hse/assets/bootstrap/arrow-clockwise.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-counterclockwise.svg b/public/hse/assets/bootstrap/arrow-counterclockwise.svg deleted file mode 100644 index b0b23b9..0000000 --- a/public/hse/assets/bootstrap/arrow-counterclockwise.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-down-circle-fill.svg b/public/hse/assets/bootstrap/arrow-down-circle-fill.svg deleted file mode 100644 index 8e837c0..0000000 --- a/public/hse/assets/bootstrap/arrow-down-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-down-circle.svg b/public/hse/assets/bootstrap/arrow-down-circle.svg deleted file mode 100644 index fe215b9..0000000 --- a/public/hse/assets/bootstrap/arrow-down-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-down-left-circle-fill.svg b/public/hse/assets/bootstrap/arrow-down-left-circle-fill.svg deleted file mode 100644 index bcebc12..0000000 --- a/public/hse/assets/bootstrap/arrow-down-left-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-down-left-circle.svg b/public/hse/assets/bootstrap/arrow-down-left-circle.svg deleted file mode 100644 index 8b52276..0000000 --- a/public/hse/assets/bootstrap/arrow-down-left-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-down-left-square-fill.svg b/public/hse/assets/bootstrap/arrow-down-left-square-fill.svg deleted file mode 100644 index 57c099f..0000000 --- a/public/hse/assets/bootstrap/arrow-down-left-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-down-left-square.svg b/public/hse/assets/bootstrap/arrow-down-left-square.svg deleted file mode 100644 index 08e0028..0000000 --- a/public/hse/assets/bootstrap/arrow-down-left-square.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-down-left.svg b/public/hse/assets/bootstrap/arrow-down-left.svg deleted file mode 100644 index 96a6b08..0000000 --- a/public/hse/assets/bootstrap/arrow-down-left.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-down-right-circle-fill.svg b/public/hse/assets/bootstrap/arrow-down-right-circle-fill.svg deleted file mode 100644 index 35ab8c2..0000000 --- a/public/hse/assets/bootstrap/arrow-down-right-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-down-right-circle.svg b/public/hse/assets/bootstrap/arrow-down-right-circle.svg deleted file mode 100644 index 1cd51bc..0000000 --- a/public/hse/assets/bootstrap/arrow-down-right-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-down-right-square-fill.svg b/public/hse/assets/bootstrap/arrow-down-right-square-fill.svg deleted file mode 100644 index 3ccff9b..0000000 --- a/public/hse/assets/bootstrap/arrow-down-right-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-down-right-square.svg b/public/hse/assets/bootstrap/arrow-down-right-square.svg deleted file mode 100644 index 5019b26..0000000 --- a/public/hse/assets/bootstrap/arrow-down-right-square.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-down-right.svg b/public/hse/assets/bootstrap/arrow-down-right.svg deleted file mode 100644 index 80487bd..0000000 --- a/public/hse/assets/bootstrap/arrow-down-right.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-down-short.svg b/public/hse/assets/bootstrap/arrow-down-short.svg deleted file mode 100644 index 2fda340..0000000 --- a/public/hse/assets/bootstrap/arrow-down-short.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-down-square-fill.svg b/public/hse/assets/bootstrap/arrow-down-square-fill.svg deleted file mode 100644 index ea8f14b..0000000 --- a/public/hse/assets/bootstrap/arrow-down-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-down-square.svg b/public/hse/assets/bootstrap/arrow-down-square.svg deleted file mode 100644 index 633671f..0000000 --- a/public/hse/assets/bootstrap/arrow-down-square.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-down-up.svg b/public/hse/assets/bootstrap/arrow-down-up.svg deleted file mode 100644 index a128d9b..0000000 --- a/public/hse/assets/bootstrap/arrow-down-up.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-down.svg b/public/hse/assets/bootstrap/arrow-down.svg deleted file mode 100644 index 1344ca9..0000000 --- a/public/hse/assets/bootstrap/arrow-down.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-left-circle-fill.svg b/public/hse/assets/bootstrap/arrow-left-circle-fill.svg deleted file mode 100644 index 2eebe62..0000000 --- a/public/hse/assets/bootstrap/arrow-left-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-left-circle.svg b/public/hse/assets/bootstrap/arrow-left-circle.svg deleted file mode 100644 index 39f86b8..0000000 --- a/public/hse/assets/bootstrap/arrow-left-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-left-right.svg b/public/hse/assets/bootstrap/arrow-left-right.svg deleted file mode 100644 index 8aabd7b..0000000 --- a/public/hse/assets/bootstrap/arrow-left-right.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-left-short.svg b/public/hse/assets/bootstrap/arrow-left-short.svg deleted file mode 100644 index 13005fb..0000000 --- a/public/hse/assets/bootstrap/arrow-left-short.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-left-square-fill.svg b/public/hse/assets/bootstrap/arrow-left-square-fill.svg deleted file mode 100644 index 76dbe9e..0000000 --- a/public/hse/assets/bootstrap/arrow-left-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-left-square.svg b/public/hse/assets/bootstrap/arrow-left-square.svg deleted file mode 100644 index 4db19b3..0000000 --- a/public/hse/assets/bootstrap/arrow-left-square.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-left.svg b/public/hse/assets/bootstrap/arrow-left.svg deleted file mode 100644 index 9d88501..0000000 --- a/public/hse/assets/bootstrap/arrow-left.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-repeat.svg b/public/hse/assets/bootstrap/arrow-repeat.svg deleted file mode 100644 index d0d7154..0000000 --- a/public/hse/assets/bootstrap/arrow-repeat.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-return-left.svg b/public/hse/assets/bootstrap/arrow-return-left.svg deleted file mode 100644 index f6b125e..0000000 --- a/public/hse/assets/bootstrap/arrow-return-left.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-return-right.svg b/public/hse/assets/bootstrap/arrow-return-right.svg deleted file mode 100644 index 228e24b..0000000 --- a/public/hse/assets/bootstrap/arrow-return-right.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-right-circle-fill.svg b/public/hse/assets/bootstrap/arrow-right-circle-fill.svg deleted file mode 100644 index 336a34e..0000000 --- a/public/hse/assets/bootstrap/arrow-right-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-right-circle.svg b/public/hse/assets/bootstrap/arrow-right-circle.svg deleted file mode 100644 index 1339b52..0000000 --- a/public/hse/assets/bootstrap/arrow-right-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-right-short.svg b/public/hse/assets/bootstrap/arrow-right-short.svg deleted file mode 100644 index 4626398..0000000 --- a/public/hse/assets/bootstrap/arrow-right-short.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-right-square-fill.svg b/public/hse/assets/bootstrap/arrow-right-square-fill.svg deleted file mode 100644 index 55285eb..0000000 --- a/public/hse/assets/bootstrap/arrow-right-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-right-square.svg b/public/hse/assets/bootstrap/arrow-right-square.svg deleted file mode 100644 index 7209ead..0000000 --- a/public/hse/assets/bootstrap/arrow-right-square.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-right.svg b/public/hse/assets/bootstrap/arrow-right.svg deleted file mode 100644 index d4b878b..0000000 --- a/public/hse/assets/bootstrap/arrow-right.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-through-heart-fill.svg b/public/hse/assets/bootstrap/arrow-through-heart-fill.svg deleted file mode 100644 index 1b3c30f..0000000 --- a/public/hse/assets/bootstrap/arrow-through-heart-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-through-heart.svg b/public/hse/assets/bootstrap/arrow-through-heart.svg deleted file mode 100644 index f352870..0000000 --- a/public/hse/assets/bootstrap/arrow-through-heart.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-up-circle-fill.svg b/public/hse/assets/bootstrap/arrow-up-circle-fill.svg deleted file mode 100644 index ab0a54c..0000000 --- a/public/hse/assets/bootstrap/arrow-up-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-up-circle.svg b/public/hse/assets/bootstrap/arrow-up-circle.svg deleted file mode 100644 index 9923ae3..0000000 --- a/public/hse/assets/bootstrap/arrow-up-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-up-left-circle-fill.svg b/public/hse/assets/bootstrap/arrow-up-left-circle-fill.svg deleted file mode 100644 index df6e194..0000000 --- a/public/hse/assets/bootstrap/arrow-up-left-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-up-left-circle.svg b/public/hse/assets/bootstrap/arrow-up-left-circle.svg deleted file mode 100644 index dfdaf71..0000000 --- a/public/hse/assets/bootstrap/arrow-up-left-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-up-left-square-fill.svg b/public/hse/assets/bootstrap/arrow-up-left-square-fill.svg deleted file mode 100644 index 220169d..0000000 --- a/public/hse/assets/bootstrap/arrow-up-left-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-up-left-square.svg b/public/hse/assets/bootstrap/arrow-up-left-square.svg deleted file mode 100644 index 9d3767f..0000000 --- a/public/hse/assets/bootstrap/arrow-up-left-square.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-up-left.svg b/public/hse/assets/bootstrap/arrow-up-left.svg deleted file mode 100644 index da5bb6c..0000000 --- a/public/hse/assets/bootstrap/arrow-up-left.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-up-right-circle-fill.svg b/public/hse/assets/bootstrap/arrow-up-right-circle-fill.svg deleted file mode 100644 index ba547c8..0000000 --- a/public/hse/assets/bootstrap/arrow-up-right-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-up-right-circle.svg b/public/hse/assets/bootstrap/arrow-up-right-circle.svg deleted file mode 100644 index f2fcabc..0000000 --- a/public/hse/assets/bootstrap/arrow-up-right-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-up-right-square-fill.svg b/public/hse/assets/bootstrap/arrow-up-right-square-fill.svg deleted file mode 100644 index 7454537..0000000 --- a/public/hse/assets/bootstrap/arrow-up-right-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-up-right-square.svg b/public/hse/assets/bootstrap/arrow-up-right-square.svg deleted file mode 100644 index 9754423..0000000 --- a/public/hse/assets/bootstrap/arrow-up-right-square.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-up-right.svg b/public/hse/assets/bootstrap/arrow-up-right.svg deleted file mode 100644 index 6924a38..0000000 --- a/public/hse/assets/bootstrap/arrow-up-right.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-up-short.svg b/public/hse/assets/bootstrap/arrow-up-short.svg deleted file mode 100644 index 3863f15..0000000 --- a/public/hse/assets/bootstrap/arrow-up-short.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-up-square-fill.svg b/public/hse/assets/bootstrap/arrow-up-square-fill.svg deleted file mode 100644 index bb51b25..0000000 --- a/public/hse/assets/bootstrap/arrow-up-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-up-square.svg b/public/hse/assets/bootstrap/arrow-up-square.svg deleted file mode 100644 index d21f03e..0000000 --- a/public/hse/assets/bootstrap/arrow-up-square.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrow-up.svg b/public/hse/assets/bootstrap/arrow-up.svg deleted file mode 100644 index c46d49e..0000000 --- a/public/hse/assets/bootstrap/arrow-up.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrows-angle-contract.svg b/public/hse/assets/bootstrap/arrows-angle-contract.svg deleted file mode 100644 index d140e19..0000000 --- a/public/hse/assets/bootstrap/arrows-angle-contract.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrows-angle-expand.svg b/public/hse/assets/bootstrap/arrows-angle-expand.svg deleted file mode 100644 index 3697f60..0000000 --- a/public/hse/assets/bootstrap/arrows-angle-expand.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrows-collapse.svg b/public/hse/assets/bootstrap/arrows-collapse.svg deleted file mode 100644 index d60fbee..0000000 --- a/public/hse/assets/bootstrap/arrows-collapse.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrows-expand.svg b/public/hse/assets/bootstrap/arrows-expand.svg deleted file mode 100644 index d5d00f4..0000000 --- a/public/hse/assets/bootstrap/arrows-expand.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrows-fullscreen.svg b/public/hse/assets/bootstrap/arrows-fullscreen.svg deleted file mode 100644 index dc0acc3..0000000 --- a/public/hse/assets/bootstrap/arrows-fullscreen.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/arrows-move.svg b/public/hse/assets/bootstrap/arrows-move.svg deleted file mode 100644 index eef62ef..0000000 --- a/public/hse/assets/bootstrap/arrows-move.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/aspect-ratio-fill.svg b/public/hse/assets/bootstrap/aspect-ratio-fill.svg deleted file mode 100644 index 81dcfcb..0000000 --- a/public/hse/assets/bootstrap/aspect-ratio-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/aspect-ratio.svg b/public/hse/assets/bootstrap/aspect-ratio.svg deleted file mode 100644 index 66719a7..0000000 --- a/public/hse/assets/bootstrap/aspect-ratio.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/asterisk.svg b/public/hse/assets/bootstrap/asterisk.svg deleted file mode 100644 index 8b0a9da..0000000 --- a/public/hse/assets/bootstrap/asterisk.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/at.svg b/public/hse/assets/bootstrap/at.svg deleted file mode 100644 index 4a85e14..0000000 --- a/public/hse/assets/bootstrap/at.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/award-fill.svg b/public/hse/assets/bootstrap/award-fill.svg deleted file mode 100644 index 6b58996..0000000 --- a/public/hse/assets/bootstrap/award-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/award.svg b/public/hse/assets/bootstrap/award.svg deleted file mode 100644 index 8f572ff..0000000 --- a/public/hse/assets/bootstrap/award.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/back.svg b/public/hse/assets/bootstrap/back.svg deleted file mode 100644 index 4c6cbcb..0000000 --- a/public/hse/assets/bootstrap/back.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/backspace-fill.svg b/public/hse/assets/bootstrap/backspace-fill.svg deleted file mode 100644 index ab63109..0000000 --- a/public/hse/assets/bootstrap/backspace-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/backspace-reverse-fill.svg b/public/hse/assets/bootstrap/backspace-reverse-fill.svg deleted file mode 100644 index ed509ec..0000000 --- a/public/hse/assets/bootstrap/backspace-reverse-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/backspace-reverse.svg b/public/hse/assets/bootstrap/backspace-reverse.svg deleted file mode 100644 index 446e019..0000000 --- a/public/hse/assets/bootstrap/backspace-reverse.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/backspace.svg b/public/hse/assets/bootstrap/backspace.svg deleted file mode 100644 index 55c802c..0000000 --- a/public/hse/assets/bootstrap/backspace.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/badge-3d-fill.svg b/public/hse/assets/bootstrap/badge-3d-fill.svg deleted file mode 100644 index ac61cb5..0000000 --- a/public/hse/assets/bootstrap/badge-3d-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/badge-3d.svg b/public/hse/assets/bootstrap/badge-3d.svg deleted file mode 100644 index 3485837..0000000 --- a/public/hse/assets/bootstrap/badge-3d.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/badge-4k-fill.svg b/public/hse/assets/bootstrap/badge-4k-fill.svg deleted file mode 100644 index f353033..0000000 --- a/public/hse/assets/bootstrap/badge-4k-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/badge-4k.svg b/public/hse/assets/bootstrap/badge-4k.svg deleted file mode 100644 index 24ddcb1..0000000 --- a/public/hse/assets/bootstrap/badge-4k.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/badge-8k-fill.svg b/public/hse/assets/bootstrap/badge-8k-fill.svg deleted file mode 100644 index 1e1d4c1..0000000 --- a/public/hse/assets/bootstrap/badge-8k-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/badge-8k.svg b/public/hse/assets/bootstrap/badge-8k.svg deleted file mode 100644 index 7df4c75..0000000 --- a/public/hse/assets/bootstrap/badge-8k.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/badge-ad-fill.svg b/public/hse/assets/bootstrap/badge-ad-fill.svg deleted file mode 100644 index b383de6..0000000 --- a/public/hse/assets/bootstrap/badge-ad-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/badge-ad.svg b/public/hse/assets/bootstrap/badge-ad.svg deleted file mode 100644 index 942b018..0000000 --- a/public/hse/assets/bootstrap/badge-ad.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/badge-ar-fill.svg b/public/hse/assets/bootstrap/badge-ar-fill.svg deleted file mode 100644 index f98caac..0000000 --- a/public/hse/assets/bootstrap/badge-ar-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/badge-ar.svg b/public/hse/assets/bootstrap/badge-ar.svg deleted file mode 100644 index 2210506..0000000 --- a/public/hse/assets/bootstrap/badge-ar.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/badge-cc-fill.svg b/public/hse/assets/bootstrap/badge-cc-fill.svg deleted file mode 100644 index d9783fe..0000000 --- a/public/hse/assets/bootstrap/badge-cc-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/badge-cc.svg b/public/hse/assets/bootstrap/badge-cc.svg deleted file mode 100644 index 7868cb4..0000000 --- a/public/hse/assets/bootstrap/badge-cc.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/badge-hd-fill.svg b/public/hse/assets/bootstrap/badge-hd-fill.svg deleted file mode 100644 index 9f0a498..0000000 --- a/public/hse/assets/bootstrap/badge-hd-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/badge-hd.svg b/public/hse/assets/bootstrap/badge-hd.svg deleted file mode 100644 index e3f4ae7..0000000 --- a/public/hse/assets/bootstrap/badge-hd.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/badge-sd-fill.svg b/public/hse/assets/bootstrap/badge-sd-fill.svg deleted file mode 100644 index 538b642..0000000 --- a/public/hse/assets/bootstrap/badge-sd-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/badge-sd.svg b/public/hse/assets/bootstrap/badge-sd.svg deleted file mode 100644 index 68667dd..0000000 --- a/public/hse/assets/bootstrap/badge-sd.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/badge-tm-fill.svg b/public/hse/assets/bootstrap/badge-tm-fill.svg deleted file mode 100644 index 7d334ce..0000000 --- a/public/hse/assets/bootstrap/badge-tm-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/badge-tm.svg b/public/hse/assets/bootstrap/badge-tm.svg deleted file mode 100644 index 452dd3b..0000000 --- a/public/hse/assets/bootstrap/badge-tm.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/badge-vo-fill.svg b/public/hse/assets/bootstrap/badge-vo-fill.svg deleted file mode 100644 index 1f74e75..0000000 --- a/public/hse/assets/bootstrap/badge-vo-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/badge-vo.svg b/public/hse/assets/bootstrap/badge-vo.svg deleted file mode 100644 index 500d98f..0000000 --- a/public/hse/assets/bootstrap/badge-vo.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/badge-vr-fill.svg b/public/hse/assets/bootstrap/badge-vr-fill.svg deleted file mode 100644 index 6cde11f..0000000 --- a/public/hse/assets/bootstrap/badge-vr-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/badge-vr.svg b/public/hse/assets/bootstrap/badge-vr.svg deleted file mode 100644 index 5c06852..0000000 --- a/public/hse/assets/bootstrap/badge-vr.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/badge-wc-fill.svg b/public/hse/assets/bootstrap/badge-wc-fill.svg deleted file mode 100644 index 47db37b..0000000 --- a/public/hse/assets/bootstrap/badge-wc-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/badge-wc.svg b/public/hse/assets/bootstrap/badge-wc.svg deleted file mode 100644 index 3f0cc5b..0000000 --- a/public/hse/assets/bootstrap/badge-wc.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bag-check-fill.svg b/public/hse/assets/bootstrap/bag-check-fill.svg deleted file mode 100644 index a1ba2d2..0000000 --- a/public/hse/assets/bootstrap/bag-check-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bag-check.svg b/public/hse/assets/bootstrap/bag-check.svg deleted file mode 100644 index c6ad9ac..0000000 --- a/public/hse/assets/bootstrap/bag-check.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bag-dash-fill.svg b/public/hse/assets/bootstrap/bag-dash-fill.svg deleted file mode 100644 index a739242..0000000 --- a/public/hse/assets/bootstrap/bag-dash-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bag-dash.svg b/public/hse/assets/bootstrap/bag-dash.svg deleted file mode 100644 index 9bcb202..0000000 --- a/public/hse/assets/bootstrap/bag-dash.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bag-fill.svg b/public/hse/assets/bootstrap/bag-fill.svg deleted file mode 100644 index 1a1e2e2..0000000 --- a/public/hse/assets/bootstrap/bag-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bag-heart-fill.svg b/public/hse/assets/bootstrap/bag-heart-fill.svg deleted file mode 100644 index a859e05..0000000 --- a/public/hse/assets/bootstrap/bag-heart-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bag-heart.svg b/public/hse/assets/bootstrap/bag-heart.svg deleted file mode 100644 index 2a6bd30..0000000 --- a/public/hse/assets/bootstrap/bag-heart.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bag-plus-fill.svg b/public/hse/assets/bootstrap/bag-plus-fill.svg deleted file mode 100644 index a110b32..0000000 --- a/public/hse/assets/bootstrap/bag-plus-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bag-plus.svg b/public/hse/assets/bootstrap/bag-plus.svg deleted file mode 100644 index b99a1a5..0000000 --- a/public/hse/assets/bootstrap/bag-plus.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bag-x-fill.svg b/public/hse/assets/bootstrap/bag-x-fill.svg deleted file mode 100644 index 879bffe..0000000 --- a/public/hse/assets/bootstrap/bag-x-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bag-x.svg b/public/hse/assets/bootstrap/bag-x.svg deleted file mode 100644 index 616532c..0000000 --- a/public/hse/assets/bootstrap/bag-x.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bag.svg b/public/hse/assets/bootstrap/bag.svg deleted file mode 100644 index 603de5f..0000000 --- a/public/hse/assets/bootstrap/bag.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/balloon-fill.svg b/public/hse/assets/bootstrap/balloon-fill.svg deleted file mode 100644 index b663894..0000000 --- a/public/hse/assets/bootstrap/balloon-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/balloon-heart-fill.svg b/public/hse/assets/bootstrap/balloon-heart-fill.svg deleted file mode 100644 index cebfb93..0000000 --- a/public/hse/assets/bootstrap/balloon-heart-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/balloon-heart.svg b/public/hse/assets/bootstrap/balloon-heart.svg deleted file mode 100644 index dadf467..0000000 --- a/public/hse/assets/bootstrap/balloon-heart.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/balloon.svg b/public/hse/assets/bootstrap/balloon.svg deleted file mode 100644 index 6ca06c3..0000000 --- a/public/hse/assets/bootstrap/balloon.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bandaid-fill.svg b/public/hse/assets/bootstrap/bandaid-fill.svg deleted file mode 100644 index 41d350a..0000000 --- a/public/hse/assets/bootstrap/bandaid-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bandaid.svg b/public/hse/assets/bootstrap/bandaid.svg deleted file mode 100644 index de16de9..0000000 --- a/public/hse/assets/bootstrap/bandaid.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bank.svg b/public/hse/assets/bootstrap/bank.svg deleted file mode 100644 index 264eaaa..0000000 --- a/public/hse/assets/bootstrap/bank.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bank2.svg b/public/hse/assets/bootstrap/bank2.svg deleted file mode 100644 index b03840c..0000000 --- a/public/hse/assets/bootstrap/bank2.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bar-chart-fill.svg b/public/hse/assets/bootstrap/bar-chart-fill.svg deleted file mode 100644 index 23ba4f6..0000000 --- a/public/hse/assets/bootstrap/bar-chart-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bar-chart-line-fill.svg b/public/hse/assets/bootstrap/bar-chart-line-fill.svg deleted file mode 100644 index a5059c4..0000000 --- a/public/hse/assets/bootstrap/bar-chart-line-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bar-chart-line.svg b/public/hse/assets/bootstrap/bar-chart-line.svg deleted file mode 100644 index e3f0cf2..0000000 --- a/public/hse/assets/bootstrap/bar-chart-line.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bar-chart-steps.svg b/public/hse/assets/bootstrap/bar-chart-steps.svg deleted file mode 100644 index 933fba8..0000000 --- a/public/hse/assets/bootstrap/bar-chart-steps.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bar-chart.svg b/public/hse/assets/bootstrap/bar-chart.svg deleted file mode 100644 index c34c0d4..0000000 --- a/public/hse/assets/bootstrap/bar-chart.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/basket-fill.svg b/public/hse/assets/bootstrap/basket-fill.svg deleted file mode 100644 index ebf223c..0000000 --- a/public/hse/assets/bootstrap/basket-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/basket.svg b/public/hse/assets/bootstrap/basket.svg deleted file mode 100644 index 4bc584b..0000000 --- a/public/hse/assets/bootstrap/basket.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/basket2-fill.svg b/public/hse/assets/bootstrap/basket2-fill.svg deleted file mode 100644 index 9ebf8db..0000000 --- a/public/hse/assets/bootstrap/basket2-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/basket2.svg b/public/hse/assets/bootstrap/basket2.svg deleted file mode 100644 index 94f0bcb..0000000 --- a/public/hse/assets/bootstrap/basket2.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/basket3-fill.svg b/public/hse/assets/bootstrap/basket3-fill.svg deleted file mode 100644 index e26f0ee..0000000 --- a/public/hse/assets/bootstrap/basket3-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/basket3.svg b/public/hse/assets/bootstrap/basket3.svg deleted file mode 100644 index ac46c01..0000000 --- a/public/hse/assets/bootstrap/basket3.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/battery-charging.svg b/public/hse/assets/bootstrap/battery-charging.svg deleted file mode 100644 index cbd9107..0000000 --- a/public/hse/assets/bootstrap/battery-charging.svg +++ /dev/null @@ -1,6 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/battery-full.svg b/public/hse/assets/bootstrap/battery-full.svg deleted file mode 100644 index 48cf92e..0000000 --- a/public/hse/assets/bootstrap/battery-full.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/battery-half.svg b/public/hse/assets/bootstrap/battery-half.svg deleted file mode 100644 index 8c3afca..0000000 --- a/public/hse/assets/bootstrap/battery-half.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/battery.svg b/public/hse/assets/bootstrap/battery.svg deleted file mode 100644 index 1260360..0000000 --- a/public/hse/assets/bootstrap/battery.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/behance.svg b/public/hse/assets/bootstrap/behance.svg deleted file mode 100644 index a6a2c42..0000000 --- a/public/hse/assets/bootstrap/behance.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bell-fill.svg b/public/hse/assets/bootstrap/bell-fill.svg deleted file mode 100644 index 76d9b60..0000000 --- a/public/hse/assets/bootstrap/bell-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bell-slash-fill.svg b/public/hse/assets/bootstrap/bell-slash-fill.svg deleted file mode 100644 index 2e6f8cf..0000000 --- a/public/hse/assets/bootstrap/bell-slash-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bell-slash.svg b/public/hse/assets/bootstrap/bell-slash.svg deleted file mode 100644 index eddbb8a..0000000 --- a/public/hse/assets/bootstrap/bell-slash.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bell.svg b/public/hse/assets/bootstrap/bell.svg deleted file mode 100644 index 585d417..0000000 --- a/public/hse/assets/bootstrap/bell.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bezier.svg b/public/hse/assets/bootstrap/bezier.svg deleted file mode 100644 index 21ec7b3..0000000 --- a/public/hse/assets/bootstrap/bezier.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bezier2.svg b/public/hse/assets/bootstrap/bezier2.svg deleted file mode 100644 index 48722d0..0000000 --- a/public/hse/assets/bootstrap/bezier2.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bicycle.svg b/public/hse/assets/bootstrap/bicycle.svg deleted file mode 100644 index 17a2105..0000000 --- a/public/hse/assets/bootstrap/bicycle.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/binoculars-fill.svg b/public/hse/assets/bootstrap/binoculars-fill.svg deleted file mode 100644 index de09c73..0000000 --- a/public/hse/assets/bootstrap/binoculars-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/binoculars.svg b/public/hse/assets/bootstrap/binoculars.svg deleted file mode 100644 index 47bca44..0000000 --- a/public/hse/assets/bootstrap/binoculars.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/blockquote-left.svg b/public/hse/assets/bootstrap/blockquote-left.svg deleted file mode 100644 index f2e0fa2..0000000 --- a/public/hse/assets/bootstrap/blockquote-left.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/blockquote-right.svg b/public/hse/assets/bootstrap/blockquote-right.svg deleted file mode 100644 index 253518d..0000000 --- a/public/hse/assets/bootstrap/blockquote-right.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bluetooth.svg b/public/hse/assets/bootstrap/bluetooth.svg deleted file mode 100644 index 5021e77..0000000 --- a/public/hse/assets/bootstrap/bluetooth.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/body-text.svg b/public/hse/assets/bootstrap/body-text.svg deleted file mode 100644 index 81ede13..0000000 --- a/public/hse/assets/bootstrap/body-text.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/book-fill.svg b/public/hse/assets/bootstrap/book-fill.svg deleted file mode 100644 index 276a281..0000000 --- a/public/hse/assets/bootstrap/book-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/book-half.svg b/public/hse/assets/bootstrap/book-half.svg deleted file mode 100644 index 76589a5..0000000 --- a/public/hse/assets/bootstrap/book-half.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/book.svg b/public/hse/assets/bootstrap/book.svg deleted file mode 100644 index f0e5e49..0000000 --- a/public/hse/assets/bootstrap/book.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bookmark-check-fill.svg b/public/hse/assets/bootstrap/bookmark-check-fill.svg deleted file mode 100644 index 039e455..0000000 --- a/public/hse/assets/bootstrap/bookmark-check-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bookmark-check.svg b/public/hse/assets/bootstrap/bookmark-check.svg deleted file mode 100644 index b1f572f..0000000 --- a/public/hse/assets/bootstrap/bookmark-check.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bookmark-dash-fill.svg b/public/hse/assets/bootstrap/bookmark-dash-fill.svg deleted file mode 100644 index e171192..0000000 --- a/public/hse/assets/bootstrap/bookmark-dash-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bookmark-dash.svg b/public/hse/assets/bootstrap/bookmark-dash.svg deleted file mode 100644 index 1138dbb..0000000 --- a/public/hse/assets/bootstrap/bookmark-dash.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bookmark-fill.svg b/public/hse/assets/bootstrap/bookmark-fill.svg deleted file mode 100644 index 9466102..0000000 --- a/public/hse/assets/bootstrap/bookmark-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bookmark-heart-fill.svg b/public/hse/assets/bootstrap/bookmark-heart-fill.svg deleted file mode 100644 index 83db817..0000000 --- a/public/hse/assets/bootstrap/bookmark-heart-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bookmark-heart.svg b/public/hse/assets/bootstrap/bookmark-heart.svg deleted file mode 100644 index be0adb1..0000000 --- a/public/hse/assets/bootstrap/bookmark-heart.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bookmark-plus-fill.svg b/public/hse/assets/bootstrap/bookmark-plus-fill.svg deleted file mode 100644 index bb4502a..0000000 --- a/public/hse/assets/bootstrap/bookmark-plus-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bookmark-plus.svg b/public/hse/assets/bootstrap/bookmark-plus.svg deleted file mode 100644 index 986a222..0000000 --- a/public/hse/assets/bootstrap/bookmark-plus.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bookmark-star-fill.svg b/public/hse/assets/bootstrap/bookmark-star-fill.svg deleted file mode 100644 index 220f16f..0000000 --- a/public/hse/assets/bootstrap/bookmark-star-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bookmark-star.svg b/public/hse/assets/bootstrap/bookmark-star.svg deleted file mode 100644 index 0d2f262..0000000 --- a/public/hse/assets/bootstrap/bookmark-star.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bookmark-x-fill.svg b/public/hse/assets/bootstrap/bookmark-x-fill.svg deleted file mode 100644 index 69fd982..0000000 --- a/public/hse/assets/bootstrap/bookmark-x-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bookmark-x.svg b/public/hse/assets/bootstrap/bookmark-x.svg deleted file mode 100644 index 6ac9e80..0000000 --- a/public/hse/assets/bootstrap/bookmark-x.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bookmark.svg b/public/hse/assets/bootstrap/bookmark.svg deleted file mode 100644 index 93e1d99..0000000 --- a/public/hse/assets/bootstrap/bookmark.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bookmarks-fill.svg b/public/hse/assets/bootstrap/bookmarks-fill.svg deleted file mode 100644 index eb5a2db..0000000 --- a/public/hse/assets/bootstrap/bookmarks-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bookmarks.svg b/public/hse/assets/bootstrap/bookmarks.svg deleted file mode 100644 index 6efa0bc..0000000 --- a/public/hse/assets/bootstrap/bookmarks.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bookshelf.svg b/public/hse/assets/bootstrap/bookshelf.svg deleted file mode 100644 index 6549ea1..0000000 --- a/public/hse/assets/bootstrap/bookshelf.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/boombox-fill.svg b/public/hse/assets/bootstrap/boombox-fill.svg deleted file mode 100644 index 6103ae2..0000000 --- a/public/hse/assets/bootstrap/boombox-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/boombox.svg b/public/hse/assets/bootstrap/boombox.svg deleted file mode 100644 index 520f23e..0000000 --- a/public/hse/assets/bootstrap/boombox.svg +++ /dev/null @@ -1,6 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bootstrap-fill.svg b/public/hse/assets/bootstrap/bootstrap-fill.svg deleted file mode 100644 index 9d16320..0000000 --- a/public/hse/assets/bootstrap/bootstrap-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bootstrap-icons.svg b/public/hse/assets/bootstrap/bootstrap-icons.svg deleted file mode 100644 index 60bb38e..0000000 --- a/public/hse/assets/bootstrap/bootstrap-icons.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bootstrap-reboot.svg b/public/hse/assets/bootstrap/bootstrap-reboot.svg deleted file mode 100644 index 4a184cf..0000000 --- a/public/hse/assets/bootstrap/bootstrap-reboot.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bootstrap.svg b/public/hse/assets/bootstrap/bootstrap.svg deleted file mode 100644 index b6aed61..0000000 --- a/public/hse/assets/bootstrap/bootstrap.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/border-all.svg b/public/hse/assets/bootstrap/border-all.svg deleted file mode 100644 index 803f5e2..0000000 --- a/public/hse/assets/bootstrap/border-all.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/border-bottom.svg b/public/hse/assets/bootstrap/border-bottom.svg deleted file mode 100644 index dbc2192..0000000 --- a/public/hse/assets/bootstrap/border-bottom.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/border-center.svg b/public/hse/assets/bootstrap/border-center.svg deleted file mode 100644 index 009b97d..0000000 --- a/public/hse/assets/bootstrap/border-center.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/border-inner.svg b/public/hse/assets/bootstrap/border-inner.svg deleted file mode 100644 index 2beaa0c..0000000 --- a/public/hse/assets/bootstrap/border-inner.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/border-left.svg b/public/hse/assets/bootstrap/border-left.svg deleted file mode 100644 index 69df882..0000000 --- a/public/hse/assets/bootstrap/border-left.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/border-middle.svg b/public/hse/assets/bootstrap/border-middle.svg deleted file mode 100644 index 90296f9..0000000 --- a/public/hse/assets/bootstrap/border-middle.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/border-outer.svg b/public/hse/assets/bootstrap/border-outer.svg deleted file mode 100644 index 355e05e..0000000 --- a/public/hse/assets/bootstrap/border-outer.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/border-right.svg b/public/hse/assets/bootstrap/border-right.svg deleted file mode 100644 index b0c16da..0000000 --- a/public/hse/assets/bootstrap/border-right.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/border-style.svg b/public/hse/assets/bootstrap/border-style.svg deleted file mode 100644 index d742b2c..0000000 --- a/public/hse/assets/bootstrap/border-style.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/border-top.svg b/public/hse/assets/bootstrap/border-top.svg deleted file mode 100644 index 5aab368..0000000 --- a/public/hse/assets/bootstrap/border-top.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/border-width.svg b/public/hse/assets/bootstrap/border-width.svg deleted file mode 100644 index 0cbd0e6..0000000 --- a/public/hse/assets/bootstrap/border-width.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/border.svg b/public/hse/assets/bootstrap/border.svg deleted file mode 100644 index 0e8c9b5..0000000 --- a/public/hse/assets/bootstrap/border.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bounding-box-circles.svg b/public/hse/assets/bootstrap/bounding-box-circles.svg deleted file mode 100644 index 2e59f31..0000000 --- a/public/hse/assets/bootstrap/bounding-box-circles.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bounding-box.svg b/public/hse/assets/bootstrap/bounding-box.svg deleted file mode 100644 index d529292..0000000 --- a/public/hse/assets/bootstrap/bounding-box.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/box-arrow-down-left.svg b/public/hse/assets/bootstrap/box-arrow-down-left.svg deleted file mode 100644 index 6ad3e17..0000000 --- a/public/hse/assets/bootstrap/box-arrow-down-left.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/box-arrow-down-right.svg b/public/hse/assets/bootstrap/box-arrow-down-right.svg deleted file mode 100644 index 321cddf..0000000 --- a/public/hse/assets/bootstrap/box-arrow-down-right.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/box-arrow-down.svg b/public/hse/assets/bootstrap/box-arrow-down.svg deleted file mode 100644 index 9a2ca12..0000000 --- a/public/hse/assets/bootstrap/box-arrow-down.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/box-arrow-in-down-left.svg b/public/hse/assets/bootstrap/box-arrow-in-down-left.svg deleted file mode 100644 index 76a687a..0000000 --- a/public/hse/assets/bootstrap/box-arrow-in-down-left.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/box-arrow-in-down-right.svg b/public/hse/assets/bootstrap/box-arrow-in-down-right.svg deleted file mode 100644 index 9237293..0000000 --- a/public/hse/assets/bootstrap/box-arrow-in-down-right.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/box-arrow-in-down.svg b/public/hse/assets/bootstrap/box-arrow-in-down.svg deleted file mode 100644 index 90f9301..0000000 --- a/public/hse/assets/bootstrap/box-arrow-in-down.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/box-arrow-in-left.svg b/public/hse/assets/bootstrap/box-arrow-in-left.svg deleted file mode 100644 index a237daf..0000000 --- a/public/hse/assets/bootstrap/box-arrow-in-left.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/box-arrow-in-right.svg b/public/hse/assets/bootstrap/box-arrow-in-right.svg deleted file mode 100644 index d158dae..0000000 --- a/public/hse/assets/bootstrap/box-arrow-in-right.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/box-arrow-in-up-left.svg b/public/hse/assets/bootstrap/box-arrow-in-up-left.svg deleted file mode 100644 index 6937f6a..0000000 --- a/public/hse/assets/bootstrap/box-arrow-in-up-left.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/box-arrow-in-up-right.svg b/public/hse/assets/bootstrap/box-arrow-in-up-right.svg deleted file mode 100644 index 8918611..0000000 --- a/public/hse/assets/bootstrap/box-arrow-in-up-right.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/box-arrow-in-up.svg b/public/hse/assets/bootstrap/box-arrow-in-up.svg deleted file mode 100644 index e6a4a7b..0000000 --- a/public/hse/assets/bootstrap/box-arrow-in-up.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/box-arrow-left.svg b/public/hse/assets/bootstrap/box-arrow-left.svg deleted file mode 100644 index 8602603..0000000 --- a/public/hse/assets/bootstrap/box-arrow-left.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/box-arrow-right.svg b/public/hse/assets/bootstrap/box-arrow-right.svg deleted file mode 100644 index 2c4e26c..0000000 --- a/public/hse/assets/bootstrap/box-arrow-right.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/box-arrow-up-left.svg b/public/hse/assets/bootstrap/box-arrow-up-left.svg deleted file mode 100644 index 7fb0b45..0000000 --- a/public/hse/assets/bootstrap/box-arrow-up-left.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/box-arrow-up-right.svg b/public/hse/assets/bootstrap/box-arrow-up-right.svg deleted file mode 100644 index 1d93acb..0000000 --- a/public/hse/assets/bootstrap/box-arrow-up-right.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/box-arrow-up.svg b/public/hse/assets/bootstrap/box-arrow-up.svg deleted file mode 100644 index beaf334..0000000 --- a/public/hse/assets/bootstrap/box-arrow-up.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/box-fill.svg b/public/hse/assets/bootstrap/box-fill.svg deleted file mode 100644 index 8cf213f..0000000 --- a/public/hse/assets/bootstrap/box-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/box-seam-fill.svg b/public/hse/assets/bootstrap/box-seam-fill.svg deleted file mode 100644 index 97566ab..0000000 --- a/public/hse/assets/bootstrap/box-seam-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/box-seam.svg b/public/hse/assets/bootstrap/box-seam.svg deleted file mode 100644 index e1506b8..0000000 --- a/public/hse/assets/bootstrap/box-seam.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/box.svg b/public/hse/assets/bootstrap/box.svg deleted file mode 100644 index 58cbe2c..0000000 --- a/public/hse/assets/bootstrap/box.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/box2-fill.svg b/public/hse/assets/bootstrap/box2-fill.svg deleted file mode 100644 index 242ad6a..0000000 --- a/public/hse/assets/bootstrap/box2-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/box2-heart-fill.svg b/public/hse/assets/bootstrap/box2-heart-fill.svg deleted file mode 100644 index 810e2ee..0000000 --- a/public/hse/assets/bootstrap/box2-heart-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/box2-heart.svg b/public/hse/assets/bootstrap/box2-heart.svg deleted file mode 100644 index 400eb43..0000000 --- a/public/hse/assets/bootstrap/box2-heart.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/box2.svg b/public/hse/assets/bootstrap/box2.svg deleted file mode 100644 index 6020baf..0000000 --- a/public/hse/assets/bootstrap/box2.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/boxes.svg b/public/hse/assets/bootstrap/boxes.svg deleted file mode 100644 index b53fac8..0000000 --- a/public/hse/assets/bootstrap/boxes.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/braces-asterisk.svg b/public/hse/assets/bootstrap/braces-asterisk.svg deleted file mode 100644 index 0a1a25b..0000000 --- a/public/hse/assets/bootstrap/braces-asterisk.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/braces.svg b/public/hse/assets/bootstrap/braces.svg deleted file mode 100644 index 3fed8c9..0000000 --- a/public/hse/assets/bootstrap/braces.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bricks.svg b/public/hse/assets/bootstrap/bricks.svg deleted file mode 100644 index 99e2886..0000000 --- a/public/hse/assets/bootstrap/bricks.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/briefcase-fill.svg b/public/hse/assets/bootstrap/briefcase-fill.svg deleted file mode 100644 index bc6150d..0000000 --- a/public/hse/assets/bootstrap/briefcase-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/briefcase.svg b/public/hse/assets/bootstrap/briefcase.svg deleted file mode 100644 index 95d13a2..0000000 --- a/public/hse/assets/bootstrap/briefcase.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/brightness-alt-high-fill.svg b/public/hse/assets/bootstrap/brightness-alt-high-fill.svg deleted file mode 100644 index 7660658..0000000 --- a/public/hse/assets/bootstrap/brightness-alt-high-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/brightness-alt-high.svg b/public/hse/assets/bootstrap/brightness-alt-high.svg deleted file mode 100644 index 88f5255..0000000 --- a/public/hse/assets/bootstrap/brightness-alt-high.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/brightness-alt-low-fill.svg b/public/hse/assets/bootstrap/brightness-alt-low-fill.svg deleted file mode 100644 index 1692df2..0000000 --- a/public/hse/assets/bootstrap/brightness-alt-low-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/brightness-alt-low.svg b/public/hse/assets/bootstrap/brightness-alt-low.svg deleted file mode 100644 index 2d68fb0..0000000 --- a/public/hse/assets/bootstrap/brightness-alt-low.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/brightness-high-fill.svg b/public/hse/assets/bootstrap/brightness-high-fill.svg deleted file mode 100644 index 8969e9b..0000000 --- a/public/hse/assets/bootstrap/brightness-high-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/brightness-high.svg b/public/hse/assets/bootstrap/brightness-high.svg deleted file mode 100644 index 42b2c20..0000000 --- a/public/hse/assets/bootstrap/brightness-high.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/brightness-low-fill.svg b/public/hse/assets/bootstrap/brightness-low-fill.svg deleted file mode 100644 index 29a1c3b..0000000 --- a/public/hse/assets/bootstrap/brightness-low-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/brightness-low.svg b/public/hse/assets/bootstrap/brightness-low.svg deleted file mode 100644 index fdd251d..0000000 --- a/public/hse/assets/bootstrap/brightness-low.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/broadcast-pin.svg b/public/hse/assets/bootstrap/broadcast-pin.svg deleted file mode 100644 index 5576e0e..0000000 --- a/public/hse/assets/bootstrap/broadcast-pin.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/broadcast.svg b/public/hse/assets/bootstrap/broadcast.svg deleted file mode 100644 index 776a237..0000000 --- a/public/hse/assets/bootstrap/broadcast.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/browser-chrome.svg b/public/hse/assets/bootstrap/browser-chrome.svg deleted file mode 100644 index a34ab42..0000000 --- a/public/hse/assets/bootstrap/browser-chrome.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/browser-edge.svg b/public/hse/assets/bootstrap/browser-edge.svg deleted file mode 100644 index c8191d8..0000000 --- a/public/hse/assets/bootstrap/browser-edge.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/browser-firefox.svg b/public/hse/assets/bootstrap/browser-firefox.svg deleted file mode 100644 index 2bfdba7..0000000 --- a/public/hse/assets/bootstrap/browser-firefox.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/browser-safari.svg b/public/hse/assets/bootstrap/browser-safari.svg deleted file mode 100644 index b304b1b..0000000 --- a/public/hse/assets/bootstrap/browser-safari.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/brush-fill.svg b/public/hse/assets/bootstrap/brush-fill.svg deleted file mode 100644 index 53ec4d6..0000000 --- a/public/hse/assets/bootstrap/brush-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/brush.svg b/public/hse/assets/bootstrap/brush.svg deleted file mode 100644 index cc3429b..0000000 --- a/public/hse/assets/bootstrap/brush.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bucket-fill.svg b/public/hse/assets/bootstrap/bucket-fill.svg deleted file mode 100644 index e14f4a8..0000000 --- a/public/hse/assets/bootstrap/bucket-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bucket.svg b/public/hse/assets/bootstrap/bucket.svg deleted file mode 100644 index 4911ef2..0000000 --- a/public/hse/assets/bootstrap/bucket.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bug-fill.svg b/public/hse/assets/bootstrap/bug-fill.svg deleted file mode 100644 index bf16447..0000000 --- a/public/hse/assets/bootstrap/bug-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bug.svg b/public/hse/assets/bootstrap/bug.svg deleted file mode 100644 index a97ffa1..0000000 --- a/public/hse/assets/bootstrap/bug.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/building-add.svg b/public/hse/assets/bootstrap/building-add.svg deleted file mode 100644 index d5016d4..0000000 --- a/public/hse/assets/bootstrap/building-add.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/building-check.svg b/public/hse/assets/bootstrap/building-check.svg deleted file mode 100644 index 151712d..0000000 --- a/public/hse/assets/bootstrap/building-check.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/building-dash.svg b/public/hse/assets/bootstrap/building-dash.svg deleted file mode 100644 index df489c8..0000000 --- a/public/hse/assets/bootstrap/building-dash.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/building-down.svg b/public/hse/assets/bootstrap/building-down.svg deleted file mode 100644 index 2493f51..0000000 --- a/public/hse/assets/bootstrap/building-down.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/building-exclamation.svg b/public/hse/assets/bootstrap/building-exclamation.svg deleted file mode 100644 index f2d8f62..0000000 --- a/public/hse/assets/bootstrap/building-exclamation.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/building-fill-add.svg b/public/hse/assets/bootstrap/building-fill-add.svg deleted file mode 100644 index 2019e92..0000000 --- a/public/hse/assets/bootstrap/building-fill-add.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/building-fill-check.svg b/public/hse/assets/bootstrap/building-fill-check.svg deleted file mode 100644 index 50485c6..0000000 --- a/public/hse/assets/bootstrap/building-fill-check.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/building-fill-dash.svg b/public/hse/assets/bootstrap/building-fill-dash.svg deleted file mode 100644 index 67107eb..0000000 --- a/public/hse/assets/bootstrap/building-fill-dash.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/building-fill-down.svg b/public/hse/assets/bootstrap/building-fill-down.svg deleted file mode 100644 index b072754..0000000 --- a/public/hse/assets/bootstrap/building-fill-down.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/building-fill-exclamation.svg b/public/hse/assets/bootstrap/building-fill-exclamation.svg deleted file mode 100644 index 6ca39dc..0000000 --- a/public/hse/assets/bootstrap/building-fill-exclamation.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/building-fill-gear.svg b/public/hse/assets/bootstrap/building-fill-gear.svg deleted file mode 100644 index 95d6126..0000000 --- a/public/hse/assets/bootstrap/building-fill-gear.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/building-fill-lock.svg b/public/hse/assets/bootstrap/building-fill-lock.svg deleted file mode 100644 index ddd8e6c..0000000 --- a/public/hse/assets/bootstrap/building-fill-lock.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/building-fill-slash.svg b/public/hse/assets/bootstrap/building-fill-slash.svg deleted file mode 100644 index 7e30330..0000000 --- a/public/hse/assets/bootstrap/building-fill-slash.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/building-fill-up.svg b/public/hse/assets/bootstrap/building-fill-up.svg deleted file mode 100644 index ef87446..0000000 --- a/public/hse/assets/bootstrap/building-fill-up.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/building-fill-x.svg b/public/hse/assets/bootstrap/building-fill-x.svg deleted file mode 100644 index 0311537..0000000 --- a/public/hse/assets/bootstrap/building-fill-x.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/building-fill.svg b/public/hse/assets/bootstrap/building-fill.svg deleted file mode 100644 index fa95d1f..0000000 --- a/public/hse/assets/bootstrap/building-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/building-gear.svg b/public/hse/assets/bootstrap/building-gear.svg deleted file mode 100644 index 698a746..0000000 --- a/public/hse/assets/bootstrap/building-gear.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/building-lock.svg b/public/hse/assets/bootstrap/building-lock.svg deleted file mode 100644 index f4da96c..0000000 --- a/public/hse/assets/bootstrap/building-lock.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/building-slash.svg b/public/hse/assets/bootstrap/building-slash.svg deleted file mode 100644 index 9920301..0000000 --- a/public/hse/assets/bootstrap/building-slash.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/building-up.svg b/public/hse/assets/bootstrap/building-up.svg deleted file mode 100644 index b2b0433..0000000 --- a/public/hse/assets/bootstrap/building-up.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/building-x.svg b/public/hse/assets/bootstrap/building-x.svg deleted file mode 100644 index 81bff0f..0000000 --- a/public/hse/assets/bootstrap/building-x.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/building.svg b/public/hse/assets/bootstrap/building.svg deleted file mode 100644 index 2555f8f..0000000 --- a/public/hse/assets/bootstrap/building.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/buildings-fill.svg b/public/hse/assets/bootstrap/buildings-fill.svg deleted file mode 100644 index 3799c1d..0000000 --- a/public/hse/assets/bootstrap/buildings-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/buildings.svg b/public/hse/assets/bootstrap/buildings.svg deleted file mode 100644 index b842c0c..0000000 --- a/public/hse/assets/bootstrap/buildings.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bullseye.svg b/public/hse/assets/bootstrap/bullseye.svg deleted file mode 100644 index 85a807c..0000000 --- a/public/hse/assets/bootstrap/bullseye.svg +++ /dev/null @@ -1,6 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bus-front-fill.svg b/public/hse/assets/bootstrap/bus-front-fill.svg deleted file mode 100644 index c71376d..0000000 --- a/public/hse/assets/bootstrap/bus-front-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/bus-front.svg b/public/hse/assets/bootstrap/bus-front.svg deleted file mode 100644 index bdf6b61..0000000 --- a/public/hse/assets/bootstrap/bus-front.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/c-circle-fill.svg b/public/hse/assets/bootstrap/c-circle-fill.svg deleted file mode 100644 index 0b4adad..0000000 --- a/public/hse/assets/bootstrap/c-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/c-circle.svg b/public/hse/assets/bootstrap/c-circle.svg deleted file mode 100644 index 3e4e268..0000000 --- a/public/hse/assets/bootstrap/c-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/c-square-fill.svg b/public/hse/assets/bootstrap/c-square-fill.svg deleted file mode 100644 index 0b24f73..0000000 --- a/public/hse/assets/bootstrap/c-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/c-square.svg b/public/hse/assets/bootstrap/c-square.svg deleted file mode 100644 index 822ae02..0000000 --- a/public/hse/assets/bootstrap/c-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calculator-fill.svg b/public/hse/assets/bootstrap/calculator-fill.svg deleted file mode 100644 index c4ee270..0000000 --- a/public/hse/assets/bootstrap/calculator-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calculator.svg b/public/hse/assets/bootstrap/calculator.svg deleted file mode 100644 index be8e11a..0000000 --- a/public/hse/assets/bootstrap/calculator.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar-check-fill.svg b/public/hse/assets/bootstrap/calendar-check-fill.svg deleted file mode 100644 index 76afaa2..0000000 --- a/public/hse/assets/bootstrap/calendar-check-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar-check.svg b/public/hse/assets/bootstrap/calendar-check.svg deleted file mode 100644 index 125b358..0000000 --- a/public/hse/assets/bootstrap/calendar-check.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar-date-fill.svg b/public/hse/assets/bootstrap/calendar-date-fill.svg deleted file mode 100644 index 37e9cb5..0000000 --- a/public/hse/assets/bootstrap/calendar-date-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar-date.svg b/public/hse/assets/bootstrap/calendar-date.svg deleted file mode 100644 index 7c53231..0000000 --- a/public/hse/assets/bootstrap/calendar-date.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar-day-fill.svg b/public/hse/assets/bootstrap/calendar-day-fill.svg deleted file mode 100644 index 7f1c3c1..0000000 --- a/public/hse/assets/bootstrap/calendar-day-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar-day.svg b/public/hse/assets/bootstrap/calendar-day.svg deleted file mode 100644 index f043369..0000000 --- a/public/hse/assets/bootstrap/calendar-day.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar-event-fill.svg b/public/hse/assets/bootstrap/calendar-event-fill.svg deleted file mode 100644 index 844dd15..0000000 --- a/public/hse/assets/bootstrap/calendar-event-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar-event.svg b/public/hse/assets/bootstrap/calendar-event.svg deleted file mode 100644 index 41c0ef9..0000000 --- a/public/hse/assets/bootstrap/calendar-event.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar-fill.svg b/public/hse/assets/bootstrap/calendar-fill.svg deleted file mode 100644 index 0cdeb35..0000000 --- a/public/hse/assets/bootstrap/calendar-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar-heart-fill.svg b/public/hse/assets/bootstrap/calendar-heart-fill.svg deleted file mode 100644 index bed00d8..0000000 --- a/public/hse/assets/bootstrap/calendar-heart-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar-heart.svg b/public/hse/assets/bootstrap/calendar-heart.svg deleted file mode 100644 index 2fe7c13..0000000 --- a/public/hse/assets/bootstrap/calendar-heart.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar-minus-fill.svg b/public/hse/assets/bootstrap/calendar-minus-fill.svg deleted file mode 100644 index f23e648..0000000 --- a/public/hse/assets/bootstrap/calendar-minus-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar-minus.svg b/public/hse/assets/bootstrap/calendar-minus.svg deleted file mode 100644 index 8f970ac..0000000 --- a/public/hse/assets/bootstrap/calendar-minus.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar-month-fill.svg b/public/hse/assets/bootstrap/calendar-month-fill.svg deleted file mode 100644 index 9123437..0000000 --- a/public/hse/assets/bootstrap/calendar-month-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar-month.svg b/public/hse/assets/bootstrap/calendar-month.svg deleted file mode 100644 index ad6a330..0000000 --- a/public/hse/assets/bootstrap/calendar-month.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar-plus-fill.svg b/public/hse/assets/bootstrap/calendar-plus-fill.svg deleted file mode 100644 index 3928c63..0000000 --- a/public/hse/assets/bootstrap/calendar-plus-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar-plus.svg b/public/hse/assets/bootstrap/calendar-plus.svg deleted file mode 100644 index 70746db..0000000 --- a/public/hse/assets/bootstrap/calendar-plus.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar-range-fill.svg b/public/hse/assets/bootstrap/calendar-range-fill.svg deleted file mode 100644 index 41bb2a2..0000000 --- a/public/hse/assets/bootstrap/calendar-range-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar-range.svg b/public/hse/assets/bootstrap/calendar-range.svg deleted file mode 100644 index 934a45c..0000000 --- a/public/hse/assets/bootstrap/calendar-range.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar-week-fill.svg b/public/hse/assets/bootstrap/calendar-week-fill.svg deleted file mode 100644 index 00930aa..0000000 --- a/public/hse/assets/bootstrap/calendar-week-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar-week.svg b/public/hse/assets/bootstrap/calendar-week.svg deleted file mode 100644 index 06d6995..0000000 --- a/public/hse/assets/bootstrap/calendar-week.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar-x-fill.svg b/public/hse/assets/bootstrap/calendar-x-fill.svg deleted file mode 100644 index 01be301..0000000 --- a/public/hse/assets/bootstrap/calendar-x-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar-x.svg b/public/hse/assets/bootstrap/calendar-x.svg deleted file mode 100644 index faf46e1..0000000 --- a/public/hse/assets/bootstrap/calendar-x.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar.svg b/public/hse/assets/bootstrap/calendar.svg deleted file mode 100644 index c8590dd..0000000 --- a/public/hse/assets/bootstrap/calendar.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar2-check-fill.svg b/public/hse/assets/bootstrap/calendar2-check-fill.svg deleted file mode 100644 index f49354e..0000000 --- a/public/hse/assets/bootstrap/calendar2-check-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar2-check.svg b/public/hse/assets/bootstrap/calendar2-check.svg deleted file mode 100644 index f826056..0000000 --- a/public/hse/assets/bootstrap/calendar2-check.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar2-date-fill.svg b/public/hse/assets/bootstrap/calendar2-date-fill.svg deleted file mode 100644 index ac005e0..0000000 --- a/public/hse/assets/bootstrap/calendar2-date-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar2-date.svg b/public/hse/assets/bootstrap/calendar2-date.svg deleted file mode 100644 index 2dd64e8..0000000 --- a/public/hse/assets/bootstrap/calendar2-date.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar2-day-fill.svg b/public/hse/assets/bootstrap/calendar2-day-fill.svg deleted file mode 100644 index 2ab1b21..0000000 --- a/public/hse/assets/bootstrap/calendar2-day-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar2-day.svg b/public/hse/assets/bootstrap/calendar2-day.svg deleted file mode 100644 index d4d4856..0000000 --- a/public/hse/assets/bootstrap/calendar2-day.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar2-event-fill.svg b/public/hse/assets/bootstrap/calendar2-event-fill.svg deleted file mode 100644 index 5bdbc27..0000000 --- a/public/hse/assets/bootstrap/calendar2-event-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar2-event.svg b/public/hse/assets/bootstrap/calendar2-event.svg deleted file mode 100644 index 8c1c7cd..0000000 --- a/public/hse/assets/bootstrap/calendar2-event.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar2-fill.svg b/public/hse/assets/bootstrap/calendar2-fill.svg deleted file mode 100644 index 4b81563..0000000 --- a/public/hse/assets/bootstrap/calendar2-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar2-heart-fill.svg b/public/hse/assets/bootstrap/calendar2-heart-fill.svg deleted file mode 100644 index a1782e3..0000000 --- a/public/hse/assets/bootstrap/calendar2-heart-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar2-heart.svg b/public/hse/assets/bootstrap/calendar2-heart.svg deleted file mode 100644 index 6d66981..0000000 --- a/public/hse/assets/bootstrap/calendar2-heart.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar2-minus-fill.svg b/public/hse/assets/bootstrap/calendar2-minus-fill.svg deleted file mode 100644 index af87213..0000000 --- a/public/hse/assets/bootstrap/calendar2-minus-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar2-minus.svg b/public/hse/assets/bootstrap/calendar2-minus.svg deleted file mode 100644 index eff8110..0000000 --- a/public/hse/assets/bootstrap/calendar2-minus.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar2-month-fill.svg b/public/hse/assets/bootstrap/calendar2-month-fill.svg deleted file mode 100644 index 58deabc..0000000 --- a/public/hse/assets/bootstrap/calendar2-month-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar2-month.svg b/public/hse/assets/bootstrap/calendar2-month.svg deleted file mode 100644 index 88c922e..0000000 --- a/public/hse/assets/bootstrap/calendar2-month.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar2-plus-fill.svg b/public/hse/assets/bootstrap/calendar2-plus-fill.svg deleted file mode 100644 index 8b41682..0000000 --- a/public/hse/assets/bootstrap/calendar2-plus-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar2-plus.svg b/public/hse/assets/bootstrap/calendar2-plus.svg deleted file mode 100644 index 7ec7d49..0000000 --- a/public/hse/assets/bootstrap/calendar2-plus.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar2-range-fill.svg b/public/hse/assets/bootstrap/calendar2-range-fill.svg deleted file mode 100644 index 39ba322..0000000 --- a/public/hse/assets/bootstrap/calendar2-range-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar2-range.svg b/public/hse/assets/bootstrap/calendar2-range.svg deleted file mode 100644 index 4a8d9ad..0000000 --- a/public/hse/assets/bootstrap/calendar2-range.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar2-week-fill.svg b/public/hse/assets/bootstrap/calendar2-week-fill.svg deleted file mode 100644 index 8303779..0000000 --- a/public/hse/assets/bootstrap/calendar2-week-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar2-week.svg b/public/hse/assets/bootstrap/calendar2-week.svg deleted file mode 100644 index 835ce06..0000000 --- a/public/hse/assets/bootstrap/calendar2-week.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar2-x-fill.svg b/public/hse/assets/bootstrap/calendar2-x-fill.svg deleted file mode 100644 index 2157939..0000000 --- a/public/hse/assets/bootstrap/calendar2-x-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar2-x.svg b/public/hse/assets/bootstrap/calendar2-x.svg deleted file mode 100644 index e7cc339..0000000 --- a/public/hse/assets/bootstrap/calendar2-x.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar2.svg b/public/hse/assets/bootstrap/calendar2.svg deleted file mode 100644 index db2e06d..0000000 --- a/public/hse/assets/bootstrap/calendar2.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar3-event-fill.svg b/public/hse/assets/bootstrap/calendar3-event-fill.svg deleted file mode 100644 index c494090..0000000 --- a/public/hse/assets/bootstrap/calendar3-event-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar3-event.svg b/public/hse/assets/bootstrap/calendar3-event.svg deleted file mode 100644 index 681ce4d..0000000 --- a/public/hse/assets/bootstrap/calendar3-event.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar3-fill.svg b/public/hse/assets/bootstrap/calendar3-fill.svg deleted file mode 100644 index e37c234..0000000 --- a/public/hse/assets/bootstrap/calendar3-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar3-range-fill.svg b/public/hse/assets/bootstrap/calendar3-range-fill.svg deleted file mode 100644 index 00875b2..0000000 --- a/public/hse/assets/bootstrap/calendar3-range-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar3-range.svg b/public/hse/assets/bootstrap/calendar3-range.svg deleted file mode 100644 index a452516..0000000 --- a/public/hse/assets/bootstrap/calendar3-range.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar3-week-fill.svg b/public/hse/assets/bootstrap/calendar3-week-fill.svg deleted file mode 100644 index 53e5bc7..0000000 --- a/public/hse/assets/bootstrap/calendar3-week-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar3-week.svg b/public/hse/assets/bootstrap/calendar3-week.svg deleted file mode 100644 index e9a768c..0000000 --- a/public/hse/assets/bootstrap/calendar3-week.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar3.svg b/public/hse/assets/bootstrap/calendar3.svg deleted file mode 100644 index eb3c5f2..0000000 --- a/public/hse/assets/bootstrap/calendar3.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar4-event.svg b/public/hse/assets/bootstrap/calendar4-event.svg deleted file mode 100644 index 51d40e8..0000000 --- a/public/hse/assets/bootstrap/calendar4-event.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar4-range.svg b/public/hse/assets/bootstrap/calendar4-range.svg deleted file mode 100644 index 129d7c1..0000000 --- a/public/hse/assets/bootstrap/calendar4-range.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar4-week.svg b/public/hse/assets/bootstrap/calendar4-week.svg deleted file mode 100644 index 5644238..0000000 --- a/public/hse/assets/bootstrap/calendar4-week.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/calendar4.svg b/public/hse/assets/bootstrap/calendar4.svg deleted file mode 100644 index 1c62685..0000000 --- a/public/hse/assets/bootstrap/calendar4.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/camera-fill.svg b/public/hse/assets/bootstrap/camera-fill.svg deleted file mode 100644 index be16451..0000000 --- a/public/hse/assets/bootstrap/camera-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/camera-reels-fill.svg b/public/hse/assets/bootstrap/camera-reels-fill.svg deleted file mode 100644 index 347f44e..0000000 --- a/public/hse/assets/bootstrap/camera-reels-fill.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/camera-reels.svg b/public/hse/assets/bootstrap/camera-reels.svg deleted file mode 100644 index 1aa7b1c..0000000 --- a/public/hse/assets/bootstrap/camera-reels.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/camera-video-fill.svg b/public/hse/assets/bootstrap/camera-video-fill.svg deleted file mode 100644 index 0222b95..0000000 --- a/public/hse/assets/bootstrap/camera-video-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/camera-video-off-fill.svg b/public/hse/assets/bootstrap/camera-video-off-fill.svg deleted file mode 100644 index 9909060..0000000 --- a/public/hse/assets/bootstrap/camera-video-off-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/camera-video-off.svg b/public/hse/assets/bootstrap/camera-video-off.svg deleted file mode 100644 index 7635e9b..0000000 --- a/public/hse/assets/bootstrap/camera-video-off.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/camera-video.svg b/public/hse/assets/bootstrap/camera-video.svg deleted file mode 100644 index 199e7a8..0000000 --- a/public/hse/assets/bootstrap/camera-video.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/camera.svg b/public/hse/assets/bootstrap/camera.svg deleted file mode 100644 index fb337fe..0000000 --- a/public/hse/assets/bootstrap/camera.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/camera2.svg b/public/hse/assets/bootstrap/camera2.svg deleted file mode 100644 index a33ae6b..0000000 --- a/public/hse/assets/bootstrap/camera2.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/capslock-fill.svg b/public/hse/assets/bootstrap/capslock-fill.svg deleted file mode 100644 index e4af909..0000000 --- a/public/hse/assets/bootstrap/capslock-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/capslock.svg b/public/hse/assets/bootstrap/capslock.svg deleted file mode 100644 index 12155de..0000000 --- a/public/hse/assets/bootstrap/capslock.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/capsule-pill.svg b/public/hse/assets/bootstrap/capsule-pill.svg deleted file mode 100644 index 0167f85..0000000 --- a/public/hse/assets/bootstrap/capsule-pill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/capsule.svg b/public/hse/assets/bootstrap/capsule.svg deleted file mode 100644 index 98863d8..0000000 --- a/public/hse/assets/bootstrap/capsule.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/car-front-fill.svg b/public/hse/assets/bootstrap/car-front-fill.svg deleted file mode 100644 index a9b9603..0000000 --- a/public/hse/assets/bootstrap/car-front-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/car-front.svg b/public/hse/assets/bootstrap/car-front.svg deleted file mode 100644 index bb5fa3d..0000000 --- a/public/hse/assets/bootstrap/car-front.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/card-checklist.svg b/public/hse/assets/bootstrap/card-checklist.svg deleted file mode 100644 index ce2a553..0000000 --- a/public/hse/assets/bootstrap/card-checklist.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/card-heading.svg b/public/hse/assets/bootstrap/card-heading.svg deleted file mode 100644 index 682bd4e..0000000 --- a/public/hse/assets/bootstrap/card-heading.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/card-image.svg b/public/hse/assets/bootstrap/card-image.svg deleted file mode 100644 index 473ff03..0000000 --- a/public/hse/assets/bootstrap/card-image.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/card-list.svg b/public/hse/assets/bootstrap/card-list.svg deleted file mode 100644 index 3dc5d42..0000000 --- a/public/hse/assets/bootstrap/card-list.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/card-text.svg b/public/hse/assets/bootstrap/card-text.svg deleted file mode 100644 index d218f55..0000000 --- a/public/hse/assets/bootstrap/card-text.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/caret-down-fill.svg b/public/hse/assets/bootstrap/caret-down-fill.svg deleted file mode 100644 index d7c3990..0000000 --- a/public/hse/assets/bootstrap/caret-down-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/caret-down-square-fill.svg b/public/hse/assets/bootstrap/caret-down-square-fill.svg deleted file mode 100644 index ae8fbb4..0000000 --- a/public/hse/assets/bootstrap/caret-down-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/caret-down-square.svg b/public/hse/assets/bootstrap/caret-down-square.svg deleted file mode 100644 index cf34038..0000000 --- a/public/hse/assets/bootstrap/caret-down-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/caret-down.svg b/public/hse/assets/bootstrap/caret-down.svg deleted file mode 100644 index 026b0ff..0000000 --- a/public/hse/assets/bootstrap/caret-down.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/caret-left-fill.svg b/public/hse/assets/bootstrap/caret-left-fill.svg deleted file mode 100644 index d989dff..0000000 --- a/public/hse/assets/bootstrap/caret-left-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/caret-left-square-fill.svg b/public/hse/assets/bootstrap/caret-left-square-fill.svg deleted file mode 100644 index 5d8ab56..0000000 --- a/public/hse/assets/bootstrap/caret-left-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/caret-left-square.svg b/public/hse/assets/bootstrap/caret-left-square.svg deleted file mode 100644 index 099b54d..0000000 --- a/public/hse/assets/bootstrap/caret-left-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/caret-left.svg b/public/hse/assets/bootstrap/caret-left.svg deleted file mode 100644 index 89732f0..0000000 --- a/public/hse/assets/bootstrap/caret-left.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/caret-right-fill.svg b/public/hse/assets/bootstrap/caret-right-fill.svg deleted file mode 100644 index b445551..0000000 --- a/public/hse/assets/bootstrap/caret-right-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/caret-right-square-fill.svg b/public/hse/assets/bootstrap/caret-right-square-fill.svg deleted file mode 100644 index ea06657..0000000 --- a/public/hse/assets/bootstrap/caret-right-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/caret-right-square.svg b/public/hse/assets/bootstrap/caret-right-square.svg deleted file mode 100644 index 4039064..0000000 --- a/public/hse/assets/bootstrap/caret-right-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/caret-right.svg b/public/hse/assets/bootstrap/caret-right.svg deleted file mode 100644 index 451686e..0000000 --- a/public/hse/assets/bootstrap/caret-right.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/caret-up-fill.svg b/public/hse/assets/bootstrap/caret-up-fill.svg deleted file mode 100644 index a87820e..0000000 --- a/public/hse/assets/bootstrap/caret-up-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/caret-up-square-fill.svg b/public/hse/assets/bootstrap/caret-up-square-fill.svg deleted file mode 100644 index 25c66a5..0000000 --- a/public/hse/assets/bootstrap/caret-up-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/caret-up-square.svg b/public/hse/assets/bootstrap/caret-up-square.svg deleted file mode 100644 index d59ecbf..0000000 --- a/public/hse/assets/bootstrap/caret-up-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/caret-up.svg b/public/hse/assets/bootstrap/caret-up.svg deleted file mode 100644 index 36ca8f0..0000000 --- a/public/hse/assets/bootstrap/caret-up.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cart-check-fill.svg b/public/hse/assets/bootstrap/cart-check-fill.svg deleted file mode 100644 index 019c1fc..0000000 --- a/public/hse/assets/bootstrap/cart-check-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cart-check.svg b/public/hse/assets/bootstrap/cart-check.svg deleted file mode 100644 index 986706a..0000000 --- a/public/hse/assets/bootstrap/cart-check.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cart-dash-fill.svg b/public/hse/assets/bootstrap/cart-dash-fill.svg deleted file mode 100644 index 2562744..0000000 --- a/public/hse/assets/bootstrap/cart-dash-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cart-dash.svg b/public/hse/assets/bootstrap/cart-dash.svg deleted file mode 100644 index ecd23f3..0000000 --- a/public/hse/assets/bootstrap/cart-dash.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cart-fill.svg b/public/hse/assets/bootstrap/cart-fill.svg deleted file mode 100644 index a2b95bf..0000000 --- a/public/hse/assets/bootstrap/cart-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cart-plus-fill.svg b/public/hse/assets/bootstrap/cart-plus-fill.svg deleted file mode 100644 index 9858fe1..0000000 --- a/public/hse/assets/bootstrap/cart-plus-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cart-plus.svg b/public/hse/assets/bootstrap/cart-plus.svg deleted file mode 100644 index acafe13..0000000 --- a/public/hse/assets/bootstrap/cart-plus.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cart-x-fill.svg b/public/hse/assets/bootstrap/cart-x-fill.svg deleted file mode 100644 index a9a32ca..0000000 --- a/public/hse/assets/bootstrap/cart-x-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cart-x.svg b/public/hse/assets/bootstrap/cart-x.svg deleted file mode 100644 index feddfdd..0000000 --- a/public/hse/assets/bootstrap/cart-x.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cart.svg b/public/hse/assets/bootstrap/cart.svg deleted file mode 100644 index 486adb1..0000000 --- a/public/hse/assets/bootstrap/cart.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cart2.svg b/public/hse/assets/bootstrap/cart2.svg deleted file mode 100644 index 7e1bd9a..0000000 --- a/public/hse/assets/bootstrap/cart2.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cart3.svg b/public/hse/assets/bootstrap/cart3.svg deleted file mode 100644 index 2187149..0000000 --- a/public/hse/assets/bootstrap/cart3.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cart4.svg b/public/hse/assets/bootstrap/cart4.svg deleted file mode 100644 index b40891f..0000000 --- a/public/hse/assets/bootstrap/cart4.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cash-coin.svg b/public/hse/assets/bootstrap/cash-coin.svg deleted file mode 100644 index bc82c64..0000000 --- a/public/hse/assets/bootstrap/cash-coin.svg +++ /dev/null @@ -1,6 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cash-stack.svg b/public/hse/assets/bootstrap/cash-stack.svg deleted file mode 100644 index 492cb38..0000000 --- a/public/hse/assets/bootstrap/cash-stack.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cash.svg b/public/hse/assets/bootstrap/cash.svg deleted file mode 100644 index ef3a4e7..0000000 --- a/public/hse/assets/bootstrap/cash.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cassette-fill.svg b/public/hse/assets/bootstrap/cassette-fill.svg deleted file mode 100644 index e8dd8f1..0000000 --- a/public/hse/assets/bootstrap/cassette-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cassette.svg b/public/hse/assets/bootstrap/cassette.svg deleted file mode 100644 index c28170c..0000000 --- a/public/hse/assets/bootstrap/cassette.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cast.svg b/public/hse/assets/bootstrap/cast.svg deleted file mode 100644 index 1eda173..0000000 --- a/public/hse/assets/bootstrap/cast.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cc-circle-fill.svg b/public/hse/assets/bootstrap/cc-circle-fill.svg deleted file mode 100644 index ca9779e..0000000 --- a/public/hse/assets/bootstrap/cc-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cc-circle.svg b/public/hse/assets/bootstrap/cc-circle.svg deleted file mode 100644 index 6de6b76..0000000 --- a/public/hse/assets/bootstrap/cc-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cc-square-fill.svg b/public/hse/assets/bootstrap/cc-square-fill.svg deleted file mode 100644 index f9b44d5..0000000 --- a/public/hse/assets/bootstrap/cc-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cc-square.svg b/public/hse/assets/bootstrap/cc-square.svg deleted file mode 100644 index 90c52bc..0000000 --- a/public/hse/assets/bootstrap/cc-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chat-dots-fill.svg b/public/hse/assets/bootstrap/chat-dots-fill.svg deleted file mode 100644 index 2e3d225..0000000 --- a/public/hse/assets/bootstrap/chat-dots-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chat-dots.svg b/public/hse/assets/bootstrap/chat-dots.svg deleted file mode 100644 index a74267d..0000000 --- a/public/hse/assets/bootstrap/chat-dots.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chat-fill.svg b/public/hse/assets/bootstrap/chat-fill.svg deleted file mode 100644 index 69ed44b..0000000 --- a/public/hse/assets/bootstrap/chat-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chat-heart-fill.svg b/public/hse/assets/bootstrap/chat-heart-fill.svg deleted file mode 100644 index 9be92ca..0000000 --- a/public/hse/assets/bootstrap/chat-heart-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chat-heart.svg b/public/hse/assets/bootstrap/chat-heart.svg deleted file mode 100644 index 90c276b..0000000 --- a/public/hse/assets/bootstrap/chat-heart.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chat-left-dots-fill.svg b/public/hse/assets/bootstrap/chat-left-dots-fill.svg deleted file mode 100644 index eb7f531..0000000 --- a/public/hse/assets/bootstrap/chat-left-dots-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chat-left-dots.svg b/public/hse/assets/bootstrap/chat-left-dots.svg deleted file mode 100644 index c73169d..0000000 --- a/public/hse/assets/bootstrap/chat-left-dots.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chat-left-fill.svg b/public/hse/assets/bootstrap/chat-left-fill.svg deleted file mode 100644 index 38c389f..0000000 --- a/public/hse/assets/bootstrap/chat-left-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chat-left-heart-fill.svg b/public/hse/assets/bootstrap/chat-left-heart-fill.svg deleted file mode 100644 index 787ed61..0000000 --- a/public/hse/assets/bootstrap/chat-left-heart-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chat-left-heart.svg b/public/hse/assets/bootstrap/chat-left-heart.svg deleted file mode 100644 index 1604e7b..0000000 --- a/public/hse/assets/bootstrap/chat-left-heart.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chat-left-quote-fill.svg b/public/hse/assets/bootstrap/chat-left-quote-fill.svg deleted file mode 100644 index b115a9f..0000000 --- a/public/hse/assets/bootstrap/chat-left-quote-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chat-left-quote.svg b/public/hse/assets/bootstrap/chat-left-quote.svg deleted file mode 100644 index 448827f..0000000 --- a/public/hse/assets/bootstrap/chat-left-quote.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chat-left-text-fill.svg b/public/hse/assets/bootstrap/chat-left-text-fill.svg deleted file mode 100644 index 28a0f47..0000000 --- a/public/hse/assets/bootstrap/chat-left-text-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chat-left-text.svg b/public/hse/assets/bootstrap/chat-left-text.svg deleted file mode 100644 index 2b69a98..0000000 --- a/public/hse/assets/bootstrap/chat-left-text.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chat-left.svg b/public/hse/assets/bootstrap/chat-left.svg deleted file mode 100644 index fd2f4ee..0000000 --- a/public/hse/assets/bootstrap/chat-left.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chat-quote-fill.svg b/public/hse/assets/bootstrap/chat-quote-fill.svg deleted file mode 100644 index 4a3af86..0000000 --- a/public/hse/assets/bootstrap/chat-quote-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chat-quote.svg b/public/hse/assets/bootstrap/chat-quote.svg deleted file mode 100644 index f890c38..0000000 --- a/public/hse/assets/bootstrap/chat-quote.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chat-right-dots-fill.svg b/public/hse/assets/bootstrap/chat-right-dots-fill.svg deleted file mode 100644 index 49ce097..0000000 --- a/public/hse/assets/bootstrap/chat-right-dots-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chat-right-dots.svg b/public/hse/assets/bootstrap/chat-right-dots.svg deleted file mode 100644 index 423d221..0000000 --- a/public/hse/assets/bootstrap/chat-right-dots.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chat-right-fill.svg b/public/hse/assets/bootstrap/chat-right-fill.svg deleted file mode 100644 index 41b767b..0000000 --- a/public/hse/assets/bootstrap/chat-right-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chat-right-heart-fill.svg b/public/hse/assets/bootstrap/chat-right-heart-fill.svg deleted file mode 100644 index b55dc62..0000000 --- a/public/hse/assets/bootstrap/chat-right-heart-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chat-right-heart.svg b/public/hse/assets/bootstrap/chat-right-heart.svg deleted file mode 100644 index 744e8a0..0000000 --- a/public/hse/assets/bootstrap/chat-right-heart.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chat-right-quote-fill.svg b/public/hse/assets/bootstrap/chat-right-quote-fill.svg deleted file mode 100644 index e63f92b..0000000 --- a/public/hse/assets/bootstrap/chat-right-quote-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chat-right-quote.svg b/public/hse/assets/bootstrap/chat-right-quote.svg deleted file mode 100644 index 42c8dbe..0000000 --- a/public/hse/assets/bootstrap/chat-right-quote.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chat-right-text-fill.svg b/public/hse/assets/bootstrap/chat-right-text-fill.svg deleted file mode 100644 index 32df921..0000000 --- a/public/hse/assets/bootstrap/chat-right-text-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chat-right-text.svg b/public/hse/assets/bootstrap/chat-right-text.svg deleted file mode 100644 index d8b6004..0000000 --- a/public/hse/assets/bootstrap/chat-right-text.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chat-right.svg b/public/hse/assets/bootstrap/chat-right.svg deleted file mode 100644 index b702b5d..0000000 --- a/public/hse/assets/bootstrap/chat-right.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chat-square-dots-fill.svg b/public/hse/assets/bootstrap/chat-square-dots-fill.svg deleted file mode 100644 index 1025978..0000000 --- a/public/hse/assets/bootstrap/chat-square-dots-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chat-square-dots.svg b/public/hse/assets/bootstrap/chat-square-dots.svg deleted file mode 100644 index e59cd1a..0000000 --- a/public/hse/assets/bootstrap/chat-square-dots.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chat-square-fill.svg b/public/hse/assets/bootstrap/chat-square-fill.svg deleted file mode 100644 index 2fb73ac..0000000 --- a/public/hse/assets/bootstrap/chat-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chat-square-heart-fill.svg b/public/hse/assets/bootstrap/chat-square-heart-fill.svg deleted file mode 100644 index f200049..0000000 --- a/public/hse/assets/bootstrap/chat-square-heart-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chat-square-heart.svg b/public/hse/assets/bootstrap/chat-square-heart.svg deleted file mode 100644 index 89ca6ef..0000000 --- a/public/hse/assets/bootstrap/chat-square-heart.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chat-square-quote-fill.svg b/public/hse/assets/bootstrap/chat-square-quote-fill.svg deleted file mode 100644 index 761cb91..0000000 --- a/public/hse/assets/bootstrap/chat-square-quote-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chat-square-quote.svg b/public/hse/assets/bootstrap/chat-square-quote.svg deleted file mode 100644 index 40893f4..0000000 --- a/public/hse/assets/bootstrap/chat-square-quote.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chat-square-text-fill.svg b/public/hse/assets/bootstrap/chat-square-text-fill.svg deleted file mode 100644 index 1dd17c5..0000000 --- a/public/hse/assets/bootstrap/chat-square-text-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chat-square-text.svg b/public/hse/assets/bootstrap/chat-square-text.svg deleted file mode 100644 index ae3fd8d..0000000 --- a/public/hse/assets/bootstrap/chat-square-text.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chat-square.svg b/public/hse/assets/bootstrap/chat-square.svg deleted file mode 100644 index 7611729..0000000 --- a/public/hse/assets/bootstrap/chat-square.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chat-text-fill.svg b/public/hse/assets/bootstrap/chat-text-fill.svg deleted file mode 100644 index fff3db3..0000000 --- a/public/hse/assets/bootstrap/chat-text-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chat-text.svg b/public/hse/assets/bootstrap/chat-text.svg deleted file mode 100644 index 75a79f1..0000000 --- a/public/hse/assets/bootstrap/chat-text.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chat.svg b/public/hse/assets/bootstrap/chat.svg deleted file mode 100644 index 3cb81b2..0000000 --- a/public/hse/assets/bootstrap/chat.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/check-all.svg b/public/hse/assets/bootstrap/check-all.svg deleted file mode 100644 index b0019d0..0000000 --- a/public/hse/assets/bootstrap/check-all.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/check-circle-fill.svg b/public/hse/assets/bootstrap/check-circle-fill.svg deleted file mode 100644 index e861174..0000000 --- a/public/hse/assets/bootstrap/check-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/check-circle.svg b/public/hse/assets/bootstrap/check-circle.svg deleted file mode 100644 index d8dd0cd..0000000 --- a/public/hse/assets/bootstrap/check-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/check-lg.svg b/public/hse/assets/bootstrap/check-lg.svg deleted file mode 100644 index 7afb0ae..0000000 --- a/public/hse/assets/bootstrap/check-lg.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/check-square-fill.svg b/public/hse/assets/bootstrap/check-square-fill.svg deleted file mode 100644 index 45d6828..0000000 --- a/public/hse/assets/bootstrap/check-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/check-square.svg b/public/hse/assets/bootstrap/check-square.svg deleted file mode 100644 index d71c1f3..0000000 --- a/public/hse/assets/bootstrap/check-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/check.svg b/public/hse/assets/bootstrap/check.svg deleted file mode 100644 index 9de6cc7..0000000 --- a/public/hse/assets/bootstrap/check.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/check2-all.svg b/public/hse/assets/bootstrap/check2-all.svg deleted file mode 100644 index 25d8ba5..0000000 --- a/public/hse/assets/bootstrap/check2-all.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/check2-circle.svg b/public/hse/assets/bootstrap/check2-circle.svg deleted file mode 100644 index 7319d37..0000000 --- a/public/hse/assets/bootstrap/check2-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/check2-square.svg b/public/hse/assets/bootstrap/check2-square.svg deleted file mode 100644 index 2d5e6eb..0000000 --- a/public/hse/assets/bootstrap/check2-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/check2.svg b/public/hse/assets/bootstrap/check2.svg deleted file mode 100644 index e187956..0000000 --- a/public/hse/assets/bootstrap/check2.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chevron-bar-contract.svg b/public/hse/assets/bootstrap/chevron-bar-contract.svg deleted file mode 100644 index f12917f..0000000 --- a/public/hse/assets/bootstrap/chevron-bar-contract.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chevron-bar-down.svg b/public/hse/assets/bootstrap/chevron-bar-down.svg deleted file mode 100644 index 4df2259..0000000 --- a/public/hse/assets/bootstrap/chevron-bar-down.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chevron-bar-expand.svg b/public/hse/assets/bootstrap/chevron-bar-expand.svg deleted file mode 100644 index 6cb775f..0000000 --- a/public/hse/assets/bootstrap/chevron-bar-expand.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chevron-bar-left.svg b/public/hse/assets/bootstrap/chevron-bar-left.svg deleted file mode 100644 index 5d53406..0000000 --- a/public/hse/assets/bootstrap/chevron-bar-left.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chevron-bar-right.svg b/public/hse/assets/bootstrap/chevron-bar-right.svg deleted file mode 100644 index b71553c..0000000 --- a/public/hse/assets/bootstrap/chevron-bar-right.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chevron-bar-up.svg b/public/hse/assets/bootstrap/chevron-bar-up.svg deleted file mode 100644 index 9ca1408..0000000 --- a/public/hse/assets/bootstrap/chevron-bar-up.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chevron-compact-down.svg b/public/hse/assets/bootstrap/chevron-compact-down.svg deleted file mode 100644 index fb1767e..0000000 --- a/public/hse/assets/bootstrap/chevron-compact-down.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chevron-compact-left.svg b/public/hse/assets/bootstrap/chevron-compact-left.svg deleted file mode 100644 index 5dd6b6b..0000000 --- a/public/hse/assets/bootstrap/chevron-compact-left.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chevron-compact-right.svg b/public/hse/assets/bootstrap/chevron-compact-right.svg deleted file mode 100644 index ecb5994..0000000 --- a/public/hse/assets/bootstrap/chevron-compact-right.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chevron-compact-up.svg b/public/hse/assets/bootstrap/chevron-compact-up.svg deleted file mode 100644 index 8bc0a55..0000000 --- a/public/hse/assets/bootstrap/chevron-compact-up.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chevron-contract.svg b/public/hse/assets/bootstrap/chevron-contract.svg deleted file mode 100644 index 5243d43..0000000 --- a/public/hse/assets/bootstrap/chevron-contract.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chevron-double-down.svg b/public/hse/assets/bootstrap/chevron-double-down.svg deleted file mode 100644 index 0df76ee..0000000 --- a/public/hse/assets/bootstrap/chevron-double-down.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chevron-double-left.svg b/public/hse/assets/bootstrap/chevron-double-left.svg deleted file mode 100644 index 7181fd1..0000000 --- a/public/hse/assets/bootstrap/chevron-double-left.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chevron-double-right.svg b/public/hse/assets/bootstrap/chevron-double-right.svg deleted file mode 100644 index 73e1b35..0000000 --- a/public/hse/assets/bootstrap/chevron-double-right.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chevron-double-up.svg b/public/hse/assets/bootstrap/chevron-double-up.svg deleted file mode 100644 index 5c9a013..0000000 --- a/public/hse/assets/bootstrap/chevron-double-up.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chevron-down.svg b/public/hse/assets/bootstrap/chevron-down.svg deleted file mode 100644 index 1f0b8bc..0000000 --- a/public/hse/assets/bootstrap/chevron-down.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chevron-expand.svg b/public/hse/assets/bootstrap/chevron-expand.svg deleted file mode 100644 index 0a2b81a..0000000 --- a/public/hse/assets/bootstrap/chevron-expand.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chevron-left.svg b/public/hse/assets/bootstrap/chevron-left.svg deleted file mode 100644 index 018f8b6..0000000 --- a/public/hse/assets/bootstrap/chevron-left.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chevron-right.svg b/public/hse/assets/bootstrap/chevron-right.svg deleted file mode 100644 index d621289..0000000 --- a/public/hse/assets/bootstrap/chevron-right.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/chevron-up.svg b/public/hse/assets/bootstrap/chevron-up.svg deleted file mode 100644 index 3b2bd42..0000000 --- a/public/hse/assets/bootstrap/chevron-up.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/circle-fill.svg b/public/hse/assets/bootstrap/circle-fill.svg deleted file mode 100644 index e0d1b51..0000000 --- a/public/hse/assets/bootstrap/circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/circle-half.svg b/public/hse/assets/bootstrap/circle-half.svg deleted file mode 100644 index 5380929..0000000 --- a/public/hse/assets/bootstrap/circle-half.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/circle-square.svg b/public/hse/assets/bootstrap/circle-square.svg deleted file mode 100644 index 37d8622..0000000 --- a/public/hse/assets/bootstrap/circle-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/circle.svg b/public/hse/assets/bootstrap/circle.svg deleted file mode 100644 index dc57919..0000000 --- a/public/hse/assets/bootstrap/circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/clipboard-check-fill.svg b/public/hse/assets/bootstrap/clipboard-check-fill.svg deleted file mode 100644 index 4c0c18f..0000000 --- a/public/hse/assets/bootstrap/clipboard-check-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/clipboard-check.svg b/public/hse/assets/bootstrap/clipboard-check.svg deleted file mode 100644 index f7591ae..0000000 --- a/public/hse/assets/bootstrap/clipboard-check.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/clipboard-data-fill.svg b/public/hse/assets/bootstrap/clipboard-data-fill.svg deleted file mode 100644 index e7de45a..0000000 --- a/public/hse/assets/bootstrap/clipboard-data-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/clipboard-data.svg b/public/hse/assets/bootstrap/clipboard-data.svg deleted file mode 100644 index b4fcb33..0000000 --- a/public/hse/assets/bootstrap/clipboard-data.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/clipboard-fill.svg b/public/hse/assets/bootstrap/clipboard-fill.svg deleted file mode 100644 index 86d3da0..0000000 --- a/public/hse/assets/bootstrap/clipboard-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/clipboard-heart-fill.svg b/public/hse/assets/bootstrap/clipboard-heart-fill.svg deleted file mode 100644 index c653de1..0000000 --- a/public/hse/assets/bootstrap/clipboard-heart-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/clipboard-heart.svg b/public/hse/assets/bootstrap/clipboard-heart.svg deleted file mode 100644 index 0b5b319..0000000 --- a/public/hse/assets/bootstrap/clipboard-heart.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/clipboard-minus-fill.svg b/public/hse/assets/bootstrap/clipboard-minus-fill.svg deleted file mode 100644 index 7828cb8..0000000 --- a/public/hse/assets/bootstrap/clipboard-minus-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/clipboard-minus.svg b/public/hse/assets/bootstrap/clipboard-minus.svg deleted file mode 100644 index 4826c3e..0000000 --- a/public/hse/assets/bootstrap/clipboard-minus.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/clipboard-plus-fill.svg b/public/hse/assets/bootstrap/clipboard-plus-fill.svg deleted file mode 100644 index 2ebdba4..0000000 --- a/public/hse/assets/bootstrap/clipboard-plus-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/clipboard-plus.svg b/public/hse/assets/bootstrap/clipboard-plus.svg deleted file mode 100644 index 79020c0..0000000 --- a/public/hse/assets/bootstrap/clipboard-plus.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/clipboard-pulse.svg b/public/hse/assets/bootstrap/clipboard-pulse.svg deleted file mode 100644 index 0c43dab..0000000 --- a/public/hse/assets/bootstrap/clipboard-pulse.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/clipboard-x-fill.svg b/public/hse/assets/bootstrap/clipboard-x-fill.svg deleted file mode 100644 index 8cba1ea..0000000 --- a/public/hse/assets/bootstrap/clipboard-x-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/clipboard-x.svg b/public/hse/assets/bootstrap/clipboard-x.svg deleted file mode 100644 index bba444d..0000000 --- a/public/hse/assets/bootstrap/clipboard-x.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/clipboard.svg b/public/hse/assets/bootstrap/clipboard.svg deleted file mode 100644 index 360e089..0000000 --- a/public/hse/assets/bootstrap/clipboard.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/clipboard2-check-fill.svg b/public/hse/assets/bootstrap/clipboard2-check-fill.svg deleted file mode 100644 index 01aed62..0000000 --- a/public/hse/assets/bootstrap/clipboard2-check-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/clipboard2-check.svg b/public/hse/assets/bootstrap/clipboard2-check.svg deleted file mode 100644 index c235208..0000000 --- a/public/hse/assets/bootstrap/clipboard2-check.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/clipboard2-data-fill.svg b/public/hse/assets/bootstrap/clipboard2-data-fill.svg deleted file mode 100644 index 40656a7..0000000 --- a/public/hse/assets/bootstrap/clipboard2-data-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/clipboard2-data.svg b/public/hse/assets/bootstrap/clipboard2-data.svg deleted file mode 100644 index 74b26f5..0000000 --- a/public/hse/assets/bootstrap/clipboard2-data.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/clipboard2-fill.svg b/public/hse/assets/bootstrap/clipboard2-fill.svg deleted file mode 100644 index ca2df57..0000000 --- a/public/hse/assets/bootstrap/clipboard2-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/clipboard2-heart-fill.svg b/public/hse/assets/bootstrap/clipboard2-heart-fill.svg deleted file mode 100644 index 2abc359..0000000 --- a/public/hse/assets/bootstrap/clipboard2-heart-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/clipboard2-heart.svg b/public/hse/assets/bootstrap/clipboard2-heart.svg deleted file mode 100644 index 4883c3f..0000000 --- a/public/hse/assets/bootstrap/clipboard2-heart.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/clipboard2-minus-fill.svg b/public/hse/assets/bootstrap/clipboard2-minus-fill.svg deleted file mode 100644 index 000a2c6..0000000 --- a/public/hse/assets/bootstrap/clipboard2-minus-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/clipboard2-minus.svg b/public/hse/assets/bootstrap/clipboard2-minus.svg deleted file mode 100644 index a634bb0..0000000 --- a/public/hse/assets/bootstrap/clipboard2-minus.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/clipboard2-plus-fill.svg b/public/hse/assets/bootstrap/clipboard2-plus-fill.svg deleted file mode 100644 index f1702d8..0000000 --- a/public/hse/assets/bootstrap/clipboard2-plus-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/clipboard2-plus.svg b/public/hse/assets/bootstrap/clipboard2-plus.svg deleted file mode 100644 index 474ffdc..0000000 --- a/public/hse/assets/bootstrap/clipboard2-plus.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/clipboard2-pulse-fill.svg b/public/hse/assets/bootstrap/clipboard2-pulse-fill.svg deleted file mode 100644 index 5017f6d..0000000 --- a/public/hse/assets/bootstrap/clipboard2-pulse-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/clipboard2-pulse.svg b/public/hse/assets/bootstrap/clipboard2-pulse.svg deleted file mode 100644 index 1e6370c..0000000 --- a/public/hse/assets/bootstrap/clipboard2-pulse.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/clipboard2-x-fill.svg b/public/hse/assets/bootstrap/clipboard2-x-fill.svg deleted file mode 100644 index 8f63584..0000000 --- a/public/hse/assets/bootstrap/clipboard2-x-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/clipboard2-x.svg b/public/hse/assets/bootstrap/clipboard2-x.svg deleted file mode 100644 index 9ac8211..0000000 --- a/public/hse/assets/bootstrap/clipboard2-x.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/clipboard2.svg b/public/hse/assets/bootstrap/clipboard2.svg deleted file mode 100644 index d729ddb..0000000 --- a/public/hse/assets/bootstrap/clipboard2.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/clock-fill.svg b/public/hse/assets/bootstrap/clock-fill.svg deleted file mode 100644 index 189dec1..0000000 --- a/public/hse/assets/bootstrap/clock-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/clock-history.svg b/public/hse/assets/bootstrap/clock-history.svg deleted file mode 100644 index 414b526..0000000 --- a/public/hse/assets/bootstrap/clock-history.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/clock.svg b/public/hse/assets/bootstrap/clock.svg deleted file mode 100644 index 72f2939..0000000 --- a/public/hse/assets/bootstrap/clock.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-arrow-down-fill.svg b/public/hse/assets/bootstrap/cloud-arrow-down-fill.svg deleted file mode 100644 index 6e18ca9..0000000 --- a/public/hse/assets/bootstrap/cloud-arrow-down-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-arrow-down.svg b/public/hse/assets/bootstrap/cloud-arrow-down.svg deleted file mode 100644 index cb8e33a..0000000 --- a/public/hse/assets/bootstrap/cloud-arrow-down.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-arrow-up-fill.svg b/public/hse/assets/bootstrap/cloud-arrow-up-fill.svg deleted file mode 100644 index 89d72fb..0000000 --- a/public/hse/assets/bootstrap/cloud-arrow-up-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-arrow-up.svg b/public/hse/assets/bootstrap/cloud-arrow-up.svg deleted file mode 100644 index 6f69abc..0000000 --- a/public/hse/assets/bootstrap/cloud-arrow-up.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-check-fill.svg b/public/hse/assets/bootstrap/cloud-check-fill.svg deleted file mode 100644 index 81f28b5..0000000 --- a/public/hse/assets/bootstrap/cloud-check-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-check.svg b/public/hse/assets/bootstrap/cloud-check.svg deleted file mode 100644 index 917d5c2..0000000 --- a/public/hse/assets/bootstrap/cloud-check.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-download-fill.svg b/public/hse/assets/bootstrap/cloud-download-fill.svg deleted file mode 100644 index 53c4242..0000000 --- a/public/hse/assets/bootstrap/cloud-download-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-download.svg b/public/hse/assets/bootstrap/cloud-download.svg deleted file mode 100644 index c6b3fe3..0000000 --- a/public/hse/assets/bootstrap/cloud-download.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-drizzle-fill.svg b/public/hse/assets/bootstrap/cloud-drizzle-fill.svg deleted file mode 100644 index 996aec4..0000000 --- a/public/hse/assets/bootstrap/cloud-drizzle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-drizzle.svg b/public/hse/assets/bootstrap/cloud-drizzle.svg deleted file mode 100644 index bb1e68b..0000000 --- a/public/hse/assets/bootstrap/cloud-drizzle.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-fill.svg b/public/hse/assets/bootstrap/cloud-fill.svg deleted file mode 100644 index 23755bd..0000000 --- a/public/hse/assets/bootstrap/cloud-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-fog-fill.svg b/public/hse/assets/bootstrap/cloud-fog-fill.svg deleted file mode 100644 index 07f10f4..0000000 --- a/public/hse/assets/bootstrap/cloud-fog-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-fog.svg b/public/hse/assets/bootstrap/cloud-fog.svg deleted file mode 100644 index b40c983..0000000 --- a/public/hse/assets/bootstrap/cloud-fog.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-fog2-fill.svg b/public/hse/assets/bootstrap/cloud-fog2-fill.svg deleted file mode 100644 index 1d49851..0000000 --- a/public/hse/assets/bootstrap/cloud-fog2-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-fog2.svg b/public/hse/assets/bootstrap/cloud-fog2.svg deleted file mode 100644 index 1bd3c25..0000000 --- a/public/hse/assets/bootstrap/cloud-fog2.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-hail-fill.svg b/public/hse/assets/bootstrap/cloud-hail-fill.svg deleted file mode 100644 index d8a096b..0000000 --- a/public/hse/assets/bootstrap/cloud-hail-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-hail.svg b/public/hse/assets/bootstrap/cloud-hail.svg deleted file mode 100644 index 2f9bec1..0000000 --- a/public/hse/assets/bootstrap/cloud-hail.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-haze-fill.svg b/public/hse/assets/bootstrap/cloud-haze-fill.svg deleted file mode 100644 index 002fc26..0000000 --- a/public/hse/assets/bootstrap/cloud-haze-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-haze.svg b/public/hse/assets/bootstrap/cloud-haze.svg deleted file mode 100644 index 513e346..0000000 --- a/public/hse/assets/bootstrap/cloud-haze.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-haze2-fill.svg b/public/hse/assets/bootstrap/cloud-haze2-fill.svg deleted file mode 100644 index e9b7bda..0000000 --- a/public/hse/assets/bootstrap/cloud-haze2-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-haze2.svg b/public/hse/assets/bootstrap/cloud-haze2.svg deleted file mode 100644 index c213dfb..0000000 --- a/public/hse/assets/bootstrap/cloud-haze2.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-lightning-fill.svg b/public/hse/assets/bootstrap/cloud-lightning-fill.svg deleted file mode 100644 index 1d30904..0000000 --- a/public/hse/assets/bootstrap/cloud-lightning-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-lightning-rain-fill.svg b/public/hse/assets/bootstrap/cloud-lightning-rain-fill.svg deleted file mode 100644 index 2b6d4a1..0000000 --- a/public/hse/assets/bootstrap/cloud-lightning-rain-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-lightning-rain.svg b/public/hse/assets/bootstrap/cloud-lightning-rain.svg deleted file mode 100644 index 31badb3..0000000 --- a/public/hse/assets/bootstrap/cloud-lightning-rain.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-lightning.svg b/public/hse/assets/bootstrap/cloud-lightning.svg deleted file mode 100644 index 5a8bafd..0000000 --- a/public/hse/assets/bootstrap/cloud-lightning.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-minus-fill.svg b/public/hse/assets/bootstrap/cloud-minus-fill.svg deleted file mode 100644 index 753727f..0000000 --- a/public/hse/assets/bootstrap/cloud-minus-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-minus.svg b/public/hse/assets/bootstrap/cloud-minus.svg deleted file mode 100644 index a4ab6f9..0000000 --- a/public/hse/assets/bootstrap/cloud-minus.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-moon-fill.svg b/public/hse/assets/bootstrap/cloud-moon-fill.svg deleted file mode 100644 index d968faf..0000000 --- a/public/hse/assets/bootstrap/cloud-moon-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-moon.svg b/public/hse/assets/bootstrap/cloud-moon.svg deleted file mode 100644 index 1089204..0000000 --- a/public/hse/assets/bootstrap/cloud-moon.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-plus-fill.svg b/public/hse/assets/bootstrap/cloud-plus-fill.svg deleted file mode 100644 index 92620aa..0000000 --- a/public/hse/assets/bootstrap/cloud-plus-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-plus.svg b/public/hse/assets/bootstrap/cloud-plus.svg deleted file mode 100644 index 4ef51f2..0000000 --- a/public/hse/assets/bootstrap/cloud-plus.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-rain-fill.svg b/public/hse/assets/bootstrap/cloud-rain-fill.svg deleted file mode 100644 index 94cddba..0000000 --- a/public/hse/assets/bootstrap/cloud-rain-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-rain-heavy-fill.svg b/public/hse/assets/bootstrap/cloud-rain-heavy-fill.svg deleted file mode 100644 index 167c8af..0000000 --- a/public/hse/assets/bootstrap/cloud-rain-heavy-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-rain-heavy.svg b/public/hse/assets/bootstrap/cloud-rain-heavy.svg deleted file mode 100644 index a5c41e5..0000000 --- a/public/hse/assets/bootstrap/cloud-rain-heavy.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-rain.svg b/public/hse/assets/bootstrap/cloud-rain.svg deleted file mode 100644 index eb40032..0000000 --- a/public/hse/assets/bootstrap/cloud-rain.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-slash-fill.svg b/public/hse/assets/bootstrap/cloud-slash-fill.svg deleted file mode 100644 index a4b8bad..0000000 --- a/public/hse/assets/bootstrap/cloud-slash-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-slash.svg b/public/hse/assets/bootstrap/cloud-slash.svg deleted file mode 100644 index fe89178..0000000 --- a/public/hse/assets/bootstrap/cloud-slash.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-sleet-fill.svg b/public/hse/assets/bootstrap/cloud-sleet-fill.svg deleted file mode 100644 index 73764dc..0000000 --- a/public/hse/assets/bootstrap/cloud-sleet-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-sleet.svg b/public/hse/assets/bootstrap/cloud-sleet.svg deleted file mode 100644 index d3c8f2e..0000000 --- a/public/hse/assets/bootstrap/cloud-sleet.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-snow-fill.svg b/public/hse/assets/bootstrap/cloud-snow-fill.svg deleted file mode 100644 index 0ffc577..0000000 --- a/public/hse/assets/bootstrap/cloud-snow-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-snow.svg b/public/hse/assets/bootstrap/cloud-snow.svg deleted file mode 100644 index b1643fb..0000000 --- a/public/hse/assets/bootstrap/cloud-snow.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-sun-fill.svg b/public/hse/assets/bootstrap/cloud-sun-fill.svg deleted file mode 100644 index 9ecf7de..0000000 --- a/public/hse/assets/bootstrap/cloud-sun-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-sun.svg b/public/hse/assets/bootstrap/cloud-sun.svg deleted file mode 100644 index 76ebc49..0000000 --- a/public/hse/assets/bootstrap/cloud-sun.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-upload-fill.svg b/public/hse/assets/bootstrap/cloud-upload-fill.svg deleted file mode 100644 index 766015d..0000000 --- a/public/hse/assets/bootstrap/cloud-upload-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud-upload.svg b/public/hse/assets/bootstrap/cloud-upload.svg deleted file mode 100644 index 6184b72..0000000 --- a/public/hse/assets/bootstrap/cloud-upload.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloud.svg b/public/hse/assets/bootstrap/cloud.svg deleted file mode 100644 index 7b0b9b3..0000000 --- a/public/hse/assets/bootstrap/cloud.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/clouds-fill.svg b/public/hse/assets/bootstrap/clouds-fill.svg deleted file mode 100644 index fe7fc07..0000000 --- a/public/hse/assets/bootstrap/clouds-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/clouds.svg b/public/hse/assets/bootstrap/clouds.svg deleted file mode 100644 index c9a5ba0..0000000 --- a/public/hse/assets/bootstrap/clouds.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloudy-fill.svg b/public/hse/assets/bootstrap/cloudy-fill.svg deleted file mode 100644 index 3e90f9e..0000000 --- a/public/hse/assets/bootstrap/cloudy-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cloudy.svg b/public/hse/assets/bootstrap/cloudy.svg deleted file mode 100644 index 0783bca..0000000 --- a/public/hse/assets/bootstrap/cloudy.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/code-slash.svg b/public/hse/assets/bootstrap/code-slash.svg deleted file mode 100644 index ef0ef01..0000000 --- a/public/hse/assets/bootstrap/code-slash.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/code-square.svg b/public/hse/assets/bootstrap/code-square.svg deleted file mode 100644 index 415b56c..0000000 --- a/public/hse/assets/bootstrap/code-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/code.svg b/public/hse/assets/bootstrap/code.svg deleted file mode 100644 index 079f5c6..0000000 --- a/public/hse/assets/bootstrap/code.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/coin.svg b/public/hse/assets/bootstrap/coin.svg deleted file mode 100644 index 045d428..0000000 --- a/public/hse/assets/bootstrap/coin.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/collection-fill.svg b/public/hse/assets/bootstrap/collection-fill.svg deleted file mode 100644 index fee7f54..0000000 --- a/public/hse/assets/bootstrap/collection-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/collection-play-fill.svg b/public/hse/assets/bootstrap/collection-play-fill.svg deleted file mode 100644 index 2601e48..0000000 --- a/public/hse/assets/bootstrap/collection-play-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/collection-play.svg b/public/hse/assets/bootstrap/collection-play.svg deleted file mode 100644 index 96b5c6e..0000000 --- a/public/hse/assets/bootstrap/collection-play.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/collection.svg b/public/hse/assets/bootstrap/collection.svg deleted file mode 100644 index 0870f5a..0000000 --- a/public/hse/assets/bootstrap/collection.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/columns-gap.svg b/public/hse/assets/bootstrap/columns-gap.svg deleted file mode 100644 index b3cb175..0000000 --- a/public/hse/assets/bootstrap/columns-gap.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/columns.svg b/public/hse/assets/bootstrap/columns.svg deleted file mode 100644 index d785491..0000000 --- a/public/hse/assets/bootstrap/columns.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/command.svg b/public/hse/assets/bootstrap/command.svg deleted file mode 100644 index d162254..0000000 --- a/public/hse/assets/bootstrap/command.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/compass-fill.svg b/public/hse/assets/bootstrap/compass-fill.svg deleted file mode 100644 index ad821c4..0000000 --- a/public/hse/assets/bootstrap/compass-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/compass.svg b/public/hse/assets/bootstrap/compass.svg deleted file mode 100644 index 8649461..0000000 --- a/public/hse/assets/bootstrap/compass.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cone-striped.svg b/public/hse/assets/bootstrap/cone-striped.svg deleted file mode 100644 index 44e9606..0000000 --- a/public/hse/assets/bootstrap/cone-striped.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cone.svg b/public/hse/assets/bootstrap/cone.svg deleted file mode 100644 index 2de05c5..0000000 --- a/public/hse/assets/bootstrap/cone.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/controller.svg b/public/hse/assets/bootstrap/controller.svg deleted file mode 100644 index 15e7774..0000000 --- a/public/hse/assets/bootstrap/controller.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cpu-fill.svg b/public/hse/assets/bootstrap/cpu-fill.svg deleted file mode 100644 index 50d0a07..0000000 --- a/public/hse/assets/bootstrap/cpu-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cpu.svg b/public/hse/assets/bootstrap/cpu.svg deleted file mode 100644 index a9fbaa3..0000000 --- a/public/hse/assets/bootstrap/cpu.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/credit-card-2-back-fill.svg b/public/hse/assets/bootstrap/credit-card-2-back-fill.svg deleted file mode 100644 index c80bb6c..0000000 --- a/public/hse/assets/bootstrap/credit-card-2-back-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/credit-card-2-back.svg b/public/hse/assets/bootstrap/credit-card-2-back.svg deleted file mode 100644 index e99159c..0000000 --- a/public/hse/assets/bootstrap/credit-card-2-back.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/credit-card-2-front-fill.svg b/public/hse/assets/bootstrap/credit-card-2-front-fill.svg deleted file mode 100644 index c082ef0..0000000 --- a/public/hse/assets/bootstrap/credit-card-2-front-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/credit-card-2-front.svg b/public/hse/assets/bootstrap/credit-card-2-front.svg deleted file mode 100644 index 95b071d..0000000 --- a/public/hse/assets/bootstrap/credit-card-2-front.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/credit-card-fill.svg b/public/hse/assets/bootstrap/credit-card-fill.svg deleted file mode 100644 index d0686a8..0000000 --- a/public/hse/assets/bootstrap/credit-card-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/credit-card.svg b/public/hse/assets/bootstrap/credit-card.svg deleted file mode 100644 index f716d39..0000000 --- a/public/hse/assets/bootstrap/credit-card.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/crop.svg b/public/hse/assets/bootstrap/crop.svg deleted file mode 100644 index b7e1749..0000000 --- a/public/hse/assets/bootstrap/crop.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cup-fill.svg b/public/hse/assets/bootstrap/cup-fill.svg deleted file mode 100644 index c811935..0000000 --- a/public/hse/assets/bootstrap/cup-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cup-hot-fill.svg b/public/hse/assets/bootstrap/cup-hot-fill.svg deleted file mode 100644 index f512ae0..0000000 --- a/public/hse/assets/bootstrap/cup-hot-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cup-hot.svg b/public/hse/assets/bootstrap/cup-hot.svg deleted file mode 100644 index 789f1ea..0000000 --- a/public/hse/assets/bootstrap/cup-hot.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cup-straw.svg b/public/hse/assets/bootstrap/cup-straw.svg deleted file mode 100644 index bda9d07..0000000 --- a/public/hse/assets/bootstrap/cup-straw.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cup.svg b/public/hse/assets/bootstrap/cup.svg deleted file mode 100644 index 490fe09..0000000 --- a/public/hse/assets/bootstrap/cup.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/currency-bitcoin.svg b/public/hse/assets/bootstrap/currency-bitcoin.svg deleted file mode 100644 index 488adca..0000000 --- a/public/hse/assets/bootstrap/currency-bitcoin.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/currency-dollar.svg b/public/hse/assets/bootstrap/currency-dollar.svg deleted file mode 100644 index 572e34c..0000000 --- a/public/hse/assets/bootstrap/currency-dollar.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/currency-euro.svg b/public/hse/assets/bootstrap/currency-euro.svg deleted file mode 100644 index 1fcaa7c..0000000 --- a/public/hse/assets/bootstrap/currency-euro.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/currency-exchange.svg b/public/hse/assets/bootstrap/currency-exchange.svg deleted file mode 100644 index 1e3eaf3..0000000 --- a/public/hse/assets/bootstrap/currency-exchange.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/currency-pound.svg b/public/hse/assets/bootstrap/currency-pound.svg deleted file mode 100644 index 60dbd58..0000000 --- a/public/hse/assets/bootstrap/currency-pound.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/currency-rupee.svg b/public/hse/assets/bootstrap/currency-rupee.svg deleted file mode 100644 index 843d0fa..0000000 --- a/public/hse/assets/bootstrap/currency-rupee.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/currency-yen.svg b/public/hse/assets/bootstrap/currency-yen.svg deleted file mode 100644 index 5bbf1a2..0000000 --- a/public/hse/assets/bootstrap/currency-yen.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cursor-fill.svg b/public/hse/assets/bootstrap/cursor-fill.svg deleted file mode 100644 index 093372b..0000000 --- a/public/hse/assets/bootstrap/cursor-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cursor-text.svg b/public/hse/assets/bootstrap/cursor-text.svg deleted file mode 100644 index 42a48fa..0000000 --- a/public/hse/assets/bootstrap/cursor-text.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/cursor.svg b/public/hse/assets/bootstrap/cursor.svg deleted file mode 100644 index 315106b..0000000 --- a/public/hse/assets/bootstrap/cursor.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/dash-circle-dotted.svg b/public/hse/assets/bootstrap/dash-circle-dotted.svg deleted file mode 100644 index 7e29372..0000000 --- a/public/hse/assets/bootstrap/dash-circle-dotted.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/dash-circle-fill.svg b/public/hse/assets/bootstrap/dash-circle-fill.svg deleted file mode 100644 index db27419..0000000 --- a/public/hse/assets/bootstrap/dash-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/dash-circle.svg b/public/hse/assets/bootstrap/dash-circle.svg deleted file mode 100644 index 17483d6..0000000 --- a/public/hse/assets/bootstrap/dash-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/dash-lg.svg b/public/hse/assets/bootstrap/dash-lg.svg deleted file mode 100644 index 0f4c5e9..0000000 --- a/public/hse/assets/bootstrap/dash-lg.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/dash-square-dotted.svg b/public/hse/assets/bootstrap/dash-square-dotted.svg deleted file mode 100644 index 15b8d4b..0000000 --- a/public/hse/assets/bootstrap/dash-square-dotted.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/dash-square-fill.svg b/public/hse/assets/bootstrap/dash-square-fill.svg deleted file mode 100644 index 85a95b2..0000000 --- a/public/hse/assets/bootstrap/dash-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/dash-square.svg b/public/hse/assets/bootstrap/dash-square.svg deleted file mode 100644 index b63e536..0000000 --- a/public/hse/assets/bootstrap/dash-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/dash.svg b/public/hse/assets/bootstrap/dash.svg deleted file mode 100644 index 4ac4288..0000000 --- a/public/hse/assets/bootstrap/dash.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/database-add.svg b/public/hse/assets/bootstrap/database-add.svg deleted file mode 100644 index 8b9e0cc..0000000 --- a/public/hse/assets/bootstrap/database-add.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/database-check.svg b/public/hse/assets/bootstrap/database-check.svg deleted file mode 100644 index f193084..0000000 --- a/public/hse/assets/bootstrap/database-check.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/database-dash.svg b/public/hse/assets/bootstrap/database-dash.svg deleted file mode 100644 index 1bcb011..0000000 --- a/public/hse/assets/bootstrap/database-dash.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/database-down.svg b/public/hse/assets/bootstrap/database-down.svg deleted file mode 100644 index 49dfd2e..0000000 --- a/public/hse/assets/bootstrap/database-down.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/database-exclamation.svg b/public/hse/assets/bootstrap/database-exclamation.svg deleted file mode 100644 index 178b61a..0000000 --- a/public/hse/assets/bootstrap/database-exclamation.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/database-fill-add.svg b/public/hse/assets/bootstrap/database-fill-add.svg deleted file mode 100644 index 993b4df..0000000 --- a/public/hse/assets/bootstrap/database-fill-add.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/database-fill-check.svg b/public/hse/assets/bootstrap/database-fill-check.svg deleted file mode 100644 index 579da2e..0000000 --- a/public/hse/assets/bootstrap/database-fill-check.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/database-fill-dash.svg b/public/hse/assets/bootstrap/database-fill-dash.svg deleted file mode 100644 index ce9c8c7..0000000 --- a/public/hse/assets/bootstrap/database-fill-dash.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/database-fill-down.svg b/public/hse/assets/bootstrap/database-fill-down.svg deleted file mode 100644 index 433b9ad..0000000 --- a/public/hse/assets/bootstrap/database-fill-down.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/database-fill-exclamation.svg b/public/hse/assets/bootstrap/database-fill-exclamation.svg deleted file mode 100644 index f935d0b..0000000 --- a/public/hse/assets/bootstrap/database-fill-exclamation.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/database-fill-gear.svg b/public/hse/assets/bootstrap/database-fill-gear.svg deleted file mode 100644 index 1501670..0000000 --- a/public/hse/assets/bootstrap/database-fill-gear.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/database-fill-lock.svg b/public/hse/assets/bootstrap/database-fill-lock.svg deleted file mode 100644 index 27dce6d..0000000 --- a/public/hse/assets/bootstrap/database-fill-lock.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/database-fill-slash.svg b/public/hse/assets/bootstrap/database-fill-slash.svg deleted file mode 100644 index 8ccdf44..0000000 --- a/public/hse/assets/bootstrap/database-fill-slash.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/database-fill-up.svg b/public/hse/assets/bootstrap/database-fill-up.svg deleted file mode 100644 index 6f767b5..0000000 --- a/public/hse/assets/bootstrap/database-fill-up.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/database-fill-x.svg b/public/hse/assets/bootstrap/database-fill-x.svg deleted file mode 100644 index 1f65f61..0000000 --- a/public/hse/assets/bootstrap/database-fill-x.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/database-fill.svg b/public/hse/assets/bootstrap/database-fill.svg deleted file mode 100644 index 2c7e04c..0000000 --- a/public/hse/assets/bootstrap/database-fill.svg +++ /dev/null @@ -1,6 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/database-gear.svg b/public/hse/assets/bootstrap/database-gear.svg deleted file mode 100644 index 77a5855..0000000 --- a/public/hse/assets/bootstrap/database-gear.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/database-lock.svg b/public/hse/assets/bootstrap/database-lock.svg deleted file mode 100644 index ad5a8f9..0000000 --- a/public/hse/assets/bootstrap/database-lock.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/database-slash.svg b/public/hse/assets/bootstrap/database-slash.svg deleted file mode 100644 index d1f6a97..0000000 --- a/public/hse/assets/bootstrap/database-slash.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/database-up.svg b/public/hse/assets/bootstrap/database-up.svg deleted file mode 100644 index cfb75ed..0000000 --- a/public/hse/assets/bootstrap/database-up.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/database-x.svg b/public/hse/assets/bootstrap/database-x.svg deleted file mode 100644 index 314a6fd..0000000 --- a/public/hse/assets/bootstrap/database-x.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/database.svg b/public/hse/assets/bootstrap/database.svg deleted file mode 100644 index 45e4eb8..0000000 --- a/public/hse/assets/bootstrap/database.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/device-hdd-fill.svg b/public/hse/assets/bootstrap/device-hdd-fill.svg deleted file mode 100644 index 5b5ae29..0000000 --- a/public/hse/assets/bootstrap/device-hdd-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/device-hdd.svg b/public/hse/assets/bootstrap/device-hdd.svg deleted file mode 100644 index 960e609..0000000 --- a/public/hse/assets/bootstrap/device-hdd.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/device-ssd-fill.svg b/public/hse/assets/bootstrap/device-ssd-fill.svg deleted file mode 100644 index 9ba5802..0000000 --- a/public/hse/assets/bootstrap/device-ssd-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/device-ssd.svg b/public/hse/assets/bootstrap/device-ssd.svg deleted file mode 100644 index 0dd8ae5..0000000 --- a/public/hse/assets/bootstrap/device-ssd.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/diagram-2-fill.svg b/public/hse/assets/bootstrap/diagram-2-fill.svg deleted file mode 100644 index b46a212..0000000 --- a/public/hse/assets/bootstrap/diagram-2-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/diagram-2.svg b/public/hse/assets/bootstrap/diagram-2.svg deleted file mode 100644 index 2b330e5..0000000 --- a/public/hse/assets/bootstrap/diagram-2.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/diagram-3-fill.svg b/public/hse/assets/bootstrap/diagram-3-fill.svg deleted file mode 100644 index 6cc31c0..0000000 --- a/public/hse/assets/bootstrap/diagram-3-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/diagram-3.svg b/public/hse/assets/bootstrap/diagram-3.svg deleted file mode 100644 index 464b051..0000000 --- a/public/hse/assets/bootstrap/diagram-3.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/diamond-fill.svg b/public/hse/assets/bootstrap/diamond-fill.svg deleted file mode 100644 index e6e3151..0000000 --- a/public/hse/assets/bootstrap/diamond-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/diamond-half.svg b/public/hse/assets/bootstrap/diamond-half.svg deleted file mode 100644 index 4e13791..0000000 --- a/public/hse/assets/bootstrap/diamond-half.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/diamond.svg b/public/hse/assets/bootstrap/diamond.svg deleted file mode 100644 index 4cddafa..0000000 --- a/public/hse/assets/bootstrap/diamond.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/dice-1-fill.svg b/public/hse/assets/bootstrap/dice-1-fill.svg deleted file mode 100644 index 0b20aa0..0000000 --- a/public/hse/assets/bootstrap/dice-1-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/dice-1.svg b/public/hse/assets/bootstrap/dice-1.svg deleted file mode 100644 index 97c2432..0000000 --- a/public/hse/assets/bootstrap/dice-1.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/dice-2-fill.svg b/public/hse/assets/bootstrap/dice-2-fill.svg deleted file mode 100644 index f55f921..0000000 --- a/public/hse/assets/bootstrap/dice-2-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/dice-2.svg b/public/hse/assets/bootstrap/dice-2.svg deleted file mode 100644 index 38013a8..0000000 --- a/public/hse/assets/bootstrap/dice-2.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/dice-3-fill.svg b/public/hse/assets/bootstrap/dice-3-fill.svg deleted file mode 100644 index ae5a1ba..0000000 --- a/public/hse/assets/bootstrap/dice-3-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/dice-3.svg b/public/hse/assets/bootstrap/dice-3.svg deleted file mode 100644 index 705b7e7..0000000 --- a/public/hse/assets/bootstrap/dice-3.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/dice-4-fill.svg b/public/hse/assets/bootstrap/dice-4-fill.svg deleted file mode 100644 index 6dad92b..0000000 --- a/public/hse/assets/bootstrap/dice-4-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/dice-4.svg b/public/hse/assets/bootstrap/dice-4.svg deleted file mode 100644 index 070f981..0000000 --- a/public/hse/assets/bootstrap/dice-4.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/dice-5-fill.svg b/public/hse/assets/bootstrap/dice-5-fill.svg deleted file mode 100644 index a92382b..0000000 --- a/public/hse/assets/bootstrap/dice-5-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/dice-5.svg b/public/hse/assets/bootstrap/dice-5.svg deleted file mode 100644 index b4369c7..0000000 --- a/public/hse/assets/bootstrap/dice-5.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/dice-6-fill.svg b/public/hse/assets/bootstrap/dice-6-fill.svg deleted file mode 100644 index fce8cb4..0000000 --- a/public/hse/assets/bootstrap/dice-6-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/dice-6.svg b/public/hse/assets/bootstrap/dice-6.svg deleted file mode 100644 index 44d25dc..0000000 --- a/public/hse/assets/bootstrap/dice-6.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/disc-fill.svg b/public/hse/assets/bootstrap/disc-fill.svg deleted file mode 100644 index b03f34d..0000000 --- a/public/hse/assets/bootstrap/disc-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/disc.svg b/public/hse/assets/bootstrap/disc.svg deleted file mode 100644 index f3475a2..0000000 --- a/public/hse/assets/bootstrap/disc.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/discord.svg b/public/hse/assets/bootstrap/discord.svg deleted file mode 100644 index 877cfdf..0000000 --- a/public/hse/assets/bootstrap/discord.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/display-fill.svg b/public/hse/assets/bootstrap/display-fill.svg deleted file mode 100644 index f7c3fca..0000000 --- a/public/hse/assets/bootstrap/display-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/display.svg b/public/hse/assets/bootstrap/display.svg deleted file mode 100644 index 700d780..0000000 --- a/public/hse/assets/bootstrap/display.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/displayport-fill.svg b/public/hse/assets/bootstrap/displayport-fill.svg deleted file mode 100644 index 17fe771..0000000 --- a/public/hse/assets/bootstrap/displayport-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/displayport.svg b/public/hse/assets/bootstrap/displayport.svg deleted file mode 100644 index 3e5748a..0000000 --- a/public/hse/assets/bootstrap/displayport.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/distribute-horizontal.svg b/public/hse/assets/bootstrap/distribute-horizontal.svg deleted file mode 100644 index fe90ff8..0000000 --- a/public/hse/assets/bootstrap/distribute-horizontal.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/distribute-vertical.svg b/public/hse/assets/bootstrap/distribute-vertical.svg deleted file mode 100644 index 234b2c2..0000000 --- a/public/hse/assets/bootstrap/distribute-vertical.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/door-closed-fill.svg b/public/hse/assets/bootstrap/door-closed-fill.svg deleted file mode 100644 index 1d2a036..0000000 --- a/public/hse/assets/bootstrap/door-closed-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/door-closed.svg b/public/hse/assets/bootstrap/door-closed.svg deleted file mode 100644 index 3eab448..0000000 --- a/public/hse/assets/bootstrap/door-closed.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/door-open-fill.svg b/public/hse/assets/bootstrap/door-open-fill.svg deleted file mode 100644 index d4833a3..0000000 --- a/public/hse/assets/bootstrap/door-open-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/door-open.svg b/public/hse/assets/bootstrap/door-open.svg deleted file mode 100644 index d9638a3..0000000 --- a/public/hse/assets/bootstrap/door-open.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/dot.svg b/public/hse/assets/bootstrap/dot.svg deleted file mode 100644 index 183e4a8..0000000 --- a/public/hse/assets/bootstrap/dot.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/download.svg b/public/hse/assets/bootstrap/download.svg deleted file mode 100644 index 80a5817..0000000 --- a/public/hse/assets/bootstrap/download.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/dpad-fill.svg b/public/hse/assets/bootstrap/dpad-fill.svg deleted file mode 100644 index ea54468..0000000 --- a/public/hse/assets/bootstrap/dpad-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/dpad.svg b/public/hse/assets/bootstrap/dpad.svg deleted file mode 100644 index 9363c90..0000000 --- a/public/hse/assets/bootstrap/dpad.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/dribbble.svg b/public/hse/assets/bootstrap/dribbble.svg deleted file mode 100644 index 809f2d3..0000000 --- a/public/hse/assets/bootstrap/dribbble.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/dropbox.svg b/public/hse/assets/bootstrap/dropbox.svg deleted file mode 100644 index 6431141..0000000 --- a/public/hse/assets/bootstrap/dropbox.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/droplet-fill.svg b/public/hse/assets/bootstrap/droplet-fill.svg deleted file mode 100644 index a240876..0000000 --- a/public/hse/assets/bootstrap/droplet-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/droplet-half.svg b/public/hse/assets/bootstrap/droplet-half.svg deleted file mode 100644 index 43eb208..0000000 --- a/public/hse/assets/bootstrap/droplet-half.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/droplet.svg b/public/hse/assets/bootstrap/droplet.svg deleted file mode 100644 index 2b405d6..0000000 --- a/public/hse/assets/bootstrap/droplet.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/ear-fill.svg b/public/hse/assets/bootstrap/ear-fill.svg deleted file mode 100644 index 8e564c0..0000000 --- a/public/hse/assets/bootstrap/ear-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/ear.svg b/public/hse/assets/bootstrap/ear.svg deleted file mode 100644 index 8c8b869..0000000 --- a/public/hse/assets/bootstrap/ear.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/earbuds.svg b/public/hse/assets/bootstrap/earbuds.svg deleted file mode 100644 index 7bc0019..0000000 --- a/public/hse/assets/bootstrap/earbuds.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/easel-fill.svg b/public/hse/assets/bootstrap/easel-fill.svg deleted file mode 100644 index db00798..0000000 --- a/public/hse/assets/bootstrap/easel-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/easel.svg b/public/hse/assets/bootstrap/easel.svg deleted file mode 100644 index f95976e..0000000 --- a/public/hse/assets/bootstrap/easel.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/easel2-fill.svg b/public/hse/assets/bootstrap/easel2-fill.svg deleted file mode 100644 index c393242..0000000 --- a/public/hse/assets/bootstrap/easel2-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/easel2.svg b/public/hse/assets/bootstrap/easel2.svg deleted file mode 100644 index d1736de..0000000 --- a/public/hse/assets/bootstrap/easel2.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/easel3-fill.svg b/public/hse/assets/bootstrap/easel3-fill.svg deleted file mode 100644 index 2e57223..0000000 --- a/public/hse/assets/bootstrap/easel3-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/easel3.svg b/public/hse/assets/bootstrap/easel3.svg deleted file mode 100644 index a39ad3d..0000000 --- a/public/hse/assets/bootstrap/easel3.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/egg-fill.svg b/public/hse/assets/bootstrap/egg-fill.svg deleted file mode 100644 index 33b7d44..0000000 --- a/public/hse/assets/bootstrap/egg-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/egg-fried.svg b/public/hse/assets/bootstrap/egg-fried.svg deleted file mode 100644 index b99cac3..0000000 --- a/public/hse/assets/bootstrap/egg-fried.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/egg.svg b/public/hse/assets/bootstrap/egg.svg deleted file mode 100644 index 9fb5c1e..0000000 --- a/public/hse/assets/bootstrap/egg.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/eject-fill.svg b/public/hse/assets/bootstrap/eject-fill.svg deleted file mode 100644 index 3255af6..0000000 --- a/public/hse/assets/bootstrap/eject-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/eject.svg b/public/hse/assets/bootstrap/eject.svg deleted file mode 100644 index 540cbc8..0000000 --- a/public/hse/assets/bootstrap/eject.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/emoji-angry-fill.svg b/public/hse/assets/bootstrap/emoji-angry-fill.svg deleted file mode 100644 index 1bf7eb6..0000000 --- a/public/hse/assets/bootstrap/emoji-angry-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/emoji-angry.svg b/public/hse/assets/bootstrap/emoji-angry.svg deleted file mode 100644 index d6d8914..0000000 --- a/public/hse/assets/bootstrap/emoji-angry.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/emoji-dizzy-fill.svg b/public/hse/assets/bootstrap/emoji-dizzy-fill.svg deleted file mode 100644 index d801800..0000000 --- a/public/hse/assets/bootstrap/emoji-dizzy-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/emoji-dizzy.svg b/public/hse/assets/bootstrap/emoji-dizzy.svg deleted file mode 100644 index f64fade..0000000 --- a/public/hse/assets/bootstrap/emoji-dizzy.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/emoji-expressionless-fill.svg b/public/hse/assets/bootstrap/emoji-expressionless-fill.svg deleted file mode 100644 index f70140a..0000000 --- a/public/hse/assets/bootstrap/emoji-expressionless-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/emoji-expressionless.svg b/public/hse/assets/bootstrap/emoji-expressionless.svg deleted file mode 100644 index 208a72d..0000000 --- a/public/hse/assets/bootstrap/emoji-expressionless.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/emoji-frown-fill.svg b/public/hse/assets/bootstrap/emoji-frown-fill.svg deleted file mode 100644 index c8a9ddc..0000000 --- a/public/hse/assets/bootstrap/emoji-frown-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/emoji-frown.svg b/public/hse/assets/bootstrap/emoji-frown.svg deleted file mode 100644 index b7766eb..0000000 --- a/public/hse/assets/bootstrap/emoji-frown.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/emoji-heart-eyes-fill.svg b/public/hse/assets/bootstrap/emoji-heart-eyes-fill.svg deleted file mode 100644 index cc91552..0000000 --- a/public/hse/assets/bootstrap/emoji-heart-eyes-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/emoji-heart-eyes.svg b/public/hse/assets/bootstrap/emoji-heart-eyes.svg deleted file mode 100644 index c19ec51..0000000 --- a/public/hse/assets/bootstrap/emoji-heart-eyes.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/emoji-kiss-fill.svg b/public/hse/assets/bootstrap/emoji-kiss-fill.svg deleted file mode 100644 index ab46245..0000000 --- a/public/hse/assets/bootstrap/emoji-kiss-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/emoji-kiss.svg b/public/hse/assets/bootstrap/emoji-kiss.svg deleted file mode 100644 index 4646628..0000000 --- a/public/hse/assets/bootstrap/emoji-kiss.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/emoji-laughing-fill.svg b/public/hse/assets/bootstrap/emoji-laughing-fill.svg deleted file mode 100644 index cc8c69b..0000000 --- a/public/hse/assets/bootstrap/emoji-laughing-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/emoji-laughing.svg b/public/hse/assets/bootstrap/emoji-laughing.svg deleted file mode 100644 index 68d9b25..0000000 --- a/public/hse/assets/bootstrap/emoji-laughing.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/emoji-neutral-fill.svg b/public/hse/assets/bootstrap/emoji-neutral-fill.svg deleted file mode 100644 index 58bcb6b..0000000 --- a/public/hse/assets/bootstrap/emoji-neutral-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/emoji-neutral.svg b/public/hse/assets/bootstrap/emoji-neutral.svg deleted file mode 100644 index 2f3204a..0000000 --- a/public/hse/assets/bootstrap/emoji-neutral.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/emoji-smile-fill.svg b/public/hse/assets/bootstrap/emoji-smile-fill.svg deleted file mode 100644 index 76a6a16..0000000 --- a/public/hse/assets/bootstrap/emoji-smile-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/emoji-smile-upside-down-fill.svg b/public/hse/assets/bootstrap/emoji-smile-upside-down-fill.svg deleted file mode 100644 index c682933..0000000 --- a/public/hse/assets/bootstrap/emoji-smile-upside-down-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/emoji-smile-upside-down.svg b/public/hse/assets/bootstrap/emoji-smile-upside-down.svg deleted file mode 100644 index 1e18424..0000000 --- a/public/hse/assets/bootstrap/emoji-smile-upside-down.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/emoji-smile.svg b/public/hse/assets/bootstrap/emoji-smile.svg deleted file mode 100644 index d222a9a..0000000 --- a/public/hse/assets/bootstrap/emoji-smile.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/emoji-sunglasses-fill.svg b/public/hse/assets/bootstrap/emoji-sunglasses-fill.svg deleted file mode 100644 index 00e7bc0..0000000 --- a/public/hse/assets/bootstrap/emoji-sunglasses-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/emoji-sunglasses.svg b/public/hse/assets/bootstrap/emoji-sunglasses.svg deleted file mode 100644 index 4771e4d..0000000 --- a/public/hse/assets/bootstrap/emoji-sunglasses.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/emoji-wink-fill.svg b/public/hse/assets/bootstrap/emoji-wink-fill.svg deleted file mode 100644 index 8601a58..0000000 --- a/public/hse/assets/bootstrap/emoji-wink-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/emoji-wink.svg b/public/hse/assets/bootstrap/emoji-wink.svg deleted file mode 100644 index ee3b3d0..0000000 --- a/public/hse/assets/bootstrap/emoji-wink.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/envelope-at-fill.svg b/public/hse/assets/bootstrap/envelope-at-fill.svg deleted file mode 100644 index 7102a5b..0000000 --- a/public/hse/assets/bootstrap/envelope-at-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/envelope-at.svg b/public/hse/assets/bootstrap/envelope-at.svg deleted file mode 100644 index 46b9134..0000000 --- a/public/hse/assets/bootstrap/envelope-at.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/envelope-check-fill.svg b/public/hse/assets/bootstrap/envelope-check-fill.svg deleted file mode 100644 index ca06ad0..0000000 --- a/public/hse/assets/bootstrap/envelope-check-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/envelope-check.svg b/public/hse/assets/bootstrap/envelope-check.svg deleted file mode 100644 index 8a50181..0000000 --- a/public/hse/assets/bootstrap/envelope-check.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/envelope-dash-fill.svg b/public/hse/assets/bootstrap/envelope-dash-fill.svg deleted file mode 100644 index 7275d3d..0000000 --- a/public/hse/assets/bootstrap/envelope-dash-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/envelope-dash.svg b/public/hse/assets/bootstrap/envelope-dash.svg deleted file mode 100644 index 7ae3e5c..0000000 --- a/public/hse/assets/bootstrap/envelope-dash.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/envelope-exclamation-fill.svg b/public/hse/assets/bootstrap/envelope-exclamation-fill.svg deleted file mode 100644 index 4bc91d2..0000000 --- a/public/hse/assets/bootstrap/envelope-exclamation-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/envelope-exclamation.svg b/public/hse/assets/bootstrap/envelope-exclamation.svg deleted file mode 100644 index 936b777..0000000 --- a/public/hse/assets/bootstrap/envelope-exclamation.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/envelope-fill.svg b/public/hse/assets/bootstrap/envelope-fill.svg deleted file mode 100644 index 0b28c86..0000000 --- a/public/hse/assets/bootstrap/envelope-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/envelope-heart-fill.svg b/public/hse/assets/bootstrap/envelope-heart-fill.svg deleted file mode 100644 index 8ed9e02..0000000 --- a/public/hse/assets/bootstrap/envelope-heart-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/envelope-heart.svg b/public/hse/assets/bootstrap/envelope-heart.svg deleted file mode 100644 index b104999..0000000 --- a/public/hse/assets/bootstrap/envelope-heart.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/envelope-open-fill.svg b/public/hse/assets/bootstrap/envelope-open-fill.svg deleted file mode 100644 index 29d8fe7..0000000 --- a/public/hse/assets/bootstrap/envelope-open-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/envelope-open-heart-fill.svg b/public/hse/assets/bootstrap/envelope-open-heart-fill.svg deleted file mode 100644 index 478b85b..0000000 --- a/public/hse/assets/bootstrap/envelope-open-heart-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/envelope-open-heart.svg b/public/hse/assets/bootstrap/envelope-open-heart.svg deleted file mode 100644 index 7d324a2..0000000 --- a/public/hse/assets/bootstrap/envelope-open-heart.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/envelope-open.svg b/public/hse/assets/bootstrap/envelope-open.svg deleted file mode 100644 index 9a542d2..0000000 --- a/public/hse/assets/bootstrap/envelope-open.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/envelope-paper-fill.svg b/public/hse/assets/bootstrap/envelope-paper-fill.svg deleted file mode 100644 index 14f613e..0000000 --- a/public/hse/assets/bootstrap/envelope-paper-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/envelope-paper-heart-fill.svg b/public/hse/assets/bootstrap/envelope-paper-heart-fill.svg deleted file mode 100644 index e422acc..0000000 --- a/public/hse/assets/bootstrap/envelope-paper-heart-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/envelope-paper-heart.svg b/public/hse/assets/bootstrap/envelope-paper-heart.svg deleted file mode 100644 index 2d925ae..0000000 --- a/public/hse/assets/bootstrap/envelope-paper-heart.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/envelope-paper.svg b/public/hse/assets/bootstrap/envelope-paper.svg deleted file mode 100644 index a909c63..0000000 --- a/public/hse/assets/bootstrap/envelope-paper.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/envelope-plus-fill.svg b/public/hse/assets/bootstrap/envelope-plus-fill.svg deleted file mode 100644 index 96703c2..0000000 --- a/public/hse/assets/bootstrap/envelope-plus-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/envelope-plus.svg b/public/hse/assets/bootstrap/envelope-plus.svg deleted file mode 100644 index 0abb966..0000000 --- a/public/hse/assets/bootstrap/envelope-plus.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/envelope-slash-fill.svg b/public/hse/assets/bootstrap/envelope-slash-fill.svg deleted file mode 100644 index 09690e5..0000000 --- a/public/hse/assets/bootstrap/envelope-slash-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/envelope-slash.svg b/public/hse/assets/bootstrap/envelope-slash.svg deleted file mode 100644 index 35b3783..0000000 --- a/public/hse/assets/bootstrap/envelope-slash.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/envelope-x-fill.svg b/public/hse/assets/bootstrap/envelope-x-fill.svg deleted file mode 100644 index b8348b1..0000000 --- a/public/hse/assets/bootstrap/envelope-x-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/envelope-x.svg b/public/hse/assets/bootstrap/envelope-x.svg deleted file mode 100644 index cd78475..0000000 --- a/public/hse/assets/bootstrap/envelope-x.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/envelope.svg b/public/hse/assets/bootstrap/envelope.svg deleted file mode 100644 index 122fc35..0000000 --- a/public/hse/assets/bootstrap/envelope.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/eraser-fill.svg b/public/hse/assets/bootstrap/eraser-fill.svg deleted file mode 100644 index 10959b3..0000000 --- a/public/hse/assets/bootstrap/eraser-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/eraser.svg b/public/hse/assets/bootstrap/eraser.svg deleted file mode 100644 index e7060e5..0000000 --- a/public/hse/assets/bootstrap/eraser.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/escape.svg b/public/hse/assets/bootstrap/escape.svg deleted file mode 100644 index 112c87b..0000000 --- a/public/hse/assets/bootstrap/escape.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/ethernet.svg b/public/hse/assets/bootstrap/ethernet.svg deleted file mode 100644 index 9b97a3a..0000000 --- a/public/hse/assets/bootstrap/ethernet.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/ev-front-fill.svg b/public/hse/assets/bootstrap/ev-front-fill.svg deleted file mode 100644 index 6926f52..0000000 --- a/public/hse/assets/bootstrap/ev-front-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/ev-front.svg b/public/hse/assets/bootstrap/ev-front.svg deleted file mode 100644 index 2e0acc6..0000000 --- a/public/hse/assets/bootstrap/ev-front.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/ev-station-fill.svg b/public/hse/assets/bootstrap/ev-station-fill.svg deleted file mode 100644 index a30f613..0000000 --- a/public/hse/assets/bootstrap/ev-station-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/ev-station.svg b/public/hse/assets/bootstrap/ev-station.svg deleted file mode 100644 index faec20c..0000000 --- a/public/hse/assets/bootstrap/ev-station.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/exclamation-circle-fill.svg b/public/hse/assets/bootstrap/exclamation-circle-fill.svg deleted file mode 100644 index f7a7d17..0000000 --- a/public/hse/assets/bootstrap/exclamation-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/exclamation-circle.svg b/public/hse/assets/bootstrap/exclamation-circle.svg deleted file mode 100644 index 73c7e8d..0000000 --- a/public/hse/assets/bootstrap/exclamation-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/exclamation-diamond-fill.svg b/public/hse/assets/bootstrap/exclamation-diamond-fill.svg deleted file mode 100644 index 5987fe7..0000000 --- a/public/hse/assets/bootstrap/exclamation-diamond-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/exclamation-diamond.svg b/public/hse/assets/bootstrap/exclamation-diamond.svg deleted file mode 100644 index 6c0388b..0000000 --- a/public/hse/assets/bootstrap/exclamation-diamond.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/exclamation-lg.svg b/public/hse/assets/bootstrap/exclamation-lg.svg deleted file mode 100644 index b21e727..0000000 --- a/public/hse/assets/bootstrap/exclamation-lg.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/exclamation-octagon-fill.svg b/public/hse/assets/bootstrap/exclamation-octagon-fill.svg deleted file mode 100644 index 3347f64..0000000 --- a/public/hse/assets/bootstrap/exclamation-octagon-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/exclamation-octagon.svg b/public/hse/assets/bootstrap/exclamation-octagon.svg deleted file mode 100644 index 6ef1db9..0000000 --- a/public/hse/assets/bootstrap/exclamation-octagon.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/exclamation-square-fill.svg b/public/hse/assets/bootstrap/exclamation-square-fill.svg deleted file mode 100644 index e99eab8..0000000 --- a/public/hse/assets/bootstrap/exclamation-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/exclamation-square.svg b/public/hse/assets/bootstrap/exclamation-square.svg deleted file mode 100644 index 41436cb..0000000 --- a/public/hse/assets/bootstrap/exclamation-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/exclamation-triangle-fill.svg b/public/hse/assets/bootstrap/exclamation-triangle-fill.svg deleted file mode 100644 index 50e1752..0000000 --- a/public/hse/assets/bootstrap/exclamation-triangle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/exclamation-triangle.svg b/public/hse/assets/bootstrap/exclamation-triangle.svg deleted file mode 100644 index 7ca0dc7..0000000 --- a/public/hse/assets/bootstrap/exclamation-triangle.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/exclamation.svg b/public/hse/assets/bootstrap/exclamation.svg deleted file mode 100644 index 953004b..0000000 --- a/public/hse/assets/bootstrap/exclamation.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/exclude.svg b/public/hse/assets/bootstrap/exclude.svg deleted file mode 100644 index 9be5f93..0000000 --- a/public/hse/assets/bootstrap/exclude.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/explicit-fill.svg b/public/hse/assets/bootstrap/explicit-fill.svg deleted file mode 100644 index 159d365..0000000 --- a/public/hse/assets/bootstrap/explicit-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/explicit.svg b/public/hse/assets/bootstrap/explicit.svg deleted file mode 100644 index 22a0ef4..0000000 --- a/public/hse/assets/bootstrap/explicit.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/eye-fill.svg b/public/hse/assets/bootstrap/eye-fill.svg deleted file mode 100644 index 2697206..0000000 --- a/public/hse/assets/bootstrap/eye-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/eye-slash-fill.svg b/public/hse/assets/bootstrap/eye-slash-fill.svg deleted file mode 100644 index 9339262..0000000 --- a/public/hse/assets/bootstrap/eye-slash-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/eye-slash.svg b/public/hse/assets/bootstrap/eye-slash.svg deleted file mode 100644 index c520837..0000000 --- a/public/hse/assets/bootstrap/eye-slash.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/eye.svg b/public/hse/assets/bootstrap/eye.svg deleted file mode 100644 index 412ff69..0000000 --- a/public/hse/assets/bootstrap/eye.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/eyedropper.svg b/public/hse/assets/bootstrap/eyedropper.svg deleted file mode 100644 index 698d40d..0000000 --- a/public/hse/assets/bootstrap/eyedropper.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/eyeglasses.svg b/public/hse/assets/bootstrap/eyeglasses.svg deleted file mode 100644 index 020d943..0000000 --- a/public/hse/assets/bootstrap/eyeglasses.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/facebook.svg b/public/hse/assets/bootstrap/facebook.svg deleted file mode 100644 index e8d1443..0000000 --- a/public/hse/assets/bootstrap/facebook.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/fan.svg b/public/hse/assets/bootstrap/fan.svg deleted file mode 100644 index fab6eab..0000000 --- a/public/hse/assets/bootstrap/fan.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/fast-forward-btn-fill.svg b/public/hse/assets/bootstrap/fast-forward-btn-fill.svg deleted file mode 100644 index 9c9a1c6..0000000 --- a/public/hse/assets/bootstrap/fast-forward-btn-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/fast-forward-btn.svg b/public/hse/assets/bootstrap/fast-forward-btn.svg deleted file mode 100644 index a3d605c..0000000 --- a/public/hse/assets/bootstrap/fast-forward-btn.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/fast-forward-circle-fill.svg b/public/hse/assets/bootstrap/fast-forward-circle-fill.svg deleted file mode 100644 index aa5c37b..0000000 --- a/public/hse/assets/bootstrap/fast-forward-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/fast-forward-circle.svg b/public/hse/assets/bootstrap/fast-forward-circle.svg deleted file mode 100644 index 2eceb91..0000000 --- a/public/hse/assets/bootstrap/fast-forward-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/fast-forward-fill.svg b/public/hse/assets/bootstrap/fast-forward-fill.svg deleted file mode 100644 index 329cad0..0000000 --- a/public/hse/assets/bootstrap/fast-forward-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/fast-forward.svg b/public/hse/assets/bootstrap/fast-forward.svg deleted file mode 100644 index 1064360..0000000 --- a/public/hse/assets/bootstrap/fast-forward.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-arrow-down-fill.svg b/public/hse/assets/bootstrap/file-arrow-down-fill.svg deleted file mode 100644 index 910fc07..0000000 --- a/public/hse/assets/bootstrap/file-arrow-down-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-arrow-down.svg b/public/hse/assets/bootstrap/file-arrow-down.svg deleted file mode 100644 index 6f75d50..0000000 --- a/public/hse/assets/bootstrap/file-arrow-down.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-arrow-up-fill.svg b/public/hse/assets/bootstrap/file-arrow-up-fill.svg deleted file mode 100644 index 9dba205..0000000 --- a/public/hse/assets/bootstrap/file-arrow-up-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-arrow-up.svg b/public/hse/assets/bootstrap/file-arrow-up.svg deleted file mode 100644 index 223379e..0000000 --- a/public/hse/assets/bootstrap/file-arrow-up.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-bar-graph-fill.svg b/public/hse/assets/bootstrap/file-bar-graph-fill.svg deleted file mode 100644 index a0e31d6..0000000 --- a/public/hse/assets/bootstrap/file-bar-graph-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-bar-graph.svg b/public/hse/assets/bootstrap/file-bar-graph.svg deleted file mode 100644 index e66be6a..0000000 --- a/public/hse/assets/bootstrap/file-bar-graph.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-binary-fill.svg b/public/hse/assets/bootstrap/file-binary-fill.svg deleted file mode 100644 index 13343bf..0000000 --- a/public/hse/assets/bootstrap/file-binary-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-binary.svg b/public/hse/assets/bootstrap/file-binary.svg deleted file mode 100644 index 7e667bc..0000000 --- a/public/hse/assets/bootstrap/file-binary.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-break-fill.svg b/public/hse/assets/bootstrap/file-break-fill.svg deleted file mode 100644 index 4eddc4a..0000000 --- a/public/hse/assets/bootstrap/file-break-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-break.svg b/public/hse/assets/bootstrap/file-break.svg deleted file mode 100644 index b4485d7..0000000 --- a/public/hse/assets/bootstrap/file-break.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-check-fill.svg b/public/hse/assets/bootstrap/file-check-fill.svg deleted file mode 100644 index fb54b18..0000000 --- a/public/hse/assets/bootstrap/file-check-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-check.svg b/public/hse/assets/bootstrap/file-check.svg deleted file mode 100644 index 1426311..0000000 --- a/public/hse/assets/bootstrap/file-check.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-code-fill.svg b/public/hse/assets/bootstrap/file-code-fill.svg deleted file mode 100644 index ee2f0f6..0000000 --- a/public/hse/assets/bootstrap/file-code-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-code.svg b/public/hse/assets/bootstrap/file-code.svg deleted file mode 100644 index a8c390b..0000000 --- a/public/hse/assets/bootstrap/file-code.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-diff-fill.svg b/public/hse/assets/bootstrap/file-diff-fill.svg deleted file mode 100644 index 945aef1..0000000 --- a/public/hse/assets/bootstrap/file-diff-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-diff.svg b/public/hse/assets/bootstrap/file-diff.svg deleted file mode 100644 index dd848f0..0000000 --- a/public/hse/assets/bootstrap/file-diff.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-arrow-down-fill.svg b/public/hse/assets/bootstrap/file-earmark-arrow-down-fill.svg deleted file mode 100644 index 0e96047..0000000 --- a/public/hse/assets/bootstrap/file-earmark-arrow-down-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-arrow-down.svg b/public/hse/assets/bootstrap/file-earmark-arrow-down.svg deleted file mode 100644 index 81cc43a..0000000 --- a/public/hse/assets/bootstrap/file-earmark-arrow-down.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-arrow-up-fill.svg b/public/hse/assets/bootstrap/file-earmark-arrow-up-fill.svg deleted file mode 100644 index ce881cc..0000000 --- a/public/hse/assets/bootstrap/file-earmark-arrow-up-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-arrow-up.svg b/public/hse/assets/bootstrap/file-earmark-arrow-up.svg deleted file mode 100644 index 6cf324a..0000000 --- a/public/hse/assets/bootstrap/file-earmark-arrow-up.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-bar-graph-fill.svg b/public/hse/assets/bootstrap/file-earmark-bar-graph-fill.svg deleted file mode 100644 index 7dc0df9..0000000 --- a/public/hse/assets/bootstrap/file-earmark-bar-graph-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-bar-graph.svg b/public/hse/assets/bootstrap/file-earmark-bar-graph.svg deleted file mode 100644 index eefb687..0000000 --- a/public/hse/assets/bootstrap/file-earmark-bar-graph.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-binary-fill.svg b/public/hse/assets/bootstrap/file-earmark-binary-fill.svg deleted file mode 100644 index 1652562..0000000 --- a/public/hse/assets/bootstrap/file-earmark-binary-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-binary.svg b/public/hse/assets/bootstrap/file-earmark-binary.svg deleted file mode 100644 index e068bf6..0000000 --- a/public/hse/assets/bootstrap/file-earmark-binary.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-break-fill.svg b/public/hse/assets/bootstrap/file-earmark-break-fill.svg deleted file mode 100644 index b36ea25..0000000 --- a/public/hse/assets/bootstrap/file-earmark-break-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-break.svg b/public/hse/assets/bootstrap/file-earmark-break.svg deleted file mode 100644 index e98c647..0000000 --- a/public/hse/assets/bootstrap/file-earmark-break.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-check-fill.svg b/public/hse/assets/bootstrap/file-earmark-check-fill.svg deleted file mode 100644 index de7bf69..0000000 --- a/public/hse/assets/bootstrap/file-earmark-check-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-check.svg b/public/hse/assets/bootstrap/file-earmark-check.svg deleted file mode 100644 index f2fbf66..0000000 --- a/public/hse/assets/bootstrap/file-earmark-check.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-code-fill.svg b/public/hse/assets/bootstrap/file-earmark-code-fill.svg deleted file mode 100644 index c23a7b6..0000000 --- a/public/hse/assets/bootstrap/file-earmark-code-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-code.svg b/public/hse/assets/bootstrap/file-earmark-code.svg deleted file mode 100644 index 1b94a6a..0000000 --- a/public/hse/assets/bootstrap/file-earmark-code.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-diff-fill.svg b/public/hse/assets/bootstrap/file-earmark-diff-fill.svg deleted file mode 100644 index 5f18a88..0000000 --- a/public/hse/assets/bootstrap/file-earmark-diff-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-diff.svg b/public/hse/assets/bootstrap/file-earmark-diff.svg deleted file mode 100644 index 0b28667..0000000 --- a/public/hse/assets/bootstrap/file-earmark-diff.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-easel-fill.svg b/public/hse/assets/bootstrap/file-earmark-easel-fill.svg deleted file mode 100644 index 0743de4..0000000 --- a/public/hse/assets/bootstrap/file-earmark-easel-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-easel.svg b/public/hse/assets/bootstrap/file-earmark-easel.svg deleted file mode 100644 index 045fc87..0000000 --- a/public/hse/assets/bootstrap/file-earmark-easel.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-excel-fill.svg b/public/hse/assets/bootstrap/file-earmark-excel-fill.svg deleted file mode 100644 index 2d492a8..0000000 --- a/public/hse/assets/bootstrap/file-earmark-excel-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-excel.svg b/public/hse/assets/bootstrap/file-earmark-excel.svg deleted file mode 100644 index c40f16b..0000000 --- a/public/hse/assets/bootstrap/file-earmark-excel.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-fill.svg b/public/hse/assets/bootstrap/file-earmark-fill.svg deleted file mode 100644 index 668247e..0000000 --- a/public/hse/assets/bootstrap/file-earmark-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-font-fill.svg b/public/hse/assets/bootstrap/file-earmark-font-fill.svg deleted file mode 100644 index c4fe9a4..0000000 --- a/public/hse/assets/bootstrap/file-earmark-font-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-font.svg b/public/hse/assets/bootstrap/file-earmark-font.svg deleted file mode 100644 index f7aad0b..0000000 --- a/public/hse/assets/bootstrap/file-earmark-font.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-image-fill.svg b/public/hse/assets/bootstrap/file-earmark-image-fill.svg deleted file mode 100644 index e568ee7..0000000 --- a/public/hse/assets/bootstrap/file-earmark-image-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-image.svg b/public/hse/assets/bootstrap/file-earmark-image.svg deleted file mode 100644 index 1e1964b..0000000 --- a/public/hse/assets/bootstrap/file-earmark-image.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-lock-fill.svg b/public/hse/assets/bootstrap/file-earmark-lock-fill.svg deleted file mode 100644 index 18a7fb7..0000000 --- a/public/hse/assets/bootstrap/file-earmark-lock-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-lock.svg b/public/hse/assets/bootstrap/file-earmark-lock.svg deleted file mode 100644 index b15ec6a..0000000 --- a/public/hse/assets/bootstrap/file-earmark-lock.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-lock2-fill.svg b/public/hse/assets/bootstrap/file-earmark-lock2-fill.svg deleted file mode 100644 index 828a545..0000000 --- a/public/hse/assets/bootstrap/file-earmark-lock2-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-lock2.svg b/public/hse/assets/bootstrap/file-earmark-lock2.svg deleted file mode 100644 index cf76d3f..0000000 --- a/public/hse/assets/bootstrap/file-earmark-lock2.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-medical-fill.svg b/public/hse/assets/bootstrap/file-earmark-medical-fill.svg deleted file mode 100644 index ed5f6bc..0000000 --- a/public/hse/assets/bootstrap/file-earmark-medical-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-medical.svg b/public/hse/assets/bootstrap/file-earmark-medical.svg deleted file mode 100644 index 6fa8a39..0000000 --- a/public/hse/assets/bootstrap/file-earmark-medical.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-minus-fill.svg b/public/hse/assets/bootstrap/file-earmark-minus-fill.svg deleted file mode 100644 index 25e708f..0000000 --- a/public/hse/assets/bootstrap/file-earmark-minus-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-minus.svg b/public/hse/assets/bootstrap/file-earmark-minus.svg deleted file mode 100644 index e87b163..0000000 --- a/public/hse/assets/bootstrap/file-earmark-minus.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-music-fill.svg b/public/hse/assets/bootstrap/file-earmark-music-fill.svg deleted file mode 100644 index c64c797..0000000 --- a/public/hse/assets/bootstrap/file-earmark-music-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-music.svg b/public/hse/assets/bootstrap/file-earmark-music.svg deleted file mode 100644 index cc25eb9..0000000 --- a/public/hse/assets/bootstrap/file-earmark-music.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-pdf-fill.svg b/public/hse/assets/bootstrap/file-earmark-pdf-fill.svg deleted file mode 100644 index 0ba21ab..0000000 --- a/public/hse/assets/bootstrap/file-earmark-pdf-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-pdf.svg b/public/hse/assets/bootstrap/file-earmark-pdf.svg deleted file mode 100644 index 52da96f..0000000 --- a/public/hse/assets/bootstrap/file-earmark-pdf.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-person-fill.svg b/public/hse/assets/bootstrap/file-earmark-person-fill.svg deleted file mode 100644 index 29a8129..0000000 --- a/public/hse/assets/bootstrap/file-earmark-person-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-person.svg b/public/hse/assets/bootstrap/file-earmark-person.svg deleted file mode 100644 index 59a6a2a..0000000 --- a/public/hse/assets/bootstrap/file-earmark-person.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-play-fill.svg b/public/hse/assets/bootstrap/file-earmark-play-fill.svg deleted file mode 100644 index 80731db..0000000 --- a/public/hse/assets/bootstrap/file-earmark-play-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-play.svg b/public/hse/assets/bootstrap/file-earmark-play.svg deleted file mode 100644 index 62042ab..0000000 --- a/public/hse/assets/bootstrap/file-earmark-play.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-plus-fill.svg b/public/hse/assets/bootstrap/file-earmark-plus-fill.svg deleted file mode 100644 index 6cead3a..0000000 --- a/public/hse/assets/bootstrap/file-earmark-plus-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-plus.svg b/public/hse/assets/bootstrap/file-earmark-plus.svg deleted file mode 100644 index 9284026..0000000 --- a/public/hse/assets/bootstrap/file-earmark-plus.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-post-fill.svg b/public/hse/assets/bootstrap/file-earmark-post-fill.svg deleted file mode 100644 index 0c0e7b8..0000000 --- a/public/hse/assets/bootstrap/file-earmark-post-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-post.svg b/public/hse/assets/bootstrap/file-earmark-post.svg deleted file mode 100644 index 1f0d435..0000000 --- a/public/hse/assets/bootstrap/file-earmark-post.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-ppt-fill.svg b/public/hse/assets/bootstrap/file-earmark-ppt-fill.svg deleted file mode 100644 index 68e9793..0000000 --- a/public/hse/assets/bootstrap/file-earmark-ppt-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-ppt.svg b/public/hse/assets/bootstrap/file-earmark-ppt.svg deleted file mode 100644 index bedf552..0000000 --- a/public/hse/assets/bootstrap/file-earmark-ppt.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-richtext-fill.svg b/public/hse/assets/bootstrap/file-earmark-richtext-fill.svg deleted file mode 100644 index e5c82ee..0000000 --- a/public/hse/assets/bootstrap/file-earmark-richtext-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-richtext.svg b/public/hse/assets/bootstrap/file-earmark-richtext.svg deleted file mode 100644 index 35af146..0000000 --- a/public/hse/assets/bootstrap/file-earmark-richtext.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-ruled-fill.svg b/public/hse/assets/bootstrap/file-earmark-ruled-fill.svg deleted file mode 100644 index 43aecce..0000000 --- a/public/hse/assets/bootstrap/file-earmark-ruled-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-ruled.svg b/public/hse/assets/bootstrap/file-earmark-ruled.svg deleted file mode 100644 index 4f28858..0000000 --- a/public/hse/assets/bootstrap/file-earmark-ruled.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-slides-fill.svg b/public/hse/assets/bootstrap/file-earmark-slides-fill.svg deleted file mode 100644 index 98b59df..0000000 --- a/public/hse/assets/bootstrap/file-earmark-slides-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-slides.svg b/public/hse/assets/bootstrap/file-earmark-slides.svg deleted file mode 100644 index 2d97fa7..0000000 --- a/public/hse/assets/bootstrap/file-earmark-slides.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-spreadsheet-fill.svg b/public/hse/assets/bootstrap/file-earmark-spreadsheet-fill.svg deleted file mode 100644 index 9a71e73..0000000 --- a/public/hse/assets/bootstrap/file-earmark-spreadsheet-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-spreadsheet.svg b/public/hse/assets/bootstrap/file-earmark-spreadsheet.svg deleted file mode 100644 index a111232..0000000 --- a/public/hse/assets/bootstrap/file-earmark-spreadsheet.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-text-fill.svg b/public/hse/assets/bootstrap/file-earmark-text-fill.svg deleted file mode 100644 index b329919..0000000 --- a/public/hse/assets/bootstrap/file-earmark-text-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-text.svg b/public/hse/assets/bootstrap/file-earmark-text.svg deleted file mode 100644 index 0d60c79..0000000 --- a/public/hse/assets/bootstrap/file-earmark-text.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-word-fill.svg b/public/hse/assets/bootstrap/file-earmark-word-fill.svg deleted file mode 100644 index 717b049..0000000 --- a/public/hse/assets/bootstrap/file-earmark-word-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-word.svg b/public/hse/assets/bootstrap/file-earmark-word.svg deleted file mode 100644 index 7186b69..0000000 --- a/public/hse/assets/bootstrap/file-earmark-word.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-x-fill.svg b/public/hse/assets/bootstrap/file-earmark-x-fill.svg deleted file mode 100644 index a19d14b..0000000 --- a/public/hse/assets/bootstrap/file-earmark-x-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-x.svg b/public/hse/assets/bootstrap/file-earmark-x.svg deleted file mode 100644 index bedb970..0000000 --- a/public/hse/assets/bootstrap/file-earmark-x.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-zip-fill.svg b/public/hse/assets/bootstrap/file-earmark-zip-fill.svg deleted file mode 100644 index b92ff9a..0000000 --- a/public/hse/assets/bootstrap/file-earmark-zip-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark-zip.svg b/public/hse/assets/bootstrap/file-earmark-zip.svg deleted file mode 100644 index b82afcc..0000000 --- a/public/hse/assets/bootstrap/file-earmark-zip.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-earmark.svg b/public/hse/assets/bootstrap/file-earmark.svg deleted file mode 100644 index c3d086b..0000000 --- a/public/hse/assets/bootstrap/file-earmark.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-easel-fill.svg b/public/hse/assets/bootstrap/file-easel-fill.svg deleted file mode 100644 index e1122e5..0000000 --- a/public/hse/assets/bootstrap/file-easel-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-easel.svg b/public/hse/assets/bootstrap/file-easel.svg deleted file mode 100644 index c6d6a4d..0000000 --- a/public/hse/assets/bootstrap/file-easel.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-excel-fill.svg b/public/hse/assets/bootstrap/file-excel-fill.svg deleted file mode 100644 index 350a7df..0000000 --- a/public/hse/assets/bootstrap/file-excel-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-excel.svg b/public/hse/assets/bootstrap/file-excel.svg deleted file mode 100644 index 0f43afe..0000000 --- a/public/hse/assets/bootstrap/file-excel.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-fill.svg b/public/hse/assets/bootstrap/file-fill.svg deleted file mode 100644 index a1f4de0..0000000 --- a/public/hse/assets/bootstrap/file-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-font-fill.svg b/public/hse/assets/bootstrap/file-font-fill.svg deleted file mode 100644 index 198a259..0000000 --- a/public/hse/assets/bootstrap/file-font-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-font.svg b/public/hse/assets/bootstrap/file-font.svg deleted file mode 100644 index 1d67f5e..0000000 --- a/public/hse/assets/bootstrap/file-font.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-image-fill.svg b/public/hse/assets/bootstrap/file-image-fill.svg deleted file mode 100644 index f4e81ab..0000000 --- a/public/hse/assets/bootstrap/file-image-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-image.svg b/public/hse/assets/bootstrap/file-image.svg deleted file mode 100644 index 127fd89..0000000 --- a/public/hse/assets/bootstrap/file-image.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-lock-fill.svg b/public/hse/assets/bootstrap/file-lock-fill.svg deleted file mode 100644 index a14dafc..0000000 --- a/public/hse/assets/bootstrap/file-lock-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-lock.svg b/public/hse/assets/bootstrap/file-lock.svg deleted file mode 100644 index 4206978..0000000 --- a/public/hse/assets/bootstrap/file-lock.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-lock2-fill.svg b/public/hse/assets/bootstrap/file-lock2-fill.svg deleted file mode 100644 index a68a5d4..0000000 --- a/public/hse/assets/bootstrap/file-lock2-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-lock2.svg b/public/hse/assets/bootstrap/file-lock2.svg deleted file mode 100644 index 134f747..0000000 --- a/public/hse/assets/bootstrap/file-lock2.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-medical-fill.svg b/public/hse/assets/bootstrap/file-medical-fill.svg deleted file mode 100644 index 6caf0a3..0000000 --- a/public/hse/assets/bootstrap/file-medical-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-medical.svg b/public/hse/assets/bootstrap/file-medical.svg deleted file mode 100644 index afec18e..0000000 --- a/public/hse/assets/bootstrap/file-medical.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-minus-fill.svg b/public/hse/assets/bootstrap/file-minus-fill.svg deleted file mode 100644 index 85d9999..0000000 --- a/public/hse/assets/bootstrap/file-minus-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-minus.svg b/public/hse/assets/bootstrap/file-minus.svg deleted file mode 100644 index 67a4538..0000000 --- a/public/hse/assets/bootstrap/file-minus.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-music-fill.svg b/public/hse/assets/bootstrap/file-music-fill.svg deleted file mode 100644 index c7dfa82..0000000 --- a/public/hse/assets/bootstrap/file-music-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-music.svg b/public/hse/assets/bootstrap/file-music.svg deleted file mode 100644 index 6531a95..0000000 --- a/public/hse/assets/bootstrap/file-music.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-pdf-fill.svg b/public/hse/assets/bootstrap/file-pdf-fill.svg deleted file mode 100644 index 87543f5..0000000 --- a/public/hse/assets/bootstrap/file-pdf-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-pdf.svg b/public/hse/assets/bootstrap/file-pdf.svg deleted file mode 100644 index e8ba0a1..0000000 --- a/public/hse/assets/bootstrap/file-pdf.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-person-fill.svg b/public/hse/assets/bootstrap/file-person-fill.svg deleted file mode 100644 index d7e05e4..0000000 --- a/public/hse/assets/bootstrap/file-person-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-person.svg b/public/hse/assets/bootstrap/file-person.svg deleted file mode 100644 index 892800a..0000000 --- a/public/hse/assets/bootstrap/file-person.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-play-fill.svg b/public/hse/assets/bootstrap/file-play-fill.svg deleted file mode 100644 index 838dda9..0000000 --- a/public/hse/assets/bootstrap/file-play-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-play.svg b/public/hse/assets/bootstrap/file-play.svg deleted file mode 100644 index fef9adf..0000000 --- a/public/hse/assets/bootstrap/file-play.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-plus-fill.svg b/public/hse/assets/bootstrap/file-plus-fill.svg deleted file mode 100644 index 1730c27..0000000 --- a/public/hse/assets/bootstrap/file-plus-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-plus.svg b/public/hse/assets/bootstrap/file-plus.svg deleted file mode 100644 index d0ef464..0000000 --- a/public/hse/assets/bootstrap/file-plus.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-post-fill.svg b/public/hse/assets/bootstrap/file-post-fill.svg deleted file mode 100644 index c3fc7e0..0000000 --- a/public/hse/assets/bootstrap/file-post-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-post.svg b/public/hse/assets/bootstrap/file-post.svg deleted file mode 100644 index dd8aefc..0000000 --- a/public/hse/assets/bootstrap/file-post.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-ppt-fill.svg b/public/hse/assets/bootstrap/file-ppt-fill.svg deleted file mode 100644 index 3d3ac35..0000000 --- a/public/hse/assets/bootstrap/file-ppt-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-ppt.svg b/public/hse/assets/bootstrap/file-ppt.svg deleted file mode 100644 index 0100d0b..0000000 --- a/public/hse/assets/bootstrap/file-ppt.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-richtext-fill.svg b/public/hse/assets/bootstrap/file-richtext-fill.svg deleted file mode 100644 index 64c1fc8..0000000 --- a/public/hse/assets/bootstrap/file-richtext-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-richtext.svg b/public/hse/assets/bootstrap/file-richtext.svg deleted file mode 100644 index 22edf68..0000000 --- a/public/hse/assets/bootstrap/file-richtext.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-ruled-fill.svg b/public/hse/assets/bootstrap/file-ruled-fill.svg deleted file mode 100644 index f93c255..0000000 --- a/public/hse/assets/bootstrap/file-ruled-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-ruled.svg b/public/hse/assets/bootstrap/file-ruled.svg deleted file mode 100644 index 431b4eb..0000000 --- a/public/hse/assets/bootstrap/file-ruled.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-slides-fill.svg b/public/hse/assets/bootstrap/file-slides-fill.svg deleted file mode 100644 index e8cb12a..0000000 --- a/public/hse/assets/bootstrap/file-slides-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-slides.svg b/public/hse/assets/bootstrap/file-slides.svg deleted file mode 100644 index df3f65d..0000000 --- a/public/hse/assets/bootstrap/file-slides.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-spreadsheet-fill.svg b/public/hse/assets/bootstrap/file-spreadsheet-fill.svg deleted file mode 100644 index a3977e1..0000000 --- a/public/hse/assets/bootstrap/file-spreadsheet-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-spreadsheet.svg b/public/hse/assets/bootstrap/file-spreadsheet.svg deleted file mode 100644 index e83e733..0000000 --- a/public/hse/assets/bootstrap/file-spreadsheet.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-text-fill.svg b/public/hse/assets/bootstrap/file-text-fill.svg deleted file mode 100644 index 29c9fc4..0000000 --- a/public/hse/assets/bootstrap/file-text-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-text.svg b/public/hse/assets/bootstrap/file-text.svg deleted file mode 100644 index fa1e861..0000000 --- a/public/hse/assets/bootstrap/file-text.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-word-fill.svg b/public/hse/assets/bootstrap/file-word-fill.svg deleted file mode 100644 index 2df1fca..0000000 --- a/public/hse/assets/bootstrap/file-word-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-word.svg b/public/hse/assets/bootstrap/file-word.svg deleted file mode 100644 index 61a96c2..0000000 --- a/public/hse/assets/bootstrap/file-word.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-x-fill.svg b/public/hse/assets/bootstrap/file-x-fill.svg deleted file mode 100644 index 980e405..0000000 --- a/public/hse/assets/bootstrap/file-x-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-x.svg b/public/hse/assets/bootstrap/file-x.svg deleted file mode 100644 index 1fe66e6..0000000 --- a/public/hse/assets/bootstrap/file-x.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-zip-fill.svg b/public/hse/assets/bootstrap/file-zip-fill.svg deleted file mode 100644 index 95d3966..0000000 --- a/public/hse/assets/bootstrap/file-zip-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file-zip.svg b/public/hse/assets/bootstrap/file-zip.svg deleted file mode 100644 index 3da93c8..0000000 --- a/public/hse/assets/bootstrap/file-zip.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/file.svg b/public/hse/assets/bootstrap/file.svg deleted file mode 100644 index 3562fb2..0000000 --- a/public/hse/assets/bootstrap/file.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/files-alt.svg b/public/hse/assets/bootstrap/files-alt.svg deleted file mode 100644 index 1d4d069..0000000 --- a/public/hse/assets/bootstrap/files-alt.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/files.svg b/public/hse/assets/bootstrap/files.svg deleted file mode 100644 index f8842f8..0000000 --- a/public/hse/assets/bootstrap/files.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-aac.svg b/public/hse/assets/bootstrap/filetype-aac.svg deleted file mode 100644 index 8a2d02a..0000000 --- a/public/hse/assets/bootstrap/filetype-aac.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-ai.svg b/public/hse/assets/bootstrap/filetype-ai.svg deleted file mode 100644 index 23e2ebc..0000000 --- a/public/hse/assets/bootstrap/filetype-ai.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-bmp.svg b/public/hse/assets/bootstrap/filetype-bmp.svg deleted file mode 100644 index acf902f..0000000 --- a/public/hse/assets/bootstrap/filetype-bmp.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-cs.svg b/public/hse/assets/bootstrap/filetype-cs.svg deleted file mode 100644 index fb76aec..0000000 --- a/public/hse/assets/bootstrap/filetype-cs.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-css.svg b/public/hse/assets/bootstrap/filetype-css.svg deleted file mode 100644 index da12ac6..0000000 --- a/public/hse/assets/bootstrap/filetype-css.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-csv.svg b/public/hse/assets/bootstrap/filetype-csv.svg deleted file mode 100644 index efda95c..0000000 --- a/public/hse/assets/bootstrap/filetype-csv.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-doc.svg b/public/hse/assets/bootstrap/filetype-doc.svg deleted file mode 100644 index 14fb544..0000000 --- a/public/hse/assets/bootstrap/filetype-doc.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-docx.svg b/public/hse/assets/bootstrap/filetype-docx.svg deleted file mode 100644 index 29a54ff..0000000 --- a/public/hse/assets/bootstrap/filetype-docx.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-exe.svg b/public/hse/assets/bootstrap/filetype-exe.svg deleted file mode 100644 index 2c4bea4..0000000 --- a/public/hse/assets/bootstrap/filetype-exe.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-gif.svg b/public/hse/assets/bootstrap/filetype-gif.svg deleted file mode 100644 index 6b016d8..0000000 --- a/public/hse/assets/bootstrap/filetype-gif.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-heic.svg b/public/hse/assets/bootstrap/filetype-heic.svg deleted file mode 100644 index dcdb6f1..0000000 --- a/public/hse/assets/bootstrap/filetype-heic.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-html.svg b/public/hse/assets/bootstrap/filetype-html.svg deleted file mode 100644 index 35d7218..0000000 --- a/public/hse/assets/bootstrap/filetype-html.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-java.svg b/public/hse/assets/bootstrap/filetype-java.svg deleted file mode 100644 index c9dc543..0000000 --- a/public/hse/assets/bootstrap/filetype-java.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-jpg.svg b/public/hse/assets/bootstrap/filetype-jpg.svg deleted file mode 100644 index 5e4ae64..0000000 --- a/public/hse/assets/bootstrap/filetype-jpg.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-js.svg b/public/hse/assets/bootstrap/filetype-js.svg deleted file mode 100644 index 8b198bf..0000000 --- a/public/hse/assets/bootstrap/filetype-js.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-json.svg b/public/hse/assets/bootstrap/filetype-json.svg deleted file mode 100644 index 2b9d988..0000000 --- a/public/hse/assets/bootstrap/filetype-json.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-jsx.svg b/public/hse/assets/bootstrap/filetype-jsx.svg deleted file mode 100644 index c23ba4c..0000000 --- a/public/hse/assets/bootstrap/filetype-jsx.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-key.svg b/public/hse/assets/bootstrap/filetype-key.svg deleted file mode 100644 index 5b98050..0000000 --- a/public/hse/assets/bootstrap/filetype-key.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-m4p.svg b/public/hse/assets/bootstrap/filetype-m4p.svg deleted file mode 100644 index a10dc24..0000000 --- a/public/hse/assets/bootstrap/filetype-m4p.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-md.svg b/public/hse/assets/bootstrap/filetype-md.svg deleted file mode 100644 index ca5cd59..0000000 --- a/public/hse/assets/bootstrap/filetype-md.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-mdx.svg b/public/hse/assets/bootstrap/filetype-mdx.svg deleted file mode 100644 index e8774d2..0000000 --- a/public/hse/assets/bootstrap/filetype-mdx.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-mov.svg b/public/hse/assets/bootstrap/filetype-mov.svg deleted file mode 100644 index 9f05d63..0000000 --- a/public/hse/assets/bootstrap/filetype-mov.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-mp3.svg b/public/hse/assets/bootstrap/filetype-mp3.svg deleted file mode 100644 index 0170351..0000000 --- a/public/hse/assets/bootstrap/filetype-mp3.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-mp4.svg b/public/hse/assets/bootstrap/filetype-mp4.svg deleted file mode 100644 index 997c427..0000000 --- a/public/hse/assets/bootstrap/filetype-mp4.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-otf.svg b/public/hse/assets/bootstrap/filetype-otf.svg deleted file mode 100644 index 44d0c8e..0000000 --- a/public/hse/assets/bootstrap/filetype-otf.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-pdf.svg b/public/hse/assets/bootstrap/filetype-pdf.svg deleted file mode 100644 index e1fc9b6..0000000 --- a/public/hse/assets/bootstrap/filetype-pdf.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-php.svg b/public/hse/assets/bootstrap/filetype-php.svg deleted file mode 100644 index 422cc2d..0000000 --- a/public/hse/assets/bootstrap/filetype-php.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-png.svg b/public/hse/assets/bootstrap/filetype-png.svg deleted file mode 100644 index f719344..0000000 --- a/public/hse/assets/bootstrap/filetype-png.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-ppt.svg b/public/hse/assets/bootstrap/filetype-ppt.svg deleted file mode 100644 index cfaaf1b..0000000 --- a/public/hse/assets/bootstrap/filetype-ppt.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-pptx.svg b/public/hse/assets/bootstrap/filetype-pptx.svg deleted file mode 100644 index 88ef369..0000000 --- a/public/hse/assets/bootstrap/filetype-pptx.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-psd.svg b/public/hse/assets/bootstrap/filetype-psd.svg deleted file mode 100644 index cfcb13b..0000000 --- a/public/hse/assets/bootstrap/filetype-psd.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-py.svg b/public/hse/assets/bootstrap/filetype-py.svg deleted file mode 100644 index 654df70..0000000 --- a/public/hse/assets/bootstrap/filetype-py.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-raw.svg b/public/hse/assets/bootstrap/filetype-raw.svg deleted file mode 100644 index fdbeefc..0000000 --- a/public/hse/assets/bootstrap/filetype-raw.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-rb.svg b/public/hse/assets/bootstrap/filetype-rb.svg deleted file mode 100644 index e3387b4..0000000 --- a/public/hse/assets/bootstrap/filetype-rb.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-sass.svg b/public/hse/assets/bootstrap/filetype-sass.svg deleted file mode 100644 index 5ff5ae5..0000000 --- a/public/hse/assets/bootstrap/filetype-sass.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-scss.svg b/public/hse/assets/bootstrap/filetype-scss.svg deleted file mode 100644 index 68f195a..0000000 --- a/public/hse/assets/bootstrap/filetype-scss.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-sh.svg b/public/hse/assets/bootstrap/filetype-sh.svg deleted file mode 100644 index 200fae4..0000000 --- a/public/hse/assets/bootstrap/filetype-sh.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-sql.svg b/public/hse/assets/bootstrap/filetype-sql.svg deleted file mode 100644 index b523b37..0000000 --- a/public/hse/assets/bootstrap/filetype-sql.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-svg.svg b/public/hse/assets/bootstrap/filetype-svg.svg deleted file mode 100644 index ea1264c..0000000 --- a/public/hse/assets/bootstrap/filetype-svg.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-tiff.svg b/public/hse/assets/bootstrap/filetype-tiff.svg deleted file mode 100644 index d6f9e9b..0000000 --- a/public/hse/assets/bootstrap/filetype-tiff.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-tsx.svg b/public/hse/assets/bootstrap/filetype-tsx.svg deleted file mode 100644 index cef1dc4..0000000 --- a/public/hse/assets/bootstrap/filetype-tsx.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-ttf.svg b/public/hse/assets/bootstrap/filetype-ttf.svg deleted file mode 100644 index 549d4df..0000000 --- a/public/hse/assets/bootstrap/filetype-ttf.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-txt.svg b/public/hse/assets/bootstrap/filetype-txt.svg deleted file mode 100644 index 6fae02a..0000000 --- a/public/hse/assets/bootstrap/filetype-txt.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-wav.svg b/public/hse/assets/bootstrap/filetype-wav.svg deleted file mode 100644 index bd226e8..0000000 --- a/public/hse/assets/bootstrap/filetype-wav.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-woff.svg b/public/hse/assets/bootstrap/filetype-woff.svg deleted file mode 100644 index d8ec582..0000000 --- a/public/hse/assets/bootstrap/filetype-woff.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-xls.svg b/public/hse/assets/bootstrap/filetype-xls.svg deleted file mode 100644 index 9c266cd..0000000 --- a/public/hse/assets/bootstrap/filetype-xls.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-xlsx.svg b/public/hse/assets/bootstrap/filetype-xlsx.svg deleted file mode 100644 index a1aa802..0000000 --- a/public/hse/assets/bootstrap/filetype-xlsx.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-xml.svg b/public/hse/assets/bootstrap/filetype-xml.svg deleted file mode 100644 index d822645..0000000 --- a/public/hse/assets/bootstrap/filetype-xml.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filetype-yml.svg b/public/hse/assets/bootstrap/filetype-yml.svg deleted file mode 100644 index e8bf63d..0000000 --- a/public/hse/assets/bootstrap/filetype-yml.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/film.svg b/public/hse/assets/bootstrap/film.svg deleted file mode 100644 index 5cef939..0000000 --- a/public/hse/assets/bootstrap/film.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filter-circle-fill.svg b/public/hse/assets/bootstrap/filter-circle-fill.svg deleted file mode 100644 index f60fd59..0000000 --- a/public/hse/assets/bootstrap/filter-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filter-circle.svg b/public/hse/assets/bootstrap/filter-circle.svg deleted file mode 100644 index bbdc85f..0000000 --- a/public/hse/assets/bootstrap/filter-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filter-left.svg b/public/hse/assets/bootstrap/filter-left.svg deleted file mode 100644 index 22441de..0000000 --- a/public/hse/assets/bootstrap/filter-left.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filter-right.svg b/public/hse/assets/bootstrap/filter-right.svg deleted file mode 100644 index 466a9b1..0000000 --- a/public/hse/assets/bootstrap/filter-right.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filter-square-fill.svg b/public/hse/assets/bootstrap/filter-square-fill.svg deleted file mode 100644 index f8813b8..0000000 --- a/public/hse/assets/bootstrap/filter-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filter-square.svg b/public/hse/assets/bootstrap/filter-square.svg deleted file mode 100644 index ae8c837..0000000 --- a/public/hse/assets/bootstrap/filter-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/filter.svg b/public/hse/assets/bootstrap/filter.svg deleted file mode 100644 index 555c612..0000000 --- a/public/hse/assets/bootstrap/filter.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/fingerprint.svg b/public/hse/assets/bootstrap/fingerprint.svg deleted file mode 100644 index 3cf2042..0000000 --- a/public/hse/assets/bootstrap/fingerprint.svg +++ /dev/null @@ -1,7 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/fire.svg b/public/hse/assets/bootstrap/fire.svg deleted file mode 100644 index f702837..0000000 --- a/public/hse/assets/bootstrap/fire.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/flag-fill.svg b/public/hse/assets/bootstrap/flag-fill.svg deleted file mode 100644 index 73fffc2..0000000 --- a/public/hse/assets/bootstrap/flag-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/flag.svg b/public/hse/assets/bootstrap/flag.svg deleted file mode 100644 index 357c481..0000000 --- a/public/hse/assets/bootstrap/flag.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/flower1.svg b/public/hse/assets/bootstrap/flower1.svg deleted file mode 100644 index 08a7e2e..0000000 --- a/public/hse/assets/bootstrap/flower1.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/flower2.svg b/public/hse/assets/bootstrap/flower2.svg deleted file mode 100644 index d793728..0000000 --- a/public/hse/assets/bootstrap/flower2.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/flower3.svg b/public/hse/assets/bootstrap/flower3.svg deleted file mode 100644 index 147e32f..0000000 --- a/public/hse/assets/bootstrap/flower3.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/folder-check.svg b/public/hse/assets/bootstrap/folder-check.svg deleted file mode 100644 index d599554..0000000 --- a/public/hse/assets/bootstrap/folder-check.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/folder-fill.svg b/public/hse/assets/bootstrap/folder-fill.svg deleted file mode 100644 index fd10c8e..0000000 --- a/public/hse/assets/bootstrap/folder-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/folder-minus.svg b/public/hse/assets/bootstrap/folder-minus.svg deleted file mode 100644 index f41b660..0000000 --- a/public/hse/assets/bootstrap/folder-minus.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/folder-plus.svg b/public/hse/assets/bootstrap/folder-plus.svg deleted file mode 100644 index c18e2a5..0000000 --- a/public/hse/assets/bootstrap/folder-plus.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/folder-symlink-fill.svg b/public/hse/assets/bootstrap/folder-symlink-fill.svg deleted file mode 100644 index 91dc0c0..0000000 --- a/public/hse/assets/bootstrap/folder-symlink-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/folder-symlink.svg b/public/hse/assets/bootstrap/folder-symlink.svg deleted file mode 100644 index b258b6a..0000000 --- a/public/hse/assets/bootstrap/folder-symlink.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/folder-x.svg b/public/hse/assets/bootstrap/folder-x.svg deleted file mode 100644 index d571d08..0000000 --- a/public/hse/assets/bootstrap/folder-x.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/folder.svg b/public/hse/assets/bootstrap/folder.svg deleted file mode 100644 index fd4dc5a..0000000 --- a/public/hse/assets/bootstrap/folder.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/folder2-open.svg b/public/hse/assets/bootstrap/folder2-open.svg deleted file mode 100644 index 59d8382..0000000 --- a/public/hse/assets/bootstrap/folder2-open.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/folder2.svg b/public/hse/assets/bootstrap/folder2.svg deleted file mode 100644 index 4145753..0000000 --- a/public/hse/assets/bootstrap/folder2.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/fonts.svg b/public/hse/assets/bootstrap/fonts.svg deleted file mode 100644 index 3afc7d2..0000000 --- a/public/hse/assets/bootstrap/fonts.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/forward-fill.svg b/public/hse/assets/bootstrap/forward-fill.svg deleted file mode 100644 index 7f2839b..0000000 --- a/public/hse/assets/bootstrap/forward-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/forward.svg b/public/hse/assets/bootstrap/forward.svg deleted file mode 100644 index 4b85614..0000000 --- a/public/hse/assets/bootstrap/forward.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/front.svg b/public/hse/assets/bootstrap/front.svg deleted file mode 100644 index d1edeb1..0000000 --- a/public/hse/assets/bootstrap/front.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/fuel-pump-diesel-fill.svg b/public/hse/assets/bootstrap/fuel-pump-diesel-fill.svg deleted file mode 100644 index 824913c..0000000 --- a/public/hse/assets/bootstrap/fuel-pump-diesel-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/fuel-pump-diesel.svg b/public/hse/assets/bootstrap/fuel-pump-diesel.svg deleted file mode 100644 index ad24a92..0000000 --- a/public/hse/assets/bootstrap/fuel-pump-diesel.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/fuel-pump-fill.svg b/public/hse/assets/bootstrap/fuel-pump-fill.svg deleted file mode 100644 index 5154523..0000000 --- a/public/hse/assets/bootstrap/fuel-pump-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/fuel-pump.svg b/public/hse/assets/bootstrap/fuel-pump.svg deleted file mode 100644 index f4742f5..0000000 --- a/public/hse/assets/bootstrap/fuel-pump.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/fullscreen-exit.svg b/public/hse/assets/bootstrap/fullscreen-exit.svg deleted file mode 100644 index b9bdb1b..0000000 --- a/public/hse/assets/bootstrap/fullscreen-exit.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/fullscreen.svg b/public/hse/assets/bootstrap/fullscreen.svg deleted file mode 100644 index 7789d36..0000000 --- a/public/hse/assets/bootstrap/fullscreen.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/funnel-fill.svg b/public/hse/assets/bootstrap/funnel-fill.svg deleted file mode 100644 index 5f16f16..0000000 --- a/public/hse/assets/bootstrap/funnel-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/funnel.svg b/public/hse/assets/bootstrap/funnel.svg deleted file mode 100644 index d027aa5..0000000 --- a/public/hse/assets/bootstrap/funnel.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/gear-fill.svg b/public/hse/assets/bootstrap/gear-fill.svg deleted file mode 100644 index 2aa36a1..0000000 --- a/public/hse/assets/bootstrap/gear-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/gear-wide-connected.svg b/public/hse/assets/bootstrap/gear-wide-connected.svg deleted file mode 100644 index fc196dd..0000000 --- a/public/hse/assets/bootstrap/gear-wide-connected.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/gear-wide.svg b/public/hse/assets/bootstrap/gear-wide.svg deleted file mode 100644 index 83194ce..0000000 --- a/public/hse/assets/bootstrap/gear-wide.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/gear.svg b/public/hse/assets/bootstrap/gear.svg deleted file mode 100644 index c11dbc1..0000000 --- a/public/hse/assets/bootstrap/gear.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/gem.svg b/public/hse/assets/bootstrap/gem.svg deleted file mode 100644 index 360d554..0000000 --- a/public/hse/assets/bootstrap/gem.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/gender-ambiguous.svg b/public/hse/assets/bootstrap/gender-ambiguous.svg deleted file mode 100644 index 2ffaf11..0000000 --- a/public/hse/assets/bootstrap/gender-ambiguous.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/gender-female.svg b/public/hse/assets/bootstrap/gender-female.svg deleted file mode 100644 index 102783c..0000000 --- a/public/hse/assets/bootstrap/gender-female.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/gender-male.svg b/public/hse/assets/bootstrap/gender-male.svg deleted file mode 100644 index b0aee1d..0000000 --- a/public/hse/assets/bootstrap/gender-male.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/gender-trans.svg b/public/hse/assets/bootstrap/gender-trans.svg deleted file mode 100644 index 4c4c074..0000000 --- a/public/hse/assets/bootstrap/gender-trans.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/geo-alt-fill.svg b/public/hse/assets/bootstrap/geo-alt-fill.svg deleted file mode 100644 index e88b77b..0000000 --- a/public/hse/assets/bootstrap/geo-alt-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/geo-alt.svg b/public/hse/assets/bootstrap/geo-alt.svg deleted file mode 100644 index 4092794..0000000 --- a/public/hse/assets/bootstrap/geo-alt.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/geo-fill.svg b/public/hse/assets/bootstrap/geo-fill.svg deleted file mode 100644 index a53f2bd..0000000 --- a/public/hse/assets/bootstrap/geo-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/geo.svg b/public/hse/assets/bootstrap/geo.svg deleted file mode 100644 index 6686fea..0000000 --- a/public/hse/assets/bootstrap/geo.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/gift-fill.svg b/public/hse/assets/bootstrap/gift-fill.svg deleted file mode 100644 index 69f3379..0000000 --- a/public/hse/assets/bootstrap/gift-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/gift.svg b/public/hse/assets/bootstrap/gift.svg deleted file mode 100644 index 663b87e..0000000 --- a/public/hse/assets/bootstrap/gift.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/git.svg b/public/hse/assets/bootstrap/git.svg deleted file mode 100644 index 092d23e..0000000 --- a/public/hse/assets/bootstrap/git.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/github.svg b/public/hse/assets/bootstrap/github.svg deleted file mode 100644 index bb4e45c..0000000 --- a/public/hse/assets/bootstrap/github.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/globe-americas.svg b/public/hse/assets/bootstrap/globe-americas.svg deleted file mode 100644 index f66f5fe..0000000 --- a/public/hse/assets/bootstrap/globe-americas.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/globe-asia-australia.svg b/public/hse/assets/bootstrap/globe-asia-australia.svg deleted file mode 100644 index e4715f1..0000000 --- a/public/hse/assets/bootstrap/globe-asia-australia.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/globe-central-south-asia.svg b/public/hse/assets/bootstrap/globe-central-south-asia.svg deleted file mode 100644 index d4699d2..0000000 --- a/public/hse/assets/bootstrap/globe-central-south-asia.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/globe-europe-africa.svg b/public/hse/assets/bootstrap/globe-europe-africa.svg deleted file mode 100644 index 3bd6c49..0000000 --- a/public/hse/assets/bootstrap/globe-europe-africa.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/globe.svg b/public/hse/assets/bootstrap/globe.svg deleted file mode 100644 index 96cf815..0000000 --- a/public/hse/assets/bootstrap/globe.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/globe2.svg b/public/hse/assets/bootstrap/globe2.svg deleted file mode 100644 index 150a01e..0000000 --- a/public/hse/assets/bootstrap/globe2.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/google-play.svg b/public/hse/assets/bootstrap/google-play.svg deleted file mode 100644 index a970e9a..0000000 --- a/public/hse/assets/bootstrap/google-play.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/google.svg b/public/hse/assets/bootstrap/google.svg deleted file mode 100644 index 47abd49..0000000 --- a/public/hse/assets/bootstrap/google.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/gpu-card.svg b/public/hse/assets/bootstrap/gpu-card.svg deleted file mode 100644 index b75ddce..0000000 --- a/public/hse/assets/bootstrap/gpu-card.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/graph-down-arrow.svg b/public/hse/assets/bootstrap/graph-down-arrow.svg deleted file mode 100644 index bf522b5..0000000 --- a/public/hse/assets/bootstrap/graph-down-arrow.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/graph-down.svg b/public/hse/assets/bootstrap/graph-down.svg deleted file mode 100644 index 55adb4f..0000000 --- a/public/hse/assets/bootstrap/graph-down.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/graph-up-arrow.svg b/public/hse/assets/bootstrap/graph-up-arrow.svg deleted file mode 100644 index fd582e4..0000000 --- a/public/hse/assets/bootstrap/graph-up-arrow.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/graph-up.svg b/public/hse/assets/bootstrap/graph-up.svg deleted file mode 100644 index a68bc9d..0000000 --- a/public/hse/assets/bootstrap/graph-up.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/grid-1x2-fill.svg b/public/hse/assets/bootstrap/grid-1x2-fill.svg deleted file mode 100644 index 1195117..0000000 --- a/public/hse/assets/bootstrap/grid-1x2-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/grid-1x2.svg b/public/hse/assets/bootstrap/grid-1x2.svg deleted file mode 100644 index dd36f54..0000000 --- a/public/hse/assets/bootstrap/grid-1x2.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/grid-3x2-gap-fill.svg b/public/hse/assets/bootstrap/grid-3x2-gap-fill.svg deleted file mode 100644 index 4fe8288..0000000 --- a/public/hse/assets/bootstrap/grid-3x2-gap-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/grid-3x2-gap.svg b/public/hse/assets/bootstrap/grid-3x2-gap.svg deleted file mode 100644 index a9e8689..0000000 --- a/public/hse/assets/bootstrap/grid-3x2-gap.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/grid-3x2.svg b/public/hse/assets/bootstrap/grid-3x2.svg deleted file mode 100644 index 6dd39fd..0000000 --- a/public/hse/assets/bootstrap/grid-3x2.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/grid-3x3-gap-fill.svg b/public/hse/assets/bootstrap/grid-3x3-gap-fill.svg deleted file mode 100644 index d29616c..0000000 --- a/public/hse/assets/bootstrap/grid-3x3-gap-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/grid-3x3-gap.svg b/public/hse/assets/bootstrap/grid-3x3-gap.svg deleted file mode 100644 index 675f428..0000000 --- a/public/hse/assets/bootstrap/grid-3x3-gap.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/grid-3x3.svg b/public/hse/assets/bootstrap/grid-3x3.svg deleted file mode 100644 index c40d98c..0000000 --- a/public/hse/assets/bootstrap/grid-3x3.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/grid-fill.svg b/public/hse/assets/bootstrap/grid-fill.svg deleted file mode 100644 index 202265f..0000000 --- a/public/hse/assets/bootstrap/grid-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/grid.svg b/public/hse/assets/bootstrap/grid.svg deleted file mode 100644 index bc50595..0000000 --- a/public/hse/assets/bootstrap/grid.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/grip-horizontal.svg b/public/hse/assets/bootstrap/grip-horizontal.svg deleted file mode 100644 index c4439af..0000000 --- a/public/hse/assets/bootstrap/grip-horizontal.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/grip-vertical.svg b/public/hse/assets/bootstrap/grip-vertical.svg deleted file mode 100644 index 0182ad9..0000000 --- a/public/hse/assets/bootstrap/grip-vertical.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/h-circle-fill.svg b/public/hse/assets/bootstrap/h-circle-fill.svg deleted file mode 100644 index 6a70736..0000000 --- a/public/hse/assets/bootstrap/h-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/h-circle.svg b/public/hse/assets/bootstrap/h-circle.svg deleted file mode 100644 index 6579c1f..0000000 --- a/public/hse/assets/bootstrap/h-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/h-square-fill.svg b/public/hse/assets/bootstrap/h-square-fill.svg deleted file mode 100644 index 51d11d1..0000000 --- a/public/hse/assets/bootstrap/h-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/h-square.svg b/public/hse/assets/bootstrap/h-square.svg deleted file mode 100644 index 2eac5d7..0000000 --- a/public/hse/assets/bootstrap/h-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/hammer.svg b/public/hse/assets/bootstrap/hammer.svg deleted file mode 100644 index d702c11..0000000 --- a/public/hse/assets/bootstrap/hammer.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/hand-index-fill.svg b/public/hse/assets/bootstrap/hand-index-fill.svg deleted file mode 100644 index ef94089..0000000 --- a/public/hse/assets/bootstrap/hand-index-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/hand-index-thumb-fill.svg b/public/hse/assets/bootstrap/hand-index-thumb-fill.svg deleted file mode 100644 index 43e958c..0000000 --- a/public/hse/assets/bootstrap/hand-index-thumb-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/hand-index-thumb.svg b/public/hse/assets/bootstrap/hand-index-thumb.svg deleted file mode 100644 index 699e505..0000000 --- a/public/hse/assets/bootstrap/hand-index-thumb.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/hand-index.svg b/public/hse/assets/bootstrap/hand-index.svg deleted file mode 100644 index 789622c..0000000 --- a/public/hse/assets/bootstrap/hand-index.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/hand-thumbs-down-fill.svg b/public/hse/assets/bootstrap/hand-thumbs-down-fill.svg deleted file mode 100644 index c2f51eb..0000000 --- a/public/hse/assets/bootstrap/hand-thumbs-down-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/hand-thumbs-down.svg b/public/hse/assets/bootstrap/hand-thumbs-down.svg deleted file mode 100644 index e8dadb5..0000000 --- a/public/hse/assets/bootstrap/hand-thumbs-down.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/hand-thumbs-up-fill.svg b/public/hse/assets/bootstrap/hand-thumbs-up-fill.svg deleted file mode 100644 index e7216e1..0000000 --- a/public/hse/assets/bootstrap/hand-thumbs-up-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/hand-thumbs-up.svg b/public/hse/assets/bootstrap/hand-thumbs-up.svg deleted file mode 100644 index 0d410a1..0000000 --- a/public/hse/assets/bootstrap/hand-thumbs-up.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/handbag-fill.svg b/public/hse/assets/bootstrap/handbag-fill.svg deleted file mode 100644 index 5d4367c..0000000 --- a/public/hse/assets/bootstrap/handbag-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/handbag.svg b/public/hse/assets/bootstrap/handbag.svg deleted file mode 100644 index 99e5904..0000000 --- a/public/hse/assets/bootstrap/handbag.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/hash.svg b/public/hse/assets/bootstrap/hash.svg deleted file mode 100644 index 4621b1d..0000000 --- a/public/hse/assets/bootstrap/hash.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/hdd-fill.svg b/public/hse/assets/bootstrap/hdd-fill.svg deleted file mode 100644 index 9bdc467..0000000 --- a/public/hse/assets/bootstrap/hdd-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/hdd-network-fill.svg b/public/hse/assets/bootstrap/hdd-network-fill.svg deleted file mode 100644 index 403d472..0000000 --- a/public/hse/assets/bootstrap/hdd-network-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/hdd-network.svg b/public/hse/assets/bootstrap/hdd-network.svg deleted file mode 100644 index f0db305..0000000 --- a/public/hse/assets/bootstrap/hdd-network.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/hdd-rack-fill.svg b/public/hse/assets/bootstrap/hdd-rack-fill.svg deleted file mode 100644 index bb45078..0000000 --- a/public/hse/assets/bootstrap/hdd-rack-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/hdd-rack.svg b/public/hse/assets/bootstrap/hdd-rack.svg deleted file mode 100644 index 480d0d9..0000000 --- a/public/hse/assets/bootstrap/hdd-rack.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/hdd-stack-fill.svg b/public/hse/assets/bootstrap/hdd-stack-fill.svg deleted file mode 100644 index c81687a..0000000 --- a/public/hse/assets/bootstrap/hdd-stack-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/hdd-stack.svg b/public/hse/assets/bootstrap/hdd-stack.svg deleted file mode 100644 index 2f74d3b..0000000 --- a/public/hse/assets/bootstrap/hdd-stack.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/hdd.svg b/public/hse/assets/bootstrap/hdd.svg deleted file mode 100644 index 7dd6700..0000000 --- a/public/hse/assets/bootstrap/hdd.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/hdmi-fill.svg b/public/hse/assets/bootstrap/hdmi-fill.svg deleted file mode 100644 index 9b52d61..0000000 --- a/public/hse/assets/bootstrap/hdmi-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/hdmi.svg b/public/hse/assets/bootstrap/hdmi.svg deleted file mode 100644 index b8a4b41..0000000 --- a/public/hse/assets/bootstrap/hdmi.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/headphones.svg b/public/hse/assets/bootstrap/headphones.svg deleted file mode 100644 index c2c1d6f..0000000 --- a/public/hse/assets/bootstrap/headphones.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/headset-vr.svg b/public/hse/assets/bootstrap/headset-vr.svg deleted file mode 100644 index 9f07b76..0000000 --- a/public/hse/assets/bootstrap/headset-vr.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/headset.svg b/public/hse/assets/bootstrap/headset.svg deleted file mode 100644 index 5369974..0000000 --- a/public/hse/assets/bootstrap/headset.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/heart-arrow.svg b/public/hse/assets/bootstrap/heart-arrow.svg deleted file mode 100644 index 0407ed6..0000000 --- a/public/hse/assets/bootstrap/heart-arrow.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/heart-fill.svg b/public/hse/assets/bootstrap/heart-fill.svg deleted file mode 100644 index 4026252..0000000 --- a/public/hse/assets/bootstrap/heart-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/heart-half.svg b/public/hse/assets/bootstrap/heart-half.svg deleted file mode 100644 index 1474a72..0000000 --- a/public/hse/assets/bootstrap/heart-half.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/heart-pulse-fill.svg b/public/hse/assets/bootstrap/heart-pulse-fill.svg deleted file mode 100644 index b95a18b..0000000 --- a/public/hse/assets/bootstrap/heart-pulse-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/heart-pulse.svg b/public/hse/assets/bootstrap/heart-pulse.svg deleted file mode 100644 index 16aaaaf..0000000 --- a/public/hse/assets/bootstrap/heart-pulse.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/heart.svg b/public/hse/assets/bootstrap/heart.svg deleted file mode 100644 index d650006..0000000 --- a/public/hse/assets/bootstrap/heart.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/heartbreak-fill.svg b/public/hse/assets/bootstrap/heartbreak-fill.svg deleted file mode 100644 index b669ad9..0000000 --- a/public/hse/assets/bootstrap/heartbreak-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/heartbreak.svg b/public/hse/assets/bootstrap/heartbreak.svg deleted file mode 100644 index 7fe62a5..0000000 --- a/public/hse/assets/bootstrap/heartbreak.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/hearts.svg b/public/hse/assets/bootstrap/hearts.svg deleted file mode 100644 index c1c52e4..0000000 --- a/public/hse/assets/bootstrap/hearts.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/heptagon-fill.svg b/public/hse/assets/bootstrap/heptagon-fill.svg deleted file mode 100644 index ad8e058..0000000 --- a/public/hse/assets/bootstrap/heptagon-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/heptagon-half.svg b/public/hse/assets/bootstrap/heptagon-half.svg deleted file mode 100644 index 5753b62..0000000 --- a/public/hse/assets/bootstrap/heptagon-half.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/heptagon.svg b/public/hse/assets/bootstrap/heptagon.svg deleted file mode 100644 index e85a0bd..0000000 --- a/public/hse/assets/bootstrap/heptagon.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/hexagon-fill.svg b/public/hse/assets/bootstrap/hexagon-fill.svg deleted file mode 100644 index afd7870..0000000 --- a/public/hse/assets/bootstrap/hexagon-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/hexagon-half.svg b/public/hse/assets/bootstrap/hexagon-half.svg deleted file mode 100644 index a9fc136..0000000 --- a/public/hse/assets/bootstrap/hexagon-half.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/hexagon.svg b/public/hse/assets/bootstrap/hexagon.svg deleted file mode 100644 index f6601f2..0000000 --- a/public/hse/assets/bootstrap/hexagon.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/hospital-fill.svg b/public/hse/assets/bootstrap/hospital-fill.svg deleted file mode 100644 index a932133..0000000 --- a/public/hse/assets/bootstrap/hospital-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/hospital.svg b/public/hse/assets/bootstrap/hospital.svg deleted file mode 100644 index 5168a29..0000000 --- a/public/hse/assets/bootstrap/hospital.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/hourglass-bottom.svg b/public/hse/assets/bootstrap/hourglass-bottom.svg deleted file mode 100644 index 8ce8394..0000000 --- a/public/hse/assets/bootstrap/hourglass-bottom.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/hourglass-split.svg b/public/hse/assets/bootstrap/hourglass-split.svg deleted file mode 100644 index b8bba9b..0000000 --- a/public/hse/assets/bootstrap/hourglass-split.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/hourglass-top.svg b/public/hse/assets/bootstrap/hourglass-top.svg deleted file mode 100644 index f471084..0000000 --- a/public/hse/assets/bootstrap/hourglass-top.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/hourglass.svg b/public/hse/assets/bootstrap/hourglass.svg deleted file mode 100644 index cecfa7e..0000000 --- a/public/hse/assets/bootstrap/hourglass.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/house-add-fill.svg b/public/hse/assets/bootstrap/house-add-fill.svg deleted file mode 100644 index e4733b5..0000000 --- a/public/hse/assets/bootstrap/house-add-fill.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/house-add.svg b/public/hse/assets/bootstrap/house-add.svg deleted file mode 100644 index 2964397..0000000 --- a/public/hse/assets/bootstrap/house-add.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/house-check-fill.svg b/public/hse/assets/bootstrap/house-check-fill.svg deleted file mode 100644 index 7546342..0000000 --- a/public/hse/assets/bootstrap/house-check-fill.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/house-check.svg b/public/hse/assets/bootstrap/house-check.svg deleted file mode 100644 index a30080a..0000000 --- a/public/hse/assets/bootstrap/house-check.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/house-dash-fill.svg b/public/hse/assets/bootstrap/house-dash-fill.svg deleted file mode 100644 index 5465ef4..0000000 --- a/public/hse/assets/bootstrap/house-dash-fill.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/house-dash.svg b/public/hse/assets/bootstrap/house-dash.svg deleted file mode 100644 index fa6fb26..0000000 --- a/public/hse/assets/bootstrap/house-dash.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/house-door-fill.svg b/public/hse/assets/bootstrap/house-door-fill.svg deleted file mode 100644 index a260a70..0000000 --- a/public/hse/assets/bootstrap/house-door-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/house-door.svg b/public/hse/assets/bootstrap/house-door.svg deleted file mode 100644 index d411105..0000000 --- a/public/hse/assets/bootstrap/house-door.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/house-down-fill.svg b/public/hse/assets/bootstrap/house-down-fill.svg deleted file mode 100644 index d3bf68f..0000000 --- a/public/hse/assets/bootstrap/house-down-fill.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/house-down.svg b/public/hse/assets/bootstrap/house-down.svg deleted file mode 100644 index 6de3d79..0000000 --- a/public/hse/assets/bootstrap/house-down.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/house-exclamation-fill.svg b/public/hse/assets/bootstrap/house-exclamation-fill.svg deleted file mode 100644 index 7433738..0000000 --- a/public/hse/assets/bootstrap/house-exclamation-fill.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/house-exclamation.svg b/public/hse/assets/bootstrap/house-exclamation.svg deleted file mode 100644 index 301d981..0000000 --- a/public/hse/assets/bootstrap/house-exclamation.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/house-fill.svg b/public/hse/assets/bootstrap/house-fill.svg deleted file mode 100644 index 8932667..0000000 --- a/public/hse/assets/bootstrap/house-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/house-gear-fill.svg b/public/hse/assets/bootstrap/house-gear-fill.svg deleted file mode 100644 index 001ea96..0000000 --- a/public/hse/assets/bootstrap/house-gear-fill.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/house-gear.svg b/public/hse/assets/bootstrap/house-gear.svg deleted file mode 100644 index c7f9d43..0000000 --- a/public/hse/assets/bootstrap/house-gear.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/house-heart-fill.svg b/public/hse/assets/bootstrap/house-heart-fill.svg deleted file mode 100644 index 6d874fc..0000000 --- a/public/hse/assets/bootstrap/house-heart-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/house-heart.svg b/public/hse/assets/bootstrap/house-heart.svg deleted file mode 100644 index 26b2395..0000000 --- a/public/hse/assets/bootstrap/house-heart.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/house-lock-fill.svg b/public/hse/assets/bootstrap/house-lock-fill.svg deleted file mode 100644 index 842b914..0000000 --- a/public/hse/assets/bootstrap/house-lock-fill.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/house-lock.svg b/public/hse/assets/bootstrap/house-lock.svg deleted file mode 100644 index e6eb968..0000000 --- a/public/hse/assets/bootstrap/house-lock.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/house-slash-fill.svg b/public/hse/assets/bootstrap/house-slash-fill.svg deleted file mode 100644 index 20ea07b..0000000 --- a/public/hse/assets/bootstrap/house-slash-fill.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/house-slash.svg b/public/hse/assets/bootstrap/house-slash.svg deleted file mode 100644 index 3e1cb66..0000000 --- a/public/hse/assets/bootstrap/house-slash.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/house-up-fill.svg b/public/hse/assets/bootstrap/house-up-fill.svg deleted file mode 100644 index 3e6713e..0000000 --- a/public/hse/assets/bootstrap/house-up-fill.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/house-up.svg b/public/hse/assets/bootstrap/house-up.svg deleted file mode 100644 index 0a8deb3..0000000 --- a/public/hse/assets/bootstrap/house-up.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/house-x-fill.svg b/public/hse/assets/bootstrap/house-x-fill.svg deleted file mode 100644 index 00483c4..0000000 --- a/public/hse/assets/bootstrap/house-x-fill.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/house-x.svg b/public/hse/assets/bootstrap/house-x.svg deleted file mode 100644 index 88b2825..0000000 --- a/public/hse/assets/bootstrap/house-x.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/house.svg b/public/hse/assets/bootstrap/house.svg deleted file mode 100644 index 77ac144..0000000 --- a/public/hse/assets/bootstrap/house.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/houses-fill.svg b/public/hse/assets/bootstrap/houses-fill.svg deleted file mode 100644 index 30a72d8..0000000 --- a/public/hse/assets/bootstrap/houses-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/houses.svg b/public/hse/assets/bootstrap/houses.svg deleted file mode 100644 index d66b4da..0000000 --- a/public/hse/assets/bootstrap/houses.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/hr.svg b/public/hse/assets/bootstrap/hr.svg deleted file mode 100644 index b6f2e33..0000000 --- a/public/hse/assets/bootstrap/hr.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/hurricane.svg b/public/hse/assets/bootstrap/hurricane.svg deleted file mode 100644 index e21aaec..0000000 --- a/public/hse/assets/bootstrap/hurricane.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/hypnotize.svg b/public/hse/assets/bootstrap/hypnotize.svg deleted file mode 100644 index baa2298..0000000 --- a/public/hse/assets/bootstrap/hypnotize.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/image-alt.svg b/public/hse/assets/bootstrap/image-alt.svg deleted file mode 100644 index 98142b2..0000000 --- a/public/hse/assets/bootstrap/image-alt.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/image-fill.svg b/public/hse/assets/bootstrap/image-fill.svg deleted file mode 100644 index 33c40a1..0000000 --- a/public/hse/assets/bootstrap/image-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/image.svg b/public/hse/assets/bootstrap/image.svg deleted file mode 100644 index facacee..0000000 --- a/public/hse/assets/bootstrap/image.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/images.svg b/public/hse/assets/bootstrap/images.svg deleted file mode 100644 index b35eceb..0000000 --- a/public/hse/assets/bootstrap/images.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/inbox-fill.svg b/public/hse/assets/bootstrap/inbox-fill.svg deleted file mode 100644 index bf5c8c9..0000000 --- a/public/hse/assets/bootstrap/inbox-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/inbox.svg b/public/hse/assets/bootstrap/inbox.svg deleted file mode 100644 index 59ad2d7..0000000 --- a/public/hse/assets/bootstrap/inbox.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/inboxes-fill.svg b/public/hse/assets/bootstrap/inboxes-fill.svg deleted file mode 100644 index 27447dc..0000000 --- a/public/hse/assets/bootstrap/inboxes-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/inboxes.svg b/public/hse/assets/bootstrap/inboxes.svg deleted file mode 100644 index f23f0ec..0000000 --- a/public/hse/assets/bootstrap/inboxes.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/incognito.svg b/public/hse/assets/bootstrap/incognito.svg deleted file mode 100644 index fc9f6dc..0000000 --- a/public/hse/assets/bootstrap/incognito.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/indent.svg b/public/hse/assets/bootstrap/indent.svg deleted file mode 100644 index 025acef..0000000 --- a/public/hse/assets/bootstrap/indent.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/infinity.svg b/public/hse/assets/bootstrap/infinity.svg deleted file mode 100644 index e9dd437..0000000 --- a/public/hse/assets/bootstrap/infinity.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/info-circle-fill.svg b/public/hse/assets/bootstrap/info-circle-fill.svg deleted file mode 100644 index 9d38231..0000000 --- a/public/hse/assets/bootstrap/info-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/info-circle.svg b/public/hse/assets/bootstrap/info-circle.svg deleted file mode 100644 index 8f48f86..0000000 --- a/public/hse/assets/bootstrap/info-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/info-lg.svg b/public/hse/assets/bootstrap/info-lg.svg deleted file mode 100644 index d1b988e..0000000 --- a/public/hse/assets/bootstrap/info-lg.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/info-square-fill.svg b/public/hse/assets/bootstrap/info-square-fill.svg deleted file mode 100644 index c2e5a66..0000000 --- a/public/hse/assets/bootstrap/info-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/info-square.svg b/public/hse/assets/bootstrap/info-square.svg deleted file mode 100644 index 71e2818..0000000 --- a/public/hse/assets/bootstrap/info-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/info.svg b/public/hse/assets/bootstrap/info.svg deleted file mode 100644 index 9d061b4..0000000 --- a/public/hse/assets/bootstrap/info.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/input-cursor-text.svg b/public/hse/assets/bootstrap/input-cursor-text.svg deleted file mode 100644 index f212111..0000000 --- a/public/hse/assets/bootstrap/input-cursor-text.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/input-cursor.svg b/public/hse/assets/bootstrap/input-cursor.svg deleted file mode 100644 index 3a89bb7..0000000 --- a/public/hse/assets/bootstrap/input-cursor.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/instagram.svg b/public/hse/assets/bootstrap/instagram.svg deleted file mode 100644 index 0b5c5ce..0000000 --- a/public/hse/assets/bootstrap/instagram.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/intersect.svg b/public/hse/assets/bootstrap/intersect.svg deleted file mode 100644 index 2d8c329..0000000 --- a/public/hse/assets/bootstrap/intersect.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/journal-album.svg b/public/hse/assets/bootstrap/journal-album.svg deleted file mode 100644 index 2504b3d..0000000 --- a/public/hse/assets/bootstrap/journal-album.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/journal-arrow-down.svg b/public/hse/assets/bootstrap/journal-arrow-down.svg deleted file mode 100644 index 79c313d..0000000 --- a/public/hse/assets/bootstrap/journal-arrow-down.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/journal-arrow-up.svg b/public/hse/assets/bootstrap/journal-arrow-up.svg deleted file mode 100644 index 8423461..0000000 --- a/public/hse/assets/bootstrap/journal-arrow-up.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/journal-bookmark-fill.svg b/public/hse/assets/bootstrap/journal-bookmark-fill.svg deleted file mode 100644 index 03e2476..0000000 --- a/public/hse/assets/bootstrap/journal-bookmark-fill.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/journal-bookmark.svg b/public/hse/assets/bootstrap/journal-bookmark.svg deleted file mode 100644 index 6652764..0000000 --- a/public/hse/assets/bootstrap/journal-bookmark.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/journal-check.svg b/public/hse/assets/bootstrap/journal-check.svg deleted file mode 100644 index 41b97e9..0000000 --- a/public/hse/assets/bootstrap/journal-check.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/journal-code.svg b/public/hse/assets/bootstrap/journal-code.svg deleted file mode 100644 index 82098b9..0000000 --- a/public/hse/assets/bootstrap/journal-code.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/journal-medical.svg b/public/hse/assets/bootstrap/journal-medical.svg deleted file mode 100644 index 5500110..0000000 --- a/public/hse/assets/bootstrap/journal-medical.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/journal-minus.svg b/public/hse/assets/bootstrap/journal-minus.svg deleted file mode 100644 index c8cd4d8..0000000 --- a/public/hse/assets/bootstrap/journal-minus.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/journal-plus.svg b/public/hse/assets/bootstrap/journal-plus.svg deleted file mode 100644 index fa6d702..0000000 --- a/public/hse/assets/bootstrap/journal-plus.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/journal-richtext.svg b/public/hse/assets/bootstrap/journal-richtext.svg deleted file mode 100644 index 14b0e1f..0000000 --- a/public/hse/assets/bootstrap/journal-richtext.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/journal-text.svg b/public/hse/assets/bootstrap/journal-text.svg deleted file mode 100644 index 9b66f43..0000000 --- a/public/hse/assets/bootstrap/journal-text.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/journal-x.svg b/public/hse/assets/bootstrap/journal-x.svg deleted file mode 100644 index 2ca24f4..0000000 --- a/public/hse/assets/bootstrap/journal-x.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/journal.svg b/public/hse/assets/bootstrap/journal.svg deleted file mode 100644 index 941c987..0000000 --- a/public/hse/assets/bootstrap/journal.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/journals.svg b/public/hse/assets/bootstrap/journals.svg deleted file mode 100644 index 03f6dad..0000000 --- a/public/hse/assets/bootstrap/journals.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/joystick.svg b/public/hse/assets/bootstrap/joystick.svg deleted file mode 100644 index a8a9027..0000000 --- a/public/hse/assets/bootstrap/joystick.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/justify-left.svg b/public/hse/assets/bootstrap/justify-left.svg deleted file mode 100644 index 68859b8..0000000 --- a/public/hse/assets/bootstrap/justify-left.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/justify-right.svg b/public/hse/assets/bootstrap/justify-right.svg deleted file mode 100644 index 1efe4f3..0000000 --- a/public/hse/assets/bootstrap/justify-right.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/justify.svg b/public/hse/assets/bootstrap/justify.svg deleted file mode 100644 index 009bd72..0000000 --- a/public/hse/assets/bootstrap/justify.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/kanban-fill.svg b/public/hse/assets/bootstrap/kanban-fill.svg deleted file mode 100644 index d633a53..0000000 --- a/public/hse/assets/bootstrap/kanban-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/kanban.svg b/public/hse/assets/bootstrap/kanban.svg deleted file mode 100644 index c5cdaaf..0000000 --- a/public/hse/assets/bootstrap/kanban.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/key-fill.svg b/public/hse/assets/bootstrap/key-fill.svg deleted file mode 100644 index 25a6d45..0000000 --- a/public/hse/assets/bootstrap/key-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/key.svg b/public/hse/assets/bootstrap/key.svg deleted file mode 100644 index dbaae3f..0000000 --- a/public/hse/assets/bootstrap/key.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/keyboard-fill.svg b/public/hse/assets/bootstrap/keyboard-fill.svg deleted file mode 100644 index 876321d..0000000 --- a/public/hse/assets/bootstrap/keyboard-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/keyboard.svg b/public/hse/assets/bootstrap/keyboard.svg deleted file mode 100644 index 996c1eb..0000000 --- a/public/hse/assets/bootstrap/keyboard.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/ladder.svg b/public/hse/assets/bootstrap/ladder.svg deleted file mode 100644 index fd9182a..0000000 --- a/public/hse/assets/bootstrap/ladder.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/lamp-fill.svg b/public/hse/assets/bootstrap/lamp-fill.svg deleted file mode 100644 index ff91f4b..0000000 --- a/public/hse/assets/bootstrap/lamp-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/lamp.svg b/public/hse/assets/bootstrap/lamp.svg deleted file mode 100644 index 6c50a70..0000000 --- a/public/hse/assets/bootstrap/lamp.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/laptop-fill.svg b/public/hse/assets/bootstrap/laptop-fill.svg deleted file mode 100644 index 5b1755d..0000000 --- a/public/hse/assets/bootstrap/laptop-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/laptop.svg b/public/hse/assets/bootstrap/laptop.svg deleted file mode 100644 index 0fc463d..0000000 --- a/public/hse/assets/bootstrap/laptop.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/layer-backward.svg b/public/hse/assets/bootstrap/layer-backward.svg deleted file mode 100644 index 073034a..0000000 --- a/public/hse/assets/bootstrap/layer-backward.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/layer-forward.svg b/public/hse/assets/bootstrap/layer-forward.svg deleted file mode 100644 index ffc6e2a..0000000 --- a/public/hse/assets/bootstrap/layer-forward.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/layers-fill.svg b/public/hse/assets/bootstrap/layers-fill.svg deleted file mode 100644 index 8af0b1c..0000000 --- a/public/hse/assets/bootstrap/layers-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/layers-half.svg b/public/hse/assets/bootstrap/layers-half.svg deleted file mode 100644 index a054e25..0000000 --- a/public/hse/assets/bootstrap/layers-half.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/layers.svg b/public/hse/assets/bootstrap/layers.svg deleted file mode 100644 index ac2f5b2..0000000 --- a/public/hse/assets/bootstrap/layers.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/layout-sidebar-inset-reverse.svg b/public/hse/assets/bootstrap/layout-sidebar-inset-reverse.svg deleted file mode 100644 index 5b6f324..0000000 --- a/public/hse/assets/bootstrap/layout-sidebar-inset-reverse.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/layout-sidebar-inset.svg b/public/hse/assets/bootstrap/layout-sidebar-inset.svg deleted file mode 100644 index 8dc0243..0000000 --- a/public/hse/assets/bootstrap/layout-sidebar-inset.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/layout-sidebar-reverse.svg b/public/hse/assets/bootstrap/layout-sidebar-reverse.svg deleted file mode 100644 index 8ab9509..0000000 --- a/public/hse/assets/bootstrap/layout-sidebar-reverse.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/layout-sidebar.svg b/public/hse/assets/bootstrap/layout-sidebar.svg deleted file mode 100644 index 1cfc86e..0000000 --- a/public/hse/assets/bootstrap/layout-sidebar.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/layout-split.svg b/public/hse/assets/bootstrap/layout-split.svg deleted file mode 100644 index 71f33d2..0000000 --- a/public/hse/assets/bootstrap/layout-split.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/layout-text-sidebar-reverse.svg b/public/hse/assets/bootstrap/layout-text-sidebar-reverse.svg deleted file mode 100644 index 46252d5..0000000 --- a/public/hse/assets/bootstrap/layout-text-sidebar-reverse.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/layout-text-sidebar.svg b/public/hse/assets/bootstrap/layout-text-sidebar.svg deleted file mode 100644 index 5effada..0000000 --- a/public/hse/assets/bootstrap/layout-text-sidebar.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/layout-text-window-reverse.svg b/public/hse/assets/bootstrap/layout-text-window-reverse.svg deleted file mode 100644 index fb34840..0000000 --- a/public/hse/assets/bootstrap/layout-text-window-reverse.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/layout-text-window.svg b/public/hse/assets/bootstrap/layout-text-window.svg deleted file mode 100644 index 0aef110..0000000 --- a/public/hse/assets/bootstrap/layout-text-window.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/layout-three-columns.svg b/public/hse/assets/bootstrap/layout-three-columns.svg deleted file mode 100644 index 6d358d6..0000000 --- a/public/hse/assets/bootstrap/layout-three-columns.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/layout-wtf.svg b/public/hse/assets/bootstrap/layout-wtf.svg deleted file mode 100644 index b603f8f..0000000 --- a/public/hse/assets/bootstrap/layout-wtf.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/life-preserver.svg b/public/hse/assets/bootstrap/life-preserver.svg deleted file mode 100644 index 6466ea2..0000000 --- a/public/hse/assets/bootstrap/life-preserver.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/lightbulb-fill.svg b/public/hse/assets/bootstrap/lightbulb-fill.svg deleted file mode 100644 index 9903950..0000000 --- a/public/hse/assets/bootstrap/lightbulb-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/lightbulb-off-fill.svg b/public/hse/assets/bootstrap/lightbulb-off-fill.svg deleted file mode 100644 index 7d9600e..0000000 --- a/public/hse/assets/bootstrap/lightbulb-off-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/lightbulb-off.svg b/public/hse/assets/bootstrap/lightbulb-off.svg deleted file mode 100644 index 5675e9c..0000000 --- a/public/hse/assets/bootstrap/lightbulb-off.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/lightbulb.svg b/public/hse/assets/bootstrap/lightbulb.svg deleted file mode 100644 index c13f627..0000000 --- a/public/hse/assets/bootstrap/lightbulb.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/lightning-charge-fill.svg b/public/hse/assets/bootstrap/lightning-charge-fill.svg deleted file mode 100644 index 5e197fb..0000000 --- a/public/hse/assets/bootstrap/lightning-charge-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/lightning-charge.svg b/public/hse/assets/bootstrap/lightning-charge.svg deleted file mode 100644 index 8a97432..0000000 --- a/public/hse/assets/bootstrap/lightning-charge.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/lightning-fill.svg b/public/hse/assets/bootstrap/lightning-fill.svg deleted file mode 100644 index 4d05a2b..0000000 --- a/public/hse/assets/bootstrap/lightning-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/lightning.svg b/public/hse/assets/bootstrap/lightning.svg deleted file mode 100644 index 8737060..0000000 --- a/public/hse/assets/bootstrap/lightning.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/line.svg b/public/hse/assets/bootstrap/line.svg deleted file mode 100644 index bedc051..0000000 --- a/public/hse/assets/bootstrap/line.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/link-45deg.svg b/public/hse/assets/bootstrap/link-45deg.svg deleted file mode 100644 index 127956a..0000000 --- a/public/hse/assets/bootstrap/link-45deg.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/link.svg b/public/hse/assets/bootstrap/link.svg deleted file mode 100644 index df35bc8..0000000 --- a/public/hse/assets/bootstrap/link.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/linkedin.svg b/public/hse/assets/bootstrap/linkedin.svg deleted file mode 100644 index 4c4efe5..0000000 --- a/public/hse/assets/bootstrap/linkedin.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/list-check.svg b/public/hse/assets/bootstrap/list-check.svg deleted file mode 100644 index 34dd420..0000000 --- a/public/hse/assets/bootstrap/list-check.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/list-columns-reverse.svg b/public/hse/assets/bootstrap/list-columns-reverse.svg deleted file mode 100644 index 2cb5078..0000000 --- a/public/hse/assets/bootstrap/list-columns-reverse.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/list-columns.svg b/public/hse/assets/bootstrap/list-columns.svg deleted file mode 100644 index d04a30f..0000000 --- a/public/hse/assets/bootstrap/list-columns.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/list-nested.svg b/public/hse/assets/bootstrap/list-nested.svg deleted file mode 100644 index 21c9a7d..0000000 --- a/public/hse/assets/bootstrap/list-nested.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/list-ol.svg b/public/hse/assets/bootstrap/list-ol.svg deleted file mode 100644 index 5782568..0000000 --- a/public/hse/assets/bootstrap/list-ol.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/list-stars.svg b/public/hse/assets/bootstrap/list-stars.svg deleted file mode 100644 index 88dce52..0000000 --- a/public/hse/assets/bootstrap/list-stars.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/list-task.svg b/public/hse/assets/bootstrap/list-task.svg deleted file mode 100644 index 8118190..0000000 --- a/public/hse/assets/bootstrap/list-task.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/list-ul.svg b/public/hse/assets/bootstrap/list-ul.svg deleted file mode 100644 index 217d153..0000000 --- a/public/hse/assets/bootstrap/list-ul.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/list.svg b/public/hse/assets/bootstrap/list.svg deleted file mode 100644 index e039056..0000000 --- a/public/hse/assets/bootstrap/list.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/lock-fill.svg b/public/hse/assets/bootstrap/lock-fill.svg deleted file mode 100644 index 9fb8f7b..0000000 --- a/public/hse/assets/bootstrap/lock-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/lock.svg b/public/hse/assets/bootstrap/lock.svg deleted file mode 100644 index b50a68e..0000000 --- a/public/hse/assets/bootstrap/lock.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/lungs-fill.svg b/public/hse/assets/bootstrap/lungs-fill.svg deleted file mode 100644 index a3b555d..0000000 --- a/public/hse/assets/bootstrap/lungs-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/lungs.svg b/public/hse/assets/bootstrap/lungs.svg deleted file mode 100644 index 5370852..0000000 --- a/public/hse/assets/bootstrap/lungs.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/magic.svg b/public/hse/assets/bootstrap/magic.svg deleted file mode 100644 index 3df2ec0..0000000 --- a/public/hse/assets/bootstrap/magic.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/magnet-fill.svg b/public/hse/assets/bootstrap/magnet-fill.svg deleted file mode 100644 index 9ca1865..0000000 --- a/public/hse/assets/bootstrap/magnet-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/magnet.svg b/public/hse/assets/bootstrap/magnet.svg deleted file mode 100644 index aab1763..0000000 --- a/public/hse/assets/bootstrap/magnet.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/mailbox.svg b/public/hse/assets/bootstrap/mailbox.svg deleted file mode 100644 index e2ac2f9..0000000 --- a/public/hse/assets/bootstrap/mailbox.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/mailbox2.svg b/public/hse/assets/bootstrap/mailbox2.svg deleted file mode 100644 index 60a523b..0000000 --- a/public/hse/assets/bootstrap/mailbox2.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/map-fill.svg b/public/hse/assets/bootstrap/map-fill.svg deleted file mode 100644 index 6097c5f..0000000 --- a/public/hse/assets/bootstrap/map-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/map.svg b/public/hse/assets/bootstrap/map.svg deleted file mode 100644 index f9dbb08..0000000 --- a/public/hse/assets/bootstrap/map.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/markdown-fill.svg b/public/hse/assets/bootstrap/markdown-fill.svg deleted file mode 100644 index b87e236..0000000 --- a/public/hse/assets/bootstrap/markdown-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/markdown.svg b/public/hse/assets/bootstrap/markdown.svg deleted file mode 100644 index f9933a6..0000000 --- a/public/hse/assets/bootstrap/markdown.svg +++ /dev/null @@ -1,6 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/mask.svg b/public/hse/assets/bootstrap/mask.svg deleted file mode 100644 index 3bfe141..0000000 --- a/public/hse/assets/bootstrap/mask.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/mastodon.svg b/public/hse/assets/bootstrap/mastodon.svg deleted file mode 100644 index 23b34f5..0000000 --- a/public/hse/assets/bootstrap/mastodon.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/medium.svg b/public/hse/assets/bootstrap/medium.svg deleted file mode 100644 index cc46876..0000000 --- a/public/hse/assets/bootstrap/medium.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/megaphone-fill.svg b/public/hse/assets/bootstrap/megaphone-fill.svg deleted file mode 100644 index 237e814..0000000 --- a/public/hse/assets/bootstrap/megaphone-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/megaphone.svg b/public/hse/assets/bootstrap/megaphone.svg deleted file mode 100644 index 834083c..0000000 --- a/public/hse/assets/bootstrap/megaphone.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/memory.svg b/public/hse/assets/bootstrap/memory.svg deleted file mode 100644 index cdc2943..0000000 --- a/public/hse/assets/bootstrap/memory.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/menu-app-fill.svg b/public/hse/assets/bootstrap/menu-app-fill.svg deleted file mode 100644 index c41c6fb..0000000 --- a/public/hse/assets/bootstrap/menu-app-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/menu-app.svg b/public/hse/assets/bootstrap/menu-app.svg deleted file mode 100644 index 36e57df..0000000 --- a/public/hse/assets/bootstrap/menu-app.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/menu-button-fill.svg b/public/hse/assets/bootstrap/menu-button-fill.svg deleted file mode 100644 index 034b64d..0000000 --- a/public/hse/assets/bootstrap/menu-button-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/menu-button-wide-fill.svg b/public/hse/assets/bootstrap/menu-button-wide-fill.svg deleted file mode 100644 index d6e17da..0000000 --- a/public/hse/assets/bootstrap/menu-button-wide-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/menu-button-wide.svg b/public/hse/assets/bootstrap/menu-button-wide.svg deleted file mode 100644 index d67ba6a..0000000 --- a/public/hse/assets/bootstrap/menu-button-wide.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/menu-button.svg b/public/hse/assets/bootstrap/menu-button.svg deleted file mode 100644 index 4e0fff9..0000000 --- a/public/hse/assets/bootstrap/menu-button.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/menu-down.svg b/public/hse/assets/bootstrap/menu-down.svg deleted file mode 100644 index b2d84b2..0000000 --- a/public/hse/assets/bootstrap/menu-down.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/menu-up.svg b/public/hse/assets/bootstrap/menu-up.svg deleted file mode 100644 index fb35e8d..0000000 --- a/public/hse/assets/bootstrap/menu-up.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/messenger.svg b/public/hse/assets/bootstrap/messenger.svg deleted file mode 100644 index 5c6d37d..0000000 --- a/public/hse/assets/bootstrap/messenger.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/meta.svg b/public/hse/assets/bootstrap/meta.svg deleted file mode 100644 index 2c6885d..0000000 --- a/public/hse/assets/bootstrap/meta.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/mic-fill.svg b/public/hse/assets/bootstrap/mic-fill.svg deleted file mode 100644 index 9be58e9..0000000 --- a/public/hse/assets/bootstrap/mic-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/mic-mute-fill.svg b/public/hse/assets/bootstrap/mic-mute-fill.svg deleted file mode 100644 index cc325a0..0000000 --- a/public/hse/assets/bootstrap/mic-mute-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/mic-mute.svg b/public/hse/assets/bootstrap/mic-mute.svg deleted file mode 100644 index 5a520a1..0000000 --- a/public/hse/assets/bootstrap/mic-mute.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/mic.svg b/public/hse/assets/bootstrap/mic.svg deleted file mode 100644 index 57be2e5..0000000 --- a/public/hse/assets/bootstrap/mic.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/microsoft-teams.svg b/public/hse/assets/bootstrap/microsoft-teams.svg deleted file mode 100644 index e0cc253..0000000 --- a/public/hse/assets/bootstrap/microsoft-teams.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/microsoft.svg b/public/hse/assets/bootstrap/microsoft.svg deleted file mode 100644 index d28281f..0000000 --- a/public/hse/assets/bootstrap/microsoft.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/minecart-loaded.svg b/public/hse/assets/bootstrap/minecart-loaded.svg deleted file mode 100644 index 8a75457..0000000 --- a/public/hse/assets/bootstrap/minecart-loaded.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/minecart.svg b/public/hse/assets/bootstrap/minecart.svg deleted file mode 100644 index 7f3ad00..0000000 --- a/public/hse/assets/bootstrap/minecart.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/modem-fill.svg b/public/hse/assets/bootstrap/modem-fill.svg deleted file mode 100644 index 1fe97be..0000000 --- a/public/hse/assets/bootstrap/modem-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/modem.svg b/public/hse/assets/bootstrap/modem.svg deleted file mode 100644 index 873090d..0000000 --- a/public/hse/assets/bootstrap/modem.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/moisture.svg b/public/hse/assets/bootstrap/moisture.svg deleted file mode 100644 index 732f4ac..0000000 --- a/public/hse/assets/bootstrap/moisture.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/moon-fill.svg b/public/hse/assets/bootstrap/moon-fill.svg deleted file mode 100644 index 1149676..0000000 --- a/public/hse/assets/bootstrap/moon-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/moon-stars-fill.svg b/public/hse/assets/bootstrap/moon-stars-fill.svg deleted file mode 100644 index d2e1d6e..0000000 --- a/public/hse/assets/bootstrap/moon-stars-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/moon-stars.svg b/public/hse/assets/bootstrap/moon-stars.svg deleted file mode 100644 index b25ef86..0000000 --- a/public/hse/assets/bootstrap/moon-stars.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/moon.svg b/public/hse/assets/bootstrap/moon.svg deleted file mode 100644 index 4cd8820..0000000 --- a/public/hse/assets/bootstrap/moon.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/mortarboard-fill.svg b/public/hse/assets/bootstrap/mortarboard-fill.svg deleted file mode 100644 index 7f5fb48..0000000 --- a/public/hse/assets/bootstrap/mortarboard-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/mortarboard.svg b/public/hse/assets/bootstrap/mortarboard.svg deleted file mode 100644 index ed82b6a..0000000 --- a/public/hse/assets/bootstrap/mortarboard.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/motherboard-fill.svg b/public/hse/assets/bootstrap/motherboard-fill.svg deleted file mode 100644 index bf15e96..0000000 --- a/public/hse/assets/bootstrap/motherboard-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/motherboard.svg b/public/hse/assets/bootstrap/motherboard.svg deleted file mode 100644 index ed13d0c..0000000 --- a/public/hse/assets/bootstrap/motherboard.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/mouse-fill.svg b/public/hse/assets/bootstrap/mouse-fill.svg deleted file mode 100644 index bd0b5eb..0000000 --- a/public/hse/assets/bootstrap/mouse-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/mouse.svg b/public/hse/assets/bootstrap/mouse.svg deleted file mode 100644 index 40976e0..0000000 --- a/public/hse/assets/bootstrap/mouse.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/mouse2-fill.svg b/public/hse/assets/bootstrap/mouse2-fill.svg deleted file mode 100644 index 283d1cd..0000000 --- a/public/hse/assets/bootstrap/mouse2-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/mouse2.svg b/public/hse/assets/bootstrap/mouse2.svg deleted file mode 100644 index 359da4d..0000000 --- a/public/hse/assets/bootstrap/mouse2.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/mouse3-fill.svg b/public/hse/assets/bootstrap/mouse3-fill.svg deleted file mode 100644 index de6dbc7..0000000 --- a/public/hse/assets/bootstrap/mouse3-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/mouse3.svg b/public/hse/assets/bootstrap/mouse3.svg deleted file mode 100644 index d042bfd..0000000 --- a/public/hse/assets/bootstrap/mouse3.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/music-note-beamed.svg b/public/hse/assets/bootstrap/music-note-beamed.svg deleted file mode 100644 index 04cedf0..0000000 --- a/public/hse/assets/bootstrap/music-note-beamed.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/music-note-list.svg b/public/hse/assets/bootstrap/music-note-list.svg deleted file mode 100644 index 5c306bd..0000000 --- a/public/hse/assets/bootstrap/music-note-list.svg +++ /dev/null @@ -1,6 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/music-note.svg b/public/hse/assets/bootstrap/music-note.svg deleted file mode 100644 index 1125a66..0000000 --- a/public/hse/assets/bootstrap/music-note.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/music-player-fill.svg b/public/hse/assets/bootstrap/music-player-fill.svg deleted file mode 100644 index 6619d1e..0000000 --- a/public/hse/assets/bootstrap/music-player-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/music-player.svg b/public/hse/assets/bootstrap/music-player.svg deleted file mode 100644 index 2d50a63..0000000 --- a/public/hse/assets/bootstrap/music-player.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/newspaper.svg b/public/hse/assets/bootstrap/newspaper.svg deleted file mode 100644 index 7d7fa71..0000000 --- a/public/hse/assets/bootstrap/newspaper.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/nintendo-switch.svg b/public/hse/assets/bootstrap/nintendo-switch.svg deleted file mode 100644 index 0f1e2ac..0000000 --- a/public/hse/assets/bootstrap/nintendo-switch.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/node-minus-fill.svg b/public/hse/assets/bootstrap/node-minus-fill.svg deleted file mode 100644 index 32430b9..0000000 --- a/public/hse/assets/bootstrap/node-minus-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/node-minus.svg b/public/hse/assets/bootstrap/node-minus.svg deleted file mode 100644 index b1accd4..0000000 --- a/public/hse/assets/bootstrap/node-minus.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/node-plus-fill.svg b/public/hse/assets/bootstrap/node-plus-fill.svg deleted file mode 100644 index e5ee855..0000000 --- a/public/hse/assets/bootstrap/node-plus-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/node-plus.svg b/public/hse/assets/bootstrap/node-plus.svg deleted file mode 100644 index 085f04f..0000000 --- a/public/hse/assets/bootstrap/node-plus.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/nut-fill.svg b/public/hse/assets/bootstrap/nut-fill.svg deleted file mode 100644 index 4babc03..0000000 --- a/public/hse/assets/bootstrap/nut-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/nut.svg b/public/hse/assets/bootstrap/nut.svg deleted file mode 100644 index 4912d48..0000000 --- a/public/hse/assets/bootstrap/nut.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/nvidia.svg b/public/hse/assets/bootstrap/nvidia.svg deleted file mode 100644 index 6492046..0000000 --- a/public/hse/assets/bootstrap/nvidia.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/octagon-fill.svg b/public/hse/assets/bootstrap/octagon-fill.svg deleted file mode 100644 index c128317..0000000 --- a/public/hse/assets/bootstrap/octagon-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/octagon-half.svg b/public/hse/assets/bootstrap/octagon-half.svg deleted file mode 100644 index d95240a..0000000 --- a/public/hse/assets/bootstrap/octagon-half.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/octagon.svg b/public/hse/assets/bootstrap/octagon.svg deleted file mode 100644 index 9f3657e..0000000 --- a/public/hse/assets/bootstrap/octagon.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/optical-audio-fill.svg b/public/hse/assets/bootstrap/optical-audio-fill.svg deleted file mode 100644 index 5bdfd82..0000000 --- a/public/hse/assets/bootstrap/optical-audio-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/optical-audio.svg b/public/hse/assets/bootstrap/optical-audio.svg deleted file mode 100644 index 7a38b83..0000000 --- a/public/hse/assets/bootstrap/optical-audio.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/option.svg b/public/hse/assets/bootstrap/option.svg deleted file mode 100644 index d7702b1..0000000 --- a/public/hse/assets/bootstrap/option.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/outlet.svg b/public/hse/assets/bootstrap/outlet.svg deleted file mode 100644 index b48af60..0000000 --- a/public/hse/assets/bootstrap/outlet.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/p-circle-fill.svg b/public/hse/assets/bootstrap/p-circle-fill.svg deleted file mode 100644 index ea54307..0000000 --- a/public/hse/assets/bootstrap/p-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/p-circle.svg b/public/hse/assets/bootstrap/p-circle.svg deleted file mode 100644 index 888a1fa..0000000 --- a/public/hse/assets/bootstrap/p-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/p-square-fill.svg b/public/hse/assets/bootstrap/p-square-fill.svg deleted file mode 100644 index ad3caa2..0000000 --- a/public/hse/assets/bootstrap/p-square-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/p-square.svg b/public/hse/assets/bootstrap/p-square.svg deleted file mode 100644 index ad630d0..0000000 --- a/public/hse/assets/bootstrap/p-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/paint-bucket.svg b/public/hse/assets/bootstrap/paint-bucket.svg deleted file mode 100644 index ee15d10..0000000 --- a/public/hse/assets/bootstrap/paint-bucket.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/palette-fill.svg b/public/hse/assets/bootstrap/palette-fill.svg deleted file mode 100644 index 7dc5ecd..0000000 --- a/public/hse/assets/bootstrap/palette-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/palette.svg b/public/hse/assets/bootstrap/palette.svg deleted file mode 100644 index fea76d9..0000000 --- a/public/hse/assets/bootstrap/palette.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/palette2.svg b/public/hse/assets/bootstrap/palette2.svg deleted file mode 100644 index 5d140b3..0000000 --- a/public/hse/assets/bootstrap/palette2.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/paperclip.svg b/public/hse/assets/bootstrap/paperclip.svg deleted file mode 100644 index 00f311d..0000000 --- a/public/hse/assets/bootstrap/paperclip.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/paragraph.svg b/public/hse/assets/bootstrap/paragraph.svg deleted file mode 100644 index 999cb53..0000000 --- a/public/hse/assets/bootstrap/paragraph.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/pass-fill.svg b/public/hse/assets/bootstrap/pass-fill.svg deleted file mode 100644 index a5715df..0000000 --- a/public/hse/assets/bootstrap/pass-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/pass.svg b/public/hse/assets/bootstrap/pass.svg deleted file mode 100644 index 3f51eb5..0000000 --- a/public/hse/assets/bootstrap/pass.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/patch-check-fill.svg b/public/hse/assets/bootstrap/patch-check-fill.svg deleted file mode 100644 index 1301415..0000000 --- a/public/hse/assets/bootstrap/patch-check-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/patch-check.svg b/public/hse/assets/bootstrap/patch-check.svg deleted file mode 100644 index 2dd799e..0000000 --- a/public/hse/assets/bootstrap/patch-check.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/patch-exclamation-fill.svg b/public/hse/assets/bootstrap/patch-exclamation-fill.svg deleted file mode 100644 index fd900c4..0000000 --- a/public/hse/assets/bootstrap/patch-exclamation-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/patch-exclamation.svg b/public/hse/assets/bootstrap/patch-exclamation.svg deleted file mode 100644 index 153d97d..0000000 --- a/public/hse/assets/bootstrap/patch-exclamation.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/patch-minus-fill.svg b/public/hse/assets/bootstrap/patch-minus-fill.svg deleted file mode 100644 index 12f35c2..0000000 --- a/public/hse/assets/bootstrap/patch-minus-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/patch-minus.svg b/public/hse/assets/bootstrap/patch-minus.svg deleted file mode 100644 index f6024f9..0000000 --- a/public/hse/assets/bootstrap/patch-minus.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/patch-plus-fill.svg b/public/hse/assets/bootstrap/patch-plus-fill.svg deleted file mode 100644 index 1a79d79..0000000 --- a/public/hse/assets/bootstrap/patch-plus-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/patch-plus.svg b/public/hse/assets/bootstrap/patch-plus.svg deleted file mode 100644 index b9a7846..0000000 --- a/public/hse/assets/bootstrap/patch-plus.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/patch-question-fill.svg b/public/hse/assets/bootstrap/patch-question-fill.svg deleted file mode 100644 index 665588b..0000000 --- a/public/hse/assets/bootstrap/patch-question-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/patch-question.svg b/public/hse/assets/bootstrap/patch-question.svg deleted file mode 100644 index ef4ca58..0000000 --- a/public/hse/assets/bootstrap/patch-question.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/pause-btn-fill.svg b/public/hse/assets/bootstrap/pause-btn-fill.svg deleted file mode 100644 index efca142..0000000 --- a/public/hse/assets/bootstrap/pause-btn-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/pause-btn.svg b/public/hse/assets/bootstrap/pause-btn.svg deleted file mode 100644 index 0e9eb3a..0000000 --- a/public/hse/assets/bootstrap/pause-btn.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/pause-circle-fill.svg b/public/hse/assets/bootstrap/pause-circle-fill.svg deleted file mode 100644 index 5e3525f..0000000 --- a/public/hse/assets/bootstrap/pause-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/pause-circle.svg b/public/hse/assets/bootstrap/pause-circle.svg deleted file mode 100644 index 1b6b64a..0000000 --- a/public/hse/assets/bootstrap/pause-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/pause-fill.svg b/public/hse/assets/bootstrap/pause-fill.svg deleted file mode 100644 index 68285b2..0000000 --- a/public/hse/assets/bootstrap/pause-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/pause.svg b/public/hse/assets/bootstrap/pause.svg deleted file mode 100644 index 22478ea..0000000 --- a/public/hse/assets/bootstrap/pause.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/paypal.svg b/public/hse/assets/bootstrap/paypal.svg deleted file mode 100644 index 41bd536..0000000 --- a/public/hse/assets/bootstrap/paypal.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/pc-display-horizontal.svg b/public/hse/assets/bootstrap/pc-display-horizontal.svg deleted file mode 100644 index 2013f15..0000000 --- a/public/hse/assets/bootstrap/pc-display-horizontal.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/pc-display.svg b/public/hse/assets/bootstrap/pc-display.svg deleted file mode 100644 index f5d09da..0000000 --- a/public/hse/assets/bootstrap/pc-display.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/pc-horizontal.svg b/public/hse/assets/bootstrap/pc-horizontal.svg deleted file mode 100644 index 9ae513a..0000000 --- a/public/hse/assets/bootstrap/pc-horizontal.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/pc.svg b/public/hse/assets/bootstrap/pc.svg deleted file mode 100644 index f0f280d..0000000 --- a/public/hse/assets/bootstrap/pc.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/pci-card.svg b/public/hse/assets/bootstrap/pci-card.svg deleted file mode 100644 index 600a5d0..0000000 --- a/public/hse/assets/bootstrap/pci-card.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/peace-fill.svg b/public/hse/assets/bootstrap/peace-fill.svg deleted file mode 100644 index c8ed5bd..0000000 --- a/public/hse/assets/bootstrap/peace-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/peace.svg b/public/hse/assets/bootstrap/peace.svg deleted file mode 100644 index 3e4420b..0000000 --- a/public/hse/assets/bootstrap/peace.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/pen-fill.svg b/public/hse/assets/bootstrap/pen-fill.svg deleted file mode 100644 index b7bb337..0000000 --- a/public/hse/assets/bootstrap/pen-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/pen.svg b/public/hse/assets/bootstrap/pen.svg deleted file mode 100644 index 8eb3be7..0000000 --- a/public/hse/assets/bootstrap/pen.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/pencil-fill.svg b/public/hse/assets/bootstrap/pencil-fill.svg deleted file mode 100644 index 59d2830..0000000 --- a/public/hse/assets/bootstrap/pencil-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/pencil-square.svg b/public/hse/assets/bootstrap/pencil-square.svg deleted file mode 100644 index b8c90d5..0000000 --- a/public/hse/assets/bootstrap/pencil-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/pencil.svg b/public/hse/assets/bootstrap/pencil.svg deleted file mode 100644 index f8dbfeb..0000000 --- a/public/hse/assets/bootstrap/pencil.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/pentagon-fill.svg b/public/hse/assets/bootstrap/pentagon-fill.svg deleted file mode 100644 index 9c80789..0000000 --- a/public/hse/assets/bootstrap/pentagon-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/pentagon-half.svg b/public/hse/assets/bootstrap/pentagon-half.svg deleted file mode 100644 index 305125c..0000000 --- a/public/hse/assets/bootstrap/pentagon-half.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/pentagon.svg b/public/hse/assets/bootstrap/pentagon.svg deleted file mode 100644 index b6f5fe3..0000000 --- a/public/hse/assets/bootstrap/pentagon.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/people-fill.svg b/public/hse/assets/bootstrap/people-fill.svg deleted file mode 100644 index 81d5a8e..0000000 --- a/public/hse/assets/bootstrap/people-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/people.svg b/public/hse/assets/bootstrap/people.svg deleted file mode 100644 index 29dfc5b..0000000 --- a/public/hse/assets/bootstrap/people.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/percent.svg b/public/hse/assets/bootstrap/percent.svg deleted file mode 100644 index 8af2bc4..0000000 --- a/public/hse/assets/bootstrap/percent.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-add.svg b/public/hse/assets/bootstrap/person-add.svg deleted file mode 100644 index cd9f071..0000000 --- a/public/hse/assets/bootstrap/person-add.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-badge-fill.svg b/public/hse/assets/bootstrap/person-badge-fill.svg deleted file mode 100644 index d9ebe67..0000000 --- a/public/hse/assets/bootstrap/person-badge-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-badge.svg b/public/hse/assets/bootstrap/person-badge.svg deleted file mode 100644 index d071d44..0000000 --- a/public/hse/assets/bootstrap/person-badge.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-bounding-box.svg b/public/hse/assets/bootstrap/person-bounding-box.svg deleted file mode 100644 index 92e662c..0000000 --- a/public/hse/assets/bootstrap/person-bounding-box.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-check-fill.svg b/public/hse/assets/bootstrap/person-check-fill.svg deleted file mode 100644 index 872497a..0000000 --- a/public/hse/assets/bootstrap/person-check-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-check.svg b/public/hse/assets/bootstrap/person-check.svg deleted file mode 100644 index 85f6ada..0000000 --- a/public/hse/assets/bootstrap/person-check.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-circle.svg b/public/hse/assets/bootstrap/person-circle.svg deleted file mode 100644 index fd7f2c9..0000000 --- a/public/hse/assets/bootstrap/person-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-dash-fill.svg b/public/hse/assets/bootstrap/person-dash-fill.svg deleted file mode 100644 index fd719f2..0000000 --- a/public/hse/assets/bootstrap/person-dash-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-dash.svg b/public/hse/assets/bootstrap/person-dash.svg deleted file mode 100644 index b374ee0..0000000 --- a/public/hse/assets/bootstrap/person-dash.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-down.svg b/public/hse/assets/bootstrap/person-down.svg deleted file mode 100644 index 00489b9..0000000 --- a/public/hse/assets/bootstrap/person-down.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-exclamation.svg b/public/hse/assets/bootstrap/person-exclamation.svg deleted file mode 100644 index ceb698a..0000000 --- a/public/hse/assets/bootstrap/person-exclamation.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-fill-add.svg b/public/hse/assets/bootstrap/person-fill-add.svg deleted file mode 100644 index 4383a85..0000000 --- a/public/hse/assets/bootstrap/person-fill-add.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-fill-check.svg b/public/hse/assets/bootstrap/person-fill-check.svg deleted file mode 100644 index 0bb8ee4..0000000 --- a/public/hse/assets/bootstrap/person-fill-check.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-fill-dash.svg b/public/hse/assets/bootstrap/person-fill-dash.svg deleted file mode 100644 index d2cdec5..0000000 --- a/public/hse/assets/bootstrap/person-fill-dash.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-fill-down.svg b/public/hse/assets/bootstrap/person-fill-down.svg deleted file mode 100644 index a1cfcdc..0000000 --- a/public/hse/assets/bootstrap/person-fill-down.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-fill-exclamation.svg b/public/hse/assets/bootstrap/person-fill-exclamation.svg deleted file mode 100644 index 59cfd6f..0000000 --- a/public/hse/assets/bootstrap/person-fill-exclamation.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-fill-gear.svg b/public/hse/assets/bootstrap/person-fill-gear.svg deleted file mode 100644 index f91006b..0000000 --- a/public/hse/assets/bootstrap/person-fill-gear.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-fill-lock.svg b/public/hse/assets/bootstrap/person-fill-lock.svg deleted file mode 100644 index 8af5ee1..0000000 --- a/public/hse/assets/bootstrap/person-fill-lock.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-fill-slash.svg b/public/hse/assets/bootstrap/person-fill-slash.svg deleted file mode 100644 index ede8fa4..0000000 --- a/public/hse/assets/bootstrap/person-fill-slash.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-fill-up.svg b/public/hse/assets/bootstrap/person-fill-up.svg deleted file mode 100644 index be73bf2..0000000 --- a/public/hse/assets/bootstrap/person-fill-up.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-fill-x.svg b/public/hse/assets/bootstrap/person-fill-x.svg deleted file mode 100644 index 959fcee..0000000 --- a/public/hse/assets/bootstrap/person-fill-x.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-fill.svg b/public/hse/assets/bootstrap/person-fill.svg deleted file mode 100644 index 5e71aca..0000000 --- a/public/hse/assets/bootstrap/person-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-gear.svg b/public/hse/assets/bootstrap/person-gear.svg deleted file mode 100644 index 8024d86..0000000 --- a/public/hse/assets/bootstrap/person-gear.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-heart.svg b/public/hse/assets/bootstrap/person-heart.svg deleted file mode 100644 index e9ebbf4..0000000 --- a/public/hse/assets/bootstrap/person-heart.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-hearts.svg b/public/hse/assets/bootstrap/person-hearts.svg deleted file mode 100644 index 06970be..0000000 --- a/public/hse/assets/bootstrap/person-hearts.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-lines-fill.svg b/public/hse/assets/bootstrap/person-lines-fill.svg deleted file mode 100644 index 736421c..0000000 --- a/public/hse/assets/bootstrap/person-lines-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-lock.svg b/public/hse/assets/bootstrap/person-lock.svg deleted file mode 100644 index 1c20dc7..0000000 --- a/public/hse/assets/bootstrap/person-lock.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-plus-fill.svg b/public/hse/assets/bootstrap/person-plus-fill.svg deleted file mode 100644 index 151ccfe..0000000 --- a/public/hse/assets/bootstrap/person-plus-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-plus.svg b/public/hse/assets/bootstrap/person-plus.svg deleted file mode 100644 index aac3a67..0000000 --- a/public/hse/assets/bootstrap/person-plus.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-rolodex.svg b/public/hse/assets/bootstrap/person-rolodex.svg deleted file mode 100644 index af898ca..0000000 --- a/public/hse/assets/bootstrap/person-rolodex.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-slash.svg b/public/hse/assets/bootstrap/person-slash.svg deleted file mode 100644 index 7316d7e..0000000 --- a/public/hse/assets/bootstrap/person-slash.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-square.svg b/public/hse/assets/bootstrap/person-square.svg deleted file mode 100644 index a7eb40e..0000000 --- a/public/hse/assets/bootstrap/person-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-up.svg b/public/hse/assets/bootstrap/person-up.svg deleted file mode 100644 index 5ec777d..0000000 --- a/public/hse/assets/bootstrap/person-up.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-vcard-fill.svg b/public/hse/assets/bootstrap/person-vcard-fill.svg deleted file mode 100644 index f40d108..0000000 --- a/public/hse/assets/bootstrap/person-vcard-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-vcard.svg b/public/hse/assets/bootstrap/person-vcard.svg deleted file mode 100644 index 3b87158..0000000 --- a/public/hse/assets/bootstrap/person-vcard.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-video.svg b/public/hse/assets/bootstrap/person-video.svg deleted file mode 100644 index b8c1995..0000000 --- a/public/hse/assets/bootstrap/person-video.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-video2.svg b/public/hse/assets/bootstrap/person-video2.svg deleted file mode 100644 index 3f4292e..0000000 --- a/public/hse/assets/bootstrap/person-video2.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-video3.svg b/public/hse/assets/bootstrap/person-video3.svg deleted file mode 100644 index be38b24..0000000 --- a/public/hse/assets/bootstrap/person-video3.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-workspace.svg b/public/hse/assets/bootstrap/person-workspace.svg deleted file mode 100644 index e72bea0..0000000 --- a/public/hse/assets/bootstrap/person-workspace.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-x-fill.svg b/public/hse/assets/bootstrap/person-x-fill.svg deleted file mode 100644 index d4903a6..0000000 --- a/public/hse/assets/bootstrap/person-x-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person-x.svg b/public/hse/assets/bootstrap/person-x.svg deleted file mode 100644 index 129660d..0000000 --- a/public/hse/assets/bootstrap/person-x.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/person.svg b/public/hse/assets/bootstrap/person.svg deleted file mode 100644 index 18d6411..0000000 --- a/public/hse/assets/bootstrap/person.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/phone-fill.svg b/public/hse/assets/bootstrap/phone-fill.svg deleted file mode 100644 index a2dfd03..0000000 --- a/public/hse/assets/bootstrap/phone-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/phone-flip.svg b/public/hse/assets/bootstrap/phone-flip.svg deleted file mode 100644 index 54e2d26..0000000 --- a/public/hse/assets/bootstrap/phone-flip.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/phone-landscape-fill.svg b/public/hse/assets/bootstrap/phone-landscape-fill.svg deleted file mode 100644 index 295481c..0000000 --- a/public/hse/assets/bootstrap/phone-landscape-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/phone-landscape.svg b/public/hse/assets/bootstrap/phone-landscape.svg deleted file mode 100644 index 65cd273..0000000 --- a/public/hse/assets/bootstrap/phone-landscape.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/phone-vibrate-fill.svg b/public/hse/assets/bootstrap/phone-vibrate-fill.svg deleted file mode 100644 index 6e61ecc..0000000 --- a/public/hse/assets/bootstrap/phone-vibrate-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/phone-vibrate.svg b/public/hse/assets/bootstrap/phone-vibrate.svg deleted file mode 100644 index f380cab..0000000 --- a/public/hse/assets/bootstrap/phone-vibrate.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/phone.svg b/public/hse/assets/bootstrap/phone.svg deleted file mode 100644 index 3f3fd74..0000000 --- a/public/hse/assets/bootstrap/phone.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/pie-chart-fill.svg b/public/hse/assets/bootstrap/pie-chart-fill.svg deleted file mode 100644 index 6aa71eb..0000000 --- a/public/hse/assets/bootstrap/pie-chart-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/pie-chart.svg b/public/hse/assets/bootstrap/pie-chart.svg deleted file mode 100644 index a20f6a7..0000000 --- a/public/hse/assets/bootstrap/pie-chart.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/piggy-bank-fill.svg b/public/hse/assets/bootstrap/piggy-bank-fill.svg deleted file mode 100644 index b44f35d..0000000 --- a/public/hse/assets/bootstrap/piggy-bank-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/piggy-bank.svg b/public/hse/assets/bootstrap/piggy-bank.svg deleted file mode 100644 index 1d836ce..0000000 --- a/public/hse/assets/bootstrap/piggy-bank.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/pin-angle-fill.svg b/public/hse/assets/bootstrap/pin-angle-fill.svg deleted file mode 100644 index 3112c0b..0000000 --- a/public/hse/assets/bootstrap/pin-angle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/pin-angle.svg b/public/hse/assets/bootstrap/pin-angle.svg deleted file mode 100644 index a07b038..0000000 --- a/public/hse/assets/bootstrap/pin-angle.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/pin-fill.svg b/public/hse/assets/bootstrap/pin-fill.svg deleted file mode 100644 index f00b790..0000000 --- a/public/hse/assets/bootstrap/pin-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/pin-map-fill.svg b/public/hse/assets/bootstrap/pin-map-fill.svg deleted file mode 100644 index b8c8502..0000000 --- a/public/hse/assets/bootstrap/pin-map-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/pin-map.svg b/public/hse/assets/bootstrap/pin-map.svg deleted file mode 100644 index f04129a..0000000 --- a/public/hse/assets/bootstrap/pin-map.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/pin.svg b/public/hse/assets/bootstrap/pin.svg deleted file mode 100644 index 45fd7de..0000000 --- a/public/hse/assets/bootstrap/pin.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/pinterest.svg b/public/hse/assets/bootstrap/pinterest.svg deleted file mode 100644 index b4fbc23..0000000 --- a/public/hse/assets/bootstrap/pinterest.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/pip-fill.svg b/public/hse/assets/bootstrap/pip-fill.svg deleted file mode 100644 index 1869f78..0000000 --- a/public/hse/assets/bootstrap/pip-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/pip.svg b/public/hse/assets/bootstrap/pip.svg deleted file mode 100644 index 58f0638..0000000 --- a/public/hse/assets/bootstrap/pip.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/play-btn-fill.svg b/public/hse/assets/bootstrap/play-btn-fill.svg deleted file mode 100644 index 18b9167..0000000 --- a/public/hse/assets/bootstrap/play-btn-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/play-btn.svg b/public/hse/assets/bootstrap/play-btn.svg deleted file mode 100644 index 576e30b..0000000 --- a/public/hse/assets/bootstrap/play-btn.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/play-circle-fill.svg b/public/hse/assets/bootstrap/play-circle-fill.svg deleted file mode 100644 index 511ef37..0000000 --- a/public/hse/assets/bootstrap/play-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/play-circle.svg b/public/hse/assets/bootstrap/play-circle.svg deleted file mode 100644 index c93144a..0000000 --- a/public/hse/assets/bootstrap/play-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/play-fill.svg b/public/hse/assets/bootstrap/play-fill.svg deleted file mode 100644 index 28f2e67..0000000 --- a/public/hse/assets/bootstrap/play-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/play.svg b/public/hse/assets/bootstrap/play.svg deleted file mode 100644 index b3fd3dc..0000000 --- a/public/hse/assets/bootstrap/play.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/playstation.svg b/public/hse/assets/bootstrap/playstation.svg deleted file mode 100644 index f8ce05b..0000000 --- a/public/hse/assets/bootstrap/playstation.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/plug-fill.svg b/public/hse/assets/bootstrap/plug-fill.svg deleted file mode 100644 index d15b8e6..0000000 --- a/public/hse/assets/bootstrap/plug-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/plug.svg b/public/hse/assets/bootstrap/plug.svg deleted file mode 100644 index c5e6688..0000000 --- a/public/hse/assets/bootstrap/plug.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/plugin.svg b/public/hse/assets/bootstrap/plugin.svg deleted file mode 100644 index 3f179a3..0000000 --- a/public/hse/assets/bootstrap/plugin.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/plus-circle-dotted.svg b/public/hse/assets/bootstrap/plus-circle-dotted.svg deleted file mode 100644 index c69316e..0000000 --- a/public/hse/assets/bootstrap/plus-circle-dotted.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/plus-circle-fill.svg b/public/hse/assets/bootstrap/plus-circle-fill.svg deleted file mode 100644 index f320116..0000000 --- a/public/hse/assets/bootstrap/plus-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/plus-circle.svg b/public/hse/assets/bootstrap/plus-circle.svg deleted file mode 100644 index 66308ef..0000000 --- a/public/hse/assets/bootstrap/plus-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/plus-lg.svg b/public/hse/assets/bootstrap/plus-lg.svg deleted file mode 100644 index f821cc3..0000000 --- a/public/hse/assets/bootstrap/plus-lg.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/plus-slash-minus.svg b/public/hse/assets/bootstrap/plus-slash-minus.svg deleted file mode 100644 index 44a8e0e..0000000 --- a/public/hse/assets/bootstrap/plus-slash-minus.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/plus-square-dotted.svg b/public/hse/assets/bootstrap/plus-square-dotted.svg deleted file mode 100644 index 4ae7ad6..0000000 --- a/public/hse/assets/bootstrap/plus-square-dotted.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/plus-square-fill.svg b/public/hse/assets/bootstrap/plus-square-fill.svg deleted file mode 100644 index 0d5e15c..0000000 --- a/public/hse/assets/bootstrap/plus-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/plus-square.svg b/public/hse/assets/bootstrap/plus-square.svg deleted file mode 100644 index 15c4c44..0000000 --- a/public/hse/assets/bootstrap/plus-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/plus.svg b/public/hse/assets/bootstrap/plus.svg deleted file mode 100644 index 5b088c0..0000000 --- a/public/hse/assets/bootstrap/plus.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/postage-fill.svg b/public/hse/assets/bootstrap/postage-fill.svg deleted file mode 100644 index 701a1c6..0000000 --- a/public/hse/assets/bootstrap/postage-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/postage-heart-fill.svg b/public/hse/assets/bootstrap/postage-heart-fill.svg deleted file mode 100644 index a268901..0000000 --- a/public/hse/assets/bootstrap/postage-heart-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/postage-heart.svg b/public/hse/assets/bootstrap/postage-heart.svg deleted file mode 100644 index 4d22b18..0000000 --- a/public/hse/assets/bootstrap/postage-heart.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/postage.svg b/public/hse/assets/bootstrap/postage.svg deleted file mode 100644 index cc49c70..0000000 --- a/public/hse/assets/bootstrap/postage.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/postcard-fill.svg b/public/hse/assets/bootstrap/postcard-fill.svg deleted file mode 100644 index 01b54dd..0000000 --- a/public/hse/assets/bootstrap/postcard-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/postcard-heart-fill.svg b/public/hse/assets/bootstrap/postcard-heart-fill.svg deleted file mode 100644 index 590cac9..0000000 --- a/public/hse/assets/bootstrap/postcard-heart-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/postcard-heart.svg b/public/hse/assets/bootstrap/postcard-heart.svg deleted file mode 100644 index e0f2f05..0000000 --- a/public/hse/assets/bootstrap/postcard-heart.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/postcard.svg b/public/hse/assets/bootstrap/postcard.svg deleted file mode 100644 index 827180e..0000000 --- a/public/hse/assets/bootstrap/postcard.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/power.svg b/public/hse/assets/bootstrap/power.svg deleted file mode 100644 index 6fb9756..0000000 --- a/public/hse/assets/bootstrap/power.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/prescription.svg b/public/hse/assets/bootstrap/prescription.svg deleted file mode 100644 index 263433a..0000000 --- a/public/hse/assets/bootstrap/prescription.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/prescription2.svg b/public/hse/assets/bootstrap/prescription2.svg deleted file mode 100644 index fbe2f91..0000000 --- a/public/hse/assets/bootstrap/prescription2.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/printer-fill.svg b/public/hse/assets/bootstrap/printer-fill.svg deleted file mode 100644 index 485d987..0000000 --- a/public/hse/assets/bootstrap/printer-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/printer.svg b/public/hse/assets/bootstrap/printer.svg deleted file mode 100644 index 60196bc..0000000 --- a/public/hse/assets/bootstrap/printer.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/projector-fill.svg b/public/hse/assets/bootstrap/projector-fill.svg deleted file mode 100644 index ff6a341..0000000 --- a/public/hse/assets/bootstrap/projector-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/projector.svg b/public/hse/assets/bootstrap/projector.svg deleted file mode 100644 index 218c6a5..0000000 --- a/public/hse/assets/bootstrap/projector.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/puzzle-fill.svg b/public/hse/assets/bootstrap/puzzle-fill.svg deleted file mode 100644 index e9bbfae..0000000 --- a/public/hse/assets/bootstrap/puzzle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/puzzle.svg b/public/hse/assets/bootstrap/puzzle.svg deleted file mode 100644 index c9b07a2..0000000 --- a/public/hse/assets/bootstrap/puzzle.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/qr-code-scan.svg b/public/hse/assets/bootstrap/qr-code-scan.svg deleted file mode 100644 index 7eb599e..0000000 --- a/public/hse/assets/bootstrap/qr-code-scan.svg +++ /dev/null @@ -1,7 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/qr-code.svg b/public/hse/assets/bootstrap/qr-code.svg deleted file mode 100644 index bf5570d..0000000 --- a/public/hse/assets/bootstrap/qr-code.svg +++ /dev/null @@ -1,7 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/question-circle-fill.svg b/public/hse/assets/bootstrap/question-circle-fill.svg deleted file mode 100644 index d8e5e06..0000000 --- a/public/hse/assets/bootstrap/question-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/question-circle.svg b/public/hse/assets/bootstrap/question-circle.svg deleted file mode 100644 index 1c8cbe7..0000000 --- a/public/hse/assets/bootstrap/question-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/question-diamond-fill.svg b/public/hse/assets/bootstrap/question-diamond-fill.svg deleted file mode 100644 index a86583b..0000000 --- a/public/hse/assets/bootstrap/question-diamond-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/question-diamond.svg b/public/hse/assets/bootstrap/question-diamond.svg deleted file mode 100644 index a7d8233..0000000 --- a/public/hse/assets/bootstrap/question-diamond.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/question-lg.svg b/public/hse/assets/bootstrap/question-lg.svg deleted file mode 100644 index fa3452e..0000000 --- a/public/hse/assets/bootstrap/question-lg.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/question-octagon-fill.svg b/public/hse/assets/bootstrap/question-octagon-fill.svg deleted file mode 100644 index 2ff954e..0000000 --- a/public/hse/assets/bootstrap/question-octagon-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/question-octagon.svg b/public/hse/assets/bootstrap/question-octagon.svg deleted file mode 100644 index 02e8ffe..0000000 --- a/public/hse/assets/bootstrap/question-octagon.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/question-square-fill.svg b/public/hse/assets/bootstrap/question-square-fill.svg deleted file mode 100644 index dd72410..0000000 --- a/public/hse/assets/bootstrap/question-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/question-square.svg b/public/hse/assets/bootstrap/question-square.svg deleted file mode 100644 index d0a56ff..0000000 --- a/public/hse/assets/bootstrap/question-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/question.svg b/public/hse/assets/bootstrap/question.svg deleted file mode 100644 index 05abe29..0000000 --- a/public/hse/assets/bootstrap/question.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/quora.svg b/public/hse/assets/bootstrap/quora.svg deleted file mode 100644 index e90e571..0000000 --- a/public/hse/assets/bootstrap/quora.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/quote.svg b/public/hse/assets/bootstrap/quote.svg deleted file mode 100644 index 03b45bf..0000000 --- a/public/hse/assets/bootstrap/quote.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/r-circle-fill.svg b/public/hse/assets/bootstrap/r-circle-fill.svg deleted file mode 100644 index c2386c3..0000000 --- a/public/hse/assets/bootstrap/r-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/r-circle.svg b/public/hse/assets/bootstrap/r-circle.svg deleted file mode 100644 index ab5c574..0000000 --- a/public/hse/assets/bootstrap/r-circle.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/r-square-fill.svg b/public/hse/assets/bootstrap/r-square-fill.svg deleted file mode 100644 index e039b8a..0000000 --- a/public/hse/assets/bootstrap/r-square-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/r-square.svg b/public/hse/assets/bootstrap/r-square.svg deleted file mode 100644 index 37ddc6a..0000000 --- a/public/hse/assets/bootstrap/r-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/radioactive.svg b/public/hse/assets/bootstrap/radioactive.svg deleted file mode 100644 index 1b1072f..0000000 --- a/public/hse/assets/bootstrap/radioactive.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/rainbow.svg b/public/hse/assets/bootstrap/rainbow.svg deleted file mode 100644 index 8e8aea7..0000000 --- a/public/hse/assets/bootstrap/rainbow.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/receipt-cutoff.svg b/public/hse/assets/bootstrap/receipt-cutoff.svg deleted file mode 100644 index 27be3c0..0000000 --- a/public/hse/assets/bootstrap/receipt-cutoff.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/receipt.svg b/public/hse/assets/bootstrap/receipt.svg deleted file mode 100644 index 9ea7283..0000000 --- a/public/hse/assets/bootstrap/receipt.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/reception-0.svg b/public/hse/assets/bootstrap/reception-0.svg deleted file mode 100644 index 885bf3b..0000000 --- a/public/hse/assets/bootstrap/reception-0.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/reception-1.svg b/public/hse/assets/bootstrap/reception-1.svg deleted file mode 100644 index 3deafb6..0000000 --- a/public/hse/assets/bootstrap/reception-1.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/reception-2.svg b/public/hse/assets/bootstrap/reception-2.svg deleted file mode 100644 index 7dca57a..0000000 --- a/public/hse/assets/bootstrap/reception-2.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/reception-3.svg b/public/hse/assets/bootstrap/reception-3.svg deleted file mode 100644 index b30d5fb..0000000 --- a/public/hse/assets/bootstrap/reception-3.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/reception-4.svg b/public/hse/assets/bootstrap/reception-4.svg deleted file mode 100644 index 611bdf1..0000000 --- a/public/hse/assets/bootstrap/reception-4.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/record-btn-fill.svg b/public/hse/assets/bootstrap/record-btn-fill.svg deleted file mode 100644 index caa3ea1..0000000 --- a/public/hse/assets/bootstrap/record-btn-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/record-btn.svg b/public/hse/assets/bootstrap/record-btn.svg deleted file mode 100644 index 4fd261c..0000000 --- a/public/hse/assets/bootstrap/record-btn.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/record-circle-fill.svg b/public/hse/assets/bootstrap/record-circle-fill.svg deleted file mode 100644 index 2c2429a..0000000 --- a/public/hse/assets/bootstrap/record-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/record-circle.svg b/public/hse/assets/bootstrap/record-circle.svg deleted file mode 100644 index d45d91c..0000000 --- a/public/hse/assets/bootstrap/record-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/record-fill.svg b/public/hse/assets/bootstrap/record-fill.svg deleted file mode 100644 index d474393..0000000 --- a/public/hse/assets/bootstrap/record-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/record.svg b/public/hse/assets/bootstrap/record.svg deleted file mode 100644 index 27f82a9..0000000 --- a/public/hse/assets/bootstrap/record.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/record2-fill.svg b/public/hse/assets/bootstrap/record2-fill.svg deleted file mode 100644 index 7648928..0000000 --- a/public/hse/assets/bootstrap/record2-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/record2.svg b/public/hse/assets/bootstrap/record2.svg deleted file mode 100644 index 43a1150..0000000 --- a/public/hse/assets/bootstrap/record2.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/recycle.svg b/public/hse/assets/bootstrap/recycle.svg deleted file mode 100644 index e4fa6c0..0000000 --- a/public/hse/assets/bootstrap/recycle.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/reddit.svg b/public/hse/assets/bootstrap/reddit.svg deleted file mode 100644 index b1c9cfe..0000000 --- a/public/hse/assets/bootstrap/reddit.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/regex.svg b/public/hse/assets/bootstrap/regex.svg deleted file mode 100644 index 19c0ff3..0000000 --- a/public/hse/assets/bootstrap/regex.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/repeat-1.svg b/public/hse/assets/bootstrap/repeat-1.svg deleted file mode 100644 index 07f4a8b..0000000 --- a/public/hse/assets/bootstrap/repeat-1.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/repeat.svg b/public/hse/assets/bootstrap/repeat.svg deleted file mode 100644 index 0f6d54d..0000000 --- a/public/hse/assets/bootstrap/repeat.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/reply-all-fill.svg b/public/hse/assets/bootstrap/reply-all-fill.svg deleted file mode 100644 index 7b77b06..0000000 --- a/public/hse/assets/bootstrap/reply-all-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/reply-all.svg b/public/hse/assets/bootstrap/reply-all.svg deleted file mode 100644 index c95025b..0000000 --- a/public/hse/assets/bootstrap/reply-all.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/reply-fill.svg b/public/hse/assets/bootstrap/reply-fill.svg deleted file mode 100644 index b5a8722..0000000 --- a/public/hse/assets/bootstrap/reply-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/reply.svg b/public/hse/assets/bootstrap/reply.svg deleted file mode 100644 index c2dc098..0000000 --- a/public/hse/assets/bootstrap/reply.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/rewind-btn-fill.svg b/public/hse/assets/bootstrap/rewind-btn-fill.svg deleted file mode 100644 index 5136147..0000000 --- a/public/hse/assets/bootstrap/rewind-btn-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/rewind-btn.svg b/public/hse/assets/bootstrap/rewind-btn.svg deleted file mode 100644 index 45c0232..0000000 --- a/public/hse/assets/bootstrap/rewind-btn.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/rewind-circle-fill.svg b/public/hse/assets/bootstrap/rewind-circle-fill.svg deleted file mode 100644 index afdaaf3..0000000 --- a/public/hse/assets/bootstrap/rewind-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/rewind-circle.svg b/public/hse/assets/bootstrap/rewind-circle.svg deleted file mode 100644 index 054fd95..0000000 --- a/public/hse/assets/bootstrap/rewind-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/rewind-fill.svg b/public/hse/assets/bootstrap/rewind-fill.svg deleted file mode 100644 index 79596e0..0000000 --- a/public/hse/assets/bootstrap/rewind-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/rewind.svg b/public/hse/assets/bootstrap/rewind.svg deleted file mode 100644 index 58684d4..0000000 --- a/public/hse/assets/bootstrap/rewind.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/robot.svg b/public/hse/assets/bootstrap/robot.svg deleted file mode 100644 index 526cb99..0000000 --- a/public/hse/assets/bootstrap/robot.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/rocket-fill.svg b/public/hse/assets/bootstrap/rocket-fill.svg deleted file mode 100644 index dcb5cb8..0000000 --- a/public/hse/assets/bootstrap/rocket-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/rocket-takeoff-fill.svg b/public/hse/assets/bootstrap/rocket-takeoff-fill.svg deleted file mode 100644 index a748d6d..0000000 --- a/public/hse/assets/bootstrap/rocket-takeoff-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/rocket-takeoff.svg b/public/hse/assets/bootstrap/rocket-takeoff.svg deleted file mode 100644 index 376d342..0000000 --- a/public/hse/assets/bootstrap/rocket-takeoff.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/rocket.svg b/public/hse/assets/bootstrap/rocket.svg deleted file mode 100644 index 5b3cd5c..0000000 --- a/public/hse/assets/bootstrap/rocket.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/router-fill.svg b/public/hse/assets/bootstrap/router-fill.svg deleted file mode 100644 index de050cf..0000000 --- a/public/hse/assets/bootstrap/router-fill.svg +++ /dev/null @@ -1,6 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/router.svg b/public/hse/assets/bootstrap/router.svg deleted file mode 100644 index 8fa22d0..0000000 --- a/public/hse/assets/bootstrap/router.svg +++ /dev/null @@ -1,6 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/rss-fill.svg b/public/hse/assets/bootstrap/rss-fill.svg deleted file mode 100644 index 39bef06..0000000 --- a/public/hse/assets/bootstrap/rss-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/rss.svg b/public/hse/assets/bootstrap/rss.svg deleted file mode 100644 index be41f20..0000000 --- a/public/hse/assets/bootstrap/rss.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/rulers.svg b/public/hse/assets/bootstrap/rulers.svg deleted file mode 100644 index e9891c9..0000000 --- a/public/hse/assets/bootstrap/rulers.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/safe-fill.svg b/public/hse/assets/bootstrap/safe-fill.svg deleted file mode 100644 index 1036d67..0000000 --- a/public/hse/assets/bootstrap/safe-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/safe.svg b/public/hse/assets/bootstrap/safe.svg deleted file mode 100644 index fb5b7cb..0000000 --- a/public/hse/assets/bootstrap/safe.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/safe2-fill.svg b/public/hse/assets/bootstrap/safe2-fill.svg deleted file mode 100644 index d1d37f2..0000000 --- a/public/hse/assets/bootstrap/safe2-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/safe2.svg b/public/hse/assets/bootstrap/safe2.svg deleted file mode 100644 index 37bfbe8..0000000 --- a/public/hse/assets/bootstrap/safe2.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/save-fill.svg b/public/hse/assets/bootstrap/save-fill.svg deleted file mode 100644 index 0a43dc1..0000000 --- a/public/hse/assets/bootstrap/save-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/save.svg b/public/hse/assets/bootstrap/save.svg deleted file mode 100644 index 26b8aed..0000000 --- a/public/hse/assets/bootstrap/save.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/save2-fill.svg b/public/hse/assets/bootstrap/save2-fill.svg deleted file mode 100644 index 45feb59..0000000 --- a/public/hse/assets/bootstrap/save2-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/save2.svg b/public/hse/assets/bootstrap/save2.svg deleted file mode 100644 index 52bc9e4..0000000 --- a/public/hse/assets/bootstrap/save2.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/scissors.svg b/public/hse/assets/bootstrap/scissors.svg deleted file mode 100644 index ab71b0d..0000000 --- a/public/hse/assets/bootstrap/scissors.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/scooter.svg b/public/hse/assets/bootstrap/scooter.svg deleted file mode 100644 index 238eedb..0000000 --- a/public/hse/assets/bootstrap/scooter.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/screwdriver.svg b/public/hse/assets/bootstrap/screwdriver.svg deleted file mode 100644 index dc9c374..0000000 --- a/public/hse/assets/bootstrap/screwdriver.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sd-card-fill.svg b/public/hse/assets/bootstrap/sd-card-fill.svg deleted file mode 100644 index 9fe36b6..0000000 --- a/public/hse/assets/bootstrap/sd-card-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sd-card.svg b/public/hse/assets/bootstrap/sd-card.svg deleted file mode 100644 index 12ed59f..0000000 --- a/public/hse/assets/bootstrap/sd-card.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/search-heart-fill.svg b/public/hse/assets/bootstrap/search-heart-fill.svg deleted file mode 100644 index 54e31c7..0000000 --- a/public/hse/assets/bootstrap/search-heart-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/search-heart.svg b/public/hse/assets/bootstrap/search-heart.svg deleted file mode 100644 index 92ea059..0000000 --- a/public/hse/assets/bootstrap/search-heart.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/search.svg b/public/hse/assets/bootstrap/search.svg deleted file mode 100644 index d3dc7ca..0000000 --- a/public/hse/assets/bootstrap/search.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/segmented-nav.svg b/public/hse/assets/bootstrap/segmented-nav.svg deleted file mode 100644 index 42323b2..0000000 --- a/public/hse/assets/bootstrap/segmented-nav.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/send-check-fill.svg b/public/hse/assets/bootstrap/send-check-fill.svg deleted file mode 100644 index 4b0a56a..0000000 --- a/public/hse/assets/bootstrap/send-check-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/send-check.svg b/public/hse/assets/bootstrap/send-check.svg deleted file mode 100644 index 581ebbe..0000000 --- a/public/hse/assets/bootstrap/send-check.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/send-dash-fill.svg b/public/hse/assets/bootstrap/send-dash-fill.svg deleted file mode 100644 index 254329c..0000000 --- a/public/hse/assets/bootstrap/send-dash-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/send-dash.svg b/public/hse/assets/bootstrap/send-dash.svg deleted file mode 100644 index abfbad3..0000000 --- a/public/hse/assets/bootstrap/send-dash.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/send-exclamation-fill.svg b/public/hse/assets/bootstrap/send-exclamation-fill.svg deleted file mode 100644 index 5a77e98..0000000 --- a/public/hse/assets/bootstrap/send-exclamation-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/send-exclamation.svg b/public/hse/assets/bootstrap/send-exclamation.svg deleted file mode 100644 index 149a7f7..0000000 --- a/public/hse/assets/bootstrap/send-exclamation.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/send-fill.svg b/public/hse/assets/bootstrap/send-fill.svg deleted file mode 100644 index 2a84015..0000000 --- a/public/hse/assets/bootstrap/send-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/send-plus-fill.svg b/public/hse/assets/bootstrap/send-plus-fill.svg deleted file mode 100644 index bea3738..0000000 --- a/public/hse/assets/bootstrap/send-plus-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/send-plus.svg b/public/hse/assets/bootstrap/send-plus.svg deleted file mode 100644 index 4120228..0000000 --- a/public/hse/assets/bootstrap/send-plus.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/send-slash-fill.svg b/public/hse/assets/bootstrap/send-slash-fill.svg deleted file mode 100644 index 3345687..0000000 --- a/public/hse/assets/bootstrap/send-slash-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/send-slash.svg b/public/hse/assets/bootstrap/send-slash.svg deleted file mode 100644 index 782daf3..0000000 --- a/public/hse/assets/bootstrap/send-slash.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/send-x-fill.svg b/public/hse/assets/bootstrap/send-x-fill.svg deleted file mode 100644 index ce102ba..0000000 --- a/public/hse/assets/bootstrap/send-x-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/send-x.svg b/public/hse/assets/bootstrap/send-x.svg deleted file mode 100644 index c8bc8bf..0000000 --- a/public/hse/assets/bootstrap/send-x.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/send.svg b/public/hse/assets/bootstrap/send.svg deleted file mode 100644 index c81fc95..0000000 --- a/public/hse/assets/bootstrap/send.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/server.svg b/public/hse/assets/bootstrap/server.svg deleted file mode 100644 index ff85feb..0000000 --- a/public/hse/assets/bootstrap/server.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/share-fill.svg b/public/hse/assets/bootstrap/share-fill.svg deleted file mode 100644 index 8b0ee88..0000000 --- a/public/hse/assets/bootstrap/share-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/share.svg b/public/hse/assets/bootstrap/share.svg deleted file mode 100644 index 79d3075..0000000 --- a/public/hse/assets/bootstrap/share.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/shield-check.svg b/public/hse/assets/bootstrap/shield-check.svg deleted file mode 100644 index ecbf543..0000000 --- a/public/hse/assets/bootstrap/shield-check.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/shield-exclamation.svg b/public/hse/assets/bootstrap/shield-exclamation.svg deleted file mode 100644 index 825de04..0000000 --- a/public/hse/assets/bootstrap/shield-exclamation.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/shield-fill-check.svg b/public/hse/assets/bootstrap/shield-fill-check.svg deleted file mode 100644 index a72b2ba..0000000 --- a/public/hse/assets/bootstrap/shield-fill-check.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/shield-fill-exclamation.svg b/public/hse/assets/bootstrap/shield-fill-exclamation.svg deleted file mode 100644 index b489a68..0000000 --- a/public/hse/assets/bootstrap/shield-fill-exclamation.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/shield-fill-minus.svg b/public/hse/assets/bootstrap/shield-fill-minus.svg deleted file mode 100644 index b9b9129..0000000 --- a/public/hse/assets/bootstrap/shield-fill-minus.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/shield-fill-plus.svg b/public/hse/assets/bootstrap/shield-fill-plus.svg deleted file mode 100644 index aec96d1..0000000 --- a/public/hse/assets/bootstrap/shield-fill-plus.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/shield-fill-x.svg b/public/hse/assets/bootstrap/shield-fill-x.svg deleted file mode 100644 index d384af4..0000000 --- a/public/hse/assets/bootstrap/shield-fill-x.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/shield-fill.svg b/public/hse/assets/bootstrap/shield-fill.svg deleted file mode 100644 index d1d877d..0000000 --- a/public/hse/assets/bootstrap/shield-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/shield-lock-fill.svg b/public/hse/assets/bootstrap/shield-lock-fill.svg deleted file mode 100644 index e4c96b4..0000000 --- a/public/hse/assets/bootstrap/shield-lock-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/shield-lock.svg b/public/hse/assets/bootstrap/shield-lock.svg deleted file mode 100644 index ff38425..0000000 --- a/public/hse/assets/bootstrap/shield-lock.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/shield-minus.svg b/public/hse/assets/bootstrap/shield-minus.svg deleted file mode 100644 index d1cedfd..0000000 --- a/public/hse/assets/bootstrap/shield-minus.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/shield-plus.svg b/public/hse/assets/bootstrap/shield-plus.svg deleted file mode 100644 index 77bcb1a..0000000 --- a/public/hse/assets/bootstrap/shield-plus.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/shield-shaded.svg b/public/hse/assets/bootstrap/shield-shaded.svg deleted file mode 100644 index 9c4af1a..0000000 --- a/public/hse/assets/bootstrap/shield-shaded.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/shield-slash-fill.svg b/public/hse/assets/bootstrap/shield-slash-fill.svg deleted file mode 100644 index 015d11b..0000000 --- a/public/hse/assets/bootstrap/shield-slash-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/shield-slash.svg b/public/hse/assets/bootstrap/shield-slash.svg deleted file mode 100644 index 234afa2..0000000 --- a/public/hse/assets/bootstrap/shield-slash.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/shield-x.svg b/public/hse/assets/bootstrap/shield-x.svg deleted file mode 100644 index 3fe1666..0000000 --- a/public/hse/assets/bootstrap/shield-x.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/shield.svg b/public/hse/assets/bootstrap/shield.svg deleted file mode 100644 index 18309d1..0000000 --- a/public/hse/assets/bootstrap/shield.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/shift-fill.svg b/public/hse/assets/bootstrap/shift-fill.svg deleted file mode 100644 index da897bc..0000000 --- a/public/hse/assets/bootstrap/shift-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/shift.svg b/public/hse/assets/bootstrap/shift.svg deleted file mode 100644 index 59a88ef..0000000 --- a/public/hse/assets/bootstrap/shift.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/shop-window.svg b/public/hse/assets/bootstrap/shop-window.svg deleted file mode 100644 index a306cfa..0000000 --- a/public/hse/assets/bootstrap/shop-window.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/shop.svg b/public/hse/assets/bootstrap/shop.svg deleted file mode 100644 index 223d77b..0000000 --- a/public/hse/assets/bootstrap/shop.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/shuffle.svg b/public/hse/assets/bootstrap/shuffle.svg deleted file mode 100644 index 83bf20c..0000000 --- a/public/hse/assets/bootstrap/shuffle.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sign-dead-end-fill.svg b/public/hse/assets/bootstrap/sign-dead-end-fill.svg deleted file mode 100644 index b7f5876..0000000 --- a/public/hse/assets/bootstrap/sign-dead-end-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sign-dead-end.svg b/public/hse/assets/bootstrap/sign-dead-end.svg deleted file mode 100644 index 2828c9a..0000000 --- a/public/hse/assets/bootstrap/sign-dead-end.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sign-do-not-enter-fill.svg b/public/hse/assets/bootstrap/sign-do-not-enter-fill.svg deleted file mode 100644 index 3dfab6c..0000000 --- a/public/hse/assets/bootstrap/sign-do-not-enter-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sign-do-not-enter.svg b/public/hse/assets/bootstrap/sign-do-not-enter.svg deleted file mode 100644 index bf1ab21..0000000 --- a/public/hse/assets/bootstrap/sign-do-not-enter.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sign-intersection-fill.svg b/public/hse/assets/bootstrap/sign-intersection-fill.svg deleted file mode 100644 index a8d0e5b..0000000 --- a/public/hse/assets/bootstrap/sign-intersection-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sign-intersection-side-fill.svg b/public/hse/assets/bootstrap/sign-intersection-side-fill.svg deleted file mode 100644 index 7e6fd34..0000000 --- a/public/hse/assets/bootstrap/sign-intersection-side-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sign-intersection-side.svg b/public/hse/assets/bootstrap/sign-intersection-side.svg deleted file mode 100644 index 80959aa..0000000 --- a/public/hse/assets/bootstrap/sign-intersection-side.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sign-intersection-t-fill.svg b/public/hse/assets/bootstrap/sign-intersection-t-fill.svg deleted file mode 100644 index 0927772..0000000 --- a/public/hse/assets/bootstrap/sign-intersection-t-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sign-intersection-t.svg b/public/hse/assets/bootstrap/sign-intersection-t.svg deleted file mode 100644 index 95240f4..0000000 --- a/public/hse/assets/bootstrap/sign-intersection-t.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sign-intersection-y-fill.svg b/public/hse/assets/bootstrap/sign-intersection-y-fill.svg deleted file mode 100644 index 80201f9..0000000 --- a/public/hse/assets/bootstrap/sign-intersection-y-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sign-intersection-y.svg b/public/hse/assets/bootstrap/sign-intersection-y.svg deleted file mode 100644 index efc84a3..0000000 --- a/public/hse/assets/bootstrap/sign-intersection-y.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sign-intersection.svg b/public/hse/assets/bootstrap/sign-intersection.svg deleted file mode 100644 index 509b13f..0000000 --- a/public/hse/assets/bootstrap/sign-intersection.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sign-merge-left-fill.svg b/public/hse/assets/bootstrap/sign-merge-left-fill.svg deleted file mode 100644 index a1bd7ac..0000000 --- a/public/hse/assets/bootstrap/sign-merge-left-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sign-merge-left.svg b/public/hse/assets/bootstrap/sign-merge-left.svg deleted file mode 100644 index b509fa2..0000000 --- a/public/hse/assets/bootstrap/sign-merge-left.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sign-merge-right-fill.svg b/public/hse/assets/bootstrap/sign-merge-right-fill.svg deleted file mode 100644 index 7f77190..0000000 --- a/public/hse/assets/bootstrap/sign-merge-right-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sign-merge-right.svg b/public/hse/assets/bootstrap/sign-merge-right.svg deleted file mode 100644 index 0339ab2..0000000 --- a/public/hse/assets/bootstrap/sign-merge-right.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sign-no-left-turn-fill.svg b/public/hse/assets/bootstrap/sign-no-left-turn-fill.svg deleted file mode 100644 index 86cc79b..0000000 --- a/public/hse/assets/bootstrap/sign-no-left-turn-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sign-no-left-turn.svg b/public/hse/assets/bootstrap/sign-no-left-turn.svg deleted file mode 100644 index e29d443..0000000 --- a/public/hse/assets/bootstrap/sign-no-left-turn.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sign-no-parking-fill.svg b/public/hse/assets/bootstrap/sign-no-parking-fill.svg deleted file mode 100644 index 0e1bf46..0000000 --- a/public/hse/assets/bootstrap/sign-no-parking-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sign-no-parking.svg b/public/hse/assets/bootstrap/sign-no-parking.svg deleted file mode 100644 index cc97b1c..0000000 --- a/public/hse/assets/bootstrap/sign-no-parking.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sign-no-right-turn-fill.svg b/public/hse/assets/bootstrap/sign-no-right-turn-fill.svg deleted file mode 100644 index 7448c09..0000000 --- a/public/hse/assets/bootstrap/sign-no-right-turn-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sign-no-right-turn.svg b/public/hse/assets/bootstrap/sign-no-right-turn.svg deleted file mode 100644 index e7de083..0000000 --- a/public/hse/assets/bootstrap/sign-no-right-turn.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sign-railroad-fill.svg b/public/hse/assets/bootstrap/sign-railroad-fill.svg deleted file mode 100644 index 2581813..0000000 --- a/public/hse/assets/bootstrap/sign-railroad-fill.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sign-railroad.svg b/public/hse/assets/bootstrap/sign-railroad.svg deleted file mode 100644 index a264db2..0000000 --- a/public/hse/assets/bootstrap/sign-railroad.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sign-stop-fill.svg b/public/hse/assets/bootstrap/sign-stop-fill.svg deleted file mode 100644 index 375af76..0000000 --- a/public/hse/assets/bootstrap/sign-stop-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sign-stop-lights-fill.svg b/public/hse/assets/bootstrap/sign-stop-lights-fill.svg deleted file mode 100644 index df93e1c..0000000 --- a/public/hse/assets/bootstrap/sign-stop-lights-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sign-stop-lights.svg b/public/hse/assets/bootstrap/sign-stop-lights.svg deleted file mode 100644 index 297320a..0000000 --- a/public/hse/assets/bootstrap/sign-stop-lights.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sign-stop.svg b/public/hse/assets/bootstrap/sign-stop.svg deleted file mode 100644 index 14def74..0000000 --- a/public/hse/assets/bootstrap/sign-stop.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sign-turn-left-fill.svg b/public/hse/assets/bootstrap/sign-turn-left-fill.svg deleted file mode 100644 index 87a6dca..0000000 --- a/public/hse/assets/bootstrap/sign-turn-left-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sign-turn-left.svg b/public/hse/assets/bootstrap/sign-turn-left.svg deleted file mode 100644 index bea00b7..0000000 --- a/public/hse/assets/bootstrap/sign-turn-left.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sign-turn-right-fill.svg b/public/hse/assets/bootstrap/sign-turn-right-fill.svg deleted file mode 100644 index 4181518..0000000 --- a/public/hse/assets/bootstrap/sign-turn-right-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sign-turn-right.svg b/public/hse/assets/bootstrap/sign-turn-right.svg deleted file mode 100644 index da447db..0000000 --- a/public/hse/assets/bootstrap/sign-turn-right.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sign-turn-slight-left-fill.svg b/public/hse/assets/bootstrap/sign-turn-slight-left-fill.svg deleted file mode 100644 index 62f8388..0000000 --- a/public/hse/assets/bootstrap/sign-turn-slight-left-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sign-turn-slight-left.svg b/public/hse/assets/bootstrap/sign-turn-slight-left.svg deleted file mode 100644 index 79475ad..0000000 --- a/public/hse/assets/bootstrap/sign-turn-slight-left.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sign-turn-slight-right-fill.svg b/public/hse/assets/bootstrap/sign-turn-slight-right-fill.svg deleted file mode 100644 index c4c4761..0000000 --- a/public/hse/assets/bootstrap/sign-turn-slight-right-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sign-turn-slight-right.svg b/public/hse/assets/bootstrap/sign-turn-slight-right.svg deleted file mode 100644 index cf22c01..0000000 --- a/public/hse/assets/bootstrap/sign-turn-slight-right.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sign-yield-fill.svg b/public/hse/assets/bootstrap/sign-yield-fill.svg deleted file mode 100644 index c2ec9a5..0000000 --- a/public/hse/assets/bootstrap/sign-yield-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sign-yield.svg b/public/hse/assets/bootstrap/sign-yield.svg deleted file mode 100644 index aabf3fb..0000000 --- a/public/hse/assets/bootstrap/sign-yield.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/signal.svg b/public/hse/assets/bootstrap/signal.svg deleted file mode 100644 index 4220d48..0000000 --- a/public/hse/assets/bootstrap/signal.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/signpost-2-fill.svg b/public/hse/assets/bootstrap/signpost-2-fill.svg deleted file mode 100644 index cc51e51..0000000 --- a/public/hse/assets/bootstrap/signpost-2-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/signpost-2.svg b/public/hse/assets/bootstrap/signpost-2.svg deleted file mode 100644 index 6a18b3b..0000000 --- a/public/hse/assets/bootstrap/signpost-2.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/signpost-fill.svg b/public/hse/assets/bootstrap/signpost-fill.svg deleted file mode 100644 index f95f257..0000000 --- a/public/hse/assets/bootstrap/signpost-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/signpost-split-fill.svg b/public/hse/assets/bootstrap/signpost-split-fill.svg deleted file mode 100644 index 86aa086..0000000 --- a/public/hse/assets/bootstrap/signpost-split-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/signpost-split.svg b/public/hse/assets/bootstrap/signpost-split.svg deleted file mode 100644 index 0168ae5..0000000 --- a/public/hse/assets/bootstrap/signpost-split.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/signpost.svg b/public/hse/assets/bootstrap/signpost.svg deleted file mode 100644 index 90a8882..0000000 --- a/public/hse/assets/bootstrap/signpost.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sim-fill.svg b/public/hse/assets/bootstrap/sim-fill.svg deleted file mode 100644 index c8e2c29..0000000 --- a/public/hse/assets/bootstrap/sim-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sim.svg b/public/hse/assets/bootstrap/sim.svg deleted file mode 100644 index cc0e869..0000000 --- a/public/hse/assets/bootstrap/sim.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sina-weibo.svg b/public/hse/assets/bootstrap/sina-weibo.svg deleted file mode 100644 index 05c5f4b..0000000 --- a/public/hse/assets/bootstrap/sina-weibo.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/skip-backward-btn-fill.svg b/public/hse/assets/bootstrap/skip-backward-btn-fill.svg deleted file mode 100644 index bf06429..0000000 --- a/public/hse/assets/bootstrap/skip-backward-btn-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/skip-backward-btn.svg b/public/hse/assets/bootstrap/skip-backward-btn.svg deleted file mode 100644 index b04455e..0000000 --- a/public/hse/assets/bootstrap/skip-backward-btn.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/skip-backward-circle-fill.svg b/public/hse/assets/bootstrap/skip-backward-circle-fill.svg deleted file mode 100644 index f6b6e4d..0000000 --- a/public/hse/assets/bootstrap/skip-backward-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/skip-backward-circle.svg b/public/hse/assets/bootstrap/skip-backward-circle.svg deleted file mode 100644 index 63e2a19..0000000 --- a/public/hse/assets/bootstrap/skip-backward-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/skip-backward-fill.svg b/public/hse/assets/bootstrap/skip-backward-fill.svg deleted file mode 100644 index a0ce53c..0000000 --- a/public/hse/assets/bootstrap/skip-backward-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/skip-backward.svg b/public/hse/assets/bootstrap/skip-backward.svg deleted file mode 100644 index 9be60fe..0000000 --- a/public/hse/assets/bootstrap/skip-backward.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/skip-end-btn-fill.svg b/public/hse/assets/bootstrap/skip-end-btn-fill.svg deleted file mode 100644 index 55bf1ba..0000000 --- a/public/hse/assets/bootstrap/skip-end-btn-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/skip-end-btn.svg b/public/hse/assets/bootstrap/skip-end-btn.svg deleted file mode 100644 index 6c5b044..0000000 --- a/public/hse/assets/bootstrap/skip-end-btn.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/skip-end-circle-fill.svg b/public/hse/assets/bootstrap/skip-end-circle-fill.svg deleted file mode 100644 index e303750..0000000 --- a/public/hse/assets/bootstrap/skip-end-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/skip-end-circle.svg b/public/hse/assets/bootstrap/skip-end-circle.svg deleted file mode 100644 index 39e8cd3..0000000 --- a/public/hse/assets/bootstrap/skip-end-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/skip-end-fill.svg b/public/hse/assets/bootstrap/skip-end-fill.svg deleted file mode 100644 index fa90d3f..0000000 --- a/public/hse/assets/bootstrap/skip-end-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/skip-end.svg b/public/hse/assets/bootstrap/skip-end.svg deleted file mode 100644 index 40d6fa9..0000000 --- a/public/hse/assets/bootstrap/skip-end.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/skip-forward-btn-fill.svg b/public/hse/assets/bootstrap/skip-forward-btn-fill.svg deleted file mode 100644 index b767e9c..0000000 --- a/public/hse/assets/bootstrap/skip-forward-btn-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/skip-forward-btn.svg b/public/hse/assets/bootstrap/skip-forward-btn.svg deleted file mode 100644 index f67d3a8..0000000 --- a/public/hse/assets/bootstrap/skip-forward-btn.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/skip-forward-circle-fill.svg b/public/hse/assets/bootstrap/skip-forward-circle-fill.svg deleted file mode 100644 index 00cea35..0000000 --- a/public/hse/assets/bootstrap/skip-forward-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/skip-forward-circle.svg b/public/hse/assets/bootstrap/skip-forward-circle.svg deleted file mode 100644 index 3b55d7e..0000000 --- a/public/hse/assets/bootstrap/skip-forward-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/skip-forward-fill.svg b/public/hse/assets/bootstrap/skip-forward-fill.svg deleted file mode 100644 index c4071aa..0000000 --- a/public/hse/assets/bootstrap/skip-forward-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/skip-forward.svg b/public/hse/assets/bootstrap/skip-forward.svg deleted file mode 100644 index a1c4720..0000000 --- a/public/hse/assets/bootstrap/skip-forward.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/skip-start-btn-fill.svg b/public/hse/assets/bootstrap/skip-start-btn-fill.svg deleted file mode 100644 index 56a1370..0000000 --- a/public/hse/assets/bootstrap/skip-start-btn-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/skip-start-btn.svg b/public/hse/assets/bootstrap/skip-start-btn.svg deleted file mode 100644 index c86afbe..0000000 --- a/public/hse/assets/bootstrap/skip-start-btn.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/skip-start-circle-fill.svg b/public/hse/assets/bootstrap/skip-start-circle-fill.svg deleted file mode 100644 index b6d13b0..0000000 --- a/public/hse/assets/bootstrap/skip-start-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/skip-start-circle.svg b/public/hse/assets/bootstrap/skip-start-circle.svg deleted file mode 100644 index f9664d9..0000000 --- a/public/hse/assets/bootstrap/skip-start-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/skip-start-fill.svg b/public/hse/assets/bootstrap/skip-start-fill.svg deleted file mode 100644 index c4295fc..0000000 --- a/public/hse/assets/bootstrap/skip-start-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/skip-start.svg b/public/hse/assets/bootstrap/skip-start.svg deleted file mode 100644 index a178e0e..0000000 --- a/public/hse/assets/bootstrap/skip-start.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/skype.svg b/public/hse/assets/bootstrap/skype.svg deleted file mode 100644 index b3beaf9..0000000 --- a/public/hse/assets/bootstrap/skype.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/slack.svg b/public/hse/assets/bootstrap/slack.svg deleted file mode 100644 index f4aa6e6..0000000 --- a/public/hse/assets/bootstrap/slack.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/slash-circle-fill.svg b/public/hse/assets/bootstrap/slash-circle-fill.svg deleted file mode 100644 index f703101..0000000 --- a/public/hse/assets/bootstrap/slash-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/slash-circle.svg b/public/hse/assets/bootstrap/slash-circle.svg deleted file mode 100644 index 4c1344b..0000000 --- a/public/hse/assets/bootstrap/slash-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/slash-lg.svg b/public/hse/assets/bootstrap/slash-lg.svg deleted file mode 100644 index 161b6ec..0000000 --- a/public/hse/assets/bootstrap/slash-lg.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/slash-square-fill.svg b/public/hse/assets/bootstrap/slash-square-fill.svg deleted file mode 100644 index c7a3935..0000000 --- a/public/hse/assets/bootstrap/slash-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/slash-square.svg b/public/hse/assets/bootstrap/slash-square.svg deleted file mode 100644 index ccf42bd..0000000 --- a/public/hse/assets/bootstrap/slash-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/slash.svg b/public/hse/assets/bootstrap/slash.svg deleted file mode 100644 index 9616561..0000000 --- a/public/hse/assets/bootstrap/slash.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sliders.svg b/public/hse/assets/bootstrap/sliders.svg deleted file mode 100644 index da4b835..0000000 --- a/public/hse/assets/bootstrap/sliders.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sliders2-vertical.svg b/public/hse/assets/bootstrap/sliders2-vertical.svg deleted file mode 100644 index c474281..0000000 --- a/public/hse/assets/bootstrap/sliders2-vertical.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sliders2.svg b/public/hse/assets/bootstrap/sliders2.svg deleted file mode 100644 index 86fa70c..0000000 --- a/public/hse/assets/bootstrap/sliders2.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/smartwatch.svg b/public/hse/assets/bootstrap/smartwatch.svg deleted file mode 100644 index 696bd33..0000000 --- a/public/hse/assets/bootstrap/smartwatch.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/snapchat.svg b/public/hse/assets/bootstrap/snapchat.svg deleted file mode 100644 index 505f55a..0000000 --- a/public/hse/assets/bootstrap/snapchat.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/snow.svg b/public/hse/assets/bootstrap/snow.svg deleted file mode 100644 index 9b648a5..0000000 --- a/public/hse/assets/bootstrap/snow.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/snow2.svg b/public/hse/assets/bootstrap/snow2.svg deleted file mode 100644 index cede335..0000000 --- a/public/hse/assets/bootstrap/snow2.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/snow3.svg b/public/hse/assets/bootstrap/snow3.svg deleted file mode 100644 index 75e5ef2..0000000 --- a/public/hse/assets/bootstrap/snow3.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sort-alpha-down-alt.svg b/public/hse/assets/bootstrap/sort-alpha-down-alt.svg deleted file mode 100644 index fa4f4fa..0000000 --- a/public/hse/assets/bootstrap/sort-alpha-down-alt.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sort-alpha-down.svg b/public/hse/assets/bootstrap/sort-alpha-down.svg deleted file mode 100644 index e0fcad0..0000000 --- a/public/hse/assets/bootstrap/sort-alpha-down.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sort-alpha-up-alt.svg b/public/hse/assets/bootstrap/sort-alpha-up-alt.svg deleted file mode 100644 index 69c1a39..0000000 --- a/public/hse/assets/bootstrap/sort-alpha-up-alt.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sort-alpha-up.svg b/public/hse/assets/bootstrap/sort-alpha-up.svg deleted file mode 100644 index 0be5e68..0000000 --- a/public/hse/assets/bootstrap/sort-alpha-up.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sort-down-alt.svg b/public/hse/assets/bootstrap/sort-down-alt.svg deleted file mode 100644 index d7f7fc8..0000000 --- a/public/hse/assets/bootstrap/sort-down-alt.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sort-down.svg b/public/hse/assets/bootstrap/sort-down.svg deleted file mode 100644 index 848834c..0000000 --- a/public/hse/assets/bootstrap/sort-down.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sort-numeric-down-alt.svg b/public/hse/assets/bootstrap/sort-numeric-down-alt.svg deleted file mode 100644 index 8c39a5a..0000000 --- a/public/hse/assets/bootstrap/sort-numeric-down-alt.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sort-numeric-down.svg b/public/hse/assets/bootstrap/sort-numeric-down.svg deleted file mode 100644 index 57a3fb0..0000000 --- a/public/hse/assets/bootstrap/sort-numeric-down.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sort-numeric-up-alt.svg b/public/hse/assets/bootstrap/sort-numeric-up-alt.svg deleted file mode 100644 index e8edf88..0000000 --- a/public/hse/assets/bootstrap/sort-numeric-up-alt.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sort-numeric-up.svg b/public/hse/assets/bootstrap/sort-numeric-up.svg deleted file mode 100644 index 1cd0a37..0000000 --- a/public/hse/assets/bootstrap/sort-numeric-up.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sort-up-alt.svg b/public/hse/assets/bootstrap/sort-up-alt.svg deleted file mode 100644 index 96650d5..0000000 --- a/public/hse/assets/bootstrap/sort-up-alt.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sort-up.svg b/public/hse/assets/bootstrap/sort-up.svg deleted file mode 100644 index 2158801..0000000 --- a/public/hse/assets/bootstrap/sort-up.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/soundwave.svg b/public/hse/assets/bootstrap/soundwave.svg deleted file mode 100644 index 288f108..0000000 --- a/public/hse/assets/bootstrap/soundwave.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/speaker-fill.svg b/public/hse/assets/bootstrap/speaker-fill.svg deleted file mode 100644 index bae80e2..0000000 --- a/public/hse/assets/bootstrap/speaker-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/speaker.svg b/public/hse/assets/bootstrap/speaker.svg deleted file mode 100644 index 461626d..0000000 --- a/public/hse/assets/bootstrap/speaker.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/speedometer.svg b/public/hse/assets/bootstrap/speedometer.svg deleted file mode 100644 index 5a0a43c..0000000 --- a/public/hse/assets/bootstrap/speedometer.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/speedometer2.svg b/public/hse/assets/bootstrap/speedometer2.svg deleted file mode 100644 index d5676df..0000000 --- a/public/hse/assets/bootstrap/speedometer2.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/spellcheck.svg b/public/hse/assets/bootstrap/spellcheck.svg deleted file mode 100644 index 029950f..0000000 --- a/public/hse/assets/bootstrap/spellcheck.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/spotify.svg b/public/hse/assets/bootstrap/spotify.svg deleted file mode 100644 index 31b4238..0000000 --- a/public/hse/assets/bootstrap/spotify.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/square-fill.svg b/public/hse/assets/bootstrap/square-fill.svg deleted file mode 100644 index 31bae4f..0000000 --- a/public/hse/assets/bootstrap/square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/square-half.svg b/public/hse/assets/bootstrap/square-half.svg deleted file mode 100644 index 3f8179d..0000000 --- a/public/hse/assets/bootstrap/square-half.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/square.svg b/public/hse/assets/bootstrap/square.svg deleted file mode 100644 index ded82d4..0000000 --- a/public/hse/assets/bootstrap/square.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/stack-overflow.svg b/public/hse/assets/bootstrap/stack-overflow.svg deleted file mode 100644 index b7d482d..0000000 --- a/public/hse/assets/bootstrap/stack-overflow.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/stack.svg b/public/hse/assets/bootstrap/stack.svg deleted file mode 100644 index b8a9c94..0000000 --- a/public/hse/assets/bootstrap/stack.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/star-fill.svg b/public/hse/assets/bootstrap/star-fill.svg deleted file mode 100644 index de09c4a..0000000 --- a/public/hse/assets/bootstrap/star-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/star-half.svg b/public/hse/assets/bootstrap/star-half.svg deleted file mode 100644 index 8d30e7e..0000000 --- a/public/hse/assets/bootstrap/star-half.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/star.svg b/public/hse/assets/bootstrap/star.svg deleted file mode 100644 index 742b5e2..0000000 --- a/public/hse/assets/bootstrap/star.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/stars.svg b/public/hse/assets/bootstrap/stars.svg deleted file mode 100644 index 2c16677..0000000 --- a/public/hse/assets/bootstrap/stars.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/steam.svg b/public/hse/assets/bootstrap/steam.svg deleted file mode 100644 index aecd433..0000000 --- a/public/hse/assets/bootstrap/steam.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/stickies-fill.svg b/public/hse/assets/bootstrap/stickies-fill.svg deleted file mode 100644 index a0252da..0000000 --- a/public/hse/assets/bootstrap/stickies-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/stickies.svg b/public/hse/assets/bootstrap/stickies.svg deleted file mode 100644 index 8252c49..0000000 --- a/public/hse/assets/bootstrap/stickies.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sticky-fill.svg b/public/hse/assets/bootstrap/sticky-fill.svg deleted file mode 100644 index acd42b9..0000000 --- a/public/hse/assets/bootstrap/sticky-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sticky.svg b/public/hse/assets/bootstrap/sticky.svg deleted file mode 100644 index dba0142..0000000 --- a/public/hse/assets/bootstrap/sticky.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/stop-btn-fill.svg b/public/hse/assets/bootstrap/stop-btn-fill.svg deleted file mode 100644 index 58b6c02..0000000 --- a/public/hse/assets/bootstrap/stop-btn-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/stop-btn.svg b/public/hse/assets/bootstrap/stop-btn.svg deleted file mode 100644 index 5c392ec..0000000 --- a/public/hse/assets/bootstrap/stop-btn.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/stop-circle-fill.svg b/public/hse/assets/bootstrap/stop-circle-fill.svg deleted file mode 100644 index ac711e0..0000000 --- a/public/hse/assets/bootstrap/stop-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/stop-circle.svg b/public/hse/assets/bootstrap/stop-circle.svg deleted file mode 100644 index 441613c..0000000 --- a/public/hse/assets/bootstrap/stop-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/stop-fill.svg b/public/hse/assets/bootstrap/stop-fill.svg deleted file mode 100644 index e00085a..0000000 --- a/public/hse/assets/bootstrap/stop-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/stop.svg b/public/hse/assets/bootstrap/stop.svg deleted file mode 100644 index 2b86647..0000000 --- a/public/hse/assets/bootstrap/stop.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/stoplights-fill.svg b/public/hse/assets/bootstrap/stoplights-fill.svg deleted file mode 100644 index a18566b..0000000 --- a/public/hse/assets/bootstrap/stoplights-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/stoplights.svg b/public/hse/assets/bootstrap/stoplights.svg deleted file mode 100644 index f765ab2..0000000 --- a/public/hse/assets/bootstrap/stoplights.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/stopwatch-fill.svg b/public/hse/assets/bootstrap/stopwatch-fill.svg deleted file mode 100644 index 2d2ed11..0000000 --- a/public/hse/assets/bootstrap/stopwatch-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/stopwatch.svg b/public/hse/assets/bootstrap/stopwatch.svg deleted file mode 100644 index 964dbb8..0000000 --- a/public/hse/assets/bootstrap/stopwatch.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/strava.svg b/public/hse/assets/bootstrap/strava.svg deleted file mode 100644 index 7e3237d..0000000 --- a/public/hse/assets/bootstrap/strava.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/stripe.svg b/public/hse/assets/bootstrap/stripe.svg deleted file mode 100644 index f24fdf3..0000000 --- a/public/hse/assets/bootstrap/stripe.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/subscript.svg b/public/hse/assets/bootstrap/subscript.svg deleted file mode 100644 index 6976c0d..0000000 --- a/public/hse/assets/bootstrap/subscript.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/subtract.svg b/public/hse/assets/bootstrap/subtract.svg deleted file mode 100644 index e1d878a..0000000 --- a/public/hse/assets/bootstrap/subtract.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/suit-club-fill.svg b/public/hse/assets/bootstrap/suit-club-fill.svg deleted file mode 100644 index d4d311a..0000000 --- a/public/hse/assets/bootstrap/suit-club-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/suit-club.svg b/public/hse/assets/bootstrap/suit-club.svg deleted file mode 100644 index 75e5e85..0000000 --- a/public/hse/assets/bootstrap/suit-club.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/suit-diamond-fill.svg b/public/hse/assets/bootstrap/suit-diamond-fill.svg deleted file mode 100644 index 2be1b7f..0000000 --- a/public/hse/assets/bootstrap/suit-diamond-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/suit-diamond.svg b/public/hse/assets/bootstrap/suit-diamond.svg deleted file mode 100644 index 9192a27..0000000 --- a/public/hse/assets/bootstrap/suit-diamond.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/suit-heart-fill.svg b/public/hse/assets/bootstrap/suit-heart-fill.svg deleted file mode 100644 index 0dd86f9..0000000 --- a/public/hse/assets/bootstrap/suit-heart-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/suit-heart.svg b/public/hse/assets/bootstrap/suit-heart.svg deleted file mode 100644 index c761ef4..0000000 --- a/public/hse/assets/bootstrap/suit-heart.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/suit-spade-fill.svg b/public/hse/assets/bootstrap/suit-spade-fill.svg deleted file mode 100644 index 63bb0c6..0000000 --- a/public/hse/assets/bootstrap/suit-spade-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/suit-spade.svg b/public/hse/assets/bootstrap/suit-spade.svg deleted file mode 100644 index 8f14427..0000000 --- a/public/hse/assets/bootstrap/suit-spade.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sun-fill.svg b/public/hse/assets/bootstrap/sun-fill.svg deleted file mode 100644 index cc1a60e..0000000 --- a/public/hse/assets/bootstrap/sun-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sun.svg b/public/hse/assets/bootstrap/sun.svg deleted file mode 100644 index c311208..0000000 --- a/public/hse/assets/bootstrap/sun.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sunglasses.svg b/public/hse/assets/bootstrap/sunglasses.svg deleted file mode 100644 index 3f7dad0..0000000 --- a/public/hse/assets/bootstrap/sunglasses.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sunrise-fill.svg b/public/hse/assets/bootstrap/sunrise-fill.svg deleted file mode 100644 index eb6a668..0000000 --- a/public/hse/assets/bootstrap/sunrise-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sunrise.svg b/public/hse/assets/bootstrap/sunrise.svg deleted file mode 100644 index 53d670d..0000000 --- a/public/hse/assets/bootstrap/sunrise.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sunset-fill.svg b/public/hse/assets/bootstrap/sunset-fill.svg deleted file mode 100644 index 7f5b60e..0000000 --- a/public/hse/assets/bootstrap/sunset-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/sunset.svg b/public/hse/assets/bootstrap/sunset.svg deleted file mode 100644 index 91041cf..0000000 --- a/public/hse/assets/bootstrap/sunset.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/superscript.svg b/public/hse/assets/bootstrap/superscript.svg deleted file mode 100644 index 06a1a78..0000000 --- a/public/hse/assets/bootstrap/superscript.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/symmetry-horizontal.svg b/public/hse/assets/bootstrap/symmetry-horizontal.svg deleted file mode 100644 index 7e46d90..0000000 --- a/public/hse/assets/bootstrap/symmetry-horizontal.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/symmetry-vertical.svg b/public/hse/assets/bootstrap/symmetry-vertical.svg deleted file mode 100644 index a18fa2f..0000000 --- a/public/hse/assets/bootstrap/symmetry-vertical.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/table.svg b/public/hse/assets/bootstrap/table.svg deleted file mode 100644 index 5e70d22..0000000 --- a/public/hse/assets/bootstrap/table.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/tablet-fill.svg b/public/hse/assets/bootstrap/tablet-fill.svg deleted file mode 100644 index 571ae8f..0000000 --- a/public/hse/assets/bootstrap/tablet-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/tablet-landscape-fill.svg b/public/hse/assets/bootstrap/tablet-landscape-fill.svg deleted file mode 100644 index a4a6048..0000000 --- a/public/hse/assets/bootstrap/tablet-landscape-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/tablet-landscape.svg b/public/hse/assets/bootstrap/tablet-landscape.svg deleted file mode 100644 index b36f7d4..0000000 --- a/public/hse/assets/bootstrap/tablet-landscape.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/tablet.svg b/public/hse/assets/bootstrap/tablet.svg deleted file mode 100644 index be81ff5..0000000 --- a/public/hse/assets/bootstrap/tablet.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/tag-fill.svg b/public/hse/assets/bootstrap/tag-fill.svg deleted file mode 100644 index 1502792..0000000 --- a/public/hse/assets/bootstrap/tag-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/tag.svg b/public/hse/assets/bootstrap/tag.svg deleted file mode 100644 index ab34fdd..0000000 --- a/public/hse/assets/bootstrap/tag.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/tags-fill.svg b/public/hse/assets/bootstrap/tags-fill.svg deleted file mode 100644 index f92a361..0000000 --- a/public/hse/assets/bootstrap/tags-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/tags.svg b/public/hse/assets/bootstrap/tags.svg deleted file mode 100644 index 9f6d676..0000000 --- a/public/hse/assets/bootstrap/tags.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/taxi-front-fill.svg b/public/hse/assets/bootstrap/taxi-front-fill.svg deleted file mode 100644 index 1e1eb19..0000000 --- a/public/hse/assets/bootstrap/taxi-front-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/taxi-front.svg b/public/hse/assets/bootstrap/taxi-front.svg deleted file mode 100644 index 4cb5fda..0000000 --- a/public/hse/assets/bootstrap/taxi-front.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/telegram.svg b/public/hse/assets/bootstrap/telegram.svg deleted file mode 100644 index 139af07..0000000 --- a/public/hse/assets/bootstrap/telegram.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/telephone-fill.svg b/public/hse/assets/bootstrap/telephone-fill.svg deleted file mode 100644 index efc72c0..0000000 --- a/public/hse/assets/bootstrap/telephone-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/telephone-forward-fill.svg b/public/hse/assets/bootstrap/telephone-forward-fill.svg deleted file mode 100644 index f4ce483..0000000 --- a/public/hse/assets/bootstrap/telephone-forward-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/telephone-forward.svg b/public/hse/assets/bootstrap/telephone-forward.svg deleted file mode 100644 index 17ec9ce..0000000 --- a/public/hse/assets/bootstrap/telephone-forward.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/telephone-inbound-fill.svg b/public/hse/assets/bootstrap/telephone-inbound-fill.svg deleted file mode 100644 index 998c8fb..0000000 --- a/public/hse/assets/bootstrap/telephone-inbound-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/telephone-inbound.svg b/public/hse/assets/bootstrap/telephone-inbound.svg deleted file mode 100644 index 460fe9f..0000000 --- a/public/hse/assets/bootstrap/telephone-inbound.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/telephone-minus-fill.svg b/public/hse/assets/bootstrap/telephone-minus-fill.svg deleted file mode 100644 index bc17abb..0000000 --- a/public/hse/assets/bootstrap/telephone-minus-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/telephone-minus.svg b/public/hse/assets/bootstrap/telephone-minus.svg deleted file mode 100644 index 4f4d93c..0000000 --- a/public/hse/assets/bootstrap/telephone-minus.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/telephone-outbound-fill.svg b/public/hse/assets/bootstrap/telephone-outbound-fill.svg deleted file mode 100644 index 16013a5..0000000 --- a/public/hse/assets/bootstrap/telephone-outbound-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/telephone-outbound.svg b/public/hse/assets/bootstrap/telephone-outbound.svg deleted file mode 100644 index 1382886..0000000 --- a/public/hse/assets/bootstrap/telephone-outbound.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/telephone-plus-fill.svg b/public/hse/assets/bootstrap/telephone-plus-fill.svg deleted file mode 100644 index 6d8c58f..0000000 --- a/public/hse/assets/bootstrap/telephone-plus-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/telephone-plus.svg b/public/hse/assets/bootstrap/telephone-plus.svg deleted file mode 100644 index 21ef909..0000000 --- a/public/hse/assets/bootstrap/telephone-plus.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/telephone-x-fill.svg b/public/hse/assets/bootstrap/telephone-x-fill.svg deleted file mode 100644 index c8ef894..0000000 --- a/public/hse/assets/bootstrap/telephone-x-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/telephone-x.svg b/public/hse/assets/bootstrap/telephone-x.svg deleted file mode 100644 index 5aa3f95..0000000 --- a/public/hse/assets/bootstrap/telephone-x.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/telephone.svg b/public/hse/assets/bootstrap/telephone.svg deleted file mode 100644 index 8e359b8..0000000 --- a/public/hse/assets/bootstrap/telephone.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/tencent-qq.svg b/public/hse/assets/bootstrap/tencent-qq.svg deleted file mode 100644 index b107eb5..0000000 --- a/public/hse/assets/bootstrap/tencent-qq.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/terminal-dash.svg b/public/hse/assets/bootstrap/terminal-dash.svg deleted file mode 100644 index 9049b5e..0000000 --- a/public/hse/assets/bootstrap/terminal-dash.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/terminal-fill.svg b/public/hse/assets/bootstrap/terminal-fill.svg deleted file mode 100644 index d3c6394..0000000 --- a/public/hse/assets/bootstrap/terminal-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/terminal-plus.svg b/public/hse/assets/bootstrap/terminal-plus.svg deleted file mode 100644 index be268c8..0000000 --- a/public/hse/assets/bootstrap/terminal-plus.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/terminal-split.svg b/public/hse/assets/bootstrap/terminal-split.svg deleted file mode 100644 index f65d2c7..0000000 --- a/public/hse/assets/bootstrap/terminal-split.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/terminal-x.svg b/public/hse/assets/bootstrap/terminal-x.svg deleted file mode 100644 index 5128f11..0000000 --- a/public/hse/assets/bootstrap/terminal-x.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/terminal.svg b/public/hse/assets/bootstrap/terminal.svg deleted file mode 100644 index e12c9f8..0000000 --- a/public/hse/assets/bootstrap/terminal.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/text-center.svg b/public/hse/assets/bootstrap/text-center.svg deleted file mode 100644 index 2887a99..0000000 --- a/public/hse/assets/bootstrap/text-center.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/text-indent-left.svg b/public/hse/assets/bootstrap/text-indent-left.svg deleted file mode 100644 index 34d8c55..0000000 --- a/public/hse/assets/bootstrap/text-indent-left.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/text-indent-right.svg b/public/hse/assets/bootstrap/text-indent-right.svg deleted file mode 100644 index fdd837f..0000000 --- a/public/hse/assets/bootstrap/text-indent-right.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/text-left.svg b/public/hse/assets/bootstrap/text-left.svg deleted file mode 100644 index 0452611..0000000 --- a/public/hse/assets/bootstrap/text-left.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/text-paragraph.svg b/public/hse/assets/bootstrap/text-paragraph.svg deleted file mode 100644 index 9779bea..0000000 --- a/public/hse/assets/bootstrap/text-paragraph.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/text-right.svg b/public/hse/assets/bootstrap/text-right.svg deleted file mode 100644 index 34686b0..0000000 --- a/public/hse/assets/bootstrap/text-right.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/text-wrap.svg b/public/hse/assets/bootstrap/text-wrap.svg deleted file mode 100644 index 713a96c..0000000 --- a/public/hse/assets/bootstrap/text-wrap.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/textarea-resize.svg b/public/hse/assets/bootstrap/textarea-resize.svg deleted file mode 100644 index c4a9d9f..0000000 --- a/public/hse/assets/bootstrap/textarea-resize.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/textarea-t.svg b/public/hse/assets/bootstrap/textarea-t.svg deleted file mode 100644 index dc7e17c..0000000 --- a/public/hse/assets/bootstrap/textarea-t.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/textarea.svg b/public/hse/assets/bootstrap/textarea.svg deleted file mode 100644 index 9aa5445..0000000 --- a/public/hse/assets/bootstrap/textarea.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/thermometer-half.svg b/public/hse/assets/bootstrap/thermometer-half.svg deleted file mode 100644 index cafefd2..0000000 --- a/public/hse/assets/bootstrap/thermometer-half.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/thermometer-high.svg b/public/hse/assets/bootstrap/thermometer-high.svg deleted file mode 100644 index 15acf4c..0000000 --- a/public/hse/assets/bootstrap/thermometer-high.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/thermometer-low.svg b/public/hse/assets/bootstrap/thermometer-low.svg deleted file mode 100644 index ce540e0..0000000 --- a/public/hse/assets/bootstrap/thermometer-low.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/thermometer-snow.svg b/public/hse/assets/bootstrap/thermometer-snow.svg deleted file mode 100644 index 0e1b400..0000000 --- a/public/hse/assets/bootstrap/thermometer-snow.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/thermometer-sun.svg b/public/hse/assets/bootstrap/thermometer-sun.svg deleted file mode 100644 index 07c3290..0000000 --- a/public/hse/assets/bootstrap/thermometer-sun.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/thermometer.svg b/public/hse/assets/bootstrap/thermometer.svg deleted file mode 100644 index 748813e..0000000 --- a/public/hse/assets/bootstrap/thermometer.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/three-dots-vertical.svg b/public/hse/assets/bootstrap/three-dots-vertical.svg deleted file mode 100644 index cd0c79a..0000000 --- a/public/hse/assets/bootstrap/three-dots-vertical.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/three-dots.svg b/public/hse/assets/bootstrap/three-dots.svg deleted file mode 100644 index ea92369..0000000 --- a/public/hse/assets/bootstrap/three-dots.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/thunderbolt-fill.svg b/public/hse/assets/bootstrap/thunderbolt-fill.svg deleted file mode 100644 index 85c437e..0000000 --- a/public/hse/assets/bootstrap/thunderbolt-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/thunderbolt.svg b/public/hse/assets/bootstrap/thunderbolt.svg deleted file mode 100644 index b8356da..0000000 --- a/public/hse/assets/bootstrap/thunderbolt.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/ticket-detailed-fill.svg b/public/hse/assets/bootstrap/ticket-detailed-fill.svg deleted file mode 100644 index bc5d192..0000000 --- a/public/hse/assets/bootstrap/ticket-detailed-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/ticket-detailed.svg b/public/hse/assets/bootstrap/ticket-detailed.svg deleted file mode 100644 index c2701bb..0000000 --- a/public/hse/assets/bootstrap/ticket-detailed.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/ticket-fill.svg b/public/hse/assets/bootstrap/ticket-fill.svg deleted file mode 100644 index 73728b6..0000000 --- a/public/hse/assets/bootstrap/ticket-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/ticket-perforated-fill.svg b/public/hse/assets/bootstrap/ticket-perforated-fill.svg deleted file mode 100644 index 2ec1d57..0000000 --- a/public/hse/assets/bootstrap/ticket-perforated-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/ticket-perforated.svg b/public/hse/assets/bootstrap/ticket-perforated.svg deleted file mode 100644 index 194ae05..0000000 --- a/public/hse/assets/bootstrap/ticket-perforated.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/ticket.svg b/public/hse/assets/bootstrap/ticket.svg deleted file mode 100644 index f24a93e..0000000 --- a/public/hse/assets/bootstrap/ticket.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/tiktok.svg b/public/hse/assets/bootstrap/tiktok.svg deleted file mode 100644 index 7edac4e..0000000 --- a/public/hse/assets/bootstrap/tiktok.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/toggle-off.svg b/public/hse/assets/bootstrap/toggle-off.svg deleted file mode 100644 index 97d6dab..0000000 --- a/public/hse/assets/bootstrap/toggle-off.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/toggle-on.svg b/public/hse/assets/bootstrap/toggle-on.svg deleted file mode 100644 index d13b495..0000000 --- a/public/hse/assets/bootstrap/toggle-on.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/toggle2-off.svg b/public/hse/assets/bootstrap/toggle2-off.svg deleted file mode 100644 index a8fee6b..0000000 --- a/public/hse/assets/bootstrap/toggle2-off.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/toggle2-on.svg b/public/hse/assets/bootstrap/toggle2-on.svg deleted file mode 100644 index 993ec33..0000000 --- a/public/hse/assets/bootstrap/toggle2-on.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/toggles.svg b/public/hse/assets/bootstrap/toggles.svg deleted file mode 100644 index d53ae01..0000000 --- a/public/hse/assets/bootstrap/toggles.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/toggles2.svg b/public/hse/assets/bootstrap/toggles2.svg deleted file mode 100644 index 862fc9f..0000000 --- a/public/hse/assets/bootstrap/toggles2.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/tools.svg b/public/hse/assets/bootstrap/tools.svg deleted file mode 100644 index fcc8362..0000000 --- a/public/hse/assets/bootstrap/tools.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/tornado.svg b/public/hse/assets/bootstrap/tornado.svg deleted file mode 100644 index 5bb53a2..0000000 --- a/public/hse/assets/bootstrap/tornado.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/train-freight-front-fill.svg b/public/hse/assets/bootstrap/train-freight-front-fill.svg deleted file mode 100644 index 8278bb9..0000000 --- a/public/hse/assets/bootstrap/train-freight-front-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/train-freight-front.svg b/public/hse/assets/bootstrap/train-freight-front.svg deleted file mode 100644 index a56961a..0000000 --- a/public/hse/assets/bootstrap/train-freight-front.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/train-front-fill.svg b/public/hse/assets/bootstrap/train-front-fill.svg deleted file mode 100644 index 85c56ef..0000000 --- a/public/hse/assets/bootstrap/train-front-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/train-front.svg b/public/hse/assets/bootstrap/train-front.svg deleted file mode 100644 index c84d62b..0000000 --- a/public/hse/assets/bootstrap/train-front.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/train-lightrail-front-fill.svg b/public/hse/assets/bootstrap/train-lightrail-front-fill.svg deleted file mode 100644 index e4fdebf..0000000 --- a/public/hse/assets/bootstrap/train-lightrail-front-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/train-lightrail-front.svg b/public/hse/assets/bootstrap/train-lightrail-front.svg deleted file mode 100644 index 0e4c57e..0000000 --- a/public/hse/assets/bootstrap/train-lightrail-front.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/translate.svg b/public/hse/assets/bootstrap/translate.svg deleted file mode 100644 index 39a17d2..0000000 --- a/public/hse/assets/bootstrap/translate.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/trash-fill.svg b/public/hse/assets/bootstrap/trash-fill.svg deleted file mode 100644 index 1a20e6a..0000000 --- a/public/hse/assets/bootstrap/trash-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/trash.svg b/public/hse/assets/bootstrap/trash.svg deleted file mode 100644 index 4d0ee36..0000000 --- a/public/hse/assets/bootstrap/trash.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/trash2-fill.svg b/public/hse/assets/bootstrap/trash2-fill.svg deleted file mode 100644 index bc78b6d..0000000 --- a/public/hse/assets/bootstrap/trash2-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/trash2.svg b/public/hse/assets/bootstrap/trash2.svg deleted file mode 100644 index 6e6468e..0000000 --- a/public/hse/assets/bootstrap/trash2.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/trash3-fill.svg b/public/hse/assets/bootstrap/trash3-fill.svg deleted file mode 100644 index e0e81f1..0000000 --- a/public/hse/assets/bootstrap/trash3-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/trash3.svg b/public/hse/assets/bootstrap/trash3.svg deleted file mode 100644 index 1d5f42e..0000000 --- a/public/hse/assets/bootstrap/trash3.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/tree-fill.svg b/public/hse/assets/bootstrap/tree-fill.svg deleted file mode 100644 index 4d45dd4..0000000 --- a/public/hse/assets/bootstrap/tree-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/tree.svg b/public/hse/assets/bootstrap/tree.svg deleted file mode 100644 index b97eb64..0000000 --- a/public/hse/assets/bootstrap/tree.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/trello.svg b/public/hse/assets/bootstrap/trello.svg deleted file mode 100644 index 0886058..0000000 --- a/public/hse/assets/bootstrap/trello.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/triangle-fill.svg b/public/hse/assets/bootstrap/triangle-fill.svg deleted file mode 100644 index 654787f..0000000 --- a/public/hse/assets/bootstrap/triangle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/triangle-half.svg b/public/hse/assets/bootstrap/triangle-half.svg deleted file mode 100644 index 8f86f28..0000000 --- a/public/hse/assets/bootstrap/triangle-half.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/triangle.svg b/public/hse/assets/bootstrap/triangle.svg deleted file mode 100644 index 1fa1898..0000000 --- a/public/hse/assets/bootstrap/triangle.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/trophy-fill.svg b/public/hse/assets/bootstrap/trophy-fill.svg deleted file mode 100644 index e29f001..0000000 --- a/public/hse/assets/bootstrap/trophy-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/trophy.svg b/public/hse/assets/bootstrap/trophy.svg deleted file mode 100644 index adfa108..0000000 --- a/public/hse/assets/bootstrap/trophy.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/tropical-storm.svg b/public/hse/assets/bootstrap/tropical-storm.svg deleted file mode 100644 index c16188d..0000000 --- a/public/hse/assets/bootstrap/tropical-storm.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/truck-flatbed.svg b/public/hse/assets/bootstrap/truck-flatbed.svg deleted file mode 100644 index 5a37c8d..0000000 --- a/public/hse/assets/bootstrap/truck-flatbed.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/truck-front-fill.svg b/public/hse/assets/bootstrap/truck-front-fill.svg deleted file mode 100644 index 0aeb0a1..0000000 --- a/public/hse/assets/bootstrap/truck-front-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/truck-front.svg b/public/hse/assets/bootstrap/truck-front.svg deleted file mode 100644 index 9e4bbf1..0000000 --- a/public/hse/assets/bootstrap/truck-front.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/truck.svg b/public/hse/assets/bootstrap/truck.svg deleted file mode 100644 index 1afc549..0000000 --- a/public/hse/assets/bootstrap/truck.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/tsunami.svg b/public/hse/assets/bootstrap/tsunami.svg deleted file mode 100644 index cf57486..0000000 --- a/public/hse/assets/bootstrap/tsunami.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/tv-fill.svg b/public/hse/assets/bootstrap/tv-fill.svg deleted file mode 100644 index bf9830f..0000000 --- a/public/hse/assets/bootstrap/tv-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/tv.svg b/public/hse/assets/bootstrap/tv.svg deleted file mode 100644 index bba3da1..0000000 --- a/public/hse/assets/bootstrap/tv.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/twitch.svg b/public/hse/assets/bootstrap/twitch.svg deleted file mode 100644 index 2975f80..0000000 --- a/public/hse/assets/bootstrap/twitch.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/twitter.svg b/public/hse/assets/bootstrap/twitter.svg deleted file mode 100644 index 8a83fa6..0000000 --- a/public/hse/assets/bootstrap/twitter.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/type-bold.svg b/public/hse/assets/bootstrap/type-bold.svg deleted file mode 100644 index 276d133..0000000 --- a/public/hse/assets/bootstrap/type-bold.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/type-h1.svg b/public/hse/assets/bootstrap/type-h1.svg deleted file mode 100644 index 4c89181..0000000 --- a/public/hse/assets/bootstrap/type-h1.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/type-h2.svg b/public/hse/assets/bootstrap/type-h2.svg deleted file mode 100644 index b6ab765..0000000 --- a/public/hse/assets/bootstrap/type-h2.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/type-h3.svg b/public/hse/assets/bootstrap/type-h3.svg deleted file mode 100644 index 154c293..0000000 --- a/public/hse/assets/bootstrap/type-h3.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/type-italic.svg b/public/hse/assets/bootstrap/type-italic.svg deleted file mode 100644 index 3ac6b09..0000000 --- a/public/hse/assets/bootstrap/type-italic.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/type-strikethrough.svg b/public/hse/assets/bootstrap/type-strikethrough.svg deleted file mode 100644 index 1c940e4..0000000 --- a/public/hse/assets/bootstrap/type-strikethrough.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/type-underline.svg b/public/hse/assets/bootstrap/type-underline.svg deleted file mode 100644 index c299b8b..0000000 --- a/public/hse/assets/bootstrap/type-underline.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/type.svg b/public/hse/assets/bootstrap/type.svg deleted file mode 100644 index 9ab1e4c..0000000 --- a/public/hse/assets/bootstrap/type.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/ubuntu.svg b/public/hse/assets/bootstrap/ubuntu.svg deleted file mode 100644 index 27f8c27..0000000 --- a/public/hse/assets/bootstrap/ubuntu.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/ui-checks-grid.svg b/public/hse/assets/bootstrap/ui-checks-grid.svg deleted file mode 100644 index a32d424..0000000 --- a/public/hse/assets/bootstrap/ui-checks-grid.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/ui-checks.svg b/public/hse/assets/bootstrap/ui-checks.svg deleted file mode 100644 index 9b659e2..0000000 --- a/public/hse/assets/bootstrap/ui-checks.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/ui-radios-grid.svg b/public/hse/assets/bootstrap/ui-radios-grid.svg deleted file mode 100644 index 00c7b08..0000000 --- a/public/hse/assets/bootstrap/ui-radios-grid.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/ui-radios.svg b/public/hse/assets/bootstrap/ui-radios.svg deleted file mode 100644 index da779af..0000000 --- a/public/hse/assets/bootstrap/ui-radios.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/umbrella-fill.svg b/public/hse/assets/bootstrap/umbrella-fill.svg deleted file mode 100644 index c4886e9..0000000 --- a/public/hse/assets/bootstrap/umbrella-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/umbrella.svg b/public/hse/assets/bootstrap/umbrella.svg deleted file mode 100644 index 94f32f9..0000000 --- a/public/hse/assets/bootstrap/umbrella.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/unindent.svg b/public/hse/assets/bootstrap/unindent.svg deleted file mode 100644 index 1969283..0000000 --- a/public/hse/assets/bootstrap/unindent.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/union.svg b/public/hse/assets/bootstrap/union.svg deleted file mode 100644 index b629b88..0000000 --- a/public/hse/assets/bootstrap/union.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/unity.svg b/public/hse/assets/bootstrap/unity.svg deleted file mode 100644 index e179a38..0000000 --- a/public/hse/assets/bootstrap/unity.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/universal-access-circle.svg b/public/hse/assets/bootstrap/universal-access-circle.svg deleted file mode 100644 index 158465b..0000000 --- a/public/hse/assets/bootstrap/universal-access-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/universal-access.svg b/public/hse/assets/bootstrap/universal-access.svg deleted file mode 100644 index 3b7fc37..0000000 --- a/public/hse/assets/bootstrap/universal-access.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/unlock-fill.svg b/public/hse/assets/bootstrap/unlock-fill.svg deleted file mode 100644 index f053354..0000000 --- a/public/hse/assets/bootstrap/unlock-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/unlock.svg b/public/hse/assets/bootstrap/unlock.svg deleted file mode 100644 index 8eb0925..0000000 --- a/public/hse/assets/bootstrap/unlock.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/upc-scan.svg b/public/hse/assets/bootstrap/upc-scan.svg deleted file mode 100644 index 2a9a6af..0000000 --- a/public/hse/assets/bootstrap/upc-scan.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/upc.svg b/public/hse/assets/bootstrap/upc.svg deleted file mode 100644 index 6669ef7..0000000 --- a/public/hse/assets/bootstrap/upc.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/upload.svg b/public/hse/assets/bootstrap/upload.svg deleted file mode 100644 index be3f8e3..0000000 --- a/public/hse/assets/bootstrap/upload.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/usb-c-fill.svg b/public/hse/assets/bootstrap/usb-c-fill.svg deleted file mode 100644 index 0e50ac6..0000000 --- a/public/hse/assets/bootstrap/usb-c-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/usb-c.svg b/public/hse/assets/bootstrap/usb-c.svg deleted file mode 100644 index c17d4ca..0000000 --- a/public/hse/assets/bootstrap/usb-c.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/usb-drive-fill.svg b/public/hse/assets/bootstrap/usb-drive-fill.svg deleted file mode 100644 index 834614d..0000000 --- a/public/hse/assets/bootstrap/usb-drive-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/usb-drive.svg b/public/hse/assets/bootstrap/usb-drive.svg deleted file mode 100644 index ca08df5..0000000 --- a/public/hse/assets/bootstrap/usb-drive.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/usb-fill.svg b/public/hse/assets/bootstrap/usb-fill.svg deleted file mode 100644 index 443c91a..0000000 --- a/public/hse/assets/bootstrap/usb-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/usb-micro-fill.svg b/public/hse/assets/bootstrap/usb-micro-fill.svg deleted file mode 100644 index 67ad744..0000000 --- a/public/hse/assets/bootstrap/usb-micro-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/usb-micro.svg b/public/hse/assets/bootstrap/usb-micro.svg deleted file mode 100644 index 945b6e7..0000000 --- a/public/hse/assets/bootstrap/usb-micro.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/usb-mini-fill.svg b/public/hse/assets/bootstrap/usb-mini-fill.svg deleted file mode 100644 index 7235636..0000000 --- a/public/hse/assets/bootstrap/usb-mini-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/usb-mini.svg b/public/hse/assets/bootstrap/usb-mini.svg deleted file mode 100644 index 7cc383f..0000000 --- a/public/hse/assets/bootstrap/usb-mini.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/usb-plug-fill.svg b/public/hse/assets/bootstrap/usb-plug-fill.svg deleted file mode 100644 index 2f1c185..0000000 --- a/public/hse/assets/bootstrap/usb-plug-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/usb-plug.svg b/public/hse/assets/bootstrap/usb-plug.svg deleted file mode 100644 index 68f5f97..0000000 --- a/public/hse/assets/bootstrap/usb-plug.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/usb-symbol.svg b/public/hse/assets/bootstrap/usb-symbol.svg deleted file mode 100644 index eb02d87..0000000 --- a/public/hse/assets/bootstrap/usb-symbol.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/usb.svg b/public/hse/assets/bootstrap/usb.svg deleted file mode 100644 index e82324c..0000000 --- a/public/hse/assets/bootstrap/usb.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/valentine.svg b/public/hse/assets/bootstrap/valentine.svg deleted file mode 100644 index 5542055..0000000 --- a/public/hse/assets/bootstrap/valentine.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/valentine2.svg b/public/hse/assets/bootstrap/valentine2.svg deleted file mode 100644 index c70e274..0000000 --- a/public/hse/assets/bootstrap/valentine2.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/vector-pen.svg b/public/hse/assets/bootstrap/vector-pen.svg deleted file mode 100644 index 013acc2..0000000 --- a/public/hse/assets/bootstrap/vector-pen.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/view-list.svg b/public/hse/assets/bootstrap/view-list.svg deleted file mode 100644 index 3d1a972..0000000 --- a/public/hse/assets/bootstrap/view-list.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/view-stacked.svg b/public/hse/assets/bootstrap/view-stacked.svg deleted file mode 100644 index 7f59bb9..0000000 --- a/public/hse/assets/bootstrap/view-stacked.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/vimeo.svg b/public/hse/assets/bootstrap/vimeo.svg deleted file mode 100644 index 34eea6d..0000000 --- a/public/hse/assets/bootstrap/vimeo.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/vinyl-fill.svg b/public/hse/assets/bootstrap/vinyl-fill.svg deleted file mode 100644 index a5ab73d..0000000 --- a/public/hse/assets/bootstrap/vinyl-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/vinyl.svg b/public/hse/assets/bootstrap/vinyl.svg deleted file mode 100644 index 75c2681..0000000 --- a/public/hse/assets/bootstrap/vinyl.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/virus.svg b/public/hse/assets/bootstrap/virus.svg deleted file mode 100644 index 4029fad..0000000 --- a/public/hse/assets/bootstrap/virus.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/virus2.svg b/public/hse/assets/bootstrap/virus2.svg deleted file mode 100644 index b0501ec..0000000 --- a/public/hse/assets/bootstrap/virus2.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/voicemail.svg b/public/hse/assets/bootstrap/voicemail.svg deleted file mode 100644 index ff7ce86..0000000 --- a/public/hse/assets/bootstrap/voicemail.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/volume-down-fill.svg b/public/hse/assets/bootstrap/volume-down-fill.svg deleted file mode 100644 index 4879b5a..0000000 --- a/public/hse/assets/bootstrap/volume-down-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/volume-down.svg b/public/hse/assets/bootstrap/volume-down.svg deleted file mode 100644 index 996dbef..0000000 --- a/public/hse/assets/bootstrap/volume-down.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/volume-mute-fill.svg b/public/hse/assets/bootstrap/volume-mute-fill.svg deleted file mode 100644 index 7ab7684..0000000 --- a/public/hse/assets/bootstrap/volume-mute-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/volume-mute.svg b/public/hse/assets/bootstrap/volume-mute.svg deleted file mode 100644 index 12659d9..0000000 --- a/public/hse/assets/bootstrap/volume-mute.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/volume-off-fill.svg b/public/hse/assets/bootstrap/volume-off-fill.svg deleted file mode 100644 index 4941870..0000000 --- a/public/hse/assets/bootstrap/volume-off-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/volume-off.svg b/public/hse/assets/bootstrap/volume-off.svg deleted file mode 100644 index 08bb6b9..0000000 --- a/public/hse/assets/bootstrap/volume-off.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/volume-up-fill.svg b/public/hse/assets/bootstrap/volume-up-fill.svg deleted file mode 100644 index 495ee98..0000000 --- a/public/hse/assets/bootstrap/volume-up-fill.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/volume-up.svg b/public/hse/assets/bootstrap/volume-up.svg deleted file mode 100644 index 3840310..0000000 --- a/public/hse/assets/bootstrap/volume-up.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/vr.svg b/public/hse/assets/bootstrap/vr.svg deleted file mode 100644 index cf2ea37..0000000 --- a/public/hse/assets/bootstrap/vr.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/wallet-fill.svg b/public/hse/assets/bootstrap/wallet-fill.svg deleted file mode 100644 index d44e5c8..0000000 --- a/public/hse/assets/bootstrap/wallet-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/wallet.svg b/public/hse/assets/bootstrap/wallet.svg deleted file mode 100644 index d18441b..0000000 --- a/public/hse/assets/bootstrap/wallet.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/wallet2.svg b/public/hse/assets/bootstrap/wallet2.svg deleted file mode 100644 index e646d94..0000000 --- a/public/hse/assets/bootstrap/wallet2.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/watch.svg b/public/hse/assets/bootstrap/watch.svg deleted file mode 100644 index 8c3ee98..0000000 --- a/public/hse/assets/bootstrap/watch.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/water.svg b/public/hse/assets/bootstrap/water.svg deleted file mode 100644 index 18e0825..0000000 --- a/public/hse/assets/bootstrap/water.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/webcam-fill.svg b/public/hse/assets/bootstrap/webcam-fill.svg deleted file mode 100644 index 04b835b..0000000 --- a/public/hse/assets/bootstrap/webcam-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/webcam.svg b/public/hse/assets/bootstrap/webcam.svg deleted file mode 100644 index da7ef71..0000000 --- a/public/hse/assets/bootstrap/webcam.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/wechat.svg b/public/hse/assets/bootstrap/wechat.svg deleted file mode 100644 index 06b8ff8..0000000 --- a/public/hse/assets/bootstrap/wechat.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/whatsapp.svg b/public/hse/assets/bootstrap/whatsapp.svg deleted file mode 100644 index 6242d05..0000000 --- a/public/hse/assets/bootstrap/whatsapp.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/wifi-1.svg b/public/hse/assets/bootstrap/wifi-1.svg deleted file mode 100644 index 4d75ef5..0000000 --- a/public/hse/assets/bootstrap/wifi-1.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/wifi-2.svg b/public/hse/assets/bootstrap/wifi-2.svg deleted file mode 100644 index 377c1fc..0000000 --- a/public/hse/assets/bootstrap/wifi-2.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/wifi-off.svg b/public/hse/assets/bootstrap/wifi-off.svg deleted file mode 100644 index 4399861..0000000 --- a/public/hse/assets/bootstrap/wifi-off.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/wifi.svg b/public/hse/assets/bootstrap/wifi.svg deleted file mode 100644 index 8cb1f71..0000000 --- a/public/hse/assets/bootstrap/wifi.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/wikipedia.svg b/public/hse/assets/bootstrap/wikipedia.svg deleted file mode 100644 index 5fa98b1..0000000 --- a/public/hse/assets/bootstrap/wikipedia.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/wind.svg b/public/hse/assets/bootstrap/wind.svg deleted file mode 100644 index d350ea4..0000000 --- a/public/hse/assets/bootstrap/wind.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/window-dash.svg b/public/hse/assets/bootstrap/window-dash.svg deleted file mode 100644 index 191fbd7..0000000 --- a/public/hse/assets/bootstrap/window-dash.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/window-desktop.svg b/public/hse/assets/bootstrap/window-desktop.svg deleted file mode 100644 index a044521..0000000 --- a/public/hse/assets/bootstrap/window-desktop.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/window-dock.svg b/public/hse/assets/bootstrap/window-dock.svg deleted file mode 100644 index dbffecb..0000000 --- a/public/hse/assets/bootstrap/window-dock.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/window-fullscreen.svg b/public/hse/assets/bootstrap/window-fullscreen.svg deleted file mode 100644 index 22a8d20..0000000 --- a/public/hse/assets/bootstrap/window-fullscreen.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/window-plus.svg b/public/hse/assets/bootstrap/window-plus.svg deleted file mode 100644 index 08444f3..0000000 --- a/public/hse/assets/bootstrap/window-plus.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/window-sidebar.svg b/public/hse/assets/bootstrap/window-sidebar.svg deleted file mode 100644 index 98476ce..0000000 --- a/public/hse/assets/bootstrap/window-sidebar.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/window-split.svg b/public/hse/assets/bootstrap/window-split.svg deleted file mode 100644 index 21862f2..0000000 --- a/public/hse/assets/bootstrap/window-split.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/window-stack.svg b/public/hse/assets/bootstrap/window-stack.svg deleted file mode 100644 index 592e5c8..0000000 --- a/public/hse/assets/bootstrap/window-stack.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/window-x.svg b/public/hse/assets/bootstrap/window-x.svg deleted file mode 100644 index e7a97dc..0000000 --- a/public/hse/assets/bootstrap/window-x.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/window.svg b/public/hse/assets/bootstrap/window.svg deleted file mode 100644 index ad6166e..0000000 --- a/public/hse/assets/bootstrap/window.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/windows.svg b/public/hse/assets/bootstrap/windows.svg deleted file mode 100644 index b280560..0000000 --- a/public/hse/assets/bootstrap/windows.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/wordpress.svg b/public/hse/assets/bootstrap/wordpress.svg deleted file mode 100644 index 4c8cbc4..0000000 --- a/public/hse/assets/bootstrap/wordpress.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/wrench-adjustable-circle-fill.svg b/public/hse/assets/bootstrap/wrench-adjustable-circle-fill.svg deleted file mode 100644 index b723d7f..0000000 --- a/public/hse/assets/bootstrap/wrench-adjustable-circle-fill.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/wrench-adjustable-circle.svg b/public/hse/assets/bootstrap/wrench-adjustable-circle.svg deleted file mode 100644 index a5a6f0b..0000000 --- a/public/hse/assets/bootstrap/wrench-adjustable-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/wrench-adjustable.svg b/public/hse/assets/bootstrap/wrench-adjustable.svg deleted file mode 100644 index 4ec8082..0000000 --- a/public/hse/assets/bootstrap/wrench-adjustable.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/wrench.svg b/public/hse/assets/bootstrap/wrench.svg deleted file mode 100644 index bef0713..0000000 --- a/public/hse/assets/bootstrap/wrench.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/x-circle-fill.svg b/public/hse/assets/bootstrap/x-circle-fill.svg deleted file mode 100644 index 448fdee..0000000 --- a/public/hse/assets/bootstrap/x-circle-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/x-circle.svg b/public/hse/assets/bootstrap/x-circle.svg deleted file mode 100644 index ce37cdc..0000000 --- a/public/hse/assets/bootstrap/x-circle.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/x-diamond-fill.svg b/public/hse/assets/bootstrap/x-diamond-fill.svg deleted file mode 100644 index 2de6403..0000000 --- a/public/hse/assets/bootstrap/x-diamond-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/x-diamond.svg b/public/hse/assets/bootstrap/x-diamond.svg deleted file mode 100644 index 0ade536..0000000 --- a/public/hse/assets/bootstrap/x-diamond.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/x-lg.svg b/public/hse/assets/bootstrap/x-lg.svg deleted file mode 100644 index 53aec00..0000000 --- a/public/hse/assets/bootstrap/x-lg.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/x-octagon-fill.svg b/public/hse/assets/bootstrap/x-octagon-fill.svg deleted file mode 100644 index 7872889..0000000 --- a/public/hse/assets/bootstrap/x-octagon-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/x-octagon.svg b/public/hse/assets/bootstrap/x-octagon.svg deleted file mode 100644 index 794afd9..0000000 --- a/public/hse/assets/bootstrap/x-octagon.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/x-square-fill.svg b/public/hse/assets/bootstrap/x-square-fill.svg deleted file mode 100644 index ddfd727..0000000 --- a/public/hse/assets/bootstrap/x-square-fill.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/x-square.svg b/public/hse/assets/bootstrap/x-square.svg deleted file mode 100644 index 9d7852f..0000000 --- a/public/hse/assets/bootstrap/x-square.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/x.svg b/public/hse/assets/bootstrap/x.svg deleted file mode 100644 index c865d88..0000000 --- a/public/hse/assets/bootstrap/x.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/xbox.svg b/public/hse/assets/bootstrap/xbox.svg deleted file mode 100644 index 9d84973..0000000 --- a/public/hse/assets/bootstrap/xbox.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/yelp.svg b/public/hse/assets/bootstrap/yelp.svg deleted file mode 100644 index 08d3465..0000000 --- a/public/hse/assets/bootstrap/yelp.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/yin-yang.svg b/public/hse/assets/bootstrap/yin-yang.svg deleted file mode 100644 index cf1da48..0000000 --- a/public/hse/assets/bootstrap/yin-yang.svg +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/youtube.svg b/public/hse/assets/bootstrap/youtube.svg deleted file mode 100644 index 86fa490..0000000 --- a/public/hse/assets/bootstrap/youtube.svg +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/zoom-in.svg b/public/hse/assets/bootstrap/zoom-in.svg deleted file mode 100644 index 6cde1a0..0000000 --- a/public/hse/assets/bootstrap/zoom-in.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/hse/assets/bootstrap/zoom-out.svg b/public/hse/assets/bootstrap/zoom-out.svg deleted file mode 100644 index b965f8e..0000000 --- a/public/hse/assets/bootstrap/zoom-out.svg +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/public/js/app.js b/public/js/app.js new file mode 100644 index 0000000..f18f0f4 --- /dev/null +++ b/public/js/app.js @@ -0,0 +1,22882 @@ +/******/ (() => { // webpackBootstrap +/******/ var __webpack_modules__ = ({ + +/***/ "./node_modules/alpinejs/dist/module.esm.js": +/*!**************************************************!*\ + !*** ./node_modules/alpinejs/dist/module.esm.js ***! + \**************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "default": () => (/* binding */ module_default) +/* harmony export */ }); +// packages/alpinejs/src/scheduler.js +var flushPending = false; +var flushing = false; +var queue = []; +var lastFlushedIndex = -1; +function scheduler(callback) { + queueJob(callback); +} +function queueJob(job) { + if (!queue.includes(job)) + queue.push(job); + queueFlush(); +} +function dequeueJob(job) { + let index = queue.indexOf(job); + if (index !== -1 && index > lastFlushedIndex) + queue.splice(index, 1); +} +function queueFlush() { + if (!flushing && !flushPending) { + flushPending = true; + queueMicrotask(flushJobs); + } +} +function flushJobs() { + flushPending = false; + flushing = true; + for (let i = 0; i < queue.length; i++) { + queue[i](); + lastFlushedIndex = i; + } + queue.length = 0; + lastFlushedIndex = -1; + flushing = false; +} + +// packages/alpinejs/src/reactivity.js +var reactive; +var effect; +var release; +var raw; +var shouldSchedule = true; +function disableEffectScheduling(callback) { + shouldSchedule = false; + callback(); + shouldSchedule = true; +} +function setReactivityEngine(engine) { + reactive = engine.reactive; + release = engine.release; + effect = (callback) => engine.effect(callback, {scheduler: (task) => { + if (shouldSchedule) { + scheduler(task); + } else { + task(); + } + }}); + raw = engine.raw; +} +function overrideEffect(override) { + effect = override; +} +function elementBoundEffect(el) { + let cleanup2 = () => { + }; + let wrappedEffect = (callback) => { + let effectReference = effect(callback); + if (!el._x_effects) { + el._x_effects = new Set(); + el._x_runEffects = () => { + el._x_effects.forEach((i) => i()); + }; + } + el._x_effects.add(effectReference); + cleanup2 = () => { + if (effectReference === void 0) + return; + el._x_effects.delete(effectReference); + release(effectReference); + }; + return effectReference; + }; + return [wrappedEffect, () => { + cleanup2(); + }]; +} + +// packages/alpinejs/src/mutation.js +var onAttributeAddeds = []; +var onElRemoveds = []; +var onElAddeds = []; +function onElAdded(callback) { + onElAddeds.push(callback); +} +function onElRemoved(el, callback) { + if (typeof callback === "function") { + if (!el._x_cleanups) + el._x_cleanups = []; + el._x_cleanups.push(callback); + } else { + callback = el; + onElRemoveds.push(callback); + } +} +function onAttributesAdded(callback) { + onAttributeAddeds.push(callback); +} +function onAttributeRemoved(el, name, callback) { + if (!el._x_attributeCleanups) + el._x_attributeCleanups = {}; + if (!el._x_attributeCleanups[name]) + el._x_attributeCleanups[name] = []; + el._x_attributeCleanups[name].push(callback); +} +function cleanupAttributes(el, names) { + if (!el._x_attributeCleanups) + return; + Object.entries(el._x_attributeCleanups).forEach(([name, value]) => { + if (names === void 0 || names.includes(name)) { + value.forEach((i) => i()); + delete el._x_attributeCleanups[name]; + } + }); +} +var observer = new MutationObserver(onMutate); +var currentlyObserving = false; +function startObservingMutations() { + observer.observe(document, {subtree: true, childList: true, attributes: true, attributeOldValue: true}); + currentlyObserving = true; +} +function stopObservingMutations() { + flushObserver(); + observer.disconnect(); + currentlyObserving = false; +} +var recordQueue = []; +var willProcessRecordQueue = false; +function flushObserver() { + recordQueue = recordQueue.concat(observer.takeRecords()); + if (recordQueue.length && !willProcessRecordQueue) { + willProcessRecordQueue = true; + queueMicrotask(() => { + processRecordQueue(); + willProcessRecordQueue = false; + }); + } +} +function processRecordQueue() { + onMutate(recordQueue); + recordQueue.length = 0; +} +function mutateDom(callback) { + if (!currentlyObserving) + return callback(); + stopObservingMutations(); + let result = callback(); + startObservingMutations(); + return result; +} +var isCollecting = false; +var deferredMutations = []; +function deferMutations() { + isCollecting = true; +} +function flushAndStopDeferringMutations() { + isCollecting = false; + onMutate(deferredMutations); + deferredMutations = []; +} +function onMutate(mutations) { + if (isCollecting) { + deferredMutations = deferredMutations.concat(mutations); + return; + } + let addedNodes = []; + let removedNodes = []; + let addedAttributes = new Map(); + let removedAttributes = new Map(); + for (let i = 0; i < mutations.length; i++) { + if (mutations[i].target._x_ignoreMutationObserver) + continue; + if (mutations[i].type === "childList") { + mutations[i].addedNodes.forEach((node) => node.nodeType === 1 && addedNodes.push(node)); + mutations[i].removedNodes.forEach((node) => node.nodeType === 1 && removedNodes.push(node)); + } + if (mutations[i].type === "attributes") { + let el = mutations[i].target; + let name = mutations[i].attributeName; + let oldValue = mutations[i].oldValue; + let add2 = () => { + if (!addedAttributes.has(el)) + addedAttributes.set(el, []); + addedAttributes.get(el).push({name, value: el.getAttribute(name)}); + }; + let remove = () => { + if (!removedAttributes.has(el)) + removedAttributes.set(el, []); + removedAttributes.get(el).push(name); + }; + if (el.hasAttribute(name) && oldValue === null) { + add2(); + } else if (el.hasAttribute(name)) { + remove(); + add2(); + } else { + remove(); + } + } + } + removedAttributes.forEach((attrs, el) => { + cleanupAttributes(el, attrs); + }); + addedAttributes.forEach((attrs, el) => { + onAttributeAddeds.forEach((i) => i(el, attrs)); + }); + for (let node of removedNodes) { + if (addedNodes.includes(node)) + continue; + onElRemoveds.forEach((i) => i(node)); + if (node._x_cleanups) { + while (node._x_cleanups.length) + node._x_cleanups.pop()(); + } + } + addedNodes.forEach((node) => { + node._x_ignoreSelf = true; + node._x_ignore = true; + }); + for (let node of addedNodes) { + if (removedNodes.includes(node)) + continue; + if (!node.isConnected) + continue; + delete node._x_ignoreSelf; + delete node._x_ignore; + onElAddeds.forEach((i) => i(node)); + node._x_ignore = true; + node._x_ignoreSelf = true; + } + addedNodes.forEach((node) => { + delete node._x_ignoreSelf; + delete node._x_ignore; + }); + addedNodes = null; + removedNodes = null; + addedAttributes = null; + removedAttributes = null; +} + +// packages/alpinejs/src/scope.js +function scope(node) { + return mergeProxies(closestDataStack(node)); +} +function addScopeToNode(node, data2, referenceNode) { + node._x_dataStack = [data2, ...closestDataStack(referenceNode || node)]; + return () => { + node._x_dataStack = node._x_dataStack.filter((i) => i !== data2); + }; +} +function closestDataStack(node) { + if (node._x_dataStack) + return node._x_dataStack; + if (typeof ShadowRoot === "function" && node instanceof ShadowRoot) { + return closestDataStack(node.host); + } + if (!node.parentNode) { + return []; + } + return closestDataStack(node.parentNode); +} +function mergeProxies(objects) { + let thisProxy = new Proxy({}, { + ownKeys: () => { + return Array.from(new Set(objects.flatMap((i) => Object.keys(i)))); + }, + has: (target, name) => { + return objects.some((obj) => obj.hasOwnProperty(name)); + }, + get: (target, name) => { + return (objects.find((obj) => { + if (obj.hasOwnProperty(name)) { + let descriptor = Object.getOwnPropertyDescriptor(obj, name); + if (descriptor.get && descriptor.get._x_alreadyBound || descriptor.set && descriptor.set._x_alreadyBound) { + return true; + } + if ((descriptor.get || descriptor.set) && descriptor.enumerable) { + let getter = descriptor.get; + let setter = descriptor.set; + let property = descriptor; + getter = getter && getter.bind(thisProxy); + setter = setter && setter.bind(thisProxy); + if (getter) + getter._x_alreadyBound = true; + if (setter) + setter._x_alreadyBound = true; + Object.defineProperty(obj, name, { + ...property, + get: getter, + set: setter + }); + } + return true; + } + return false; + }) || {})[name]; + }, + set: (target, name, value) => { + let closestObjectWithKey = objects.find((obj) => obj.hasOwnProperty(name)); + if (closestObjectWithKey) { + closestObjectWithKey[name] = value; + } else { + objects[objects.length - 1][name] = value; + } + return true; + } + }); + return thisProxy; +} + +// packages/alpinejs/src/interceptor.js +function initInterceptors(data2) { + let isObject2 = (val) => typeof val === "object" && !Array.isArray(val) && val !== null; + let recurse = (obj, basePath = "") => { + Object.entries(Object.getOwnPropertyDescriptors(obj)).forEach(([key, {value, enumerable}]) => { + if (enumerable === false || value === void 0) + return; + let path = basePath === "" ? key : `${basePath}.${key}`; + if (typeof value === "object" && value !== null && value._x_interceptor) { + obj[key] = value.initialize(data2, path, key); + } else { + if (isObject2(value) && value !== obj && !(value instanceof Element)) { + recurse(value, path); + } + } + }); + }; + return recurse(data2); +} +function interceptor(callback, mutateObj = () => { +}) { + let obj = { + initialValue: void 0, + _x_interceptor: true, + initialize(data2, path, key) { + return callback(this.initialValue, () => get(data2, path), (value) => set(data2, path, value), path, key); + } + }; + mutateObj(obj); + return (initialValue) => { + if (typeof initialValue === "object" && initialValue !== null && initialValue._x_interceptor) { + let initialize = obj.initialize.bind(obj); + obj.initialize = (data2, path, key) => { + let innerValue = initialValue.initialize(data2, path, key); + obj.initialValue = innerValue; + return initialize(data2, path, key); + }; + } else { + obj.initialValue = initialValue; + } + return obj; + }; +} +function get(obj, path) { + return path.split(".").reduce((carry, segment) => carry[segment], obj); +} +function set(obj, path, value) { + if (typeof path === "string") + path = path.split("."); + if (path.length === 1) + obj[path[0]] = value; + else if (path.length === 0) + throw error; + else { + if (obj[path[0]]) + return set(obj[path[0]], path.slice(1), value); + else { + obj[path[0]] = {}; + return set(obj[path[0]], path.slice(1), value); + } + } +} + +// packages/alpinejs/src/magics.js +var magics = {}; +function magic(name, callback) { + magics[name] = callback; +} +function injectMagics(obj, el) { + Object.entries(magics).forEach(([name, callback]) => { + let memoizedUtilities = null; + function getUtilities() { + if (memoizedUtilities) { + return memoizedUtilities; + } else { + let [utilities, cleanup2] = getElementBoundUtilities(el); + memoizedUtilities = {interceptor, ...utilities}; + onElRemoved(el, cleanup2); + return memoizedUtilities; + } + } + Object.defineProperty(obj, `$${name}`, { + get() { + return callback(el, getUtilities()); + }, + enumerable: false + }); + }); + return obj; +} + +// packages/alpinejs/src/utils/error.js +function tryCatch(el, expression, callback, ...args) { + try { + return callback(...args); + } catch (e) { + handleError(e, el, expression); + } +} +function handleError(error2, el, expression = void 0) { + Object.assign(error2, {el, expression}); + console.warn(`Alpine Expression Error: ${error2.message} + +${expression ? 'Expression: "' + expression + '"\n\n' : ""}`, el); + setTimeout(() => { + throw error2; + }, 0); +} + +// packages/alpinejs/src/evaluator.js +var shouldAutoEvaluateFunctions = true; +function dontAutoEvaluateFunctions(callback) { + let cache = shouldAutoEvaluateFunctions; + shouldAutoEvaluateFunctions = false; + let result = callback(); + shouldAutoEvaluateFunctions = cache; + return result; +} +function evaluate(el, expression, extras = {}) { + let result; + evaluateLater(el, expression)((value) => result = value, extras); + return result; +} +function evaluateLater(...args) { + return theEvaluatorFunction(...args); +} +var theEvaluatorFunction = normalEvaluator; +function setEvaluator(newEvaluator) { + theEvaluatorFunction = newEvaluator; +} +function normalEvaluator(el, expression) { + let overriddenMagics = {}; + injectMagics(overriddenMagics, el); + let dataStack = [overriddenMagics, ...closestDataStack(el)]; + let evaluator = typeof expression === "function" ? generateEvaluatorFromFunction(dataStack, expression) : generateEvaluatorFromString(dataStack, expression, el); + return tryCatch.bind(null, el, expression, evaluator); +} +function generateEvaluatorFromFunction(dataStack, func) { + return (receiver = () => { + }, {scope: scope2 = {}, params = []} = {}) => { + let result = func.apply(mergeProxies([scope2, ...dataStack]), params); + runIfTypeOfFunction(receiver, result); + }; +} +var evaluatorMemo = {}; +function generateFunctionFromString(expression, el) { + if (evaluatorMemo[expression]) { + return evaluatorMemo[expression]; + } + let AsyncFunction = Object.getPrototypeOf(async function() { + }).constructor; + let rightSideSafeExpression = /^[\n\s]*if.*\(.*\)/.test(expression) || /^(let|const)\s/.test(expression) ? `(async()=>{ ${expression} })()` : expression; + const safeAsyncFunction = () => { + try { + return new AsyncFunction(["__self", "scope"], `with (scope) { __self.result = ${rightSideSafeExpression} }; __self.finished = true; return __self.result;`); + } catch (error2) { + handleError(error2, el, expression); + return Promise.resolve(); + } + }; + let func = safeAsyncFunction(); + evaluatorMemo[expression] = func; + return func; +} +function generateEvaluatorFromString(dataStack, expression, el) { + let func = generateFunctionFromString(expression, el); + return (receiver = () => { + }, {scope: scope2 = {}, params = []} = {}) => { + func.result = void 0; + func.finished = false; + let completeScope = mergeProxies([scope2, ...dataStack]); + if (typeof func === "function") { + let promise = func(func, completeScope).catch((error2) => handleError(error2, el, expression)); + if (func.finished) { + runIfTypeOfFunction(receiver, func.result, completeScope, params, el); + func.result = void 0; + } else { + promise.then((result) => { + runIfTypeOfFunction(receiver, result, completeScope, params, el); + }).catch((error2) => handleError(error2, el, expression)).finally(() => func.result = void 0); + } + } + }; +} +function runIfTypeOfFunction(receiver, value, scope2, params, el) { + if (shouldAutoEvaluateFunctions && typeof value === "function") { + let result = value.apply(scope2, params); + if (result instanceof Promise) { + result.then((i) => runIfTypeOfFunction(receiver, i, scope2, params)).catch((error2) => handleError(error2, el, value)); + } else { + receiver(result); + } + } else if (typeof value === "object" && value instanceof Promise) { + value.then((i) => receiver(i)); + } else { + receiver(value); + } +} + +// packages/alpinejs/src/directives.js +var prefixAsString = "x-"; +function prefix(subject = "") { + return prefixAsString + subject; +} +function setPrefix(newPrefix) { + prefixAsString = newPrefix; +} +var directiveHandlers = {}; +function directive(name, callback) { + directiveHandlers[name] = callback; + return { + before(directive2) { + if (!directiveHandlers[directive2]) { + console.warn("Cannot find directive `${directive}`. `${name}` will use the default order of execution"); + return; + } + const pos = directiveOrder.indexOf(directive2); + directiveOrder.splice(pos >= 0 ? pos : directiveOrder.indexOf("DEFAULT"), 0, name); + } + }; +} +function directives(el, attributes, originalAttributeOverride) { + attributes = Array.from(attributes); + if (el._x_virtualDirectives) { + let vAttributes = Object.entries(el._x_virtualDirectives).map(([name, value]) => ({name, value})); + let staticAttributes = attributesOnly(vAttributes); + vAttributes = vAttributes.map((attribute) => { + if (staticAttributes.find((attr) => attr.name === attribute.name)) { + return { + name: `x-bind:${attribute.name}`, + value: `"${attribute.value}"` + }; + } + return attribute; + }); + attributes = attributes.concat(vAttributes); + } + let transformedAttributeMap = {}; + let directives2 = attributes.map(toTransformedAttributes((newName, oldName) => transformedAttributeMap[newName] = oldName)).filter(outNonAlpineAttributes).map(toParsedDirectives(transformedAttributeMap, originalAttributeOverride)).sort(byPriority); + return directives2.map((directive2) => { + return getDirectiveHandler(el, directive2); + }); +} +function attributesOnly(attributes) { + return Array.from(attributes).map(toTransformedAttributes()).filter((attr) => !outNonAlpineAttributes(attr)); +} +var isDeferringHandlers = false; +var directiveHandlerStacks = new Map(); +var currentHandlerStackKey = Symbol(); +function deferHandlingDirectives(callback) { + isDeferringHandlers = true; + let key = Symbol(); + currentHandlerStackKey = key; + directiveHandlerStacks.set(key, []); + let flushHandlers = () => { + while (directiveHandlerStacks.get(key).length) + directiveHandlerStacks.get(key).shift()(); + directiveHandlerStacks.delete(key); + }; + let stopDeferring = () => { + isDeferringHandlers = false; + flushHandlers(); + }; + callback(flushHandlers); + stopDeferring(); +} +function getElementBoundUtilities(el) { + let cleanups = []; + let cleanup2 = (callback) => cleanups.push(callback); + let [effect3, cleanupEffect] = elementBoundEffect(el); + cleanups.push(cleanupEffect); + let utilities = { + Alpine: alpine_default, + effect: effect3, + cleanup: cleanup2, + evaluateLater: evaluateLater.bind(evaluateLater, el), + evaluate: evaluate.bind(evaluate, el) + }; + let doCleanup = () => cleanups.forEach((i) => i()); + return [utilities, doCleanup]; +} +function getDirectiveHandler(el, directive2) { + let noop = () => { + }; + let handler4 = directiveHandlers[directive2.type] || noop; + let [utilities, cleanup2] = getElementBoundUtilities(el); + onAttributeRemoved(el, directive2.original, cleanup2); + let fullHandler = () => { + if (el._x_ignore || el._x_ignoreSelf) + return; + handler4.inline && handler4.inline(el, directive2, utilities); + handler4 = handler4.bind(handler4, el, directive2, utilities); + isDeferringHandlers ? directiveHandlerStacks.get(currentHandlerStackKey).push(handler4) : handler4(); + }; + fullHandler.runCleanups = cleanup2; + return fullHandler; +} +var startingWith = (subject, replacement) => ({name, value}) => { + if (name.startsWith(subject)) + name = name.replace(subject, replacement); + return {name, value}; +}; +var into = (i) => i; +function toTransformedAttributes(callback = () => { +}) { + return ({name, value}) => { + let {name: newName, value: newValue} = attributeTransformers.reduce((carry, transform) => { + return transform(carry); + }, {name, value}); + if (newName !== name) + callback(newName, name); + return {name: newName, value: newValue}; + }; +} +var attributeTransformers = []; +function mapAttributes(callback) { + attributeTransformers.push(callback); +} +function outNonAlpineAttributes({name}) { + return alpineAttributeRegex().test(name); +} +var alpineAttributeRegex = () => new RegExp(`^${prefixAsString}([^:^.]+)\\b`); +function toParsedDirectives(transformedAttributeMap, originalAttributeOverride) { + return ({name, value}) => { + let typeMatch = name.match(alpineAttributeRegex()); + let valueMatch = name.match(/:([a-zA-Z0-9\-:]+)/); + let modifiers = name.match(/\.[^.\]]+(?=[^\]]*$)/g) || []; + let original = originalAttributeOverride || transformedAttributeMap[name] || name; + return { + type: typeMatch ? typeMatch[1] : null, + value: valueMatch ? valueMatch[1] : null, + modifiers: modifiers.map((i) => i.replace(".", "")), + expression: value, + original + }; + }; +} +var DEFAULT = "DEFAULT"; +var directiveOrder = [ + "ignore", + "ref", + "data", + "id", + "bind", + "init", + "for", + "model", + "modelable", + "transition", + "show", + "if", + DEFAULT, + "teleport" +]; +function byPriority(a, b) { + let typeA = directiveOrder.indexOf(a.type) === -1 ? DEFAULT : a.type; + let typeB = directiveOrder.indexOf(b.type) === -1 ? DEFAULT : b.type; + return directiveOrder.indexOf(typeA) - directiveOrder.indexOf(typeB); +} + +// packages/alpinejs/src/utils/dispatch.js +function dispatch(el, name, detail = {}) { + el.dispatchEvent(new CustomEvent(name, { + detail, + bubbles: true, + composed: true, + cancelable: true + })); +} + +// packages/alpinejs/src/utils/walk.js +function walk(el, callback) { + if (typeof ShadowRoot === "function" && el instanceof ShadowRoot) { + Array.from(el.children).forEach((el2) => walk(el2, callback)); + return; + } + let skip = false; + callback(el, () => skip = true); + if (skip) + return; + let node = el.firstElementChild; + while (node) { + walk(node, callback, false); + node = node.nextElementSibling; + } +} + +// packages/alpinejs/src/utils/warn.js +function warn(message, ...args) { + console.warn(`Alpine Warning: ${message}`, ...args); +} + +// packages/alpinejs/src/lifecycle.js +var started = false; +function start() { + if (started) + warn("Alpine has already been initialized on this page. Calling Alpine.start() more than once can cause problems."); + started = true; + if (!document.body) + warn("Unable to initialize. Trying to load Alpine before `
` is available. Did you forget to add `defer` in Alpine's ` + + + +