Compare commits

..

1 Commits

Author SHA1 Message Date
s.tabatabai ae8e79512d feat: implement relative jalali data
4 years ago

@ -1,5 +0,0 @@
**/.git
vendor
node_modules
modules
composer.lock

@ -1,53 +0,0 @@
kind: pipeline
type: exec
name: default
steps:
- name: build to production
commands:
- docker build -t registry.willaspace.com/willaspace/willaengine-test:latest --build-arg COMPOSER_FILE_NAME=composer-prod .
when:
branch:
- master
- name: deploy to production
commands:
- cd /apps/willaengine/ ; docker-compose up -d
- docker exec willaengine-test bash -c "COMPOSER=composer-prod.json composer update"
- docker exec willaengine-test php artisan config:cache
- docker exec willaengine-test php artisan route:cache
# - docker exec willaengine_worker bash -c "COMPOSER=composer-prod.json composer update"
# - docker exec willaengine_worker service supervisor start
# - docker network connect nginx_default willaengine
when:
branch:
- master
- name: build to staging
commands:
- docker build -t registry.willaspace.com/willaspace/willaengine-staging:latest --build-arg COMPOSER_FILE_NAME=composer-staging -f Dockerfile.staging .
- docker build -t registry.willaspace.com/willaspace/willaengine-staging-nginx:latest -f Dockerfile.nginx .
when:
branch:
- dev
- name: deploy to staging
commands:
- cd /apps/willaengine-staging/ ; docker-compose up -d
- docker exec willaengine-staging_php bash -c "COMPOSER=composer-staging.json composer update"
- docker exec willaengine-staging_php bash -c "php artisan route:cache"
- docker exec willaengine-staging_php bash -c "php artisan config:cache"
- docker exec willaengine-staging_worker bash -c "COMPOSER=composer-staging.json composer update"
- docker exec willaengine-staging_worker service supervisor start
- docker exec willaengine-staging_php php artisan migrate --path=vendor/wm/finance/database/migrations --force
- docker exec willaengine-staging_php php artisan migrate --path=vendor/wm/store/database/migrations --force
when:
branch:
- dev
trigger:
branch:
- master
- dev

@ -12,4 +12,4 @@ trim_trailing_whitespace = true
trim_trailing_whitespace = false trim_trailing_whitespace = false
[*.yml] [*.yml]
indent_size = 2 indent_size = 2

1
.gitattributes vendored

@ -3,4 +3,3 @@
*.scss linguist-vendored *.scss linguist-vendored
*.js linguist-vendored *.js linguist-vendored
CHANGELOG.md export-ignore CHANGELOG.md export-ignore

9
.gitignore vendored

@ -2,9 +2,7 @@
/development/ /development/
# Created by https://www.toptal.com/developers/gitignore/api/visualstudiocode,laravel,vuejs,phpstorm # Created by https://www.toptal.com/developers/gitignore/api/visualstudiocode,laravel,vuejs,phpstorm
# Edit at https://www.toptal.com/developers/gitignore?templates=visualstudiocode,laravel,vuejs, phpstorm # Edit at https://www.toptal.com/developers/gitignore?templates=visualstudiocode,laravel,vuejs,phpstorm
resources/views/sites
### Laravel ### ### Laravel ###
/vendor/ /vendor/
@ -16,12 +14,9 @@ yarn-error.log
bootstrap/compiled.php bootstrap/compiled.php
app/storage/ app/storage/
.DS_Store
storage/ storage/
storage/framework/views/* storage/framework
storage/framework/sessions/*
storage/framework/cache/*
# Laravel 5 & Lumen specific # Laravel 5 & Lumen specific
public/storage public/storage
public/hot public/hot

@ -1,38 +0,0 @@
#!/bin/bash
# rsync script
git pull origin master
cd modules
for f in *
do
cd $f && git pull origin master && cd ..
done
cd ..
npm install
rm -r /home/administrator/apps/willaengine/public/js/vue
npm run prod
rm -r /home/administrator/apps/nginx/www/willaengine/public/js/vue
rm -r /home/administrator/apps/nginx/www/willamall/public/js/vue
rm -r /home/administrator/apps/nginx/www/willaarts/public/js/vue
cp -r /home/administrator/apps/willaengine/public/js/vue /home/administrator/apps/nginx/www/willaengine/public/js/
cp -r /home/administrator/apps/willaengine/public/js/vue /home/administrator/apps/nginx/www/willamall/public/js/
cp -r /home/administrator/apps/willaengine/public/js/vue /home/administrator/apps/nginx/www/willaarts/public/js/
cp /home/administrator/apps/willaengine/public/mix-manifest.json /home/administrator/apps/nginx/www/willaengine/public/
cp /home/administrator/apps/willaengine/public/mix-manifest.json /home/administrator/apps/nginx/www/willaarts/public/
sudo chown -R www-data:www-data /home/administrator/apps/nginx/www/willaarts/public
sudo chown -R www-data:www-data /home/administrator/apps/nginx/www/willamall/public
sudo chown -R www-data:www-data /home/administrator/apps/nginx/www/willaengine

@ -1,28 +0,0 @@
FROM willaengine/standard-laravel:7.4
ARG COMPOSER_FILE_NAME=composer
WORKDIR /var/www/html
#####################################
# Composer:
#####################################
COPY database /var/www/html/database
COPY $COMPOSER_FILE_NAME.* /var/www/html/
RUN COMPOSER=$COMPOSER_FILE_NAME.json composer install --no-scripts
COPY . /var/www/html
RUN chown -R www-data:www-data \
/var/www/html/public \
/var/www/html/storage \
/var/www/html/bootstrap/cache \
/var/www/.ssh \
/var/www/html/storage/letsencrypt && \
chmod 755 /var/www/html/storage/letsencrypt/Bash/auth-hook.sh
RUN php artisan morphmap:cache

@ -1,3 +0,0 @@
FROM nginx:1.21.1
COPY public /var/www/html/public

@ -1,6 +0,0 @@
FROM fsaravi/standard-laravel:7.4
WORKDIR /var/www/html
RUN php artisan morphmap:cache

42
Jenkinsfile vendored

@ -1,42 +0,0 @@
pipeline {
agent {
node {
label 'willa'
}
}
stages {
stage('build') {
when {
branch 'master'
}
steps {
sh 'cd /home/administrator/apps/${IMAGE_NAME}/;docker build -t registry.willaspace.com/willaspace/${IMAGE_NAME}:latest .'
sh 'cd /home/administrator/apps/${IMAGE_NAME}/;sudo ./BuildDocker'
}
}
stage('deploy to production') {
when {
branch 'master'
}
steps {
sh 'cd /home/administrator/apps/${IMAGE_NAME}/ ; docker-compose up -d'
sh 'docker exec willaengine bash -c "COMPOSER=composer-prod.json composer update"'
sh 'docker exec willaengine service cron start'
sh 'docker exec willaengine php artisan config:cache'
sh 'docker exec willaengine php artisan route:cache'
}
}
stage('deploy to staging') {
when {
branch 'dev'
}
steps {
sh 'echo ${IMAGE_NAME}-staging comming soon ...'
}
}
}
environment {
IMAGE_NAME = 'willaengine'
}
}

@ -1,85 +0,0 @@
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use WM\Core\Models\Business;
use WM\Core\Models\User;
class UserChangeInformation extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'transport:user';
/**
* The console command description.
*
* @var string
*/
protected $description = 'transport users';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
private function firstNameLengthUpdate(User $user)
{
$fistName = $user->first_name;
$fistNameLength = strlen(utf8_decode($fistName));
$user->update([
'first_name_length' => $fistNameLength
]);
}
/**
* Execute the console command.
*
* @return int
*/
public function handle()
{
$users = User::all();
foreach ($users as $user) {
$business = Business::find($user->business_id);
if (!is_null($business)) {
if ($business->user_id == $user->id) {
$this->firstNameLengthUpdate($user);
$business->user()->attach($user->id, [
'responsibility' => $user->responsibility,
'is_owner' => 1
]);
$this->info("add and update user : $user->id");
} else {
$this->firstNameLengthUpdate($user);
$business->user()->attach($user->id, [
'responsibility' => $user->responsibility
]);
$this->info("add and update user : $user->id");
}
}
}
}
}

@ -1,112 +0,0 @@
<?php
namespace App\Console\Commands;
use Illuminate\Support\Facades\Storage;
use Illuminate\Support\Str;
class Vuex
{
private static bool $isCategory = false;
private static string $module;
private static string $storeModule;
private static bool $replace = false;
private static $instance = null;
private function __construct($arguments, $options)
{
static::$isCategory = $options['category'];
static::$replace = $options['replace'];
static::$module = $arguments['module'];
static::$storeModule = $arguments['store-module'];
}
public static function initialize ($arguments, $options) {
if (!self::$instance) {
self::$instance = new static($arguments, $options);
}
return self::$instance;
}
public function createAllFiles () {
if (static::$storeModule && static::$module) {
static::createStoreFiles();
static::createRepositoryFile();
static::createResourceFile();
if (!static::$isCategory) {
static::createStorageFile();
}
}
}
public static function createStoreFiles () {
$moduleFiles = ['actions', 'mutations', 'state', 'getters'];
$basePath = 'modules/wm-' . static::$module . '/resources/js/store/modules/' . static::$storeModule . '/';
$baseDefaultPath = static::$isCategory ? 'resources/js/Default/store/category/' : 'resources/js/Default/store/store/';
foreach ($moduleFiles as $moduleFile) {
if (static::hasExists($basePath . $moduleFile)) {
$data = Storage::disk('local')->get($baseDefaultPath . $moduleFile . '.text');
$data = static::replacer($data);
Storage::disk('local')->put($basePath . $moduleFile . '.js', $data);
}
}
}
public static function createRepositoryFile () {
$baseRepositoryPath = 'modules/wm-' . static::$module . '/resources/js/abstraction/repositories/' . static::$storeModule . '/' . static::$storeModule . 'Repository.js';
$baseDefaultPath = static::$isCategory ? 'resources/js/Default/abstraction/repositories/categoryRepository.text' : 'resources/js/Default/abstraction/repositories/repository.text';
if (static::hasExists($baseRepositoryPath)) {
$data = Storage::disk('local')->get($baseDefaultPath);
$data = static::replacer($data);
Storage::disk('local')->put($baseRepositoryPath, $data);
}
}
public static function createResourceFile() {
$baseResourcePath = 'modules/wm-' . static::$module . '/resources/js/abstraction/resources/' . static::$storeModule . '/' . static::$storeModule . 'Resource.js';
$baseDefaultPath = static::$isCategory ? 'resources/js/Default/abstraction/resources/categoryResource.text' : 'resources/js/Default/abstraction/resources/resource.text';
if (static::hasExists($baseResourcePath)) {
$data = Storage::disk('local')->get($baseDefaultPath);
$data = static::replacer($data);
Storage::disk('local')->put($baseResourcePath, $data);
}
}
public static function createStorageFile() {
$baseStoragePath = 'modules/wm-' . static::$module . '/resources/js/services/' . static::$storeModule . '.storage.js';
$baseDefaultPath = 'resources/js/Default/services/storage.text';
if (static::hasExists($baseStoragePath)) {
$data = Storage::disk('local')->get($baseDefaultPath);
$data = static::replacer($data);
Storage::disk('local')->put($baseStoragePath, $data);
}
}
private static function hasExists($path) {
$continue = true;
if (Storage::disk('local')->exists($path)) {
$continue = static::$replace;
}
return $continue;
}
private static function replacer($data) {
$data = str_replace('|-module-|', Str::camel(static::$storeModule), $data);
$data = str_replace('|-snake_module-|', Str::snake(static::$storeModule), $data);
$data = str_replace('|-Module-|', Str::title(static::$storeModule), $data);
$data = str_replace('|-MODULE-|', Str::upper(Str::snake(static::$storeModule)), $data);
$data = str_replace('|-BaseModule-|', Str::title(static::$module), $data);
return str_replace('|-baseModule-|', Str::camel(static::$module), $data);
}
}

@ -1,54 +0,0 @@
<?php
namespace App\Console\Commands;
use App\Console\Commands\Vuex;
use App\Services\MorphModelFinder;
use Illuminate\Console\Command;
class VuexBuild extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'make:vuex {module} {store-module} {--category} {--replace}';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Create a vuex modules module store-module --category --replace';
/**
* @var MorphModelFinder
*/
private $morphModelFinder;
/**
* Create a new command instance.
*
* @param MorphModelFinder $morphModelFinder
*/
public function __construct(MorphModelFinder $morphModelFinder)
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return void
*/
public function handle(): void
{
Vuex::initialize($this->arguments(), $this->options())->createAllFiles();
$this->info('modules Store Created');
}
}

@ -13,7 +13,7 @@ class Kernel extends ConsoleKernel
* @var array * @var array
*/ */
protected $commands = [ protected $commands = [
//
]; ];
/** /**
@ -26,10 +26,6 @@ class Kernel extends ConsoleKernel
{ {
$schedule->command('today:schedule')->daily(); $schedule->command('today:schedule')->daily();
$schedule->command('today:run')->everyMinute(); $schedule->command('today:run')->everyMinute();
$schedule->command('sms:update:status rahyab')->everyTwoHours();
$schedule->command('domain:update_ssl_expiry_date')->daily(); # update SSL expired_at
$schedule->command('domain:update_domain_expiry_date')->daily(); # update domain expired_at
$schedule->command('make:sitemap')->daily(); # make sitemap
} }
/** /**

@ -2,12 +2,8 @@
namespace App\Exceptions; namespace App\Exceptions;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
use Throwable; use Throwable;
use WM\Core\Exceptions\HasRelationException; use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
use WM\Core\Exceptions\ValidationErrorException;
use WM\Core\Services\Responser;
use WM\WebBuilder\Exceptions\SiteBannedException;
class Handler extends ExceptionHandler class Handler extends ExceptionHandler
{ {
@ -33,39 +29,23 @@ class Handler extends ExceptionHandler
/** /**
* Report or log an exception. * Report or log an exception.
* *
* @param \Throwable $exception * @param \Throwable $exception
* @return void * @return void
*/ */
public function report(Throwable $exception) public function report(Throwable $exception)
{ {
if (app()->bound('sentry') && $this->shouldReport($exception)) {
app('sentry')->captureException($exception);
}
parent::report($exception); parent::report($exception);
} }
/** /**
* Render an exception into an HTTP response. * Render an exception into an HTTP response.
* *
* @param \Illuminate\Http\Request $request * @param \Illuminate\Http\Request $request
* @param \Throwable $exception * @param \Throwable $exception
* @return \Illuminate\Http\Response * @return \Illuminate\Http\Response
*/ */
public function render($request, Throwable $exception) public function render($request, Throwable $exception)
{ {
if ($exception instanceof ValidationErrorException) {
return response()->json(Responser::error($exception->getMessageBody(), $exception->getMessageInfo()), 422);
} elseif ($exception instanceof SiteBannedException) {
return response()->view('webBuilder::errors.template_disabled', ['error' => 'business banned']);
} elseif ($exception instanceof HasRelationException) {
return response()->json(Responser::error([$exception->getMessage()]), 422);
} elseif ($this->isHttpException($exception)) {
if ($exception->getStatusCode() == 404 and in_array("web",$request->route()->middleware())) {
return response()->view('webBuilder::errors.404', [], 404);
}
}
return parent::render($request, $exception); return parent::render($request, $exception);
} }
} }

@ -19,6 +19,6 @@ class VerifyCsrfToken extends Middleware
* @var array * @var array
*/ */
protected $except = [ protected $except = [
'/verify-payment' //
]; ];
} }

@ -6,8 +6,8 @@ use Illuminate\Support\Facades\Event;
use Illuminate\Auth\Events\Registered; use Illuminate\Auth\Events\Registered;
use Illuminate\Auth\Listeners\SendEmailVerificationNotification; use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider; use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
use WM\Notification\Services\Sms\Events\SmsSent; use WM\Common\Services\Sms\Events\SmsSent;
use WM\Notification\Services\Sms\Listeners\StoreSmsInDatabase; use WM\Common\Services\Sms\Listeners\StoreSmsInDatabase;
class EventServiceProvider extends ServiceProvider class EventServiceProvider extends ServiceProvider
{ {

@ -1,168 +0,0 @@
{
"name": "willaengine/laravel",
"type": "project",
"description": "The WillaEngine Applications.",
"keywords": [
"framework",
"laravel",
"WillaEngine"
],
"license": "MIT",
"require": {
"php": "^7.4",
"coraxster/flysystem-aws-s3-v3-minio": "^1.0",
"fideloper/proxy": "^4.0",
"io-developer/php-whois": "^4.0",
"kalnoy/nestedset": "^6.0",
"laravel/framework": "^8.0",
"laravel/passport": "^10",
"laravel/tinker": "^2.0",
"maatwebsite/excel": "^3.1",
"owen-it/laravel-auditing": "^13.5",
"sentry/sentry-laravel": "^2.3",
"silber/bouncer": "v1.0.0-rc.10",
"spatie/laravel-medialibrary": "^8.0.0",
"wm/admin": "dev-master",
"wm/app-management": "dev-master",
"wm/blog": "dev-master",
"wm/common": "dev-master",
"wm/contact-us": "dev-master",
"wm/core": "dev-master",
"wm/crm": "dev-master",
"wm/finance": "dev-master",
"wm/lms": "dev-master",
"wm/notification": "dev-master",
"wm/portfolio": "dev-master",
"wm/product": "dev-master",
"wm/roll-call": "dev-master",
"wm/service": "dev-master",
"wm/service-store": "dev-master",
"wm/store": "dev-master",
"wm/web-builder": "dev-master",
"zircote/swagger-php": "^3.0"
},
"provide": {
"ext-imagick": "*"
},
"require-dev": {
"facade/ignition": "^2.3.6",
"fzaninotto/faker": "^1.4",
"mockery/mockery": "^1.0",
"nunomaduro/collision": "^5.0",
"phpunit/phpunit": "^9.0"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Modules\\": "Modules/"
},
"classmap": [
"database/seeds",
"database/factories"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi",
"@php artisan morphmap:cache"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
]
},
"repositories": [
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/crm.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/common.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/core.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/blog.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/portfolio.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/product.git"
},
{
c "type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/service.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/store.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/notification.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/roll-call.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/app-management.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/web-builder.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/finance.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/service-store.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/admin.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/lms.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/contact-us.git"
}
]
}

@ -1,166 +0,0 @@
{
"name": "laravel/laravel",
"type": "project",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"require": {
"php": "^7.4",
"coraxster/flysystem-aws-s3-v3-minio": "^1.0",
"fideloper/proxy": "^4.0",
"laravel/framework": "^8.0",
"laravel/passport": "^10",
"laravel/tinker": "^2.0",
"maatwebsite/excel": "^3.1",
"matthiasmullie/minify": "^1.3",
"kalnoy/nestedset": "^6.0",
"sentry/sentry-laravel": "^2.3",
"spatie/laravel-medialibrary": "^8.0.0",
"io-developer/php-whois": "^4.0",
"silber/bouncer": "v1.0.0-rc.10",
"wm/blog": "dev-dev",
"wm/common": "dev-dev",
"wm/core": "dev-dev",
"wm/crm": "dev-dev",
"wm/portfolio": "dev-dev",
"wm/product": "dev-dev",
"wm/service": "dev-dev",
"wm/store": "dev-dev",
"wm/finance": "dev-dev",
"wm/admin": "dev-dev",
"wm/web-builder": "dev-dev",
"wm/app-management": "dev-dev",
"wm/notification": "dev-dev",
"wm/roll-call": "dev-dev",
"wm/lms": "dev-dev",
"wm/service-store": "dev-dev",
"predis/predis": "^1.1",
"wm/contact-us": "dev-dev",
"zircote/swagger-php": "^3.0"
},
"provide": {
"ext-imagick": "*"
},
"require-dev": {
"facade/ignition": "^2.3.6",
"fzaninotto/faker": "^1.4",
"mockery/mockery": "^1.0",
"nunomaduro/collision": "^5.0",
"phpunit/phpunit": "^9.0"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Modules\\": "Modules/"
},
"classmap": [
"database/seeds",
"database/factories"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi",
"@php artisan morphmap:cache"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
]
},
"repositories": [
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/crm.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/common.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/core.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/blog.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/portfolio.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/product.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/service.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/store.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/notification.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/roll-call.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/app-management.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/web-builder.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/finance.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/service-store.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/admin.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/lms.git"
},
{
"type": "vcs",
"url": "git@git.willaspace.com:WillaEngine-Project/contact-us.git"
}
]
}

@ -11,31 +11,19 @@
"php": "^7.4", "php": "^7.4",
"coraxster/flysystem-aws-s3-v3-minio": "^1.0", "coraxster/flysystem-aws-s3-v3-minio": "^1.0",
"fideloper/proxy": "^4.0", "fideloper/proxy": "^4.0",
"io-developer/php-whois": "^4.0",
"kalnoy/nestedset": "^6.0",
"laravel/framework": "^8.0", "laravel/framework": "^8.0",
"laravel/passport": "^10", "laravel/passport": "^10",
"laravel/tinker": "^2.0", "laravel/tinker": "^2.0",
"maatwebsite/excel": "^3.1", "maatwebsite/excel": "^3.1",
"matthiasmullie/minify": "^1.3", "nestedset/willaarts": "^5.0.7",
"owen-it/laravel-auditing": "^13.0",
"predis/predis": "^1.1",
"sentry/sentry-laravel": "^2.3",
"silber/bouncer": "v1.0.0-rc.10",
"spatie/laravel-medialibrary": "^8.0.0", "spatie/laravel-medialibrary": "^8.0.0",
"wm/admin": "dev-master",
"wm/blog": "dev-master", "wm/blog": "dev-master",
"wm/common": "dev-master", "wm/common": "dev-master",
"wm/core": "dev-master", "wm/core": "dev-master",
"wm/crm": "dev-master", "wm/crm": "dev-master",
"wm/finance": "dev-master",
"wm/notification": "dev-master",
"wm/portfolio": "dev-master", "wm/portfolio": "dev-master",
"wm/product": "dev-master", "wm/product": "dev-master",
"wm/roll-call": "dev-master",
"wm/service": "dev-master", "wm/service": "dev-master",
"wm/store": "dev-master",
"wm/web-builder": "dev-master",
"zircote/swagger-php": "^3.0" "zircote/swagger-php": "^3.0"
}, },
"provide": { "provide": {
@ -78,8 +66,7 @@
"scripts": { "scripts": {
"post-autoload-dump": [ "post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi", "@php artisan package:discover --ansi"
"@php artisan morphmap:cache"
], ],
"post-root-package-install": [ "post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" "@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
@ -88,7 +75,6 @@
"@php artisan key:generate --ansi" "@php artisan key:generate --ansi"
] ]
}, },
"repositories": [ "repositories": [
{ {
"type": "path", "type": "path",
@ -117,30 +103,7 @@
{ {
"type": "path", "type": "path",
"url": "./modules/wm-service" "url": "./modules/wm-service"
},
{
"type": "path",
"url": "./modules/wm-store"
},
{
"type": "path",
"url": "./modules/wm-notification"
},
{
"type": "path",
"url": "./modules/wm-roll-call"
},
{
"type": "path",
"url": "./modules/wm-web-builder"
},
{
"type": "path",
"url": "./modules/wm-finance"
},
{
"type": "path",
"url": "./modules/wm-admin"
} }
] ]
} }

5907
composer.lock generated

File diff suppressed because it is too large Load Diff

@ -1,52 +0,0 @@
<?php
return [
/*
* If set to false, no activities will be saved to the database.
*/
'enabled' => env('ACTIVITY_LOGGER_ENABLED', true),
/*
* When the clean-command is executed, all recording activities older than
* the number of days specified here will be deleted.
*/
'delete_records_older_than_days' => 365,
/*
* If no log name is passed to the activity() helper
* we use this default log name.
*/
'default_log_name' => 'default',
/*
* You can specify an auth driver here that gets user models.
* If this is null we'll use the default Laravel auth driver.
*/
'default_auth_driver' => null,
/*
* If set to true, the subject returns soft deleted models.
*/
'subject_returns_soft_deleted_models' => false,
/*
* This model will be used to log activity.
* It should be implements the Spatie\Activitylog\Contracts\Activity interface
* and extend Illuminate\Database\Eloquent\Model.
*/
'activity_model' => \Spatie\Activitylog\Models\Activity::class,
/*
* This is the name of the table that will be created by the migration and
* used by the Activity model shipped with this package.
*/
'table_name' => 'activity_log',
/*
* This is the database connection that will be used by the migration and
* the Activity model shipped with this package. In case it's not set
* Laravel database.default will be used instead.
*/
'database_connection' => env('ACTIVITY_LOGGER_DB_CONNECTION'),
];

@ -1,171 +0,0 @@
<?php
return [
'enabled' => env('AUDITING_ENABLED', true),
/*
|--------------------------------------------------------------------------
| Audit Implementation
|--------------------------------------------------------------------------
|
| Define which Audit model implementation should be used.
|
*/
'implementation' => OwenIt\Auditing\Models\Audit::class,
/*
|--------------------------------------------------------------------------
| User Morph prefix & Guards
|--------------------------------------------------------------------------
|
| Define the morph prefix and authentication guards for the User resolver.
|
*/
'user' => [
'morph_prefix' => 'user',
'guards' => [
'web',
'api',
'apicore'
],
'resolver' => OwenIt\Auditing\Resolvers\UserResolver::class
],
/*
|--------------------------------------------------------------------------
| Audit Resolvers
|--------------------------------------------------------------------------
|
| Define the User, IP Address, User Agent and URL resolver implementations.
|
*/
'resolvers' => [
'ip_address' => OwenIt\Auditing\Resolvers\IpAddressResolver::class,
'user_agent' => OwenIt\Auditing\Resolvers\UserAgentResolver::class,
'url' => OwenIt\Auditing\Resolvers\UrlResolver::class,
'business_id'=> WM\Common\Services\Audit\BusinessResolver::class,
],
/*
|--------------------------------------------------------------------------
| Audit Events
|--------------------------------------------------------------------------
|
| The Eloquent events that trigger an Audit.
|
*/
'events' => [
'created',
'updated',
'deleted',
'restored'
],
/*
|--------------------------------------------------------------------------
| Strict Mode
|--------------------------------------------------------------------------
|
| Enable the strict mode when auditing?
|
*/
'strict' => false,
/*
|--------------------------------------------------------------------------
| Global exclude
|--------------------------------------------------------------------------
|
| Have something you always want to exclude by default? - add it here.
| Note that this is overwritten (not merged) with local exclude
|
*/
'exclude' => [],
/*
|--------------------------------------------------------------------------
| Empty Values
|--------------------------------------------------------------------------
|
| Should Audit records be stored when the recorded old_values & new_values
| are both empty?
|
| Some events may be empty on purpose. Use allowed_empty_values to exclude
| those from the empty values check. For example when auditing
| model retrieved events which will never have new and old values.
|
|
*/
'empty_values' => true,
'allowed_empty_values' => [
'retrieved'
],
/*
|--------------------------------------------------------------------------
| Audit Timestamps
|--------------------------------------------------------------------------
|
| Should the created_at, updated_at and deleted_at timestamps be audited?
|
*/
'timestamps' => false,
/*
|--------------------------------------------------------------------------
| Audit Threshold
|--------------------------------------------------------------------------
|
| Specify a threshold for the amount of Audit records a model can have.
| Zero means no limit.
|
*/
'threshold' => 0,
/*
|--------------------------------------------------------------------------
| Audit Driver
|--------------------------------------------------------------------------
|
| The default audit driver used to keep track of changes.
|
*/
'driver' => 'database',
/*
|--------------------------------------------------------------------------
| Audit Driver Configurations
|--------------------------------------------------------------------------
|
| Available audit drivers and respective configurations.
|
*/
'drivers' => [
'database' => [
'table' => 'audits',
'connection' => null,
],
],
/*
|--------------------------------------------------------------------------
| Audit Console
|--------------------------------------------------------------------------
|
| Whether console events should be audited (eg. php artisan db:seed).
|
*/
'console' => true,
];

@ -56,7 +56,7 @@ return [
'collation' => 'utf8mb4_unicode_ci', 'collation' => 'utf8mb4_unicode_ci',
'prefix' => '', 'prefix' => '',
'prefix_indexes' => true, 'prefix_indexes' => true,
'strict' => false, 'strict' => true,
'engine' => null, 'engine' => null,
'options' => extension_loaded('pdo_mysql') ? array_filter([ 'options' => extension_loaded('pdo_mysql') ? array_filter([
PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'), PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'),
@ -91,14 +91,6 @@ return [
'prefix_indexes' => true, 'prefix_indexes' => true,
], ],
'site' => [
'driver' => 'sqlite',
'url' => env('DATABASE_URL'),
'database' => env('DB_DATABASE', database_path('database.sqlite')),
'prefix' => '',
'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true),
],
], ],
/* /*
@ -127,7 +119,7 @@ return [
'redis' => [ 'redis' => [
'client' => env('REDIS_CLIENT', 'predis'), 'client' => env('REDIS_CLIENT', 'phpredis'),
'options' => [ 'options' => [
'cluster' => env('REDIS_CLUSTER', 'redis'), 'cluster' => env('REDIS_CLUSTER', 'redis'),

@ -68,26 +68,17 @@ return [
'media_dev' => [ 'media_dev' => [
'driver' => 'local', 'driver' => 'local',
'root' => public_path(), 'root' => public_path(),
'url' => env('APP_URL').'/', 'url' => '',
'visibility' => 'public'
],
'site' => [
'driver' => 'local',
'root' => resource_path('views'),
'url' => env('APP_URL').'/',
'visibility' => 'public' 'visibility' => 'public'
], ],
'media' => [ 'media' => [
'driver' => 's3', 'driver' => 'minio',
'key' => env('MINIO_KEY', 'your minio server key'), 'key' => env('MINIO_KEY', 'your minio server key'),
'secret' => env('MINIO_SECRET', 'your minio server secret'), 'secret' => env('MINIO_SECRET', 'your minio server secret'),
'region' => 'us-east-1', 'region' => 'us-east-1',
'bucket' => env('MINIO_BUCKET','your minio bucket name'), 'bucket' => env('MINIO_BUCKET','your minio bucket name'),
'endpoint' => env('MINIO_ENDPOINT','http://localhost:8000'), 'endpoint' => env('MINIO_ENDPOINT','http://localhost:8000')
'url' => 'https://cdn.willaspace.com/'. env('MINIO_BUCKET'),
'use_path_style_endpoint' => true,
], ],
], ],

@ -99,11 +99,6 @@ return [
'emergency' => [ 'emergency' => [
'path' => storage_path('logs/laravel.log'), 'path' => storage_path('logs/laravel.log'),
], ],
'sentry' => [
'driver' => 'sentry',
'level' => 'debug',
'bubble' => true,
],
], ],
]; ];

@ -170,5 +170,5 @@ return [
'generate_responsive_images' => Spatie\MediaLibrary\ResponsiveImages\Jobs\GenerateResponsiveImagesJob::class, 'generate_responsive_images' => Spatie\MediaLibrary\ResponsiveImages\Jobs\GenerateResponsiveImagesJob::class,
], ],
'wm-cdn' => 'https://cdn.willaspace.com/static.willaengine', 'wm-cdn' => 'https://cdn.willaspace.com',
]; ];

@ -1,37 +0,0 @@
<?php
return [
'dsn' => env('SENTRY_LARAVEL_DSN', env('SENTRY_DSN')),
// capture release as git sha
// 'release' => trim(exec('git --git-dir ' . base_path('.git') . ' log --pretty="%h" -n1 HEAD')),
// When left empty or `null` the Laravel environment will be used
'environment' => env('SENTRY_ENVIRONMENT'),
'breadcrumbs' => [
// Capture Laravel logs in breadcrumbs
'logs' => true,
// Capture SQL queries in breadcrumbs
'sql_queries' => true,
// Capture bindings on SQL queries logged in breadcrumbs
'sql_bindings' => true,
// Capture queue job information in breadcrumbs
'queue_info' => true,
// Capture command information in breadcrumbs
'command_info' => true,
],
// @see: https://docs.sentry.io/platforms/php/configuration/options/#send-default-pii
'send_default_pii' => false,
'traces_sample_rate' => (float)(env('SENTRY_TRACES_SAMPLE_RATE', 0.0)),
'controllers_base_namespace' => env('SENTRY_CONTROLLERS_BASE_NAMESPACE', 'App\\Http\\Controllers'),
];

@ -1,5 +1,4 @@
<?php <?php
namespace Database\Seeders;
use Illuminate\Database\Seeder; use Illuminate\Database\Seeder;
@ -12,12 +11,15 @@ class DatabaseSeeder extends Seeder
*/ */
public function run() public function run()
{ {
$this->call(CoreSeeder::class); $this->call(UserSeeder::class);
$this->call(CommonSeeder::class); $this->call(BusinessSeeder::class);
$this->call(CRMSeeder::class); $this->call(CategorySeeder::class);
$this->call(ProductSeeder::class); $this->call(CitySeeder::class);
$this->call(StoreSeeder::class); $this->call(DistrictSeeder::class);
$this->call(ServiceSeeder::class); $this->call(DomainSeeder::class);
$this->call(FinanceSeeder::class); $this->call(HelpSeeder::class);
$this->call(ModuleSeeder::class);
$this->call(PermissionCategorySeeder::class);
$this->call(RoleSeeder::class);
} }
} }

@ -6,7 +6,7 @@
"baseUrl": "./", "baseUrl": "./",
"paths": { "paths": {
"@JS/*": ["./resources/js/*"], "@JS/*": ["./resources/js/*"],
"@Global/*": ["./modules/wm-core/resources/Global/*"], "@Global/*": ["./resources/js/Global/*"],
"@Home/*": ["./resources/js/Home/*"], "@Home/*": ["./resources/js/Home/*"],
"@CRM/*": ["./modules/wm-crm/resources/js/*"], "@CRM/*": ["./modules/wm-crm/resources/js/*"],
"@Common/*": ["./modules/wm-common/resources/js/*"], "@Common/*": ["./modules/wm-common/resources/js/*"],

13614
package-lock.json generated

File diff suppressed because it is too large Load Diff

@ -2,69 +2,87 @@
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "npm run development", "dev": "npm run development",
"development": "mix", "development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=webpack.config.js",
"staging": "npm run production -- --mix-config=webpack.mix.staging", "watch": "npm run development -- --watch",
"watch": "mix watch", "watch-poll": "npm run watch -- --watch-poll",
"watch-poll": "mix watch -- --watch-options-poll=1000", "hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=webpack.config.js",
"hot": "mix watch --hot", "prod": "npm run production",
"prod": "npm run production -- --mix-config=webpack.mix.production", "production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=webpack.config.js"
"production": "mix --production"
}, },
"dependencies": { "dependencies": {
"@ckeditor/ckeditor5-build-classic": "^12.4.0",
"@ckeditor/ckeditor5-build-decoupled-document": "^16.0.0",
"@ckeditor/ckeditor5-font": "^16.0.0",
"@ckeditor/ckeditor5-vue": "^1.0.1",
"@fortawesome/fontawesome-free": "^5.5.0",
"@riophae/vue-treeselect": "^0.4.0", "@riophae/vue-treeselect": "^0.4.0",
"@tinymce/tinymce-vue": "^3.0.1", "@tinymce/tinymce-vue": "^3.0.1",
"apexcharts": "^3.27.1", "ajv": "^6.10.0",
"axios": "^0.21.1", "apexcharts": "^3.8.3",
"apollo-boost": "^0.4.3",
"apollo-cache-inmemory": "^1.6.2",
"apollo-link-context": "^1.0.18",
"axios": "^0.18.1",
"babel-polyfill": "^6.26.0", "babel-polyfill": "^6.26.0",
"codemirror": "^5.60.0", "bootstrap": "^4.3.1",
"dedent": "^0.7.0", "bootstrap-select": "^1.13.3",
"fslightbox-vue": "^1.2.0", "bootstrap-v4-rtl": "^4.1.1-0",
"bootstrap-vue": "^2.0.0-rc.19",
"chart.js": "^2.7.3",
"graphql": "^14.4.2",
"graphql-tag": "^2.10.1",
"izitoast": "^1.4.0", "izitoast": "^1.4.0",
"jalali-moment": "^3.3.3", "jalali-moment": "^3.3.3",
"moment": "^2.29.1", "loadash": "^1.0.0",
"moment-jalaali": "^0.9.2",
"object-to-formdata": "^2.1.2", "object-to-formdata": "^2.1.2",
"postcss-loader": "^3.0.0",
"prismjs": "^1.21.0", "prismjs": "^1.21.0",
"quill": "^1.3.7", "raw-loader": "^0.5.1",
"vee-validate": "^3.4.10", "v-mask": "^2.2.3",
"vee-validate": "^2.2.15",
"vue-advanced-cropper": "^0.14.1", "vue-advanced-cropper": "^0.14.1",
"vue-apexcharts": "^1.6.1", "vue-apexcharts": "^1.4.0",
"vue-apollo": "^3.0.0-alpha.3",
"vue-chartjs": "^3.4.0", "vue-chartjs": "^3.4.0",
"vue-codemirror": "^4.0.6", "vue-ckeditor5": "^0.4.1",
"vue-color": "^2.8.1", "vue-cropperjs": "^4.0.1",
"vue-dialog-drag": "^0.1.29",
"vue-directive-tooltip": "^1.6.3",
"vue-gallery": "^2.0.1", "vue-gallery": "^2.0.1",
"vue-jalali-moment": "^1.0.0", "vue-jalali-moment": "^1.0.0",
"vue-js-toggle-button": "^1.3.3",
"vue-masonry-wall": "^0.3.2",
"vue-moment": "^4.1.0", "vue-moment": "^4.1.0",
"vue-persian-datetime-picker": "^2.6.1", "vue-persian-datetime-picker": "^2.1.6",
"vue-prism-editor": "^1.2.2", "vue-prism-editor": "^1.2.2",
"vue-quill-editor": "^3.0.6",
"vue-range-component": "^1.0.3",
"vue-router": "^3.0.2", "vue-router": "^3.0.2",
"vue-select": "^3.11.2", "vue-scroll-reveal": "^1.0.11",
"vue-the-mask": "^0.11.1",
"vue-tinymce-editor": "^1.6.2", "vue-tinymce-editor": "^1.6.2",
"vue2-dropzone": "^3.6.0", "vue2-dropzone": "^3.6.0",
"vuetify": "^2.5.4", "vuetify": "^2.3.17"
"willatoast": "^1.1.1"
}, },
"devDependencies": { "devDependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.2.0", "@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.14.5", "@babel/preset-env": "^7.6.2",
"cross-env": "^5.2.1", "@ckeditor/ckeditor5-alignment": "^16.0.0",
"laravel-mix": "^6.0.24", "@mdi/font": "^3.9.97",
"minimist": "^1.2.5", "cross-env": "^5.1",
"node-sass": "^6.0.0", "deepmerge": "^4.0.0",
"fibers": "^4.0.1",
"jquery": "^3.5.1",
"laravel-mix": "^4.0.15",
"material-design-icons-iconfont": "^4.0.3",
"node-sass": "^4.14.1",
"popper.js": "^2.0.0-next.4", "popper.js": "^2.0.0-next.4",
"sass": "^1.35.1", "pug": "^2.0.3",
"sass-loader": "^12.1.0", "pug-loader": "^2.4.0",
"vue": "^2.6.14", "pug-plain-loader": "^1.0.0",
"vue-loader": "^15.9.7", "sass": "^1.22.12",
"sass-loader": "^7.3.1",
"ts-loader": "^8.0.11",
"typescript": "^4.1.2",
"vue": "^2.6.10",
"vue-masonry-css": "^1.0.3", "vue-masonry-css": "^1.0.3",
"vue-meta": "^1.5.2", "vue-meta": "^1.5.2",
"vue-template-compiler": "^2.6.14", "vue-resource": "^1.5.1",
"vue-template-compiler": "^2.6.10",
"vuex": "^3.0.1", "vuex": "^3.0.1",
"vuex-router-sync": "^5.0.0" "vuex-router-sync": "^5.0.0"
} }

@ -66,6 +66,6 @@ or generate your own password by https://bcrypt-generator.com/
## Composer Section: ## Composer Section:
1. please install and restart vscode 1. please install and restart vscode
2. add to environment in path in windows 1. add to environment in path in windows
good luck good luck

@ -1,54 +0,0 @@
import {setData, getJson, getArray} from '@|-BaseModule-|/abstraction/resources/|-module-|/|-module-|Resource'
import axios from "axios";
import url from "@|-BaseModule-|/router/urls";
export default class |-module-|Repository {
async index() {
let response = await axios.get(url('url'));
if (response && response.status === 200) {
return getArray(response.data.data);
}
}
async store(data) {
const params = setData(data);
let response = await axios.post(url('url'), params);
if (response && response.status === 201) {
return getJson(response.data.data);
}
}
async update(data) {
const params = setData(data, true);
let response = await axios.post(url('url', {|-module-|: data.id}), params);
if (response && response.status === 200) {
return getJson(response.data.data);
}
}
async destroy(dataId) {
let response = await axios.delete(url('url', {|-module-|: dataId}));
if (response && response.status === 200) {
return true;
}
}
}

@ -1,82 +0,0 @@
import {setQuery, setData, getJson, getArray} from "@|-BaseModule-|/abstraction/resources/|-module-|/|-module-|Resource";
import axios from "axios";
import url from "@|-BaseModule-|/router/urls";
export default class |-Module-|Repository {
async index(data) {
const params = setQuery(data);
let response = await axios.get(url('url'), {params});
if (response && response.status === 200) {
return getArray(response.data);
}
}
async store(data) {
const params = setData(data);
let response = await axios.post(url('url'), params);
if (response && response.status === 201) {
return getJson(response.data);
}
}
async update(data) {
const params = setData(data, true);
let response = await axios.post(url('url', {|-module-|: data.id}), params);
if (response && response.status === 200) {
return getJson(response.data.data);
}
}
async show(dataId) {
let response = await axios.get(url('url', {|-module-|: dataId}));
if (response && response.status === 200) {
return getJson(response.data.data);
}
}
async destroy(dataId) {
let response = await axios.delete(url('url', {|-module-|: dataId}));
if (response && response.status === 200) {
return true;
}
}
async destroyList(dataIds) {
let response = await axios.delete(url('url'), {params: {ids: dataIds}});
if (response && response.status === 200) {
return true;
}
}
}

@ -1,32 +0,0 @@
import {SetQueries} from "@Global/utils/common/CreateQueriesObject";
import {objectToFormData} from "@Global/utils/object-to-formdata";
import {addToTags} from "@Global/utils/common/addToTags";
const getJson = (data) => {
return {
...data,
};
};
const getArray = (data) => {
return data.map((Item) => (getJson(Item)));
};
const setQuery = (data) => {
return SetQueries(data);
};
const setData = (data, hasUpdate = false) => {
//data = addToTags(data, ['name', 'name_en']);
return objectToFormData(
{
...data,
_method: hasUpdate ? 'put' : 'post'
}
);
};
export {setData, setQuery, getArray, getJson};

@ -1,32 +0,0 @@
import {SetQueries, SetPagination} from "@Global/utils/common/CreateQueriesObject";
import {objectToFormData} from "@Global/utils/object-to-formdata";
const getJson = (data) => {
return {
...data,
};
};
const getArray = ({data, meta}) => {
const pagination = SetPagination(meta);
data = data.map((Item) => (getJson(Item)));
return {data, pagination};
};
const setQuery = (data) => {
return SetQueries(data);
};
const setData = (data, hasUpdate = false) => {
return objectToFormData(
{
...data,
_method: hasUpdate ? 'put' : 'post'
}
);
};
export {setData, setQuery, getArray, getJson};

@ -1,42 +0,0 @@
import { Paginate, Sort } from '@Global/services/storage.|-module-|';
const |-MODULE-| = '|-module-|';
const |-module-|Paginate = {
get() {
return Paginate.get(|-MODULE-|);
},
getWithDefault() {
if(this.get()) {
return this.get();
}
return {
page: 1,
pageCount: 1,
pageStart: 1,
pageStop: 1,
itemsLength: 1,
itemsPerPage: 12,
};
},
save(paginate) {
return Paginate.save(|-MODULE-|, paginate);
},
remove() {
return Paginate.remove(|-MODULE-|);
},
}
const SortPaginate = {
get() {
return Sort.get(|-MODULE-|);
},
save() {
return Sort.save(|-MODULE-|);
},
remove() {
return Sort.remove(|-MODULE-|);
},
}
export { |-module-|Paginate, SortPaginate }

@ -1,57 +0,0 @@
import |-Module-|Repository from "@|-BaseModule-|/abstraction/repositories/|-module-|/|-module-|Repository";
let repository = new |-Module-|Repository();
export default {
async load|-Module-|({ commit, state }) {
try {
commit("SET_LOADING", true);
const |-module-| = await repository.index();
commit("SET_|-MODULE-|", |-module-|);
return |-module-|;
} catch (e) {
return e;
} finally {
commit("SET_LOADING", false);
}
},
async store|-Module-|({ commit }, data) {
try {
const |-module-| = await repository.store(data);
commit('ADD_|-MODULE-|', |-module-|);
return |-module-|;
} catch (e) {
return e;
}
},
async update|-Module-|({ commit }, data) {
try {
const |-module-| = await repository.update(data);
commit('UPDATE_|-MODULE-|', |-module-|);
return |-module-|;
} catch (e) {
return e;
}
},
async remove|-Module-|({state,commit }, |-module-|Id) {
try {
const response = await repository.destroy(|-module-|Id);
commit("REMOVE_|-MODULE-|", |-module-|Id);
return response;
} catch (e) {
return e;
}
},
async removeMulti|-Module-|({state, commit }, |-module-|Ids) {
try {
const response = await repository.multipleDestroy(|-module-|Ids);
for (const |-module-|Id of |-module-|Ids) {
commit("REMOVE_|-MODULE-|", |-module-|Id);
}
return response;
} catch (e) {
return e;
}
},
};

@ -1,13 +0,0 @@
export default {
getList|-Module-|: state => {
if (state.has_filter) {
return state.filtered_|-snake_module-|;
}
return state.|-snake_module-|;
},
get|-Module-|: state => state.|-snake_module-|,
isFiltered|-Module-|: state =>state.is_filtered,
getFilter|-Module-|: state =>state.filter,
get|-Module-|Loading: state => state.loading,
};

@ -1,43 +0,0 @@
import Vue from 'vue';
import {addIndexTreeToList} from '@Global/utils/common/ProcessTreeArray';
export default {
SET_|-MODULE-|(state, |-module-|) {
Vue.set(state, '|-snake_module-|', addIndexTreeToList(|-module-|));
},
UPDATE_|-MODULE-|(state, |-module-|) {
const index = state.|-snake_module-|.findIndex(x => x.id === |-module-|.id);
Vue.set(state.|-snake_module-|, index, |-module-|);
Vue.set(state, '|-snake_module-|', addIndexTreeToList(state.|-snake_module-|));
},
REMOVE_|-MODULE-|(state, id) {
const Index = state.|-snake_module-|.findIndex(x => x.id === id);
Vue.delete(state.|-snake_module-|, Index);
Vue.set(state, '|-snake_module-|', addIndexTreeToList(state.|-snake_module-|));
},
ADD_|-MODULE-|(state, |-module-|) {
Vue.set(state.|-snake_module-|, state.|-snake_module-|.length, |-module-|);
Vue.set(state, '|-snake_module-|', addIndexTreeToList(state.|-snake_module-|))
},
ADD_|-MODULE-|_SELECTED(state, |-module-|Id) {
const |-module-| = state.|-module-|.find(x => x.id === |-module-|Id);
Vue.set(state.|-module-|_selected, state.|-module-|_selected.length, |-module-|);
},
SET_FILTER_|-MODULE-|(state, value) {
Vue.set(state, 'filtered_|-snake_module-|', value);
Vue.set(state, 'has_filter', true);
},
RESET_FILTERED_|-MODULE-|(state, value) {
Vue.set(state, 'filtered_|-snake_module-|', [value]);
Vue.set(state, 'is_filter', false);
},
SET_LOADING(state, value) {
state.loading = value;
},
};

@ -1,19 +0,0 @@
export default {
module_info:{
name: '|-module-|',
module: '|-baseModule-|',
},
filter: [],
is_filtered: false,
|-snake_module-|: [],
filtered_|-snake_module-|: [],
|-snake_module-|_selected: [],
loading: false,
default_category: {
id: null,
name: "بدون دسته بندی",
name_en: "No Category",
type: "default"
}
};

@ -1,65 +0,0 @@
import |-Module-|Repository from "@|-BaseModule-|/abstraction/repositories/|-module-|Repository";
let repository = new |-Module-|Repository();
export default {
async load|-Module-|({ commit, state }) {
try {
commit("SET_LOADING", true);
const |-module-| = await repository.index({pagination: state.pagination, filters: state.filters});
commit("SET_|-MODULE-|", |-module-|.data);
commit("SET_|-MODULE-|_PAGINATION", |-module-|.pagination);
return |-module-|;
} catch (e) {
return e;
} finally {
commit("SET_LOADING", false);
}
},
async show|-Module-|({}, |-module-|Id) {
try {
return await repository.show(|-module-|Id);
} catch (e) {
return e;
}
},
async store|-Module-|({ commit }, data) {
try {
const |-module-| = await repository.store(data);
commit('ADD_|-MODULE-|', |-module-|);
return |-module-|;
} catch (e) {
return e;
}
},
async update|-Module-|({ commit }, data) {
try {
const |-module-| = await repository.update(data);
commit('UPDATE_|-MODULE-|', |-module-|);
return |-module-|;
} catch (e) {
return e;
}
},
async remove|-Module-|({state,commit }, |-module-|Id) {
try {
const response = await repository.destroy(|-module-|Id);
commit("REMOVE_|-MODULE-|", |-module-|Id);
return response;
} catch (e) {
return e;
}
},
async removeMulti|-Module-|({state, commit }, |-module-|Ids) {
try {
const response = await repository.multipleDestroy(|-module-|Ids);
for (const |-module-|Id of |-module-|Ids) {
commit("REMOVE_|-MODULE-|", |-module-|Id);
}
return response;
} catch (e) {
return e;
}
},
};

@ -1,9 +0,0 @@
export default {
get|-Module-|s: state => state.|-module-|_list,
get|-Module-|Loading: state => state.loading,
get|-Module-|Pagination: state => state.pagination,
getRowsPerPageItems: state => state.rowsPerPageItems,
get|-Module-|Selected: state => state.|-module-|_selected,
isFiltered|-Module-|: state => state.is_filtered,
};

@ -1,48 +0,0 @@
import Vue from 'vue';
export default {
SET_|-MODULE-|(state, |-module-|) {
Vue.set(state, '|-module-|', |-module-|);
},
UPDATE_|-MODULE-|(state, |-module-|) {
const index = state.|-module-|_list.findIndex(x => x.id === |-module-|.id);
|-module-| = {...state.|-module-|_list[index], ...|-module-|};
Vue.set(state.|-module-|_list, index, |-module-|);
},
SET_|-MODULE-|_PAGINATION(state, pagination) {
Vue.set(state, "pagination", {...state.pagination, ...pagination});
//|-module-|Paginate.save(pagination);
},
REMOVE_|-MODULE-|(state, id) {
const Index = state.|-module-|_list.findIndex(x => x.id === id);
const selectedIndex = state.|-module-|_selected.findIndex(x => x.id === id);
Vue.delete(state.|-module-|_list, Index);
Vue.delete(state.|-module-|_selected, selectedIndex);
Vue.set(state.pagination, 'itemsLength', state.pagination.itemsLength - 1);
Vue.set(state.pagination, 'pageStop', state.pagination.pageStop - 1);
},
ADD_|-MODULE-|(state, |-module-|) {
state.|-module-|_list.unshift(|-module-|);
Vue.set(state, '|-module-|_list', state.|-module-|_list);
Vue.set(state.pagination, 'itemsLength', state.pagination.itemsLength + 1);
Vue.set(state.pagination, 'pageStop', state.pagination.pageStop + 1);
},
ADD_|-MODULE-|_SELECTED(state, |-module-|Id) {
const |-module-| = state.|-module-|_list.find(x => x.id === |-module-|Id);
Vue.set(state.|-module-|_selected, state.|-module-|_selected.length, |-module-|);
},
SET_FILTER_|-MODULE-|(state, value) {
state.filters = value;
},
SET_LOADING(state, value) {
Vue.set(state, 'loading', value);
}
};

@ -1,16 +0,0 @@
//import { |-Module-|Paginate } from "@|-BaseModule-|/services/localStorage/|-module-|.storage";
export default {
module_info:{
name: '|-module-|',
module: '|-baseModule-|',
},
|-module-|_list: [],
|-module-|_selected: [],
filtered_|-module-|: [],
//pagination: |-Module-|Paginate.getWithDefault(),
loading: false,
filters:{},
is_filtered: false,
};

@ -0,0 +1,85 @@
/*
Animation example, for spinners
*/
.animate-spin {
-moz-animation: spin 2s infinite linear;
-o-animation: spin 2s infinite linear;
-webkit-animation: spin 2s infinite linear;
animation: spin 2s infinite linear;
display: inline-block;
}
@-moz-keyframes spin {
0% {
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@-webkit-keyframes spin {
0% {
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@-o-keyframes spin {
0% {
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@-ms-keyframes spin {
0% {
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@keyframes spin {
0% {
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}

@ -0,0 +1,287 @@
.WMi-ok:before { content: '\e800'; } /* '' */
.WMi-picture:before { content: '\e801'; } /* '' */
.WMi-search:before { content: '\e802'; } /* '' */
.WMi-music:before { content: '\e803'; } /* '' */
.WMi-star-half:before { content: '\e804'; } /* '' */
.WMi-star-empty:before { content: '\e805'; } /* '' */
.WMi-star:before { content: '\e806'; } /* '' */
.WMi-heart-empty:before { content: '\e807'; } /* '' */
.WMi-heart:before { content: '\e808'; } /* '' */
.WMi-mail:before { content: '\e809'; } /* '' */
.WMi-cancel:before { content: '\e80a'; } /* '' */
.WMi-lock:before { content: '\e80b'; } /* '' */
.WMi-lock-open:before { content: '\e80c'; } /* '' */
.WMi-attach:before { content: '\e80d'; } /* '' */
.WMi-link:before { content: '\e80e'; } /* '' */
.WMi-bookmark:before { content: '\e80f'; } /* '' */
.WMi-upload:before { content: '\e810'; } /* '' */
.WMi-download:before { content: '\e811'; } /* '' */
.WMi-tag:before { content: '\e812'; } /* '' */
.WMi-trash-empty:before { content: '\e813'; } /* '' */
.WMi-cog:before { content: '\e814'; } /* '' */
.WMi-off-1:before { content: '\e815'; } /* '' */
.WMi-resize-vertical:before { content: '\e816'; } /* '' */
.WMi-down-open:before { content: '\e817'; } /* '' */
.WMi-left-open:before { content: '\e818'; } /* '' */
.WMi-right-open:before { content: '\e819'; } /* '' */
.WMi-up-open:before { content: '\e81a'; } /* '' */
.WMi-align-left:before { content: '\e81b'; } /* '' */
.WMi-align-center:before { content: '\e81c'; } /* '' */
.WMi-align-right:before { content: '\e81d'; } /* '' */
.WMi-indent-left:before { content: '\e81e'; } /* '' */
.WMi-indent-right:before { content: '\e81f'; } /* '' */
.WMi-align-justify:before { content: '\e820'; } /* '' */
.WMi-check:before { content: '\e821'; } /* '' */
.WMi-credit-card:before { content: '\e822'; } /* '' */
.WMi-briefcase:before { content: '\e823'; } /* '' */
.WMi-off:before { content: '\e824'; } /* '' */
.WMi-arrows-cw:before { content: '\e825'; } /* '' */
.WMi-shuffle:before { content: '\e826'; } /* '' */
.WMi-globe:before { content: '\e827'; } /* '' */
.WMi-cloud:before { content: '\e828'; } /* '' */
.WMi-zoom-in:before { content: '\e829'; } /* '' */
.WMi-zoom-out:before { content: '\e82a'; } /* '' */
.WMi-attach-1:before { content: '\e82b'; } /* '' */
.WMi-check-1:before { content: '\e82c'; } /* '' */
.WMi-cancel-1:before { content: '\e82d'; } /* '' */
.WMi-comment:before { content: '\e82e'; } /* '' */
.WMi-layers:before { content: '\e82f'; } /* '' */
.WMi-signal:before { content: '\e830'; } /* '' */
.WMi-equalizer:before { content: '\e831'; } /* '' */
.WMi-macstore:before { content: '\e832'; } /* '' */
.WMi-emo-happy:before { content: '\e833'; } /* '' */
.WMi-emo-wink:before { content: '\e834'; } /* '' */
.WMi-emo-wink2:before { content: '\e835'; } /* '' */
.WMi-emo-unhappy:before { content: '\e836'; } /* '' */
.WMi-emo-sleep:before { content: '\e837'; } /* '' */
.WMi-emo-coffee:before { content: '\e838'; } /* '' */
.WMi-emo-sunglasses:before { content: '\e839'; } /* '' */
.WMi-emo-angry:before { content: '\e83a'; } /* '' */
.WMi-emo-squint:before { content: '\e83b'; } /* '' */
.WMi-emo-laugh:before { content: '\e83c'; } /* '' */
.WMi-camera:before { content: '\e83d'; } /* '' */
.WMi-emo-displeased:before { content: '\e83e'; } /* '' */
.WMi-emo-surprised:before { content: '\e83f'; } /* '' */
.WMi-th:before { content: '\e840'; } /* '' */
.WMi-asterisk:before { content: '\e841'; } /* '' */
.WMi-gift:before { content: '\e842'; } /* '' */
.WMi-basket:before { content: '\e843'; } /* '' */
.WMi-Beauty-1:before { content: '\e844'; } /* '' */
.WMi-rss-1:before { content: '\e845'; } /* '' */
.WMi-shop:before { content: '\e846'; } /* '' */
.WMi-shop-1:before { content: '\e847'; } /* '' */
.WMi-basket-1:before { content: '\e848'; } /* '' */
.WMi-plus:before { content: '\e849'; } /* '' */
.WMi-minus:before { content: '\e84a'; } /* '' */
.WMi-Real-Estate:before { content: '\e84b'; } /* '' */
.WMi-retweet:before { content: '\e84c'; } /* '' */
.WMi-edit:before { content: '\e84d'; } /* '' */
.WMi-tags:before { content: '\e84e'; } /* '' */
.WMi-map-1:before { content: '\e84f'; } /* '' */
.WMi-doc-landscape:before { content: '\e850'; } /* '' */
.WMi-logout:before { content: '\e851'; } /* '' */
.WMi-login:before { content: '\e852'; } /* '' */
.WMi-logout-1:before { content: '\e853'; } /* '' */
.WMi-back-in-time:before { content: '\e854'; } /* '' */
.WMi-chat-alt:before { content: '\e855'; } /* '' */
.WMi-art-gallery:before { content: '\e856'; } /* '' */
.WMi-gift-1:before { content: '\e857'; } /* '' */
.WMi-switch:before { content: '\e858'; } /* '' */
.WMi-level-down:before { content: '\e859'; } /* '' */
.WMi-help:before { content: '\e85a'; } /* '' */
.WMi-location:before { content: '\e85b'; } /* '' */
.WMi-phone:before { content: '\e85c'; } /* '' */
.WMi-phone-1:before { content: '\e85d'; } /* '' */
.WMi-share:before { content: '\e85e'; } /* '' */
.WMi-Repairing:before { content: '\e85f'; } /* '' */
.WMi-shuffle-1:before { content: '\e860'; } /* '' */
.WMi-loop:before { content: '\e861'; } /* '' */
.WMi-glyph:before { content: '\e862'; } /* '' */
.WMi-glyph-1:before { content: '\e863'; } /* '' */
.WMi-glyph-2:before { content: '\e864'; } /* '' */
.WMi-warning-empty:before { content: '\e865'; } /* '' */
.WMi-shop-bag:before { content: '\e866'; } /* '' */
.WMi-Clothes:before { content: '\e867'; } /* '' */
.WMi-Agriculture:before { content: '\e868'; } /* '' */
.WMi-Medical:before { content: '\e869'; } /* '' */
.WMi-Sports-and-Entertainment:before { content: '\e86a'; } /* '' */
.WMi-wrench-1:before { content: '\e86b'; } /* '' */
.WMi-pencil:before { content: '\e86c'; } /* '' */
.WMi-map-2:before { content: '\e86d'; } /* '' */
.WMi-map-o-1:before { content: '\e86e'; } /* '' */
.WMi-marquee:before { content: '\e86f'; } /* '' */
.WMi-doc-text-inv:before { content: '\e870'; } /* '' */
.WMi-calendar:before { content: '\e871'; } /* '' */
.WMi-calendar-1:before { content: '\e872'; } /* '' */
.WMi-Art-And-Culture:before { content: '\e873'; } /* '' */
.WMi-graduation-cap:before { content: '\e874'; } /* '' */
.WMi-Advertising-1:before { content: '\e875'; } /* '' */
.WMi-filter:before { content: '\e876'; } /* '' */
.WMi-Tourism-And-Transportation:before { content: '\e877'; } /* '' */
.WMi-Makeup-And-Hygienic:before { content: '\e878'; } /* '' */
.WMi-clock:before { content: '\e879'; } /* '' */
.WMi-user:before { content: '\e87a'; } /* '' */
.WMi-users:before { content: '\e87b'; } /* '' */
.WMi-Official:before { content: '\e87c'; } /* '' */
.WMi-crown:before { content: '\e87d'; } /* '' */
.WMi-gift-2:before { content: '\e87e'; } /* '' */
.WMi-Decoration-And-Building-Industry:before { content: '\e87f'; } /* '' */
.WMi-Flowers-And-Plants:before { content: '\e880'; } /* '' */
.WMi-Advertising:before { content: '\e881'; } /* '' */
.WMi-shop-2:before { content: '\e882'; } /* '' */
.WMi-glyph-3:before { content: '\e883'; } /* '' */
.WMi-glyph-4:before { content: '\e884'; } /* '' */
.WMi-glyph-5:before { content: '\e885'; } /* '' */
.WMi-glyph-6:before { content: '\e886'; } /* '' */
.WMi-glyph-7:before { content: '\e887'; } /* '' */
.WMi-glyph-8:before { content: '\e888'; } /* '' */
.WMi-glyph-9:before { content: '\e889'; } /* '' */
.WMi-glyph-10:before { content: '\e88a'; } /* '' */
.WMi-glyph-11:before { content: '\e88b'; } /* '' */
.WMi-glyph-12:before { content: '\e88c'; } /* '' */
.WMi-glyph-13:before { content: '\e88d'; } /* '' */
.WMi-glyph-14:before { content: '\e88e'; } /* '' */
.WMi-glyph-15:before { content: '\e88f'; } /* '' */
.WMi-glyph-16:before { content: '\e890'; } /* '' */
.WMi-glyph-17:before { content: '\e891'; } /* '' */
.WMi-glyph-18:before { content: '\e892'; } /* '' */
.WMi-glyph-19:before { content: '\e893'; } /* '' */
.WMi-glyph-20:before { content: '\e894'; } /* '' */
.WMi-glyph-21:before { content: '\e895'; } /* '' */
.WMi-glyph-22:before { content: '\e896'; } /* '' */
.WMi-glyph-23:before { content: '\e897'; } /* '' */
.WMi-glyph-24:before { content: '\e898'; } /* '' */
.WMi-business-affiliate-network:before { content: '\e899'; } /* '' */
.WMi-camera-1:before { content: '\e89a'; } /* '' */
.WMi-Photography:before { content: '\e89b'; } /* '' */
.WMi-SocialMedia:before { content: '\e89c'; } /* '' */
.WMi-WebAndApp:before { content: '\e89d'; } /* '' */
.WMi-Graphic:before { content: '\e89e'; } /* '' */
.WMi-bell:before { content: '\e89f'; } /* '' */
.WMi-RegisterBusiness:before { content: '\e8a0'; } /* '' */
.WMi-code-1:before { content: '\e8a1'; } /* '' */
.WMi-pause:before { content: '\f00e'; } /* '' */
.WMi-play:before { content: '\f00f'; } /* '' */
.WMi-to-end:before { content: '\f010'; } /* '' */
.WMi-to-start:before { content: '\f011'; } /* '' */
.WMi-alert-outline:before { content: '\f02a'; } /* '' */
.WMi-Food:before { content: '\f02f'; } /* '' */
.WMi-Digital:before { content: '\f034'; } /* '' */
.WMi-stop:before { content: '\f080'; } /* '' */
.WMi-link-ext:before { content: '\f08e'; } /* '' */
.WMi-check-empty:before { content: '\f096'; } /* '' */
.WMi-bookmark-empty:before { content: '\f097'; } /* '' */
.WMi-twitter-1:before { content: '\f099'; } /* '' */
.WMi-rss:before { content: '\f09e'; } /* '' */
.WMi-hdd:before { content: '\f0a0'; } /* '' */
.WMi-resize-full-alt:before { content: '\f0b2'; } /* '' */
.WMi-beaker:before { content: '\f0c3'; } /* '' */
.WMi-menu:before { content: '\f0c9'; } /* '' */
.WMi-magic:before { content: '\f0d0'; } /* '' */
.WMi-gplus:before { content: '\f0d5'; } /* '' */
.WMi-WM-Logo:before { content: '\f0da'; } /* '' */
.WMi-open:before { content: '\f0db'; } /* '' */
.WMi-sort:before { content: '\f0dc'; } /* '' */
.WMi-chronometer:before { content: '\f0dd'; } /* '' */
.WMi-Clothes-And-Personal-Belongings:before { content: '\f0de'; } /* '' */
.WMi-mail-alt:before { content: '\f0e0'; } /* '' */
.WMi-Cleaning:before { content: '\f0e2'; } /* '' */
.WMi-exchange:before { content: '\f0ec'; } /* '' */
.WMi-Medical-Services:before { content: '\f0f0'; } /* '' */
.WMi-Drug-And-Medical-Equipment:before { content: '\f0f1'; } /* '' */
.WMi-bell-alt:before { content: '\f0f3'; } /* '' */
.WMi-HomeAppliances:before { content: '\f0f4'; } /* '' */
.WMi-Edible-And-Groceries:before { content: '\f0f5'; } /* '' */
.WMi-plus-squared:before { content: '\f0fe'; } /* '' */
.WMi-angle-double-left:before { content: '\f100'; } /* '' */
.WMi-angle-double-right:before { content: '\f101'; } /* '' */
.WMi-angle-double-up:before { content: '\f102'; } /* '' */
.WMi-angle-double-down:before { content: '\f103'; } /* '' */
.WMi-angle-left:before { content: '\f104'; } /* '' */
.WMi-angle-right:before { content: '\f105'; } /* '' */
.WMi-angle-up:before { content: '\f106'; } /* '' */
.WMi-angle-down:before { content: '\f107'; } /* '' */
.WMi-imac:before { content: '\f108'; } /* '' */
.WMi-laptop:before { content: '\f109'; } /* '' */
.WMi-tablet:before { content: '\f10a'; } /* '' */
.WMi-mobile:before { content: '\f10b'; } /* '' */
.WMi-circle:before { content: '\f111'; } /* '' */
.WMi-Information-Technology:before { content: '\f120'; } /* '' */
.WMi-code:before { content: '\f121'; } /* '' */
.WMi-star-half-alt:before { content: '\f123'; } /* '' */
.WMi-direction:before { content: '\f124'; } /* '' */
.WMi-crop:before { content: '\f125'; } /* '' */
.WMi-unlink:before { content: '\f127'; } /* '' */
.WMi-info:before { content: '\f129'; } /* '' */
.WMi-attention-alt:before { content: '\f12a'; } /* '' */
.WMi-ellipsis:before { content: '\f141'; } /* '' */
.WMi-ellipsis-vert:before { content: '\f142'; } /* '' */
.WMi-ok-squared:before { content: '\f14a'; } /* '' */
.WMi-compass:before { content: '\f14e'; } /* '' */
.WMi-sort-alt-up:before { content: '\f160'; } /* '' */
.WMi-sort-alt-down:before { content: '\f161'; } /* '' */
.WMi-dropbox:before { content: '\f16b'; } /* '' */
.WMi-instagram:before { content: '\f16d'; } /* '' */
.WMi-windows:before { content: '\f17a'; } /* '' */
.WMi-content-cut:before { content: '\f190'; } /* '' */
.WMi-plus-squared-alt:before { content: '\f196'; } /* '' */
.WMi-Educational:before { content: '\f19d'; } /* '' */
.WMi-crop-1:before { content: '\f19e'; } /* '' */
.WMi-google:before { content: '\f1a0'; } /* '' */
.WMi-paw:before { content: '\f1b0'; } /* '' */
.WMi-cube:before { content: '\f1b2'; } /* '' */
.WMi-cubes:before { content: '\f1b3'; } /* '' */
.WMi-Vehicle:before { content: '\f1b9'; } /* '' */
.WMi-database:before { content: '\f1c0'; } /* '' */
.WMi-codeopen:before { content: '\f1cb'; } /* '' */
.WMi-paper-plane:before { content: '\f1d8'; } /* '' */
.WMi-telegram:before { content: '\f1d9'; } /* '' */
.WMi-sliders:before { content: '\f1de'; } /* '' */
.WMi-Sport:before { content: '\f1e3'; } /* '' */
.WMi-plug:before { content: '\f1e6'; } /* '' */
.WMi-wifi:before { content: '\f1eb'; } /* '' */
.WMi-trash:before { content: '\f1f8'; } /* '' */
.WMi-Engineering:before { content: '\f1fa'; } /* '' */
.WMi-eyedropper:before { content: '\f1fb'; } /* '' */
.WMi-brush:before { content: '\f1fc'; } /* '' */
.WMi-birthday:before { content: '\f1fd'; } /* '' */
.WMi-chart-pie:before { content: '\f200'; } /* '' */
.WMi-chart-line:before { content: '\f201'; } /* '' */
.WMi-toggle-off:before { content: '\f204'; } /* '' */
.WMi-toggle-on:before { content: '\f205'; } /* '' */
.WMi-diamond:before { content: '\f219'; } /* '' */
.WMi-heartbeat:before { content: '\f21e'; } /* '' */
.WMi-pinterest:before { content: '\f231'; } /* '' */
.WMi-user-plus:before { content: '\f234'; } /* '' */
.WMi-user-times:before { content: '\f235'; } /* '' */
.WMi-flip-to-back:before { content: '\f247'; } /* '' */
.WMi-clone:before { content: '\f24d'; } /* '' */
.WMi-balance-scale:before { content: '\f24e'; } /* '' */
.WMi-television:before { content: '\f26c'; } /* '' */
.WMi-Industry:before { content: '\f275'; } /* '' */
.WMi-map-signs:before { content: '\f277'; } /* '' */
.WMi-map-o:before { content: '\f278'; } /* '' */
.WMi-map:before { content: '\f279'; } /* '' */
.WMi-edge:before { content: '\f282'; } /* '' */
.WMi-credit-card-alt:before { content: '\f283'; } /* '' */
.WMi-shopping-bag:before { content: '\f290'; } /* '' */
.WMi-question-circle-o:before { content: '\f29c'; } /* '' */
.WMi-envelope-open:before { content: '\f2b6'; } /* '' */
.WMi-envelope-open-o:before { content: '\f2b7'; } /* '' */
.WMi-telegram-1:before { content: '\f2c6'; } /* '' */
.WMi-hanger:before { content: '\f2c8'; } /* '' */
.WMi-facebook:before { content: '\f300'; } /* '' */
.WMi-twitter:before { content: '\f302'; } /* '' */
.WMi-linkedin-squared:before { content: '\f30c'; } /* '' */
.WMi-win8:before { content: '\f325'; } /* '' */
.WMi-instagram-1:before { content: '\f32d'; } /* '' */
.WMi-message-reply-text:before { content: '\f368'; } /* '' */
.WMi-message-text-outline:before { content: '\f36a'; } /* '' */
.WMi-percent:before { content: '\f3f0'; } /* '' */
.WMi-Flowers-and-Plants:before { content: '\f405'; } /* '' */
.WMi-Scientific:before { content: '\f463'; } /* '' */
.WMi-selection:before { content: '\f489'; } /* '' */
.WMi-Home-And-Office:before { content: '\f4b9'; } /* '' */
.WMi-shape-rectangle-plus:before { content: '\f65f'; } /* '' */
.WMi-Beauty:before { content: '\f665'; } /* '' */

File diff suppressed because one or more lines are too long

@ -0,0 +1,287 @@
.WMi-ok { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe800;&nbsp;'); }
.WMi-picture { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe801;&nbsp;'); }
.WMi-search { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe802;&nbsp;'); }
.WMi-music { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe803;&nbsp;'); }
.WMi-star-half { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe804;&nbsp;'); }
.WMi-star-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe805;&nbsp;'); }
.WMi-star { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe806;&nbsp;'); }
.WMi-heart-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe807;&nbsp;'); }
.WMi-heart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe808;&nbsp;'); }
.WMi-mail { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe809;&nbsp;'); }
.WMi-cancel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80a;&nbsp;'); }
.WMi-lock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80b;&nbsp;'); }
.WMi-lock-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80c;&nbsp;'); }
.WMi-attach { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80d;&nbsp;'); }
.WMi-link { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80e;&nbsp;'); }
.WMi-bookmark { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80f;&nbsp;'); }
.WMi-upload { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe810;&nbsp;'); }
.WMi-download { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe811;&nbsp;'); }
.WMi-tag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe812;&nbsp;'); }
.WMi-trash-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe813;&nbsp;'); }
.WMi-cog { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe814;&nbsp;'); }
.WMi-off-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe815;&nbsp;'); }
.WMi-resize-vertical { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe816;&nbsp;'); }
.WMi-down-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe817;&nbsp;'); }
.WMi-left-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe818;&nbsp;'); }
.WMi-right-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe819;&nbsp;'); }
.WMi-up-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81a;&nbsp;'); }
.WMi-align-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81b;&nbsp;'); }
.WMi-align-center { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81c;&nbsp;'); }
.WMi-align-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81d;&nbsp;'); }
.WMi-indent-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81e;&nbsp;'); }
.WMi-indent-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81f;&nbsp;'); }
.WMi-align-justify { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe820;&nbsp;'); }
.WMi-check { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe821;&nbsp;'); }
.WMi-credit-card { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe822;&nbsp;'); }
.WMi-briefcase { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe823;&nbsp;'); }
.WMi-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe824;&nbsp;'); }
.WMi-arrows-cw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe825;&nbsp;'); }
.WMi-shuffle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe826;&nbsp;'); }
.WMi-globe { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe827;&nbsp;'); }
.WMi-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe828;&nbsp;'); }
.WMi-zoom-in { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe829;&nbsp;'); }
.WMi-zoom-out { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82a;&nbsp;'); }
.WMi-attach-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82b;&nbsp;'); }
.WMi-check-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82c;&nbsp;'); }
.WMi-cancel-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82d;&nbsp;'); }
.WMi-comment { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82e;&nbsp;'); }
.WMi-layers { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82f;&nbsp;'); }
.WMi-signal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe830;&nbsp;'); }
.WMi-equalizer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe831;&nbsp;'); }
.WMi-macstore { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe832;&nbsp;'); }
.WMi-emo-happy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe833;&nbsp;'); }
.WMi-emo-wink { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe834;&nbsp;'); }
.WMi-emo-wink2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe835;&nbsp;'); }
.WMi-emo-unhappy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe836;&nbsp;'); }
.WMi-emo-sleep { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe837;&nbsp;'); }
.WMi-emo-coffee { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe838;&nbsp;'); }
.WMi-emo-sunglasses { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe839;&nbsp;'); }
.WMi-emo-angry { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83a;&nbsp;'); }
.WMi-emo-squint { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83b;&nbsp;'); }
.WMi-emo-laugh { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83c;&nbsp;'); }
.WMi-camera { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83d;&nbsp;'); }
.WMi-emo-displeased { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83e;&nbsp;'); }
.WMi-emo-surprised { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83f;&nbsp;'); }
.WMi-th { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe840;&nbsp;'); }
.WMi-asterisk { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe841;&nbsp;'); }
.WMi-gift { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe842;&nbsp;'); }
.WMi-basket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe843;&nbsp;'); }
.WMi-Beauty-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe844;&nbsp;'); }
.WMi-rss-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe845;&nbsp;'); }
.WMi-shop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe846;&nbsp;'); }
.WMi-shop-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe847;&nbsp;'); }
.WMi-basket-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe848;&nbsp;'); }
.WMi-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe849;&nbsp;'); }
.WMi-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84a;&nbsp;'); }
.WMi-Real-Estate { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84b;&nbsp;'); }
.WMi-retweet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84c;&nbsp;'); }
.WMi-edit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84d;&nbsp;'); }
.WMi-tags { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84e;&nbsp;'); }
.WMi-map-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84f;&nbsp;'); }
.WMi-doc-landscape { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe850;&nbsp;'); }
.WMi-logout { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe851;&nbsp;'); }
.WMi-login { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe852;&nbsp;'); }
.WMi-logout-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe853;&nbsp;'); }
.WMi-back-in-time { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe854;&nbsp;'); }
.WMi-chat-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe855;&nbsp;'); }
.WMi-art-gallery { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe856;&nbsp;'); }
.WMi-gift-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe857;&nbsp;'); }
.WMi-switch { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe858;&nbsp;'); }
.WMi-level-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe859;&nbsp;'); }
.WMi-help { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85a;&nbsp;'); }
.WMi-location { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85b;&nbsp;'); }
.WMi-phone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85c;&nbsp;'); }
.WMi-phone-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85d;&nbsp;'); }
.WMi-share { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85e;&nbsp;'); }
.WMi-Repairing { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85f;&nbsp;'); }
.WMi-shuffle-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe860;&nbsp;'); }
.WMi-loop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe861;&nbsp;'); }
.WMi-glyph { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe862;&nbsp;'); }
.WMi-glyph-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe863;&nbsp;'); }
.WMi-glyph-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe864;&nbsp;'); }
.WMi-warning-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe865;&nbsp;'); }
.WMi-shop-bag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe866;&nbsp;'); }
.WMi-Clothes { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe867;&nbsp;'); }
.WMi-Agriculture { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe868;&nbsp;'); }
.WMi-Medical { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe869;&nbsp;'); }
.WMi-Sports-and-Entertainment { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86a;&nbsp;'); }
.WMi-wrench-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86b;&nbsp;'); }
.WMi-pencil { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86c;&nbsp;'); }
.WMi-map-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86d;&nbsp;'); }
.WMi-map-o-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86e;&nbsp;'); }
.WMi-marquee { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86f;&nbsp;'); }
.WMi-doc-text-inv { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe870;&nbsp;'); }
.WMi-calendar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe871;&nbsp;'); }
.WMi-calendar-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe872;&nbsp;'); }
.WMi-Art-And-Culture { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe873;&nbsp;'); }
.WMi-graduation-cap { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe874;&nbsp;'); }
.WMi-Advertising-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe875;&nbsp;'); }
.WMi-filter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe876;&nbsp;'); }
.WMi-Tourism-And-Transportation { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe877;&nbsp;'); }
.WMi-Makeup-And-Hygienic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe878;&nbsp;'); }
.WMi-clock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe879;&nbsp;'); }
.WMi-user { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87a;&nbsp;'); }
.WMi-users { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87b;&nbsp;'); }
.WMi-Official { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87c;&nbsp;'); }
.WMi-crown { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87d;&nbsp;'); }
.WMi-gift-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87e;&nbsp;'); }
.WMi-Decoration-And-Building-Industry { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87f;&nbsp;'); }
.WMi-Flowers-And-Plants { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe880;&nbsp;'); }
.WMi-Advertising { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe881;&nbsp;'); }
.WMi-shop-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe882;&nbsp;'); }
.WMi-glyph-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe883;&nbsp;'); }
.WMi-glyph-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe884;&nbsp;'); }
.WMi-glyph-5 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe885;&nbsp;'); }
.WMi-glyph-6 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe886;&nbsp;'); }
.WMi-glyph-7 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe887;&nbsp;'); }
.WMi-glyph-8 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe888;&nbsp;'); }
.WMi-glyph-9 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe889;&nbsp;'); }
.WMi-glyph-10 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88a;&nbsp;'); }
.WMi-glyph-11 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88b;&nbsp;'); }
.WMi-glyph-12 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88c;&nbsp;'); }
.WMi-glyph-13 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88d;&nbsp;'); }
.WMi-glyph-14 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88e;&nbsp;'); }
.WMi-glyph-15 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88f;&nbsp;'); }
.WMi-glyph-16 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe890;&nbsp;'); }
.WMi-glyph-17 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe891;&nbsp;'); }
.WMi-glyph-18 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe892;&nbsp;'); }
.WMi-glyph-19 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe893;&nbsp;'); }
.WMi-glyph-20 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe894;&nbsp;'); }
.WMi-glyph-21 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe895;&nbsp;'); }
.WMi-glyph-22 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe896;&nbsp;'); }
.WMi-glyph-23 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe897;&nbsp;'); }
.WMi-glyph-24 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe898;&nbsp;'); }
.WMi-business-affiliate-network { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe899;&nbsp;'); }
.WMi-camera-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89a;&nbsp;'); }
.WMi-Photography { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89b;&nbsp;'); }
.WMi-SocialMedia { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89c;&nbsp;'); }
.WMi-WebAndApp { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89d;&nbsp;'); }
.WMi-Graphic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89e;&nbsp;'); }
.WMi-bell { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89f;&nbsp;'); }
.WMi-RegisterBusiness { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a0;&nbsp;'); }
.WMi-code-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a1;&nbsp;'); }
.WMi-pause { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf00e;&nbsp;'); }
.WMi-play { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf00f;&nbsp;'); }
.WMi-to-end { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf010;&nbsp;'); }
.WMi-to-start { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf011;&nbsp;'); }
.WMi-alert-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02a;&nbsp;'); }
.WMi-Food { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02f;&nbsp;'); }
.WMi-Digital { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf034;&nbsp;'); }
.WMi-stop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf080;&nbsp;'); }
.WMi-link-ext { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf08e;&nbsp;'); }
.WMi-check-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf096;&nbsp;'); }
.WMi-bookmark-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf097;&nbsp;'); }
.WMi-twitter-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf099;&nbsp;'); }
.WMi-rss { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf09e;&nbsp;'); }
.WMi-hdd { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a0;&nbsp;'); }
.WMi-resize-full-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0b2;&nbsp;'); }
.WMi-beaker { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c3;&nbsp;'); }
.WMi-menu { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c9;&nbsp;'); }
.WMi-magic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d0;&nbsp;'); }
.WMi-gplus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d5;&nbsp;'); }
.WMi-WM-Logo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0da;&nbsp;'); }
.WMi-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0db;&nbsp;'); }
.WMi-sort { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0dc;&nbsp;'); }
.WMi-chronometer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0dd;&nbsp;'); }
.WMi-Clothes-And-Personal-Belongings { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0de;&nbsp;'); }
.WMi-mail-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e0;&nbsp;'); }
.WMi-Cleaning { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e2;&nbsp;'); }
.WMi-exchange { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ec;&nbsp;'); }
.WMi-Medical-Services { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f0;&nbsp;'); }
.WMi-Drug-And-Medical-Equipment { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f1;&nbsp;'); }
.WMi-bell-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f3;&nbsp;'); }
.WMi-HomeAppliances { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f4;&nbsp;'); }
.WMi-Edible-And-Groceries { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f5;&nbsp;'); }
.WMi-plus-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0fe;&nbsp;'); }
.WMi-angle-double-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf100;&nbsp;'); }
.WMi-angle-double-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf101;&nbsp;'); }
.WMi-angle-double-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf102;&nbsp;'); }
.WMi-angle-double-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf103;&nbsp;'); }
.WMi-angle-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf104;&nbsp;'); }
.WMi-angle-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf105;&nbsp;'); }
.WMi-angle-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf106;&nbsp;'); }
.WMi-angle-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf107;&nbsp;'); }
.WMi-imac { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf108;&nbsp;'); }
.WMi-laptop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf109;&nbsp;'); }
.WMi-tablet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf10a;&nbsp;'); }
.WMi-mobile { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf10b;&nbsp;'); }
.WMi-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf111;&nbsp;'); }
.WMi-Information-Technology { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf120;&nbsp;'); }
.WMi-code { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf121;&nbsp;'); }
.WMi-star-half-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf123;&nbsp;'); }
.WMi-direction { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf124;&nbsp;'); }
.WMi-crop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf125;&nbsp;'); }
.WMi-unlink { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf127;&nbsp;'); }
.WMi-info { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf129;&nbsp;'); }
.WMi-attention-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf12a;&nbsp;'); }
.WMi-ellipsis { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf141;&nbsp;'); }
.WMi-ellipsis-vert { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf142;&nbsp;'); }
.WMi-ok-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf14a;&nbsp;'); }
.WMi-compass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf14e;&nbsp;'); }
.WMi-sort-alt-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf160;&nbsp;'); }
.WMi-sort-alt-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf161;&nbsp;'); }
.WMi-dropbox { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf16b;&nbsp;'); }
.WMi-instagram { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf16d;&nbsp;'); }
.WMi-windows { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf17a;&nbsp;'); }
.WMi-content-cut { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf190;&nbsp;'); }
.WMi-plus-squared-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf196;&nbsp;'); }
.WMi-Educational { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf19d;&nbsp;'); }
.WMi-crop-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf19e;&nbsp;'); }
.WMi-google { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1a0;&nbsp;'); }
.WMi-paw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1b0;&nbsp;'); }
.WMi-cube { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1b2;&nbsp;'); }
.WMi-cubes { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1b3;&nbsp;'); }
.WMi-Vehicle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1b9;&nbsp;'); }
.WMi-database { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1c0;&nbsp;'); }
.WMi-codeopen { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1cb;&nbsp;'); }
.WMi-paper-plane { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1d8;&nbsp;'); }
.WMi-telegram { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1d9;&nbsp;'); }
.WMi-sliders { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1de;&nbsp;'); }
.WMi-Sport { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1e3;&nbsp;'); }
.WMi-plug { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1e6;&nbsp;'); }
.WMi-wifi { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1eb;&nbsp;'); }
.WMi-trash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1f8;&nbsp;'); }
.WMi-Engineering { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1fa;&nbsp;'); }
.WMi-eyedropper { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1fb;&nbsp;'); }
.WMi-brush { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1fc;&nbsp;'); }
.WMi-birthday { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1fd;&nbsp;'); }
.WMi-chart-pie { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf200;&nbsp;'); }
.WMi-chart-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf201;&nbsp;'); }
.WMi-toggle-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf204;&nbsp;'); }
.WMi-toggle-on { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf205;&nbsp;'); }
.WMi-diamond { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf219;&nbsp;'); }
.WMi-heartbeat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf21e;&nbsp;'); }
.WMi-pinterest { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf231;&nbsp;'); }
.WMi-user-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf234;&nbsp;'); }
.WMi-user-times { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf235;&nbsp;'); }
.WMi-flip-to-back { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf247;&nbsp;'); }
.WMi-clone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf24d;&nbsp;'); }
.WMi-balance-scale { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf24e;&nbsp;'); }
.WMi-television { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf26c;&nbsp;'); }
.WMi-Industry { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf275;&nbsp;'); }
.WMi-map-signs { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf277;&nbsp;'); }
.WMi-map-o { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf278;&nbsp;'); }
.WMi-map { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf279;&nbsp;'); }
.WMi-edge { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf282;&nbsp;'); }
.WMi-credit-card-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf283;&nbsp;'); }
.WMi-shopping-bag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf290;&nbsp;'); }
.WMi-question-circle-o { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf29c;&nbsp;'); }
.WMi-envelope-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2b6;&nbsp;'); }
.WMi-envelope-open-o { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2b7;&nbsp;'); }
.WMi-telegram-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2c6;&nbsp;'); }
.WMi-hanger { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2c8;&nbsp;'); }
.WMi-facebook { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf300;&nbsp;'); }
.WMi-twitter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf302;&nbsp;'); }
.WMi-linkedin-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf30c;&nbsp;'); }
.WMi-win8 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf325;&nbsp;'); }
.WMi-instagram-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf32d;&nbsp;'); }
.WMi-message-reply-text { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf368;&nbsp;'); }
.WMi-message-text-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf36a;&nbsp;'); }
.WMi-percent { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf3f0;&nbsp;'); }
.WMi-Flowers-and-Plants { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf405;&nbsp;'); }
.WMi-Scientific { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf463;&nbsp;'); }
.WMi-selection { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf489;&nbsp;'); }
.WMi-Home-And-Office { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf4b9;&nbsp;'); }
.WMi-shape-rectangle-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf65f;&nbsp;'); }
.WMi-Beauty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf665;&nbsp;'); }

@ -0,0 +1,298 @@
[class^="WMi-"], [class*=" WMi-"] {
font-family: 'fontello';
font-style: normal;
font-weight: normal;
/* fix buttons height */
line-height: 1em;
/* you can be more comfortable with increased icons size */
/* font-size: 120%; */
}
.WMi-ok { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe800;&nbsp;'); }
.WMi-picture { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe801;&nbsp;'); }
.WMi-search { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe802;&nbsp;'); }
.WMi-music { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe803;&nbsp;'); }
.WMi-star-half { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe804;&nbsp;'); }
.WMi-star-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe805;&nbsp;'); }
.WMi-star { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe806;&nbsp;'); }
.WMi-heart-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe807;&nbsp;'); }
.WMi-heart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe808;&nbsp;'); }
.WMi-mail { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe809;&nbsp;'); }
.WMi-cancel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80a;&nbsp;'); }
.WMi-lock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80b;&nbsp;'); }
.WMi-lock-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80c;&nbsp;'); }
.WMi-attach { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80d;&nbsp;'); }
.WMi-link { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80e;&nbsp;'); }
.WMi-bookmark { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80f;&nbsp;'); }
.WMi-upload { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe810;&nbsp;'); }
.WMi-download { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe811;&nbsp;'); }
.WMi-tag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe812;&nbsp;'); }
.WMi-trash-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe813;&nbsp;'); }
.WMi-cog { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe814;&nbsp;'); }
.WMi-off-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe815;&nbsp;'); }
.WMi-resize-vertical { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe816;&nbsp;'); }
.WMi-down-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe817;&nbsp;'); }
.WMi-left-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe818;&nbsp;'); }
.WMi-right-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe819;&nbsp;'); }
.WMi-up-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81a;&nbsp;'); }
.WMi-align-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81b;&nbsp;'); }
.WMi-align-center { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81c;&nbsp;'); }
.WMi-align-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81d;&nbsp;'); }
.WMi-indent-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81e;&nbsp;'); }
.WMi-indent-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81f;&nbsp;'); }
.WMi-align-justify { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe820;&nbsp;'); }
.WMi-check { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe821;&nbsp;'); }
.WMi-credit-card { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe822;&nbsp;'); }
.WMi-briefcase { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe823;&nbsp;'); }
.WMi-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe824;&nbsp;'); }
.WMi-arrows-cw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe825;&nbsp;'); }
.WMi-shuffle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe826;&nbsp;'); }
.WMi-globe { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe827;&nbsp;'); }
.WMi-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe828;&nbsp;'); }
.WMi-zoom-in { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe829;&nbsp;'); }
.WMi-zoom-out { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82a;&nbsp;'); }
.WMi-attach-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82b;&nbsp;'); }
.WMi-check-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82c;&nbsp;'); }
.WMi-cancel-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82d;&nbsp;'); }
.WMi-comment { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82e;&nbsp;'); }
.WMi-layers { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82f;&nbsp;'); }
.WMi-signal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe830;&nbsp;'); }
.WMi-equalizer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe831;&nbsp;'); }
.WMi-macstore { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe832;&nbsp;'); }
.WMi-emo-happy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe833;&nbsp;'); }
.WMi-emo-wink { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe834;&nbsp;'); }
.WMi-emo-wink2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe835;&nbsp;'); }
.WMi-emo-unhappy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe836;&nbsp;'); }
.WMi-emo-sleep { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe837;&nbsp;'); }
.WMi-emo-coffee { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe838;&nbsp;'); }
.WMi-emo-sunglasses { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe839;&nbsp;'); }
.WMi-emo-angry { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83a;&nbsp;'); }
.WMi-emo-squint { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83b;&nbsp;'); }
.WMi-emo-laugh { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83c;&nbsp;'); }
.WMi-camera { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83d;&nbsp;'); }
.WMi-emo-displeased { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83e;&nbsp;'); }
.WMi-emo-surprised { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83f;&nbsp;'); }
.WMi-th { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe840;&nbsp;'); }
.WMi-asterisk { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe841;&nbsp;'); }
.WMi-gift { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe842;&nbsp;'); }
.WMi-basket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe843;&nbsp;'); }
.WMi-Beauty-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe844;&nbsp;'); }
.WMi-rss-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe845;&nbsp;'); }
.WMi-shop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe846;&nbsp;'); }
.WMi-shop-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe847;&nbsp;'); }
.WMi-basket-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe848;&nbsp;'); }
.WMi-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe849;&nbsp;'); }
.WMi-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84a;&nbsp;'); }
.WMi-Real-Estate { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84b;&nbsp;'); }
.WMi-retweet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84c;&nbsp;'); }
.WMi-edit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84d;&nbsp;'); }
.WMi-tags { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84e;&nbsp;'); }
.WMi-map-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84f;&nbsp;'); }
.WMi-doc-landscape { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe850;&nbsp;'); }
.WMi-logout { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe851;&nbsp;'); }
.WMi-login { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe852;&nbsp;'); }
.WMi-logout-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe853;&nbsp;'); }
.WMi-back-in-time { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe854;&nbsp;'); }
.WMi-chat-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe855;&nbsp;'); }
.WMi-art-gallery { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe856;&nbsp;'); }
.WMi-gift-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe857;&nbsp;'); }
.WMi-switch { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe858;&nbsp;'); }
.WMi-level-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe859;&nbsp;'); }
.WMi-help { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85a;&nbsp;'); }
.WMi-location { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85b;&nbsp;'); }
.WMi-phone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85c;&nbsp;'); }
.WMi-phone-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85d;&nbsp;'); }
.WMi-share { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85e;&nbsp;'); }
.WMi-Repairing { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85f;&nbsp;'); }
.WMi-shuffle-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe860;&nbsp;'); }
.WMi-loop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe861;&nbsp;'); }
.WMi-glyph { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe862;&nbsp;'); }
.WMi-glyph-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe863;&nbsp;'); }
.WMi-glyph-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe864;&nbsp;'); }
.WMi-warning-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe865;&nbsp;'); }
.WMi-shop-bag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe866;&nbsp;'); }
.WMi-Clothes { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe867;&nbsp;'); }
.WMi-Agriculture { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe868;&nbsp;'); }
.WMi-Medical { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe869;&nbsp;'); }
.WMi-Sports-and-Entertainment { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86a;&nbsp;'); }
.WMi-wrench-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86b;&nbsp;'); }
.WMi-pencil { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86c;&nbsp;'); }
.WMi-map-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86d;&nbsp;'); }
.WMi-map-o-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86e;&nbsp;'); }
.WMi-marquee { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86f;&nbsp;'); }
.WMi-doc-text-inv { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe870;&nbsp;'); }
.WMi-calendar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe871;&nbsp;'); }
.WMi-calendar-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe872;&nbsp;'); }
.WMi-Art-And-Culture { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe873;&nbsp;'); }
.WMi-graduation-cap { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe874;&nbsp;'); }
.WMi-Advertising-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe875;&nbsp;'); }
.WMi-filter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe876;&nbsp;'); }
.WMi-Tourism-And-Transportation { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe877;&nbsp;'); }
.WMi-Makeup-And-Hygienic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe878;&nbsp;'); }
.WMi-clock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe879;&nbsp;'); }
.WMi-user { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87a;&nbsp;'); }
.WMi-users { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87b;&nbsp;'); }
.WMi-Official { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87c;&nbsp;'); }
.WMi-crown { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87d;&nbsp;'); }
.WMi-gift-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87e;&nbsp;'); }
.WMi-Decoration-And-Building-Industry { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87f;&nbsp;'); }
.WMi-Flowers-And-Plants { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe880;&nbsp;'); }
.WMi-Advertising { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe881;&nbsp;'); }
.WMi-shop-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe882;&nbsp;'); }
.WMi-glyph-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe883;&nbsp;'); }
.WMi-glyph-4 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe884;&nbsp;'); }
.WMi-glyph-5 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe885;&nbsp;'); }
.WMi-glyph-6 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe886;&nbsp;'); }
.WMi-glyph-7 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe887;&nbsp;'); }
.WMi-glyph-8 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe888;&nbsp;'); }
.WMi-glyph-9 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe889;&nbsp;'); }
.WMi-glyph-10 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88a;&nbsp;'); }
.WMi-glyph-11 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88b;&nbsp;'); }
.WMi-glyph-12 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88c;&nbsp;'); }
.WMi-glyph-13 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88d;&nbsp;'); }
.WMi-glyph-14 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88e;&nbsp;'); }
.WMi-glyph-15 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88f;&nbsp;'); }
.WMi-glyph-16 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe890;&nbsp;'); }
.WMi-glyph-17 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe891;&nbsp;'); }
.WMi-glyph-18 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe892;&nbsp;'); }
.WMi-glyph-19 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe893;&nbsp;'); }
.WMi-glyph-20 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe894;&nbsp;'); }
.WMi-glyph-21 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe895;&nbsp;'); }
.WMi-glyph-22 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe896;&nbsp;'); }
.WMi-glyph-23 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe897;&nbsp;'); }
.WMi-glyph-24 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe898;&nbsp;'); }
.WMi-business-affiliate-network { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe899;&nbsp;'); }
.WMi-camera-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89a;&nbsp;'); }
.WMi-Photography { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89b;&nbsp;'); }
.WMi-SocialMedia { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89c;&nbsp;'); }
.WMi-WebAndApp { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89d;&nbsp;'); }
.WMi-Graphic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89e;&nbsp;'); }
.WMi-bell { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89f;&nbsp;'); }
.WMi-RegisterBusiness { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a0;&nbsp;'); }
.WMi-code-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a1;&nbsp;'); }
.WMi-pause { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf00e;&nbsp;'); }
.WMi-play { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf00f;&nbsp;'); }
.WMi-to-end { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf010;&nbsp;'); }
.WMi-to-start { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf011;&nbsp;'); }
.WMi-alert-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02a;&nbsp;'); }
.WMi-Food { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02f;&nbsp;'); }
.WMi-Digital { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf034;&nbsp;'); }
.WMi-stop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf080;&nbsp;'); }
.WMi-link-ext { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf08e;&nbsp;'); }
.WMi-check-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf096;&nbsp;'); }
.WMi-bookmark-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf097;&nbsp;'); }
.WMi-twitter-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf099;&nbsp;'); }
.WMi-rss { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf09e;&nbsp;'); }
.WMi-hdd { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a0;&nbsp;'); }
.WMi-resize-full-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0b2;&nbsp;'); }
.WMi-beaker { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c3;&nbsp;'); }
.WMi-menu { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c9;&nbsp;'); }
.WMi-magic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d0;&nbsp;'); }
.WMi-gplus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d5;&nbsp;'); }
.WMi-WM-Logo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0da;&nbsp;'); }
.WMi-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0db;&nbsp;'); }
.WMi-sort { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0dc;&nbsp;'); }
.WMi-chronometer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0dd;&nbsp;'); }
.WMi-Clothes-And-Personal-Belongings { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0de;&nbsp;'); }
.WMi-mail-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e0;&nbsp;'); }
.WMi-Cleaning { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e2;&nbsp;'); }
.WMi-exchange { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ec;&nbsp;'); }
.WMi-Medical-Services { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f0;&nbsp;'); }
.WMi-Drug-And-Medical-Equipment { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f1;&nbsp;'); }
.WMi-bell-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f3;&nbsp;'); }
.WMi-HomeAppliances { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f4;&nbsp;'); }
.WMi-Edible-And-Groceries { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f5;&nbsp;'); }
.WMi-plus-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0fe;&nbsp;'); }
.WMi-angle-double-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf100;&nbsp;'); }
.WMi-angle-double-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf101;&nbsp;'); }
.WMi-angle-double-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf102;&nbsp;'); }
.WMi-angle-double-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf103;&nbsp;'); }
.WMi-angle-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf104;&nbsp;'); }
.WMi-angle-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf105;&nbsp;'); }
.WMi-angle-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf106;&nbsp;'); }
.WMi-angle-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf107;&nbsp;'); }
.WMi-imac { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf108;&nbsp;'); }
.WMi-laptop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf109;&nbsp;'); }
.WMi-tablet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf10a;&nbsp;'); }
.WMi-mobile { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf10b;&nbsp;'); }
.WMi-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf111;&nbsp;'); }
.WMi-Information-Technology { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf120;&nbsp;'); }
.WMi-code { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf121;&nbsp;'); }
.WMi-star-half-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf123;&nbsp;'); }
.WMi-direction { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf124;&nbsp;'); }
.WMi-crop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf125;&nbsp;'); }
.WMi-unlink { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf127;&nbsp;'); }
.WMi-info { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf129;&nbsp;'); }
.WMi-attention-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf12a;&nbsp;'); }
.WMi-ellipsis { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf141;&nbsp;'); }
.WMi-ellipsis-vert { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf142;&nbsp;'); }
.WMi-ok-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf14a;&nbsp;'); }
.WMi-compass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf14e;&nbsp;'); }
.WMi-sort-alt-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf160;&nbsp;'); }
.WMi-sort-alt-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf161;&nbsp;'); }
.WMi-dropbox { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf16b;&nbsp;'); }
.WMi-instagram { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf16d;&nbsp;'); }
.WMi-windows { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf17a;&nbsp;'); }
.WMi-content-cut { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf190;&nbsp;'); }
.WMi-plus-squared-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf196;&nbsp;'); }
.WMi-Educational { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf19d;&nbsp;'); }
.WMi-crop-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf19e;&nbsp;'); }
.WMi-google { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1a0;&nbsp;'); }
.WMi-paw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1b0;&nbsp;'); }
.WMi-cube { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1b2;&nbsp;'); }
.WMi-cubes { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1b3;&nbsp;'); }
.WMi-Vehicle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1b9;&nbsp;'); }
.WMi-database { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1c0;&nbsp;'); }
.WMi-codeopen { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1cb;&nbsp;'); }
.WMi-paper-plane { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1d8;&nbsp;'); }
.WMi-telegram { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1d9;&nbsp;'); }
.WMi-sliders { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1de;&nbsp;'); }
.WMi-Sport { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1e3;&nbsp;'); }
.WMi-plug { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1e6;&nbsp;'); }
.WMi-wifi { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1eb;&nbsp;'); }
.WMi-trash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1f8;&nbsp;'); }
.WMi-Engineering { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1fa;&nbsp;'); }
.WMi-eyedropper { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1fb;&nbsp;'); }
.WMi-brush { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1fc;&nbsp;'); }
.WMi-birthday { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf1fd;&nbsp;'); }
.WMi-chart-pie { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf200;&nbsp;'); }
.WMi-chart-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf201;&nbsp;'); }
.WMi-toggle-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf204;&nbsp;'); }
.WMi-toggle-on { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf205;&nbsp;'); }
.WMi-diamond { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf219;&nbsp;'); }
.WMi-heartbeat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf21e;&nbsp;'); }
.WMi-pinterest { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf231;&nbsp;'); }
.WMi-user-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf234;&nbsp;'); }
.WMi-user-times { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf235;&nbsp;'); }
.WMi-flip-to-back { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf247;&nbsp;'); }
.WMi-clone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf24d;&nbsp;'); }
.WMi-balance-scale { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf24e;&nbsp;'); }
.WMi-television { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf26c;&nbsp;'); }
.WMi-Industry { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf275;&nbsp;'); }
.WMi-map-signs { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf277;&nbsp;'); }
.WMi-map-o { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf278;&nbsp;'); }
.WMi-map { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf279;&nbsp;'); }
.WMi-edge { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf282;&nbsp;'); }
.WMi-credit-card-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf283;&nbsp;'); }
.WMi-shopping-bag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf290;&nbsp;'); }
.WMi-question-circle-o { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf29c;&nbsp;'); }
.WMi-envelope-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2b6;&nbsp;'); }
.WMi-envelope-open-o { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2b7;&nbsp;'); }
.WMi-telegram-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2c6;&nbsp;'); }
.WMi-hanger { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf2c8;&nbsp;'); }
.WMi-facebook { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf300;&nbsp;'); }
.WMi-twitter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf302;&nbsp;'); }
.WMi-linkedin-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf30c;&nbsp;'); }
.WMi-win8 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf325;&nbsp;'); }
.WMi-instagram-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf32d;&nbsp;'); }
.WMi-message-reply-text { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf368;&nbsp;'); }
.WMi-message-text-outline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf36a;&nbsp;'); }
.WMi-percent { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf3f0;&nbsp;'); }
.WMi-Flowers-and-Plants { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf405;&nbsp;'); }
.WMi-Scientific { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf463;&nbsp;'); }
.WMi-selection { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf489;&nbsp;'); }
.WMi-Home-And-Office { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf4b9;&nbsp;'); }
.WMi-shape-rectangle-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf65f;&nbsp;'); }
.WMi-Beauty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf665;&nbsp;'); }

@ -0,0 +1,343 @@
@font-face {
font-family: 'fontello';
src: url('../font/fontello.eot?65806237');
src: url('../font/fontello.eot?65806237#iefix') format('embedded-opentype'),
url('../font/fontello.woff2?65806237') format('woff2'),
url('../font/fontello.woff?65806237') format('woff'),
url('../font/fontello.ttf?65806237') format('truetype'),
url('../font/fontello.svg?65806237#fontello') format('svg');
font-weight: normal;
font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {
font-family: 'fontello';
src: url('../font/fontello.svg?65806237#fontello') format('svg');
}
}
*/
[class^="WMi-"]:before, [class*=" WMi-"]:before {
font-family: "fontello";
font-style: normal;
font-weight: normal;
speak: none;
display: inline-block;
text-decoration: inherit;
width: 1em;
margin-right: .2em;
text-align: center;
/* opacity: .8; */
/* For safety - reset parent styles, that can break glyph codes*/
font-variant: normal;
text-transform: none;
/* fix buttons height, for twitter bootstrap */
line-height: 1em;
/* Animation center compensation - margins should be symmetric */
/* remove if not needed */
margin-left: .2em;
/* you can be more comfortable with increased icons size */
/* font-size: 120%; */
/* Font smoothing. That was taken from TWBS */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
/* Uncomment for 3D effect */
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
.WMi-ok:before { content: '\e800'; } /* '' */
.WMi-picture:before { content: '\e801'; } /* '' */
.WMi-search:before { content: '\e802'; } /* '' */
.WMi-music:before { content: '\e803'; } /* '' */
.WMi-star-half:before { content: '\e804'; } /* '' */
.WMi-star-empty:before { content: '\e805'; } /* '' */
.WMi-star:before { content: '\e806'; } /* '' */
.WMi-heart-empty:before { content: '\e807'; } /* '' */
.WMi-heart:before { content: '\e808'; } /* '' */
.WMi-mail:before { content: '\e809'; } /* '' */
.WMi-cancel:before { content: '\e80a'; } /* '' */
.WMi-lock:before { content: '\e80b'; } /* '' */
.WMi-lock-open:before { content: '\e80c'; } /* '' */
.WMi-attach:before { content: '\e80d'; } /* '' */
.WMi-link:before { content: '\e80e'; } /* '' */
.WMi-bookmark:before { content: '\e80f'; } /* '' */
.WMi-upload:before { content: '\e810'; } /* '' */
.WMi-download:before { content: '\e811'; } /* '' */
.WMi-tag:before { content: '\e812'; } /* '' */
.WMi-trash-empty:before { content: '\e813'; } /* '' */
.WMi-cog:before { content: '\e814'; } /* '' */
.WMi-off-1:before { content: '\e815'; } /* '' */
.WMi-resize-vertical:before { content: '\e816'; } /* '' */
.WMi-down-open:before { content: '\e817'; } /* '' */
.WMi-left-open:before { content: '\e818'; } /* '' */
.WMi-right-open:before { content: '\e819'; } /* '' */
.WMi-up-open:before { content: '\e81a'; } /* '' */
.WMi-align-left:before { content: '\e81b'; } /* '' */
.WMi-align-center:before { content: '\e81c'; } /* '' */
.WMi-align-right:before { content: '\e81d'; } /* '' */
.WMi-indent-left:before { content: '\e81e'; } /* '' */
.WMi-indent-right:before { content: '\e81f'; } /* '' */
.WMi-align-justify:before { content: '\e820'; } /* '' */
.WMi-check:before { content: '\e821'; } /* '' */
.WMi-credit-card:before { content: '\e822'; } /* '' */
.WMi-briefcase:before { content: '\e823'; } /* '' */
.WMi-off:before { content: '\e824'; } /* '' */
.WMi-arrows-cw:before { content: '\e825'; } /* '' */
.WMi-shuffle:before { content: '\e826'; } /* '' */
.WMi-globe:before { content: '\e827'; } /* '' */
.WMi-cloud:before { content: '\e828'; } /* '' */
.WMi-zoom-in:before { content: '\e829'; } /* '' */
.WMi-zoom-out:before { content: '\e82a'; } /* '' */
.WMi-attach-1:before { content: '\e82b'; } /* '' */
.WMi-check-1:before { content: '\e82c'; } /* '' */
.WMi-cancel-1:before { content: '\e82d'; } /* '' */
.WMi-comment:before { content: '\e82e'; } /* '' */
.WMi-layers:before { content: '\e82f'; } /* '' */
.WMi-signal:before { content: '\e830'; } /* '' */
.WMi-equalizer:before { content: '\e831'; } /* '' */
.WMi-macstore:before { content: '\e832'; } /* '' */
.WMi-emo-happy:before { content: '\e833'; } /* '' */
.WMi-emo-wink:before { content: '\e834'; } /* '' */
.WMi-emo-wink2:before { content: '\e835'; } /* '' */
.WMi-emo-unhappy:before { content: '\e836'; } /* '' */
.WMi-emo-sleep:before { content: '\e837'; } /* '' */
.WMi-emo-coffee:before { content: '\e838'; } /* '' */
.WMi-emo-sunglasses:before { content: '\e839'; } /* '' */
.WMi-emo-angry:before { content: '\e83a'; } /* '' */
.WMi-emo-squint:before { content: '\e83b'; } /* '' */
.WMi-emo-laugh:before { content: '\e83c'; } /* '' */
.WMi-camera:before { content: '\e83d'; } /* '' */
.WMi-emo-displeased:before { content: '\e83e'; } /* '' */
.WMi-emo-surprised:before { content: '\e83f'; } /* '' */
.WMi-th:before { content: '\e840'; } /* '' */
.WMi-asterisk:before { content: '\e841'; } /* '' */
.WMi-gift:before { content: '\e842'; } /* '' */
.WMi-basket:before { content: '\e843'; } /* '' */
.WMi-Beauty-1:before { content: '\e844'; } /* '' */
.WMi-rss-1:before { content: '\e845'; } /* '' */
.WMi-shop:before { content: '\e846'; } /* '' */
.WMi-shop-1:before { content: '\e847'; } /* '' */
.WMi-basket-1:before { content: '\e848'; } /* '' */
.WMi-plus:before { content: '\e849'; } /* '' */
.WMi-minus:before { content: '\e84a'; } /* '' */
.WMi-Real-Estate:before { content: '\e84b'; } /* '' */
.WMi-retweet:before { content: '\e84c'; } /* '' */
.WMi-edit:before { content: '\e84d'; } /* '' */
.WMi-tags:before { content: '\e84e'; } /* '' */
.WMi-map-1:before { content: '\e84f'; } /* '' */
.WMi-doc-landscape:before { content: '\e850'; } /* '' */
.WMi-logout:before { content: '\e851'; } /* '' */
.WMi-login:before { content: '\e852'; } /* '' */
.WMi-logout-1:before { content: '\e853'; } /* '' */
.WMi-back-in-time:before { content: '\e854'; } /* '' */
.WMi-chat-alt:before { content: '\e855'; } /* '' */
.WMi-art-gallery:before { content: '\e856'; } /* '' */
.WMi-gift-1:before { content: '\e857'; } /* '' */
.WMi-switch:before { content: '\e858'; } /* '' */
.WMi-level-down:before { content: '\e859'; } /* '' */
.WMi-help:before { content: '\e85a'; } /* '' */
.WMi-location:before { content: '\e85b'; } /* '' */
.WMi-phone:before { content: '\e85c'; } /* '' */
.WMi-phone-1:before { content: '\e85d'; } /* '' */
.WMi-share:before { content: '\e85e'; } /* '' */
.WMi-Repairing:before { content: '\e85f'; } /* '' */
.WMi-shuffle-1:before { content: '\e860'; } /* '' */
.WMi-loop:before { content: '\e861'; } /* '' */
.WMi-glyph:before { content: '\e862'; } /* '' */
.WMi-glyph-1:before { content: '\e863'; } /* '' */
.WMi-glyph-2:before { content: '\e864'; } /* '' */
.WMi-warning-empty:before { content: '\e865'; } /* '' */
.WMi-shop-bag:before { content: '\e866'; } /* '' */
.WMi-Clothes:before { content: '\e867'; } /* '' */
.WMi-Agriculture:before { content: '\e868'; } /* '' */
.WMi-Medical:before { content: '\e869'; } /* '' */
.WMi-Sports-and-Entertainment:before { content: '\e86a'; } /* '' */
.WMi-wrench-1:before { content: '\e86b'; } /* '' */
.WMi-pencil:before { content: '\e86c'; } /* '' */
.WMi-map-2:before { content: '\e86d'; } /* '' */
.WMi-map-o-1:before { content: '\e86e'; } /* '' */
.WMi-marquee:before { content: '\e86f'; } /* '' */
.WMi-doc-text-inv:before { content: '\e870'; } /* '' */
.WMi-calendar:before { content: '\e871'; } /* '' */
.WMi-calendar-1:before { content: '\e872'; } /* '' */
.WMi-Art-And-Culture:before { content: '\e873'; } /* '' */
.WMi-graduation-cap:before { content: '\e874'; } /* '' */
.WMi-Advertising-1:before { content: '\e875'; } /* '' */
.WMi-filter:before { content: '\e876'; } /* '' */
.WMi-Tourism-And-Transportation:before { content: '\e877'; } /* '' */
.WMi-Makeup-And-Hygienic:before { content: '\e878'; } /* '' */
.WMi-clock:before { content: '\e879'; } /* '' */
.WMi-user:before { content: '\e87a'; } /* '' */
.WMi-users:before { content: '\e87b'; } /* '' */
.WMi-Official:before { content: '\e87c'; } /* '' */
.WMi-crown:before { content: '\e87d'; } /* '' */
.WMi-gift-2:before { content: '\e87e'; } /* '' */
.WMi-Decoration-And-Building-Industry:before { content: '\e87f'; } /* '' */
.WMi-Flowers-And-Plants:before { content: '\e880'; } /* '' */
.WMi-Advertising:before { content: '\e881'; } /* '' */
.WMi-shop-2:before { content: '\e882'; } /* '' */
.WMi-glyph-3:before { content: '\e883'; } /* '' */
.WMi-glyph-4:before { content: '\e884'; } /* '' */
.WMi-glyph-5:before { content: '\e885'; } /* '' */
.WMi-glyph-6:before { content: '\e886'; } /* '' */
.WMi-glyph-7:before { content: '\e887'; } /* '' */
.WMi-glyph-8:before { content: '\e888'; } /* '' */
.WMi-glyph-9:before { content: '\e889'; } /* '' */
.WMi-glyph-10:before { content: '\e88a'; } /* '' */
.WMi-glyph-11:before { content: '\e88b'; } /* '' */
.WMi-glyph-12:before { content: '\e88c'; } /* '' */
.WMi-glyph-13:before { content: '\e88d'; } /* '' */
.WMi-glyph-14:before { content: '\e88e'; } /* '' */
.WMi-glyph-15:before { content: '\e88f'; } /* '' */
.WMi-glyph-16:before { content: '\e890'; } /* '' */
.WMi-glyph-17:before { content: '\e891'; } /* '' */
.WMi-glyph-18:before { content: '\e892'; } /* '' */
.WMi-glyph-19:before { content: '\e893'; } /* '' */
.WMi-glyph-20:before { content: '\e894'; } /* '' */
.WMi-glyph-21:before { content: '\e895'; } /* '' */
.WMi-glyph-22:before { content: '\e896'; } /* '' */
.WMi-glyph-23:before { content: '\e897'; } /* '' */
.WMi-glyph-24:before { content: '\e898'; } /* '' */
.WMi-business-affiliate-network:before { content: '\e899'; } /* '' */
.WMi-camera-1:before { content: '\e89a'; } /* '' */
.WMi-Photography:before { content: '\e89b'; } /* '' */
.WMi-SocialMedia:before { content: '\e89c'; } /* '' */
.WMi-WebAndApp:before { content: '\e89d'; } /* '' */
.WMi-Graphic:before { content: '\e89e'; } /* '' */
.WMi-bell:before { content: '\e89f'; } /* '' */
.WMi-RegisterBusiness:before { content: '\e8a0'; } /* '' */
.WMi-code-1:before { content: '\e8a1'; } /* '' */
.WMi-pause:before { content: '\f00e'; } /* '' */
.WMi-play:before { content: '\f00f'; } /* '' */
.WMi-to-end:before { content: '\f010'; } /* '' */
.WMi-to-start:before { content: '\f011'; } /* '' */
.WMi-alert-outline:before { content: '\f02a'; } /* '' */
.WMi-Food:before { content: '\f02f'; } /* '' */
.WMi-Digital:before { content: '\f034'; } /* '' */
.WMi-stop:before { content: '\f080'; } /* '' */
.WMi-link-ext:before { content: '\f08e'; } /* '' */
.WMi-check-empty:before { content: '\f096'; } /* '' */
.WMi-bookmark-empty:before { content: '\f097'; } /* '' */
.WMi-twitter-1:before { content: '\f099'; } /* '' */
.WMi-rss:before { content: '\f09e'; } /* '' */
.WMi-hdd:before { content: '\f0a0'; } /* '' */
.WMi-resize-full-alt:before { content: '\f0b2'; } /* '' */
.WMi-beaker:before { content: '\f0c3'; } /* '' */
.WMi-menu:before { content: '\f0c9'; } /* '' */
.WMi-magic:before { content: '\f0d0'; } /* '' */
.WMi-gplus:before { content: '\f0d5'; } /* '' */
.WMi-WM-Logo:before { content: '\f0da'; } /* '' */
.WMi-open:before { content: '\f0db'; } /* '' */
.WMi-sort:before { content: '\f0dc'; } /* '' */
.WMi-chronometer:before { content: '\f0dd'; } /* '' */
.WMi-Clothes-And-Personal-Belongings:before { content: '\f0de'; } /* '' */
.WMi-mail-alt:before { content: '\f0e0'; } /* '' */
.WMi-Cleaning:before { content: '\f0e2'; } /* '' */
.WMi-exchange:before { content: '\f0ec'; } /* '' */
.WMi-Medical-Services:before { content: '\f0f0'; } /* '' */
.WMi-Drug-And-Medical-Equipment:before { content: '\f0f1'; } /* '' */
.WMi-bell-alt:before { content: '\f0f3'; } /* '' */
.WMi-HomeAppliances:before { content: '\f0f4'; } /* '' */
.WMi-Edible-And-Groceries:before { content: '\f0f5'; } /* '' */
.WMi-plus-squared:before { content: '\f0fe'; } /* '' */
.WMi-angle-double-left:before { content: '\f100'; } /* '' */
.WMi-angle-double-right:before { content: '\f101'; } /* '' */
.WMi-angle-double-up:before { content: '\f102'; } /* '' */
.WMi-angle-double-down:before { content: '\f103'; } /* '' */
.WMi-angle-left:before { content: '\f104'; } /* '' */
.WMi-angle-right:before { content: '\f105'; } /* '' */
.WMi-angle-up:before { content: '\f106'; } /* '' */
.WMi-angle-down:before { content: '\f107'; } /* '' */
.WMi-imac:before { content: '\f108'; } /* '' */
.WMi-laptop:before { content: '\f109'; } /* '' */
.WMi-tablet:before { content: '\f10a'; } /* '' */
.WMi-mobile:before { content: '\f10b'; } /* '' */
.WMi-circle:before { content: '\f111'; } /* '' */
.WMi-Information-Technology:before { content: '\f120'; } /* '' */
.WMi-code:before { content: '\f121'; } /* '' */
.WMi-star-half-alt:before { content: '\f123'; } /* '' */
.WMi-direction:before { content: '\f124'; } /* '' */
.WMi-crop:before { content: '\f125'; } /* '' */
.WMi-unlink:before { content: '\f127'; } /* '' */
.WMi-info:before { content: '\f129'; } /* '' */
.WMi-attention-alt:before { content: '\f12a'; } /* '' */
.WMi-ellipsis:before { content: '\f141'; } /* '' */
.WMi-ellipsis-vert:before { content: '\f142'; } /* '' */
.WMi-ok-squared:before { content: '\f14a'; } /* '' */
.WMi-compass:before { content: '\f14e'; } /* '' */
.WMi-sort-alt-up:before { content: '\f160'; } /* '' */
.WMi-sort-alt-down:before { content: '\f161'; } /* '' */
.WMi-dropbox:before { content: '\f16b'; } /* '' */
.WMi-instagram:before { content: '\f16d'; } /* '' */
.WMi-windows:before { content: '\f17a'; } /* '' */
.WMi-content-cut:before { content: '\f190'; } /* '' */
.WMi-plus-squared-alt:before { content: '\f196'; } /* '' */
.WMi-Educational:before { content: '\f19d'; } /* '' */
.WMi-crop-1:before { content: '\f19e'; } /* '' */
.WMi-google:before { content: '\f1a0'; } /* '' */
.WMi-paw:before { content: '\f1b0'; } /* '' */
.WMi-cube:before { content: '\f1b2'; } /* '' */
.WMi-cubes:before { content: '\f1b3'; } /* '' */
.WMi-Vehicle:before { content: '\f1b9'; } /* '' */
.WMi-database:before { content: '\f1c0'; } /* '' */
.WMi-codeopen:before { content: '\f1cb'; } /* '' */
.WMi-paper-plane:before { content: '\f1d8'; } /* '' */
.WMi-telegram:before { content: '\f1d9'; } /* '' */
.WMi-sliders:before { content: '\f1de'; } /* '' */
.WMi-Sport:before { content: '\f1e3'; } /* '' */
.WMi-plug:before { content: '\f1e6'; } /* '' */
.WMi-wifi:before { content: '\f1eb'; } /* '' */
.WMi-trash:before { content: '\f1f8'; } /* '' */
.WMi-Engineering:before { content: '\f1fa'; } /* '' */
.WMi-eyedropper:before { content: '\f1fb'; } /* '' */
.WMi-brush:before { content: '\f1fc'; } /* '' */
.WMi-birthday:before { content: '\f1fd'; } /* '' */
.WMi-chart-pie:before { content: '\f200'; } /* '' */
.WMi-chart-line:before { content: '\f201'; } /* '' */
.WMi-toggle-off:before { content: '\f204'; } /* '' */
.WMi-toggle-on:before { content: '\f205'; } /* '' */
.WMi-diamond:before { content: '\f219'; } /* '' */
.WMi-heartbeat:before { content: '\f21e'; } /* '' */
.WMi-pinterest:before { content: '\f231'; } /* '' */
.WMi-user-plus:before { content: '\f234'; } /* '' */
.WMi-user-times:before { content: '\f235'; } /* '' */
.WMi-flip-to-back:before { content: '\f247'; } /* '' */
.WMi-clone:before { content: '\f24d'; } /* '' */
.WMi-balance-scale:before { content: '\f24e'; } /* '' */
.WMi-television:before { content: '\f26c'; } /* '' */
.WMi-Industry:before { content: '\f275'; } /* '' */
.WMi-map-signs:before { content: '\f277'; } /* '' */
.WMi-map-o:before { content: '\f278'; } /* '' */
.WMi-map:before { content: '\f279'; } /* '' */
.WMi-edge:before { content: '\f282'; } /* '' */
.WMi-credit-card-alt:before { content: '\f283'; } /* '' */
.WMi-shopping-bag:before { content: '\f290'; } /* '' */
.WMi-question-circle-o:before { content: '\f29c'; } /* '' */
.WMi-envelope-open:before { content: '\f2b6'; } /* '' */
.WMi-envelope-open-o:before { content: '\f2b7'; } /* '' */
.WMi-telegram-1:before { content: '\f2c6'; } /* '' */
.WMi-hanger:before { content: '\f2c8'; } /* '' */
.WMi-facebook:before { content: '\f300'; } /* '' */
.WMi-twitter:before { content: '\f302'; } /* '' */
.WMi-linkedin-squared:before { content: '\f30c'; } /* '' */
.WMi-win8:before { content: '\f325'; } /* '' */
.WMi-instagram-1:before { content: '\f32d'; } /* '' */
.WMi-message-reply-text:before { content: '\f368'; } /* '' */
.WMi-message-text-outline:before { content: '\f36a'; } /* '' */
.WMi-percent:before { content: '\f3f0'; } /* '' */
.WMi-Flowers-and-Plants:before { content: '\f405'; } /* '' */
.WMi-Scientific:before { content: '\f463'; } /* '' */
.WMi-selection:before { content: '\f489'; } /* '' */
.WMi-Home-And-Office:before { content: '\f4b9'; } /* '' */
.WMi-shape-rectangle-plus:before { content: '\f65f'; } /* '' */
.WMi-Beauty:before { content: '\f665'; } /* '' */

@ -0,0 +1,582 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>Copyright (C) 2018 by original authors @ fontello.com</metadata>
<defs>
<font id="fontello" horiz-adv-x="1000" >
<font-face font-family="fontello" font-weight="400" font-stretch="normal" units-per-em="1000" ascent="850" descent="-150" />
<missing-glyph horiz-adv-x="1000" />
<glyph glyph-name="ok" unicode="&#xe800;" d="M933 534q0-22-16-38l-404-404-76-76q-16-15-38-15t-38 15l-76 76-202 202q-15 16-15 38t15 38l76 76q16 16 38 16t38-16l164-165 366 367q16 16 38 16t38-16l76-76q16-15 16-38z" horiz-adv-x="1000" />
<glyph glyph-name="picture" unicode="&#xe801;" d="M357 529q0-45-31-76t-76-32-76 32-31 76 31 76 76 31 76-31 31-76z m572-215v-250h-786v107l178 179 90-89 285 285z m53 393h-893q-7 0-12-5t-6-13v-678q0-7 6-13t12-5h893q7 0 13 5t5 13v678q0 8-5 13t-13 5z m89-18v-678q0-37-26-63t-63-27h-893q-36 0-63 27t-26 63v678q0 37 26 63t63 27h893q37 0 63-27t26-63z" horiz-adv-x="1071.4" />
<glyph glyph-name="search" unicode="&#xe802;" d="M643 386q0 103-73 176t-177 74-177-74-73-176 73-177 177-73 177 73 73 177z m286-465q0-29-22-50t-50-21q-30 0-50 21l-191 191q-100-69-223-69-80 0-153 31t-125 84-84 125-31 153 31 152 84 126 125 84 153 31 153-31 125-84 84-126 31-152q0-123-69-223l191-191q21-21 21-51z" horiz-adv-x="928.6" />
<glyph glyph-name="music" unicode="&#xe803;" d="M857 725v-625q0-28-19-50t-48-33-58-18-53-6-54 6-58 18-48 33-19 50 19 50 48 33 58 18 54 6q58 0 107-22v300l-429-132v-396q0-28-19-50t-48-33-58-18-53-6-54 6-58 18-48 33-19 50 19 50 48 34 58 17 54 6q58 0 107-21v539q0 17 10 32t28 20l464 142q7 3 16 3 22 0 38-16t15-38z" horiz-adv-x="857.1" />
<glyph glyph-name="star-half" unicode="&#xe804;" d="M464 832v-747l-250-132q-12-7-23-7-11 0-17 9t-6 19q0 4 1 12l48 279-203 197q-14 15-14 27 0 21 31 26l280 40 126 254q11 23 27 23z" horiz-adv-x="500" />
<glyph glyph-name="star-empty" unicode="&#xe805;" d="M635 290l170 166-235 34-106 213-105-213-236-34 171-166-41-235 211 111 211-111z m294 199q0-12-15-27l-202-197 48-279q0-4 0-12 0-28-23-28-10 0-22 7l-251 132-250-132q-12-7-23-7-11 0-17 9t-6 19q0 4 1 12l48 279-203 197q-14 15-14 27 0 21 31 26l280 40 126 254q11 23 27 23t28-23l125-254 280-40q32-5 32-26z" horiz-adv-x="928.6" />
<glyph glyph-name="star" unicode="&#xe806;" d="M929 489q0-12-15-27l-202-197 48-279q0-4 0-12 0-11-6-19t-17-9q-10 0-22 7l-251 132-250-132q-12-7-23-7-11 0-17 9t-6 19q0 4 1 12l48 279-203 197q-14 15-14 27 0 21 31 26l280 40 126 254q11 23 27 23t28-23l125-254 280-40q32-5 32-26z" horiz-adv-x="928.6" />
<glyph glyph-name="heart-empty" unicode="&#xe807;" d="M929 517q0 46-12 80t-31 55-46 33-52 18-55 4-62-14-62-36-48-40-34-34q-10-13-27-13t-27 13q-14 15-34 34t-48 40-62 36-62 14-55-4-52-18-46-33-31-55-12-80q0-93 105-198l324-312 324 312q105 105 105 198z m71 0q0-123-128-251l-347-335q-10-10-25-10t-25 10l-348 336q-5 5-15 15t-31 37-38 54-30 67-13 77q0 123 71 192t196 70q34 0 70-12t67-33 54-38 42-38q20 20 42 38t54 38 67 33 70 12q125 0 196-70t71-192z" horiz-adv-x="1000" />
<glyph glyph-name="heart" unicode="&#xe808;" d="M500-79q-14 0-25 10l-348 336q-5 5-15 15t-31 37-38 54-30 67-13 77q0 123 71 192t196 70q34 0 70-12t67-33 54-38 42-38q20 20 42 38t54 38 67 33 70 12q125 0 196-70t71-192q0-123-128-251l-347-335q-10-10-25-10z" horiz-adv-x="1000" />
<glyph glyph-name="mail" unicode="&#xe809;" d="M929 11v428q-18-20-39-36-149-115-238-189-28-24-46-37t-48-28-57-13h-2q-26 0-57 13t-48 28-46 37q-88 74-238 189-21 16-39 36v-428q0-7 6-13t12-5h822q7 0 12 5t6 13z m0 586v14t-1 7-1 7-3 5-5 4-8 2h-822q-7 0-12-6t-6-12q0-94 83-159 107-84 223-176 4-3 20-17t25-21 25-17 28-16 24-5h2q11 0 24 5t28 16 25 17 25 21 20 17q116 92 224 176 30 24 56 65t26 73z m71 21v-607q0-37-26-63t-63-27h-822q-36 0-63 27t-26 63v607q0 37 26 63t63 26h822q37 0 63-26t26-63z" horiz-adv-x="1000" />
<glyph glyph-name="cancel" unicode="&#xe80a;" d="M724 112q0-22-15-38l-76-76q-16-15-38-15t-38 15l-164 165-164-165q-16-15-38-15t-38 15l-76 76q-16 16-16 38t16 38l164 164-164 164q-16 16-16 38t16 38l76 76q16 16 38 16t38-16l164-164 164 164q16 16 38 16t38-16l76-76q15-15 15-38t-15-38l-164-164 164-164q15-15 15-38z" horiz-adv-x="785.7" />
<glyph glyph-name="lock" unicode="&#xe80b;" d="M179 421h285v108q0 59-42 101t-101 41-101-41-41-101v-108z m464-53v-322q0-22-16-37t-38-16h-535q-23 0-38 16t-16 37v322q0 22 16 38t38 15h17v108q0 102 74 176t176 74 177-74 73-176v-108h18q23 0 38-15t16-38z" horiz-adv-x="642.9" />
<glyph glyph-name="lock-open" unicode="&#xe80c;" d="M929 529v-143q0-15-11-25t-25-11h-36q-14 0-25 11t-11 25v143q0 59-41 101t-101 41-101-41-42-101v-108h53q23 0 38-15t16-38v-322q0-22-16-37t-38-16h-535q-23 0-38 16t-16 37v322q0 22 16 38t38 15h375v108q0 103 73 176t177 74 176-74 74-176z" horiz-adv-x="928.6" />
<glyph glyph-name="attach" unicode="&#xe80d;" d="M784 77q0-65-45-109t-109-44q-75 0-131 55l-434 434q-63 64-63 151 0 89 62 150t150 62q88 0 152-63l338-338q5-5 5-12 0-9-17-26t-26-17q-7 0-12 5l-339 339q-44 43-101 43-59 0-100-42t-40-101q0-58 42-101l433-433q35-36 81-36 36 0 59 24t24 59q0 46-35 81l-325 324q-14 14-33 14-16 0-27-11t-11-27q0-18 14-33l229-228q6-6 6-13 0-9-18-26t-26-17q-6 0-12 5l-229 229q-35 34-35 83 0 46 32 78t77 32q49 0 84-35l324-325q56-54 56-131z" horiz-adv-x="785.7" />
<glyph glyph-name="link" unicode="&#xe80e;" d="M813 171q0 23-16 38l-116 116q-16 16-38 16-24 0-40-18 1-1 10-10t12-12 9-11 7-14 2-15q0-23-16-38t-38-16q-8 0-15 2t-14 7-11 9-12 12-10 10q-19-17-19-40 0-23 16-38l115-116q15-15 38-15 22 0 38 15l82 81q16 16 16 37z m-393 394q0 22-15 38l-115 115q-16 16-38 16-22 0-38-15l-82-82q-16-15-16-37 0-22 16-38l116-116q15-15 38-15 23 0 40 17-2 2-11 11t-12 12-8 10-7 14-2 16q0 22 15 38t38 15q9 0 16-2t14-7 11-8 12-12 10-11q18 17 18 41z m500-394q0-66-48-113l-82-81q-46-47-113-47-68 0-114 48l-115 115q-46 47-46 114 0 68 49 116l-49 49q-48-49-116-49-67 0-114 47l-116 116q-47 47-47 114t47 113l82 82q47 46 114 46 67 0 114-47l115-116q46-46 46-113 0-69-49-117l49-49q48 49 116 49 67 0 114-47l116-116q47-47 47-114z" horiz-adv-x="928.6" />
<glyph glyph-name="bookmark" unicode="&#xe80f;" d="M650 779q12 0 24-5 19-8 29-23t11-35v-719q0-19-11-35t-29-23q-10-4-24-4-27 0-47 18l-246 236-246-236q-20-19-46-19-13 0-25 5-18 7-29 23t-11 35v719q0 19 11 35t29 23q12 5 25 5h585z" horiz-adv-x="714.3" />
<glyph glyph-name="upload" unicode="&#xe810;" d="M714 29q0 14-10 25t-25 10-25-10-11-25 11-25 25-11 25 11 10 25z m143 0q0 14-10 25t-26 10-25-10-10-25 10-25 25-11 26 11 10 25z m72 125v-179q0-22-16-38t-38-16h-821q-23 0-38 16t-16 38v179q0 22 16 38t38 15h238q12-31 39-51t62-20h143q34 0 61 20t40 51h238q22 0 38-15t16-38z m-182 361q-9-22-33-22h-143v-250q0-15-10-25t-25-11h-143q-15 0-25 11t-11 25v250h-143q-23 0-33 22-9 22 8 39l250 250q10 10 25 10t25-10l250-250q18-17 8-39z" horiz-adv-x="928.6" />
<glyph glyph-name="download" unicode="&#xe811;" d="M714 100q0 15-10 25t-25 11-25-11-11-25 11-25 25-11 25 11 10 25z m143 0q0 15-10 25t-26 11-25-11-10-25 10-25 25-11 26 11 10 25z m72 125v-179q0-22-16-37t-38-16h-821q-23 0-38 16t-16 37v179q0 22 16 38t38 16h259l75-76q33-32 76-32t76 32l76 76h259q22 0 38-16t16-38z m-182 318q10-23-8-39l-250-250q-10-11-25-11t-25 11l-250 250q-17 16-8 39 10 21 33 21h143v250q0 15 11 25t25 11h143q14 0 25-11t10-25v-250h143q24 0 33-21z" horiz-adv-x="928.6" />
<glyph glyph-name="tag" unicode="&#xe812;" d="M250 600q0 30-21 51t-50 20-51-20-21-51 21-50 51-21 50 21 21 50z m595-321q0-30-20-51l-274-274q-22-21-51-21-30 0-50 21l-399 399q-21 21-36 57t-15 65v232q0 29 21 50t50 22h233q29 0 65-15t57-36l399-399q20-21 20-50z" horiz-adv-x="857.1" />
<glyph glyph-name="trash-empty" unicode="&#xe813;" d="M286 439v-321q0-8-5-13t-13-5h-36q-8 0-13 5t-5 13v321q0 8 5 13t13 5h36q8 0 13-5t5-13z m143 0v-321q0-8-5-13t-13-5h-36q-8 0-13 5t-5 13v321q0 8 5 13t13 5h36q8 0 13-5t5-13z m142 0v-321q0-8-5-13t-12-5h-36q-8 0-13 5t-5 13v321q0 8 5 13t13 5h36q7 0 12-5t5-13z m72-404v529h-500v-529q0-12 4-22t8-15 6-5h464q2 0 6 5t8 15 4 22z m-375 601h250l-27 65q-4 5-9 6h-177q-6-1-10-6z m518-18v-36q0-8-5-13t-13-5h-54v-529q0-46-26-80t-63-34h-464q-37 0-63 33t-27 79v531h-53q-8 0-13 5t-5 13v36q0 8 5 13t13 5h172l39 93q9 21 31 35t44 15h178q23 0 44-15t30-35l39-93h173q8 0 13-5t5-13z" horiz-adv-x="785.7" />
<glyph glyph-name="cog" unicode="&#xe814;" d="M571 350q0 59-41 101t-101 42-101-42-42-101 42-101 101-42 101 42 41 101z m286 61v-124q0-7-4-13t-11-7l-104-16q-10-30-21-51 19-27 59-77 6-6 6-13t-5-13q-15-21-55-61t-53-39q-7 0-14 5l-77 60q-25-13-51-21-9-76-16-104-4-16-20-16h-124q-8 0-14 5t-6 12l-16 103q-27 9-50 21l-79-60q-6-5-14-5-8 0-14 6-70 64-92 94-4 5-4 13 0 6 5 12 8 12 28 37t30 40q-15 28-23 55l-102 15q-7 1-11 7t-5 13v124q0 7 5 13t10 7l104 16q8 25 22 51-23 32-60 77-6 7-6 14 0 5 5 12 15 20 55 60t53 40q7 0 15-5l77-60q24 13 50 21 9 76 17 104 3 16 20 16h124q7 0 13-5t7-12l15-103q28-9 51-20l79 59q5 5 13 5 7 0 14-5 72-67 92-95 4-5 4-12 0-7-4-13-9-12-29-37t-30-40q15-28 23-54l102-16q7-1 12-7t4-13z" horiz-adv-x="857.1" />
<glyph glyph-name="off-1" unicode="&#xe815;" d="M0 350q0 207 147 354l101-102q-105-103-105-252t104-253 253-104 253 104 104 253-105 252l102 102q146-147 146-354t-146-354-354-146-353 146-147 354z m428-78l0 578 144 0 0-578-144 0z" horiz-adv-x="1000" />
<glyph glyph-name="resize-vertical" unicode="&#xe816;" d="M393 671q0-14-11-25t-25-10h-71v-572h71q15 0 25-10t11-25-11-25l-143-143q-10-11-25-11t-25 11l-143 143q-10 10-10 25t10 25 25 10h72v572h-72q-14 0-25 10t-10 25 10 26l143 142q11 11 25 11t25-11l143-142q11-11 11-26z" horiz-adv-x="428.6" />
<glyph glyph-name="down-open" unicode="&#xe817;" d="M939 399l-414-413q-10-11-25-11t-25 11l-414 413q-11 11-11 26t11 25l93 92q10 11 25 11t25-11l296-296 296 296q11 11 25 11t26-11l92-92q11-11 11-25t-11-26z" horiz-adv-x="1000" />
<glyph glyph-name="left-open" unicode="&#xe818;" d="M654 682l-297-296 297-297q10-10 10-25t-10-25l-93-93q-11-10-25-10t-25 10l-414 415q-11 10-11 25t11 25l414 414q10 11 25 11t25-11l93-93q10-10 10-25t-10-25z" horiz-adv-x="714.3" />
<glyph glyph-name="right-open" unicode="&#xe819;" d="M618 361l-414-415q-11-10-25-10t-25 10l-93 93q-11 11-11 25t11 25l296 297-296 296q-11 11-11 25t11 25l93 93q10 11 25 11t25-11l414-414q10-11 10-25t-10-25z" horiz-adv-x="714.3" />
<glyph glyph-name="up-open" unicode="&#xe81a;" d="M939 107l-92-92q-11-10-26-10t-25 10l-296 297-296-297q-11-10-25-10t-25 10l-93 92q-11 11-11 26t11 25l414 414q11 10 25 10t25-10l414-414q11-11 11-25t-11-26z" horiz-adv-x="1000" />
<glyph glyph-name="align-left" unicode="&#xe81b;" d="M1000 100v-71q0-15-11-25t-25-11h-928q-15 0-25 11t-11 25v71q0 15 11 25t25 11h928q15 0 25-11t11-25z m-214 214v-71q0-15-11-25t-25-11h-714q-15 0-25 11t-11 25v71q0 15 11 25t25 11h714q15 0 25-11t11-25z m143 215v-72q0-14-11-25t-25-11h-857q-15 0-25 11t-11 25v72q0 14 11 25t25 10h857q14 0 25-10t11-25z m-215 214v-72q0-14-10-25t-25-10h-643q-15 0-25 10t-11 25v72q0 14 11 25t25 11h643q14 0 25-11t10-25z" horiz-adv-x="1000" />
<glyph glyph-name="align-center" unicode="&#xe81c;" d="M1000 100v-71q0-15-11-25t-25-11h-928q-15 0-25 11t-11 25v71q0 15 11 25t25 11h928q15 0 25-11t11-25z m-214 214v-71q0-15-11-25t-25-11h-500q-14 0-25 11t-11 25v71q0 15 11 25t25 11h500q15 0 25-11t11-25z m143 215v-72q0-14-11-25t-25-11h-786q-14 0-25 11t-11 25v72q0 14 11 25t25 10h786q14 0 25-10t11-25z m-215 214v-72q0-14-10-25t-25-10h-358q-14 0-25 10t-10 25v72q0 14 10 25t25 11h358q14 0 25-11t10-25z" horiz-adv-x="1000" />
<glyph glyph-name="align-right" unicode="&#xe81d;" d="M1000 100v-71q0-15-11-25t-25-11h-928q-15 0-25 11t-11 25v71q0 15 11 25t25 11h928q15 0 25-11t11-25z m0 214v-71q0-15-11-25t-25-11h-714q-14 0-25 11t-11 25v71q0 15 11 25t25 11h714q15 0 25-11t11-25z m0 215v-72q0-14-11-25t-25-11h-857q-14 0-25 11t-11 25v72q0 14 11 25t25 10h857q15 0 25-10t11-25z m0 214v-72q0-14-11-25t-25-10h-643q-14 0-25 10t-10 25v72q0 14 10 25t25 11h643q15 0 25-11t11-25z" horiz-adv-x="1000" />
<glyph glyph-name="indent-left" unicode="&#xe81e;" d="M214 546v-321q0-7-5-13t-13-5q-7 0-12 5l-161 161q-5 5-5 13t5 13l161 160q5 5 12 5 8 0 13-5t5-13z m786-428v-107q0-7-5-13t-13-5h-964q-7 0-13 5t-5 13v107q0 7 5 12t13 6h964q7 0 13-6t5-12z m0 214v-107q0-7-5-13t-13-5h-607q-7 0-13 5t-5 13v107q0 7 5 13t13 5h607q7 0 13-5t5-13z m0 214v-107q0-7-5-12t-13-6h-607q-7 0-13 6t-5 12v107q0 8 5 13t13 5h607q7 0 13-5t5-13z m0 215v-107q0-8-5-13t-13-5h-964q-7 0-13 5t-5 13v107q0 7 5 12t13 6h964q7 0 13-6t5-12z" horiz-adv-x="1000" />
<glyph glyph-name="indent-right" unicode="&#xe81f;" d="M196 386q0-8-5-13l-160-161q-5-5-13-5-7 0-13 5t-5 13v321q0 8 5 13t13 5q8 0 13-5l160-160q5-5 5-13z m804-268v-107q0-7-5-13t-13-5h-964q-7 0-13 5t-5 13v107q0 7 5 12t13 6h964q7 0 13-6t5-12z m0 214v-107q0-7-5-13t-13-5h-607q-7 0-13 5t-5 13v107q0 7 5 13t13 5h607q7 0 13-5t5-13z m0 214v-107q0-7-5-12t-13-6h-607q-7 0-13 6t-5 12v107q0 8 5 13t13 5h607q7 0 13-5t5-13z m0 215v-107q0-8-5-13t-13-5h-964q-7 0-13 5t-5 13v107q0 7 5 12t13 6h964q7 0 13-6t5-12z" horiz-adv-x="1000" />
<glyph glyph-name="align-justify" unicode="&#xe820;" d="M1000 100v-71q0-15-11-25t-25-11h-928q-15 0-25 11t-11 25v71q0 15 11 25t25 11h928q15 0 25-11t11-25z m0 214v-71q0-15-11-25t-25-11h-928q-15 0-25 11t-11 25v71q0 15 11 25t25 11h928q15 0 25-11t11-25z m0 215v-72q0-14-11-25t-25-11h-928q-15 0-25 11t-11 25v72q0 14 11 25t25 10h928q15 0 25-10t11-25z m0 214v-72q0-14-11-25t-25-10h-928q-15 0-25 10t-11 25v72q0 14 11 25t25 11h928q15 0 25-11t11-25z" horiz-adv-x="1000" />
<glyph glyph-name="check" unicode="&#xe821;" d="M786 331v-177q0-67-47-114t-114-47h-464q-67 0-114 47t-47 114v464q0 66 47 113t114 48h464q35 0 65-14 9-4 10-13 2-10-5-16l-27-28q-6-5-13-5-1 0-5 1-13 3-25 3h-464q-37 0-63-26t-27-63v-464q0-37 27-63t63-27h464q37 0 63 27t26 63v141q0 8 5 13l36 35q6 6 13 6 3 0 7-2 11-4 11-16z m129 273l-455-454q-13-14-31-14t-32 14l-240 240q-14 13-14 31t14 32l61 62q14 13 32 13t32-13l147-147 361 361q13 13 31 13t32-13l62-61q13-14 13-32t-13-32z" horiz-adv-x="928.6" />
<glyph glyph-name="credit-card" unicode="&#xe822;" d="M982 779q37 0 63-27t26-63v-678q0-37-26-63t-63-27h-893q-36 0-63 27t-26 63v678q0 37 26 63t63 27h893z m-893-72q-7 0-12-5t-6-13v-125h929v125q0 8-5 13t-13 5h-893z m893-714q7 0 13 5t5 13v339h-929v-339q0-7 6-13t12-5h893z m-839 71v72h143v-72h-143z m214 0v72h214v-72h-214z" horiz-adv-x="1071.4" />
<glyph glyph-name="briefcase" unicode="&#xe823;" d="M357 707h286v72h-286v-72z m643-357v-268q0-37-26-63t-63-26h-822q-36 0-63 26t-26 63v268h375v-89q0-15 11-25t25-11h178q15 0 25 11t11 25v89h375z m-429 0v-71h-142v71h142z m429 268v-214h-1000v214q0 37 26 63t63 26h197v89q0 23 15 38t38 16h322q22 0 38-16t15-38v-89h197q37 0 63-26t26-63z" horiz-adv-x="1000" />
<glyph glyph-name="off" unicode="&#xe824;" d="M857 350q0-87-34-166t-91-137-137-92-166-34-167 34-136 92-92 137-34 166q0 102 45 191t126 151q24 18 54 14t46-28q18-23 14-53t-28-47q-54-41-84-101t-30-127q0-58 23-111t61-91 91-61 111-23 110 23 92 61 61 91 22 111q0 68-30 127t-84 101q-23 18-28 47t14 53q17 24 47 28t53-14q81-61 126-151t45-191z m-357 429v-358q0-29-21-50t-50-21-51 21-21 50v358q0 29 21 50t51 21 50-21 21-50z" horiz-adv-x="857.1" />
<glyph glyph-name="arrows-cw" unicode="&#xe825;" d="M843 261q0-3 0-4-36-150-150-243t-267-93q-81 0-157 31t-136 88l-72-72q-11-11-25-11t-25 11-11 25v250q0 14 11 25t25 11h250q14 0 25-11t10-25-10-25l-77-77q40-36 90-57t105-20q74 0 139 37t104 99q6 10 30 66 4 13 16 13h107q8 0 13-6t5-12z m14 446v-250q0-14-10-25t-26-11h-250q-14 0-25 11t-10 25 10 25l77 77q-82 77-194 77-75 0-140-37t-104-99q-6-10-29-66-5-13-17-13h-111q-7 0-13 6t-5 12v4q36 150 151 243t268 93q81 0 158-31t137-88l72 72q11 11 25 11t26-11 10-25z" horiz-adv-x="857.1" />
<glyph glyph-name="shuffle" unicode="&#xe826;" d="M372 582q-34-52-77-153-12 25-20 41t-23 35-28 32-36 19-45 8h-125q-8 0-13 5t-5 13v107q0 8 5 13t13 5h125q139 0 229-125z m628-446q0-8-5-13l-179-179q-5-5-12-5-8 0-13 6t-5 12v107q-18 0-48 0t-45-1-41 1-39 3-36 6-35 10-32 16-33 22-31 30-31 39q33 52 76 152 12-25 20-40t23-36 28-31 35-20 46-8h143v107q0 8 5 13t13 5q6 0 13-5l178-178q5-5 5-13z m0 500q0-8-5-13l-179-179q-5-5-12-5-8 0-13 6t-5 12v107h-143q-27 0-49-8t-38-25-29-34-25-44q-18-34-43-95-16-37-28-62t-30-59-36-55-41-47-50-38-60-23-71-10h-125q-8 0-13 5t-5 13v107q0 8 5 13t13 5h125q27 0 48 9t39 25 28 34 26 43q17 35 43 96 16 36 28 62t30 58 36 56 41 46 50 39 59 23 72 9h143v107q0 8 5 13t13 5q6 0 13-5l178-178q5-5 5-13z" horiz-adv-x="1000" />
<glyph glyph-name="globe" unicode="&#xe827;" d="M429 779q116 0 215-58t156-156 57-215-57-215-156-156-215-58-216 58-155 156-58 215 58 215 155 156 216 58z m153-291q-2-1-6-5t-7-6q1 0 2 3t3 6 2 4q3 4 12 8 8 4 29 7 19 5 29-6-1 1 5 7t8 7q2 1 8 3t9 4l1 12q-7-1-10 4t-3 12q0-2-4-5 0 4-2 5t-7-1-5-1q-5 2-8 5t-5 9-2 8q-1 3-5 6t-5 6q-1 1-2 3t-1 4-3 3-3 1-4-3-4-5-2-3q-2 1-4 1t-2-1-3-1-3-2q-1-2-4-2t-5-1q8 3-1 6-5 2-9 2 6 2 5 6t-5 8h3q-1 2-5 5t-10 5-7 3q-5 3-19 5t-18 1q-3-4-3-6t2-8 2-7q1-3-3-7t-3-7q0-4 7-9t6-12q-2-4-9-9t-9-6q-3-5-1-11t6-9q1-1 1-2t-2-3-3-2-4-2l-1-1q-7-3-12 3t-7 15q-4 14-9 17-13 4-16-1-3 7-23 15-14 5-33 2 4 0 0 8-4 9-10 7 1 3 2 10t0 7q2 8 7 13 1 1 4 5t5 7 1 4q19-3 28 6 2 3 6 9t6 10q5 3 8 3t8-3 8-3q8-1 8 6t-4 11q7 0 2 10-2 4-5 5-6 2-15-3-4-2 2-4-1 0-6-6t-9-10-9 3q0 0-3 7t-5 8q-5 0-9-9 1 5-6 9t-14 4q11 7-4 15-4 3-12 3t-11-2q-2-4-3-7t3-4 6-3 6-2 5-2q8-6 5-8-1 0-5-2t-6-2-4-2q-1-3 0-8t-1-8q-3 3-5 10t-4 9q4-5-14-3l-5 0q-3 0-9-1t-12-1-7 5q-3 4 0 11 0 2 2 1-2 2-6 5t-6 5q-25-8-52-23 3 0 6 1 3 1 8 4t5 3q19 7 24 4l3 2q7-9 11-14-4 3-17 1-11-3-12-7 4-6 2-10-2 2-6 6t-8 6-8 3q-9 0-13-1-81-45-131-124 4-4 7-4 2-1 3-5t1-6 6 1q5-4 2-10 1 0 25-15 10-10 11-12 2-6-5-10-1 1-5 5t-5 2q-2-3 0-10t6-7q-4 0-5-9t-2-20 0-13l1-1q-2-6 3-19t12-11q-7-1 11-24 3-4 4-5 2-1 7-4t9-6 5-5q2-3 6-13t8-13q-2-3 5-11t6-13q-1 0-2-1t-1 0q2-4 9-8t8-7q1-2 1-6t2-6 4-1q2 11-13 35-8 13-9 16-2 2-4 8t-2 8q1 0 3 0t5-2 4-3 1-1q-1-4 1-10t7-10 10-11 6-7q4-4 8-11t0-8q5 0 11-5t10-11q3-5 4-15t3-13q1-4 5-8t7-5l9-5t7-3q3-2 10-6t12-7q6-2 9-2t8 1 8 2q8 1 16-8t12-12q20-10 30-6-1 0 1-4t4-9 5-8 3-5q3-3 10-8t10-8q4 2 4 5-1-5 4-11t10-6q8 2 8 18-17-8-27 10 0 0-2 3t-2 5-1 4 0 5 2 1q5 0 6 2t-1 7-2 8q-1 4-6 11t-7 8q-3-5-9-4t-9 5q0-1-1-3t-1-4q-7 0-8 0 1 2 1 10t2 13q1 2 3 6t5 9 2 7-3 5-9 1q-11 0-15-11-1-2-2-6t-2-6-5-4q-4-2-14-1t-13 3q-8 4-13 16t-5 20q0 6 1 15t2 14-3 14q2 1 5 5t5 6q2 1 3 1t3 0 2 1 1 3q0 1-2 2-1 1-2 1 4-1 16 1t15-1q9-6 12 1 0 1-1 6t0 7q3-15 16-5 2-1 9-3t9-2q2-1 4-3t3-3 3 0 5 4q5-8 7-13 6-23 10-25 4-2 6-1t3 5 0 8-1 7l-1 5v10l0 4q-8 2-10 7t0 10 9 10q0 1 4 2t9 4 7 4q12 11 8 20 4 0 6 5 0 0-2 2t-5 2-2 2q5 2 1 8 3 2 4 7t4 5q5-6 12-1 5 5 1 9 2 4 11 6t10 5q4-1 5 1t0 7 2 7q2 2 9 5t7 2l9 7q2 2 0 2 10-1 18 6 5 6-4 11 2 4-1 5t-9 4q2 0 7 0t5 1q9 5-3 9-10 2-24-7z m-91-490q115 21 195 106-1 2-7 2t-7 2q-10 4-13 5 1 4-1 7t-5 5-7 5-6 4q-1 1-4 3t-4 3-4 2-5 2-5-1l-2-1q-2 0-3-1t-3-2-2-1 0-2q-12 10-20 13-3 0-6 3t-6 4-6 0-6-3q-3-3-4-9t-1-7q-4 3 0 10t1 10q-1 3-6 2t-6-2-7-5-5-3-4-3-5-5q-2-2-4-6t-2-6q-1 2-7 3t-5 3q1-5 2-19t3-22q4-17-7-26-15-14-16-23-2-12 7-14 0-4-5-12t-4-12q0-3 2-9z" horiz-adv-x="857.1" />
<glyph glyph-name="cloud" unicode="&#xe828;" d="M1071 207q0-89-62-151t-152-63h-607q-103 0-177 73t-73 177q0 74 40 135t104 91q-1 16-1 24 0 118 84 202t202 84q88 0 159-49t105-129q39 35 93 35 59 0 101-42t42-101q0-42-23-77 72-17 119-75t46-134z" horiz-adv-x="1071.4" />
<glyph glyph-name="zoom-in" unicode="&#xe829;" d="M571 404v-36q0-7-5-13t-12-5h-125v-125q0-7-6-13t-12-5h-36q-7 0-13 5t-5 13v125h-125q-7 0-12 5t-6 13v36q0 7 6 12t12 5h125v125q0 8 5 13t13 5h36q7 0 12-5t6-13v-125h125q7 0 12-5t5-12z m72-18q0 103-73 176t-177 74-177-74-73-176 73-177 177-73 177 73 73 177z m286-465q0-29-21-50t-51-21q-30 0-50 21l-191 191q-100-69-223-69-80 0-153 31t-125 84-84 125-31 153 31 152 84 126 125 84 153 31 153-31 125-84 84-126 31-152q0-123-69-223l191-191q21-21 21-51z" horiz-adv-x="928.6" />
<glyph glyph-name="zoom-out" unicode="&#xe82a;" d="M571 404v-36q0-7-5-13t-12-5h-322q-7 0-12 5t-6 13v36q0 7 6 12t12 5h322q7 0 12-5t5-12z m72-18q0 103-73 176t-177 74-177-74-73-176 73-177 177-73 177 73 73 177z m286-465q0-29-21-50t-51-21q-30 0-50 21l-191 191q-100-69-223-69-80 0-153 31t-125 84-84 125-31 153 31 152 84 126 125 84 153 31 153-31 125-84 84-126 31-152q0-123-69-223l191-191q21-21 21-51z" horiz-adv-x="928.6" />
<glyph glyph-name="attach-1" unicode="&#xe82b;" d="M244-140q-102 0-170 72-72 70-74 166t84 190l496 496q80 80 174 54 44-12 79-47t47-79q26-96-54-176l-474-474q-40-40-88-46-48-4-80 28-30 24-27 74t47 92l332 334q24 26 50 0t0-50l-332-332q-44-44-20-70 12-8 24-6 24 4 46 26l474 474q50 50 34 108-16 60-76 76-54 14-108-36l-494-494q-66-76-64-143t52-117q50-48 117-50t141 62l496 494q24 24 50 0 26-22 0-48l-496-496q-82-82-186-82z" horiz-adv-x="939" />
<glyph glyph-name="check-1" unicode="&#xe82c;" d="M249 0q-34 0-56 28l-180 236q-16 24-12 52t26 46 51 14 47-28l118-154 296 474q16 24 43 30t53-8q24-16 30-43t-8-53l-350-560q-20-32-56-32z" horiz-adv-x="667" />
<glyph glyph-name="cancel-1" unicode="&#xe82d;" d="M452 194q18-18 18-43t-18-43q-18-16-43-16t-43 16l-132 152-132-152q-18-16-43-16t-43 16q-16 18-16 43t16 43l138 156-138 158q-16 18-16 43t16 43q18 16 43 16t43-16l132-152 132 152q18 16 43 16t43-16q18-18 18-43t-18-43l-138-158z" horiz-adv-x="470" />
<glyph glyph-name="comment" unicode="&#xe82e;" d="M781 662l-625 0q-21 0-37-15t-15-36l0-365q0-21 15-37t37-16l157 0 0-8 8 8 460 0q22 0 37 16t16 37l0 365q0 21-16 36t-37 15z m0 105q65 0 111-46t46-110l0-365q0-65-46-111t-111-45l-416 0-156-157 0 157-53 0q-65 0-110 45t-46 111l0 365q0 65 46 110t110 46l625 0z" horiz-adv-x="938" />
<glyph glyph-name="layers" unicode="&#xe82f;" d="M18 183l446-112 447 112 0-112-447-112-446 112 0 112z m0 223l446-112 447 112 0-112-447-111-446 111 0 112z m0 223l446 112 447-112 0-111-447-112-446 112 0 111z" horiz-adv-x="928" />
<glyph glyph-name="signal" unicode="&#xe830;" d="M688-97l0 894 111 0 0-894-111 0z m-224 0l0 671 112 0 0-671-112 0z m-223 0l0 448 112 0 0-448-112 0z m-223 0l0 224 112 0 0-224-112 0z" horiz-adv-x="817" />
<glyph glyph-name="equalizer" unicode="&#xe831;" d="M576 239l0-112-55 0 0-167q0-23-17-40t-39-17-39 17-17 40l0 167-56 0 0 112 56 0 0 503q0 24 17 39t38 16q24 0 41-16t16-39l0-503 55 0z m335 335l0-112-55 0 0-502q0-23-16-40t-41-17q-23 0-39 17t-16 40l0 502-56 0 0 112 56 0 0 168q0 24 16 39t39 16 41-16 16-39l0-168 55 0z m-670-112l0-111-55 0 0-391q0-23-16-40t-40-17q-23 0-39 17t-17 40l0 391-56 0 0 111 56 0 0 280q0 24 16 39t40 16 40-16 16-39l0-280 55 0z" horiz-adv-x="928" />
<glyph glyph-name="macstore" unicode="&#xe832;" d="M0 237l0 151q0 10 7 18t18 7l265 0-115-201-150 0q-11 0-18 7t-7 18z m122-244l66-38z m10 44q-3 10 2 19l304 528q5 9 15 12t19-3l65-37q10-5 13-15t-3-20l-303-528q-5-9-15-11t-20 2l-65 38q-9 4-12 15z m308 175l115 201 67 0 94-201-276 0z m78 625q1 9 6 12 10 5 36-31t71-116 62-105q28-44 76-130t91-169 43-84q11-19-2-36t-31-24q-18-8-24-9t-30 7q-30 15-190 393-5 11-13 31t-17 38-19 42-18 44-17 42-14 39-8 32-2 24z m328-424l235 0q10 0 18-7t7-18l0-151q0-10-7-17t-18-8l-133 0q-4 16-8 23l-24 46q-64 121-70 132z m13-316q3 10 13 15l37 19q10 5 21 2t16-14l31-60q12-24-10-39l-27-16q-10-5-21-2t-17 12l-40 62q-6 10-3 21z m77-145q0 16 4 21t12 14l24 9q61 12 72-70 3-32-1-76-4 12-44 30t-55 38q-13 18-12 34z" horiz-adv-x="1106" />
<glyph glyph-name="emo-happy" unicode="&#xe833;" d="M261 800c-60 0-109-65-109-144 0-80 49-145 109-145s110 65 110 145c0 79-49 144-110 144z m477 0c-61 0-110-65-110-144 0-80 49-145 110-145 60 0 110 65 110 145 0 79-50 144-110 144z m208-599c-13 0-27-5-37-16-4-4-8-8-12-12-111-109-253-164-396-165-142-2-285 50-396 155l-3 3-12 12c-21 21-54 20-75-1-20-21-20-55 1-76 3-4 8-8 14-14l3-3c132-124 301-186 469-184 169 1 337 67 468 195 5 5 9 10 14 14 20 22 20 56-1 77-10 10-23 15-37 15z" horiz-adv-x="999" />
<glyph glyph-name="emo-wink" unicode="&#xe834;" d="M261 800c-60 0-109-65-109-144 0-80 49-145 109-145s110 65 110 145c0 79-49 144-110 144z m343-98c-29 0-54-24-54-54 0-30 25-54 54-54l267 0c30 0 54 24 54 54 0 30-24 54-54 54l-267 0z m342-501c-13 0-27-5-37-16-4-4-8-8-12-12-111-109-253-164-396-165-142-2-285 50-396 155l-3 3-12 12c-21 21-54 20-75-1-20-21-20-55 1-76 3-4 8-8 14-14l3-3c132-124 301-186 469-184 169 1 337 67 468 195 5 5 9 10 14 14 20 22 20 56-1 77-10 10-23 15-37 15z" horiz-adv-x="999" />
<glyph glyph-name="emo-wink2" unicode="&#xe835;" d="M664 800c-61 0-110-65-110-144 0-80 49-145 110-145 60 0 110 65 110 145 0 79-50 144-110 144z m-343-98l-267 0c-30 0-54-24-54-54 0-30 24-54 54-54l267 0c30 0 54 24 54 54 0 30-24 54-54 54z m-262-361c-6 0-13-1-19-3-27-10-41-41-31-68 46-127 136-228 249-289 22-12 45-22 69-31 58-21 120-33 184-33 57 0 113 9 166 27 10 3 20 7 30 11 11 4 22 8 31 12l0 1 0 0 0 0c26 12 38 44 25 71-13 26-44 37-70 25l0 0c-9-4-17-8-24-11-8-3-17-6-25-8-43-14-88-22-133-22-51 0-101 10-148 27-19 7-37 15-55 25-90 48-163 130-200 231-8 21-28 35-49 35z" horiz-adv-x="774" />
<glyph glyph-name="emo-unhappy" unicode="&#xe836;" d="M261 800c-60 0-109-65-109-144 0-80 49-145 109-145s110 65 110 145c0 79-49 144-110 144z m477 0c-61 0-110-65-110-144 0-80 49-145 110-145 60 0 110 65 110 145 0 79-50 144-110 144z m-244-599c-165 0-331-62-461-184l-3-3c-6-5-11-10-14-14-21-21-21-55-1-76 21-21 54-21 75-1l12 12 3 3c111 105 254 157 396 155 143-1 285-56 396-165 4-4 8-8 12-12 20-21 54-21 74-1 21 21 21 55 1 77-5 5-9 10-14 14-131 129-299 194-468 195-3 0-6 0-8 0z" horiz-adv-x="999" />
<glyph glyph-name="emo-sleep" unicode="&#xe837;" d="M53 693c-11 0-21-4-30-10-24-17-30-50-13-75 45-63 119-102 196-102 71 0 138 32 183 85 20 22 18 55-4 75-22 20-56 18-76-4l0 0-1-1 0 0 0-1-1-1c-3-3-7-7-10-10l-1-1-1-1c-3-3-7-6-11-9l0 0c-59-42-143-29-186 32-11 15-28 23-45 23z m485 0c-11 0-21-4-30-10-24-17-30-50-13-75 45-63 119-102 197-102 70 0 137 32 183 85 19 22 17 55-5 75-22 20-56 18-75-4l-1 0-1-1 0 0 0-1-1-1c-3-3-7-7-10-10l-1-1 0-1c-4-3-8-6-12-9l0 0c-59-42-143-29-186 32-11 15-28 23-45 23z m-435-579c-29 0-53-24-53-53 0-30 24-54 53-54l682 0c30 0 54 24 54 54s-24 53-54 53l-682 0z" horiz-adv-x="888" />
<glyph glyph-name="emo-coffee" unicode="&#xe838;" d="M1234 850c-17 0-34-8-44-23-54-80-24-144 4-204 13-29 26-56 5-72-23-17-28-51-10-74 17-23 51-28 74-10 89 67 60 131 27 201-15 33-32 70-12 99 16 25 10 57-14 74-9 6-20 9-30 9z m-1021-121c-81 0-157-39-203-105-18-25-12-59 14-77 24-17 59-11 76 14 45 63 132 76 193 32l0 0c3-2 7-5 11-9l1 0 1-2c3-3 7-7 10-10l1-1 0-1 0 0 1-1 1 0c20-23 55-25 78-4 22 20 24 55 4 77-46 55-116 87-188 87z m499 0c-80 0-156-39-202-105-18-25-12-59 13-77 25-17 59-11 77 14 44 63 131 76 192 32l0 0c4-2 8-5 12-9l0 0 1-2c4-3 7-7 11-10l1-1 0-1 0 0 1-1 0 0c20-23 55-25 78-4 23 20 25 55 4 77-46 55-116 87-188 87z m206-346c-24 0-44-19-44-43l1-4-1-275 0 0 0 0 0 0c0-58 24-111 62-149l0 0 0 0 0 0c38-38 91-62 148-62l0 0 226 0c1 0 3 0 5 0 13 1 27 2 39 5 15 4 29 8 42 14 55 26 97 74 114 133l31 0 0 0c37 0 70 15 94 39 23 23 38 56 38 92l0 0 0 0 0 119 0 0c0 36-15 69-39 93l0 0c-23 23-56 38-92 38l0 0 0 0-624 0z m604-100c11 0 21-5 28-12l1 0 0 0c7-8 12-18 12-29l0 0 0-110 0 0c0-11-5-21-12-29-8-7-18-12-29-12l0 0-62 0 0 0c-21 0-39-16-40-36-4-42-31-77-67-94-7-3-15-6-22-8-7-1-14-2-21-2l-3 0-209 0 0-1c-30 1-59 13-79 34l-1 0c-21 21-34 50-34 81l0 0 0 0 0 0 1 218 537 0 0 0z m-82-55l0-96 32 0c22 0 39 17 39 38l0 20c0 21-17 38-39 38l-32 0z m-1131-12c-30 0-55-25-55-55s25-55 55-55l297 0c30 0 54 25 54 55s-24 55-54 55l-297 0z" horiz-adv-x="1673" />
<glyph glyph-name="emo-sunglasses" unicode="&#xe839;" d="M495 745c-154 0-309 0-463 0-18 0-32-15-32-33 3-152 129-306 278-309 84-1 164 36 218 95 55-59 135-96 219-95 149 3 272 157 275 309 0 18-14 33-32 33-155 0-309 0-463 0z m319-510c-18 0-35-9-45-25l0 0c0-1-1-2-1-3-7-12-15-23-24-34-10-12-19-23-29-32-54-51-126-80-203-80l0 0 0 0c-21 0-43 2-64 7-3 1-6 1-10 2-17 5-34 11-51 19-26 12-58 1-70-26-13-27-1-58 25-71 22-10 45-18 69-24 5-1 9-2 14-4 29-6 58-9 87-9l0 0 0 0c104 0 201 39 275 108 15 14 28 29 40 44 11 14 22 30 32 47 0 0 1 1 1 1 15 25 7 58-18 73-9 5-18 8-28 7z" horiz-adv-x="990" />
<glyph glyph-name="emo-angry" unicode="&#xe83a;" d="M53 738c-20 0-39-11-48-30-13-26-1-58 25-71l152-80c-3-46 8-93 34-128 21-29 52-49 88-49 90 0 126 107 121 179-120 53-232 115-349 174-7 4-15 5-23 5z m894 0c-8 0-16-1-23-5-117-59-229-121-349-174-5-72 31-179 121-179 36 0 67 20 88 49 25 35 37 82 34 128l152 80c26 13 37 45 25 71-10 19-29 30-48 30z m-453-537c-165 0-330-62-461-184l-2-3c-6-5-11-10-15-14-21-21-21-55-1-76 21-21 54-21 75-1l12 12 3 3c112 105 254 157 396 155 143-1 286-56 396-165 4-4 8-8 12-12 21-21 54-21 75-1 21 21 21 55 0 77-4 5-9 10-14 14-130 129-299 194-468 195-3 0-5 0-8 0z" horiz-adv-x="1000" />
<glyph glyph-name="emo-squint" unicode="&#xe83b;" d="M128 607c-30 0-54-24-54-54 0-30 24-54 54-54l267 0c30 0 54 24 54 54 0 30-24 54-54 54l-267 0z m476 0c-29 0-54-24-54-54 0-30 25-54 54-54l267 0c30 0 54 24 54 54 0 30-24 54-54 54l-267 0z m342-406c-13 0-27-5-37-16-4-4-8-8-12-12-111-109-253-164-396-165-142-2-285 50-396 155l-3 3-12 12c-21 21-54 20-75-1-20-21-20-55 1-76 3-4 8-8 14-14l3-3c132-124 301-186 469-184 169 1 337 67 468 195 5 5 9 10 14 14 20 22 20 56-1 77-10 10-23 15-37 15z" horiz-adv-x="999" />
<glyph glyph-name="emo-laugh" unicode="&#xe83c;" d="M206 742c-77 0-151-39-196-103-17-24-11-57 13-74 24-17 58-12 75 13 43 61 127 74 186 31l0 0c4-2 8-5 11-9l1 0 1-1c3-3 7-7 10-11l1-1 0 0 0 0 1-1 0 0c20-22 54-24 76-4 22 19 24 53 4 75-45 53-112 85-183 85z m486 0c-78 0-152-39-197-103-17-24-11-57 13-74 24-17 58-12 75 13 43 61 127 74 186 31l0 0c4-2 8-5 12-9l0 0 1-1c4-3 7-7 10-11l1-1 0 0 0 0 1-1 1 0c19-22 53-24 75-4 22 19 24 53 5 75-46 53-113 85-183 85z m148-421l-765 0c-29 0-52-24-52-54 4-200 238-351 422-354 187-3 443 156 448 355 0 29-24 53-53 53z m-700-106l634 0c-61-121-190-201-330-197-130 4-247 83-304 197z" horiz-adv-x="893" />
<glyph glyph-name="camera" unicode="&#xe83d;" d="M536 475q66 0 113-47t47-114-47-113-113-47-114 47-47 113 47 114 114 47z m393 232q59 0 101-42t41-101v-500q0-59-41-101t-101-42h-786q-59 0-101 42t-42 101v500q0 59 42 101t101 42h125l28 76q11 27 39 47t58 20h286q29 0 57-20t39-47l29-76h125z m-393-643q103 0 176 74t74 176-74 177-176 73-177-73-73-177 73-176 177-74z" horiz-adv-x="1071.4" />
<glyph glyph-name="emo-displeased" unicode="&#xe83e;" d="M171 800c-61 0-110-65-110-144 0-80 49-145 110-145s109 65 109 145c0 79-49 144-109 144z m476 0c-61 0-110-65-110-144 0-80 49-145 110-145 61 0 110 65 110 145 0 79-49 144-110 144z m-594-447c-18 0-36-10-46-27-15-26-6-59 20-74l709-379c26-15 59-6 74 20 15 26 6 59-20 74l-709 379c-9 5-18 7-28 7z" horiz-adv-x="817" />
<glyph glyph-name="emo-surprised" unicode="&#xe83f;" d="M110 849c-61 0-110-65-110-144 0-80 49-145 110-145s109 65 109 145c0 79-49 144-109 144z m476 0c-60 0-109-65-109-144 0-80 49-145 109-145 61 0 110 65 110 145 0 79-49 144-110 144z m-255-432l0 0c-56 0-107-23-143-59-37-37-60-88-60-144l0 0 0-162 0 0c0-56 23-106 59-143 37-37 88-60 144-60l0 0 34 0 0 0c56 0 107 23 143 60 37 36 60 87 60 143l0 0 0 162 0 0c0 56-23 107-59 143-37 37-88 60-144 60l0 0-34 0z m0-107l0 0 34 0 0 0c26 0 50-11 67-28 18-18 29-42 29-68l0 0 0-162 0 0c0-26-11-50-28-67-18-18-42-29-68-29l0 1-34 0 0-1c-26 0-50 11-68 29-17 17-28 41-28 67l0 0 0 162 0 0c0 26 11 50 28 67 18 18 42 29 68 29z" horiz-adv-x="696" />
<glyph glyph-name="th" unicode="&#xe840;" d="M286 154v-108q0-22-16-37t-38-16h-178q-23 0-38 16t-16 37v108q0 22 16 38t38 15h178q23 0 38-15t16-38z m0 285v-107q0-22-16-38t-38-15h-178q-23 0-38 15t-16 38v107q0 23 16 38t38 16h178q23 0 38-16t16-38z m357-285v-108q0-22-16-37t-38-16h-178q-23 0-38 16t-16 37v108q0 22 16 38t38 15h178q23 0 38-15t16-38z m-357 571v-107q0-22-16-38t-38-16h-178q-23 0-38 16t-16 38v107q0 22 16 38t38 16h178q23 0 38-16t16-38z m357-286v-107q0-22-16-38t-38-15h-178q-23 0-38 15t-16 38v107q0 23 16 38t38 16h178q23 0 38-16t16-38z m357-285v-108q0-22-16-37t-38-16h-178q-22 0-38 16t-16 37v108q0 22 16 38t38 15h178q23 0 38-15t16-38z m-357 571v-107q0-22-16-38t-38-16h-178q-23 0-38 16t-16 38v107q0 22 16 38t38 16h178q23 0 38-16t16-38z m357-286v-107q0-22-16-38t-38-15h-178q-22 0-38 15t-16 38v107q0 23 16 38t38 16h178q23 0 38-16t16-38z m0 286v-107q0-22-16-38t-38-16h-178q-22 0-38 16t-16 38v107q0 22 16 38t38 16h178q23 0 38-16t16-38z" horiz-adv-x="1000" />
<glyph glyph-name="asterisk" unicode="&#xe841;" d="M827 264q26-14 33-43t-7-55l-35-61q-15-26-44-33t-54 7l-149 85v-171q0-29-21-50t-50-22h-71q-29 0-51 22t-21 50v171l-148-85q-26-15-55-7t-43 33l-36 61q-14 26-7 55t34 43l148 86-148 86q-26 14-34 43t7 55l36 61q15 26 43 33t55-7l148-85v171q0 29 21 50t51 22h71q29 0 50-22t21-50v-171l149 85q26 15 54 7t44-33l35-61q15-26 7-55t-33-43l-148-86z" horiz-adv-x="928.6" />
<glyph glyph-name="gift" unicode="&#xe842;" d="M518 93v400h-179v-400q0-14 10-21t26-8h107q16 0 26 8t10 21z m-255 471h109l-70 90q-15 17-39 17-22 0-38-15t-15-38 15-38 38-16z m384 54q0 22-15 38t-38 15q-24 0-39-17l-69-90h108q22 0 38 16t15 38z m210-143v-179q0-7-5-12t-13-5h-53v-233q0-22-16-37t-38-16h-607q-22 0-38 16t-16 37v233h-53q-8 0-13 5t-5 12v179q0 8 5 13t13 5h245q-51 0-88 36t-37 89 37 88 88 37q60 0 94-43l72-92 71 92q34 43 94 43 52 0 88-37t37-88-37-89-88-36h245q8 0 13-5t5-13z" horiz-adv-x="857.1" />
<glyph glyph-name="basket" unicode="&#xe843;" d="M950 715q23 0 39-18t14-42l-53-365q-2-18-17-31t-34-12l-590 0 9-53 528 0q22 0 37-16t16-36-16-37-37-15l-572 0q-20 0-35 13t-16 30l-98 582-72 0q-22 0-37 15t-16 37 16 36 37 16l116 0q19 0 34-12t17-32l11-60 719 0z m-60-105l-200 0 0-103 185 0z m-252 0l-157 0 0-103 157 0 0 103z m0-156l-157 0 0-104 157 0 0 104z m-208 156l-182 0 18-105q3 2 8 2l156 0 0 103z m-156-156l17-104 139 0 0 104-156 0z m416-104l164 0 14 104-178 0 0-104z m-416-390q0 78 77 78 79 0 79-78 0-79-79-79-77 0-77 79z m469 0q0 78 77 78 79 0 79-78 0-79-79-79-77 0-77 79z" horiz-adv-x="1003" />
<glyph glyph-name="Beauty-1" unicode="&#xe844;" d="M419 822c-39 0-71-32-71-72 0-40 32-72 71-72 39 0 74 32 74 72 0 40-35 72-74 72z m-48-222c-40-119-101-151-101-151s-52 145-109 231c-23-52-47-86-96-100-1-44 51-208 55-290l601 0c2 79 55 256 55 288-38 16-85 51-96 102-63-86-109-231-109-231s-61 32-101 151c-27-13-77-13-99 0z m-297 222c-40 0-74-32-74-72 0-40 34-72 74-72 39 0 70 32 70 72 0 40-31 72-70 72z m47-603l0-119 600 0c0 43 0 81 0 119z m644 603c-40 0-72-32-72-72 0-40 32-72 72-72 40 0 72 32 72 72 0 40-32 72-72 72z" horiz-adv-x="837" />
<glyph glyph-name="rss-1" unicode="&#xe845;" d="M784-97q0 209-103 385t-279 279-384 103l0 127q181 0 347-71t285-190 190-285 71-348l-127 0z m-256 0q0 212-150 361t-360 150l0 129q173 0 320-86t233-233 85-321l-128 0z m-254 0q0 107-75 182t-181 75l0 127q158 0 271-112t112-272l-127 0z m-129 0l-127 0 0 128q53 0 90-38t37-90z" horiz-adv-x="928" />
<glyph glyph-name="shop" unicode="&#xe846;" d="M300 775c-50 0-94-50-100-100l-17-150-83 0c-25 0-50-25-50-50l-50-500c0-25 25-50 50-50l650 0c25 0 50 25 50 50l-50 500c0 25-25 50-50 50l-83 0-17 150c-6 50-50 100-100 100z m0-50l150 0c25 0 47-25 50-50l17-150-284 0 17 150c3 25 25 50 50 50z" horiz-adv-x="750" />
<glyph glyph-name="shop-1" unicode="&#xe847;" d="M0 413l0 31q0 31 20 56l93 125q4 6 12 14l0 148q0 26 19 44t44 19l624 0q26 0 44-19t19-44l0-148q8-8 12-14l93-125q20-25 20-56l0-31q0-40-27-67t-67-27l0-407q0-25-18-43t-44-19l-688 0q-25 0-44 19t-18 43l0 407q-39 0-67 27t-27 67z m63 0q0-14 8-23t23-9l58 0 125 219-89 0q-16 0-26-12l-94-125q-5-9-5-19l0-31z m93-501l203 0 0 313q0 14 9 22t23 9l234 0q14 0 22-9t9-22l0-313 188 0 0 407-688 0 0-407z m32 469l130 0 63 219-68 0z m0 281l624 0 0 125-624 0 0-125z m164-281l132 0 0 219-70 0z m39-469l234 0 0 313-234 0 0-313z m125 469l132 0-62 219-70 0 0-219z m103 219l63-219 130 0-124 219-69 0z m104 0l125-219 58 0q14 0 23 9t8 23l0 31q0 10-5 19l-94 125q-10 12-26 12l-89 0z" horiz-adv-x="1000" />
<glyph glyph-name="basket-1" unicode="&#xe848;" d="M357-7q0-29-21-50t-50-22-50 22-22 50 22 50 50 21 50-21 21-50z m500 0q0-29-21-50t-50-22-50 22-22 50 22 50 50 21 50-21 21-50z m72 607v-286q0-13-10-23t-22-12l-583-68q7-34 7-40 0-8-13-35h513q15 0 26-11t10-25-10-25-26-11h-571q-14 0-25 11t-11 25q0 6 5 18t9 20 12 22 8 17l-98 459h-114q-15 0-25 10t-11 25 11 26 25 10h143q9 0 16-3t10-9 8-14 4-14 3-17 3-14h670q14 0 25-11t11-25z" horiz-adv-x="928.6" />
<glyph glyph-name="plus" unicode="&#xe849;" d="M786 439v-107q0-22-16-38t-38-15h-232v-233q0-22-16-37t-38-16h-107q-22 0-38 16t-15 37v233h-232q-23 0-38 15t-16 38v107q0 23 16 38t38 16h232v232q0 22 15 38t38 16h107q23 0 38-16t16-38v-232h232q23 0 38-16t16-38z" horiz-adv-x="785.7" />
<glyph glyph-name="minus" unicode="&#xe84a;" d="M786 439v-107q0-22-16-38t-38-15h-678q-23 0-38 15t-16 38v107q0 23 16 38t38 16h678q23 0 38-16t16-38z" horiz-adv-x="785.7" />
<glyph glyph-name="Real-Estate" unicode="&#xe84b;" d="M786 296v-267q0-15-11-25t-25-11h-214v214h-143v-214h-214q-15 0-25 11t-11 25v267q0 1 0 2t0 2l321 264 321-264q1-1 1-4z m124 39l-34-41q-5-5-12-6h-2q-7 0-12 3l-386 322-386-322q-7-4-13-3-7 1-12 6l-35 41q-4 6-3 13t6 12l401 334q18 15 42 15t43-15l136-113v108q0 8 5 13t13 5h107q8 0 13-5t5-13v-227l122-102q6-4 6-12t-4-13z" horiz-adv-x="928.6" />
<glyph glyph-name="retweet" unicode="&#xe84c;" d="M714 11q0-7-5-13t-13-5h-535q-5 0-8 1t-5 4-3 4-2 7 0 6v335h-107q-15 0-25 11t-11 25q0 13 8 23l179 214q11 12 27 12t28-12l178-214q9-10 9-23 0-15-11-25t-25-11h-107v-214h321q9 0 14-6l89-108q4-5 4-11z m357 232q0-13-8-23l-178-214q-12-13-28-13t-27 13l-179 214q-8 10-8 23 0 14 11 25t25 11h107v214h-322q-9 0-14 7l-89 107q-4 5-4 11 0 7 5 12t13 6h536q4 0 7-1t5-4 3-5 2-6 1-7v-334h107q14 0 25-11t10-25z" horiz-adv-x="1071.4" />
<glyph glyph-name="edit" unicode="&#xe84d;" d="M496 189l64 65-85 85-64-65v-31h53v-54h32z m245 402q-9 9-18 0l-196-196q-9-9 0-18t18 0l196 196q9 9 0 18z m45-331v-106q0-67-47-114t-114-47h-464q-67 0-114 47t-47 114v464q0 66 47 113t114 48h464q35 0 65-14 9-4 10-13 2-10-5-16l-27-28q-8-8-18-4-13 3-25 3h-464q-37 0-63-26t-27-63v-464q0-37 27-63t63-27h464q37 0 63 27t26 63v70q0 7 5 12l36 36q8 8 20 4t11-16z m-54 411l161-160-375-375h-161v160z m248-73l-51-52-161 161 51 52q16 15 38 15t38-15l85-85q16-16 16-38t-16-38z" horiz-adv-x="1000" />
<glyph glyph-name="tags" unicode="&#xe84e;" d="M250 600q0 30-21 51t-50 20-51-20-21-51 21-50 51-21 50 21 21 50z m595-321q0-30-20-51l-274-274q-22-21-51-21-30 0-50 21l-399 399q-21 21-36 57t-15 65v232q0 29 21 50t50 22h233q29 0 65-15t57-36l399-399q20-21 20-50z m215 0q0-30-21-51l-274-274q-22-21-51-21-20 0-33 8t-29 25l262 262q21 21 21 51 0 29-21 50l-399 399q-21 21-57 36t-65 15h125q29 0 65-15t57-36l399-399q21-21 21-50z" horiz-adv-x="1071.4" />
<glyph glyph-name="map-1" unicode="&#xe84f;" d="M984 600q16-10 16-30l0-584q0-20-16-30-8-6-16-6t-18 6l-216 136-216-136q-18-10-34 0l-218 136-216-136q-16-10-34 0-16 10-16 30l0 584q0 20 16 30l234 146q18 10 34 0l216-136 218 136q16 10 32 0z m-750-450l0 506-168-104 0-506z m234-104l0 506-168 104 0-506z m234 104l0 506-170-104 0-506z m232-104l0 506-168 104 0-506z" horiz-adv-x="1000" />
<glyph glyph-name="doc-landscape" unicode="&#xe850;" d="M0 600q0 42 30 71t70 29l800 0q42 0 71-29t29-71l0-500q0-40-29-70t-71-30l-800 0q-40 0-70 30t-30 70l0 500z m900 0l-800 0 0-500 800 0 0 500z" horiz-adv-x="1000" />
<glyph glyph-name="logout" unicode="&#xe851;" d="M357 46q0-2 1-11t0-14-2-14-5-11-12-3h-178q-67 0-114 47t-47 114v392q0 67 47 114t114 47h178q8 0 13-5t5-13q0-2 1-11t0-15-2-13-5-11-12-3h-178q-37 0-63-26t-27-64v-392q0-37 27-63t63-27h174t6 0 7-2 4-3 4-5 1-8z m518 304q0-14-11-25l-303-304q-11-10-25-10t-25 10-11 25v161h-250q-14 0-25 11t-11 25v214q0 15 11 25t25 11h250v161q0 14 11 25t25 10 25-10l303-304q11-10 11-25z" horiz-adv-x="928.6" />
<glyph glyph-name="login" unicode="&#xe852;" d="M661 350q0-14-11-25l-303-304q-11-10-26-10t-25 10-10 25v161h-250q-15 0-25 11t-11 25v214q0 15 11 25t25 11h250v161q0 14 10 25t25 10 26-10l303-304q11-10 11-25z m196 196v-392q0-67-47-114t-114-47h-178q-7 0-13 5t-5 13q0 2-1 11t0 15 2 13 5 11 12 3h178q37 0 64 27t26 63v392q0 37-26 64t-64 26h-174t-6 0-6 2-5 3-4 5-1 8q0 2-1 11t0 15 2 13 5 11 12 3h178q67 0 114-47t47-114z" horiz-adv-x="857.1" />
<glyph glyph-name="logout-1" unicode="&#xe853;" d="M912 614l276-266-276-264v177h-413v176h413v177z m-166-512l106-107q-156-146-338-146-217 0-365 143t-149 359q0 135 68 250t184 182 250 66q184 0 349-148l-105-106q-114 104-243 104-149 0-251-104t-103-254q0-140 106-241t247-101q131 0 244 103z" horiz-adv-x="1188" />
<glyph glyph-name="back-in-time" unicode="&#xe854;" d="M532 760q170 0 289-120t119-290-119-290-289-120q-138 0-252 88l70 76q82-60 182-60 126 0 216 90t90 216q0 128-90 218t-216 90q-124 0-213-86t-93-210l142 0-184-206-184 206 124 0q4 166 123 282t285 116z m-36-190l70 0 0-204 130-130-50-50-150 150 0 234z" horiz-adv-x="940" />
<glyph glyph-name="chat-alt" unicode="&#xe855;" d="M1094 688q65 0 110-45t46-111l0-364q0-65-46-110t-110-46l-53 0 0-156-156 156-416 0q-65 0-111 46t-45 110l-157-156 0 156q-65 0-110 46t-46 111l0 363q0 65 46 111t110 46l625 0q65 0 111-46t46-111l156 0z m-938-416l209 0 0 234q0 54 38 92t92 39l339 0 0 51q0 22-16 37t-37 16l-625 0q-21 0-37-16t-15-37l0-363q0-22 15-37t37-16z m990-104l0 364q0 21-15 37t-37 16l-599 0q-32 0-56-24t-23-55l0-338q0-21 16-37t37-15l625 0q21 0 37 15t15 37z" horiz-adv-x="1250" />
<glyph glyph-name="art-gallery" unicode="&#xe856;" d="M400 725c-250 0-400-200-400-300s50-175 150-175 150-25 150-100c0-100 75-175 175-175 325 0 475 175 475 350 0 300-250 400-550 400z m-62-100c34 0 62-28 62-62 0-35-28-63-62-63-35 0-63 28-63 63 0 34 28 62 63 62z m200 0c34 0 62-28 62-62 0-35-28-63-62-63-35 0-63 28-63 63 0 34 28 62 63 62z m200-100c34 0 62-28 62-62 0-35-28-63-62-63-35 0-63 28-63 63 0 34 28 62 63 62z m-575-50c34 0 62-28 62-62 0-35-28-63-62-63-35 0-63 28-63 63 0 34 28 62 63 62z m312-250c41 0 75-34 75-75s-34-75-75-75-75 34-75 75 34 75 75 75z" horiz-adv-x="950" />
<glyph glyph-name="gift-1" unicode="&#xe857;" d="M0 290l0 250 357 0-158 126 190 125 70-212 121 271 190-187-194-123 326 0 0-250-62 0 0-440-777 0 0 440-63 0z m63 62l326 0 0 125-326 0 0-125z m62-439l264 0 0 396-264 0 0-396z m154 750l139-112-55 166z m215-122l201 127-99 100z m20-628l263 0 0 396-263 0 0-396z m0 439l326 0 0 125-326 0 0-125z" horiz-adv-x="902" />
<glyph glyph-name="switch" unicode="&#xe858;" d="M700 592l0-140-500 0 0-90-200 160 200 170 0-100 500 0z m300-420l-200-160 0 90-500 0 0 140 500 0 0 100z" horiz-adv-x="1000" />
<glyph glyph-name="level-down" unicode="&#xe859;" d="M100 200q-42 0-71 30t-29 70l0 350 140 0 0-310 364 0 0 150 240-220-240-220 0 150-404 0z" horiz-adv-x="744" />
<glyph glyph-name="help" unicode="&#xe85a;" d="M494 740q86-62 86-184 0-64-42-124-12-20-88-80l-46-30q-40-34-48-60-6-16-8-44 0-14-16-14l-128 0q-16 0-16 12 4 98 28 124 16 22 48 48t56 42l24 14q22 16 34 34 28 44 28 70 0 40-26 78-28 36-92 36-68 0-94-44-28-42-28-92l-166 0q6 162 114 232 70 42 166 42 130 0 214-60z m-216-636q44 0 73-30t27-74q-2-46-32-73t-74-25q-44 0-73 29t-27 75 32 73 74 25z" horiz-adv-x="580" />
<glyph glyph-name="location" unicode="&#xe85b;" d="M0 473q0 156 110 267t267 110 267-110 110-267q0-123-53-193l-324-430-324 430q-53 70-53 193z m219 0q0-66 46-112t112-46 112 46 46 112-46 112-112 46-112-46-46-112z" horiz-adv-x="754" />
<glyph glyph-name="phone" unicode="&#xe85c;" d="M461 290q162 162 118 206l-8 8q-30 30-41 48t-4 54 49 88q20 24 37 39t35 16 30 1 29-13 24-18 26-25 21-22q48-48-6-194t-204-294q-150-150-295-205t-193-7q-2 2-23 22t-25 25-18 24-13 31 2 30 15 35 38 37q42 34 70 47t54 2 35-18 39-37q44-44 208 120z" horiz-adv-x="800" />
<glyph glyph-name="phone-1" unicode="&#xe85d;" d="M786 158q0-15-6-39t-12-38q-11-28-68-60-52-28-103-28-15 0-30 2t-32 7-26 8-31 11-28 10q-54 20-97 47-71 44-148 120t-120 148q-27 43-46 97-2 5-10 28t-12 31-8 26-7 32-2 29q0 52 29 104 31 57 59 68 14 6 38 12t39 6q8 0 12-2 10-3 30-42 6-11 16-31t20-35 17-30q2-2 10-14t12-20 4-16q0-11-16-27t-35-31-34-30-16-25q0-5 3-13t4-11 8-14 7-10q42-77 97-132t131-97q1 0 10-6t14-8 11-5 13-2q10 0 25 16t30 34 31 35 28 16q7 0 15-4t20-12 14-10q14-8 30-17t36-20 30-17q39-19 42-29 2-4 2-12z" horiz-adv-x="785.7" />
<glyph glyph-name="share" unicode="&#xe85e;" d="M650 200q62 0 106-43t44-107q0-62-44-106t-106-44-106 44-44 106q0 6 1 14t1 12l-260 156q-42-32-92-32-62 0-106 44t-44 106 44 106 106 44q54 0 92-30l260 156q0 4-1 12t-1 12q0 62 44 106t106 44 106-43 44-107q0-62-44-106t-106-44q-52 0-90 32l-262-156q2-8 2-26 0-16-2-24l262-156q36 30 90 30z" horiz-adv-x="800" />
<glyph glyph-name="Repairing" unicode="&#xe85f;" d="M214 29q0 14-10 25t-25 10-25-10-11-25 11-25 25-11 25 11 10 25z m360 234l-381-381q-21-20-50-20-29 0-51 20l-59 61q-21 20-21 50 0 29 21 51l380 380q22-55 64-97t97-64z m354 243q0-22-13-59-27-75-92-122t-144-46q-104 0-177 73t-73 177 73 176 177 74q32 0 67-10t60-26q9-6 9-15t-9-16l-163-94v-125l108-60q2 2 44 27t75 45 40 20q8 0 13-5t5-14z" horiz-adv-x="928.6" />
<glyph glyph-name="shuffle-1" unicode="&#xe860;" d="M754 516q-54 0-105-32t-80-66-83-104q-48-62-75-94t-78-77-107-66-122-21l-104 0 0 140 104 0q54 0 106 32t81 66 83 104q62 82 101 126t116 88 163 44l36 0 0 120 210-180-210-180 0 100-36 0z m-484-88q-74 78-166 78l-104 0 0 140 104 0q140 0 254-108-14-16-37-45t-27-33q-8-12-24-32z m520-242l0 100 210-180-210-180 0 120-36 0q-140 0-260 116 46 58 72 92 0 2 6 9t8 11q84-88 174-88l36 0z" horiz-adv-x="1000" />
<glyph glyph-name="loop" unicode="&#xe861;" d="M800 540q42 0 71-29t29-71l0-290q0-40-29-70t-71-30l-700 0q-40 0-70 30t-30 70l0 290q0 42 30 71t70 29l250 0 0 110 200-180-200-180 0 110-210 0 0-210 620 0 0 210-150 0 0 140 190 0z" horiz-adv-x="900" />
<glyph glyph-name="glyph" unicode="&#xe862;" d="M33 788l438 0c17 0 31 14 31 31s-14 31-31 31l-438 0c-17 0-31-14-31-31s14-31 31-31z m0-188l438 0c17 0 31 14 31 32s-14 31-31 31l-438 0c-17 0-31-14-31-31s14-32 31-32z m469-156c0 17-14 31-31 31l-438 0c-17 0-31-14-31-31s14-31 31-31l438 0c17 0 31 14 31 31z m487 89l-305 306c-10 9-24 11-36 6-12-5-21-16-21-30l0-692c-33 25-77 40-125 40-103 0-187-70-187-157 0-86 84-156 187-156 104 0 188 70 188 156 0 4 0 8-1 12l0 727 256-256c12-12 32-12 44 0 12 12 12 32 0 44z m-362-530c-2-43-53-90-125-90-74 0-126 49-126 93 0 45 52 94 126 94 72 0 123-47 125-91l0-6z" horiz-adv-x="1000" />
<glyph glyph-name="glyph-1" unicode="&#xe863;" d="M938 772l-875 0c-35 0-63-28-63-62l0-720c0-34 28-62 63-62l875 0c34 0 62 28 62 62l0 720c0 34-28 62-62 62z m0-782l-875 0 0 185 250 243 259-258c11-13 30-12 43-2l114 104 206-212c1 0 2-1 3-2l0-58z m0 147l-184 188c-11 11-29 12-41 3l-118-103-258 256c-6 7-14 11-23 12-8 0-17-3-23-9l-228-222 0 448 875 0 0-573z m-219 322c34 0 62 28 62 63 0 34-28 62-62 62s-63-28-63-62c0-35 28-63 63-63z" horiz-adv-x="1000" />
<glyph glyph-name="glyph-2" unicode="&#xe864;" d="M995 562l-137 261c-8 15-28 27-45 27l-315 0c0 0-1 0-1 0 0 0 0 0-1 0l-308 0c-18 0-38-12-46-27l-137-256c-8-16-6-39 4-53l469-654c5-7 11-10 18-10 7 0 13 3 18 10l477 649c10 14 12 37 4 53z m-75 7l-167 0 67 192 100-192z m-358 219l201 0-62-179-139 179z m91-219l-291 0 137 198 154-198z m-346 30l-63 189 194 0-131-189z m358-92l-168-481-160 481 328 0z m-238-469l-336 469 180 0 156-469z m304 469l181 0-345-470 164 470z m-547 263l67-201-173 0 106 201z" horiz-adv-x="1000" />
<glyph glyph-name="warning-empty" unicode="&#xe865;" d="M514 701q-49 0-81-55l-308-513q-32-55-11-95t87-40l625 0q65 0 87 40t-12 95l-307 513q-33 55-80 55z m0 105q106 0 169-107l308-513q63-105 12-199-52-93-177-93l-625 0q-123 0-177 93-53 92 11 199l309 513q62 107 170 107z m-69-652q0 69 69 69 67 0 67-69 0-67-67-67-69 0-69 67z m146 313q0-14-6-29l-71-179q-44 108-73 179-6 15-6 29 0 32 23 55t56 24 55-24 22-55z" horiz-adv-x="1026" />
<glyph glyph-name="shop-bag" unicode="&#xe866;" d="M999-71l-82 492c-7 64-65 116-129 116l-69 0 0 83c0 128-91 231-218 231-127 0-220-103-220-231l0-83-75 0c-64 0-122-52-129-114l-75-493c-3-26 2-46 15-60 12-14 29-21 52-21l853 0c32 0 51 13 61 24 9 10 19 27 16 56z m-655 691c0 93 64 168 157 168s155-75 155-168l0-83-312 0 0 83z m581-708l-852 0c-5 0-11 2-10 10l76 492c4 33 35 61 67 61l75 0 0-72c-18-10-31-30-31-53 0-35 28-63 63-63s62 28 62 63c0 23-13 43-31 53l0 72 312 0 0-72c-18-10-31-30-31-53 0-35 28-63 63-63s62 28 62 63c0 23-13 43-31 53l0 72 69 0c33 0 64-28 68-62l81-492c0-4-3-9-12-9z" horiz-adv-x="1000" />
<glyph glyph-name="Clothes" unicode="&#xe867;" d="M4 580q-14 41 20 69l156 125q17 13 39 13l562 0q22 0 39-13l157-125q33-28 19-69l-62-187q-10-29-39-39-10-4-20-4-18 0-31 8l0-383q0-25-19-44t-44-19l-562 0q-26 0-44 19t-19 44l0 383q-13-8-31-8-10 0-19 4-30 10-39 39z m59 20l62-187 94 62 0-500 562 0 0 500 94-62 63 187-157 125-131 0q-13-41-54-67t-96-27-96 27-54 67l-131 0z m320 125q14-27 45-45t72-18 72 18 45 45l-234 0z" horiz-adv-x="1000" />
<glyph glyph-name="Agriculture" unicode="&#xe868;" d="M714 457q0 15-10 25t-25 11q-96 0-178-28t-145-74-131-123q-11-12-11-25 0-15 11-25t25-11q13 0 25 11 15 13 41 39t38 37q76 69 150 98t175 29q14 0 25 11t10 25z m286 111q0-53-11-108-26-125-103-214t-200-149q-119-61-244-61-83 0-160 27-8 2-49 23t-53 21q-9 0-22-18t-25-39-30-39-33-18q-24 0-36 10t-25 33q-1 2-3 6t-3 6-2 5-1 7q0 20 17 41t38 37 38 31 18 27q0 2-8 21t-9 25q-5 28-5 58 0 64 24 123t66 103 96 77 113 53q31 10 81 15t101 5 99 3 91 13 64 32l16 16t17 16 15 11 20 9 24 3q22 0 40-26t26-63 14-69 4-53z" horiz-adv-x="1000" />
<glyph glyph-name="Medical" unicode="&#xe869;" d="M679 314v72q0 14-11 25t-25 10h-143v143q0 15-11 25t-25 11h-71q-15 0-25-11t-11-25v-143h-143q-14 0-25-10t-10-25v-72q0-14 10-25t25-10h143v-143q0-15 11-25t25-11h71q15 0 25 11t11 25v143h143q14 0 25 10t11 25z m178 36q0-117-57-215t-156-156-215-58-216 58-155 156-58 215 58 215 155 156 216 58 215-58 156-156 57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="Sports-and-Entertainment" unicode="&#xe86a;" d="M256 357q-42 91-42 207h-143v-53q0-44 53-91t132-63z m601 154v53h-143q0-116-41-207 79 16 131 63t53 91z m72 71v-71q0-40-24-80t-62-73-97-54-120-25q-23-30-53-53-21-19-29-40t-8-50q0-30 17-51t54-21q42 0 75-25t32-64v-36q0-8-5-13t-13-5h-464q-8 0-13 5t-5 13v36q0 39 33 64t74 25q38 0 55 21t17 51q0 28-8 50t-29 40q-30 23-53 53-64 3-121 25t-96 54-63 73-23 80v71q0 23 16 38t38 16h160v53q0 37 27 63t63 27h321q37 0 63-27t26-63v-53h161q22 0 38-16t16-38z" horiz-adv-x="928.6" />
<glyph glyph-name="wrench-1" unicode="&#xe86b;" d="M804 597q30-9 30-90 0-108-77-184t-184-76q-28 0-53 5-31-39-90-117t-109-136q-55-65-138-65-75 0-129 53t-54 128q0 84 64 140 59 50 137 108t118 91q-6 31-6 53 0 107 76 183t184 77q38 0 77-13 14-4 18-18t-7-26l-138-135 20-98 100-20 136 132q11 11 25 8z m-621-533q21 0 36 15t16 36-16 37-36 16-37-16-16-37 16-36 37-15z" horiz-adv-x="834" />
<glyph glyph-name="pencil" unicode="&#xe86c;" d="M203-7l50 51-131 131-51-51v-60h72v-71h60z m291 518q0 12-12 12-5 0-9-4l-303-302q-4-4-4-10 0-12 13-12 5 0 9 4l303 302q3 4 3 10z m-30 107l232-232-464-465h-232v233z m381-54q0-29-20-50l-93-93-232 233 93 92q20 21 50 21 29 0 51-21l131-131q20-22 20-51z" horiz-adv-x="857.1" />
<glyph glyph-name="map-2" unicode="&#xe86d;" d="M984 600q16-10 16-30l0-584q0-20-16-30-8-6-16-6t-18 6l-216 136-216-136q-18-10-34 0l-218 136-216-136q-16-10-34 0-16 10-16 30l0 584q0 20 16 30l234 146q18 10 34 0l216-136 218 136q16 10 32 0z m-750-450l0 506-168-104 0-506z m234-104l0 506-168 104 0-506z m234 104l0 506-170-104 0-506z m232-104l0 506-168 104 0-506z" horiz-adv-x="1000" />
<glyph glyph-name="map-o-1" unicode="&#xe86e;" d="M1127 844q16-11 16-30v-785q0-12-6-20t-16-13l-358-143q-13-6-26 0l-344 137-344-137q-5-3-13-3-11 0-20 6-16 11-16 30v785q0 12 6 21t16 12l358 143q13 6 26 0l344-137 344 137q18 8 33-3z m-716-75v-709l321-129v709z m-340-122v-708l304 121v709z m1000-594v708l-303-121v-709z" horiz-adv-x="1142.9" />
<glyph glyph-name="marquee" unicode="&#xe86f;" d="M0 850l0-143 143 0 0 143-143 0z m286 0l0-143 143 0 0 143-143 0z m285 0l0-143 143 0 0 143-143 0z m286 0l0-143 143 0 0 143-143 0z m-857-286l0-143 143 0 0 143-143 0z m857 0l0-143 143 0 0 143-143 0z m-857-285l0-143 143 0 0 143-143 0z m857 0l0-143 143 0 0 143-143 0z m-857-286l0-143 143 0 0 143-143 0z m286 0l0-143 143 0 0 143-143 0z m285 0l0-143 143 0 0 143-143 0z m286 0l0-143 143 0 0 143-143 0z" horiz-adv-x="1000" />
<glyph glyph-name="doc-text-inv" unicode="&#xe870;" d="M600 800q42 0 71-29t29-71l0-700q0-40-29-70t-71-30l-500 0q-40 0-70 30t-30 70l0 700q0 42 30 71t70 29l500 0z m-460-208l0-88 420 0 0 88-420 0z m420-480l0 88-420 0 0-88 420 0z m0 196l0 90-418 0 0-90 418 0z" horiz-adv-x="700" />
<glyph glyph-name="calendar" unicode="&#xe871;" d="M71-79h161v161h-161v-161z m197 0h178v161h-178v-161z m-197 197h161v178h-161v-178z m197 0h178v178h-178v-178z m-197 214h161v161h-161v-161z m411-411h179v161h-179v-161z m-214 411h178v161h-178v-161z m428-411h161v161h-161v-161z m-214 197h179v178h-179v-178z m-196 482v161q0 7-6 12t-12 6h-36q-7 0-12-6t-6-12v-161q0-7 6-13t12-5h36q7 0 12 5t6 13z m410-482h161v178h-161v-178z m-214 214h179v161h-179v-161z m214 0h161v161h-161v-161z m18 268v161q0 7-5 12t-13 6h-35q-7 0-13-6t-5-12v-161q0-7 5-13t13-5h35q8 0 13 5t5 13z m215 36v-715q0-29-22-50t-50-21h-786q-29 0-50 21t-21 50v715q0 29 21 50t50 21h72v54q0 37 26 63t63 26h36q37 0 63-26t26-63v-54h214v54q0 37 27 63t63 26h35q37 0 64-26t26-63v-54h71q29 0 50-21t22-50z" horiz-adv-x="928.6" />
<glyph glyph-name="calendar-1" unicode="&#xe872;" d="M0-66l0 738q0 35 24 60t60 24l135 0 0 63q0 13 9 22t22 9 22-9 9-22l0-63 188 0 0 63q0 13 9 22t22 9 22-9 9-22l0-63 188 0 0 63q0 13 9 22t22 9 22-9 9-22l0-63 135 0q35 0 60-24t24-60l0-738q0-35-24-60t-60-24l-832 0q-35 0-60 24t-24 60z m63 0q0-10 5-16t16-6l832 0q10 0 16 6t5 16l0 738q0 10-5 16t-16 6l-135 0 0-63q0-13-9-22t-22-9-22 9-9 22l0 63-188 0 0-63q0-13-9-22t-22-9-22 9-9 22l0 63-188 0 0-63q0-13-9-22t-22-9-22 9-9 22l0 63-135 0q-10 0-16-6t-5-16l0-738z m156 135l0 94 125 0 0-94-125 0z m0 156l0 94 125 0 0-94-125 0z m0 156l0 94 125 0 0-94-125 0z m219-312l0 94 125 0 0-94-125 0z m0 156l0 94 125 0 0-94-125 0z m0 156l0 94 125 0 0-94-125 0z m218-312l0 94 125 0 0-94-125 0z m0 156l0 94 125 0 0-94-125 0z m0 156l0 94 125 0 0-94-125 0z" horiz-adv-x="1000" />
<glyph glyph-name="Art-And-Culture" unicode="&#xe873;" d="M400 725c-250 0-400-200-400-300s50-175 150-175 150-25 150-100c0-100 75-175 175-175 325 0 475 175 475 350 0 300-250 400-550 400z m-62-100c34 0 62-28 62-62 0-35-28-63-62-63-35 0-63 28-63 63 0 34 28 62 63 62z m200 0c34 0 62-28 62-62 0-35-28-63-62-63-35 0-63 28-63 63 0 34 28 62 63 62z m200-100c34 0 62-28 62-62 0-35-28-63-62-63-35 0-63 28-63 63 0 34 28 62 63 62z m-575-50c34 0 62-28 62-62 0-35-28-63-62-63-35 0-63 28-63 63 0 34 28 62 63 62z m312-250c41 0 75-34 75-75s-34-75-75-75-75 34-75 75 34 75 75 75z" horiz-adv-x="950" />
<glyph glyph-name="graduation-cap" unicode="&#xe874;" d="M166 238l334-168 276 136q-4-22-8-47t-6-35-11-23-24-23-45-22q-40-18-80-41t-63-34-39-11-40 13-64 37-80 40q-72 32-103 69t-47 109z m810 246q24-14 24-33t-24-33l-78-44-308 102q-22 36-90 36-40 0-67-16t-27-40 27-40 67-16q26 0 36 4l292-68-268-152q-60-32-120 0l-416 234q-24 14-24 33t24 33l416 234q60 32 120 0z m-128-442q18 116 13 182t-19 90l-14 22 70 38q6-8 12-28t17-101-7-197q-4-26-22-30t-35 5-15 19z" horiz-adv-x="1000" />
<glyph glyph-name="Advertising-1" unicode="&#xe875;" d="M792 500q58-138 67-258t-39-140q-28-12-61 3t-65 40-99 41-149 8q-28-4-42-19t-6-37q22-56 46-108 4-10 24-22t24-20q14-34-22-46-50-22-102-40-30-10-54 42-32 76-58 132-6 12-34 17t-46 31q-30-10-38-14-34-12-74 12t-54 60q-17 32-5 79t43 61q126 52 213 108t124 103 59 92 25 78 15 59 36 36q48 20 130-70t142-228z m-28-300q8 4 10 38t-11 98-41 128q-28 66-67 123t-67 84-36 23-10-42 10-105 40-133 68-119 68-76 36-19z" horiz-adv-x="860" />
<glyph glyph-name="filter" unicode="&#xe876;" d="M0 850l1000 0-346-346 0-402-308-252 0 654z" horiz-adv-x="1000" />
<glyph glyph-name="Tourism-And-Transportation" unicode="&#xe877;" d="M768 761q24-29 7-83t-61-96l-90-90 90-388q3-11-7-18l-71-54q-4-3-11-3-2 0-4 0-8 2-12 9l-155 284-145-145 30-108q3-10-5-17l-53-54q-5-5-13-5h-1q-9 1-14 7l-105 141-141 105q-6 4-7 13-1 7 5 14l54 54q5 5 12 5 4 0 5 0l108-30 145 145-284 155q-8 5-9 14-1 9 5 15l71 71q8 7 17 5l371-89 89 89q43 43 96 60t83-6z" horiz-adv-x="785.7" />
<glyph glyph-name="Makeup-And-Hygienic" unicode="&#xe878;" d="M901 850q39 0 69-26t29-65q0-35-25-84-185-351-260-420-54-51-121-51-71 0-121 52t-51 123q0 71 52 118l356 323q33 30 72 30z m-507-577q22-42 59-73t84-42l1-40q2-118-72-193t-195-75q-68 0-121 26t-85 71-49 102-16 123q4-3 23-17t35-25 32-20 26-9q23 0 31 20 14 37 32 63t39 42 49 27 57 14 70 6z" horiz-adv-x="1000" />
<glyph glyph-name="clock" unicode="&#xe879;" d="M500 546v-250q0-7-5-12t-13-5h-178q-8 0-13 5t-5 12v36q0 8 5 13t13 5h125v196q0 8 5 13t12 5h36q8 0 13-5t5-13z m232-196q0 83-41 152t-110 111-152 41-153-41-110-111-41-152 41-152 110-111 153-41 152 41 110 111 41 152z m125 0q0-117-57-215t-156-156-215-58-216 58-155 156-58 215 58 215 155 156 216 58 215-58 156-156 57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="user" unicode="&#xe87a;" d="M714 69q0-60-35-104t-84-44h-476q-49 0-84 44t-35 104q0 48 5 90t17 85 33 73 52 50 76 19q73-72 174-72t175 72q42 0 75-19t52-50 33-73 18-85 4-90z m-143 495q0-88-62-151t-152-63-151 63-63 151 63 152 151 63 152-63 62-152z" horiz-adv-x="714.3" />
<glyph glyph-name="users" unicode="&#xe87b;" d="M331 350q-90-3-148-71h-75q-45 0-77 22t-31 66q0 197 69 197 4 0 25-11t54-24 66-12q38 0 75 13-3-21-3-37 0-78 45-143z m598-356q0-66-41-105t-108-39h-488q-68 0-108 39t-41 105q0 30 2 58t8 61 14 61 24 54 35 45 48 30 62 11q6 0 24-12t41-26 59-27 76-12 75 12 60 27 41 26 24 12q34 0 62-11t47-30 35-45 24-54 15-61 8-61 2-58z m-572 713q0-59-42-101t-101-42-101 42-42 101 42 101 101 42 101-42 42-101z m393-214q0-89-63-152t-151-62-152 62-63 152 63 151 152 63 151-63 63-151z m321-126q0-43-31-66t-77-22h-75q-57 68-147 71 45 65 45 143 0 16-3 37 37-13 74-13 33 0 67 12t54 24 24 11q69 0 69-197z m-71 340q0-59-42-101t-101-42-101 42-42 101 42 101 101 42 101-42 42-101z" horiz-adv-x="1071.4" />
<glyph glyph-name="Official" unicode="&#xe87c;" d="M325-96q-127 0-217 90t-90 218 90 217l311 303q63 64 158 64t157-64q65-66 65-158t-65-157l-279-274q-41-41-98-40t-99 42-41 98 41 98l108 108 79-78-109-109q-7-7-7-19 0-13 7-21 19-19 40 0l279 274q33 32 33 79t-33 78q-31 31-79 31t-79-31l-311-303q-56-57-56-138t57-138q55-56 138-56t138 56l139 139 80-79-140-140q-90-90-217-90z" horiz-adv-x="817" />
<glyph glyph-name="crown" unicode="&#xe87d;" d="M419 822c-39 0-71-32-71-72 0-40 32-72 71-72 39 0 74 32 74 72 0 40-35 72-74 72z m-48-222c-40-119-101-151-101-151s-52 145-109 231c-23-52-47-86-96-100-1-44 51-208 55-290l601 0c2 79 55 256 55 288-38 16-85 51-96 102-63-86-109-231-109-231s-61 32-101 151c-27-13-77-13-99 0z m-297 222c-40 0-74-32-74-72 0-40 34-72 74-72 39 0 70 32 70 72 0 40-31 72-70 72z m47-603l0-119 600 0c0 43 0 81 0 119z m644 603c-40 0-72-32-72-72 0-40 32-72 72-72 40 0 72 32 72 72 0 40-32 72-72 72z" horiz-adv-x="837" />
<glyph glyph-name="gift-2" unicode="&#xe87e;" d="M518 93v400h-179v-400q0-14 10-21t26-8h107q16 0 26 8t10 21z m-255 471h109l-70 90q-15 17-39 17-22 0-38-15t-15-38 15-38 38-16z m384 54q0 22-15 38t-38 15q-24 0-39-17l-69-90h108q22 0 38 16t15 38z m210-143v-179q0-7-5-12t-13-5h-53v-233q0-22-16-37t-38-16h-607q-22 0-38 16t-16 37v233h-53q-8 0-13 5t-5 12v179q0 8 5 13t13 5h245q-51 0-88 36t-37 89 37 88 88 37q60 0 94-43l72-92 71 92q34 43 94 43 52 0 88-37t37-88-37-89-88-36h245q8 0 13-5t5-13z" horiz-adv-x="857.1" />
<glyph glyph-name="Decoration-And-Building-Industry" unicode="&#xe87f;" d="M475 800l-375-250 750 0z m-325-300c-28 0-50-22-50-50l0-350-87-150c-8-13-13-18-13-25 0-25 32-25 50-25l850 0c18 0 50 0 50 25 0 7-4 11-12 25l-88 150 0 350c0 28-22 50-50 50z m100-100c28 0 45-23 50-50l0-300-100 0 0 300c0 28 22 50 50 50z m225 0c28 0 50-22 50-50l0-300-100 0 0 300c0 28 22 50 50 50z m225 0c28 0 50-22 50-50l0-300-100 0 0 300c0 28 22 50 50 50z" horiz-adv-x="950" />
<glyph glyph-name="Flowers-And-Plants" unicode="&#xe880;" d="M165 750c-13 0-15-28-15-50l0-100c0-102 100-153 200-150l0-400c-50 100-200 250-350 200 0 0 125-300 375-300s375 300 375 300c-150 50-300-100-350-200l0 400c100-3 200 48 200 150l0 100c0 22-2 50-15 50-10 0-21-11-35-25l-75-75-75 84c-8 9-12 16-25 16-13 0-17-7-25-16l-75-84-75 75c-14 14-25 25-35 25z" horiz-adv-x="750" />
<glyph glyph-name="Advertising" unicode="&#xe881;" d="M929 493q29 0 50-21t21-51-21-50-50-21v-214q0-29-22-50t-50-22q-233 194-453 212-32-10-51-36t-17-57 22-51q-11-19-13-37t4-32 19-31 26-28 35-28q-17-32-63-46t-94-7-73 31q-4 13-17 49t-18 53-12 50-9 56 2 55 12 62h-68q-36 0-63 26t-26 63v107q0 37 26 63t63 26h268q243 0 500 215 29 0 50-22t22-50v-214z m-72-337v532q-220-168-428-191v-151q210-23 428-190z" horiz-adv-x="1000" />
<glyph glyph-name="shop-2" unicode="&#xe882;" d="M300 775c-50 0-94-50-100-100l-17-150-83 0c-25 0-50-25-50-50l-50-500c0-25 25-50 50-50l650 0c25 0 50 25 50 50l-50 500c0 25-25 50-50 50l-83 0-17 150c-6 50-50 100-100 100z m0-50l150 0c25 0 47-25 50-50l17-150-284 0 17 150c3 25 25 50 50 50z" horiz-adv-x="750" />
<glyph glyph-name="glyph-3" unicode="&#xe883;" d="M1000 537c0 35-28 63-62 63l-107 0c27 27 45 63 45 106 0 55-31 113-118 113-115 0-211-122-256-190-45 68-144 190-259 190-87 0-118-58-118-113 0-43 18-79 46-106l-108 0c-35 0-63-28-63-63l0-187 63 0 0-407c0-34 28-62 63-62l749 0c35 0 63 28 63 62l0 407 62 0 0 187z m-242 220c38 0 56-16 56-51 0-69-78-106-151-106l-106 0c45 66 123 157 201 157z m-515 0c78 0 159-91 203-157l-105 0c-73 0-154 38-154 107 0 35 17 50 56 50z m695-345l-407 0 0 125 407 0 0-125z m-875 125l406 0 0-125-406 0 0 125z m63-187l343 0 0-407-343 0 0 407z m749-407l-344 0 0 407 344 0 0-407z" horiz-adv-x="1000" />
<glyph glyph-name="glyph-4" unicode="&#xe884;" d="M156 471l0 348c0 17-14 31-31 31s-31-14-31-31l0-348c-54-14-94-63-94-121 0-58 40-107 94-121l0-348c0-17 14-31 31-31s31 14 31 31l0 348c54 14 94 63 94 121 0 58-40 107-94 121z m-31-183c0 0 0 0 0 0 0 0 0 0 0 0-35 0-63 28-63 62 0 34 28 62 63 63 0 0 0 0 0 0 0 0 0 0 0 0 35-1 63-29 63-63 0-34-28-62-63-62z m406-4l0 535c0 17-14 31-31 31-17 0-31-14-31-31l0-535c-54-14-94-63-94-121 0-59 40-108 94-122l0-160c0-17 14-31 31-31 17 0 31 14 31 31l0 160c54 14 94 63 94 122 0 58-40 107-94 121z m-31-184c0 0 0 0 0 0 0 0 0 0 0 0-35 0-63 28-63 63 0 34 28 62 63 62 0 0 0 0 0 0 0 0 0 0 0 0 35 0 63-28 63-62 0-35-28-63-63-63z m406 559l0 160c0 17-14 31-31 31-17 0-31-14-31-31l0-160c-54-14-94-63-94-121 0-59 40-108 94-122l0-535c0-17 14-31 31-31 17 0 31 14 31 31l0 535c54 14 94 63 94 122 0 58-40 107-94 121z m-31-184c0 0 0 0 0 0 0 0 0 0 0 0-35 0-63 28-63 63 0 34 28 62 63 62 0 0 0 0 0 0 0 0 0 0 0 0 35 0 63-28 63-62 0-35-28-63-63-63z" horiz-adv-x="1000" />
<glyph glyph-name="glyph-5" unicode="&#xe885;" d="M983 639c-11 5-23 3-32-5l-157-141-143 146 141 162c8 9 10 22 5 32s-15 18-27 18l-9 0c-87 0-237-8-304-76l-13-13c-72-73-85-193-47-284l-361-368c-48-50-48-130 0-179l44-45c25-24 57-37 88-37 32 0 64 13 89 37l365 369c35-18 82-30 122-30 64 0 125 25 171 72l13 14c73 73 72 231 72 301 0 12-7 22-17 27z m-99-286l-11-14c-35-35-81-52-129-52-23 0-55 5-77 14-20 8-38 19-54 34l-401-404c-11-12-27-18-44-18-16 0-32 6-44 18l-44 45c-24 24-24 64 0 89l392 399c-13 19-22 40-28 62l0 0c-15 61-6 145 41 193l14 14c41 41 146 53 204 57l-114-133c-11-11-10-29 1-40l181-186c11-12 29-12 41-2l127 115c-4-62-16-152-55-191z" horiz-adv-x="1000" />
<glyph glyph-name="glyph-6" unicode="&#xe886;" d="M930 601l-117 0 0 249-625 0 0-249-118 0c-39 0-70-31-70-70l0-423c0-39 31-70 70-70l118 0 0-188 625 0 0 188 117 0c39 0 70 31 70 70l0 423c0 39-31 70-70 70z m-680 187l500 0 0-187-500 0 0 187z m500-875l-500 0 0 344 500 0 0-344z m188 195c0-4-4-7-8-7l-117 0 0 219-625 0 0-219-118 0c-4 0-7 3-7 7l0 423c0 4 3 8 7 8l860 0c4 0 8-4 8-8l0-423z m-125 368l-32 0c-17 0-31-14-31-32s14-31 31-31l32 0c17 0 31 14 31 31s-14 32-31 32z" horiz-adv-x="1000" />
<glyph glyph-name="glyph-7" unicode="&#xe887;" d="M813 444c-8 0-34 0-63 0l0 63c0 34-28 62-62 62l-626 0c-34 0-62-27-62-62l0-470c0-103 84-187 187-187l376 0c104 0 187 84 187 187l0 32c28 0 57 0 63 0 103 0 187 83 187 187 0 103-84 188-187 188z m-126-407c0-69-55-125-124-125l-376 0c-69 0-125 56-125 125l0 470 0 0 626 0-1-470z m126 94c-6 0-35 0-63 0l0 251c29 0 55-1 63-1 71 0 126-53 126-124s-54-126-126-126z m-251 501c18 0 32 14 32 31l0 156c0 17-14 31-32 31s-31-14-31-31l0-156c0-17 14-31 31-31z m-375 0c18 0 32 14 32 31l0 156c0 17-14 31-32 31s-31-14-31-31l0-156c0-17 14-31 31-31z m188 0c17 0 31 14 31 31l0 156c0 17-14 31-31 31s-31-14-31-31l0-156c0-17 14-31 31-31z" horiz-adv-x="1000" />
<glyph glyph-name="glyph-8" unicode="&#xe888;" d="M944 559l-175 187c-6 7-14 10-22 10l-261 0-1 65c0 16-14 29-32 29-17 0-29-13-29-29l-1-65-344 0c-18 0-32-14-32-31l0-375c0-17 14-31 32-31l344 0 0-440c0-16 14-29 31-29 17 0 31 13 31 29l0 440 262 0c8 0 16 3 22 10l175 187c11 12 11 31 0 43z m-211-178l-623 0 0 313 623 0 146-156-146-157z" horiz-adv-x="1000" />
<glyph glyph-name="glyph-9" unicode="&#xe889;" d="M999 631c0 10-6 19-14 24l-279 174c-11 7-25 6-36-3l-170-137-170 137c-10 9-25 10-36 3l-279-174c-8-5-14-14-14-24-1-10 3-20 11-27l161-135-138-109c-8-6-13-15-12-25 0-10 5-20 14-25l128-86c-7-5-11-13-11-23l0-125c0-11 6-21 15-27l315-178c5-3 10-4 16-4s11 1 16 4l311 178c9 6 15 16 15 27l0 147c0 2 0 4-1 6l122 81c8 5 13 14 13 24 1 10-4 20-11 26l-138 109 161 135c8 7 12 17 11 27z m-280-162l-219-138-219 138 219 142 219-142z m-634 156l223 139 139-113-222-144-140 118z m140-195l220-138-125-96-213 142 118 92z m-8-240l87-58c11-8 26-7 36 1l127 96 0-276-250 141 0 96z m563-96l-251-143 0 281 130-99c5-5 12-7 19-7 6 0 12 2 17 6l85 56 0-94z m112 244l-213-142-124 96 220 138 117-92z m-117 169l-222 144 139 113 223-139-140-118z" horiz-adv-x="1000" />
<glyph glyph-name="glyph-10" unicode="&#xe88a;" d="M969 69l-125 0 0 580 116 116c13 12 13 32 0 44-12 13-32 13-44 0l-116-115-581 0 0 125c0 17-14 31-31 31s-32-14-32-31l0-125-125 0c-17 0-31-14-31-31 0-18 14-32 31-32l125 0 0-593c0-3 1-6 2-9 0-1 0-2 1-3 3-8 9-14 17-17 1-1 3-1 4-1 3-1 5-2 8-2l593 0 0-125c0-17 14-31 32-31s31 14 31 31l0 125 125 0c17 0 31 14 31 32s-14 31-31 31z m-231 562l-519-518 0 518 519 0z m-475-562l518 517 0-517-518 0z" horiz-adv-x="1000" />
<glyph glyph-name="glyph-11" unicode="&#xe88b;" d="M1001 350c0 266-209 484-471 499-5 1-11 1-16 1-2 0-4 0-5 0-3 0-6 0-9 0-276 0-501-224-501-500 0-276 225-500 501-500 3 0 6 0 9 0 1 0 3 0 5 0 5 0 11 0 16 1 262 15 471 233 471 499z m-93-161c-17 5-61 16-137 25 6 43 10 89 10 136 0 37-2 74-6 108 96 12 139 27 142 28l-12 32c22-51 34-108 34-168 0-57-11-111-31-161z m-629 161c0 35 2 69 6 102 51-4 112-7 183-8l0-216c-69-1-129-4-179-8-6 41-10 85-10 130z m251 433c77-22 143-128 172-269-47-4-104-7-172-7l0 276z m-62 0l0-276c-67 0-124 3-172 7 30 139 96 245 172 269z m0-618l0-248c-71 23-133 116-166 242 47 3 102 6 166 6z m62-248l0 248c65 0 119-3 166-6-32-128-94-222-166-242z m0 311l0 216c72 1 132 4 182 8 4-33 6-67 6-102 0-45-3-89-10-130-49 4-108 7-178 8z m363 315c-9-2-48-14-128-23-17 94-49 174-90 232 95-42 173-116 218-209z m-543 219c-51-59-92-143-115-243-71 8-113 17-130 21 49 102 138 182 245 222z m-268-280c12-4 57-15 142-24-5-35-8-71-8-108 0-47 5-92 12-135-72-8-117-18-137-22-19 48-30 102-30 157 0 46 8 90 21 132z m36-347c23 5 64 12 124 18 24-87 62-161 108-215-98 36-180 107-232 197z m557-187c37 53 66 123 85 204 62-7 101-15 120-20-47-81-119-146-205-184z" horiz-adv-x="1000" />
<glyph glyph-name="glyph-12" unicode="&#xe88c;" d="M497-149c-236 0-403 163-403 388 0 120 72 248 75 254 6 11 18 17 31 16 12-2 23-11 26-23 0-1 19-73 45-114 17-27 34-46 54-59-13 57-23 144-7 232 45 243 236 301 245 303 10 3 21 0 29-7 8-7 12-18 10-29 0-2-32-171 35-316 6-13 15-29 24-44 2 21 6 43 13 65 24 86 88 115 90 116 11 5 23 4 32-4 10-7 14-18 12-30-1-2-9-60 40-143 45-75 58-124 58-217 0-225-172-388-409-388z m-306 542c-17-43-35-100-35-154 0-189 141-326 341-326 201 0 347 137 347 326 0 82-10 120-49 185-26 43-39 82-45 113-6-10-12-22-16-37-19-67-15-145-15-145 1-14-7-27-20-32s-28 0-36 11c-3 4-58 82-83 135-51 110-50 229-45 298-51-30-130-97-155-234-25-132 23-265 23-266 5-11 2-23-5-32-8-9-20-12-31-10-4 1-92 24-149 114-10 16-19 35-27 54z" horiz-adv-x="1000" />
<glyph glyph-name="glyph-13" unicode="&#xe88d;" d="M912 786l0 0c11 0 18-2 22-4 4-12 10-54-34-99l-206-205-20-20 2-28c3-59 10-164 15-254 5-80 10-155 10-162 0-4 0-5-4-10-9-12-26-31-41-46-22 60-70 188-96 260l-33 92-70-69-127-123-18-18-1-25c0-20 0-56 0-87 0-22 0-42 0-54 0 0 4-1 4-1-3 4-6 9-9 14-25 41-61 97-72 115l-8 13-13 8c-47 29-100 62-132 82 1 1 2-2 3-2l2 0c10 0 27 0 45-1 25 0 53 0 74 0 8 0 15 0 21 0l25 0 18 18 122 127 70 69-92 34c-69 25-201 74-263 98 16 14 35 32 46 41 3 2 6 4 7 4l3 0c7-1 92-6 175-12 88-5 187-12 243-16l28-1 20 20 206 205c32 32 63 37 78 37m0 62c-36 0-82-14-122-54l-206-206c-116 7-412 27-420 27-1 0-3 0-5 0-10 0-27-2-47-18-23-19-71-64-71-64-12-12-17-27-16-40 1-8 5-23 25-31 13-5 207-78 297-111l-122-127c-6 0-13 0-20 0-38 0-96 1-119 1-3 0-6 0-7 0-7 0-22 4-61-29l-2-2c-12-12-15-23-15-31 0-8 2-19 13-28 7-6 95-62 167-106 17-28 96-154 101-161 6-10 15-16 27-16 1 0 1 0 1 0 12 0 24 6 35 17 33 38 28 54 28 61 1 20 0 109 1 144l127 123c33-90 104-283 109-295 8-20 23-25 31-25 1 0 3-1 4-1 13 0 25 6 36 17 0 0 45 48 64 71 19 23 19 43 18 53 0 6-18 301-25 417l206 205c73 73 61 161 34 188-12 12-36 21-66 21l0 0z" horiz-adv-x="1000" />
<glyph glyph-name="glyph-14" unicode="&#xe88e;" d="M906 631l-143 0-75 125-375 0-75-125-144 0c-31 0-94-31-94-92l0-501c0-52 47-94 87-94l821 0c41 0 92 44 92 93l0 501c0 31-31 93-94 93z m32-594c0-13-20-30-30-31l-821 0c-7 1-24 15-24 32l0 501c0 19 26 29 31 30l179 0 18 30 57 95 306 0 56-95 17-30 179 0c22 0 31-29 32-31l0-501z m-438 501c-121 0-219-98-219-219s98-219 219-219 219 98 219 219-98 219-219 219z m0-375c-86 0-156 70-156 156s70 156 156 156 156-70 156-156-70-156-156-156z" horiz-adv-x="1000" />
<glyph glyph-name="glyph-15" unicode="&#xe88f;" d="M289 135c6-6 14-9 22-9s16 3 22 9l379 381c12 13 12 32 0 44s-32 13-45 0l-378-381c-12-12-12-32 0-44z m176 66c10-45-1-90-36-125l-126-123c-27-26-62-41-100-41s-73 15-99 41c-55 55-55 145-1 199l124 127c26 27 62 42 99 42 13 0 25-3 37-6l49 49c-27 12-56 19-86 19-52 0-104-20-144-59l-123-127c-79-80-79-208 0-288 40-39 92-59 144-59s104 20 144 59l126 122c60 61 73 146 41 220l-49-50z m476 590c-40 39-92 59-144 59-52 0-104-20-144-59l-126-122c-62-63-75-157-38-233l48 49c-14 48-3 102 34 139l127 123c26 26 61 41 99 41 38 0 73-15 99-41 55-55 55-145 1-199l-126-126c-27-27-62-41-100-41-9 0-18-1-27 0l-50-49c25-11 51-14 77-14 52 0 104 20 144 60l126 125c79 80 79 208 0 288z" horiz-adv-x="1000" />
<glyph glyph-name="glyph-16" unicode="&#xe890;" d="M781 475l-31 0 0 119c0 144-104 256-251 256-148 0-249-115-249-256l0-119-31 0c-69 0-125-56-125-125l0-375c0-69 56-125 125-125l562 0c69 0 125 56 125 125l0 375c0 69-56 125-125 125z m-468 119c0 107 72 194 186 194 112 0 189-85 189-194l0-119-375 0 0 119z m531-619c0-35-28-63-63-63l-562 0c-35 0-63 28-63 63l0 375c0 35 28 63 63 63l562 0c35 0 63-28 63-63l0-375z m-344 313c-34 0-62-28-62-63 0-23 12-43 31-54l0-102c0-17 14-31 31-31s31 14 31 31l0 102c19 11 32 31 32 54 0 35-28 63-63 63z" horiz-adv-x="1000" />
<glyph glyph-name="glyph-17" unicode="&#xe891;" d="M169-134c-43 0-83 17-116 50-72 72-72 190 0 262l561 595c87 88 222 80 319-18 44-44 69-107 68-174-1-66-27-129-71-173l-424-451c-11-13-31-13-44-1-12 12-13 31-1 44l424 452c34 33 53 81 53 130 1 50-17 97-49 129-60 60-158 91-230 19l-561-596c-48-48-48-126-1-174 23-22 49-33 77-31 28 1 57 16 81 40l446 475c17 16 49 56 16 89-19 19-32 18-36 17-13-1-27-9-42-24l-336-357c-12-13-32-14-44-2-13 12-13 32-1 44l336 358c27 27 54 41 81 44 22 2 54-3 86-36 49-48 43-119-15-177l-446-475c-36-35-79-56-122-59-3 0-6 0-9 0z" horiz-adv-x="1000" />
<glyph glyph-name="glyph-18" unicode="&#xe892;" d="M685 690c-15 7-34 0-41-15-8-16-1-34 15-42 158-74 244-246 209-418-42-204-242-336-446-294-99 21-180 78-235 162-56 85-75 185-55 284 24 118 100 214 209 266 15 7 22 26 15 41-8 16-26 23-42 15-126-60-215-172-243-309-24-115-1-233 64-331 64-98 159-165 275-189 29-6 59-9 88-9 205 0 389 144 431 352 41 200-59 400-244 487z m-185-246c17 0 31 14 31 31l0 344c0 17-14 31-31 31-17 0-31-14-31-31l0-344c0-17 14-31 31-31z" horiz-adv-x="1000" />
<glyph glyph-name="glyph-19" unicode="&#xe893;" d="M504 850c-205 0-379-174-379-381 0-217 201-438 337-594 0 0 22-25 49-25l2 0c27 0 49 25 50 25 127 146 312 387 312 594 0 207-135 381-371 381z m12-933c-1-1-3-2-4-3-1 1-3 2-4 3l-16 19c-129 147-304 349-304 533 0 173 144 319 316 319 213 0 309-160 309-319 0-140-100-325-297-552z m-15 744c-103 0-187-84-187-187s84-188 187-188 188 84 188 188-84 187-188 187z m0-312c-69 0-126 57-126 126 0 69 56 125 125 125 69 0 125-56 125-125 0-69-55-126-124-126z" horiz-adv-x="1000" />
<glyph glyph-name="glyph-20" unicode="&#xe894;" d="M1000 623c0 6 0 13-3 18-8 35-33 53-75 53l-813 0c-37 0-77-14-97-41-1-1-3-2-4-4-7-7-9-17-7-26-1-2-1-5-1-7l0-500c0-52 58-110 109-110l813 0c52 0 78 58 78 110l0 500c0 2 0 5 0 7z m-891 8l813 0c0 0 0 0 0 0l-422-336-421 335c10 2 22 1 30 1z m813-562l-813 0c-17 0-46 29-46 47l0 447 417-333c5-5 13-8 20-8s15 3 21 8l417 333 0-447c0-18 1-47-16-47z" horiz-adv-x="1000" />
<glyph glyph-name="glyph-21" unicode="&#xe895;" d="M938 445l-80 18c-6 20-15 39-24 57l43 72c17 26 25 64 0 89l-44 44c-24 24-65 20-90 3l-71-45c-18 9-37 17-57 24l-18 81c-5 30-31 62-66 62l-62 0c-35 0-56-33-63-62l-20-81c-21-6-41-15-61-25l-72 46c-25 17-66 21-90-3l-44-44c-25-25-17-63 0-89l45-76c-8-17-16-35-22-53l-80-18c-30-6-62-32-62-66l0-63c0-34 33-55 63-62l81-20c5-18 12-34 20-50l-45-76c-17-26-25-64 0-89l44-44c24-25 65-20 90-3l73 46c19-10 39-19 61-26l20-80c7-29 28-62 62-62l63 0c34 0 60 32 66 62l18 81c19 7 38 15 56 24l71-45c25-17 66-22 90 3l44 44c25 25 17 63 0 89l-43 72c9 17 16 35 22 54l82 20c29 7 62 28 62 62l0 63c0 34-32 60-62 66z m0-124c-3-2-8-5-14-6l-116-29-11-33c-5-15-11-30-19-45l-15-31 61-102c4-6 6-11 6-15l-41-41c-4 1-8 3-11 5l-103 65-32-16c-15-8-31-15-46-20l-35-11-25-117c-1-6-5-11-7-13l-56 0c-2 3-5 8-6 14l-29 116-33 10c-18 6-35 13-51 22l-32 16-103-65c-5-3-9-5-13-5l-41 40c0 4 2 9 6 14l63 107-15 30c-7 15-12 28-17 42l-11 33-114 28c-8 2-13 5-15 7l0 58c0 0 0 0 0 0 1 0 6 3 10 4l118 26 11 35c4 14 10 28 18 44l15 31-63 105c-4 7-6 12-6 16l41 41c4-2 8-3 11-5l104-66 33 16c16 9 33 16 50 22l33 10 29 114c2 8 4 13 6 16l58 0c0-1 4-7 5-11l26-119 34-11c16-5 32-11 48-20l32-16 100 64c5 3 9 4 13 4l41-39c0-4-2-9-6-14l-61-103 15-31c9-17 15-33 20-48l11-35 116-25c6-2 12-6 13-8l0-55z m-438 217c-103 0-188-84-188-188 0-103 85-188 188-188 104 0 189 85 189 188 0 104-85 188-189 188z m0-313c-69 0-125 56-125 125 0 69 56 125 125 125 69 0 125-56 125-125 0-69-56-125-125-125z" horiz-adv-x="1000" />
<glyph glyph-name="glyph-22" unicode="&#xe896;" d="M844 695l-187 0 0 60c0 52-42 94-94 94l-124 0c-52 0-94-42-94-94l0-60-189 0c-34 0-62-28-62-62l0-719c0-35 28-63 62-63l688 0c34 0 62 28 62 63l0 719c0 34-28 62-62 62z m-437 60c0 17 14 31 32 31l124 0c18 0 32-14 32-31l0-60-188 0 0 60z m437-841l-688 0 0 719 189 0 0-65c0 0-1-31 31-31 35 0 31 31 31 31l0 65 188 0 0-65c0 0-2-31 31-31 31 0 31 31 31 31l0 65 187 0 0-719z" horiz-adv-x="1000" />
<glyph glyph-name="glyph-23" unicode="&#xe897;" d="M992 573c-6 8-15 13-25 13l-98 0-200 171c-25 24-64 24-89 0l-197-171-80 0-50 173c-20 68-66 76-86 76l-133 0c-18 0-31-14-31-31s13-32 31-32l133 0c5 0 18 0 26-30l173-635c4-13 16-22 30-22l422 0c13 0 25 8 29 20l149 439c3 10 2 20-4 29z m-367 139l148-126-297 0 149 126z m171-565l-376 0-99 377 601 0-126-377z m-62-125c-43 0-78-35-78-78s35-79 78-79 79 35 79 79-35 78-79 78z m-281 0c-43 0-78-35-78-78s35-79 78-79 78 35 78 79-35 78-78 78z" horiz-adv-x="1000" />
<glyph glyph-name="glyph-24" unicode="&#xe898;" d="M968 170l0 252 15 8c11 6 17 16 17 28 0 11-6 22-16 28l-470 251c-10 5-21 5-30 0l-468-252c-10-5-16-16-16-27s6-22 16-28l206-109c-3-5-4-10-4-15l0-265c0-9 3-17 10-23 7-6 72-59 270-59 198 0 265 50 272 56 7 6 11 14 11 24l0 271c0 4-1 9-2 12l126 67 0-219c-18-11-31-31-31-54 0-34 28-62 63-62s62 28 62 62c0 23-13 43-31 54z m-249-113c-25-12-90-35-221-35-131 0-195 24-218 36l0 232 203-108c5-3 10-4 15-4 5 0 10 1 14 4l207 109 0-234z m-221 188l-402 213 403 216 404-215-405-214z" horiz-adv-x="1000" />
<glyph glyph-name="business-affiliate-network" unicode="&#xe899;" d="M374 511l-61 57c7 13 11 28 11 44 0 49-40 90-90 90-50 0-90-41-90-90 0-50 40-91 90-91 18 0 34 6 48 14l61-57c9 12 19 23 31 33z m257 7l81 136c8-2 16-4 25-4 50 0 90 41 90 90 0 50-40 91-90 91-50 0-90-41-90-91 0-24 10-47 26-63l-81-136c14-6 27-14 39-23z m279-114c-39 0-72-24-85-59l-112 11c0-1 0-1 0-2 0-15-1-29-4-43l112-11c7-43 44-76 89-76 50 0 90 40 90 90 0 50-40 90-90 90z m-310-354l-25 109c-14-5-29-8-44-10l25-110c-29-15-49-45-49-80 0-49 40-90 90-90 50 0 90 41 90 90 1 49-38 89-87 91z m-294 260l-140-47c-16 25-44 41-76 41-50 0-90-40-90-90 0-50 40-90 90-90 50 0 90 40 90 90 0 2 0 4 0 6l140 47c-6 14-11 28-14 43z" horiz-adv-x="1000" />
<glyph glyph-name="camera-1" unicode="&#xe89a;" d="M0 6l0 469q0 35 23 61t55 31l135 23 43 108q12 27 35 43t53 15l312 0q30 0 53-15t35-43l43-108 135-23q33-6 56-31t22-61l0-469q0-39-27-66t-67-28l-812 0q-39 0-67 28t-27 66z m63 0q0-13 8-22t23-9l812 0q14 0 23 9t8 22l0 469q0 27-25 31l-170 28-56 140q-8 20-30 20l-312 0q-22 0-30-20l-56-140-170-28q-25-4-25-31l0-469z m187 282q0 103 73 176t177 74 177-74 73-176-73-177-177-73-177 73-73 177z m63-15q5-77 65-128t137-45 128 65 45 137-66 128-137 45-128-65-44-137z m62 15q0 50 36 87t89 38q16 0 16-16t-16-16q-39 0-66-27t-28-66q0-16-15-16t-16 16z" horiz-adv-x="1000" />
<glyph glyph-name="Photography" unicode="&#xe89b;" d="M885-66l-729 0q-65 0-110 46t-46 110l0 417q0 65 46 110t110 46l83 0 52 52q23 23 58 37t67 15l209 0q33 0 68-15t58-37l52-52 82 0q65 0 111-46t45-110l0-417q0-65-45-110t-111-46z m-729 625q-21 0-37-16t-15-36l0-417q0-21 15-37t37-15l729 0q21 0 37 15t16 37l0 417q0 21-16 36t-37 16l-104 0q-21 0-36 15l-67 68q-22 21-53 21l-209 0q-30 0-51-21l-67-68q-15-15-38-15l-104 0z m365-105q-53 0-92-38t-39-92 39-92 92-38 92 38 38 92-38 92-92 38z m0 53q77 0 129-54t53-129q0-75-54-129t-128-53q-76 0-129 53t-53 129q0 76 53 129t129 54z m313 16q27 0 47-20t20-49-19-48-48-19-49 20-20 47q0 29 20 49t49 20z" horiz-adv-x="1041" />
<glyph glyph-name="SocialMedia" unicode="&#xe89c;" d="M633-31q82 0 141 62t60 146q0 45-21 94 7 39 7 76 0 149-101 254-100 104-245 104-31 0-60-7-50 33-109 33-84 0-142-61t-59-145q0-59 29-107-8-37-8-71 0-147 103-254 101-105 246-105 17 0 64 6 42-25 95-25z m-365 277q0 20 14 34t36 13q36 0 51-43 5-5 21-37 23-31 79-31 39 0 67 16t29 48q0 14-4 24t-18 16-19 10-26 9-24 6q-20 6-23 6-52 11-92 29-34 14-58 43t-23 72q0 69 55 103t137 34q88 0 140-41 44-41 44-79 0-20-15-35t-35-16q-14 0-24 6t-14 12-13 21q-23 54-89 54-33 0-58-14t-25-35q0-44 105-61 10-2 77-20 75-27 100-72 12-26 12-63 0-75-57-115t-145-39q-130 0-183 80-22 35-22 65z m37 589q68 0 126-28 28 3 43 3 187 0 320-137 131-137 131-326 0-20-5-65 18-52 18-105 0-127-89-219-90-92-216-92-62 0-113 21-19-3-46-3-188 0-321 137-133 136-133 326 0 26 4 55-24 55-24 123 0 127 88 217 90 93 217 93z" horiz-adv-x="938" />
<glyph glyph-name="WebAndApp" unicode="&#xe89d;" d="M469 819q194 0 331-137t138-332-138-331-331-138-331 138-138 331 138 332 331 137z m104-105l0 39q-53 14-104 14-94 0-176-39t-140-108l-28-35-19-30 154-153q0 6 1 15t15 23 37 14l0-104 103-105 0-103q49 0 70-1t46-6 32-16 9-30q32 16 44 23t28 20 19 22 9 33 5 45l0 66 51 52-51 52 0-104-53 0q0-21-16-37t-36-16-37 16-15 37 15 37 37 15l0 157q0 21-15 36t-37 15-37-15-15-36q0-44-6-76t-13-47-15-23-12-9l-7-2 0 157q0 42 21 73t58 30 58 31 20 73z" horiz-adv-x="938" />
<glyph glyph-name="Graphic" unicode="&#xe89e;" d="M909 790q49-49 24-112-135-339-487-548-17-10-29-12-16-104-95-171t-184-67q-24 0-46 4l-76 11-12 76q-20 127 55 223 68 86 180 104 5 17 10 27 209 353 548 488 19 7 39 7 43 0 73-30z m-771-805q71 0 121 44t58 114l-54 53q-77-8-123-68t-33-142q10-1 31-1z m255 234q38 21 93 61-84 84-85 86-35-48-62-93z m135 92q213 165 309 405-243-96-406-310z" horiz-adv-x="941" />
<glyph glyph-name="bell" unicode="&#xe89f;" d="M509-96q0 8-9 8-33 0-57 24t-23 57q0 9-9 9t-9-9q0-41 29-70t69-28q9 0 9 9z m-372 160h726q-149 168-149 465 0 28-13 58t-39 58-67 45-95 17-95-17-67-45-39-58-13-58q0-297-149-465z m827 0q0-29-21-50t-50-21h-250q0-59-42-101t-101-42-101 42-42 101h-250q-29 0-50 21t-21 50q28 24 51 49t47 67 42 89 27 115 11 145q0 84 66 157t171 89q-5 10-5 21 0 23 16 38t38 16 38-16 16-38q0-11-5-21 106-16 171-89t66-157q0-78 11-145t28-115 41-89 48-67 50-49z" horiz-adv-x="1000" />
<glyph glyph-name="RegisterBusiness" unicode="&#xe8a0;" d="M469-119q-65 0-111 46t-45 111l2 159-157-3q-65 0-112 46t-46 110 46 111 110 46l159 2-2 153q0 65 45 111t111 46 110-46 46-110l3-154 155-2q63 0 109-46t46-111-46-110-111-46l-153 3-3-160q0-64-46-110t-110-46z m-53 417l0-261q0-22 16-37t37-15 37 16 15 37l0 260 262 0q21 0 36 15t15 37-16 37-37 16l-260 0 0 260q0 22-15 37t-37 15-37-15-16-37l0-260-260 0q-22 0-37-16t-15-37 15-37 37-15l260 0z" horiz-adv-x="938" />
<glyph glyph-name="code-1" unicode="&#xe8a1;" d="M304 89q-44 0-74 30l-230 230 230 230q31 32 74 32t74-32q31-31 31-73t-31-74l-83-83 83-82q31-31 31-74t-31-74q-30-30-74-30z m399 0q-44 0-74 30-31 32-31 74t31 74l82 82-82 83q-31 31-31 74t31 73q30 32 73 32t74-32l230-230-230-230q-30-30-73-30z" horiz-adv-x="1006" />
<glyph glyph-name="pause" unicode="&#xf00e;" d="M0 5q0-27 19-46t45-19h127q27 0 45 19t19 46v691q0 27-19 45t-45 19h-127q-27 0-45-19t-19-45v-691z m480 0q0-27 19-46t45-19h127q26 0 45 19t19 46v691q0 27-19 45t-45 19h-127q-27 0-45-19t-19-45v-691z" horiz-adv-x="735.4" />
<glyph glyph-name="play" unicode="&#xf00f;" d="M0 11v677q0 39 22 52t53-8l564-349q20-14 20-33 0-9-5-18t-10-12l-5-4-564-349q-31-20-53-7t-22 51z" horiz-adv-x="658.7" />
<glyph glyph-name="to-end" unicode="&#xf010;" d="M0 25v679q0 41 21 46t64-18l537-339v311q0 21 18 39t38 18h114q39 0 62-17t22-40v-679q0-23-22-40t-62-17h-114q-21 0-38 18t-18 39v283l-537-340q-43-19-64-4t-21 61z" horiz-adv-x="876.5" />
<glyph glyph-name="to-start" unicode="&#xf011;" d="M0 33v634q0 24 17 42t42 17h117q24 0 41-17t17-42v-272l516 320q29 19 50 7t21-49v-646q0-37-21-49t-50 7l-516 319v-271q0-25-17-42t-41-18h-117q-24 0-41 18t-18 42z" horiz-adv-x="821.3" />
<glyph glyph-name="alert-outline" unicode="&#xf02a;" d="M500 767l-458-792h916m-458 625l314-542h-628m272 375v-166h84v166m-84-250v-83h84v83" horiz-adv-x="1000" />
<glyph glyph-name="Food" unicode="&#xf02f;" d="M0-108c0-25 17-42 42-42h916c25 0 42 17 42 42v41h-1000v-41z m917 125h83c0 262-200 475-458 496v45h41c25 0 42 17 42 42s-17 42-42 42h-166c-25 0-42-17-42-42s17-42 42-42h41v-45c-258-21-458-234-458-496h83 834z m-417 416c200 0 371-141 408-333h-816c37 192 208 333 408 333z m188-91l-21-38c62-37 112-91 141-158l38 17c-29 75-88 137-158 179z" horiz-adv-x="1000" />
<glyph glyph-name="Digital" unicode="&#xf034;" d="M0-18v736q0 42 29 71t70 29h359q41 0 70-29t29-71v-736q0-42-29-71t-70-30h-359q-41 0-70 29t-29 72z m234 61q0-19 13-32t31-13 31 14 14 31-14 31-31 12-31-12-13-31z" horiz-adv-x="556.6" />
<glyph glyph-name="stop" unicode="&#xf080;" d="M0 4v691q0 26 19 45t45 21h693q27 0 45-19t19-46v-691q0-27-19-46t-45-20h-693q-26 0-45 19t-19 46z" horiz-adv-x="821.3" />
<glyph glyph-name="link-ext" unicode="&#xf08e;" d="M786 332v-178q0-67-47-114t-114-47h-464q-67 0-114 47t-47 114v464q0 66 47 113t114 48h393q7 0 12-5t5-13v-36q0-8-5-13t-12-5h-393q-37 0-63-26t-27-63v-464q0-37 27-63t63-27h464q37 0 63 27t26 63v178q0 8 5 13t13 5h36q8 0 13-5t5-13z m214 482v-285q0-15-11-25t-25-11-25 11l-98 98-364-364q-5-6-13-6t-12 6l-64 64q-6 5-6 12t6 13l364 364-98 98q-11 11-11 25t11 25 25 11h285q15 0 25-11t11-25z" horiz-adv-x="1000" />
<glyph glyph-name="check-empty" unicode="&#xf096;" d="M625 707h-464q-37 0-63-26t-27-63v-464q0-37 27-63t63-27h464q37 0 63 27t26 63v464q0 37-26 63t-63 26z m161-89v-464q0-67-47-114t-114-47h-464q-67 0-114 47t-47 114v464q0 66 47 113t114 48h464q66 0 114-48t47-113z" horiz-adv-x="785.7" />
<glyph glyph-name="bookmark-empty" unicode="&#xf097;" d="M643 707h-572v-693l237 227 49 47 50-47 236-227v693z m7 72q12 0 24-5 19-8 29-23t11-35v-719q0-19-11-35t-29-23q-10-4-24-4-27 0-47 18l-246 236-246-236q-20-19-46-19-13 0-25 5-18 7-29 23t-11 35v719q0 19 11 35t29 23q12 5 25 5h585z" horiz-adv-x="714.3" />
<glyph glyph-name="twitter-1" unicode="&#xf099;" d="M904 622q-37-54-90-93 0-8 0-23 0-73-21-145t-64-139-103-117-144-82-181-30q-151 0-276 81 19-2 43-2 126 0 224 77-59 1-105 36t-64 89q19-3 34-3 24 0 48 6-63 13-104 62t-41 115v2q38-21 82-23-37 25-59 64t-22 86q0 49 25 91 68-83 164-133t208-55q-5 21-5 41 0 75 53 127t127 53q79 0 132-57 61 12 115 44-21-64-80-100 52 6 104 28z" horiz-adv-x="928.6" />
<glyph glyph-name="rss" unicode="&#xf09e;" d="M214 100q0-45-31-76t-76-31-76 31-31 76 31 76 76 31 76-31 31-76z m286-69q1-15-9-26-10-12-27-12h-75q-14 0-24 9t-11 23q-12 128-103 219t-219 103q-14 1-23 11t-9 24v75q0 16 12 26 9 10 24 10h3q89-7 170-45t145-101q63-63 101-145t45-171z m286-1q1-15-10-26-10-11-26-11h-80q-14 0-25 10t-10 23q-7 120-57 228t-129 188-188 129-227 57q-14 1-24 11t-10 24v80q0 16 11 26 10 10 25 10h1q147-8 280-67t238-164q104-104 164-238t67-280z" horiz-adv-x="785.7" />
<glyph glyph-name="hdd" unicode="&#xf0a0;" d="M580 171q0-18-13-31t-31-13-32 13-13 31 13 32 32 13 31-13 13-32z m143 0q0-18-13-31t-31-13-32 13-13 31 13 32 32 13 31-13 13-32z m63-89v179q0 7-6 12t-12 6h-679q-7 0-12-6t-6-12v-179q0-7 6-12t12-6h679q7 0 12 6t6 12z m-687 268h659l-88 269q-2 7-9 12t-14 5h-437q-7 0-14-5t-9-12z m758-89v-179q0-37-26-63t-63-26h-679q-36 0-63 26t-26 63v179q0 14 9 42l110 338q9 29 35 48t56 18h437q31 0 56-18t35-48l110-338q9-28 9-42z" horiz-adv-x="857.1" />
<glyph glyph-name="resize-full-alt" unicode="&#xf0b2;" d="M716 548l-198-198 198-198 80 80q17 18 39 8 22-9 22-33v-250q0-14-10-25t-26-11h-250q-23 0-32 23-10 21 7 38l81 81-198 198-198-198 80-81q17-17 8-38-10-23-33-23h-250q-15 0-25 11t-11 25v250q0 24 22 33 22 10 39-8l80-80 198 198-198 198-80-80q-11-11-25-11-7 0-14 3-22 9-22 33v250q0 14 11 25t25 11h250q23 0 33-23 9-21-8-38l-80-81 198-198 198 198-81 81q-17 17-7 38 9 23 32 23h250q15 0 26-11t10-25v-250q0-24-22-33-7-3-14-3-14 0-25 11z" horiz-adv-x="857.1" />
<glyph glyph-name="beaker" unicode="&#xf0c3;" d="M852 42q31-50 12-85t-78-36h-643q-59 0-78 36t12 85l280 443v222h-36q-14 0-25 11t-10 25 10 25 25 11h286q15 0 25-11t11-25-11-25-25-11h-36v-222z m-435 405l-151-240h397l-152 240-11 17v243h-71v-243z" horiz-adv-x="928.6" />
<glyph glyph-name="menu" unicode="&#xf0c9;" d="M857 100v-71q0-15-10-25t-26-11h-785q-15 0-25 11t-11 25v71q0 15 11 25t25 11h785q15 0 26-11t10-25z m0 286v-72q0-14-10-25t-26-10h-785q-15 0-25 10t-11 25v72q0 14 11 25t25 10h785q15 0 26-10t10-25z m0 285v-71q0-14-10-25t-26-11h-785q-15 0-25 11t-11 25v71q0 15 11 26t25 10h785q15 0 26-10t10-26z" horiz-adv-x="857.1" />
<glyph glyph-name="magic" unicode="&#xf0d0;" d="M664 526l164 163-60 60-164-163z m250 163q0-15-10-25l-718-718q-10-10-25-10t-25 10l-111 111q-10 10-10 25t10 25l718 718q10 10 25 10t25-10l111-111q10-10 10-25z m-754 106l54-16-54-17-17-55-17 55-55 17 55 16 17 55z m195-90l109-34-109-33-34-109-33 109-109 33 109 34 33 109z m519-267l55-17-55-16-17-55-17 55-54 16 54 17 17 55z m-357 357l54-16-54-17-17-55-17 55-54 17 54 16 17 55z" horiz-adv-x="928.6" />
<glyph glyph-name="gplus" unicode="&#xf0d5;" d="M802 341q0-117-49-207t-138-142-206-51q-83 0-159 32t-131 87-87 131-32 159 32 159 87 131 131 87 159 32q160 0 274-107l-111-107q-65 63-163 63-69 0-127-34t-92-94-34-130 34-130 92-94 127-34q46 0 85 13t64 32 44 43 27 47 12 41h-232v141h386q7-36 7-68z m484 68v-118h-117v-116h-117v116h-117v118h117v116h117v-116h117z" horiz-adv-x="1285.7" />
<glyph glyph-name="WM-Logo" unicode="&#xf0da;" d="M14 667l-6-6 0-311 0-310 5-6 5-6 52 0 52 0 121 121 121 121 121-121 121-121 9 0c10 0 16 3 20 11 1 3 2 23 2 61l0 57-132 132c-77 76-134 131-136 132-12 2-15-1-132-118-63-63-115-115-116-115 0 0-1 104 0 232 0 128-1 235-2 239-3 12-7 13-56 13l-44 0-5-5z m359 2c-8-6-9-8-9-69l0-58 132-131c78-78 133-132 136-132 3-1 7-1 10 0 4 1 44 39 122 118l117 116 0-237 0-238 5-5 5-5 46 0 46 0 4 5 5 4 0 313 0 312-6 5-6 5-50 0-50 0-122-121-121-122-122 122c-120 120-122 121-129 121-5 0-10-1-13-3z" horiz-adv-x="1000" />
<glyph glyph-name="open" unicode="&#xf0db;" d="M200 325c-28 0-50-22-50-50v-200c0-28 22-50 50-50s50 22 50 50v200c0 28-22 50-50 50z m200 0c-28 0-50-22-50-50v-83c0-28 22-50 50-50s50 22 50 50v83c0 28-22 50-50 50z m457 133l-274 275c-4 42-40 75-83 75s-79-33-82-75l-275-275h-143v-566h1000v566h-143z m-357 317c28 0 50-22 50-50s-22-50-50-50-50 22-50 50 22 50 50 50z m-76-83c13-30 42-50 76-50s64 20 76 50l234-234h-620l234 234z m-141-617c0-46-37-83-83-83s-83 37-83 83v200c0 46 37 83 83 83s83-37 83-83v-200z m200 117c0-46-37-84-83-84-19 0-36 7-50 17v-117c0-9-7-16-17-16s-16 7-16 16v184 83c0 46 37 83 83 83s83-37 83-83v-83z m184 0c9 0 16-8 16-17s-7-17-16-17h-117v-133h117c9 0 16-7 16-17s-7-16-16-16h-134c-9 0-16 7-16 16v334c0 9 7 16 16 16h134c9 0 16-7 16-16s-7-17-16-17h-117v-133h117z m216-184c0 0 0 0 0 0 0-2 0-3-1-5 0 0 0-1 0-1 0-1-1-3-2-4-1 0-1-1-2-2 0 0-1 0-1-1-1-1-2-2-4-2 0 0 0 0 0 0-2-1-4-1-6-1h0 0l0 0c-2 0-4 0-6 1-1 0-1 0-2 1-1 0-2 1-3 2-1 0-1 1-1 1-2 1-2 3-3 4 0 0-1 1-1 1 0 0 0 0 0 0l-101 253v-247c0-9-7-16-17-16s-16 7-16 16v334c0 0 0 0 0 0 0 2 0 3 1 5 0 0 0 1 0 1 1 1 1 2 2 3 1 1 1 2 2 3 0 0 1 0 1 1 1 1 3 2 4 2 0 0 0 0 0 0 1 1 2 1 3 1 1 0 2 0 3 0 0 0 0 0 1 0 1 0 3 0 5-1 0 0 1 0 1 0 1-1 2-2 4-2 0-1 1-1 1-2 1 0 1-1 1-1 1-1 2-3 3-4 0 0 0 0 0 0l101-253v247c0 9 8 16 17 16s16-7 16-16v-334z" horiz-adv-x="1000" />
<glyph glyph-name="sort" unicode="&#xf0dc;" d="M571 243q0-15-10-25l-250-250q-11-11-25-11t-25 11l-250 250q-11 10-11 25t11 25 25 11h500q14 0 25-11t10-25z m0 214q0-14-10-25t-25-11h-500q-15 0-25 11t-11 25 11 25l250 250q10 11 25 11t25-11l250-250q10-10 10-25z" horiz-adv-x="571.4" />
<glyph glyph-name="chronometer" unicode="&#xf0dd;" d="M943 504c8-7 19-7 26 0l26 26c7 7 7 18 0 25l-58 58c-8 8-19 8-26 0l-26-25c-7-7-7-19 0-26l3-2-18-18c-46 36-101 60-162 67v33h20c10 0 18 8 18 18v53c0 10-8 18-18 18h-115c-10 0-18-8-18-18v-53c0-10 8-18 18-18h20v-33c-61-7-116-31-162-67l-18 18 3 2c7 7 7 19 0 26l-26 25c-7 8-19 8-26 0l-58-58c-7-7-7-18 0-25l26-26c7-7 19-7 26 0l2 2 18-18c-43-54-69-123-69-198 0-177 145-321 322-321s321 144 321 321c0 75-26 144-69 198l18 18 2-2z m-272-461c-136 0-247 111-247 247s111 246 247 246 246-110 246-246-111-247-246-247z m-541 161c-17 0-31-14-31-32 0-18 14-32 31-32h173c4 0 7 1 10 2-9 20-15 41-20 62h-163v0z m182 234c-2 0-6 1-9 1h-271c-18 0-32-14-32-32 0-17 14-31 32-31h261c5 20 11 41 19 62z m-29-148c0 11 1 21 2 32h-209c-17 0-32-15-32-32s15-32 32-32h209c-1 10-2 21-2 32z m543 92c-6 8-17 12-26 7l-111-54c-14 5-30 5-44-3-23-14-31-44-17-67 14-23 44-31 67-17 14 8 22 22 24 36l101 71c8 6 11 18 6 27z m-135-97c-3-12-15-19-26-16-12 3-18 15-15 26 3 12 14 19 26 16 11-3 18-15 15-26z m49 127c10-5 22-2 27 8 6 9 2 22-7 27-10 6-22 2-28-7-3-7-3-15 1-21 1-2 4-5 7-7z m-71 19c11 0 20 9 20 20 0 11-9 20-20 20s-20-9-20-20c0-4 1-8 3-10 3-6 10-10 17-10z m3-282l0 0c-11-1-20-10-20-21 0-3 1-7 3-10 3-5 10-10 17-9 11 0 20 9 20 20 0 11-9 20-20 20z m70 19c-9-5-13-18-7-27l0 0c6-10 18-13 28-7 9 5 12 18 7 27-6 10-18 13-28 7z m79 60c-10 5-22 2-28-8-3-6-3-14 0-20 2-3 5-6 8-7 10-6 22-2 27 7 6 10 2 22-7 28z m-292 60c0 11-9 20-20 20-11 0-20-9-20-20 0-4 1-7 3-10 3-6 10-10 17-10 12 0 20 9 20 20z m-7-63c-10-6-13-18-7-27l0 0c5-10 18-13 27-7 10 5 13 17 7 27-6 9-18 13-27 7z m290 66c0-4 1-7 2-10 4-6 10-10 18-10 11 0 20 9 20 20 0 11-9 20-20 20-12 0-21-9-20-20z m-292 60c10-5 22-2 28 8l0 0c5 9 2 21-8 27-10 5-22 2-28-8-3-6-3-14 1-20 1-3 4-5 7-7z m78 60c0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 10 6 13 18 7 28-5 9-18 12-27 7 0 0-1 0-1 0 0 0 0-1 0-1-10-5-13-18-7-27l0 0c6-10 18-13 27-7z m3-244c-10 5-22 2-27-8-4-6-3-14 0-20 2-3 4-6 7-7 10-6 22-2 28 7 5 10 2 22-8 28z" horiz-adv-x="1000" />
<glyph glyph-name="Clothes-And-Personal-Belongings" unicode="&#xf0de;" d="M500 701c43 0 81 28 94 68-25-7-58-11-94-11-36 0-68 4-94 11 13-40 51-68 94-68z m499-50c-2 6-7 10-12 13l-191 88c-40 14-82 25-123 33-2 0-3 0-5 0-10 0-19-7-22-18-15-67-74-117-146-117-72 0-131 50-146 117-3 11-12 18-22 18-2 0-3 0-5 0-41-8-83-19-123-33l-191-88c-5-3-10-7-12-13-2-6-1-12 2-18l82-163c4-8 12-12 20-12 3 0 5 0 7 1l92 27v-548c0-13 10-23 22-23h548c12 0 22 10 22 23v548l92-27c2-1 5-1 7-1 8 0 16 4 20 12l83 163c2 6 3 12 1 18z" horiz-adv-x="1000" />
<glyph glyph-name="mail-alt" unicode="&#xf0e0;" d="M1000 454v-443q0-37-26-63t-63-27h-822q-36 0-63 27t-26 63v443q25-27 56-49 202-137 278-192 32-24 51-37t53-27 61-13h2q28 0 61 13t53 27 51 37q95 68 278 192 32 22 56 49z m0 164q0-44-27-84t-68-69q-210-146-262-181-5-4-23-17t-30-22-29-18-32-15-28-5h-2q-12 0-27 5t-32 15-30 18-30 22-23 17q-51 35-147 101t-114 80q-35 23-65 64t-31 77q0 43 23 72t66 29h822q36 0 63-26t26-63z" horiz-adv-x="1000" />
<glyph glyph-name="Cleaning" unicode="&#xf0e2;" d="M807 737l59-59-238-238c44-65 50-142 13-192l-263 264c50 37 127 31 191-14l238 239m-560-619c-84 84-135 184-149 277l203 87 310-310-87-203c-93 14-193 65-277 149z" horiz-adv-x="1000" />
<glyph glyph-name="exchange" unicode="&#xf0ec;" d="M1000 189v-107q0-7-5-12t-13-6h-768v-107q0-7-5-12t-13-6q-6 0-13 6l-178 178q-5 6-5 13 0 8 5 13l179 178q5 5 12 5 8 0 13-5t5-13v-107h768q7 0 13-5t5-13z m0 304q0-8-5-13l-179-178q-5-6-12-6-8 0-13 6t-5 12v107h-768q-7 0-13 6t-5 12v107q0 8 5 13t13 5h768v107q0 8 5 13t13 5q6 0 13-5l178-178q5-5 5-13z" horiz-adv-x="1000" />
<glyph glyph-name="Medical-Services" unicode="&#xf0f0;" d="M214 100q0-14-10-25t-25-11-25 11-11 25 11 25 25 11 25-11 10-25z m572-34q0-68-41-106t-108-39h-488q-67 0-108 39t-41 106q0 38 3 73t14 77 26 74 45 58 67 33q-12-29-12-67v-113q-32-11-52-39t-20-62q0-45 32-76t76-31 76 31 31 76q0 34-20 62t-52 39v113q0 35 14 52 74-58 165-58t165 58q13-17 13-52v-35q-59 0-101-42t-41-101v-50q-18-16-18-40 0-22 15-37t38-16 38 16 16 37q0 24-18 40v50q0 29 21 50t50 21 51-21 21-50v-50q-18-16-18-40 0-22 16-37t38-16 38 16 15 37q0 24-18 40v50q0 38-19 71t-52 52q0 6 0 24t0 27-1 23-4 26-7 22q38-8 67-33t45-58 26-74 14-77 3-73z m-179 498q0-88-63-151t-151-63-152 63-62 151 62 152 152 63 151-63 63-152z" horiz-adv-x="785.7" />
<glyph glyph-name="Drug-And-Medical-Equipment" unicode="&#xf0f1;" d="M714 457q0 15-10 25t-25 11-25-11-11-25 11-25 25-11 25 11 10 25z m72 0q0-34-20-62t-52-39v-220q0-89-73-152t-177-63-176 63-74 152v73q-91 12-153 72t-61 140v286q0 15 11 25t25 11q3 0 9-1 9 17 26 27t36 10q30 0 51-21t21-51-21-50-51-21q-18 0-36 10v-225q0-59 53-101t126-41 126 41 53 101v225q-18-10-36-10-30 0-51 21t-21 50 21 51 51 21q19 0 36-10t26-27q6 1 9 1 15 0 25-11t11-25v-286q0-80-61-140t-153-72v-73q0-59 52-101t126-42 126 42 53 101v220q-32 12-52 39t-20 62q0 45 32 76t76 31 76-31 31-76z" horiz-adv-x="785.7" />
<glyph glyph-name="bell-alt" unicode="&#xf0f3;" d="M509-96q0 8-9 8-33 0-57 24t-23 57q0 9-9 9t-9-9q0-41 29-70t69-28q9 0 9 9z m455 160q0-29-21-50t-50-21h-250q0-59-42-101t-101-42-101 42-42 101h-250q-29 0-50 21t-21 50q28 24 51 49t47 67 42 89 27 115 11 145q0 84 66 157t171 89q-5 10-5 21 0 23 16 38t38 16 38-16 16-38q0-11-5-21 106-16 171-89t66-157q0-78 11-145t28-115 41-89 48-67 50-49z" horiz-adv-x="1000" />
<glyph glyph-name="HomeAppliances" unicode="&#xf0f4;" d="M929 493q0 45-32 76t-76 31h-35v-214h35q45 0 76 31t32 76z m-929-429h1000q0-59-42-101t-101-42h-714q-59 0-101 42t-42 101z m1036 429q0-89-63-152t-152-62h-35v-18q0-52-37-88t-88-37h-393q-51 0-88 37t-37 88v410q0 15 11 26t25 10h642q89 0 152-63t63-151z" horiz-adv-x="1071.4" />
<glyph glyph-name="Edible-And-Groceries" unicode="&#xf0f5;" d="M357 814v-357q0-34-20-62t-51-39v-435q0-29-21-50t-51-21h-71q-29 0-50 21t-22 50v435q-31 11-51 39t-20 62v357q0 15 11 25t25 11 25-11 10-25v-232q0-14 11-25t25-11 25 11 11 25v232q0 15 11 25t25 11 25-11 10-25v-232q0-14 11-25t25-11 25 11 11 25v232q0 15 10 25t25 11 26-11 10-25z m429 0v-893q0-29-21-50t-51-21h-71q-29 0-50 21t-22 50v286h-125q-7 0-12 5t-5 13v446q0 74 52 127t126 52h143q15 0 25-11t11-25z" horiz-adv-x="785.7" />
<glyph glyph-name="plus-squared" unicode="&#xf0fe;" d="M714 314v72q0 14-10 25t-25 10h-179v179q0 15-11 25t-25 11h-71q-15 0-25-11t-11-25v-179h-178q-15 0-25-10t-11-25v-72q0-14 11-25t25-10h178v-179q0-14 11-25t25-11h71q15 0 25 11t11 25v179h179q14 0 25 10t10 25z m143 304v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113v536q0 66 47 113t114 48h535q67 0 114-48t47-113z" horiz-adv-x="857.1" />
<glyph glyph-name="angle-double-left" unicode="&#xf100;" d="M350 82q0-7-6-13l-28-28q-5-5-12-5t-13 5l-260 261q-6 5-6 12t6 13l260 260q5 6 13 6t12-6l28-28q6-5 6-13t-6-12l-219-220 219-219q6-6 6-13z m214 0q0-7-5-13l-28-28q-6-5-13-5t-13 5l-260 261q-6 5-6 12t6 13l260 260q6 6 13 6t13-6l28-28q5-5 5-13t-5-12l-220-220 220-219q5-6 5-13z" horiz-adv-x="571.4" />
<glyph glyph-name="angle-double-right" unicode="&#xf101;" d="M332 314q0-7-5-12l-261-261q-5-5-12-5t-13 5l-28 28q-6 6-6 13t6 13l219 219-219 220q-6 5-6 12t6 13l28 28q5 6 13 6t12-6l261-260q5-5 5-13z m214 0q0-7-5-12l-260-261q-6-5-13-5t-13 5l-28 28q-5 6-5 13t5 13l219 219-219 220q-5 5-5 12t5 13l28 28q6 6 13 6t13-6l260-260q5-5 5-13z" horiz-adv-x="571.4" />
<glyph glyph-name="angle-double-up" unicode="&#xf102;" d="M600 118q0-7-6-13l-28-28q-5-5-12-5t-13 5l-220 219-219-219q-5-5-13-5t-12 5l-28 28q-6 6-6 13t6 13l260 260q5 5 12 5t13-5l260-260q6-6 6-13z m0 214q0-7-6-13l-28-28q-5-5-12-5t-13 5l-220 220-219-220q-5-5-13-5t-12 5l-28 28q-6 6-6 13t6 13l260 260q5 6 12 6t13-6l260-260q6-6 6-13z" horiz-adv-x="642.9" />
<glyph glyph-name="angle-double-down" unicode="&#xf103;" d="M600 368q0-7-6-13l-260-260q-5-6-13-6t-12 6l-260 260q-6 6-6 13t6 13l28 28q5 5 12 5t13-5l219-220 220 220q5 5 13 5t12-5l28-28q6-6 6-13z m0 214q0-7-6-13l-260-260q-5-5-13-5t-12 5l-260 260q-6 6-6 13t6 13l28 28q5 6 12 6t13-6l219-219 220 219q5 6 13 6t12-6l28-28q6-6 6-13z" horiz-adv-x="642.9" />
<glyph glyph-name="angle-left" unicode="&#xf104;" d="M350 546q0-7-6-12l-219-220 219-219q6-6 6-13t-6-13l-28-28q-5-5-12-5t-13 5l-260 261q-6 5-6 12t6 13l260 260q5 6 13 6t12-6l28-28q6-5 6-13z" horiz-adv-x="357.1" />
<glyph glyph-name="angle-right" unicode="&#xf105;" d="M332 314q0-7-5-12l-261-261q-5-5-12-5t-13 5l-28 28q-6 6-6 13t6 13l219 219-219 220q-6 5-6 12t6 13l28 28q5 6 13 6t12-6l261-260q5-5 5-13z" horiz-adv-x="357.1" />
<glyph glyph-name="angle-up" unicode="&#xf106;" d="M600 189q0-7-6-12l-28-28q-5-6-12-6t-13 6l-220 219-219-219q-5-6-13-6t-12 6l-28 28q-6 5-6 12t6 13l260 260q5 6 12 6t13-6l260-260q6-5 6-13z" horiz-adv-x="642.9" />
<glyph glyph-name="angle-down" unicode="&#xf107;" d="M600 439q0-7-6-12l-260-261q-5-5-13-5t-12 5l-260 261q-6 5-6 12t6 13l28 28q5 6 12 6t13-6l219-219 220 219q5 6 13 6t12-6l28-28q6-5 6-13z" horiz-adv-x="642.9" />
<glyph glyph-name="imac" unicode="&#xf108;" d="M1000 296v465q0 7-5 12t-13 6h-893q-7 0-12-6t-6-12v-465q0-7 6-12t12-5h893q7 0 13 5t5 12z m71 465v-607q0-37-26-63t-63-27h-303q0-20 9-43t17-40 9-24q0-14-10-25t-25-11h-286q-15 0-25 11t-11 25q0 8 9 25t18 39 9 43h-304q-36 0-63 27t-26 63v607q0 37 26 63t63 26h893q37 0 63-26t26-63z" horiz-adv-x="1071.4" />
<glyph glyph-name="laptop" unicode="&#xf109;" d="M232 136q-37 0-63 26t-26 63v393q0 37 26 63t63 26h607q37 0 63-26t27-63v-393q0-37-27-63t-63-26h-607z m-18 482v-393q0-7 6-13t12-5h607q8 0 13 5t5 13v393q0 7-5 12t-13 6h-607q-7 0-12-6t-6-12z m768-518h89v-54q0-22-26-37t-63-16h-893q-36 0-63 16t-26 37v54h982z m-402-54q9 0 9 9t-9 9h-89q-9 0-9-9t9-9h89z" horiz-adv-x="1071.4" />
<glyph glyph-name="tablet" unicode="&#xf10a;" d="M357 64q0 15-10 25t-26 11-25-11-10-25 10-25 25-10 26 10 10 25z m214 90v535q0 8-5 13t-12 5h-465q-7 0-12-5t-6-13v-535q0-8 6-13t12-5h465q7 0 12 5t5 13z m72 535v-607q0-37-26-63t-63-26h-465q-36 0-63 26t-26 63v607q0 37 26 63t63 27h465q36 0 63-27t26-63z" horiz-adv-x="642.9" />
<glyph glyph-name="mobile" unicode="&#xf10b;" d="M259 64q0 19-13 32t-32 13-31-13-13-32 13-31 31-13 32 13 13 31z m116 90v392q0 8-5 13t-13 5h-286q-7 0-12-5t-5-13v-392q0-8 5-13t12-5h286q7 0 13 5t5 13z m-107 473q0 9-9 9h-89q-9 0-9-9t9-9h89q9 0 9 9z m161 9v-572q0-29-22-50t-50-21h-286q-29 0-50 21t-21 50v572q0 29 21 50t50 21h286q29 0 50-21t22-50z" horiz-adv-x="428.6" />
<glyph glyph-name="circle" unicode="&#xf111;" d="M857 350q0-117-57-215t-156-156-215-58-216 58-155 156-58 215 58 215 155 156 216 58 215-58 156-156 57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="Information-Technology" unicode="&#xf120;" d="M327 302l-261-261q-5-5-12-5t-13 5l-28 28q-6 6-6 13t6 13l219 219-219 220q-6 5-6 12t6 13l28 28q5 6 13 6t12-6l261-260q5-5 5-13t-5-12z m602-256v-35q0-8-5-13t-13-5h-536q-8 0-13 5t-5 13v35q0 8 5 13t13 5h536q8 0 13-5t5-13z" horiz-adv-x="928.6" />
<glyph glyph-name="code" unicode="&#xf121;" d="M344 69l-28-28q-5-5-12-5t-13 5l-260 261q-6 5-6 12t6 13l260 260q5 6 13 6t12-6l28-28q6-5 6-13t-6-12l-219-220 219-219q6-6 6-13t-6-13z m330 596l-208-721q-2-7-9-11t-13-1l-34 9q-8 3-11 9t-2 14l209 720q2 8 8 11t13 2l35-10q7-2 11-9t1-13z m367-363l-260-261q-6-5-13-5t-13 5l-28 28q-5 6-5 13t5 13l219 219-219 220q-5 5-5 12t5 13l28 28q6 6 13 6t13-6l260-260q5-5 5-13t-5-12z" horiz-adv-x="1071.4" />
<glyph glyph-name="star-half-alt" unicode="&#xf123;" d="M662 316l143 140-198 29-37 5-17 34-89 179v-537l33-17 178-94-34 198-6 37z m252 146l-202-197 48-279q2-19-4-29t-19-11q-9 0-22 7l-251 132-250-132q-13-7-23-7-12 0-19 11t-3 29l48 279-203 197q-18 18-13 33t30 20l280 40 126 254q11 23 27 23 16 0 28-23l125-254 280-40q25-4 31-20t-14-33z" horiz-adv-x="928.6" />
<glyph glyph-name="direction" unicode="&#xf124;" d="M782 655l-357-714q-10-20-32-20-3 0-8 1-13 3-20 13t-8 22v322h-321q-13 0-22 7t-13 20 2 23 17 17l714 357q7 4 16 4 15 0 25-10 9-8 10-20t-3-22z" horiz-adv-x="785.7" />
<glyph glyph-name="crop" unicode="&#xf125;" d="M311 136h332v332z m-25 25l332 332h-332v-332z m643-43v-107q0-8-5-13t-13-5h-125v-125q0-8-5-13t-13-5h-107q-8 0-13 5t-5 13v125h-482q-8 0-13 5t-5 13v482h-125q-8 0-13 5t-5 13v107q0 8 5 13t13 5h125v125q0 8 5 13t13 5h107q8 0 13-5t5-13v-125h475l137 138q6 5 13 5t13-5q5-6 5-13t-5-13l-138-137v-475h125q8 0 13-5t5-13z" horiz-adv-x="928.6" />
<glyph glyph-name="unlink" unicode="&#xf127;" d="M245 141l-143-143q-6-5-13-5t-12 5q-6 6-6 13t6 13l142 142q6 5 13 5t13-5q5-5 5-12t-5-13z m94-23v-179q0-8-5-13t-13-5-12 5-5 13v179q0 8 5 13t12 5 13-5 5-13z m-125 125q0-8-5-13t-13-5h-178q-8 0-13 5t-5 13 5 13 13 5h178q8 0 13-5t5-13z m706-72q0-66-48-113l-82-81q-46-47-113-47-68 0-114 48l-186 187q-12 12-24 31l134 10 152-153q15-15 38-15t38 15l82 81q16 16 16 37 0 23-16 38l-153 154 10 133q20-11 31-23l188-188q47-48 47-114z m-345 404l-133-10-152 153q-16 16-38 16-22 0-38-15l-82-82q-16-15-16-37 0-22 16-38l153-153-10-134q-20 12-32 24l-187 187q-47 48-47 114 0 67 47 113l82 82q47 46 114 46 67 0 114-47l186-187q12-12 23-32z m354-46q0-8-5-13t-13-5h-179q-8 0-13 5t-5 13 5 12 13 5h179q8 0 13-5t5-12z m-304 303v-178q0-8-5-13t-13-5-13 5-5 13v178q0 8 5 13t13 5 13-5 5-13z m227-84l-143-143q-6-5-13-5t-12 5q-5 6-5 13t5 13l143 143q5 5 12 5t13-5q5-6 5-13t-5-13z" horiz-adv-x="928.6" />
<glyph glyph-name="info" unicode="&#xf129;" d="M357 100v-71q0-15-10-25t-26-11h-285q-15 0-25 11t-11 25v71q0 15 11 25t25 11h35v214h-35q-15 0-25 11t-11 25v71q0 15 11 25t25 11h214q15 0 25-11t11-25v-321h35q15 0 26-11t10-25z m-71 643v-107q0-15-11-25t-25-11h-143q-14 0-25 11t-11 25v107q0 14 11 25t25 11h143q15 0 25-11t11-25z" horiz-adv-x="357.1" />
<glyph glyph-name="attention-alt" unicode="&#xf12a;" d="M286 154v-125q0-15-11-25t-25-11h-143q-14 0-25 11t-11 25v125q0 14 11 25t25 10h143q15 0 25-10t11-25z m17 589l-16-429q-1-14-12-25t-25-10h-143q-14 0-25 10t-12 25l-15 429q-1 14 10 25t24 11h179q14 0 25-11t10-25z" horiz-adv-x="357.1" />
<glyph glyph-name="ellipsis" unicode="&#xf141;" d="M214 439v-107q0-22-15-38t-38-15h-107q-23 0-38 15t-16 38v107q0 23 16 38t38 16h107q22 0 38-16t15-38z m286 0v-107q0-22-16-38t-38-15h-107q-22 0-38 15t-15 38v107q0 23 15 38t38 16h107q23 0 38-16t16-38z m286 0v-107q0-22-16-38t-38-15h-107q-22 0-38 15t-16 38v107q0 23 16 38t38 16h107q23 0 38-16t16-38z" horiz-adv-x="785.7" />
<glyph glyph-name="ellipsis-vert" unicode="&#xf142;" d="M214 154v-108q0-22-15-37t-38-16h-107q-23 0-38 16t-16 37v108q0 22 16 38t38 15h107q22 0 38-15t15-38z m0 285v-107q0-22-15-38t-38-15h-107q-23 0-38 15t-16 38v107q0 23 16 38t38 16h107q22 0 38-16t15-38z m0 286v-107q0-22-15-38t-38-16h-107q-23 0-38 16t-16 38v107q0 22 16 38t38 16h107q22 0 38-16t15-38z" horiz-adv-x="214.3" />
<glyph glyph-name="ok-squared" unicode="&#xf14a;" d="M382 125l343 343q11 10 11 25t-11 25l-57 57q-11 11-25 11t-25-11l-261-261-118 118q-10 11-25 11t-25-11l-57-57q-10-10-10-25t10-25l200-200q11-10 25-10t25 10z m475 493v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113v536q0 66 47 113t114 48h535q67 0 114-48t47-113z" horiz-adv-x="857.1" />
<glyph glyph-name="compass" unicode="&#xf14e;" d="M357 243l143 71-143 72v-143z m214 330v-303l-285-143v303z m161-223q0 83-41 152t-110 111-152 41-153-41-110-111-41-152 41-152 110-111 153-41 152 41 110 111 41 152z m125 0q0-117-57-215t-156-156-215-58-216 58-155 156-58 215 58 215 155 156 216 58 215-58 156-156 57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="sort-alt-up" unicode="&#xf160;" d="M411 46q0-6-6-13l-178-178q-5-5-13-5-6 0-12 5l-179 179q-8 9-4 19 4 11 17 11h107v768q0 8 5 13t13 5h107q8 0 13-5t5-13v-768h107q8 0 13-5t5-13z m589-71v-107q0-8-5-13t-13-5h-464q-8 0-13 5t-5 13v107q0 8 5 13t13 5h464q8 0 13-5t5-13z m-107 286v-107q0-8-5-13t-13-5h-357q-8 0-13 5t-5 13v107q0 8 5 13t13 5h357q8 0 13-5t5-13z m-107 285v-107q0-7-5-12t-13-6h-250q-8 0-13 6t-5 12v107q0 8 5 13t13 5h250q8 0 13-5t5-13z m-107 286v-107q0-8-5-13t-13-5h-143q-8 0-13 5t-5 13v107q0 8 5 13t13 5h143q8 0 13-5t5-13z" horiz-adv-x="1000" />
<glyph glyph-name="sort-alt-down" unicode="&#xf161;" d="M679-25v-107q0-8-5-13t-13-5h-143q-8 0-13 5t-5 13v107q0 8 5 13t13 5h143q8 0 13-5t5-13z m-268 71q0-6-6-13l-178-178q-5-5-13-5-6 0-12 5l-179 179q-8 9-4 19 4 11 17 11h107v768q0 8 5 13t13 5h107q8 0 13-5t5-13v-768h107q8 0 13-5t5-13z m375 215v-107q0-8-5-13t-13-5h-250q-8 0-13 5t-5 13v107q0 8 5 13t13 5h250q8 0 13-5t5-13z m107 285v-107q0-7-5-12t-13-6h-357q-8 0-13 6t-5 12v107q0 8 5 13t13 5h357q8 0 13-5t5-13z m107 286v-107q0-8-5-13t-13-5h-464q-8 0-13 5t-5 13v107q0 8 5 13t13 5h464q8 0 13-5t5-13z" horiz-adv-x="1000" />
<glyph glyph-name="dropbox" unicode="&#xf16b;" d="M224 456l276-171-191-159-273 178z m551-310v-60l-274-164v-1l0 1-1-1v1l-273 164v60l82-54 191 159v1l1-1 0 1v-1l192-159z m-466 638l191-159-276-169-188 150z m467-328l188-152-273-178-191 159z m-85 328l273-178-188-150-276 169z" horiz-adv-x="1000" />
<glyph glyph-name="instagram" unicode="&#xf16d;" d="M571 350q0 59-41 101t-101 42-101-42-42-101 42-101 101-42 101 42 41 101z m77 0q0-91-64-156t-155-64-156 64-64 156 64 156 156 64 155-64 64-156z m61 229q0-21-15-36t-37-15-36 15-15 36 15 36 36 15 37-15 15-36z m-280 123q-4 0-43 0t-59 0-54-2-57-5-40-11q-28-11-49-32t-33-49q-6-16-10-40t-6-58-1-53 0-59 0-43 0-43 0-59 1-53 6-58 10-40q12-28 33-49t49-32q16-6 40-11t57-5 54-2 59 0 43 0 42 0 59 0 54 2 58 5 39 11q28 11 50 32t32 49q6 16 10 40t6 58 1 53 0 59 0 43 0 43 0 59-1 53-6 58-10 40q-11 28-32 49t-50 32q-16 6-39 11t-58 5-54 2-59 0-42 0z m428-352q0-128-3-177-5-116-69-180t-179-69q-50-3-177-3t-177 3q-116 6-180 69t-69 180q-3 49-3 177t3 177q5 116 69 180t180 69q49 3 177 3t177-3q116-6 179-69t69-180q3-49 3-177z" horiz-adv-x="857.1" />
<glyph glyph-name="windows" unicode="&#xf17a;" d="M381 289v-364l-381 53v311h381z m0 414v-367h-381v315z m548-414v-439l-507 70v369h507z m0 490v-443h-507v373z" horiz-adv-x="928.6" />
<glyph glyph-name="content-cut" unicode="&#xf190;" d="M792 725l-250-250 83-83 292 291v42m-417-396c-12 0-21 9-21 21s9 21 21 21 21-9 21-21-9-21-21-21m-250-312c-46 0-83 37-83 83 0 46 37 83 83 83s83-37 83-83c0-46-37-83-83-83m0 500c-46 0-83 37-83 83 0 46 37 83 83 83s83-37 83-83c0-46-37-83-83-83m152 15c9 21 15 43 15 68 0 92-75 167-167 167s-167-75-167-167 75-167 167-167c25 0 48 6 68 15l99-98-99-98c-20 9-43 15-68 15-92 0-167-75-167-167s75-167 167-167 167 75 167 167c0 25-6 48-15 68l98 99 292-292h125v42l-515 515z" horiz-adv-x="1000" />
<glyph glyph-name="plus-squared-alt" unicode="&#xf196;" d="M643 404v-36q0-8-5-13t-13-5h-196v-196q0-8-5-13t-13-5h-36q-8 0-13 5t-5 13v196h-196q-8 0-13 5t-5 13v36q0 7 5 12t13 5h196v197q0 8 5 13t13 5h36q8 0 13-5t5-13v-197h196q8 0 13-5t5-12z m71-250v464q0 37-26 63t-63 26h-464q-37 0-63-26t-27-63v-464q0-37 27-63t63-27h464q37 0 63 27t26 63z m72 464v-464q0-67-47-114t-114-47h-464q-67 0-114 47t-47 114v464q0 66 47 113t114 48h464q66 0 114-48t47-113z" horiz-adv-x="785.7" />
<glyph glyph-name="Educational" unicode="&#xf19d;" d="M990 384l10-177q2-38-46-71t-131-52-180-20-180 20-131 52-46 71l10 177 320-101q12-4 27-4t27 4z m296 180q0-12-13-17l-625-196q-2-1-5-1t-6 1l-364 115q-24-19-39-63t-19-99q35-20 35-61 0-39-32-60l32-242q1-7-4-13-5-7-14-7h-107q-8 0-13 7-6 6-5 13l33 242q-33 21-33 60 0 41 36 62 7 115 55 184l-186 58q-12 5-12 17t12 18l625 196q3 1 6 1t5-1l625-196q13-5 13-18z" horiz-adv-x="1285.7" />
<glyph glyph-name="crop-1" unicode="&#xf19e;" d="M292 142v666h-84v-166h-166v-84h166v-416c0-46 38-84 84-84h416v-166h84v166h166v84m-250 83h84v333c0 47-38 84-84 84h-333v-84h333v-333z" horiz-adv-x="1000" />
<glyph glyph-name="google" unicode="&#xf1a0;" d="M429 411h404q7-37 7-71 0-121-51-216t-145-149-215-54q-88 0-167 34t-137 91-91 137-34 167 34 167 91 137 137 91 167 34q167 0 287-113l-117-112q-68 67-170 67-72 0-133-37t-97-98-36-136 36-136 97-98 133-37q48 0 89 14t67 33 46 46 28 49 13 43h-243v147z" horiz-adv-x="857.1" />
<glyph glyph-name="paw" unicode="&#xf1b0;" d="M435 587q0-34-10-64t-35-51-59-22q-42 0-77 32t-51 76-17 84q0 33 10 63t36 52 58 22q43 0 78-32t51-76 16-84z m-191-270q0-45-23-77t-66-33q-43 0-79 31t-56 74-20 85q0 45 23 78t67 33q42 0 79-31t56-75 19-85z m220 15q66 0 143-54t127-132 52-142q0-26-10-43t-27-25-36-12-42-3q-38 0-105 25t-102 26q-36 0-107-25t-112-25q-102 0-102 82 0 48 31 106t78 108 105 81 107 33z m134 118q-34 0-59 22t-35 51-11 64q0 41 17 84t51 76 77 32q34 0 59-22t35-52 11-63q0-41-17-84t-51-76-77-32z m241 58q43 0 66-33t24-78q0-41-20-85t-56-74-79-31q-43 0-66 33t-24 77q0 41 20 85t56 75 79 31z" horiz-adv-x="928.6" />
<glyph glyph-name="cube" unicode="&#xf1b2;" d="M500-59l357 195v355l-357-130v-420z m-36 483l390 141-390 142-389-142z m465 140v-428q0-20-10-37t-28-26l-393-214q-15-9-34-9t-34 9l-393 214q-17 10-27 26t-10 37v428q0 23 13 41t34 26l393 143q12 5 24 5t25-5l393-143q21-8 34-26t13-41z" horiz-adv-x="1000" />
<glyph glyph-name="cubes" unicode="&#xf1b3;" d="M357-61l214 107v176l-214-92v-191z m-36 254l226 96-226 97-225-97z m608-254l214 107v176l-214-92v-191z m-36 254l225 96-225 97-226-97z m-250 163l214 92v149l-214-92v-149z m-36 212l246 105-246 106-246-106z m607-289v-233q0-20-10-37t-29-26l-250-125q-14-8-32-8t-32 8l-250 125q-2 1-4 2-1-1-4-2l-250-125q-14-8-32-8t-31 8l-250 125q-19 9-29 26t-11 37v233q0 21 12 39t32 26l242 104v223q0 22 12 40t31 26l250 107q13 6 28 6t28-6l250-107q20-9 32-26t12-40v-223l242-104q20-8 32-26t11-39z" horiz-adv-x="1285.7" />
<glyph glyph-name="Vehicle" unicode="&#xf1b9;" d="M268 243q0 37-26 63t-63 26-63-26-27-63 27-63 63-26 63 26 26 63z m20 178h567l-50 200q-1 4-8 9t-11 6h-429q-5 0-12-6t-7-9z m766-178q0 37-27 63t-63 26-63-26-26-63 26-63 63-26 63 26 27 63z m89 53v-214q0-8-5-13t-13-5h-54v-71q0-45-31-76t-76-31-76 31-31 76v71h-571v-71q0-45-31-76t-76-31-76 31-32 76v71h-53q-8 0-13 5t-5 13v214q0 52 37 89t88 36h16l58 234q13 53 58 88t100 36h429q54 0 100-36t58-88l58-234h16q52 0 88-36t37-89z" horiz-adv-x="1142.9" />
<glyph glyph-name="database" unicode="&#xf1c0;" d="M429 421q132 0 247 24t181 71v-95q0-38-57-71t-157-52-214-19-215 19-156 52-58 71v95q66-47 181-71t248-24z m0-428q132 0 247 24t181 71v-95q0-39-57-72t-157-52-214-19-215 19-156 52-58 72v95q66-47 181-71t248-24z m0 214q132 0 247 24t181 71v-95q0-38-57-71t-157-52-214-20-215 20-156 52-58 71v95q66-47 181-71t248-24z m0 643q116 0 214-19t157-52 57-72v-71q0-39-57-72t-157-52-214-19-215 19-156 52-58 72v71q0 39 58 72t156 52 215 19z" horiz-adv-x="857.1" />
<glyph glyph-name="codeopen" unicode="&#xf1cb;" d="M121 198l336-225v201l-186 124z m-35 80l108 72-108 72v-144z m457-305l337 225-151 100-186-124v-201z m-43 275l152 102-152 102-152-102z m-229 154l186 124v201l-336-225z m535-52l108-72v144z m-77 52l151 100-337 225v-201z m271 100v-304q0-23-19-36l-457-305q-12-7-24-7t-24 7l-457 305q-19 13-19 36v304q0 23 19 36l457 305q12 7 24 7t24-7l457-305q19-13 19-36z" horiz-adv-x="1000" />
<glyph glyph-name="paper-plane" unicode="&#xf1d8;" d="M984 844q19-13 15-36l-142-857q-3-16-18-25-8-5-18-5-6 0-13 3l-253 104-135-165q-10-13-27-13-7 0-12 2-11 4-17 13t-7 21v195l482 590-596-516-221 91q-20 8-22 30-1 23 18 33l928 536q9 5 18 5 11 0 20-6z" horiz-adv-x="1000" />
<glyph glyph-name="telegram" unicode="&#xf1d9;" d="M984 844q19-13 15-36l-142-857q-3-16-18-25-8-5-18-5-6 0-13 3l-294 120-166-182q-10-12-27-12-7 0-12 2-11 4-17 13t-6 21v252l-264 108q-20 8-22 30-2 22 18 33l928 536q20 12 38-1z m-190-837l123 739-800-462 187-76 482 356-267-444z" horiz-adv-x="1000" />
<glyph glyph-name="sliders" unicode="&#xf1de;" d="M196 64v-71h-196v71h196z m197 72q14 0 25-11t11-25v-143q0-14-11-25t-25-11h-143q-14 0-25 11t-11 25v143q0 15 11 25t25 11h143z m89 214v-71h-482v71h482z m-357 286v-72h-125v72h125z m732-572v-71h-411v71h411z m-536 643q15 0 26-10t10-26v-142q0-15-10-25t-26-11h-142q-15 0-25 11t-11 25v142q0 15 11 26t25 10h142z m358-286q14 0 25-10t10-25v-143q0-15-10-25t-25-11h-143q-15 0-25 11t-11 25v143q0 14 11 25t25 10h143z m178-71v-71h-125v71h125z m0 286v-72h-482v72h482z" horiz-adv-x="857.1" />
<glyph glyph-name="Sport" unicode="&#xf1e3;" d="M340 395l160 116 160-116-61-188h-198z m160 455q102 0 194-40t160-106 106-160 40-194-40-194-106-160-160-106-194-40-194 40-160 106-106 160-40 194 40 194 106 160 160 106 194 40z m345-753q84 113 84 253v2l-57-50-134 125 35 180 75-6q-84 115-217 157l29-69-160-89-160 89 29 69q-133-42-217-157l76 6 34-180-134-125-57 50v-2q0-140 84-253l16 73 182-22 78-166-65-39q65-22 134-22t134 22l-65 39 78 166 182 22z" horiz-adv-x="1000" />
<glyph glyph-name="plug" unicode="&#xf1e6;" d="M979 597q21-21 21-50t-21-51l-223-223 83-84-89-89q-91-91-217-104t-230 56l-202-202h-101v101l202 202q-69 103-56 230t104 217l89 89 84-83 223 223q21 21 51 21t50-21 21-50-21-51l-223-223 131-131 223 223q22 21 51 21t50-21z" horiz-adv-x="1000" />
<glyph glyph-name="wifi" unicode="&#xf1eb;" d="M571 0q-11 0-51 41t-41 52q0 18 35 30t57 13 58-13 35-30q0-11-41-52t-52-41z m151 151q-1 0-22 14t-57 28-72 14-71-14-57-28-22-14q-10 0-52 42t-42 52q0 7 5 13 44 43 109 67t130 25 131-25 109-67q5-6 5-13 0-10-42-52t-52-42z m152 152q-6 0-12 5-76 58-141 86t-150 27q-47 0-95-12t-83-29-63-35-44-30-18-12q-9 0-51 42t-42 52q0 7 6 12 74 74 178 115t212 40 213-40 178-115q6-5 6-12 0-10-42-52t-52-42z m152 151q-6 0-13 5-99 88-207 132t-235 45-234-45-207-132q-7-5-13-5-9 0-51 42t-43 52q0 7 6 13 104 104 248 161t294 57 295-57 248-161q5-6 5-13 0-10-42-52t-51-42z" horiz-adv-x="1142.9" />
<glyph glyph-name="trash" unicode="&#xf1f8;" d="M286 82v393q0 8-5 13t-13 5h-36q-8 0-13-5t-5-13v-393q0-8 5-13t13-5h36q8 0 13 5t5 13z m143 0v393q0 8-5 13t-13 5h-36q-8 0-13-5t-5-13v-393q0-8 5-13t13-5h36q8 0 13 5t5 13z m142 0v393q0 8-5 13t-12 5h-36q-8 0-13-5t-5-13v-393q0-8 5-13t13-5h36q7 0 12 5t5 13z m-303 554h250l-27 65q-4 5-9 6h-177q-6-1-10-6z m518-18v-36q0-8-5-13t-13-5h-54v-529q0-46-26-80t-63-34h-464q-37 0-63 33t-27 79v531h-53q-8 0-13 5t-5 13v36q0 8 5 13t13 5h172l39 93q9 21 31 35t44 15h178q23 0 44-15t30-35l39-93h173q8 0 13-5t5-13z" horiz-adv-x="785.7" />
<glyph glyph-name="Engineering" unicode="&#xf1fa;" d="M292 683v-83h125v-83h-125l-84-84v-125h-83v125h-83v-333h83v125h83v-125h125l84-83h333v166h83v-125h125v417h-125v-125h-83v167h-250v83h125v83h-333z" horiz-adv-x="1000" />
<glyph glyph-name="eyedropper" unicode="&#xf1fb;" d="M948 798q52-53 52-127t-52-126l-126-124 58-58q6-6 6-13t-6-13l-117-117q-6-6-13-6t-13 6l-58 59-337-337q-21-21-50-21h-113l-143-71-36 36 71 143v113q0 29 21 50l337 337-59 58q-6 6-6 13t6 13l117 117q6 6 13 6t13-6l58-58 124 126q52 52 126 52t127-52z m-662-769l321 321-107 107-321-321v-107h107z" horiz-adv-x="1000" />
<glyph glyph-name="brush" unicode="&#xf1fc;" d="M901 850q39 0 69-26t29-65q0-35-25-84-185-351-260-420-54-51-121-51-71 0-121 52t-51 123q0 71 52 118l356 323q33 30 72 30z m-507-577q22-42 59-73t84-42l1-40q2-118-72-193t-195-75q-68 0-121 26t-85 71-49 102-16 123q4-3 23-17t35-25 32-20 26-9q23 0 31 20 14 37 32 63t39 42 49 27 57 14 70 6z" horiz-adv-x="1000" />
<glyph glyph-name="birthday" unicode="&#xf1fd;" d="M1000 64v-214h-1000v214q25 0 47 8t33 15 27 21q16 15 28 22t32 6q13 0 24-4t18-9 18-15q16-14 26-21t33-15 48-8q25 0 47 8t33 15 26 21q12 11 18 15t18 9 24 4q20 0 32-6t28-22q16-13 27-21t32-15 48-8 47 8 33 15 26 21q17 15 29 22t32 6q19 0 31-6t28-22q16-13 27-21t33-15 47-8z m0 179v-107q-13 0-25 4t-17 8-18 15q-16 14-26 21t-33 15-47 8q-26 0-48-8t-33-15-26-21q-12-10-18-15t-18-8-24-4q-20 0-32 6t-28 21q-17 14-27 21t-32 15-48 8q-25 0-47-8t-33-15-27-21q-11-10-18-15t-17-8-24-4q-20 0-32 6t-29 21q-15 14-26 21t-33 15-47 8q-26 0-48-8t-32-15-27-21q-16-15-28-21t-32-6v107q0 45 31 76t76 31h36v250h143v-250h143v250h142v-250h143v250h143v-250h36q45 0 76-31t31-76z m-714 482q0-43-20-66t-52-23q-29 0-50 21t-21 50q0 16 5 29t13 19 18 15 17 18 13 25 5 37q22 0 47-41t25-84z m285 0q0-43-20-66t-51-23q-30 0-50 21t-21 50q0 16 5 29t13 19 17 15 18 18 13 25 5 37q21 0 46-41t25-84z m286 0q0-43-20-66t-51-23q-30 0-51 21t-21 50q0 16 6 29t13 19 17 15 17 18 13 25 6 37q21 0 46-41t25-84z" horiz-adv-x="1000" />
<glyph glyph-name="chart-pie" unicode="&#xf200;" d="M429 353l304-304q-59-61-138-94t-166-34q-117 0-216 58t-155 156-58 215 58 215 155 156 216 58v-426z m104-3h431q0-88-33-167t-94-138z m396 71h-429v429q117 0 215-57t156-156 58-216z" horiz-adv-x="1000" />
<glyph glyph-name="chart-line" unicode="&#xf201;" d="M1143-7v-72h-1143v858h71v-786h1072z m-72 696v-242q0-12-10-17t-20 4l-68 68-353-353q-6-6-13-6t-13 6l-130 130-232-233-107 108 327 326q5 6 12 6t13-6l130-130 259 259-67 68q-9 8-5 19t17 11h243q7 0 12-5t5-13z" horiz-adv-x="1142.9" />
<glyph glyph-name="toggle-off" unicode="&#xf204;" d="M643 350q0 58-23 111t-61 91-91 61-111 23-111-23-91-61-61-91-23-111 23-111 61-91 91-61 111-23 111 23 91 61 61 91 23 111z m428 0q0 58-22 111t-61 91-91 61-111 23h-216q67-50 106-125t38-161-38-161-106-125h216q58 0 111 23t91 61 61 91 22 111z m72 0q0-72-29-139t-76-113-114-77-138-28h-429q-72 0-138 28t-114 77-76 113-29 139 29 139 76 114 114 76 138 28h429q72 0 138-28t114-76 76-114 29-139z" horiz-adv-x="1142.9" />
<glyph glyph-name="toggle-on" unicode="&#xf205;" d="M0 350q0 73 29 139t76 114 114 76 138 28h429q72 0 138-28t114-76 76-114 29-139-29-139-76-113-114-77-138-28h-429q-72 0-138 28t-114 77-76 113-29 139z m786-286q58 0 111 23t91 61 61 91 22 111-22 111-61 91-91 61-111 23-111-23-91-61-61-91-23-111 23-111 61-91 91-61 111-23z" horiz-adv-x="1142.9" />
<glyph glyph-name="diamond" unicode="&#xf219;" d="M118 421l348-371-167 371h-181z m453-430l195 430h-389z m-271 502l114 214h-146l-161-214h193z m377-443l348 371h-181z m-296 443h381l-114 214h-153z m462 0h193l-161 214h-146z m78 271l215-286q7-10 7-23t-10-22l-535-572q-10-11-27-11t-26 11l-535 572q-9 9-10 22t7 23l215 286q10 15 28 15h643q18 0 28-15z" horiz-adv-x="1142.9" />
<glyph glyph-name="heartbeat" unicode="&#xf21e;" d="M714 279h171q-3-4-6-6t-5-4l-2-3-347-335q-10-10-25-10t-25 10l-348 336q-3 2-11 12h205q13 0 23 7t12 19l39 157 106-372q4-11 13-18t22-8q11 0 21 8t13 18l81 271 32-63q10-19 31-19z m286 238q0-80-57-167h-206l-62 123q-5 10-15 15t-20 5q-25-3-31-26l-72-240-109 383q-4 11-14 19t-22 7-21-8-13-19l-64-259h-236q-58 87-58 167 0 123 71 192t196 70q34 0 70-12t67-33 54-38 42-38q20 20 42 38t54 38 67 33 70 12q125 0 196-70t71-192z" horiz-adv-x="1000" />
<glyph glyph-name="pinterest" unicode="&#xf231;" d="M0 517q0 60 21 113t58 93 85 69 103 44 113 14q88 0 164-37t123-108 47-160q0-54-10-105t-34-99-56-83-80-58-106-21q-38 0-75 18t-54 49q-5-22-15-63t-14-53-11-40-15-39-17-35-26-44-35-48l-7-3-5 6q-9 88-9 105 0 51 12 115t37 161 29 113q-18 36-18 94 0 47 29 87t74 41q34 0 53-23t19-57q0-37-24-106t-25-105q0-35 25-58t61-23q31 0 57 14t44 38 31 53 21 61 11 62 4 56q0 96-61 150t-160 54q-111 0-186-72t-75-183q0-25 7-48t15-36 15-26 7-17q0-15-8-40t-21-25q-1 0-9 1-29 9-51 31t-34 53-18 60-6 60z" horiz-adv-x="714.3" />
<glyph glyph-name="user-plus" unicode="&#xf234;" d="M393 350q-89 0-152 63t-62 151 62 152 152 63 151-63 63-152-63-151-151-63z m536-71h196q7 0 13-6t5-12v-107q0-8-5-13t-13-5h-196v-197q0-7-6-12t-12-6h-107q-8 0-13 6t-5 12v197h-197q-7 0-12 5t-6 13v107q0 7 6 12t12 6h197v196q0 7 5 13t13 5h107q7 0 12-5t6-13v-196z m-411-125q0-29 21-51t50-21h143v-133q-38-28-95-28h-488q-67 0-108 39t-41 106q0 30 2 58t8 61 15 60 24 55 34 45 48 30 62 11q11 0 22-10 44-34 86-51t92-17 92 17 86 51q11 10 22 10 73 0 121-54h-125q-29 0-50-21t-21-50v-107z" horiz-adv-x="1142.9" />
<glyph glyph-name="user-times" unicode="&#xf235;" d="M393 350q-89 0-152 63t-62 151 62 152 152 63 151-63 63-152-63-151-151-63z m601-179l139-138q5-5 5-13 0-8-5-13l-76-76q-5-5-12-5-8 0-13 5l-139 139-139-139q-5-5-13-5-7 0-12 5l-76 76q-5 5-5 13 0 8 5 13l139 138-139 139q-5 5-5 13 0 8 5 13l76 75q5 5 12 5 8 0 13-5l139-139 139 139q5 5 13 5 7 0 12-5l76-75q5-5 5-13 0-8-5-13z m-278 0l-101-101q-21-20-21-50 0-30 21-51l46-46q-11-2-24-2h-488q-67 0-108 39t-41 106q0 30 2 58t8 61 15 60 24 55 34 45 48 30 62 11q11 0 22-10 86-68 178-68t178 68q11 10 22 10 15 0 31-4-15-15-22-27t-8-32q0-30 21-51z" horiz-adv-x="1142.9" />
<glyph glyph-name="flip-to-back" unicode="&#xf247;" d="M625 142h83v83h-83m0 417h83v83h-83m-417-167h-83v-500c0-45 38-83 83-83h500v83h-500m584 84c46 0 83 37 83 83h-83m0 250h83v83h-83m0-250h83v84h-83m-417-250v83h-83c0-46 37-83 83-83m167 583h-84v-83h84m250 83v-83h83c0 46-37 83-83 83m-250-500h-84v-83h84m-167 583c-46 0-83-37-83-83h83m0-250h-83v-84h83m0 250h-83v-83h83v83z" horiz-adv-x="1000" />
<glyph glyph-name="clone" unicode="&#xf24d;" d="M929-61v607q0 8-6 13t-12 5h-607q-8 0-13-5t-5-13v-607q0-7 5-12t13-6h607q7 0 12 6t6 12z m71 607v-607q0-37-26-63t-63-26h-607q-37 0-63 26t-27 63v607q0 37 27 64t63 26h607q37 0 63-26t26-64z m-214 215v-90h-72v90q0 7-5 12t-13 6h-607q-7 0-12-6t-6-12v-607q0-8 6-13t12-5h90v-72h-90q-36 0-63 27t-26 63v607q0 37 26 63t63 26h607q37 0 64-26t26-63z" horiz-adv-x="1000" />
<glyph glyph-name="balance-scale" unicode="&#xf24e;" d="M964 600l-214-393h429z m-714 0l-214-393h428z m458 107q-8-22-25-40t-40-25v-721h339q8 0 13-5t5-12v-36q0-8-5-13t-13-5h-750q-8 0-13 5t-5 13v36q0 7 5 12t13 5h339v721q-22 8-39 25t-26 40h-274q-8 0-13 5t-5 13v36q0 8 5 13t13 5h274q12 31 39 51t62 20 62-20 39-51h274q8 0 13-5t5-13v-36q0-8-5-13t-13-5h-274z m-101-9q19 0 32 13t13 32-13 31-32 14-31-14-13-31 13-32 31-13z m607-491q0-41-26-73t-65-51-81-27-78-10-78 10-80 27-66 51-26 73q0 6 20 45t51 98 60 109 57 103 31 55q10 19 31 19t32-19q2-4 31-55t57-103 59-109 52-98 19-45z m-714 0q0-41-26-73t-65-51-81-27-78-10-78 10-80 27-66 51-26 73q0 6 20 45t51 98 60 109 57 103 31 55q10 19 31 19t31-19q3-4 32-55t56-103 60-109 52-98 19-45z" horiz-adv-x="1285.7" />
<glyph glyph-name="television" unicode="&#xf26c;" d="M1000 154v535q0 8-5 13t-13 5h-893q-7 0-12-5t-6-13v-535q0-8 6-13t12-5h893q7 0 13 5t5 13z m71 535v-535q0-37-26-63t-63-27h-411v-71h197q8 0 13-5t5-13v-36q0-8-5-13t-13-5h-464q-8 0-13 5t-5 13v36q0 8 5 13t13 5h196v71h-411q-36 0-63 27t-26 63v535q0 37 26 63t63 27h893q37 0 63-27t26-63z" horiz-adv-x="1142.9" />
<glyph glyph-name="Industry" unicode="&#xf275;" d="M250 850q15 0 25-11t11-25v-497l299 240q9 7 22 7 15 0 25-10t11-25v-212l299 240q10 7 22 7 15 0 25-10t11-25v-643q0-15-11-25t-25-11h-928q-15 0-25 11t-11 25v928q0 15 11 25t25 11h214z" horiz-adv-x="1000" />
<glyph glyph-name="map-signs" unicode="&#xf277;" d="M974 684q5-5 5-13t-5-12l-79-79q-15-16-38-16h-750q-14 0-25 11t-11 25v143q0 14 11 25t25 11h322v35q0 15 10 25t25 11h72q14 0 25-11t10-25v-35h286q23 0 38-16z m-545-513h142v-285q0-15-10-25t-25-11h-72q-14 0-25 11t-10 25v285z m464 250q14 0 25-10t11-25v-143q0-15-11-25t-25-11h-750q-22 0-38 16l-79 79q-5 5-5 12t5 13l79 79q16 15 38 15h286v108h142v-108h322z" horiz-adv-x="1000" />
<glyph glyph-name="map-o" unicode="&#xf278;" d="M1127 844q16-11 16-30v-785q0-12-6-20t-16-13l-358-143q-13-6-26 0l-344 137-344-137q-5-3-13-3-11 0-20 6-16 11-16 30v785q0 12 6 21t16 12l358 143q13 6 26 0l344-137 344 137q18 8 33-3z m-716-75v-709l321-129v709z m-340-122v-708l304 121v709z m1000-594v708l-303-121v-709z" horiz-adv-x="1142.9" />
<glyph glyph-name="map" unicode="&#xf279;" d="M286 850q7 0 12-5t6-13v-821q0-11-10-16l-268-143q-4-2-8-2-7 0-13 5t-5 13v821q0 11 10 16l267 143q4 2 9 2z m696 0q7 0 13-5t5-13v-821q0-11-9-16l-268-143q-4-2-9-2-7 0-12 5t-6 13v821q0 11 10 16l268 143q4 2 8 2z m-625 0q5 0 8-2l286-142q10-6 10-17v-821q0-7-6-13t-12-5q-5 0-8 2l-286 142q-10 6-10 17v821q0 7 6 13t12 5z" horiz-adv-x="1000" />
<glyph glyph-name="edge" unicode="&#xf282;" d="M39 406h0q9 71 33 135t64 121 93 98 125 66 154 24q129 0 231-59t165-169q58-105 58-247v-105h-628q0-62 30-107t76-69 106-31 118-2 116 26 97 47v-210q-51-31-128-52t-174-21-177 30q-105 40-173 139t-70 207q-1 135 62 230t181 150q-26-34-43-70t-26-89h355q4 43-5 78t-26 56-39 38-45 22-42 12-31 5l-13 0q-75-3-145-25t-124-58-98-78-77-92z" horiz-adv-x="1000" />
<glyph glyph-name="credit-card-alt" unicode="&#xf283;" d="M0 11v339h1286v-339q0-37-26-63t-64-27h-1107q-36 0-63 27t-26 63z m357 125v-72h214v72h-214z m-214 0v-72h143v72h-143z m1053 643q37 0 64-27t26-63v-125h-1286v125q0 37 26 63t63 27h1107z" horiz-adv-x="1285.7" />
<glyph glyph-name="shopping-bag" unicode="&#xf290;" d="M981 64l19-174q2-16-9-28-10-12-27-12h-928q-16 0-27 12-11 12-9 28l20 174h961z m-52 469l48-433h-954l48 433q2 13 12 22t24 9h143v-71q0-30 21-51t50-21 51 21 21 51v71h214v-71q0-30 21-51t51-21 50 21 21 51v71h143q14 0 24-9t12-22z m-215 103v-143q0-15-10-25t-25-11-25 11-11 25v143q0 59-42 101t-101 42-101-42-42-101v-143q0-15-10-25t-26-11-25 11-10 25v143q0 88 63 151t151 63 152-63 62-151z" horiz-adv-x="1000" />
<glyph glyph-name="question-circle-o" unicode="&#xf29c;" d="M491 180v-89q0-8-5-13t-13-5h-89q-8 0-13 5t-5 13v89q0 8 5 13t13 5h89q8 0 13-5t5-13z m143 277q0-28-8-50t-26-39-29-24-33-20q-18-10-26-16t-14-13-7-16v-18q0-8-5-13t-13-5h-89q-8 0-13 5t-5 13v38q0 19 6 36t13 26 22 20 23 14 25 12q29 14 42 24t12 27q0 24-24 40t-54 17q-31 0-53-15-16-12-44-47-5-6-14-6-6 0-11 3l-60 46q-6 4-7 11t3 13q68 107 195 107 72 0 133-50t61-120z m-205 250q-73 0-139-28t-114-76-76-114-29-139 29-139 76-113 114-77 139-28 138 28 114 77 76 113 29 139-29 139-76 114-114 76-138 28z m428-357q0-117-57-215t-156-156-215-58-216 58-155 156-58 215 58 215 155 156 216 58 215-58 156-156 57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="envelope-open" unicode="&#xf2b6;" d="M1000 485v-546q0-37-26-63t-63-26h-822q-36 0-63 26t-26 63v546q0 8 6 13 5 4 22 20t23 20 26 21 39 31 53 40 80 60 108 79q2 2 29 22t40 29 36 20 38 10 39-10 36-20 39-29 29-22q62-45 108-79t80-60 54-40 39-31 25-21 23-20 22-20q6-5 6-13z m-315-326q147 106 193 140 6 5 7 12t-4 13l-21 29q-4 6-12 7t-13-4q-129-94-192-139-2-2-29-22t-39-29-36-20-39-10-38 10-36 20-40 29-29 22q-104 74-192 139-6 5-13 4t-12-7l-21-29q-5-6-4-13t7-12q46-34 193-140 5-5 28-22t36-26 36-22 43-19 42-6 42 6 44 20 36 22 37 26 26 21z" horiz-adv-x="1000" />
<glyph glyph-name="envelope-open-o" unicode="&#xf2b7;" d="M823 341l21-29q5-6 4-13t-6-11q-24-19-71-55t-82-63-37-29q-22-18-34-27t-33-23-43-20-41-7h-2q-20 0-41 7t-42 20-34 23-34 27q-3 2-36 28t-80 62-68 53q-7 4-7 11t3 13l21 29q4 6 12 7t14-3q52-41 170-132 3-2 25-20t33-26 32-18 32-9h2q13 0 32 9t32 18 34 26 24 20q144 110 174 135 7 4 14 4t12-7z m106-402v518q-51 47-89 78-51 41-217 169-2 2-24 20t-34 27-31 18-33 10h-2q-13 0-32-10t-32-18-34-27-24-20q-120-92-176-137t-72-58-46-41q-8-7-12-11v-518q0-7 6-12t12-6h822q7 0 12 6t6 12z m71 518v-518q0-37-26-63t-63-26h-822q-36 0-63 26t-26 63v518q0 31 23 53 69 63 195 162t130 101q20 17 33 27t35 23 42 20 41 7h2q20 0 41-7t43-20 34-23 33-27q24-20 87-68t126-99 112-96q23-22 23-53z" horiz-adv-x="1000" />
<glyph glyph-name="telegram-1" unicode="&#xf2c6;" d="M664 121l82 386q5 25-6 36t-29 3l-482-185q-16-6-22-14t-2-15 18-11l124-38 286 180q12 8 18 3 4-3-3-8l-231-210-9-127q13 0 25 13l60 58 125-93q36-20 46 22z m336 229q0-102-40-194t-106-160-160-106-194-40-194 40-160 106-106 160-40 194 40 194 106 160 160 106 194 40 194-40 160-106 106-160 40-194z" horiz-adv-x="1000" />
<glyph glyph-name="hanger" unicode="&#xf2c8;" d="M865 169h0c31-18 52-51 52-90 0-57-47-104-104-104h-625c-58 0-105 47-105 104 0 39 21 72 52 90h0l323 187s0 36 42 77c42 0 83 38 83 84s-37 83-83 83-83-37-83-83h-84c0 92 75 166 167 166s167-74 167-166c0-78-53-143-125-162l323-186m-677-111h625c7 0 14 4 17 11 6 10 3 22-7 28l-323 187-323-187c-10-6-13-18-7-28 3-7 10-11 18-11z" horiz-adv-x="1000" />
<glyph glyph-name="facebook" unicode="&#xf300;" d="M124-150v469h-124v169h124v145c0 113 73 217 242 217 69 0 119-7 119-7l-4-157s-51 0-108 0c-60 0-70-28-70-74v-124h183l-8-169h-175v-469h-179" horiz-adv-x="486" />
<glyph glyph-name="twitter" unicode="&#xf302;" d="M749-25c0-34-13-64-37-88-25-25-54-37-89-37l-248 0c-103 0-192 36-265 110-73 73-110 161-110 264l0 501c0 35 12 65 37 89 24 24 54 36 89 36 34 0 64-12 88-37 25-24 37-54 37-88l0-181 353 0c32 0 60-12 83-35 22-22 34-49 34-81 0-32-12-59-34-82-23-23-51-34-82-34l-354 0 0-88c0-34 12-64 36-88 24-24 54-36 88-36l248 0c35 0 64-12 89-37 24-24 37-54 37-88" horiz-adv-x="749" />
<glyph glyph-name="linkedin-squared" unicode="&#xf30c;" d="M132 61h129v387h-129v-387z m138 507q-1 29-21 48t-51 19-53-19-21-48q0-29 20-48t52-19h0q33 0 53 19t21 48z m326-507h129v222q0 86-41 130t-107 44q-76 0-117-65h1v56h-129q2-37 0-387h129v217q0 21 4 31 8 19 25 33t41 14q65 0 65-88v-207z m261 557v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113v536q0 66 47 113t114 48h535q67 0 114-48t47-113z" horiz-adv-x="857.1" />
<glyph glyph-name="win8" unicode="&#xf325;" d="M986 850l-549-80 0-398 549 0 0 478z m-587-86l-399-58 0-334 399 0 0 392z m-399-430l0-339 399-58 0 397-399 0z m437 0l0-403 549-81 0 484-549 0z" horiz-adv-x="986" />
<glyph glyph-name="instagram-1" unicode="&#xf32d;" d="M690 350q0 26-6 50l176 0 0-344q0-56-39-96t-95-40l-592 0q-56 0-95 40t-39 96l0 344 174 0q-4-32-4-50 0-106 76-183t184-77q106 0 183 77t77 183z m36 430q56 0 95-39t39-95l0-146-218 0q-78 110-212 110-138 0-212-110l-218 0 0 146q0 56 39 95t95 39l592 0z m64-166l0 72q0 24-24 24l-72 0q-24 0-24-24l0-72q0-8 7-16t17-8l72 0q24 0 24 24z m-200-264q0-66-47-113t-113-47-113 47-47 113q0 68 47 114t113 46 113-46 47-114z" horiz-adv-x="860" />
<glyph glyph-name="message-reply-text" unicode="&#xf368;" d="M750 517h-500v83h500v-83m0-125h-500v83h500v-83m0-125h-500v83h500v-83m167 416c0 46-38 84-84 84h-666c-46 0-84-38-84-84v-500c0-45 38-83 84-83h583l167-167v750z" horiz-adv-x="1000" />
<glyph glyph-name="message-text-outline" unicode="&#xf36a;" d="M833 767c46 0 84-38 84-84v-500c0-45-38-83-84-83h-583l-167-167v750c0 47 38 84 84 84h666m-666-84v-548l48 48h618v500h-666m83-125h500v-83h-500v83m0-166h375v-84h-375v84z" horiz-adv-x="1000" />
<glyph glyph-name="percent" unicode="&#xf3f0;" d="M292 683c69 0 125-55 125-125s-56-125-125-125-125 56-125 125 56 125 125 125m416-416c70 0 125-56 125-125s-55-125-125-125-125 56-125 125 56 125 125 125m125 358l-608-608-58 58 608 608 58-58z" horiz-adv-x="1000" />
<glyph glyph-name="Flowers-and-Plants" unicode="&#xf405;" d="M417-25v125h-292l208 208h-125l209 209h-125l208 208 208-208h-125l209-209h-125l208-208h-292v-125h-166z" horiz-adv-x="1000" />
<glyph glyph-name="Scientific" unicode="&#xf463;" d="M117 262l118 118 105 20c135 183 391 274 484 274 0-93-91-349-274-484l-20-105-118-118-30 147c-59 0-59 0-88 30-30 29-30 29-30 88l-147 30m118-118l59-59-111-111h-59v59l111 111m-59 59l52-8-103-102v60l51 50m169-125l8-52-50-51h-60l102 103m197 376c-35 0-63-28-63-62s28-63 63-63 62 28 62 63-28 62-62 62z" horiz-adv-x="1000" />
<glyph glyph-name="selection" unicode="&#xf489;" d="M83 683c0 47 38 84 84 84h125v-84h-125v-125h-84v125m834 0v-125h-84v125h-125v84h125c46 0 84-38 84-84m-84-666v125h84v-125c0-47-38-84-84-84h-125v84h125m-750 0v125h84v-125h125v-84h-125c-46 0-84 38-84 84m334 750h166v-84h-166v84m0-750h166v-84h-166v84m416 416h84v-166h-84v166m-750 0h84v-166h-84v166z" horiz-adv-x="1000" />
<glyph glyph-name="Home-And-Office" unicode="&#xf4b9;" d="M292 600h83c46 0 83-37 83-83v-167h-250v167c0 46 38 83 84 83m333 0h83c46 0 84-37 84-83v-167h-250v167c0 46 37 83 83 83m-583-125h41c23 0 42-19 42-42v-83c0-46 38-83 83-83h584c46 0 83 37 83 83v83c0 23 19 42 42 42h41c23 0 42-19 42-42v-375h-125v84h-750v-84h-125v375c0 23 19 42 42 42z" horiz-adv-x="1000" />
<glyph glyph-name="shape-rectangle-plus" unicode="&#xf65f;" d="M792 600h125v-83h-125v-125h-84v125h-125v83h125v125h84v-125m-84-458v125h84v-209h-667v542h333v-83h-250v-375h500z" horiz-adv-x="1000" />
<glyph glyph-name="Beauty" unicode="&#xf665;" d="M417 683h83v-83h-83v83m-125 42h83v-83h-83v83m0-125h83v-83h-83v83m-42-83v-84h-83v84h83m0 125v-84h-83v84h83m0 125v-84h-83v84h83m292-834c-46 0-84 38-84 84v416c0 46 38 84 84 84v41h41v125h125v-125h42v-41c46 0 83-38 83-84v-416c0-46-37-84-83-84h-208m0 500v-416h208v416h-208z" horiz-adv-x="1000" />
</font>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 127 KiB

@ -0,0 +1,7 @@
Options FollowSymLinks MultiViews Indexes ExecCGI
AddType application/x-httpd-cgi .cc
AddType application/x-httpd-cgi .php
AddHandler cgi-script .cc
AddHandler cgi-script .php

@ -0,0 +1,700 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg>
<metadata>
Created by FontForge 20110222 at Tue Feb 25 12:15:09 2014
By Orthosie Webhosting
Generated by Fontographer 4.1
</metadata>
<defs>
<font id="Wyekan" horiz-adv-x="0" >
<font-face
font-family="W_yekan"
font-weight="400"
font-stretch="normal"
units-per-em="1100"
panose-1="0 0 4 0 0 0 0 0 0 0"
ascent="880"
descent="-220"
bbox="-280.578 -664 1143 1086.04"
underline-thickness="20"
underline-position="-123"
unicode-range="U+0020-FE87"
/>
<missing-glyph horiz-adv-x="550"
d="M69 0v700h412v-700h-412zM138 69h275v562h-275v-562z" />
<glyph glyph-name="uniFE50" unicode="&#xfe5b;&#xfe00;" horiz-adv-x="517"
d="M458 135q0 -53 -26 -84q-15 -22 -46 -40q-34 -11 -67 -11h-83q-174 0 -174 135v429h88v-391q0 -59 16 -74q11 -10 70 -10h76q36 0 52 20q7 28 7 64v391h87v-429z" />
<glyph glyph-name="uniFE51" unicode="&#xfe5a;&#xfe00;" horiz-adv-x="517"
d="M531 0q-75 0 -121 57q-44 -57 -118 -57h-82q-171 0 -171 135v429h86v-391q0 -30 3.5 -47t12.5 -27t69 -10h76q35 0 52 20q4 10 4 27q0 4 2 16.5t2 20.5v391h88v-399q0 -48 27 -64q21 -12 70 -12v-89z" />
<glyph glyph-name="uniFE52" unicode="&#xfe5b;&#xfe01;" horiz-adv-x="517"
d="M458 135q0 -53 -26 -84q-15 -22 -46 -40q-34 -11 -67 -11h-83q-174 0 -174 135v429h88v-391q0 -59 16 -74q11 -10 70 -10h76q36 0 52 20q7 28 7 64v391h87v-429zM320 616h-221l-51 -4q-21 -5 -30 -11q-16 -17 -29 -48l-81 31l23 46q17 30 31 41.5t46 20.5q20 5 64 8
q31 1 146 1h102v-85z" />
<glyph glyph-name="exclamdown" unicode="&#xfe5a;&#xfe01;" horiz-adv-x="517"
d="M531 0q-75 0 -121 57q-44 -57 -118 -57h-82q-171 0 -171 135v429h86v-391q0 -30 3.5 -47t12.5 -27t69 -10h76q35 0 52 20q4 10 4 27q0 4 2 16.5t2 20.5v391h88v-399q0 -48 27 -64q21 -12 70 -12v-89zM320 616h-221l-51 -4q-21 -5 -30 -11q-16 -17 -29 -48l-81 31l23 46
q17 30 31 41.5t46 20.5q20 5 64 8q31 1 146 1h102v-85z" />
<glyph glyph-name="cent" unicode="&#xfe5b;&#xfe03;" horiz-adv-x="517"
d="M458 135q0 -53 -26 -84q-15 -22 -46 -40q-34 -11 -67 -11h-83q-174 0 -174 135v429h88v-391q0 -59 16 -74q11 -10 70 -10h76q36 0 52 20q7 28 7 64v391h87v-429zM228 678l-149 -75l-12 24l50 27q-45 24 -45 64q0 46 45 70q13 7 27 7q16 -4 42 -12l-11 -23q-5 1 -14 4
t-14 4q-18 0 -33 -14q-15 -22 -15 -36q0 -39 40 -40q15 0 33 8q13 2 43 18z" />
<glyph glyph-name="sterling" unicode="&#xfe5a;&#xfe03;" horiz-adv-x="517"
d="M531 0q-75 0 -121 57q-44 -57 -118 -57h-82q-171 0 -171 135v429h86v-391q0 -30 3.5 -47t12.5 -27t69 -10h76q35 0 52 20q4 10 4 27q0 4 2 16.5t2 20.5v391h88v-399q0 -48 27 -64q21 -12 70 -12v-89zM228 678l-149 -75l-12 24l50 27q-45 24 -45 64q0 46 45 70q13 7 27 7
q16 -4 42 -12l-11 -23q-5 1 -14 4t-14 4q-18 0 -33 -14q-15 -22 -15 -36q0 -39 40 -40q15 0 33 8q13 2 43 18z" />
<glyph glyph-name="currency" unicode="&#xfe5b;&#xfe05;" horiz-adv-x="517"
d="M458 135q0 -53 -26 -84q-15 -22 -46 -40q-34 -11 -67 -11h-83q-174 0 -174 135v429h88v-391q0 -59 16 -74q11 -10 70 -10h76q36 0 52 20q7 28 7 64v391h87v-429zM231 -146l-149 -75l-12 24l50 27q-45 25 -45 64q0 46 45 70q13 7 27 7q16 -3 41 -11l-10 -23q-5 1 -14 4
t-14 4q-18 0 -34 -15q-14 -22 -14 -36q0 -38 40 -39q15 -1 32 7q14 3 43 18z" />
<glyph glyph-name="yen" unicode="&#xfe5a;&#xfe05;" horiz-adv-x="517"
d="M531 0q-75 0 -121 57q-44 -57 -118 -57h-82q-171 0 -171 135v429h86v-391q0 -30 3.5 -47t12.5 -27t69 -10h76q35 0 52 20q4 10 4 27q0 4 2 16.5t2 20.5v391h88v-399q0 -48 27 -64q21 -12 70 -12v-89zM231 -146l-149 -75l-12 24l50 27q-45 25 -45 64q0 46 45 70q13 7 27 7
q16 -3 41 -11l-10 -23q-5 1 -14 4t-14 4q-18 0 -34 -15q-14 -22 -14 -36q0 -38 40 -39q15 -1 32 7q14 3 43 18z" />
<glyph glyph-name="Egrave" unicode="&#xfe5b;&#xfe5a;&#xfe64;" horiz-adv-x="920" arabic-form="isolated"
d="M515 4q24 2 58 30q27 -23 52 -28q9 -4 30 -5q26 -1 46 -1h52q35 0 68 11q31 16 48 40q25 36 25 84v429h-86v-391q0 -48 -9 -64q-15 -20 -51 -20h-21q-18 0 -47 2q-18 1 -36 4q-28 14 -28 61v296h-89v-279q0 -28 -5 -50l-8 -20q-22 -1 -55 5q-11 6 -49 46l-264 281
l-61 -60l27 -28q-53 -54 -70 -79q-34 -51 -33 -100q0 -72 49 -119q28 -28 55.5 -38.5t63.5 -10.5q112 1 161 105l65 -57q22 -20 28 -22q10 -8 31 -12q5 -1 15.5 -7.5t22.5 -6.5q0 1 15 4zM705 598q0 -28 -16 -51q-17 -19 -43 -19q-49 0 -75 39q-30 -65 -90 -65q-27 0 -42 22
q-15 17 -15 42q-1 36 22 87l32 -17q-9 -23 -15 -49q0 -34 28 -34q55 0 53 92l43 24q1 -92 48 -92q29 0 29 32q0 18 -25 55l34 25q31 -44 32 -91zM593 867l-16 -169h-28l-19 169h63zM261 163q0 20 -16 48l-71 71q-77 -73 -77 -119q0 -23 20 -50.5t61 -27.5q32 0 57.5 23
t25.5 55z" />
<glyph glyph-name="agrave" unicode="&#x651;&#x64e;" arabic-form="isolated"
d="M218 947l-265 -65l-12 40l264 68zM216 784q1 -28 -15 -51q-17 -19 -43 -19q-49 0 -75 39q-30 -65 -90 -65q-27 0 -42 22q-15 17 -15 42q-1 36 22 87l32 -17q-9 -23 -15 -49q0 -34 28 -34q55 0 53 92l43 24q1 -92 48 -92q29 0 29 32q0 18 -25 55l34 25q31 -44 31 -91z" />
<glyph glyph-name="acircumflex" unicode="&#x651;&#x650;" arabic-form="isolated"
d="M216 894q2 -69 -58 -70q-49 -1 -75 39q-29 -65 -90 -65q-25 -1 -41 19t-16 46q-1 34 22 85l32 -16q-7 -20 -15 -49q0 -34 28 -34q55 0 53 92l43 23q1 -91 48 -91q29 0 29 32q0 16 -10 29q-1 4 -15 26l34 25q31 -46 31 -91zM222 751l-264 -65l-13 39l265 68z" />
<glyph glyph-name="adieresis" unicode="&#x651;&#x64f;" arabic-form="isolated"
d="M220 1010q1 -68 -84 -88l-181 -43l-10 37q75 16 125 35q-22 26 -22 54q0 30 25.5 55.5t55.5 25.5q34 1 64 -24q27 -23 27 -52zM216 784q1 -28 -15 -51q-17 -19 -43 -19q-49 0 -75 39q-30 -65 -90 -65q-27 0 -42 22q-15 17 -15 42q-1 36 22 87l32 -17q-9 -23 -15 -49
q0 -34 28 -34q55 0 53 92l43 24q1 -92 48 -92q29 0 29 32q0 18 -25 55l34 25q31 -44 31 -91zM173 1004q1 18 -16 30q-9 6 -23 6q-17 0 -28.5 -10.5t-11.5 -25.5t12.5 -26.5t27.5 -11.5q13 0 28 10q11 14 11 28z" />
<glyph glyph-name="ae" unicode="&#x651;&#x64b;" arabic-form="isolated"
d="M222 1030l-264 -66l-13 40l265 68zM222 944l-264 -66l-13 38l265 69zM216 784q1 -28 -15 -51q-17 -19 -43 -19q-49 0 -75 39q-30 -65 -90 -65q-27 0 -42 22q-15 17 -15 42q-1 36 22 87l32 -17q-9 -23 -15 -49q0 -34 28 -34q55 0 53 92l43 24q1 -92 48 -92q29 0 29 32
q0 18 -25 55l34 25q31 -44 31 -91z" />
<glyph glyph-name="egrave" unicode="&#x651;&#x64d;" arabic-form="isolated"
d="M216 981q1 -39 -24 -59q-13 -11 -34 -13q-48 0 -75 41q-30 -65 -90 -65q-25 0 -41 19t-16 44q-1 35 22 87l32 -16q-7 -20 -15 -49q0 -35 28 -35q55 0 53 93l43 23q1 -91 48 -91q29 -1 29 31q0 17 -10 30q-1 4 -15 26l34 24q31 -45 31 -90zM222 838l-264 -66l-13 40
l265 68zM222 751l-264 -65l-13 39l265 68z" />
<glyph glyph-name="ecircumflex" unicode="&#x651;&#x64c;" arabic-form="final"
d="M220 1010q1 -68 -84 -88l-181 -43l-10 37q42 12 42 48q0 19 -14 21q-12 0 -28 -12l-19 28q24 33 54 32q41 0 41 -44q0 -34 -19 -59q3 1 68 21q-22 26 -22 54q0 30 25.5 55.5t55.5 25.5q34 1 64 -24q27 -23 27 -52zM216 784q1 -28 -15 -51q-17 -19 -43 -19q-49 0 -75 39
q-30 -65 -90 -65q-27 0 -42 22q-15 17 -15 42q-1 36 22 87l32 -17q-9 -23 -15 -49q0 -34 28 -34q55 0 53 92l43 24q1 -92 48 -92q29 0 29 32q0 18 -25 55l34 25q31 -44 31 -91zM173 1004q1 18 -16 30q-9 6 -23 6q-17 0 -28.5 -10.5t-11.5 -25.5t12.5 -26.5t27.5 -11.5
q13 0 28 10q11 14 11 28z" />
<glyph glyph-name="Oacute" unicode="&#xfe71;" arabic-form="medial"
d="M283 575l-264 -65l-12 39l265 68z" />
<glyph glyph-name="Otilde" unicode="&#xfe72;" arabic-form="isolated"
d="M283 -116l-264 -66l-12 39l265 69z" />
<glyph glyph-name="Ugrave" unicode="&#xfe74;" arabic-form="isolated"
d="M283 662l-264 -66l-12 40l265 68zM283 575l-264 -65l-12 39l265 68z" />
<glyph glyph-name="Yacute" unicode="&#xfe76;" arabic-form="isolated"
d="M282 642q1 -68 -85 -88l-180 -43l-11 38q42 11 42 47q0 20 -14 20q-11 0 -28 -10l-18 27q23 33 53 33q42 0 42 -44q0 -34 -20 -59q21 5 68 21q-21 27 -21 54q0 30 25.5 55t55.5 25q34 1 62 -23.5t29 -52.5zM235 636q1 18 -16 30q-10 7 -24 7q-39 0 -39 -37q0 -17 11 -26
q13 -12 28 -12q16 0 27.5 11t12.5 27z" />
<glyph glyph-name="germandbls" unicode="&#xfe77;" arabic-form="medial"
d="M278 608q1 -28 -16 -51q-16 -19 -43 -19q-48 0 -75 39q-29 -65 -89 -65q-28 0 -43 22q-14 17 -15 42q0 36 22 87l33 -17q-9 -23 -15 -49q0 -34 27 -34q55 0 54 92l42 24q1 -92 49 -92q29 0 29 32q0 18 -25 55l33 25q31 -44 32 -91z" />
<glyph glyph-name="aacute" unicode="&#xfe79;" arabic-form="medial"
d="M280 771l-265 -65l-12 40l264 68zM278 608q1 -28 -16 -51q-16 -19 -43 -19q-48 0 -75 39q-29 -65 -89 -65q-28 0 -43 22q-14 17 -15 42q0 36 22 87l33 -17q-9 -23 -15 -49q0 -34 27 -34q55 0 54 92l42 24q1 -92 49 -92q29 0 29 32q0 18 -25 55l33 25q31 -44 32 -91z" />
<glyph glyph-name="atilde" unicode="&#xfe7b;" arabic-form="medial"
d="M278 718q1 -69 -59 -70q-48 -1 -75 39q-29 -65 -89 -65q-26 -1 -41.5 19t-16.5 46q0 34 22 85l33 -16q-8 -20 -15 -49q0 -34 27 -34q55 0 54 92l42 23q1 -91 49 -91q29 0 29 32q0 16 -10 29q-2 4 -15 26l33 25q31 -46 32 -91zM283 575l-264 -65l-12 39l265 68z" />
<glyph glyph-name="aring" unicode="&#xfe7d;" arabic-form="medial"
d="M282 834q1 -68 -85 -88l-180 -43l-11 37q75 16 125 35q-21 26 -21 54q0 30 25.5 55.5t55.5 25.5q34 1 62 -23t29 -53zM278 608q1 -28 -16 -51q-16 -19 -43 -19q-48 0 -75 39q-29 -65 -89 -65q-28 0 -43 22q-14 17 -15 42q0 36 22 87l33 -17q-9 -23 -15 -49q0 -34 27 -34
q55 0 54 92l42 24q1 -92 49 -92q29 0 29 32q0 18 -25 55l33 25q31 -44 32 -91zM235 828q1 18 -16 30q-10 6 -24 6q-17 0 -28 -10.5t-11 -25.5t12.5 -26.5t26.5 -11.5q13 0 29 10q10 14 11 28z" />
<glyph glyph-name="ccedilla" unicode="&#xfe7f;" arabic-form="medial"
d="M283 854l-264 -66l-12 40l265 68zM283 768l-264 -66l-12 38l265 69zM278 608q1 -28 -16 -51q-16 -19 -43 -19q-48 0 -75 39q-29 -65 -89 -65q-28 0 -43 22q-14 17 -15 42q0 36 22 87l33 -17q-9 -23 -15 -49q0 -34 27 -34q55 0 54 92l42 24q1 -92 49 -92q29 0 29 32
q0 18 -25 55l33 25q31 -44 32 -91z" />
<glyph glyph-name="eacute" unicode="&#x622;" arabic-form="isolated"
d="M278 805q1 -39 -24 -59q-14 -11 -35 -13q-48 0 -75 41q-29 -65 -89 -65q-25 0 -41 19t-17 44q0 35 22 87l33 -16q-8 -20 -15 -49q0 -35 27 -35q55 0 54 93l42 23q1 -91 49 -91q29 -1 29 31q0 17 -10 30q-2 4 -15 26l33 24q31 -45 32 -90zM283 662l-264 -66l-12 40l265 68
zM283 575l-264 -65l-12 39l265 68z" />
<glyph glyph-name="edieresis" unicode="&#x623;" arabic-form="isolated"
d="M282 834q1 -68 -85 -88l-180 -43l-11 37q42 12 42 48q0 19 -14 21q-12 0 -28 -12l-18 28q24 33 53 32q42 0 42 -44q0 -34 -20 -59q4 1 68 21q-21 26 -21 54q0 30 25.5 55.5t55.5 25.5q34 1 62 -23t29 -53zM278 608q1 -28 -16 -51q-16 -19 -43 -19q-48 0 -75 39
q-29 -65 -89 -65q-28 0 -43 22q-14 17 -15 42q0 36 22 87l33 -17q-9 -23 -15 -49q0 -34 27 -34q55 0 54 92l42 24q1 -92 49 -92q29 0 29 32q0 18 -25 55l33 25q31 -44 32 -91zM235 828q1 18 -16 30q-10 6 -24 6q-17 0 -28 -10.5t-11 -25.5t12.5 -26.5t26.5 -11.5q13 0 29 10
q10 14 11 28z" />
<glyph glyph-name="iacute" unicode="&#x623;" arabic-form="final"
d="M370 505h-162l-38 -3q-15 -3 -22 -8q-13 -12 -22 -35l-59 23q25 52 42 65q12 10 30 15q22 6 48 6l183 1v-64z" />
<glyph glyph-name="idieresis" unicode="&#x624;" arabic-form="isolated"
d="M236 608q0 -40 -28.5 -68.5t-67.5 -28.5q-40 0 -68.5 28.5t-28.5 68.5q0 37 29.5 66t67.5 29q39 0 69 -31q27 -29 27 -64zM188 609q0 20 -12.5 33.5t-37.5 13.5q-19 0 -33.5 -15t-14.5 -33q0 -22 14.5 -36.5t35.5 -14.5q19 0 33 14q15 11 15 38z" />
<glyph glyph-name="ntilde" unicode="&#x624;" arabic-form="final"
d="M304 630l-157 -80l-14 26l54 29q-48 24 -48 68q0 29 22 55q26 25 54 25q21 -5 44 -12l-12 -24q-5 1 -16 4q-4 1 -14 4q-19 0 -34 -16q-15 -21 -15 -36q0 -42 41 -43q26 0 81 27z" />
<glyph glyph-name="oacute" unicode="&#x625;" arabic-form="isolated"
d="M171 679l-16 -169h-28l-19 169h63z" />
<glyph glyph-name=".notdef" horiz-adv-x="550"
d="M69 0v700h412v-700h-412zM138 69h275v562h-275v-562z" />
<glyph glyph-name=".null"
/>
<glyph glyph-name="nonmarkingreturn" horiz-adv-x="215"
/>
<glyph glyph-name="space" unicode=" " horiz-adv-x="215"
/>
<glyph glyph-name="glyph4" horiz-adv-x="810"
d="M687 372l-52 -52q-3 -2 -5 -2t-4 2l-52 52q-2 3 -2 5t2 4l52 52q2 3 4 3t5 -3l52 -52q2 -2 3 -4q-1 -3 -3 -5zM687 273q5 -6 0 -10l-52 -48q-4 -4 -9 0l-51 48q-5 5 -1 10l52 56q4 5 9 0zM689 162q-23 -73 -104 -108v-48q0 -7 -7 -7h-38q-18 0 -32 17q-13 12 -35 33
q-36 -32 -99 -40q-19 -2 -38.5 -6t-20.5 -4q-6 0 -6 7v74q0 13 11 13q1 0 2.5 -3.5t12.5 -3.5q9 0 28 2q44 7 63 24q-38 53 -45 107q0 5 4 7q9 7 27 22q10 7 29 23q3 5 7 3q4 -1 4 -7q0 -75 63 -150q4 3 4 27v181l2 4l53 52q11 10 11 -4v-233q0 -22 10 -27h31q3 0 -10 13
q-19 20 -39 26q-8 5 -2 12l51 57q3 3 8 1q22 -12 54 -59q2 -4 1 -5zM376 83q0 -7 -6 -7q-61 -8 -61 4v297q0 2 3 4l53 52q3 4 7 3t4 -7v-346zM234 321l-52 -58q-2 -2 -5 -2q-2 0 -5 2l-52 58q-3 4 1 8l53 52q2 6 9 0l52 -52q6 -5 -1 -8zM323 59q-1 -3 -2 -4q-26 -33 -54 -54
q-2 -4 -8 0q-123 116 -140 218q0 3 5 8.5t21 20.5q10 7 29 23q4 5 7 3q4 -1 4 -7q0 -75 62 -150q5 2 9 27v181q1 1 3 4l53 52q11 11 11 -4v-318zM674 377l-44 43l-43 -43l43 -43zM674 269l-44 46l-43 -46l43 -40zM675 162q-27 40 -43 49l-43 -45q14 -7 30 -21q20 -17 20 -30
q0 -11 -13 -11h-34h-2q-18 10 -18 40v218l-39 -41v-177q0 -40 -22 -40q-3 0 -4 2q-63 75 -67 148q-10 -7 -19 -15.5t-26 -21.5q9 -54 46 -103q4 -3 -1 -8q-23 -23 -75 -30q-30 -4 -42 -1v-62q23 6 50 9q62 7 96 41q5 4 9 0l38 -39q12 -11 24 -11h32v46q0 4 4 5q76 32 99 98z
M362 88v325l-39 -39v-284q0 -9 39 -2zM222 324l-45 44l-42 -44l42 -47zM309 60v302l-38 -41l-2 -178q-7 -39 -25 -39q-4 0 -4 2q-62 74 -68 148q-12 -14 -40 -38q17 -93 132 -202q20 16 45 46z" />
<glyph glyph-name="exclam" unicode="&#x660;" horiz-adv-x="592"
d="M453 158q0 -55 -50.5 -101t-105.5 -46q-58 0 -108 45t-50 102q0 52 49.5 104.5t108.5 52.5q56 0 106 -50t50 -107zM383 158q0 49 -56 80q-13 7 -30 7q-34 0 -61 -27t-27 -60q0 -30 27 -59q6 -6 28 -18q15 -6 33 -6q33 0 59.5 24t26.5 59z" />
<glyph glyph-name="quotedbl" unicode="&#x661;" horiz-adv-x="592"
d="M360 -99h-85v271q0 50 -10 138q-3 25 -13 67l-8 32q-3 19 -12 38l84 28l31 -118q3 -31 10 -97q3 -27 3 -88v-271z" />
<glyph glyph-name="numbersign" unicode="&#x662;" horiz-adv-x="592"
d="M469 322q3 -65 -66 -106q-20 -11 -32 -13q-8 -3 -33 -4q-40 -1 -85 28l1 -326h-89v257q0 119 -22 227q-7 33 -20 62l86 28l35 -145q13 -55 65 -55q27 0 48 18q7 7 14 22q4 8 6 28l-14 106l29 10l52 17l17 -83q6 -28 7 -54z" />
<glyph glyph-name="dollar" unicode="&#x663;" horiz-adv-x="592"
d="M568 332q3 -40 -36 -88q-38 -36 -90 -38q-51 -2 -109 61q0 -63 -92 -64q-44 0 -87 23l1 -325h-87v257q0 170 -43 289l86 28l33 -145q13 -55 66 -55q17 0 27 4q6 3 22 14q19 18 22 50l-17 106l83 31q21 -114 19 -156l-1 -24q22 -27 55 -27q28 0 45 19q18 16 20 51l-15 106
l82 26l15 -117z" />
<glyph glyph-name="percent" unicode="&#x6f4;" horiz-adv-x="592"
d="M526 228q-38 -18 -90 -34l-43 -7q-21 -3 -44 -3q-41 0 -76 8q-43 10 -80 27l1 -318h-86v264q0 62 -9 132q-1 7 -4 22q0 4 -2 11q0 13 -7 40l-20 77l83 28l23 -93l15 -79l45 -21q0 33 1 48q4 24 20 68q7 15 20 31q23 27 51 37q25 13 66 13q50 0 110 -28l-30 -75
q-37 26 -74 26q-44 1 -70 -36q-4 -4 -11 -17.5t-6 -29.5l2 -22q14 -37 64 -37q44 0 123 39z" />
<glyph glyph-name="ampersand" unicode="&#x664;" horiz-adv-x="592"
d="M526 228q-38 -18 -90 -34l-43 -7q-21 -3 -44 -3q-41 0 -76 8q-43 10 -80 27l1 -318h-86v264q0 62 -9 132q-1 7 -4 22q0 4 -2 11q0 13 -7 40l-20 77l83 28l23 -93l15 -79l45 -21q0 33 1 48q4 24 20 68q7 15 20 31q23 27 51 37q25 13 66 13q50 0 110 -28l-30 -75
q-37 26 -74 26q-44 1 -70 -36q-4 -4 -11 -17.5t-6 -29.5l2 -22q14 -37 64 -37q44 0 123 39z" />
<glyph glyph-name="quotesingle" unicode="&#x6f5;" horiz-adv-x="592"
d="M569 37q0 -68 -49.5 -111t-118.5 -44q-67 -1 -114 34q-58 -34 -116 -36q-68 -1 -109 51q-38 47 -38 117q0 111 86 218l96 119l-34 23l56 68q341 -255 341 -439zM476 55q0 35 -24 79.5t-67 92.5q-46 50 -113 105q-156 -160 -156 -272q0 -37 19 -60.5t52 -23.5q37 0 55 29
q15 18 17 50l-5 33h87l5 -15l1 -19l-1 -33q0 -7 -8 -27q25 -16 57 -16q61 0 77 48q4 11 4 29z" />
<glyph glyph-name="parenleft" unicode="&#x665;" horiz-adv-x="592"
d="M569 37q0 -68 -49.5 -111t-118.5 -44q-67 -1 -114 34q-58 -34 -116 -36q-68 -1 -109 51q-38 47 -38 117q0 111 86 218l96 119l-34 23l56 68q341 -255 341 -439zM476 55q0 35 -24 79.5t-67 92.5q-46 50 -113 105q-156 -160 -156 -272q0 -37 19 -60.5t52 -23.5q37 0 55 29
q15 18 17 50l-5 33h87l5 -15l1 -19l-1 -33q0 -7 -8 -27q25 -16 57 -16q61 0 77 48q4 11 4 29z" />
<glyph glyph-name="parenright" unicode="&#x6f6;" horiz-adv-x="592"
d="M476 237q-35 -31 -69 -72l-74 -91q-12 -14 -66 -95q-29 -42 -62 -100l-77 48q20 40 59 99q27 40 101 136q-83 0 -130 48q-41 44 -41 109q0 83 70 138q37 23 82 23q54 0 114 -31l-28 -79q-39 22 -72 22q-40 0 -68 -37q-10 -20 -10 -36t8 -34q17 -38 69 -38q27 0 57 11
q25 5 66 31z" />
<glyph glyph-name="asterisk" unicode="&#x666;" horiz-adv-x="592"
d="M476 237q-35 -31 -69 -72l-74 -91q-12 -14 -66 -95q-29 -42 -62 -100l-77 48q20 40 59 99q27 40 101 136q-83 0 -130 48q-41 44 -41 109q0 83 70 138q37 23 82 23q54 0 114 -31l-28 -79q-39 22 -72 22q-40 0 -68 -37q-10 -20 -10 -36t8 -34q17 -38 69 -38q27 0 57 11
q25 5 66 31z" />
<glyph glyph-name="plus" unicode="&#x667;" horiz-adv-x="592"
d="M543 437q-55 -96 -71 -125q-40 -72 -65 -129q-36 -85 -77 -282h-70q-20 154 -74 282q-16 38 -54 108q-14 26 -38 68q-12 24 -43 77l77 40q37 -61 65 -118q35 -73 49 -109l50 -185l11 -2l11 59l16 54l23 73l17 45q10 24 27 55l71 128z" />
<glyph glyph-name="comma" unicode="&#x668;" horiz-adv-x="592"
d="M543 -55l-39 -19l-37 -20q-25 42 -69 122q-20 39 -45 104q-6 22 -50 187h-11q-27 -128 -50 -185l-14 -35q-28 -71 -101 -193l-38 20l-40 19q61 103 84 145q37 67 53 109l23 60l21 68q18 59 33 153l68 -1q18 -104 32 -154q19 -64 45 -127l21 -50l64 -121z" />
<glyph glyph-name="hyphen" unicode="&#x669;" horiz-adv-x="592"
d="M458 -99h-88v302l-51 -13l-46 -4q-62 0 -98.5 34t-37.5 94q-1 91 67 139q17 13 38.5 20t43.5 7q21 0 45 -5q19 -7 48 -23q37 -20 61 -104q1 -13 7 -39q2 -13 5 -36q1 -13 5 -42q1 -17 1 -42v-288zM362 293q-2 14 -5 36q-2 9 -9 30q-8 25 -35 37l-28 6q-41 0 -61 -36
q-13 -24 -13 -41v-11q0 -6 5 -15q14 -36 56 -36q36 0 90 30z" />
<glyph glyph-name="period" unicode="&#x640;" horiz-adv-x="215"
d="M242 0h-263v89h263v-89z" />
<glyph glyph-name="slash" unicode="&#x621;" horiz-adv-x="259"
d="M231 94l-185 -94l-15 29l63 35q-54 29 -55 83q-1 38 25 64.5t64 26.5q7 1 26 -1q6 -1 24 -10l-13 -28q-16 10 -37 10q-58 0 -58 -62q0 -53 51 -53q35 0 93 32z" />
<glyph glyph-name="zero" unicode="&#x627;" horiz-adv-x="282"
d="M183 0h-85v564h85v-564z" />
<glyph glyph-name="one" unicode="&#xfe00;" horiz-adv-x="230"
d="M249 0q-109 0 -157 43q-30 27 -30 92v417h88v-379q0 -59 17 -74q11 -9 82 -10v-89z" />
<glyph glyph-name="two" unicode="&#x622;" horiz-adv-x="327"
d="M331 613h-221l-52 -4q-13 -1 -30 -10q-17 -20 -29 -48l-81 30q35 77 76 101q27 15 89 17q79 1 145 1h103v-87zM210 0h-85v564h85v-564z" />
<glyph glyph-name="three" unicode="&#xfe01;" horiz-adv-x="282"
d="M356 616h-221l-52 -4q-21 -5 -29 -11q-17 -17 -30 -48l-81 31l23 46q17 30 31 41.5t46 20.5q20 5 64 8q31 1 146 1h103v-85zM296 0q-147 0 -178 73q-10 25 -10 62v417h88v-379q0 -58 15 -73q17 -10 85 -11v-89z" />
<glyph glyph-name="four" unicode="&#x623;" horiz-adv-x="282"
d="M183 0h-85v564h85v-564zM105 634l-149 -75l-12 24l50 27q-45 24 -45 64q0 46 45 70q13 7 27 7q16 -4 41 -12l-10 -23q-5 1 -14 4t-14 4q-18 0 -34 -14q-14 -22 -14 -36q0 -39 40 -40q15 0 32 8q14 2 44 18z" />
<glyph glyph-name="five" unicode="&#xfe03;" horiz-adv-x="253"
d="M105 634l-149 -75l-12 24l50 27q-45 24 -45 64q0 46 45 70q13 7 27 7q16 -4 41 -12l-10 -23q-5 1 -14 4t-14 4q-18 0 -34 -14q-14 -22 -14 -36q0 -39 40 -40q15 0 32 8q14 2 44 18zM266 0q-112 0 -158 43q-30 34 -30 92v417h88v-379q0 -60 16 -73q13 -10 84 -11v-89z" />
<glyph glyph-name="six" unicode="&#x625;" horiz-adv-x="282"
d="M183 0h-85v564h85v-564zM231 -146l-149 -75l-12 24l50 27q-45 25 -45 64q0 46 45 70q13 7 27 7q16 -3 41 -11l-10 -23q-5 1 -14 4t-14 4q-18 0 -34 -15q-14 -22 -14 -36q0 -38 40 -39q15 -1 32 7q14 3 43 18z" />
<glyph glyph-name="seven" unicode="&#xfe05;" horiz-adv-x="230"
d="M249 0q-109 0 -157 43q-30 27 -30 92v417h88v-379q0 -59 17 -74q11 -9 82 -10v-89zM231 -146l-149 -75l-12 24l50 27q-45 25 -45 64q0 46 45 70q13 7 27 7q16 -3 41 -11l-10 -23q-5 1 -14 4t-14 4q-18 0 -34 -15q-14 -22 -14 -36q0 -38 40 -39q15 -1 32 7q14 3 43 18z
" />
<glyph glyph-name="eight" unicode="&#xfe06;" horiz-adv-x="282"
d="M183 0h-85v564h85v-564z" />
<glyph glyph-name="nine" unicode="&#xfe07;" horiz-adv-x="230"
d="M249 0q-109 0 -157 43q-30 27 -30 92v417h88v-379q0 -59 17 -74q11 -9 82 -10v-89z" />
<glyph glyph-name="colon" unicode="&#x671;" horiz-adv-x="282"
d="M183 0h-85v564h85v-564z" />
<glyph glyph-name="semicolon" unicode="&#xfe08;" horiz-adv-x="230"
d="M249 0q-109 0 -157 43q-30 27 -30 92v417h88v-379q0 -59 17 -74q11 -9 82 -10v-89z" />
<glyph glyph-name="less" unicode="&#x628;" horiz-adv-x="788"
d="M755 143q0 -52 -38 -97.5t-90 -45.5h-465q-53 0 -91 46q-36 43 -36 97v133h88v-120q0 -40 13 -53.5t53 -13.5h411q43 0 58 20q7 10 7 47v120h90v-133zM479 -159q0 -40 -39 -58q-9 -5 -26 -5q-23 0 -44 18q-11 10 -13 20q-5 9 -5 25q0 51 62 51q65 0 65 -51z" />
<glyph glyph-name="equal" unicode="&#xfe09;" horiz-adv-x="839"
d="M855 0l-56 2l-38 6q-28 10 -46 26q-23 -16 -43.5 -25t-41.5 -9h-465q-52 0 -88.5 44t-36.5 99v133h88v-120q0 -16 2 -30q7 -37 64 -37h410q36 0 46 9q19 15 19 58v120h89v-120q0 -32 15 -47q16 -20 82 -20v-89zM459 -164q0 -25 -18 -42q-21 -18 -46 -18q-27 0 -45 16.5
t-18 43.5q0 53 63 54q64 1 64 -54z" />
<glyph glyph-name="greater" unicode="&#xfe0a;" horiz-adv-x="343"
d="M362 0h-28q-29 0 -38 1q-16 0 -21 5q-28 4 -54 28q-23 -16 -43.5 -25t-41.5 -9h-145v89h117q44 0 57 20q2 6 7 19q1 20 1 28v120h91v-120q0 -36 21 -53q15 -8 34 -11q15 -3 43 -3v-89zM198 -159q0 -28 -20 -44q-8 -8 -18.5 -13t-25.5 -5q-28 0 -45.5 17t-17.5 45
q0 51 63 52q64 0 64 -52z" />
<glyph glyph-name="question" unicode="&#xfe0b;" horiz-adv-x="287"
d="M255 143q0 -27 -9 -51.5t-30 -48.5q-37 -43 -89 -43h-145v89h117q45 0 58 20q2 5 5 18q3 9 3 29v120h90v-133zM156 -165q0 -25 -19 -44q-23 -16 -45 -16q-29 0 -47 16q-17 20 -17 44q0 53 64 54t64 -54z" />
<glyph glyph-name="at" unicode="&#x67e;" horiz-adv-x="788"
d="M755 143q0 -52 -38 -97.5t-90 -45.5h-465q-53 0 -91 46q-36 43 -36 97v133h88v-120q0 -40 13 -53.5t53 -13.5h411q43 0 58 20q7 10 7 47v120h90v-133zM554 -167q0 -47 -59 -48q-58 0 -59 48q-1 20 16 39q19 13 43 13q10 0 21 -3.5t20 -9.5q18 -19 18 -39zM385 -167
q0 -47 -59 -48q-59 0 -59 48q0 20 16 39q20 13 43 13q22 0 42 -13q13 -18 16 -30q1 -4 1 -9zM466 -292q0 -49 -59 -49t-59 49q0 22 16 38q2 1 19 12q26 3 24 3q24 0 41 -15q10 -10 11 -19q7 -11 7 -19z" />
<glyph glyph-name="A" unicode="&#xfe0c;" horiz-adv-x="839"
d="M855 0l-56 2l-38 6q-28 10 -46 26q-23 -16 -43.5 -25t-41.5 -9h-465q-52 0 -88.5 44t-36.5 99v133h88v-120q0 -16 2 -30q7 -37 64 -37h410q36 0 46 9q19 15 19 58v120h89v-120q0 -32 15 -47q16 -20 82 -20v-89zM558 -154q0 -46 -61 -46q-56 0 -56 46q0 23 17 39
q13 16 39 16q24 0 43 -16q5 -6 11.5 -17.5t6.5 -21.5zM388 -154q0 -46 -59 -46q-56 0 -57 46q-1 24 16 39.5t41 15.5t41 -16q10 -11 14 -19t4 -20zM469 -277q0 -48 -59 -49q-58 0 -58 49q0 11 4 19q2 4 13 19q7 7 18 11q5 2 23 4q24 0 41 -15q5 -5 12 -20q6 -8 6 -18z" />
<glyph glyph-name="B" unicode="&#xfe0d;" horiz-adv-x="362"
d="M380 0l-53 1l-27 4l-21 11l-24 18q-17 -13 -41.5 -23.5t-41.5 -10.5h-190v89h162q44 0 58 20q2 5 7 18v12.5v16.5v120h88v-120q0 -40 15 -55q19 -12 68 -12v-89zM319 -154q0 -47 -60 -47q-59 0 -59 47q0 23 17.5 39t41.5 16q23 0 41 -16q5 -6 12 -18t7 -21zM149 -154
q0 -47 -59 -47t-59 47q0 33 36 51q9 4 23 4q24 0 41 -16q5 -5 12 -19q6 -10 6 -20zM230 -277q0 -49 -58 -49q-60 0 -61 49q-1 23 15 37.5t46 15.5q22 0 39 -15q6 -6 14 -20q5 -9 5 -18z" />
<glyph glyph-name="C" unicode="&#xfe0e;" horiz-adv-x="343"
d="M304 143q0 -56 -34 -98q-37 -45 -92 -45h-188v89h160q45 0 59 20q1 5 5 18q0 8 2 29v120h88v-133zM319 -154q0 -47 -60 -47q-59 0 -59 47q0 23 17.5 39t41.5 16q23 0 41 -16q5 -6 12 -18t7 -21zM149 -154q0 -47 -59 -47t-59 47q0 33 36 51q9 4 23 4q24 0 41 -16
q5 -5 12 -19q6 -10 6 -20zM230 -277q0 -49 -58 -49q-60 0 -61 49q-1 23 15 37.5t46 15.5q22 0 39 -15q6 -6 14 -20q5 -9 5 -18z" />
<glyph glyph-name="D" unicode="&#x62a;" horiz-adv-x="788"
d="M521 424q0 -24 -17.5 -39t-41.5 -15q-21 0 -39.5 16.5t-18.5 37.5q0 46 58 47q59 0 59 -47zM352 424q0 -24 -17.5 -39t-41.5 -15q-21 0 -41 15q-16 18 -16 39q0 46 57 47q59 0 59 -47zM755 143q0 -52 -38 -97.5t-90 -45.5h-465q-53 0 -91 46q-36 43 -36 97v133h88v-120
q0 -40 13 -53.5t53 -13.5h411q43 0 58 20q7 10 7 47v120h90v-133z" />
<glyph glyph-name="E" unicode="&#xfe0f;" horiz-adv-x="839"
d="M545 424q0 -23 -17.5 -38t-40.5 -15q-24 0 -43 15q-14 11 -18 38q0 49 61 49q58 0 58 -49zM376 424q0 -22 -17.5 -37.5t-42.5 -15.5q-23 0 -40.5 15t-17.5 38q0 49 58 49q60 0 60 -49zM855 0l-56 2l-38 6q-28 10 -46 26q-23 -16 -43.5 -25t-41.5 -9h-465q-52 0 -88.5 44
t-36.5 99v133h88v-120q0 -16 2 -30q7 -37 64 -37h410q36 0 46 9q19 15 19 58v120h89v-120q0 -32 15 -47q16 -20 82 -20v-89z" />
<glyph glyph-name="F" unicode="&#xfe10;" horiz-adv-x="362"
d="M311 423q0 -22 -17.5 -37.5t-40.5 -15.5q-21 0 -43 15q-16 19 -16 38q0 48 59 48q58 0 58 -48zM143 423q0 -23 -18 -38t-41 -15q-24 0 -41 15t-17 38q0 48 58 48q59 0 59 -48zM380 0l-53 1l-27 4l-21 11l-24 18q-17 -13 -41.5 -23.5t-41.5 -10.5h-190v89h162q44 0 58 20
q2 5 7 18v12.5v16.5v120h88v-120q0 -40 15 -55q19 -12 68 -12v-89z" />
<glyph glyph-name="G" unicode="&#xfe11;" horiz-adv-x="333"
d="M297 420q0 -47 -58 -54q-18 0 -41 14q-18 18 -18 40q0 48 59 48q58 0 58 -48zM128 420q0 -24 -16 -39t-41 -15q-22 0 -43 14q-15 20 -17 40q0 48 60 48q57 0 57 -48zM297 143q0 -54 -37 -98.5t-88 -44.5h-190v89h161q59 0 63 38q3 9 3 29v120h88v-133z" />
<glyph glyph-name="H" unicode="&#x62b;" horiz-adv-x="788"
d="M442 517q0 -23 -19 -38.5t-41 -15.5q-25 0 -41.5 16t-16.5 38q0 47 58 47q59 0 60 -47zM527 392q0 -23 -18 -37q-13 -13 -41 -16q-23 0 -42 14q-9 12 -12 18q-4 14 -5 21q0 49 59 49t59 -49zM358 392q0 -21 -15.5 -35.5t-43.5 -17.5q-25 0 -40 14q-18 20 -18 39
q-1 49 58 49t59 -49zM755 143q0 -52 -38 -97.5t-90 -45.5h-465q-53 0 -91 46q-36 43 -36 97v133h88v-120q0 -40 13 -53.5t53 -13.5h411q43 0 58 20q7 10 7 47v120h90v-133z" />
<glyph glyph-name="I" unicode="&#xfe12;" horiz-adv-x="839"
d="M457 517q0 -22 -19.5 -38t-41.5 -16q-21 0 -39.5 16t-18.5 38q-1 47 58 47q61 0 61 -47zM542 392q0 -21 -18 -37q-13 -13 -43 -16q-24 0 -39 14q-9 8 -13 18q-5 7 -5 21q0 49 57 49q61 0 61 -49zM371 392q0 -22 -15 -36t-43 -17q-25 0 -40 14q-3 2 -14 18q-4 10 -4 21
q0 49 58 49t58 -49zM855 0l-56 2l-38 6q-28 10 -46 26q-23 -16 -43.5 -25t-41.5 -9h-465q-52 0 -88.5 44t-36.5 99v133h88v-120q0 -16 2 -30q7 -37 64 -37h410q36 0 46 9q19 15 19 58v120h89v-120q0 -32 15 -47q16 -20 82 -20v-89z" />
<glyph glyph-name="J" unicode="&#xfe13;" horiz-adv-x="362"
d="M220 517q0 -22 -18.5 -38.5t-42.5 -16.5q-21 0 -40 16.5t-19 38.5q0 47 59 47q61 0 61 -47zM305 392q1 -22 -16.5 -37.5t-42.5 -16.5q-24 -1 -42 15q-5 6 -12 18q-5 8 -5 21q0 49 59 49q58 0 59 -49zM136 392q0 -24 -17.5 -38.5t-41.5 -15.5q-12 -1 -22 3q-6 1 -20 12
q-6 6 -11.5 19t-5.5 20q0 49 59 49t59 -49zM380 0l-53 1l-27 4l-21 11l-24 18q-17 -13 -41.5 -23.5t-41.5 -10.5h-190v89h162q44 0 58 20q2 5 7 18v12.5v16.5v120h88v-120q0 -40 15 -55q19 -12 68 -12v-89z" />
<glyph glyph-name="K" unicode="&#xfe14;" horiz-adv-x="333"
d="M220 517q0 -22 -18.5 -38.5t-42.5 -16.5q-21 0 -40 16.5t-19 38.5q0 47 59 47q61 0 61 -47zM305 392q1 -22 -16.5 -37.5t-42.5 -16.5q-24 -1 -42 15q-5 6 -12 18q-5 8 -5 21q0 49 59 49q58 0 59 -49zM136 392q0 -24 -17.5 -38.5t-41.5 -15.5q-12 -1 -22 3q-6 1 -20 12
q-6 6 -11.5 19t-5.5 20q0 49 59 49t59 -49zM297 143q0 -54 -37 -98.5t-88 -44.5h-190v89h161q59 0 63 38q3 9 3 29v120h88v-133z" />
<glyph glyph-name="L" unicode="&#x62c;" horiz-adv-x="541"
d="M553 -425h-242q-127 0 -213 87q-77 77 -77 189q0 145 129 216l270 149q-12 23 -25.5 33t-35.5 10q-39 7 -232 7l-11 86h213q181 0 184 -181l-290 -163q-118 -66 -118 -164q0 -38 15 -66q10 -27 44 -60q58 -57 124 -57h257zM399 -165q0 -27 -19 -44q-11 -10 -20 -13.5
t-24 -3.5q-64 0 -64 61q0 53 64 54q62 1 63 -54z" />
<glyph glyph-name="M" unicode="&#xfe15;" horiz-adv-x="541"
d="M562 0q-67 0 -108 18q-32 20 -44 44l-12 42l-172 -96q-118 -66 -118 -164q0 -70 57 -126.5t127 -56.5h256l9 -86h-243q-128 0 -214 87q-75 77 -75 189q0 144 129 216l270 149q-24 37 -61 43q-48 7 -233 7l-10 86h212q179 0 185 -181l-81 -46q9 -22 42 -32q15 -4 58 -4h26
v-89zM403 -159q0 -27 -18 -45q-27 -18 -46 -18q-42 0 -60 38q-4 8 -4 25q0 51 64 51t64 -51z" />
<glyph glyph-name="N" unicode="&#xfe16;" horiz-adv-x="506"
d="M518 0q-62 0 -103 18q-23 9 -35 39l-10 47q-124 -72 -178 -89q-5 -2 -16.5 -4.5t-19.5 -4.5l-46 -2l-131 -4v89q113 0 143 4q45 7 99 28q24 12 71 37q33 20 100 57q-19 38 -49.5 44t-84.5 6l-155 1l-12 86h218q177 0 179 -181l-81 -45q0 -37 111 -37v-89zM293 -164
q0 -24 -18 -45q-23 -16 -45 -16q-65 0 -65 61q0 53 65 53q63 0 63 -53z" />
<glyph glyph-name="O" unicode="&#xfe17;" horiz-adv-x="506"
d="M488 171l-202 -116q-61 -34 -124 -46q-47 -9 -183 -9v89q113 0 143 4q45 7 99 28q24 12 71 37q33 20 100 57q-19 38 -49.5 44t-84.5 6l-155 1l-12 86h218q177 0 179 -181zM172 -158q0 -24 -19 -44q-8 -6 -22 -13q-7 -5 -24 -5q-27 0 -46 18q-9 9 -12.5 18t-5.5 26
q0 52 64 53q64 2 65 -53z" />
<glyph glyph-name="P" unicode="&#x686;" horiz-adv-x="541"
d="M498 -109q0 -47 -58 -47q-60 0 -60 47q0 34 37 51q11 3 23 3q23 0 40.5 -16t17.5 -38zM551 -425h-242q-129 0 -215 87q-76 77 -76 189q0 144 130 216l269 149q-12 24 -26 33.5t-33 9.5q-41 7 -233 7l-11 86h212q180 0 185 -181l-290 -163q-118 -66 -118 -164
q0 -71 59.5 -127t123.5 -56h257zM329 -109q0 -47 -60 -47q-59 0 -59 47q0 34 37 51q10 3 22 3q23 0 40.5 -15.5t19.5 -38.5zM408 -233q0 -48 -59 -49q-57 0 -58 49q0 21 14 39q8 6 20 11q9 3 24 3q12 0 20 -3t21 -11q18 -18 18 -39z" />
<glyph glyph-name="Q" unicode="&#xfe18;" horiz-adv-x="541"
d="M495 -109q0 -47 -59 -47t-59 47q0 32 37 51q10 3 22 3q23 0 41 -15.5t18 -38.5zM568 0q-68 0 -109 18q-31 19 -44 44l-11 42l-173 -96q-117 -66 -117 -164q0 -68 57.5 -125.5t125.5 -57.5h257l7 -86h-241q-128 0 -214 87q-77 79 -77 189q0 144 129 216l271 149
q-24 37 -60 43q-48 7 -233 7l-11 86h213q136 0 172 -104q13 -38 13 -77l-81 -46q8 -22 42 -32q4 -1 20 -2q20 -2 38 -2h26v-89zM326 -109q0 -47 -60 -47q-57 0 -57 47q0 33 35 51q9 3 22 3q22 0 40.5 -15.5t19.5 -38.5zM405 -233q0 -48 -58 -49q-60 0 -60 49q0 21 16 39
q5 4 19 11q8 3 25 3q9 0 21 -3q7 -3 18 -11q19 -19 19 -39z" />
<glyph glyph-name="R" unicode="&#xfe19;" horiz-adv-x="506"
d="M518 0q-62 0 -103 18q-23 9 -35 39l-10 47q-124 -72 -178 -89q-5 -2 -16.5 -4.5t-19.5 -4.5l-46 -2l-131 -4v89q113 0 143 4q45 7 99 28q24 12 71 37q33 20 100 57q-19 38 -49.5 44t-84.5 6l-155 1l-12 86h218q177 0 179 -181l-81 -45q0 -37 111 -37v-89zM390 -154
q0 -47 -60 -47q-58 0 -58 47q0 24 16 39q4 4 21 11q8 4 21 4q24 0 41 -15q6 -6 14 -19q5 -9 5 -20zM221 -154q0 -47 -60 -47q-58 0 -58 47q0 23 17 39q6 5 19 11q8 4 22 4q22 0 42 -15q10 -11 14 -18t4 -21zM302 -277q0 -49 -60 -49q-59 0 -59 49q0 28 23 43q14 8 36 9
q24 0 41 -14q5 -6 14 -20q5 -11 5 -18z" />
<glyph glyph-name="S" unicode="&#xfe1a;" horiz-adv-x="506"
d="M488 171l-202 -116q-61 -34 -124 -46q-47 -9 -183 -9v89q113 0 143 4q45 7 99 28q24 12 71 37q33 20 100 57q-19 38 -49.5 44t-84.5 6l-155 1l-12 86h218q177 0 179 -181zM388 -154q0 -46 -59 -46t-59 46q0 23 17.5 39t41.5 16t41 -16q10 -11 14 -19t4 -20zM220 -154
q0 -46 -61 -46q-58 0 -58 46q0 22 18 38.5t40 16.5q26 0 43 -16q6 -5 13 -19q5 -6 5 -20zM300 -277q0 -48 -58 -49q-60 0 -60 49q0 51 60 53q24 0 40 -15q5 -7 14 -20q4 -8 4 -18z" />
<glyph glyph-name="T" unicode="&#x62d;" horiz-adv-x="541"
d="M554 -425h-242q-139 0 -224 99q-66 78 -66 172v19l3 19q17 123 125 183l272 149q-18 33 -79 46q-45 9 -119 7q-170 -3 -96 -3l-11 86h213q88 0 136 -47t48 -134l-290 -163q-118 -66 -118 -164q0 -71 58.5 -127t124.5 -56h257z" />
<glyph glyph-name="U" unicode="&#xfe1b;" horiz-adv-x="541"
d="M563 0q-79 0 -120 24q-21 13 -31 38l-13 42l-172 -96q-118 -66 -118 -164q0 -36 14 -66q17 -35 44 -60q61 -57 125 -57h258l8 -86h-243q-140 0 -224 99q-65 77 -65 172v19l1 19q12 119 128 183l271 149q-18 33 -79 46q-46 9 -119 7q-171 -3 -96 -3l-11 86h212
q88 0 136 -46.5t48 -134.5l-80 -46q4 -23 35.5 -29.5t90.5 -6.5v-89z" />
<glyph glyph-name="V" unicode="&#xfe1c;" horiz-adv-x="506"
d="M518 0q-68 0 -103 18q-18 9 -35 39l-10 47q-22 -15 -51 -31q-19 -10 -54 -28q-27 -11 -73 -29q-68 -16 -213 -16v89h70q32 0 43 1q18 1 26 3q66 9 103 28q14 4 88 46l83 48q-11 33 -60 45q-22 2 -80 5q-25 1 -149 1l-12 86h218q85 0 132 -47q44 -36 47 -136l-81 -44
q0 -35 111 -36v-89z" />
<glyph glyph-name="W" unicode="&#xfe1d;" horiz-adv-x="506"
d="M488 171l-202 -116q-62 -35 -125 -46q-49 -9 -182 -9v89h70q32 0 43 1q18 1 26 3q66 9 103 28q14 4 88 46l83 48q-11 33 -60 45q-22 2 -80 5q-25 1 -149 1l-12 86h218q177 0 179 -181z" />
<glyph glyph-name="X" unicode="&#x62e;" horiz-adv-x="541"
d="M370 512q1 -27 -20 -44t-43 -17q-27 -1 -48 17q-17 20 -17 44q0 51 65 51q63 0 63 -51zM553 -425h-242q-127 0 -213 87q-77 77 -77 189q0 145 129 216l270 149q-12 23 -25.5 33t-35.5 10q-39 7 -232 7l-11 86h213q181 0 184 -181l-290 -163q-118 -66 -118 -164
q0 -38 15 -66q10 -27 44 -60q58 -57 124 -57h257z" />
<glyph glyph-name="Y" unicode="&#xfe1e;" horiz-adv-x="541"
d="M362 512q0 -26 -19 -43.5t-46 -17.5t-45.5 18.5t-18.5 42.5q0 52 64 52q65 0 65 -52zM562 0q-67 0 -108 18q-32 20 -44 44l-12 42l-172 -96q-118 -66 -118 -164q0 -70 57 -126.5t127 -56.5h256l9 -86h-243q-128 0 -214 87q-75 77 -75 189q0 144 129 216l270 149
q-24 37 -61 43q-48 7 -233 7l-10 86h212q179 0 185 -181l-81 -46q9 -22 42 -32q15 -4 58 -4h26v-89z" />
<glyph glyph-name="Z" unicode="&#xfe1f;" horiz-adv-x="506"
d="M297 524q0 -28 -20.5 -45t-43.5 -17q-27 0 -46 18q-15 18 -15 44q0 52 61 52q64 0 64 -52zM518 0q-62 0 -103 18q-23 9 -35 39l-10 47q-124 -72 -178 -89q-5 -2 -16.5 -4.5t-19.5 -4.5l-46 -2l-131 -4v89q113 0 143 4q45 7 99 28q24 12 71 37q33 20 100 57
q-19 38 -49.5 44t-84.5 6l-155 1l-12 86h218q177 0 179 -181l-81 -45q0 -37 111 -37v-89z" />
<glyph glyph-name="bracketleft" unicode="&#xfe20;" horiz-adv-x="506"
d="M319 510q0 -25 -20 -43t-45 -18q-30 0 -47 17t-17 44q0 52 64 52q65 1 65 -52zM488 171l-202 -116q-61 -34 -124 -46q-47 -9 -183 -9v89q113 0 143 4q45 7 99 28q24 12 71 37q33 20 100 57q-19 38 -49.5 44t-84.5 6l-155 1l-12 86h218q177 0 179 -181z" />
<glyph glyph-name="backslash" unicode="&#x62f;" horiz-adv-x="484"
d="M462 118q0 -25 -8 -47t-28 -37q-34 -34 -94 -34h-274l-12 89h280q50 0 50 33q0 8 -14 33l-198 210l59 60l199 -210q16 -17 29 -48q4 -8 7.5 -23.5t3.5 -25.5z" />
<glyph glyph-name="bracketright" unicode="&#xfe21;" horiz-adv-x="574"
d="M600 0h-40q-49 0 -112 61q-11 -15 -36 -43q-30 -18 -81 -18h-274l-12 89h281q49 0 49 32q0 18 -15 34l-198 210l60 60l265 -281q37 -39 57 -50q13 -5 56 -5v-89z" />
<glyph glyph-name="asciicircum" unicode="&#x630;" horiz-adv-x="484"
d="M289 573q0 -26 -19 -44t-45 -18q-29 0 -46.5 19t-17.5 43q0 52 64 52t64 -52zM461 118q0 -54 -37.5 -86t-92.5 -32h-274l-12 89h281q49 0 49 33q0 17 -15 33l-198 210l60 60l199 -210q35 -37 40 -97z" />
<glyph glyph-name="underscore" unicode="&#xfe22;" horiz-adv-x="574"
d="M232 527q1 -27 -21 -43q-18 -17 -42 -17q-29 0 -46.5 17t-17.5 43q0 52 64 53q62 1 63 -53zM599 0h-40q-49 0 -111 61q-14 -23 -36 -43q-30 -18 -81 -18h-275l-12 89h281q49 0 49 32q0 18 -15 34l-198 210l60 60l265 -281q39 -41 58 -51q10 -3 55 -4v-89z" />
<glyph glyph-name="grave" unicode="&#x631;" horiz-adv-x="426"
d="M375 16q0 -93 -64.5 -166t-156.5 -73h-117l-15 91h99q65 0 110 31q52 34 52 95v282h92v-260z" />
<glyph glyph-name="a" unicode="&#xfe23;" horiz-adv-x="448"
d="M463 0q-64 0 -94 42q0 -125 -70 -200q-59 -65 -154 -65h-112l-15 88h121q55 0 97.5 37.5t42.5 91.5v282h89v-126q0 -60 95 -61v-89z" />
<glyph glyph-name="b" unicode="&#x632;" horiz-adv-x="426"
d="M355 517q1 -52 -64 -63q-32 0 -49 19q-15 16 -16 44q-1 52 65 52q62 0 64 -52zM374 16q0 -93 -64.5 -166t-156.5 -73h-118l-14 91h100q114 0 152 80q9 21 9 46v282h92v-260z" />
<glyph glyph-name="c" unicode="&#xfe24;" horiz-adv-x="448"
d="M355 512q0 -26 -21.5 -43.5t-42.5 -17.5q-28 -1 -49 17q-15 18 -16 44q-1 51 65 51q62 0 64 -51zM463 0q-64 0 -94 42q0 -127 -70 -200q-61 -65 -154 -65h-112l-15 88h121q52 0 96 41t44 88v282h89v-126q0 -60 95 -61v-89z" />
<glyph glyph-name="d" unicode="&#x698;" horiz-adv-x="425"
d="M313 517q0 -24 -18 -39.5t-41 -15.5q-22 0 -43 16q-13 15 -16 28q-1 4 -1 11q0 46 60 46q25 0 40 -11q19 -12 19 -35zM398 392q0 -23 -17.5 -38t-41.5 -16t-42 15q-5 6 -14 18q-4 12 -4 21q0 47 60 48q58 1 59 -48zM227 392q0 -52 -58 -54q-12 0 -20.5 2t-21.5 13
q-8 9 -12 17t-6 22q0 47 60 48q58 1 58 -48zM376 16q0 -93 -65 -166t-156 -73h-117l-14 91h98q116 0 153 80q10 21 10 46v282h91v-260z" />
<glyph glyph-name="e" unicode="&#xfe25;" horiz-adv-x="448"
d="M305 518q1 -22 -17 -37.5t-42 -15.5q-13 0 -21.5 2.5t-19.5 12.5q-18 18 -18 38q0 49 59 49q58 0 59 -49zM392 393q0 -23 -18 -37.5t-42 -14.5q-33 -1 -55 34l-2 18q0 48 57 49q60 0 60 -49zM222 393q0 -20 -18 -36t-40 -16q-22 -1 -42 15q-5 6 -13 19q-1 6 -4 18
q0 48 59 49q58 0 58 -49zM463 0q-64 0 -94 42q0 -127 -70 -200q-61 -65 -154 -65h-112l-15 88h121q52 0 96 41t44 88v282h89v-126q0 -60 95 -61v-89z" />
<glyph glyph-name="f" unicode="&#x633;" horiz-adv-x="1104"
d="M1060 142q0 -62 -29 -103q-33 -48 -92 -48q-57 0 -123 60q-41 -59 -105 -60q-50 0 -99 35q0 -104 -63.5 -176.5t-155.5 -72.5h-134q-87 0 -152 67.5t-65 161.5v183h86v-188q0 -59 41 -97.5t100 -38.5h116q58 0 98.5 39t40.5 97v275h88v-131q0 -30 29 -53q4 -5 21 -13
q9 -4 26 -4q60 0 60 55v146h87v-129q0 -28 27 -55q25 -17 49 -17q61 0 61 55v146h88v-134z" />
<glyph glyph-name="g" unicode="&#xfe26;" horiz-adv-x="1126"
d="M1143 0l-38 1h-14q-5 1 -12 5q-34 5 -58 42q-39 -56 -110 -57q-65 0 -117 60q-46 -62 -108 -62q-50 0 -91 37q0 -99 -59 -171q-63 -78 -160 -78h-137q-86 0 -151.5 67.5t-65.5 161.5v183h88v-188q0 -58 41 -97t99 -39h115q63 0 100 40q21 19 31.5 42t10.5 54v275h88v-131
q0 -29 23 -49.5t52 -20.5q59 0 59 55v146h89v-129q0 -27 27 -55q8 -5 22 -13q11 -4 26 -4q61 0 61 55v146h87v-134q0 -27 32 -47l29 -4l41 -2v-89z" />
<glyph glyph-name="h" unicode="&#xfe27;" horiz-adv-x="765"
d="M778 0l-37 1h-16q-6 2 -11 5q-36 7 -56 42q-41 -57 -101 -58q-61 0 -122 58q-50 -58 -126 -58q-73 0 -120 62q-23 -33 -82 -45q-33 -7 -132 -7v89q903 0 78 -3q43 0 63 14q27 19 27 65v111h85v-131q0 -32 30 -53q23 -17 46 -17q60 0 60 55v146h87v-129q0 -33 29 -55
q26 -17 47 -17q62 0 62 55v146h86v-134q0 -27 33 -47l28 -4l42 -2v-89z" />
<glyph glyph-name="i" unicode="&#xfe28;" horiz-adv-x="713"
d="M680 142q0 -74 -36 -114q-15 -16 -39 -28q-19 -10 -48 -10q-62 0 -122 59q-49 -58 -108 -58q-56 0 -118 70q-27 -25 -55 -45q-32 -16 -62 -16h-112v89h106q33 0 47.5 15t14.5 50v122h85v-129q0 -27 27 -55q26 -17 51 -17q59 0 59 55v146h88v-129q0 -33 28 -55
q26 -17 47 -17q62 0 62 55v146h85v-134z" />
<glyph glyph-name="j" unicode="&#x634;" horiz-adv-x="1104"
d="M844 517q0 -23 -19 -38.5t-42 -15.5q-22 0 -38.5 16.5t-19.5 37.5q0 47 58 47q61 0 61 -47zM928 392q1 -46 -58 -53q-26 0 -42 14q-5 6 -12 18q-6 7 -6 21q0 49 60 49q57 0 58 -49zM760 392q0 -21 -16.5 -35.5t-43.5 -17.5q-24 0 -40 14q-5 6 -14 18q-1 4 -4 21
q0 49 58 49q60 0 60 -49zM1060 142q0 -62 -29 -103q-33 -48 -92 -48q-63 0 -123 60q-48 -59 -105 -60q-41 0 -99 35q0 -109 -64.5 -179t-154.5 -70h-134q-90 0 -153.5 69t-63.5 160v183h86v-188q0 -56 41 -96t100 -40h116q57 0 98 39t41 97v275h88v-131q0 -30 28 -53
q11 -7 35 -16q5 -1 13 -1q60 0 60 55v146h87v-129q0 -32 27 -55q11 -6 27 -13q7 -4 22 -4q61 0 61 55v146h88v-134z" />
<glyph glyph-name="k" unicode="&#xfe29;" horiz-adv-x="1126"
d="M825 514q0 -22 -20 -37.5t-40 -15.5q-25 0 -42 15t-17 38q-1 48 59 48q24 0 42 -12.5t18 -35.5zM910 390q0 -20 -18 -38q-19 -14 -43 -15q-21 -1 -41 14q-5 6 -14 19q-4 8 -4 20q0 48 59 48q61 0 61 -48zM738 390q0 -24 -17.5 -38t-41.5 -15q-21 -1 -41 14q-5 6 -13 19
q-2 6 -5 20q0 48 59 48t59 -48zM1140 0h-30l-35 6q-35 7 -59 42q-38 -55 -109 -56q-67 -1 -116 60q-46 -62 -111 -62q-47 0 -89 36q0 -120 -78 -192q-61 -57 -139 -57h-137q-91 0 -156 70q-63 67 -63 159v183h89v-188q0 -42 23 -76.5t62 -49.5q24 -10 55 -10h115
q57 0 99 39.5t42 96.5v275h88v-131q0 -31 27 -53q29 -17 49 -17q60 0 60 55v146h88v-129q0 -32 28 -55q25 -17 47 -17q60 0 60 55v146h88v-134q0 -34 31 -47q12 -3 71 -6v-89z" />
<glyph glyph-name="l" unicode="&#xfe2a;" horiz-adv-x="765"
d="M437 542q0 -23 -18.5 -38.5t-41.5 -15.5q-27 0 -41 15q-17 17 -17 39q0 48 58 48q24 0 42 -13t18 -35zM523 417q0 -19 -19 -39q-17 -14 -42 -15q-22 0 -41 15q-10 11 -13 18.5t-5 20.5q0 46 59 48q61 1 61 -48zM351 417q0 -23 -17.5 -38t-41.5 -16q-23 0 -42 15
q-18 24 -18 39q0 46 60 48q59 1 59 -48zM778 0h-34l-31 6q-35 7 -57 42q-41 -56 -101 -57q-59 0 -121 60q-53 -59 -125 -60q-74 0 -120 63q-35 -40 -99 -50q-26 -4 -115 -4v89q-548 0 79 -3q43 0 63 14q26 18 26 65v111h85v-131q0 -31 28 -53q12 -7 35 -16q6 -1 13 -1
q60 0 60 55v146h87v-129q0 -35 28 -55q9 -4 27 -13q10 -4 21 -4q62 0 62 55v146h86v-134q0 -33 33 -47q10 -3 70 -6v-89z" />
<glyph glyph-name="m" unicode="&#xfe2b;" horiz-adv-x="713"
d="M458 517q0 -23 -19 -39t-42 -16q-22 0 -40 16t-18 39q0 46 58 46q61 0 61 -46zM543 392q0 -20 -18 -39q-16 -14 -41 -15q-24 -1 -41 15q-18 20 -18 39q-1 47 59 48q59 1 59 -48zM374 392q0 -24 -17.5 -38.5t-42.5 -15.5q-24 -1 -39 15q-7 6 -15 18q-4 14 -4 21
q0 47 58 48q60 1 60 -48zM680 142q0 -74 -37 -115q-32 -35 -85 -36q-70 -1 -122 60q-49 -59 -107 -59q-60 0 -120 70q-40 -39 -79 -54q-7 -2 -19 -7q-5 -1 -19 -1h-112v89h106q62 0 62 64v122l85 1v-129q0 -31 27 -55q26 -17 51 -17q59 0 59 55v146h88v-129q0 -35 27 -55
q39 -17 48 -17q62 0 62 55v146h85v-134z" />
<glyph glyph-name="n" unicode="&#x635;" horiz-adv-x="1114"
d="M1089 156q0 -65 -38.5 -110.5t-116.5 -45.5h-240q-71 0 -91 46q0 -115 -62.5 -192t-157.5 -77h-136q-89 0 -153.5 73t-64.5 166v173h89v-195q0 -47 45 -86.5t92 -39.5h122q50 0 93 41t43 85v282h91v-131q0 -55 82 -56q38 98 92 167q75 96 156 96q33 0 69 -20.5t62 -72.5
l17 -50q7 -18 7 -53zM1004 166q0 46 -32 89q-10 10 -22 10q-38 0 -89 -56q-30 -32 -46 -56q-19 -29 -37 -64h170q26 0 42 27q14 22 14 50z" />
<glyph glyph-name="o" unicode="&#xfe2c;" horiz-adv-x="1104"
d="M1119 0h-401q-96 0 -118 46q0 -116 -52 -188q-59 -81 -170 -81h-136q-92 0 -151 70q-17 19 -46 77q-16 51 -16 92v173h87v-195q0 -51 41 -90t92 -39h125q50 0 97 46q40 39 40 83v282h88v-131q0 -55 84 -56q104 263 244 264q54 0 97 -39t53 -93q5 -24 5 -52q1 -32 -13 -80
h50v-89zM993 173q0 55 -28 82q-2 3 -9 4q-12 1 -17 5q-19 0 -41 -14q-15 -8 -45.5 -40.5t-78.5 -120.5h170q49 0 49 84z" />
<glyph glyph-name="p" unicode="&#xfe2d;" horiz-adv-x="765"
d="M778 0h-446q-91 0 -126 72q-52 -72 -118 -72h-108v89h98q62 0 62 65v122h87v-112q0 -74 85 -75q52 127 113.5 194.5t131.5 68.5q33 0 69 -20q84 -49 84 -161q0 -36 -14 -82h82v-89zM622 173q0 54 -27 82q-2 1 -9 4q-8 0 -18 5q-38 0 -88 -55q-19 -21 -40 -51
q-10 -14 -41 -69h173q50 0 50 84z" />
<glyph glyph-name="q" unicode="&#xfe2e;" horiz-adv-x="758"
d="M710 172q0 -41 -14 -86q-7 -23 -12 -33q-8 -16 -21 -27q-31 -26 -108 -26h-223q-91 0 -126 72q-52 -72 -118 -72h-108v89h98q62 0 62 65v122h87v-112q0 -74 85 -75q52 127 113.5 194.5t131.5 68.5q31 0 68 -20q85 -48 85 -160zM622 173q0 54 -27 82q-2 1 -9 4q-8 0 -18 5
q-38 0 -88 -55q-19 -21 -40 -51q-10 -14 -41 -69h173q50 0 50 84z" />
<glyph glyph-name="r" unicode="&#x636;" horiz-adv-x="1114"
d="M920 515q1 -23 -21 -44q-12 -12 -43 -17q-27 0 -45 17t-18 44q0 53 63 53q64 0 64 -53zM1089 156q0 -73 -41 -114.5t-114 -41.5h-240q-76 0 -91 46q0 -113 -63 -191t-157 -78h-136q-90 0 -154 72t-64 167v173h89v-195q0 -46 43.5 -86t93.5 -40h122q45 0 90.5 41t45.5 85
v282h91v-131q0 -55 84 -56q51 124 119 197q62 66 128 66q11 0 36 -5q68 -29 95 -88q22 -49 23 -103zM1005 166q0 51 -33 89q-16 10 -22 10q-36 0 -88 -55t-84 -121h171q9 0 23 3q24 12 29 44q4 11 4 30z" />
<glyph glyph-name="s" unicode="&#xfe30;" horiz-adv-x="1104"
d="M912 509q0 -26 -21 -43.5t-43 -17.5q-64 0 -64 61q0 52 64 52q64 1 64 -52zM1118 0h-401q-103 0 -118 46q0 -132 -64 -203q-60 -66 -158 -66h-135q-95 0 -156 73q-58 69 -58 166v173h87v-195q0 -48 43.5 -88.5t89.5 -40.5h123q56 0 97.5 45.5t41.5 83.5v282h88v-131
q0 -55 84 -56q109 263 244 264q31 0 70 -21q85 -47 85 -163q0 -40 -14 -80h51v-89zM992 173q0 61 -28 82q-4 3 -9.5 4.5l-16.5 4.5q-19 0 -40.5 -12.5t-46.5 -42.5q-3 -4 -8 -11q-3 -3 -10 -9q-3 -4 -10.5 -14.5t-14.5 -20.5l-14 -26q-14 -25 -21 -39h170q49 0 49 84z" />
<glyph glyph-name="t" unicode="&#xfe31;" horiz-adv-x="765"
d="M503 524q0 -26 -19 -45q-24 -17 -44 -17q-31 0 -47.5 17.5t-16.5 44.5q0 52 64 52q63 1 63 -52zM778 0h-446q-88 0 -127 72q-51 -72 -119 -72h-106v89h98q62 0 62 64v122l87 1v-112q0 -74 86 -75q107 261 245 263q35 0 68 -20q82 -52 82 -161q0 -45 -13 -82h83v-89z
M620 175q0 33 -6 50.5t-19 29.5q-4 3 -9.5 4.5t-17.5 4.5q-39 0 -88 -54q-9 -11 -44 -56q-11 -20 -21 -33l-16 -32h171q50 0 50 86z" />
<glyph glyph-name="u" unicode="&#xfe32;" horiz-adv-x="758"
d="M502 521q0 -27 -20.5 -44.5t-44.5 -17.5q-28 0 -45 18t-17 44q0 53 62 53q65 0 65 -53zM710 172q0 -31 -15 -86q-11 -42 -32 -60q-30 -26 -108 -26h-223q-88 0 -127 72q-51 -72 -119 -72h-106v89h98q62 0 62 64v122l87 1v-112q0 -74 86 -75q107 261 245 263q33 0 68 -20
q84 -50 84 -160zM620 175q0 33 -6 50.5t-19 29.5q-4 3 -9.5 4.5t-17.5 4.5q-39 0 -88 -54q-9 -11 -44 -56q-11 -20 -21 -33l-16 -32h171q50 0 50 86z" />
<glyph glyph-name="v" unicode="&#x637;" horiz-adv-x="517"
d="M487 161q0 -68 -36 -113q-39 -48 -105 -48h-306l-18 89h73v475h87v-314q82 101 152 102q29 0 65 -20q40 -23 63 -72q7 -15 18 -50q7 -19 7 -49zM396 175q1 56 -26 80q-3 2 -11 4q-11 1 -17 5q-42 0 -98 -69q-42 -51 -69 -106h171q16 0 39 27q10 22 11 59z" />
<glyph glyph-name="w" unicode="&#xfe33;" horiz-adv-x="511"
d="M520 0h-482l-18 89h74v475h87v-314q82 101 153 102q27 0 65 -20q86 -47 86 -167v-12l-4 -23q0 -12 -8 -41h47v-89zM396 175q1 56 -26 80q-3 2 -11 4q-11 1 -17 5q-42 0 -98 -69q-42 -51 -69 -106h171q16 0 39 27q10 22 11 59z" />
<glyph glyph-name="x" unicode="&#xfe34;" horiz-adv-x="465"
d="M474 0h-499v89h65v475h86v-314q81 101 153 102q27 0 64 -20q83 -46 83 -166q0 -51 -12 -77h60v-89zM341 175q0 54 -27 80q-2 1 -9 4q-8 0 -17 5q-36 0 -88 -55q-48 -52 -79 -120h170q16 0 38 27q12 23 12 59z" />
<glyph glyph-name="y" unicode="&#xfe35;" horiz-adv-x="484"
d="M449 161q0 -69 -35 -113q-38 -48 -105 -48h-327v89h75v475h88v-312q81 100 151 100q8 0 31 -5q12 -5 36 -17q37 -18 61.5 -69t24.5 -100zM359 172q0 59 -28 83q-3 3 -10 4q-11 1 -17 5q-42 0 -99 -68q-44 -54 -68 -107h172q50 0 50 83z" />
<glyph glyph-name="z" unicode="&#x638;" horiz-adv-x="517"
d="M410 517q0 -28 -19.5 -45.5t-43.5 -17.5q-29 0 -47 17t-18 46q0 52 65 52q63 0 63 -52zM486 161q0 -23 -10 -62q-5 -15 -11 -26q-4 -7 -14 -24q-40 -49 -108 -49h-304l-18 89h73v475h87v-314q81 101 152 102q32 0 65 -20q42 -27 64.5 -73.5t23.5 -97.5zM395 175
q2 59 -26 80q-3 3 -9 4.5l-18 4.5q-60 0 -133 -114q-24 -36 -34 -61h168q50 0 52 86z" />
<glyph glyph-name="braceleft" unicode="&#xfe36;" horiz-adv-x="511"
d="M407 515q0 -23 -22 -44q-20 -17 -43 -17q-29 0 -46 18t-17 43q0 53 63 53q65 0 65 -53zM520 0h-483l-17 89h74v475h87v-314q81 101 152 102q30 0 65 -20q86 -52 86 -168l-4 -41l-9 -34h49v-89zM395 175q2 59 -26 80q-3 3 -9 4.5l-18 4.5q-60 0 -133 -114q-24 -36 -34 -61
h168q50 0 52 86z" />
<glyph glyph-name="bar" unicode="&#xfe37;" horiz-adv-x="465"
d="M369 524q0 -26 -19.5 -44.5t-45.5 -18.5q-29 0 -46 19t-17 44q0 52 63 52q64 0 65 -52zM474 0h-500l1 89h65v475h86v-314q80 101 151 102q33 0 65 -20q91 -59 84 -167l-3 -40l-9 -36h60v-89zM341 175q0 59 -28 80q-3 3 -26 9q-38 0 -88 -55q-53 -59 -79 -120h169
q22 0 37 24.5t15 61.5z" />
<glyph glyph-name="braceright" unicode="&#xfe38;" horiz-adv-x="484"
d="M364 508q0 -28 -20.5 -45t-43.5 -17q-29 0 -47 17q-16 22 -16 45q0 52 63 52q64 0 64 -52zM449 161q0 -69 -35 -112q-39 -49 -105 -49h-327v89h75v475h88v-314q87 101 152 101q32 0 65 -19q44 -26 64 -73q13 -22 17 -48q6 -17 6 -50zM359 172q0 57 -28 82q-4 3 -27 9
q-20 0 -42 -13t-47 -41q-42 -47 -78 -121h172q50 0 50 84z" />
<glyph glyph-name="asciitilde" unicode="&#x639;" horiz-adv-x="534"
d="M523 -425h-232q-117 0 -202 77t-85 193q0 79 43.5 143t141.5 106q-29 54 -30 104q-1 66 50 113q7 5 22 16q10 5 32 14q10 3 33 7q16 4 34 4q66 0 148 -66l-42 -67q-33 23 -66 36.5t-55 13.5q-48 0 -62 -47q-2 -9 -6 -20v-15q0 -54 38 -87q13 -11 35 -11h175l13 -89h-292
q-56 0 -90 -45t-34 -111q0 -68 47 -125.5t131 -57.5h240z" />
<glyph glyph-name="uniFE39" unicode="&#xfe39;" horiz-adv-x="546"
d="M564 0q-100 0 -145 11q-64 16 -98 54q-212 -89 -212 -223q0 -67 60 -128q52 -53 119 -53h257l9 -86h-243q-117 0 -202 84q-41 40 -63 89q-8 16 -15 49q-5 22 -5 53q0 175 230 276l-117 115l30 53l30 58h187q111 0 125 -97q0 -16 -1 -25q-2 -19 -21 -55q-19 -28 -91 -70
q32 -15 166 -16v-89zM422 241q0 6 -5 12q-9 10 -39 14h-139l98 -102q83 45 85 76z" />
<glyph glyph-name="uniFE3A" unicode="&#xfe3a;" horiz-adv-x="407"
d="M422 0q-101 0 -122 9q-8 0 -42 17q-31 21 -52 38q-22 -21 -50.5 -35.5t-60.5 -22.5q-12 -2 -47 -5q-11 -1 -69 -1v89q67 0 99 6q37 7 56 26l-123 120l29 53l31 58h188q112 0 124 -97q0 -32 -5 -42q-4 -14 -16 -37q-20 -27 -86 -68q44 -18 146 -19v-89zM287 239q0 6 -5 14
q-4 4 -36 14h-140l96 -102q84 42 85 74z" />
<glyph glyph-name="uniFE3B" unicode="&#xfe3b;" horiz-adv-x="443"
d="M424 0h-444v89h126q-13 30 -20.5 59.5t-7.5 49.5q0 69 53 117q22 20 53 27l31 7l39 3q28 2 72 -16q16 -7 33 -21q9 -4 17 -12q6 -4 16 -16l-43 -68q-68 53 -118 53q-43 0 -64 -48l-5 -22v-15q0 -27 11 -52q21 -46 60 -46h176z" />
<glyph glyph-name="afii57434" unicode="&#x63a;" horiz-adv-x="534"
d="M405 514q0 -26 -20 -45q-23 -17 -44 -17q-29 0 -48 18q-17 22 -17 44q0 54 65 54q64 0 64 -54zM521 -425h-230q-66 0 -114 21q-59 26 -94 63q-79 82 -79 186q0 79 44 139q49 67 141 110q-30 56 -31 104q0 37 22 77q44 77 139 78q79 0 157 -67l-41 -67q-36 24 -67 37
t-53 13l-24 -4q-44 -19 -45 -75q0 -38 20 -72q24 -29 53 -29h176l12 -89h-292q-58 0 -93 -51q-30 -44 -30 -105q0 -72 43 -125q47 -58 134 -58h240z" />
<glyph glyph-name="uniFE3C" unicode="&#xfe3c;" horiz-adv-x="546"
d="M410 512q0 -26 -18.5 -43.5t-44.5 -17.5q-65 0 -65 61q0 51 65 51q63 0 63 -51zM567 89l-3 -89l-78 2l-52 6q-69 8 -114 57q-212 -94 -212 -223q0 -73 58 -125l15 -12t15 -14q4 -2 13 -7q6 -3 17 -10q32 -13 61 -13h258l9 -86h-243q-34 0 -58 5q-10 3 -27 7.5t-26 8.5
q-48 18 -92 63q-82 84 -82 191q0 119 105 205q50 40 125 71l-117 115l30 53l30 58h187q115 0 125 -97l-4 -45q-4 -18 -17 -35q-21 -28 -91 -70q37 -15 168 -16zM422 242l-5 11q-14 14 -39 14h-139l98 -102q83 44 85 77z" />
<glyph glyph-name="uniFE3D" unicode="&#xfe3d;" horiz-adv-x="407"
d="M246 524q0 -28 -21 -45t-43 -17q-28 0 -45 17t-17 45q0 52 62 52q64 1 64 -52zM422 0l-70 2l-42 6q-42 6 -105 56q-27 -23 -55 -38t-56 -20q-6 -5 -24 -5l-92 -1l1 89q67 0 99 6q37 7 56 26l-123 120l29 53l30 58h189q116 0 126 -97l-5 -45q-2 -18 -16 -34
q-7 -11 -33 -33q-16 -11 -54 -35q47 -18 145 -19v-89zM287 239l-5 14q-9 14 -36 14h-140l96 -102q83 42 85 74z" />
<glyph glyph-name="uniFE3E" unicode="&#xfe3e;" horiz-adv-x="443"
d="M293 510q0 -27 -19.5 -44t-43.5 -17q-28 0 -46.5 16.5t-18.5 44.5q0 52 65 52q63 1 63 -52zM424 0h-444v89h126l-13 28q-3 9 -9 28q-7 26 -7 51q0 48 23 85q47 72 138 72q85 0 154 -66l-43 -68q-71 53 -117 53l-26 -5q-44 -20 -44 -78q0 -39 20 -71q24 -29 51 -29h176z
" />
<glyph glyph-name="afii57441" unicode="&#x641;" horiz-adv-x="788"
d="M653 527q0 -26 -20 -43t-43 -17q-64 0 -65 60q-1 52 65 53q62 1 63 -53zM752 159q2 -85 -53 -130q-36 -29 -83 -29h-459q-48 0 -91 43q-35 45 -35 100v133h89v-120q0 -36 7 -47q13 -20 57 -20h422q41 0 53 17q1 8 9 49q-124 0 -156 11q-71 24 -71 119q0 67 40.5 103
t108.5 37q61 1 110 -47t51 -119zM665 237q0 70 -53 94q-11 7 -29 7q-68 0 -68 -57q0 -32 32 -40l37 -3z" />
<glyph glyph-name="uniFE3F" unicode="&#xfe3f;" horiz-adv-x="793"
d="M665 517q0 -28 -20 -45.5t-44 -17.5q-29 0 -46.5 19.5t-17.5 43.5q0 51 64 51t64 -51zM805 0q-150 0 -191 20q-11 -19 -167 -19l-293 -1q-51 0 -87 49q-30 41 -30 94v133h88v-120q0 -67 65 -67h305q-49 53 -49 120q0 54 43 98t116 45q62 1 108 -49q39 -43 39 -111
q0 -32 -8 -54q-7 -25 -25 -49h86v-89zM671 189q1 20 -12.5 41.5t-32.5 29.5q-11 7 -27 7q-27 0 -48.5 -20t-21.5 -46q0 -49 89 -94q52 32 53 82z" />
<glyph glyph-name="uniFE40" unicode="&#xfe40;" horiz-adv-x="420"
d="M273 510q0 -25 -19.5 -43t-44.5 -18q-29 0 -47 18q-4 4 -12 20q-5 10 -5 23q0 52 64 52q64 1 64 -52zM443 0l-29 2h-22l-63 2q-13 0 -37 1q-11 1 -33 4l-39 15q-41 -24 -251 -24v89h130q-48 54 -48 120q0 59 42 101t116 42q68 0 110 -49q38 -46 38 -111q0 -29 -9 -55
q-10 -29 -23 -48h118v-89zM275 189q0 30 -23 53q-15 14 -24 19.5t-24 5.5q-26 0 -48 -20.5t-22 -46.5q-1 -52 89 -93q52 39 52 82z" />
<glyph glyph-name="uniFE41" unicode="&#xfe41;" horiz-adv-x="448"
d="M0 0zM281 537q1 -26 -22 -44q-17 -14 -43 -17q-26 0 -45 19q-17 16 -17 42q0 53 62 53q63 0 65 -53zM392 147q4 -58 -40.5 -102.5t-102.5 -44.5h-265v89h266q49 0 49 65q-125 0 -156 8q-72 28 -72 120q0 64 42 103t106 40q62 1 111 -42q27 -24 41 -58q7 -16 12 -36
q1 -7 3 -40zM293 238q0 47 -28 74q-23 22 -55 22q-21 0 -41 -13q-16 -13 -16 -33q0 -39 22 -46q9 -4 61 -4h57z" />
<glyph glyph-name="afii57505" unicode="&#x6a4;" horiz-adv-x="788"
d="M752 159q2 -85 -53 -130q-36 -29 -83 -29h-459q-48 0 -91 43q-35 45 -35 100v133h89v-120q0 -36 7 -47q13 -20 57 -20h422q41 0 53 17q1 8 9 49q-124 0 -156 11q-71 24 -71 119q0 67 40.5 103t108.5 37q61 1 110 -47t51 -119zM665 237q0 70 -53 94q-11 7 -29 7
q-68 0 -68 -57q0 -32 32 -40l37 -3zM642 649q0 -22 -19.5 -38t-41.5 -16t-40 16t-18 38q-1 47 58 47q61 0 61 -47zM727 524q0 -21 -18 -37q-14 -13 -43 -16q-24 0 -39 14q-9 8 -14 18q-4 7 -4 21q0 49 57 49q61 0 61 -49zM556 524q0 -22 -15.5 -36t-42.5 -17q-25 0 -40 14
q-3 2 -14 18q-4 10 -4 21q0 49 58 49t58 -49z" />
<glyph glyph-name="uniFE42" unicode="&#xfe42;" horiz-adv-x="793"
d="M805 0q-150 0 -191 20q-11 -19 -167 -19l-293 -1q-51 0 -87 49q-30 41 -30 94v133h88v-120q0 -67 65 -67h305q-49 53 -49 120q0 54 43 98t116 45q62 1 108 -49q39 -43 39 -111q0 -32 -8 -54q-7 -25 -25 -49h86v-89zM671 189q1 20 -12.5 41.5t-32.5 29.5q-11 7 -27 7
q-27 0 -48.5 -20t-21.5 -46q0 -49 89 -94q52 32 53 82zM668 578q0 -22 -19 -38t-42 -16q-21 0 -39 16.5t-19 37.5q-1 48 58 48q61 0 61 -48zM753 454q0 -21 -17 -38q-14 -13 -43 -16q-24 0 -40 14q-9 9 -13 19q-5 7 -5 21q0 48 58 48q60 0 60 -48zM583 454
q0 -22 -15.5 -36.5t-43.5 -17.5q-24 0 -40 14q-2 3 -14 19q-4 9 -4 21q0 48 58 48q59 0 59 -48z" />
<glyph glyph-name="uniFE43" unicode="&#xfe43;" horiz-adv-x="420"
d="M443 0l-29 2h-22l-63 2q-13 0 -37 1q-11 1 -33 4l-39 15q-41 -24 -251 -24v89h130q-48 54 -48 120q0 59 42 101t116 42q68 0 110 -49q38 -46 38 -111q0 -29 -9 -55q-10 -29 -23 -48h118v-89zM275 189q0 30 -23 53q-15 14 -24 19.5t-24 5.5q-26 0 -48 -20.5t-22 -46.5
q-1 -52 89 -93q52 39 52 82zM264 586q0 -22 -19 -38t-42 -16q-21 0 -39 16.5t-19 37.5q-1 48 58 48q61 0 61 -48zM349 462q0 -22 -15.5 -36.5t-44.5 -17.5q-24 0 -40 14q-9 9 -13 19q-5 6 -5 21q0 48 58 48q60 0 60 -48zM179 462q0 -22 -15.5 -36.5t-42.5 -17.5
q-25 0 -41 14q-2 3 -14 19q-4 9 -4 21q0 48 59 48q58 0 58 -48z" />
<glyph glyph-name="uniFE44" unicode="&#xfe44;" horiz-adv-x="448"
d="M0 0zM392 147q4 -58 -40.5 -102.5t-102.5 -44.5h-265v89h266q49 0 49 65q-125 0 -156 8q-72 28 -72 120q0 64 42 103t106 40q62 1 111 -42q27 -24 41 -58q7 -16 12 -36q1 -7 3 -40zM293 238q0 47 -28 74q-23 22 -55 22q-21 0 -41 -13q-16 -13 -16 -33q0 -39 22 -46
q9 -4 61 -4h57zM273 639q0 -22 -19 -38t-42 -16q-21 0 -39.5 16t-18.5 38q-1 47 58 47q61 0 61 -47zM358 515q0 -22 -15.5 -36.5t-45.5 -17.5q-24 0 -39 14q-9 9 -13 19q-5 6 -5 21q0 48 57 48q61 0 61 -48zM187 515q0 -23 -15 -37t-43 -17q-25 0 -40 14q-3 2 -14 19
q-4 9 -4 21q0 48 58 48t58 -48z" />
<glyph glyph-name="afii57442" unicode="&#x642;" horiz-adv-x="656"
d="M586 517q0 -24 -17.5 -38t-41.5 -14t-41.5 14t-17.5 38q0 47 59 47t59 -47zM415 517q0 -23 -17 -37.5t-40 -14.5q-25 0 -43 13.5t-18 38.5q0 47 61 47q57 0 57 -47zM613 171l-1 -32l-3 -39q-7 -77 -71 -129.5t-143 -52.5h-135q-93 0 -152.5 68t-59.5 164v176h82v-179
q0 -60 40 -103t97 -43h123q61 0 100 45t40 107q-123 0 -156 11q-72 23 -72 118q0 63 41 100.5t104 38.5q60 0 111 -43q24 -20 40 -57q5 -12 11 -35q4 -14 4 -39v-76zM529 233q0 43 -31 78q-21 23 -56 23q-19 0 -45 -13q-5 -4 -12 -16q-4 -8 -6 -18q0 -36 23 -46
q27 -8 127 -8z" />
<glyph glyph-name="uniFE45" unicode="&#xfe45;" horiz-adv-x="661"
d="M567 378q0 -21 -18.5 -36.5t-40.5 -15.5q-24 0 -42 15q-14 11 -18 37q0 48 60 48q59 0 59 -48zM396 378q0 -24 -16.5 -38t-41.5 -14q-24 0 -42 15q-19 12 -19 37q0 48 61 48q58 0 58 -48zM678 0h-72q0 -26 -6 -46q-3 -23 -13 -42q-17 -40 -53 -71q-61 -64 -152 -64h-137
q-85 0 -149 73q-62 70 -62 155v184h88v-195q0 -49 51 -92q41 -34 90 -34h114q53 0 93 38q20 14 36 42q11 27 11 52q-87 0 -104 2q-37 3 -55 9q-79 27 -79 126q0 64 47 103q44 36 109 36q68 0 118 -45q55 -50 55 -142h70v-89zM520 89q0 37 -33 75q-26 22 -61 23q-11 0 -24 -3
t-20 -9q-16 -13 -17 -32q-1 -32 30 -49q21 -5 125 -5z" />
<glyph glyph-name="uniFE46" unicode="&#xfe46;" horiz-adv-x="420"
d="M339 521q0 -23 -18 -37q-7 -6 -19 -11q-8 -4 -21 -4q-19 0 -43 15q-16 17 -16 37q0 48 59 48q58 0 58 -48zM171 521q0 -23 -18 -37q-2 -1 -19 -11q-10 -4 -23 -4q-20 0 -41 15q-16 17 -16 37q0 48 57 48q60 0 60 -48zM443 0l-29 2h-22l-63 2q-13 0 -37 1q-11 1 -33 4
l-39 15q-41 -24 -251 -24v89h130q-48 54 -48 120q0 59 42 101t116 42q68 0 110 -49q38 -46 38 -111q0 -29 -9 -55q-10 -29 -23 -48h118v-89zM275 189q0 30 -23 53q-15 14 -24 19.5t-24 5.5q-26 0 -48 -20.5t-22 -46.5q-1 -52 89 -93q52 39 52 82z" />
<glyph glyph-name="uniFE47" unicode="&#xfe47;" horiz-adv-x="448"
d="M359 520q0 -21 -18 -39q-6 -3 -19 -10q-10 -3 -22 -3q-20 0 -41 13q-17 20 -17 39q0 48 58 48q59 0 59 -48zM190 520q0 -21 -18 -39q-5 -3 -18 -10q-11 -3 -23 -3q-21 0 -41 13q-17 20 -17 39q0 48 58 48q59 0 59 -48zM392 147q4 -58 -40.5 -102.5t-102.5 -44.5h-265v89
h266q49 0 49 65q-125 0 -156 8q-72 28 -72 120q0 64 42 103t106 40q62 1 111 -42q27 -24 41 -58q7 -16 12 -36q1 -7 3 -40zM293 238q0 47 -28 74q-23 22 -55 22q-21 0 -41 -13q-16 -13 -16 -33q0 -39 22 -46q9 -4 61 -4h57z" />
<glyph glyph-name="afii57443" unicode="&#x643;" horiz-adv-x="788"
d="M612 89h-423q-45 0 -58 20q-8 13 -8 47v120h-88v-133q0 -56 37 -99.5t89 -43.5h453q57 0 95 31q42 34 42 89l-5 25l-3 27v403l-85 -1v-446q0 -39 -46 -39zM469 277l-149 -75l-12 24l50 27q-45 25 -45 64q0 46 45 70q13 7 27 7q16 -3 41 -11l-10 -23q-5 1 -14 4t-14 4
q-18 0 -34 -14q-14 -23 -14 -37q0 -38 40 -39q15 -1 32 7q14 3 43 18z" />
<glyph glyph-name="uniFE48" unicode="&#xfe48;" horiz-adv-x="862"
d="M622 89h-430q-46 0 -58 20q-8 10 -8 47v120h-88v-133q0 -56 34 -98q37 -45 92 -45h462q91 0 113 62q48 -62 145 -62v89q-46 1 -69 18l-56 42l-1 434h-92l-1 -462q0 -32 -43 -32zM469 277l-149 -75l-12 24l50 27q-45 25 -45 64q0 46 45 70q13 7 27 7q16 -3 41 -11l-10 -23
q-5 1 -14 4t-14 4q-18 0 -34 -14q-14 -23 -14 -37q0 -38 40 -39q15 -1 32 7q14 3 43 18z" />
<glyph glyph-name="uni06A9" unicode="&#x6a9;" horiz-adv-x="788"
d="M751 120q0 -55 -42 -89q-38 -31 -95 -31h-453q-52 0 -89 43.5t-37 99.5v133h88v-120q0 -34 8 -47q13 -20 58 -20h423q46 0 46 39q0 18 -15 34l-230 239l-12 101l321 115l12 -88l-232 -89l206 -219q12 -12 31 -49l7 -27z" />
<glyph glyph-name="uniFE49" unicode="&#xfe49;" horiz-adv-x="862"
d="M884 0q-97 0 -145 62q-22 -62 -113 -62h-462q-55 0 -92 45q-34 42 -34 98v133h88v-120q0 -37 8 -47q12 -20 58 -20h430q43 0 43 32q0 16 -21 38l-230 242l-16 99l326 117l12 -88l-229 -86l245 -271l63 -65q23 -17 69 -18v-89z" />
<glyph glyph-name="uniFE4A" unicode="&#xfe4a;" horiz-adv-x="495"
d="M521 0q-113 0 -159 64q-15 -36 -40 -49q-28 -15 -81 -15h-262v89h263q9 0 25 12q9 11 9 33q0 19 -9 25l-229 242l-17 99l325 117l12 -88l-230 -86l242 -270q13 -14 37 -38q11 -13 25 -21q38 -24 89 -25v-89z" />
<glyph glyph-name="uniFE4B" unicode="&#xfe4b;" horiz-adv-x="413"
d="M392 121q0 -121 -133 -121h-276v89h276q34 0 34 39q0 15 -1 20t-10 11l-228 242l-15 97l323 119l14 -88l-229 -86l180 -202l29 -38l20 -31q16 -27 16 -51z" />
<glyph glyph-name="afii57509" unicode="&#x6af;" horiz-adv-x="788"
d="M708 667l-307 -112l-5 35l311 110zM761 118q1 -58 -40 -90q-37 -28 -97 -28h-453q-55 0 -91 44t-36 99v133h88v-120q0 -6 3 -30q2 -9 6 -16t21 -17q18 -4 38 -4h428q11 0 16 3q25 4 30 36q0 7 -1 10t-8 11l-243 252l-17 99l325 117l14 -88l-230 -87l204 -226
q42 -46 43 -98z" />
<glyph glyph-name="uniFE4C" unicode="&#xfe4c;" horiz-adv-x="862"
d="M695 667l-307 -112l-3 35l308 110zM878 0q-100 0 -145 62q-24 -62 -114 -62h-462q-48 0 -91 43q-35 45 -35 100v133h89v-120q0 -36 7 -47q13 -20 57 -20h430q45 0 45 32q0 16 -21 38q-45 46 -107 110q-21 20 -77 80q-18 21 -47 52l-15 99l325 117l12 -88l-229 -86
l244 -271l63 -65q23 -17 71 -18v-89z" />
<glyph glyph-name="uniFE4D" unicode="&#xfe4d;" horiz-adv-x="506"
d="M333 667l-307 -112l-5 35l310 110zM517 0q-46 0 -91 17q-39 14 -64 54q-13 -33 -35 -53q-27 -18 -77 -18h-261v89h263q45 0 45 32q0 16 -22 38l-230 242l-14 99l324 117l14 -88l-235 -88l245 -269q54 -60 79 -74l21 -7l38 -2v-89z" />
<glyph glyph-name="uniFE4E" unicode="&#xfe4e;" horiz-adv-x="420"
d="M324 667l-308 -112l-5 35l310 110zM376 121q0 -81 -79 -111q-25 -10 -60 -10h-258v89h258q49 0 50 32q0 11 -17 36l-233 244l-17 99l326 117l12 -88l-232 -88l226 -251q24 -32 24 -69z" />
<glyph glyph-name="afii57444" unicode="&#x644;" horiz-adv-x="667"
d="M619 11q0 -96 -63 -165t-158 -69h-134q-84 0 -151 73t-67 155v184h89v-195q0 -54 44 -90t100 -36h113q51 0 95 38.5t44 87.5v570h88v-553z" />
<glyph glyph-name="uniFE4F" unicode="&#xfe4f;" horiz-adv-x="690"
d="M708 0q-69 0 -99 42q0 -120 -69 -200q-65 -65 -154 -65h-136q-82 0 -146.5 68.5t-64.5 159.5v184h86v-195q0 -55 43 -92t99 -37h113q54 0 96 37q25 22 34.5 42t9.5 50v570h88v-414q0 -60 100 -61v-89z" />
<glyph glyph-name="brokenbar" unicode="&#xfe58;" horiz-adv-x="517"
d="M458 135q0 -53 -26 -84q-15 -22 -46 -40q-34 -11 -67 -11h-83q-174 0 -174 135v429h88v-391q0 -59 16 -74q11 -10 70 -10h76q36 0 52 20q7 28 7 64v391h87v-429z" />
<glyph glyph-name="section" unicode="&#xfe59;" horiz-adv-x="517"
d="M531 0q-75 0 -121 57q-44 -57 -118 -57h-82q-171 0 -171 135v429h86v-391q0 -30 3.5 -47t12.5 -27t69 -10h76q35 0 52 20q4 10 4 27q0 4 2 16.5t2 20.5v391h88v-399q0 -48 27 -64q21 -12 70 -12v-89z" />
<glyph glyph-name="dieresis" unicode="&#xfe5a;" horiz-adv-x="292"
d="M311 0h-26q-20 0 -46 1q-10 0 -30 5q-25 5 -52 28q-29 -25 -58 -30q-17 -4 -116 -4v89l35 -1h28q40 0 52 15l8 20q5 22 5 50v391h89v-408q0 -47 28 -61q18 -3 36 -4q15 -1 47 -2v-89z" />
<glyph glyph-name="copyright" unicode="&#xfe5b;" horiz-adv-x="253"
d="M190 135q0 -85 -73 -124q-33 -11 -68 -11h-67v89h62q36 0 51 20q9 16 9 64v391h86v-429z" />
<glyph glyph-name="ordfeminine" unicode="&#x645;" horiz-adv-x="562"
d="M532 147q0 -63 -45.5 -105.5t-108.5 -43.5q-61 0 -108 41t-47 119v108l-14 1q-49 3 -79 -52q-7 -17 -7 -37v-401h-85v390q0 82 46 133.5t127 51.5h181q105 0 129 -90q10 -39 11 -115zM446 153q0 81 -15 95q-10 10 -39 12q-27 6 -83 6v-123q0 -23 21 -42q19 -11 50 -15
q66 0 66 67z" />
<glyph glyph-name="guillemotleft" unicode="&#xfe5c;" horiz-adv-x="604"
d="M627 0q-45 0 -81 10q-23 12 -51 54q-28 -70 -112 -70q-62 0 -110 43q-52 46 -52 121v108q-43 0 -71 -25t-28 -63v-401h-85v390q0 86 49 142q47 43 123 43h179q141 0 142 -207q0 -55 97 -56v-89zM443 153q0 80 -14 92q-23 21 -124 21v-123q0 -27 23 -45q20 -15 48 -15
q26 0 46.5 16t20.5 54z" />
<glyph glyph-name="logicalnot" unicode="&#xfe5d;" horiz-adv-x="443"
d="M457 0q-45 0 -72 10q-23 15 -38 41q-38 -62 -122 -62q-27 0 -67 19q-34 22 -48 43q-9 -51 -134 -51v89q76 0 86 14q4 3 9 76q5 77 38 120q40 53 116 53q70 0 112 -53q39 -49 41 -128q2 -52 11 -66.5t68 -15.5v-89zM299 171q0 95 -75 95q-77 0 -77 -95q0 -96 77 -96
q75 0 75 96z" />
<glyph glyph-name="uniFE5E" unicode="&#xfe5e;" horiz-adv-x="413"
d="M383 171q0 -81 -40.5 -131.5t-112.5 -50.5q-57 0 -100 32q-21 -8 -59 -14.5t-89 -6.5v89q72 0 86 14q5 6 6 68q1 78 38 127q42 54 118 54q68 0 110.5 -53.5t42.5 -127.5zM305 171q0 95 -75 95q-76 0 -77 -95q-1 -96 77 -96q75 0 75 96z" />
<glyph glyph-name="registered" unicode="&#x646;" horiz-adv-x="656"
d="M358 297q0 -26 -20.5 -43t-44.5 -17q-27 0 -44.5 16.5t-17.5 43.5q0 52 62 52q65 1 65 -52zM607 15q0 -106 -70 -177q-60 -61 -152 -61h-136q-84 0 -147.5 68.5t-63.5 159.5v184h85v-195q0 -54 44 -91.5t99 -37.5h113q55 0 97 37q24 21 33 42t9 50v282h89v-261z" />
<glyph glyph-name="overscore" unicode="&#xfe5f;" horiz-adv-x="667"
d="M360 297q0 -28 -20 -44t-43 -16q-28 0 -46.5 16t-18.5 44q0 52 65 52q63 1 63 -52zM706 0q-71 0 -98 42q0 -120 -69 -200q-65 -65 -154 -65h-136q-84 0 -147.5 68.5t-63.5 159.5v184h85v-195q0 -54 44 -91.5t99 -37.5h113q55 0 97 37q24 21 33 42t9 50v282h89v-126
q0 -60 99 -61v-89z" />
<glyph glyph-name="degree" unicode="&#xfe60;" horiz-adv-x="343"
d="M167 414q1 -25 -18 -43t-45 -18t-48 17q-16 21 -16 44q0 53 64 54q62 1 63 -54zM359 0h-28l-38 1h-17q-4 1 -9 5q-34 6 -58 28q-49 -34 -86 -34h-144v89h116q45 0 59 20q4 16 4 19q3 27 3 28v120h89v-120q0 -66 109 -67v-89z" />
<glyph glyph-name="plusminus" unicode="&#xfe61;" horiz-adv-x="287"
d="M167 414q1 -25 -18 -43t-45 -18t-48 17q-16 21 -16 44q0 53 64 54q62 1 63 -54zM255 143q0 -27 -9 -51.5t-30 -48.5q-37 -43 -89 -43h-145v89h117q45 0 58 20q2 5 5 18q3 9 3 29v120h90v-133z" />
<glyph glyph-name="twosuperior" unicode="&#x648;" horiz-adv-x="437"
d="M383 -11q0 -86 -67.5 -149t-154.5 -63h-113l-13 88h112q66 0 107 42q30 29 37 64q3 12 3 29q-103 0 -155 26q-71 37 -72 139q-1 113 54 161q31 27 104 27q102 0 138 -84q20 -44 20 -170v-110zM294 89v89q0 87 -69 87q-30 0 -50 -17q-17 -22 -17 -76q0 -59 42 -75
q21 -8 94 -8z" />
<glyph glyph-name="threesuperior" unicode="&#xfe62;" horiz-adv-x="437"
d="M451 0h-59q0 -87 -66 -158q-27 -29 -71 -47t-90 -18h-114l-12 88h111q97 0 137 84q10 22 10 51q-107 0 -158 28q-68 38 -68 137q0 110 52 161q33 25 105 26q117 1 149 -105q14 -48 15 -158h59v-89zM302 89v83q0 27 -8 45q-3 15 -21 31q-22 17 -45 17q-28 0 -50 -17
q-17 -22 -17 -76q0 -50 28 -67q23 -15 113 -16z" />
<glyph glyph-name="acute" unicode="&#x624;" horiz-adv-x="437"
d="M383 -11q0 -86 -67.5 -149t-154.5 -63h-113l-13 88h112q66 0 107 42q30 29 37 64q3 12 3 29q-103 0 -155 26q-71 37 -72 139q-1 113 54 161q31 27 104 27q102 0 138 -84q20 -44 20 -170v-110zM294 89v89q0 87 -69 87q-30 0 -50 -17q-17 -22 -17 -76q0 -59 42 -75
q21 -8 94 -8zM304 493l-148 -76l-13 25l51 27q-45 25 -45 64q0 30 21.5 53t50.5 23q21 -3 42 -11l-11 -22l-15 3t-14 4q-18 0 -33 -15q-14 -21 -14 -35q0 -38 39 -40q10 -1 33 6.5t44 18.5z" />
<glyph glyph-name="mu1" unicode="&#xfe63;" horiz-adv-x="437"
d="M451 0h-59q0 -87 -66 -158q-27 -29 -71 -47t-90 -18h-114l-12 88h111q97 0 137 84q10 22 10 51q-107 0 -158 28q-68 38 -68 137q0 110 52 161q33 25 105 26q117 1 149 -105q14 -48 15 -158h59v-89zM302 89v83q0 27 -8 45q-3 15 -21 31q-22 17 -45 17q-28 0 -50 -17
q-17 -22 -17 -76q0 -50 28 -67q23 -15 113 -16zM304 493l-148 -76l-13 25l51 27q-45 25 -45 64q0 30 21.5 53t50.5 23q21 -3 42 -11l-11 -22l-15 3t-14 4q-18 0 -33 -15q-14 -21 -14 -35q0 -38 39 -40q10 -1 33 6.5t44 18.5z" />
<glyph glyph-name="paragraph" unicode="&#x647;" horiz-adv-x="396"
d="M370 153q1 -66 -50 -114t-118 -49q-70 0 -119 49t-49 119q0 59 32 100l26 34l43 45l-26 28l60 60l161 -166q40 -41 40 -106zM283 153q0 24 -14 43l-70 76q-12 -12 -35 -36l-30 -35l-9 -19l-5 -29q0 -18 19 -49q26 -29 63 -29q26 0 48 13.5t27 36.5q6 12 6 28z" />
<glyph glyph-name="middot" unicode="&#xfe64;" horiz-adv-x="506"
d="M524 0q-64 0 -84 16q-6 2 -28 22l-65 57q-49 -104 -161 -105q-36 0 -63.5 10.5t-55.5 38.5q-49 47 -49 119q-1 49 33 100q17 25 70 79l-27 28l61 60l264 -281q16 -18 49 -46q13 -8 56 -9v-89zM270 153q0 20 -16 48l-71 71q-77 -73 -77 -119q0 -23 20 -50.5t61 -27.5
q32 0 57.5 23t25.5 55z" />
<glyph glyph-name="cedilla" unicode="&#x629;" horiz-adv-x="396"
d="M370 153q1 -66 -50 -114t-118 -49q-70 0 -119 49t-49 119q0 59 32 100l26 34l43 45l-26 28l60 60l161 -166q40 -41 40 -106zM283 153q0 24 -14 43l-70 76q-12 -12 -35 -36l-30 -35l-9 -19l-5 -29q0 -18 19 -49q26 -29 63 -29q26 0 48 13.5t27 36.5q6 12 6 28zM342 518
q0 -23 -17 -38q-14 -11 -42 -14q-5 0 -23 3q-3 1 -18 11q-18 18 -18 38q0 50 59 50t59 -50zM173 518q0 -21 -17.5 -36.5t-40.5 -15.5t-42 14q-15 16 -18 38q0 50 60 50q58 0 58 -50z" />
<glyph glyph-name="onesuperior" unicode="&#xfe65;" horiz-adv-x="506"
d="M524 0q-64 0 -84 16q-6 2 -28 22l-65 57q-49 -104 -161 -105q-36 0 -63.5 10.5t-55.5 38.5q-49 47 -49 119q-1 49 33 100q17 25 70 79l-27 28l61 60l264 -281q16 -18 49 -46q13 -8 56 -9v-89zM270 153q0 20 -16 48l-71 71q-77 -73 -77 -119q0 -23 20 -50.5t61 -27.5
q32 0 57.5 23t25.5 55zM320 530q0 -22 -17 -37q-13 -14 -43 -17q-20 0 -40 15q-18 19 -18 39q0 48 58 48q60 0 60 -48zM150 530q0 -24 -16.5 -39t-41.5 -15q-22 0 -41 15q-15 16 -18 39q0 48 59 48q58 0 58 -48z" />
<glyph glyph-name="ordmasculine" unicode="&#x6c0;" horiz-adv-x="396"
d="M370 153q1 -66 -50 -114t-118 -49q-70 0 -119 49t-49 119q0 59 32 100l26 34l43 45l-26 28l60 60l161 -166q40 -41 40 -106zM283 153q0 24 -14 43l-70 76q-12 -12 -35 -36l-30 -35l-9 -19l-5 -29q0 -18 19 -49q26 -29 63 -29q26 0 48 13.5t27 36.5q6 12 6 28zM260 547
l-149 -74l-12 23l51 28q-45 25 -45 65q0 29 22 52t49 23q24 -4 43 -11l-10 -23q-15 2 -31 8q-16 0 -33 -14q-13 -24 -13 -35q0 -39 40 -41q8 0 32 7.5t43 18.5z" />
<glyph glyph-name="guillemotright" unicode="&#xfe66;" horiz-adv-x="506"
d="M524 0q-64 0 -84 16q-6 2 -28 22l-65 57q-49 -104 -161 -105q-36 0 -63.5 10.5t-55.5 38.5q-49 47 -49 119q-1 49 33 100q17 25 70 79l-27 28l61 60l264 -281q16 -18 49 -46q13 -8 56 -9v-89zM270 153q0 20 -16 48l-71 71q-77 -73 -77 -119q0 -23 20 -50.5t61 -27.5
q32 0 57.5 23t25.5 55zM260 547l-149 -74l-12 23l51 28q-45 25 -45 65q0 29 22 52t49 23q24 -4 43 -11l-10 -23q-15 2 -31 8q-16 0 -33 -14q-13 -24 -13 -35q0 -39 40 -41q8 0 32 7.5t43 18.5z" />
<glyph glyph-name="onequarter" unicode="&#xfe67;" horiz-adv-x="392"
d="M407 0h-111q28 -19 46 -56q6 -13 15 -36q3 -19 3 -36q0 -102 -129 -103q-42 -1 -73 9q-34 12 -54 32q-26 27 -44 95l-11 95h-75v89h71l-5 73q-14 187 163 189q69 1 112 -44q36 -38 37 -97q1 -72 -59 -121h114v-89zM269 209q0 60 -59 60q-87 0 -83 -125l1 -55
q67 0 104 38.5t37 81.5zM287 -101q0 34 -40 72q-45 35 -116 36q0 -164 88 -164q68 0 68 56z" />
<glyph glyph-name="onehalf" unicode="&#xfe68;" horiz-adv-x="574"
d="M535 117q0 -35 -23 -73q-46 -77 -120 -78q-67 -1 -183 65q-13 -7 -40 -19q-11 -3 -31 -7l-55 -4l-99 -1v89h123q-27 33 -36 59l-9 28l-4 33q0 60 42.5 101.5t99.5 42.5q59 1 109 -48l-59 60l66 60q219 -209 219 -308zM443 111q0 54 -123 178q32 -27 33 -90
q1 -86 -54 -113q48 -30 86 -30q27 0 49 23l3 10zM268 203q0 24 -21 47t-53 23q-22 0 -38 -19l-9 -16l-5 -29q0 -55 69 -84q57 25 57 78z" />
<glyph glyph-name="threequarters" unicode="&#x6cc;" horiz-adv-x="631"
d="M600 5q1 -56 -15 -94q-18 -44 -50 -75q-62 -59 -150 -59h-138q-86 0 -147 67.5t-61 160.5v182h82v-193q0 -56 51 -101q43 -30 93 -30h113q25 0 46 9q20 5 44 23q46 36 47 88q1 51 -84 61h-120v150q0 70 46 111q43 47 110 47h106l3 -83h-106q-43 0 -65 -42
q-12 -36 -12 -100q122 0 161 -21q45 -23 46 -101z" />
<glyph glyph-name="questiondown" unicode="&#xfe69;" horiz-adv-x="631"
d="M645 0h-82l5 -43q0 -74 -59 -127t-133 -53h-137q-100 0 -164 78q-54 65 -54 176v158h88v-193q0 -42 34 -87q40 -44 116 -44h112q25 0 41 7q18 3 32 16q36 26 36 75q0 29 -81 35q-19 2 -102 2l-6 89h354v-89z" />
<glyph glyph-name="Agrave" unicode="&#x64a;" horiz-adv-x="631"
d="M600 5q1 -56 -15 -94q-18 -44 -50 -75q-62 -59 -150 -59h-138q-86 0 -147 67.5t-61 160.5v182h82v-193q0 -56 51 -101q43 -30 93 -30h113q25 0 46 9q20 5 44 23q46 36 47 88q1 51 -84 61h-120v150q0 70 46 111q43 47 110 47h106l3 -83h-106q-43 0 -65 -42
q-12 -36 -12 -100q122 0 161 -21q45 -23 46 -101zM452 -320q0 -23 -17 -38q-13 -11 -42 -16q-21 0 -41 15q-18 19 -18 39q0 48 59 48t59 -48zM283 -320q0 -24 -17 -39t-41 -15q-22 0 -42 15q-15 18 -18 39q0 48 60 48q58 0 58 -48z" />
<glyph glyph-name="Aacute" unicode="&#xfe6a;" horiz-adv-x="631"
d="M645 0h-82l5 -43q0 -74 -59 -127t-133 -53h-137q-100 0 -164 78q-54 65 -54 176v158h88v-193q0 -42 34 -87q40 -44 116 -44h112q25 0 41 7q18 3 32 16q36 26 36 75q0 29 -81 35q-19 2 -102 2l-6 89h354v-89zM442 -309q0 -22 -18 -38q-13 -11 -41 -15q3 0 -23 3
q-6 2 -19 11q-17 17 -17 39q0 49 59 49t59 -49zM273 -309q0 -24 -17.5 -38.5t-41.5 -14.5t-42 14q-14 15 -17 39q0 49 59 49t59 -49z" />
<glyph glyph-name="Acircumflex" unicode="&#xfe6b;" horiz-adv-x="362"
d="M379 0l-53 1l-27 4l-22 11l-23 18q-24 -17 -43.5 -25.5t-39.5 -8.5h-191v89h163q59 0 63 38q3 9 3 29v120h88v-120q0 -39 14 -55q19 -12 68 -12v-89zM302 -167q0 -22 -19 -38q-5 -4 -18 -10q-8 -5 -23 -5q-20 0 -41 17q-17 16 -17 36q0 47 58 47q60 0 60 -47zM132 -167
q0 -23 -17 -38q-11 -8 -20 -10q-6 -5 -21 -5q-22 0 -40 15.5t-18 37.5q0 47 58 47t58 -47z" />
<glyph glyph-name="Atilde" unicode="&#xfe6c;" horiz-adv-x="333"
d="M297 143q0 -54 -37 -98.5t-88 -44.5h-190v89h161q59 0 63 38q3 9 3 29v120h88v-133zM282 -169q0 -22 -18 -37q-9 -7 -18 -11t-23 -4q-24 0 -41 16t-17 36q0 48 58 48q59 0 59 -48zM112 -169q0 -24 -18 -37q-6 -7 -18 -10q-7 -5 -21 -5q-20 0 -44 17q-14 14 -16 35
q0 48 60 48q57 0 57 -48z" />
<glyph glyph-name="Adieresis" unicode="&#x626;" horiz-adv-x="631"
d="M600 5q1 -56 -15 -94q-18 -44 -50 -75q-62 -59 -150 -59h-138q-86 0 -147 67.5t-61 160.5v182h82v-193q0 -56 51 -101q43 -30 93 -30h113q25 0 46 9q20 5 44 23q46 36 47 88q1 51 -84 61h-120v150q0 70 46 111q43 47 110 47h106l3 -83h-106q-43 0 -65 -42
q-12 -36 -12 -100q122 0 161 -21q45 -23 46 -101zM289 300l-149 -75l-12 24l50 27q-45 25 -45 65q0 45 45 69q13 7 27 7q16 -3 41 -11l-10 -23q-5 1 -14 4t-14 4q-18 0 -34 -14q-14 -23 -14 -36q0 -39 40 -40q15 0 32 7q14 3 43 18z" />
<glyph glyph-name="Aring" unicode="&#xfe6d;" horiz-adv-x="631"
d="M645 0h-82l5 -43q0 -74 -59 -127t-133 -53h-137q-100 0 -164 78q-54 65 -54 176v158h88v-193q0 -42 34 -87q40 -44 116 -44h112q25 0 41 7q18 3 32 16q36 26 36 75q0 29 -81 35q-19 2 -102 2l-6 89h354v-89zM315 282l-149 -74l-12 23l50 28q-45 24 -45 64q0 46 45 69
q14 8 27 8q16 -4 42 -12l-11 -23q-5 1 -14 4t-14 4q-18 0 -33 -14q-14 -22 -14 -36q0 -39 39 -40q15 0 33 7q13 3 43 19z" />
<glyph glyph-name="AE" unicode="&#xfe6e;" horiz-adv-x="343"
d="M216 382l-149 -75l-12 24l51 28q-45 24 -45 64q0 28 21 53q23 22 50 22q18 -2 43 -10l-11 -23q-5 1 -14.5 3t-14.5 5q-18 0 -34 -15q-12 -19 -12 -35q0 -38 38 -40q14 -1 32 7q20 4 44 18zM357 0h-15q-45 0 -63 4q-14 4 -47 30q-43 -34 -82 -34h-160v89h131q58 0 62 39
q0 9 3 28v120h89v-120q0 -35 14 -53q12 -13 68 -14v-89z" />
<glyph glyph-name="Ccedilla" unicode="&#xfe6f;" horiz-adv-x="297"
d="M219 378l-149 -74l-13 23l51 29q-46 24 -46 65q0 22 22 52q24 22 51 22q9 -1 22 -4q4 -2 19 -6l-11 -24q-9 6 -29 9q-15 0 -32 -13q-13 -20 -13 -36q-1 -39 37 -41q11 0 35 8t42 19zM255 143q0 -27 -9 -51.5t-30 -48.5q-37 -43 -89 -43h-145v89h117q45 0 58 20q2 5 5 18
q3 9 3 29v120h90v-133z" />
<glyph glyph-name="Ograve" unicode="&#x64e;"
d="M222 751l-264 -65l-13 39l265 68z" />
<glyph glyph-name="Ocircumflex" unicode="&#x650;"
d="M222 -511l-264 -66l-13 39l265 69z" />
<glyph glyph-name="Odieresis" unicode="&#x64f;"
d="M220 818q1 -68 -84 -88l-181 -43l-10 38q61 12 125 35q-22 27 -22 54q0 30 26 55t55 25q35 1 63 -23.5t28 -52.5zM173 812q1 18 -16 30q-9 7 -23 7q-40 0 -40 -37q0 -17 12 -26q12 -12 28 -12q15 0 27 11t12 27z" />
<glyph glyph-name="multiply" unicode="&#xfe73;"
d="M282 642q1 -68 -85 -88l-180 -43l-11 38q62 12 125 35q-21 27 -21 54q0 30 25.5 55t55.5 25q34 1 62 -23.5t29 -52.5zM235 636q1 18 -16 30q-10 7 -24 7q-39 0 -39 -37q0 -17 11 -26q13 -12 28 -12q16 0 27.5 11t12.5 27z" />
<glyph glyph-name="Oslash" unicode="&#x64b;"
d="M222 838l-264 -66l-13 40l265 68zM222 751l-264 -65l-13 39l265 68z" />
<glyph glyph-name="Uacute" unicode="&#x64d;"
d="M218 -511l-265 -66l-12 39l264 69zM218 -598l-265 -66l-12 39l264 69z" />
<glyph glyph-name="Ucircumflex" unicode="&#xfe75;"
d="M280 -116l-265 -66l-12 39l264 69zM280 -203l-265 -66l-12 40l264 68z" />
<glyph glyph-name="Udieresis" unicode="&#x64c;"
d="M220 818q1 -68 -84 -88l-181 -43l-10 38q42 11 42 47q0 20 -14 20q-11 0 -28 -10l-19 27q24 33 54 33q41 0 41 -44q0 -34 -19 -59q21 5 68 21q-22 27 -22 54q0 30 26 55t55 25q35 1 63 -23.5t28 -52.5zM173 812q1 18 -16 30q-9 7 -23 7q-40 0 -40 -37q0 -17 12 -26
q12 -12 28 -12q15 0 27 11t12 27z" />
<glyph glyph-name="Thorn" unicode="&#x651;"
d="M216 784q1 -28 -15 -51q-17 -19 -43 -19q-49 0 -75 39q-30 -65 -90 -65q-27 0 -42 22q-15 17 -15 42q-1 36 22 87l32 -17q-9 -23 -15 -49q0 -34 28 -34q55 0 53 92l43 24q1 -92 48 -92q29 0 29 32q0 18 -25 55l34 25q31 -44 31 -91z" />
<glyph glyph-name="igrave" unicode="&#x6e4;"
d="M309 681h-163l-38 -3q-14 -3 -22 -8q-13 -12 -22 -35l-59 23q25 52 43 65q11 10 29 15q22 6 49 6l183 1v-64z" />
<glyph glyph-name="icircumflex" unicode="&#x652;"
d="M174 784q0 -40 -28 -68.5t-68 -28.5t-68 28.5t-28 68.5q0 37 29.5 66t66.5 29q39 0 69 -31q27 -29 27 -64zM127 785q0 20 -13 33.5t-37 13.5q-19 0 -34 -15t-15 -33q0 -22 14.5 -36.5t35.5 -14.5q19 0 34 14q15 11 15 38z" />
<glyph glyph-name="eth" unicode="&#x674;"
d="M242 806l-157 -80l-14 26l55 29q-49 24 -49 68q0 29 22 55q26 25 54 25q21 -5 44 -12l-11 -24q-6 1 -16 4q-5 1 -14 4q-20 0 -35 -16q-15 -21 -15 -36q0 -42 41 -43q27 0 81 27z" />
<glyph glyph-name="ograve" unicode="&#x670;"
d="M109 855l-16 -169h-28l-18 169h62z" />
<glyph glyph-name="ocircumflex" unicode="&#xf4;"
d="M56 663l43 39l15 16q-28 6 -52 6q-29 0 -41 -14l-10 -35q-4 8 -4 17q0 40 46 54q13 4 29 4q21 1 46 -10q48 44 91 44q33 0 56 -26q18 -21 18 -45q0 -7 -3.5 -11t-35.5 -9q-7 -1 -18 -1l-35 1q-18 0 -37 5l-36 9zM150 727q5 -1 27 -7l23 -3l20 -1h6l12 1q9 1 13 3.5
t6 10.5q0 9 -9.5 18.5t-26.5 9.5q-19 0 -48 -16q-6 -4 -23 -16z" />
<glyph glyph-name="otilde" unicode="&#xf5;"
d="M118 487l42 39l15 16q-27 6 -51 6q-30 0 -41 -14l-11 -35q-3 8 -3 17q0 40 45 54q13 4 29 4q22 1 47 -10q48 44 91 44q32 0 55 -26q19 -21 19 -45q0 -7 -4 -11t-35 -9q-8 -1 -19 -1l-35 1q-17 0 -37 5l-35 9zM211 551q5 -1 27 -7l23 -3l21 -1h6l11 1q10 1 14 3.5t6 10.5
q0 9 -9.5 18.5t-27.5 9.5t-47 -16q-7 -4 -24 -16z" />
<glyph glyph-name="ugrave" unicode="&#x649;" horiz-adv-x="631"
d="M600 5q1 -56 -15 -94q-18 -44 -50 -75q-62 -59 -150 -59h-138q-86 0 -147 67.5t-61 160.5v182h82v-193q0 -56 51 -101q43 -30 93 -30h113q25 0 46 9q20 5 44 23q46 36 47 88q1 51 -84 61h-120v150q0 70 46 111q43 47 110 47h106l3 -83h-106q-43 0 -65 -42
q-12 -36 -12 -100q122 0 161 -21q45 -23 46 -101z" />
<glyph glyph-name="uacute" unicode="0" horiz-adv-x="592"
d="M453 158q0 -55 -50.5 -101t-105.5 -46q-58 0 -108 45t-50 102q0 52 49.5 104.5t108.5 52.5q56 0 106 -50t50 -107zM383 158q0 49 -56 80q-13 7 -30 7q-34 0 -61 -27t-27 -60q0 -30 27 -59q6 -6 28 -18q15 -6 33 -6q33 0 59.5 24t26.5 59z" />
<glyph glyph-name="ucircumflex" unicode="1" horiz-adv-x="592"
d="M360 -99h-85v271q0 50 -10 138q-3 25 -13 67l-8 32q-3 19 -12 38l84 28l31 -118q3 -31 10 -97q3 -27 3 -88v-271z" />
<glyph glyph-name="udieresis" unicode="2" horiz-adv-x="592"
d="M469 322q3 -65 -66 -106q-20 -11 -32 -13q-8 -3 -33 -4q-40 -1 -85 28l1 -326h-89v257q0 119 -22 227q-7 33 -20 62l86 28l35 -145q13 -55 65 -55q27 0 48 18q7 7 14 22q4 8 6 28l-14 106l29 10l52 17l17 -83q6 -28 7 -54z" />
<glyph glyph-name="yacute" unicode="3" horiz-adv-x="592"
d="M568 332q3 -40 -36 -88q-38 -36 -90 -38q-51 -2 -109 61q0 -63 -92 -64q-44 0 -87 23l1 -325h-87v257q0 170 -43 289l86 28l33 -145q13 -55 66 -55q17 0 27 4q6 3 22 14q19 18 22 50l-17 106l83 31q21 -114 19 -156l-1 -24q22 -27 55 -27q28 0 45 19q18 16 20 51l-15 106
l82 26l15 -117z" />
<glyph glyph-name="thorn" unicode="4" horiz-adv-x="592"
d="M526 228q-38 -18 -90 -34l-43 -7q-21 -3 -44 -3q-41 0 -76 8q-43 10 -80 27l1 -318h-86v264q0 62 -9 132q-1 7 -4 22q0 4 -2 11q0 13 -7 40l-20 77l83 28l23 -93l15 -79l45 -21q0 33 1 48q4 24 20 68q7 15 20 31q23 27 51 37q25 13 66 13q50 0 110 -28l-30 -75
q-37 26 -74 26q-44 1 -70 -36q-4 -4 -11 -17.5t-6 -29.5l2 -22q14 -37 64 -37q44 0 123 39z" />
<glyph glyph-name="ydieresis" unicode="5" horiz-adv-x="592"
d="M569 37q0 -68 -49.5 -111t-118.5 -44q-67 -1 -114 34q-58 -34 -116 -36q-68 -1 -109 51q-38 47 -38 117q0 111 86 218l96 119l-34 23l56 68q341 -255 341 -439zM476 55q0 35 -24 79.5t-67 92.5q-46 50 -113 105q-156 -160 -156 -272q0 -37 19 -60.5t52 -23.5q37 0 55 29
q15 18 17 50l-5 33h87l5 -15l1 -19l-1 -33q0 -7 -8 -27q25 -16 57 -16q61 0 77 48q4 11 4 29z" />
<glyph glyph-name="Amacron" unicode="6" horiz-adv-x="592"
d="M476 237q-35 -31 -69 -72l-74 -91q-12 -14 -66 -95q-29 -42 -62 -100l-77 48q20 40 59 99q27 40 101 136q-83 0 -130 48q-41 44 -41 109q0 83 70 138q37 23 82 23q54 0 114 -31l-28 -79q-39 22 -72 22q-40 0 -68 -37q-10 -20 -10 -36t8 -34q17 -38 69 -38q27 0 57 11
q25 5 66 31z" />
<glyph glyph-name="amacron" unicode="7" horiz-adv-x="592"
d="M543 437q-55 -96 -71 -125q-40 -72 -65 -129q-36 -85 -77 -282h-70q-20 154 -74 282q-16 38 -54 108q-14 26 -38 68q-12 24 -43 77l77 40q37 -61 65 -118q35 -73 49 -109l50 -185l11 -2l11 59l16 54l23 73l17 45q10 24 27 55l71 128z" />
<glyph glyph-name="Abreve" unicode="8" horiz-adv-x="592"
d="M543 -55l-39 -19l-37 -20q-25 42 -69 122q-20 39 -45 104q-6 22 -50 187h-11q-27 -128 -50 -185l-14 -35q-28 -71 -101 -193l-38 20l-40 19q61 103 84 145q37 67 53 109l23 60l21 68q18 59 33 153l68 -1q18 -104 32 -154q19 -64 45 -127l21 -50l64 -121z" />
<glyph glyph-name="abreve" unicode="9" horiz-adv-x="592"
d="M458 -99h-88v302l-51 -13l-46 -4q-62 0 -98.5 34t-37.5 94q-1 91 67 139q17 13 38.5 20t43.5 7q21 0 45 -5q19 -7 48 -23q37 -20 61 -104q1 -13 7 -39q2 -13 5 -36q1 -13 5 -42q1 -17 1 -42v-288zM362 293q-2 14 -5 36q-2 9 -9 30q-8 25 -35 37l-28 6q-41 0 -61 -36
q-13 -24 -13 -41v-11q0 -6 5 -15q14 -36 56 -36q36 0 90 30z" />
<glyph glyph-name="Aogonek" unicode="&#x200c;"
d="M15 554v-672h-30v672h30z" />
<glyph glyph-name="aogonek" unicode="&#x200d;"
d="M15 -118h-30v597l-58 -59l-21 21l73 73l-73 72l21 21l73 -73l73 73l21 -21l-73 -72l73 -73l-21 -21l-58 59v-597z" />
<glyph glyph-name="Cacute" unicode="&#x200e;"
d="M185 515l-93 -92l-22 21l59 56h-114v-618h-30v648h144l-59 56l22 21z" />
<glyph glyph-name="cacute" unicode="&#x200f;"
d="M15 -118h-30v618h-115l59 -56l-21 -21l-93 92l93 92l21 -21l-59 -56h145v-648z" />
<glyph glyph-name="Ccircumflex" unicode="&#x61f;" horiz-adv-x="417"
d="M380 400h-91q0 113 -81 115q-38 1 -59 -25q-16 -19 -17 -43q-1 -25 11 -42l46 -50q17 -19 33 -40q8 -10 19 -32l12 -45l5 -64h-88q0 34 -5 49q-1 20 -11 37q-2 7 -13 19q-6 8 -31 33q-39 37 -52 57q-20 33 -21 74q-1 72 48.5 113t118.5 41q68 0 116 -37q42 -32 49 -70
l7 -38zM272 56q0 -21 -18.5 -38.5t-43.5 -17.5q-61 0 -61 56q0 51 61 52q61 2 62 -52z" />
<glyph glyph-name="ccircumflex" unicode="!" horiz-adv-x="242"
d="M165 391l-21 -211h-49l-22 211v203h92v-203zM189 62q0 -62 -69 -62q-67 0 -67 62q0 56 67 56q69 0 69 -56z" />
<glyph glyph-name="Cdot" unicode="." horiz-adv-x="290"
d="M214 61q0 -61 -69 -61q-68 0 -68 61q0 56 68 56q69 1 69 -56z" />
<glyph glyph-name="cdot" unicode="&#x60c;" horiz-adv-x="267"
d="M201 57q1 -57 -67 -57t-68 57q0 102 6 127q18 74 97 79v-32q-35 -6 -52 -31q-12 -25 -12 -79q95 0 96 -64z" />
<glyph glyph-name="Ccaron" unicode="&#x66b;" horiz-adv-x="267"
d="M201 205q0 -102 -6 -126q-19 -74 -97 -79v32q35 5 51 31q12 25 12 78q-95 0 -95 64q-1 58 66 58q69 0 69 -58z" />
<glyph glyph-name="ccaron" unicode=":" horiz-adv-x="290"
d="M213 280q1 -61 -67 -61q-70 0 -70 61q0 57 70 57q67 0 67 -57zM214 62q1 -28 -18.5 -45t-48.5 -17q-45 0 -65 36q-1 5 -5 26q0 56 70 56q66 0 67 -56z" />
<glyph glyph-name="Dcaron" unicode="&#x61b;" horiz-adv-x="290"
d="M214 267q0 -57 -67 -58q-72 0 -72 58q0 96 7 124q17 66 97 80v-32q-31 -7 -51 -32q-10 -19 -13 -77q99 0 99 -63zM215 57q1 -57 -68 -57t-69 57q0 61 69 61q67 0 68 -61z" />
<glyph glyph-name="dcaron" unicode="/" horiz-adv-x="485"
d="M458 492l-303 -555h-129l306 555h126z" />
<glyph glyph-name="Dslash" unicode="+" horiz-adv-x="508"
d="M214 441h81v-137h137v-82h-137v-137h-81v137h-138v82h138v137z" />
<glyph glyph-name="dcroat" unicode="-" horiz-adv-x="508"
d="M76 304h356v-82h-356v82z" />
<glyph glyph-name="dcroat" unicode="&#x2010;" horiz-adv-x="508"
d="M76 304h356v-82h-356v82z" />
<glyph glyph-name="Emacron" unicode="&#xd7;" horiz-adv-x="508"
d="M137 436l119 -117l114 114l58 -57l-115 -115l117 -117l-58 -57l-116 117l-120 -120l-57 57l120 120l-118 117z" />
<glyph glyph-name="emacron" unicode="&#xf7;" horiz-adv-x="508"
d="M206 162h97v-98h-97v98zM76 304h356v-82h-356v82zM206 462h97v-98h-97v98z" />
<glyph glyph-name="Ebreve" unicode="&#x66a;" horiz-adv-x="759"
d="M723 70q0 -52 -47 -96q-24 -22 -47 -30q-24 -13 -52 -13q-55 0 -103 42.5t-48 96.5q0 50 50 98.5t101 48.5q54 0 100 -46.5t46 -100.5zM582 524l-333 -606h-90l331 606h92zM331 383q0 -51 -50 -94q-26 -23 -48 -33t-51 -10q-52 0 -101 42q-12 14 -17 23q-11 10 -17 23
q-3 8 -10 25q-1 16 -1 24q0 54 46 99.5t100 47.5q51 1 100 -46t49 -101zM659 70q0 15 -6 29q-4 10 -21 28q-25 27 -55 27q-21 0 -45 -17.5t-36 -37.5q-6 -14 -6 -29q0 -33 27 -56.5t60 -23.5q26 0 53.5 24t28.5 56zM267 383q0 9 -7 31q-26 52 -78 53q-8 0 -30 -7
q-13 -5 -28 -20q-26 -24 -26 -57q0 -34 24.5 -56t59.5 -23q32 0 58.5 23.5t26.5 55.5z" />
<glyph glyph-name="ebreve" unicode="*" horiz-adv-x="350"
d="M320 634l-121 -71l-12 22l121 70zM187 585h-23v140h23v-140zM320 493l-11 -21l-122 69l12 22zM164 585l-13 -24l-121 70l12 23zM187 400h-23v141h23v-141zM164 541l-120 -70l-14 20l121 70z" />
<glyph glyph-name="ebreve" unicode="&#x66d;" horiz-adv-x="350"
d="M320 634l-121 -71l-12 22l121 70zM187 585h-23v140h23v-140zM320 493l-11 -21l-122 69l12 22zM164 585l-13 -24l-121 70l12 23zM187 400h-23v141h23v-141zM164 541l-120 -70l-14 20l121 70z" />
<glyph glyph-name="Edot" unicode="=" horiz-adv-x="632"
d="M571 193h-510v90h510v-90zM571 0h-510v91h510v-91z" />
<glyph glyph-name="edot" unicode="&#x3c;" horiz-adv-x="501"
d="M464 -99l-427 250v83l427 250v-96l-337 -196l337 -194v-97z" />
<glyph glyph-name="Eogonek" unicode="&#x3e;" horiz-adv-x="501"
d="M465 234l-1 -83l-428 -250l1 97l338 196l-339 194l1 96z" />
<glyph glyph-name="eogonek" unicode="(" horiz-adv-x="343"
d="M265 -6q2 -21 -22 -21q-17 0 -54 35q-111 107 -111 263q0 133 111 253q39 42 54 42q12 1 17.5 -5t4.5 -17q-13 -24 -36 -75q-33 -79 -34 -200q0 -120 34 -200z" />
<glyph glyph-name="Ecaron" unicode=")" horiz-adv-x="342"
d="M77 -6q-2 -21 23 -21q16 0 54 35q111 106 111 263q0 65 -33 136q-30 65 -78 117q-39 42 -54 42q-13 1 -18.5 -5t-4.5 -17q13 -24 37 -75q34 -80 34 -200t-34 -200q-2 -4 -37 -75z" />
<glyph glyph-name="glyph243" unicode="[" horiz-adv-x="290"
d="M59 -185v805h171v-64h-94v-676h94v-65h-171z" />
<glyph glyph-name="glyph244" unicode="]" horiz-adv-x="290"
d="M230 -185h-171v65h93v676h-93v64h171v-805z" />
<glyph glyph-name="ecaron" unicode="{" horiz-adv-x="294"
d="M23 263q67 2 81 64q7 30 8 102q-1 32 2 94q10 94 80 113q16 5 53 5h24v-68h-13q-48 0 -61 -18.5t-13 -69.5q0 -113 -5 -142q-13 -81 -85 -115q57 -24 77 -80q13 -38 13 -114q0 -84 2 -99q4 -33 22 -44q14 -9 50 -9h13v-67h-24q-42 0 -61 7q-58 21 -69 88q-2 70 -4 141
q-3 97 -37 124q-20 17 -53 18v70z" />
<glyph glyph-name="Gcircumflex" unicode="}" horiz-adv-x="294"
d="M271 263v-70q-67 -2 -81 -65q-8 -33 -8 -97q0 -77 -2 -98q-10 -93 -80 -113q-17 -5 -53 -5h-24v67h13q48 0 62 21q12 16 12 68q0 108 4 136q12 90 86 121q-58 27 -77 80q-13 36 -13 115.5t-2 98.5q-4 32 -22 43q-14 8 -50 8h-13v68h24q41 0 61 -7q58 -21 69 -88
q5 -32 4 -110q0 -71 9 -108q14 -63 81 -65z" />
<glyph glyph-name="gcircumflex" unicode="&#xab;" horiz-adv-x="393"
d="M341 -14q4 -6 0 -10q-4 -6 -10 -1q-43 17 -83 77t-40 128q0 69 40 130q34 54 81 74q5 2 10 -3q4 -4 0 -10q-19 -30 -46 -78q-22 -53 -22 -110q0 -61 25 -117q8 -24 45 -80zM185 -14q4 -6 0 -10q-2 -5 -6 -5q-2 1 -3 1q-46 20 -85 80.5t-39 127.5q0 68 40 129q38 56 82 73
q5 3 8 -1t0 -10q-66 -103 -66 -189q0 -62 24 -116q12 -28 45 -80z" />
<glyph glyph-name="Gbreve" unicode="&#xbb;" horiz-adv-x="402"
d="M345 180q0 -65 -41 -129q-39 -60 -83 -79q-5 -2 -9 4q-3 4 0 10q20 33 47 80q24 56 24 116q0 83 -67 189q-2 1 -2 4q0 12 10 7q42 -15 81 -73q40 -61 40 -129zM189 180q1 -63 -40 -129q-36 -57 -83 -76q-5 -4 -10 1q-4 4 0 10q36 57 46 80q23 53 23 117q0 88 -66 188
q-4 6 0 10q4 5 9 3q48 -22 82 -74q38 -61 39 -130z" />
<glyph glyph-name="gbreve" unicode="&#x2039;" horiz-adv-x="293"
d="M132 226l114 -195h-64l-135 195l135 197h64z" />
<glyph glyph-name="Gdot" unicode="&#x203a;" horiz-adv-x="293"
d="M163 228l-114 195h64l131 -193l-131 -199h-64z" />
<glyph glyph-name="gdot" unicode="&#x201c;" horiz-adv-x="293"
d="M118 524v-90h-83v71q0 58 14 84q18 34 57 52l19 -30q-45 -19 -47 -87h40zM251 524v-90h-83v71q0 58 14 84q18 34 57 52l19 -30q-45 -19 -47 -87h40z" />
<glyph glyph-name="Gcedilla" unicode="&#x201d;" horiz-adv-x="293"
d="M42 547v89h83v-71q0 -57 -13 -82q-19 -35 -58 -53l-19 31q45 18 47 86h-40zM175 547v89h83v-71q0 -57 -13 -82q-19 -35 -58 -53l-19 31q45 18 47 86h-40z" />
<glyph glyph-name="gcedilla" unicode="&#x2018;" horiz-adv-x="196"
d="M136 524v-90h-83v71q0 58 14 84q18 34 57 52l19 -30q-45 -19 -48 -87h41z" />
<glyph glyph-name="Hcircumflex" unicode="&#x2019;" horiz-adv-x="196"
d="M60 547v89h83v-71q0 -57 -14 -82q-18 -35 -57 -53l-19 31q45 18 47 86h-40z" />
<glyph glyph-name="hcircumflex" unicode="&#x2022;" horiz-adv-x="300"
d="M0 150q0 62 44 106t106 44t106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106z" />
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 85 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 199 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 221 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 201 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 198 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 233 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 222 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 219 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 241 KiB

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

Loading…
Cancel
Save