added tradings api

This commit is contained in:
Amanmyrat 2022-11-27 17:32:32 +05:00
parent c1731b9709
commit bb7aaaf4be
3686 changed files with 441030 additions and 1825 deletions

View File

@ -0,0 +1,90 @@
<?php
namespace App\Http\Controllers\Admin;
use App\Http\Requests\CategoryRequest;
use Backpack\CRUD\app\Http\Controllers\CrudController;
use Backpack\CRUD\app\Library\CrudPanel\CrudPanelFacade as CRUD;
/**
* Class CategoryCrudController
* @package App\Http\Controllers\Admin
* @property-read \Backpack\CRUD\app\Library\CrudPanel\CrudPanel $crud
*/
class CategoryCrudController extends CrudController
{
use \Backpack\CRUD\app\Http\Controllers\Operations\ListOperation;
use \Backpack\CRUD\app\Http\Controllers\Operations\CreateOperation;
use \Backpack\CRUD\app\Http\Controllers\Operations\UpdateOperation;
use \Backpack\CRUD\app\Http\Controllers\Operations\DeleteOperation;
use \Backpack\CRUD\app\Http\Controllers\Operations\ShowOperation;
use \Backpack\CRUD\app\Http\Controllers\Operations\ReorderOperation;
/**
* Configure the CrudPanel object. Apply settings to all operations.
*
* @return void
*/
public function setup()
{
CRUD::setModel(\App\Models\Category::class);
CRUD::setRoute(config('backpack.base.route_prefix') . '/category');
CRUD::setEntityNameStrings('category', 'categories');
}
/**
* Define what happens when the List operation is loaded.
*
* @see https://backpackforlaravel.com/docs/crud-operation-list-entries
* @return void
*/
protected function setupListOperation()
{
CRUD::column('title');
/**
* Columns can be defined using the fluent syntax or array syntax:
* - CRUD::column('price')->type('number');
* - CRUD::addColumn(['name' => 'price', 'type' => 'number']);
*/
}
/**
* Define what happens when the Create operation is loaded.
*
* @see https://backpackforlaravel.com/docs/crud-operation-create
* @return void
*/
protected function setupCreateOperation()
{
CRUD::setValidation(CategoryRequest::class);
CRUD::field('title');
/**
* Fields can be defined using the fluent syntax or array syntax:
* - CRUD::field('price')->type('number');
* - CRUD::addField(['name' => 'price', 'type' => 'number']));
*/
}
/**
* Define what happens when the Update operation is loaded.
*
* @see https://backpackforlaravel.com/docs/crud-operation-update
* @return void
*/
protected function setupUpdateOperation()
{
$this->setupCreateOperation();
}
protected function setupReorderOperation()
{
// define which model attribute will be shown on draggable elements
$this->crud->set('reorder.label', 'title');
// define how deep the admin is allowed to nest the items
// for infinite levels, set it to 0
$this->crud->set('reorder.max_level', 1);
}
}

View File

@ -0,0 +1,108 @@
<?php
namespace App\Http\Controllers\Admin;
use App\Http\Requests\TradingRequest;
use Backpack\CRUD\app\Http\Controllers\CrudController;
use Backpack\CRUD\app\Library\CrudPanel\CrudPanelFacade as CRUD;
/**
* Class TradingCrudController
* @package App\Http\Controllers\Admin
* @property-read \Backpack\CRUD\app\Library\CrudPanel\CrudPanel $crud
*/
class TradingCrudController extends CrudController
{
use \Backpack\CRUD\app\Http\Controllers\Operations\ListOperation;
use \Backpack\CRUD\app\Http\Controllers\Operations\CreateOperation;
use \Backpack\CRUD\app\Http\Controllers\Operations\UpdateOperation;
use \Backpack\CRUD\app\Http\Controllers\Operations\DeleteOperation;
use \Backpack\CRUD\app\Http\Controllers\Operations\ShowOperation;
/**
* Configure the CrudPanel object. Apply settings to all operations.
*
* @return void
*/
public function setup()
{
CRUD::setModel(\App\Models\Trading::class);
CRUD::setRoute(config('backpack.base.route_prefix') . '/trading');
CRUD::setEntityNameStrings('trading', 'tradings');
}
/**
* Define what happens when the List operation is loaded.
*
* @see https://backpackforlaravel.com/docs/crud-operation-list-entries
* @return void
*/
protected function setupListOperation()
{
CRUD::column('group_id');
CRUD::column('subgroup_id');
CRUD::column('category_id');
// CRUD::column('type');
CRUD::column('title');
CRUD::column('price');
CRUD::column('unit');
CRUD::column('amount');
CRUD::column('currency');
CRUD::column('seller_country');
CRUD::column('buyer_country');
CRUD::column('point');
CRUD::column('is_line');
CRUD::column('locale');
CRUD::column('created_at');
CRUD::column('updated_at');
/**
* Columns can be defined using the fluent syntax or array syntax:
* - CRUD::column('price')->type('number');
* - CRUD::addColumn(['name' => 'price', 'type' => 'number']);
*/
}
/**
* Define what happens when the Create operation is loaded.
*
* @see https://backpackforlaravel.com/docs/crud-operation-create
* @return void
*/
protected function setupCreateOperation()
{
CRUD::setValidation(TradingRequest::class);
CRUD::field('group_id');
CRUD::field('subgroup_id');
CRUD::field('category_id');
CRUD::field('type');
CRUD::field('title');
CRUD::field('unit');
CRUD::field('amount');
CRUD::field('currency');
CRUD::field('seller_country');
CRUD::field('buyer_country');
CRUD::field('point');
CRUD::field('price');
CRUD::field('is_line');
CRUD::field('locale');
/**
* Fields can be defined using the fluent syntax or array syntax:
* - CRUD::field('price')->type('number');
* - CRUD::addField(['name' => 'price', 'type' => 'number']));
*/
}
/**
* Define what happens when the Update operation is loaded.
*
* @see https://backpackforlaravel.com/docs/crud-operation-update
* @return void
*/
protected function setupUpdateOperation()
{
$this->setupCreateOperation();
}
}

View File

@ -0,0 +1,232 @@
<?php
namespace App\Http\Controllers\Api;
use League\Fractal\Manager;
use League\Fractal\Resource\Item;
use App\Http\Controllers\Controller;
use League\Fractal\Resource\Collection;
use League\Fractal\Pagination\IlluminatePaginatorAdapter;
class ApiController extends Controller
{
/**
* @var int $statusCode
*/
protected $statusCode = 200;
const CODE_WRONG_ARGS = 'GEN-FUBARGS';
const CODE_NOT_FOUND = 'GEN-LIKETHEWIND';
const CODE_INTERNAL_ERROR = 'GEN-AAAGGH';
const CODE_UNAUTHORIZED = 'GEN-MAYBGTFO';
const CODE_FORBIDDEN = 'GEN-GTFO';
const CODE_INVALID_MIME_TYPE = 'GEN-UMWUT';
/**
* @var Manager $fractal
*/
protected $fractal;
public function __construct()
{
$this->fractal = new Manager;
}
/**
* Get the status code.
*
* @return int $statusCode
*/
public function getStatusCode()
{
return $this->statusCode;
}
/**
* Set the status code.
*
* @param $statusCode
* @return $this
*/
public function setStatusCode($statusCode)
{
$this->statusCode = $statusCode;
return $this;
}
/**
* Repond a no content response.
*
* @return response
*/
public function noContent()
{
return response()->json(null, 204);
}
/**
* Respond the item data.
*
* @param $item
* @param $callback
* @return mixed
*/
public function respondWithItem($item, $callback, $message = 'Successfully')
{
$resource = new Item($item, $callback);
$data = $this->fractal->createData($resource)->toArray();
$data['message'] = $message;
return $this->respondWithArray($data);
}
/**
* Respond the collection data.
*
* @param $collection
* @param $callback
* @return mixed
*/
public function respondWithCollection($collection, $callback, $message = 'Successfully')
{
$resource = new Collection($collection, $callback);
$data = $this->fractal->createData($resource)->toArray();
$data['message'] = $message;
return $this->respondWithArray($data);
}
/**
* Respond the collection data with pagination.
*
* @param $paginator
* @param $callback
* @return mixed
*/
public function respondWithPaginator($paginator, $callback, $message = 'Successfully')
{
$resource = new Collection($paginator->getCollection(), $callback);
$resource->setPaginator(new IlluminatePaginatorAdapter($paginator));
$data = $this->fractal->createData($resource)->toArray();
$data['message'] = $message;
return $this->respondWithArray($data);
}
/**
* Respond the data.
*
* @param array $array
* @param array $headers
* @return mixed
*/
public function respondWithArray(array $array, array $headers = [])
{
return response()->json($array, $this->statusCode, $headers);
}
/**
* Respond the message.
*
* @param string $message
* @return json
*/
public function respondWithMessage ($message) {
return $this->setStatusCode(200)
->respondWithArray([
'message' => $message,
]);
}
/**
* Respond the error message.
*
* @param string $message
* @param string $errorCode
* @return json
*/
protected function respondWithError($message, $errorCode, $errors = [])
{
if ($this->statusCode === 200) {
trigger_error(
"You better have a really good reason for erroring on a 200...",
E_USER_WARNING
);
}
return $this->respondWithArray([
'errors' => $errors,
'code' => $errorCode,
'message' => $message,
]);
}
/**
* Respond the error of 'Forbidden'
*
* @param string $message
* @return json
*/
public function errorForbidden($message = 'Forbidden', $errors = [])
{
return $this->setStatusCode(500)
->respondWithError($message, self::CODE_FORBIDDEN, $errors);
}
/**
* Respond the error of 'Internal Error'.
*
* @param string $message
* @return json
*/
public function errorInternalError($message = 'Internal Error', $errors = [])
{
return $this->setStatusCode(500)
->respondWithError($message, self::CODE_INTERNAL_ERROR, $errors);
}
/**
* Respond the error of 'Resource Not Found'
*
* @param string $message
* @return json
*/
public function errorNotFound($message = 'Resource Not Found', $errors = [])
{
return $this->setStatusCode(404)
->respondWithError($message, self::CODE_NOT_FOUND, $errors);
}
/**
* Respond the error of 'Unauthorized'.
*
* @param string $message
* @return json
*/
public function errorUnauthorized($message = 'Unauthorized', $errors = [])
{
return $this->setStatusCode(401)
->respondWithError($message, self::CODE_UNAUTHORIZED, $errors);
}
/**
* Respond the error of 'Wrong Arguments'.
*
* @param string $message
* @return json
*/
public function errorWrongArgs($message = 'Wrong Arguments', $errors = [])
{
return $this->setStatusCode(400)
->respondWithError($message, self::CODE_WRONG_ARGS, $errors);
}
}

View File

@ -0,0 +1,55 @@
<?php
namespace App\Http\Controllers\Api;
use App\Models\Group;
use App\Models\Trading;
use App\Transformers\TradingTransformer;
use Illuminate\Http\Request;
use function PHPUnit\Framework\isEmpty;
class TradingsController extends ApiController
{
public function index(Request $request)
{
$last_tradings = Group::where("type", "trading")->with("tradings")->latest()->first()->tradings;
$last_tradings = $last_tradings->unique('title');
$tradings = [];
foreach($last_tradings as $trading){
$title = trim(strtok($trading->title, '('));
$before_last_trading = Trading::where("title",'LIKE', "%{$title}%")->where('group_id', '!=', $trading->group_id)->latest()->first();
$difference = !$before_last_trading ? 0 : $this->getPercentageDifference($trading->price ?? 0, $before_last_trading->price ?? 0);
array_push($tradings, (object)[
'id' => $trading->id,
'title' => $title,
'unit' => $trading->unit,
'price' => $trading->price,
'old_price' => !$before_last_trading ? 0 : $before_last_trading->price,
'price_change' => number_format($difference, 1, ".", "")."%",
'amount' => $trading->amount,
'currency' => $trading->currency,
'seller_country' => $trading->seller_country,
'buyer_country' => $trading->buyer_country,
'point' => $trading->point,
]);
}
$tradings = Trading::hydrate($tradings);
return $this->respondWithCollection($tradings, new TradingTransformer);
dd($tradings);
}
function getPercentageDifference($new, $old){
// return (($new - $old) / $old) * 100;
// return (abs(($old - $new)) / ($old + $new) /2);
// return (abs($old - $new) / (($old + $new)/ 2)) * 100;
// return (abs($old - $new) / (($old + $new)/ 2)) * 100;
return (($new - $old) / abs($old)) * 100;
}
}

View File

@ -0,0 +1,68 @@
<?php
namespace App\Http\Middleware;
use Closure;
class CheckIfAdmin
{
/**
* Checked that the logged in user is an administrator.
*
* --------------
* VERY IMPORTANT
* --------------
* If you have both regular users and admins inside the same table, change
* the contents of this method to check that the logged in user
* is an admin, and not a regular user.
*
* Additionally, in Laravel 7+, you should change app/Providers/RouteServiceProvider::HOME
* which defines the route where a logged in user (but not admin) gets redirected
* when trying to access an admin route. By default it's '/home' but Backpack
* does not have a '/home' route, use something you've built for your users
* (again - users, not admins).
*
* @param \Illuminate\Contracts\Auth\Authenticatable|null $user
* @return bool
*/
private function checkIfUserIsAdmin($user)
{
// return ($user->is_admin == 1);
return true;
}
/**
* Answer to unauthorized access request.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response|\Illuminate\Http\RedirectResponse
*/
private function respondToUnauthorizedRequest($request)
{
if ($request->ajax() || $request->wantsJson()) {
return response(trans('backpack::base.unauthorized'), 401);
} else {
return redirect()->guest(backpack_url('login'));
}
}
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
if (backpack_auth()->guest()) {
return $this->respondToUnauthorizedRequest($request);
}
if (! $this->checkIfUserIsAdmin(backpack_user())) {
return $this->respondToUnauthorizedRequest($request);
}
return $next($request);
}
}

View File

@ -0,0 +1,55 @@
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class CategoryRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
// only allow updates if the user is logged in
return backpack_auth()->check();
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
// 'name' => 'required|min:5|max:255'
];
}
/**
* Get the validation attributes that apply to the request.
*
* @return array
*/
public function attributes()
{
return [
//
];
}
/**
* Get the validation messages that apply to the request.
*
* @return array
*/
public function messages()
{
return [
//
];
}
}

View File

@ -0,0 +1,55 @@
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class TradingRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
// only allow updates if the user is logged in
return backpack_auth()->check();
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
// 'name' => 'required|min:5|max:255'
];
}
/**
* Get the validation attributes that apply to the request.
*
* @return array
*/
public function attributes()
{
return [
//
];
}
/**
* Get the validation messages that apply to the request.
*
* @return array
*/
public function messages()
{
return [
//
];
}
}

View File

@ -4,10 +4,11 @@ namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Spatie\Translatable\HasTranslations;
use Backpack\CRUD\app\Models\Traits\SpatieTranslatable\HasTranslations;
class Category extends Model
{
use \Backpack\CRUD\app\Models\Traits\CrudTrait;
use HasFactory;
use HasTranslations;

View File

@ -8,6 +8,7 @@ use Illuminate\Database\Eloquent\Factories\HasFactory;
class Trading extends Model
{
use \Backpack\CRUD\app\Models\Traits\CrudTrait;
use HasFactory;
protected $guarded = ['id'];

View File

@ -0,0 +1,26 @@
<?php
namespace App\Transformers;
use App\Models\Trading;
use League\Fractal\TransformerAbstract;
class TradingTransformer extends TransformerAbstract
{
public function transform(Trading $trading)
{
return [
'id' => $trading->id,
'title' => $trading->title,
'unit' => $trading->unit,
'price' => $trading->price,
'old_price' => $trading->old_price,
'price_change' => $trading->price_change,
'amount' => $trading->amount,
'currency' => $trading->currency,
'seller_country' => $trading->seller_country,
'buyer_country' => $trading->buyer_country,
'point' => $trading->point,
];
}
}

1209
bootstrap/cache/config.php vendored Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,45 @@
<?php return array (
'backpack/crud' =>
array (
'providers' =>
array (
0 => 'Backpack\\CRUD\\BackpackServiceProvider',
),
'aliases' =>
array (
'CRUD' => 'Backpack\\CRUD\\app\\Library\\CrudPanel\\CrudPanelFacade',
'Widget' => 'Backpack\\CRUD\\app\\Library\\Widget',
),
),
'backpack/generators' =>
array (
'providers' =>
array (
0 => 'Backpack\\Generators\\GeneratorsServiceProvider',
),
),
'creativeorange/gravatar' =>
array (
'providers' =>
array (
0 => 'Creativeorange\\Gravatar\\GravatarServiceProvider',
),
'aliases' =>
array (
'Gravatar' => 'Creativeorange\\Gravatar\\Facades\\Gravatar',
),
),
'digitallyhappy/assets' =>
array (
'providers' =>
array (
0 => 'DigitallyHappy\\Assets\\AssetsServiceProvider',
),
'aliases' =>
array (
'Assets' => 'DigitallyHappy\\Assets\\Facades\\Assets',
),
),
'facade/ignition' =>
array (
'providers' =>
@ -109,6 +150,17 @@
0 => 'NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider',
),
),
'prologue/alerts' =>
array (
'providers' =>
array (
0 => 'Prologue\\Alerts\\AlertsServiceProvider',
),
'aliases' =>
array (
'Alert' => 'Prologue\\Alerts\\Facades\\Alert',
),
),
'spatie/laravel-translatable' =>
array (
'providers' =>

4640
bootstrap/cache/routes-v7.php vendored Normal file

File diff suppressed because it is too large Load Diff

View File

@ -23,30 +23,35 @@
19 => 'Illuminate\\Translation\\TranslationServiceProvider',
20 => 'Illuminate\\Validation\\ValidationServiceProvider',
21 => 'Illuminate\\View\\ViewServiceProvider',
22 => 'Facade\\Ignition\\IgnitionServiceProvider',
23 => 'Fideloper\\Proxy\\TrustedProxyServiceProvider',
24 => 'Fruitcake\\Cors\\CorsServiceProvider',
25 => 'Inertia\\ServiceProvider',
26 => 'Jenssegers\\Agent\\AgentServiceProvider',
27 => 'Laravel\\Fortify\\FortifyServiceProvider',
28 => 'Laravel\\Jetstream\\JetstreamServiceProvider',
29 => 'Laravel\\Sail\\SailServiceProvider',
30 => 'Laravel\\Sanctum\\SanctumServiceProvider',
31 => 'Laravel\\Scout\\ScoutServiceProvider',
32 => 'Laravel\\Tinker\\TinkerServiceProvider',
33 => 'Maatwebsite\\Excel\\ExcelServiceProvider',
34 => 'Carbon\\Laravel\\ServiceProvider',
35 => 'NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider',
36 => 'Spatie\\Translatable\\TranslatableServiceProvider',
37 => 'Tightenco\\Ziggy\\ZiggyServiceProvider',
38 => 'TimeHunter\\LaravelGoogleReCaptchaV3\\Providers\\GoogleReCaptchaV3ServiceProvider',
39 => 'Vinkla\\Hashids\\HashidsServiceProvider',
40 => 'App\\Providers\\AppServiceProvider',
41 => 'App\\Providers\\AuthServiceProvider',
42 => 'App\\Providers\\EventServiceProvider',
43 => 'App\\Providers\\RouteServiceProvider',
44 => 'App\\Providers\\FortifyServiceProvider',
45 => 'App\\Providers\\JetstreamServiceProvider',
22 => 'Backpack\\CRUD\\BackpackServiceProvider',
23 => 'Backpack\\Generators\\GeneratorsServiceProvider',
24 => 'Creativeorange\\Gravatar\\GravatarServiceProvider',
25 => 'DigitallyHappy\\Assets\\AssetsServiceProvider',
26 => 'Facade\\Ignition\\IgnitionServiceProvider',
27 => 'Fideloper\\Proxy\\TrustedProxyServiceProvider',
28 => 'Fruitcake\\Cors\\CorsServiceProvider',
29 => 'Inertia\\ServiceProvider',
30 => 'Jenssegers\\Agent\\AgentServiceProvider',
31 => 'Laravel\\Fortify\\FortifyServiceProvider',
32 => 'Laravel\\Jetstream\\JetstreamServiceProvider',
33 => 'Laravel\\Sail\\SailServiceProvider',
34 => 'Laravel\\Sanctum\\SanctumServiceProvider',
35 => 'Laravel\\Scout\\ScoutServiceProvider',
36 => 'Laravel\\Tinker\\TinkerServiceProvider',
37 => 'Maatwebsite\\Excel\\ExcelServiceProvider',
38 => 'Carbon\\Laravel\\ServiceProvider',
39 => 'NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider',
40 => 'Prologue\\Alerts\\AlertsServiceProvider',
41 => 'Spatie\\Translatable\\TranslatableServiceProvider',
42 => 'Tightenco\\Ziggy\\ZiggyServiceProvider',
43 => 'TimeHunter\\LaravelGoogleReCaptchaV3\\Providers\\GoogleReCaptchaV3ServiceProvider',
44 => 'Vinkla\\Hashids\\HashidsServiceProvider',
45 => 'App\\Providers\\AppServiceProvider',
46 => 'App\\Providers\\AuthServiceProvider',
47 => 'App\\Providers\\EventServiceProvider',
48 => 'App\\Providers\\RouteServiceProvider',
49 => 'App\\Providers\\FortifyServiceProvider',
50 => 'App\\Providers\\JetstreamServiceProvider',
),
'eager' =>
array (
@ -60,28 +65,33 @@
7 => 'Illuminate\\Pagination\\PaginationServiceProvider',
8 => 'Illuminate\\Session\\SessionServiceProvider',
9 => 'Illuminate\\View\\ViewServiceProvider',
10 => 'Facade\\Ignition\\IgnitionServiceProvider',
11 => 'Fideloper\\Proxy\\TrustedProxyServiceProvider',
12 => 'Fruitcake\\Cors\\CorsServiceProvider',
13 => 'Inertia\\ServiceProvider',
14 => 'Jenssegers\\Agent\\AgentServiceProvider',
15 => 'Laravel\\Fortify\\FortifyServiceProvider',
16 => 'Laravel\\Jetstream\\JetstreamServiceProvider',
17 => 'Laravel\\Sanctum\\SanctumServiceProvider',
18 => 'Laravel\\Scout\\ScoutServiceProvider',
19 => 'Maatwebsite\\Excel\\ExcelServiceProvider',
20 => 'Carbon\\Laravel\\ServiceProvider',
21 => 'NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider',
22 => 'Spatie\\Translatable\\TranslatableServiceProvider',
23 => 'Tightenco\\Ziggy\\ZiggyServiceProvider',
24 => 'TimeHunter\\LaravelGoogleReCaptchaV3\\Providers\\GoogleReCaptchaV3ServiceProvider',
25 => 'Vinkla\\Hashids\\HashidsServiceProvider',
26 => 'App\\Providers\\AppServiceProvider',
27 => 'App\\Providers\\AuthServiceProvider',
28 => 'App\\Providers\\EventServiceProvider',
29 => 'App\\Providers\\RouteServiceProvider',
30 => 'App\\Providers\\FortifyServiceProvider',
31 => 'App\\Providers\\JetstreamServiceProvider',
10 => 'Backpack\\CRUD\\BackpackServiceProvider',
11 => 'Backpack\\Generators\\GeneratorsServiceProvider',
12 => 'Creativeorange\\Gravatar\\GravatarServiceProvider',
13 => 'DigitallyHappy\\Assets\\AssetsServiceProvider',
14 => 'Facade\\Ignition\\IgnitionServiceProvider',
15 => 'Fideloper\\Proxy\\TrustedProxyServiceProvider',
16 => 'Fruitcake\\Cors\\CorsServiceProvider',
17 => 'Inertia\\ServiceProvider',
18 => 'Jenssegers\\Agent\\AgentServiceProvider',
19 => 'Laravel\\Fortify\\FortifyServiceProvider',
20 => 'Laravel\\Jetstream\\JetstreamServiceProvider',
21 => 'Laravel\\Sanctum\\SanctumServiceProvider',
22 => 'Laravel\\Scout\\ScoutServiceProvider',
23 => 'Maatwebsite\\Excel\\ExcelServiceProvider',
24 => 'Carbon\\Laravel\\ServiceProvider',
25 => 'NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider',
26 => 'Prologue\\Alerts\\AlertsServiceProvider',
27 => 'Spatie\\Translatable\\TranslatableServiceProvider',
28 => 'Tightenco\\Ziggy\\ZiggyServiceProvider',
29 => 'TimeHunter\\LaravelGoogleReCaptchaV3\\Providers\\GoogleReCaptchaV3ServiceProvider',
30 => 'Vinkla\\Hashids\\HashidsServiceProvider',
31 => 'App\\Providers\\AppServiceProvider',
32 => 'App\\Providers\\AuthServiceProvider',
33 => 'App\\Providers\\EventServiceProvider',
34 => 'App\\Providers\\RouteServiceProvider',
35 => 'App\\Providers\\FortifyServiceProvider',
36 => 'App\\Providers\\JetstreamServiceProvider',
),
'deferred' =>
array (
@ -104,6 +114,7 @@
'command.config.cache' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
'command.config.clear' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
'Illuminate\\Database\\Console\\DbCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
'command.db.prune' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
'command.db.wipe' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
'command.down' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
'command.environment' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
@ -119,7 +130,9 @@
'command.queue.flush' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
'command.queue.forget' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
'command.queue.listen' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
'command.queue.monitor' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
'command.queue.prune-batches' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
'command.queue.prune-failed-jobs' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
'command.queue.restart' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
'command.queue.retry' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
'command.queue.retry-batch' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
@ -132,6 +145,7 @@
'Illuminate\\Console\\Scheduling\\ScheduleFinishCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
'Illuminate\\Console\\Scheduling\\ScheduleListCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
'Illuminate\\Console\\Scheduling\\ScheduleRunCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
'Illuminate\\Console\\Scheduling\\ScheduleClearCacheCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
'Illuminate\\Console\\Scheduling\\ScheduleTestCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
'Illuminate\\Console\\Scheduling\\ScheduleWorkCommand' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
'command.storage.link' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',

View File

@ -5,7 +5,8 @@
"keywords": ["framework", "laravel"],
"license": "MIT",
"require": {
"php": "^7.3|^8.0",
"php": "^7.3|^8.0|^8.1",
"backpack/crud": "^5.4",
"doctrine/dbal": "^3.1",
"fideloper/proxy": "^4.4",
"fruitcake/laravel-cors": "^2.0",
@ -17,6 +18,7 @@
"laravel/sanctum": "^2.6",
"laravel/scout": "^9.0",
"laravel/tinker": "^2.5",
"league/fractal": "^0.20.1",
"maatwebsite/excel": "^3.1",
"meilisearch/meilisearch-php": "^0.18.0",
"spatie/laravel-translatable": "^5.0",
@ -26,6 +28,7 @@
"vinkla/hashids": "^9.1"
},
"require-dev": {
"backpack/generators": "^3.3",
"facade/ignition": "^2.5",
"fakerphp/faker": "^1.9.1",
"laravel/sail": "^1.0.1",

4258
composer.lock generated

File diff suppressed because it is too large Load Diff

354
config/backpack/base.php Normal file
View File

@ -0,0 +1,354 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Look & feel customizations
|--------------------------------------------------------------------------
|
| Make it yours.
|
*/
// Date & Datetime Format Syntax: https://carbon.nesbot.com/docs/#api-localization
'default_date_format' => 'D MMM YYYY',
'default_datetime_format' => 'D MMM YYYY, HH:mm',
// Direction, according to language
// (left-to-right vs right-to-left)
'html_direction' => 'ltr',
// ----
// HEAD
// ----
// Project name. Shown in the window title.
'project_name' => 'Backpack Admin Panel',
// When clicking on the admin panel's top-left logo/name,
// where should the user be redirected?
// The string below will be passed through the url() helper.
// - default: '' (project root)
// - alternative: 'admin' (the admin's dashboard)
'home_link' => '',
// Content of the HTML meta robots tag to prevent indexing and link following
'meta_robots_content' => 'noindex, nofollow',
// ---------
// DASHBOARD
// ---------
// Show "Getting Started with Backpack" info block?
'show_getting_started' => false,
// ------
// STYLES
// ------
// CSS files that are loaded in all pages, using Laravel's asset() helper
'styles' => [
'packages/backpack/base/css/bundle.css', // has primary color electric purple (backpack default)
// 'packages/backpack/base/css/blue-bundle.css', // has primary color blue
// Here's what's inside the bundle:
// 'packages/@digitallyhappy/backstrap/css/style.min.css',
// 'packages/animate.css/animate.min.css',
// 'packages/noty/noty.css',
// Load the fonts separately (so that you can replace them at will):
'packages/source-sans-pro/source-sans-pro.css',
'packages/line-awesome/css/line-awesome.min.css',
// Example (the fonts above, loaded from CDN instead)
// 'https://maxcdn.icons8.com/fonts/line-awesome/1.1/css/line-awesome-font-awesome.min.css',
// 'https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700,300italic,400italic,600italic',
// Example (load font-awesome instead of line-awesome):
// 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.2/css/all.min.css',
],
// CSS files that are loaded in all pages, using Laravel's mix() helper
'mix_styles' => [ // file_path => manifest_directory_path
// 'css/app.css' => '',
],
// CSS files that are loaded in all pages, using Laravel's @vite() helper
// Please note that support for Vite was added in Laravel 9.19. Earlier versions are not able to use this feature.
'vite_styles' => [ // resource file_path
// 'resources/css/app.css' => '',
],
// ------
// HEADER
// ------
// Menu logo. You can replace this with an <img> tag if you have a logo.
'project_logo' => '<b>Back</b>pack',
// Show / hide breadcrumbs on admin panel pages.
'breadcrumbs' => true,
// Horizontal navbar classes. Helps make the admin panel look similar to your project's design.
'header_class' => 'app-header bg-light border-0 navbar',
// For background colors use: bg-dark, bg-primary, bg-secondary, bg-danger, bg-warning, bg-success, bg-info, bg-blue, bg-light-blue, bg-indigo, bg-purple, bg-pink, bg-red, bg-orange, bg-yellow, bg-green, bg-teal, bg-cyan, bg-white
// For links to be visible on different background colors use: "navbar-dark", "navbar-light", "navbar-color"
// ----
// BODY
// ----
// Body element classes.
'body_class' => 'app aside-menu-fixed sidebar-lg-show',
// Try sidebar-hidden, sidebar-fixed, sidebar-compact, sidebar-lg-show
// Sidebar element classes.
'sidebar_class' => 'sidebar sidebar-pills bg-light',
// Remove "sidebar-transparent" for standard sidebar look
// Try "sidebar-light" or "sidebar-dark" for dark/light links
// You can also add a background class like bg-dark, bg-primary, bg-secondary, bg-danger, bg-warning, bg-success, bg-info, bg-blue, bg-light-blue, bg-indigo, bg-purple, bg-pink, bg-red, bg-orange, bg-yellow, bg-green, bg-teal, bg-cyan
// ------
// FOOTER
// ------
// Footer element classes.
'footer_class' => 'app-footer d-print-none',
// hide it with d-none
// change background color with bg-dark, bg-primary, bg-secondary, bg-danger, bg-warning, bg-success, bg-info, bg-blue, bg-light-blue, bg-indigo, bg-purple, bg-pink, bg-red, bg-orange, bg-yellow, bg-green, bg-teal, bg-cyan, bg-white
// Developer or company name. Shown in footer.
'developer_name' => 'Cristian Tabacitu',
// Developer website. Link in footer. Type false if you want to hide it.
'developer_link' => 'http://tabacitu.ro',
// Show powered by Laravel Backpack in the footer? true/false
'show_powered_by' => true,
// -------
// SCRIPTS
// -------
// JS files that are loaded in all pages, using Laravel's asset() helper
'scripts' => [
// Backstrap includes jQuery, Bootstrap, CoreUI, PNotify, Popper
'packages/backpack/base/js/bundle.js',
// examples (everything inside the bundle, loaded from CDN)
// 'https://code.jquery.com/jquery-3.4.1.min.js',
// 'https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js',
// 'https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js',
// 'https://unpkg.com/@coreui/coreui@2.1.16/dist/js/coreui.min.js',
// 'https://cdnjs.cloudflare.com/ajax/libs/pace/1.0.2/pace.min.js',
// 'https://unpkg.com/sweetalert/dist/sweetalert.min.js',
// 'https://cdnjs.cloudflare.com/ajax/libs/noty/3.1.4/noty.min.js'
// examples (VueJS or React)
// 'https://unpkg.com/vue@2.4.4/dist/vue.min.js',
// 'https://unpkg.com/react@16/umd/react.production.min.js',
// 'https://unpkg.com/react-dom@16/umd/react-dom.production.min.js',
],
// JS files that are loaded in all pages, using Laravel's mix() helper
'mix_scripts' => [ // file_path => manifest_directory_path
// 'js/app.js' => '',
],
// JS files that are loaded in all pages, using Laravel's @vite() helper
'vite_scripts' => [ // resource file_path
// 'resources/js/app.js',
],
// -------------
// CACHE-BUSTING
// -------------
// All JS and CSS assets defined above have this string appended as query string (?v=string).
// If you want to manually trigger cachebusting for all styles and scripts,
// append or prepend something to the string below, so that it's different.
'cachebusting_string' => \PackageVersions\Versions::getVersion('backpack/crud'),
/*
|--------------------------------------------------------------------------
| Registration Open
|--------------------------------------------------------------------------
|
| Choose whether new users/admins are allowed to register.
| This will show the Register button on the login page and allow access to the
| Register functions in AuthController.
|
| By default the registration is open only on localhost.
*/
'registration_open' => env('BACKPACK_REGISTRATION_OPEN', env('APP_ENV') === 'local'),
/*
|--------------------------------------------------------------------------
| Routing
|--------------------------------------------------------------------------
*/
// The prefix used in all base routes (the 'admin' in admin/dashboard)
// You can make sure all your URLs use this prefix by using the backpack_url() helper instead of url()
'route_prefix' => 'admin',
// The web middleware (group) used in all base & CRUD routes
// If you've modified your "web" middleware group (ex: removed sessions), you can use a different
// route group, that has all the the middleware listed below in the comments.
'web_middleware' => 'web',
// Or you can comment the above, and uncomment the complete list below.
// 'web_middleware' => [
// \App\Http\Middleware\EncryptCookies::class,
// \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
// \Illuminate\Session\Middleware\StartSession::class,
// \Illuminate\View\Middleware\ShareErrorsFromSession::class,
// \App\Http\Middleware\VerifyCsrfToken::class,
// ],
// Set this to false if you would like to use your own AuthController and PasswordController
// (you then need to setup your auth routes manually in your routes.php file)
// Warning: if you disable this, the password recovery routes (below) will be disabled too!
'setup_auth_routes' => true,
// Set this to false if you would like to skip adding the dashboard routes
// (you then need to overwrite the login route on your AuthController)
'setup_dashboard_routes' => true,
// Set this to false if you would like to skip adding "my account" routes
// (you then need to manually define the routes in your web.php)
'setup_my_account_routes' => true,
// Set this to false if you would like to skip adding the password recovery routes
// (you then need to manually define the routes in your web.php)
'setup_password_recovery_routes' => true,
/*
|--------------------------------------------------------------------------
| Security
|--------------------------------------------------------------------------
*/
// Backpack will prevent visitors from requesting password recovery too many times
// for a certain email, to make sure they cannot be spammed that way.
// How many seconds should a visitor wait, after they've requested a
// password reset, before they can try again for the same email?
'password_recovery_throttle_notifications' => 600, // time in seconds
// Backpack will prevent an IP from trying to reset the password too many times,
// so that a malicious actor cannot try too many emails, too see if they have
// accounts or to increase the AWS/SendGrid/etc bill.
//
// How many times in any given time period should the user be allowed to
// attempt a password reset? Take into account that user might wrongly
// type an email at first, so at least allow one more try.
// Defaults to 3,10 - 3 times in 10 minutes.
'password_recovery_throttle_access' => '3,10',
/*
|--------------------------------------------------------------------------
| Authentication
|--------------------------------------------------------------------------
*/
// Fully qualified namespace of the User model
'user_model_fqn' => config('auth.providers.users.model'),
// 'user_model_fqn' => App\User::class, // works on Laravel <= 7
// 'user_model_fqn' => App\Models\User::class, // works on Laravel >= 8
// The classes for the middleware to check if the visitor is an admin
// Can be a single class or an array of classes
'middleware_class' => [
App\Http\Middleware\CheckIfAdmin::class,
\Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull::class,
// \Backpack\CRUD\app\Http\Middleware\UseBackpackAuthGuardInsteadOfDefaultAuthGuard::class,
],
// Alias for that middleware
'middleware_key' => 'admin',
// Note: It's recommended to use the backpack_middleware() helper everywhere, which pulls this key for you.
// Username column for authentication
// The Backpack default is the same as the Laravel default (email)
// If you need to switch to username, you also need to create that column in your db
'authentication_column' => 'email',
'authentication_column_name' => 'Email',
// Backpack assumes that your "database email column" for operations like Login and Register is called "email".
// If your database email column have a different name, you can configure it here. Eg: `user_mail`
'email_column' => 'email',
// The guard that protects the Backpack admin panel.
// If null, the config.auth.defaults.guard value will be used.
'guard' => 'backpack',
// The password reset configuration for Backpack.
// If null, the config.auth.defaults.passwords value will be used.
'passwords' => 'backpack',
// What kind of avatar will you like to show to the user?
// Default: gravatar (automatically use the gravatar for their email)
// Other options:
// - null (generic image with their first letter)
// - example_method_name (specify the method on the User model that returns the URL)
'avatar_type' => 'gravatar',
// Gravatar fallback options are 'identicon', 'monsterid', 'wavatar', 'retro', 'robohash', 'blank'
// 'blank' will keep the generic image with the user first letter
'gravatar_fallback' => 'blank',
/*
|--------------------------------------------------------------------------
| Theme (User Interface)
|--------------------------------------------------------------------------
*/
// Change the view namespace in order to load a different theme than the one Backpack provides.
// You can create child themes yourself, by creating a view folder anywhere in your resources/views
// and choosing that view_namespace instead of the default one. Backpack will load a file from there
// if it exists, otherwise it will load it from the default namespace ("backpack::").
'view_namespace' => 'backpack::',
// EXAMPLE: if you create a new folder in resources/views/vendor/myname/mypackage,
// your namespace would be the one below. IMPORTANT: in this case the namespace ends with a dot.
// 'view_namespace' => 'vendor.myname.mypackage.',
// Tell Backpack to look in more places for component views (like widgets)
'component_view_namespaces' => [
'widgets' => [
'backpack::widgets', // falls back to 'resources/views/vendor/backpack/base/widgets'
],
],
/*
|--------------------------------------------------------------------------
| File System
|--------------------------------------------------------------------------
*/
// Backpack\Base sets up its own filesystem disk, just like you would by
// adding an entry to your config/filesystems.php. It points to the root
// of your project and it's used throughout all Backpack packages.
//
// You can rename this disk here. Default: root
'root_disk_name' => 'root',
/*
|--------------------------------------------------------------------------
| Backpack Token Username
|--------------------------------------------------------------------------
|
| If you have access to closed-source Backpack add-ons, please provide
| your token username here, if you're getting yellow alerts on your
| admin panel's pages. Normally this is not needed, it is
| preferred to add this as an environment variable
| (most likely in your .env file).
|
| More info and payment form on:
| https://www.backpackforlaravel.com
|
*/
'token_username' => env('BACKPACK_TOKEN_USERNAME', false),
];

471
config/backpack/crud.php Normal file
View File

@ -0,0 +1,471 @@
<?php
/**
* Backpack\CRUD preferences.
*/
return [
/*
|-------------------
| TRANSLATABLE CRUDS
|-------------------
*/
'show_translatable_field_icon' => true,
'translatable_field_icon_position' => 'left', // left or right
'locales' => [
// "af_NA" => "Afrikaans (Namibia)",
// "af_ZA" => "Afrikaans (South Africa)",
// "af" => "Afrikaans",
// "ak_GH" => "Akan (Ghana)",
// "ak" => "Akan",
// "sq_AL" => "Albanian (Albania)",
// "sq" => "Albanian",
// "am_ET" => "Amharic (Ethiopia)",
// "am" => "Amharic",
// "ar_DZ" => "Arabic (Algeria)",
// "ar_BH" => "Arabic (Bahrain)",
// "ar_EG" => "Arabic (Egypt)",
// "ar_IQ" => "Arabic (Iraq)",
// "ar_JO" => "Arabic (Jordan)",
// "ar_KW" => "Arabic (Kuwait)",
// "ar_LB" => "Arabic (Lebanon)",
// "ar_LY" => "Arabic (Libya)",
// "ar_MA" => "Arabic (Morocco)",
// "ar_OM" => "Arabic (Oman)",
// "ar_QA" => "Arabic (Qatar)",
// "ar_SA" => "Arabic (Saudi Arabia)",
// "ar_SD" => "Arabic (Sudan)",
// "ar_SY" => "Arabic (Syria)",
// "ar_TN" => "Arabic (Tunisia)",
// "ar_AE" => "Arabic (United Arab Emirates)",
// "ar_YE" => "Arabic (Yemen)",
// "ar" => "Arabic",
// "hy_AM" => "Armenian (Armenia)",
// "hy" => "Armenian",
// "as_IN" => "Assamese (India)",
// "as" => "Assamese",
// "asa_TZ" => "Asu (Tanzania)",
// "asa" => "Asu",
// "az_Cyrl" => "Azerbaijani (Cyrillic)",
// "az_Cyrl_AZ" => "Azerbaijani (Cyrillic, Azerbaijan)",
// "az_Latn" => "Azerbaijani (Latin)",
// "az_Latn_AZ" => "Azerbaijani (Latin, Azerbaijan)",
// "az" => "Azerbaijani",
// "bm_ML" => "Bambara (Mali)",
// "bm" => "Bambara",
// "eu_ES" => "Basque (Spain)",
// "eu" => "Basque",
// "be_BY" => "Belarusian (Belarus)",
// "be" => "Belarusian",
// "bem_ZM" => "Bemba (Zambia)",
// "bem" => "Bemba",
// "bez_TZ" => "Bena (Tanzania)",
// "bez" => "Bena",
// "bn_BD" => "Bengali (Bangladesh)",
// "bn_IN" => "Bengali (India)",
// "bn" => "Bengali",
// "bs_BA" => "Bosnian (Bosnia and Herzegovina)",
// "bs" => "Bosnian",
// "bg_BG" => "Bulgarian (Bulgaria)",
// "bg" => "Bulgarian",
// "my_MM" => "Burmese (Myanmar [Burma])",
// "my" => "Burmese",
// "ca_ES" => "Catalan (Spain)",
// "ca" => "Catalan",
// "tzm_Latn" => "Central Morocco Tamazight (Latin)",
// "tzm_Latn_MA" => "Central Morocco Tamazight (Latin, Morocco)",
// "tzm" => "Central Morocco Tamazight",
// "chr_US" => "Cherokee (United States)",
// "chr" => "Cherokee",
// "cgg_UG" => "Chiga (Uganda)",
// "cgg" => "Chiga",
// "zh_Hans" => "Chinese (Simplified Han)",
// "zh_Hans_CN" => "Chinese (Simplified Han, China)",
// "zh_Hans_HK" => "Chinese (Simplified Han, Hong Kong SAR China)",
// "zh_Hans_MO" => "Chinese (Simplified Han, Macau SAR China)",
// "zh_Hans_SG" => "Chinese (Simplified Han, Singapore)",
// "zh_Hant" => "Chinese (Traditional Han)",
// "zh_Hant_HK" => "Chinese (Traditional Han, Hong Kong SAR China)",
// "zh_Hant_MO" => "Chinese (Traditional Han, Macau SAR China)",
// "zh_Hant_TW" => "Chinese (Traditional Han, Taiwan)",
// "zh" => "Chinese",
// "kw_GB" => "Cornish (United Kingdom)",
// "kw" => "Cornish",
// "hr_HR" => "Croatian (Croatia)",
// "hr" => "Croatian",
// "cs_CZ" => "Czech (Czech Republic)",
// "cs" => "Czech",
// "da_DK" => "Danish (Denmark)",
// "da" => "Danish",
// "nl_BE" => "Dutch (Belgium)",
// "nl_NL" => "Dutch (Netherlands)",
// "nl" => "Dutch",
// "ebu_KE" => "Embu (Kenya)",
// "ebu" => "Embu",
// "en_AS" => "English (American Samoa)",
// "en_AU" => "English (Australia)",
// "en_BE" => "English (Belgium)",
// "en_BZ" => "English (Belize)",
// "en_BW" => "English (Botswana)",
// "en_CA" => "English (Canada)",
// "en_GU" => "English (Guam)",
// "en_HK" => "English (Hong Kong SAR China)",
// "en_IN" => "English (India)",
// "en_IE" => "English (Ireland)",
// "en_JM" => "English (Jamaica)",
// "en_MT" => "English (Malta)",
// "en_MH" => "English (Marshall Islands)",
// "en_MU" => "English (Mauritius)",
// "en_NA" => "English (Namibia)",
// "en_NZ" => "English (New Zealand)",
// "en_MP" => "English (Northern Mariana Islands)",
// "en_PK" => "English (Pakistan)",
// "en_PH" => "English (Philippines)",
// "en_SG" => "English (Singapore)",
// "en_ZA" => "English (South Africa)",
// "en_TT" => "English (Trinidad and Tobago)",
// "en_UM" => "English (U.S. Minor Outlying Islands)",
// "en_VI" => "English (U.S. Virgin Islands)",
// "en_GB" => "English (United Kingdom)",
// "en_US" => "English (United States)",
// "en_ZW" => "English (Zimbabwe)",
'en' => 'English',
// "eo" => "Esperanto",
// "et_EE" => "Estonian (Estonia)",
// "et" => "Estonian",
// "ee_GH" => "Ewe (Ghana)",
// "ee_TG" => "Ewe (Togo)",
// "ee" => "Ewe",
// "fo_FO" => "Faroese (Faroe Islands)",
// "fo" => "Faroese",
// "fil_PH" => "Filipino (Philippines)",
// "fil" => "Filipino",
// "fi_FI" => "Finnish (Finland)",
// "fi" => "Finnish",
// "fr_BE" => "French (Belgium)",
// "fr_BJ" => "French (Benin)",
// "fr_BF" => "French (Burkina Faso)",
// "fr_BI" => "French (Burundi)",
// "fr_CM" => "French (Cameroon)",
// "fr_CA" => "French (Canada)",
// "fr_CF" => "French (Central African Republic)",
// "fr_TD" => "French (Chad)",
// "fr_KM" => "French (Comoros)",
// "fr_CG" => "French (Congo - Brazzaville)",
// "fr_CD" => "French (Congo - Kinshasa)",
// "fr_CI" => "French (Côte dIvoire)",
// "fr_DJ" => "French (Djibouti)",
// "fr_GQ" => "French (Equatorial Guinea)",
// "fr_FR" => "French (France)",
// "fr_GA" => "French (Gabon)",
// "fr_GP" => "French (Guadeloupe)",
// "fr_GN" => "French (Guinea)",
// "fr_LU" => "French (Luxembourg)",
// "fr_MG" => "French (Madagascar)",
// "fr_ML" => "French (Mali)",
// "fr_MQ" => "French (Martinique)",
// "fr_MC" => "French (Monaco)",
// "fr_NE" => "French (Niger)",
// "fr_RW" => "French (Rwanda)",
// "fr_RE" => "French (Réunion)",
// "fr_BL" => "French (Saint Barthélemy)",
// "fr_MF" => "French (Saint Martin)",
// "fr_SN" => "French (Senegal)",
// "fr_CH" => "French (Switzerland)",
// "fr_TG" => "French (Togo)",
// 'fr' => 'French',
// "ff_SN" => "Fulah (Senegal)",
// "ff" => "Fulah",
// "gl_ES" => "Galician (Spain)",
// "gl" => "Galician",
// "lg_UG" => "Ganda (Uganda)",
// "lg" => "Ganda",
// "ka_GE" => "Georgian (Georgia)",
// "ka" => "Georgian",
// "de_AT" => "German (Austria)",
// "de_BE" => "German (Belgium)",
// "de_DE" => "German (Germany)",
// "de_LI" => "German (Liechtenstein)",
// "de_LU" => "German (Luxembourg)",
// "de_CH" => "German (Switzerland)",
// "de" => "German",
// "el_CY" => "Greek (Cyprus)",
// "el_GR" => "Greek (Greece)",
// "el" => "Greek",
// "gu_IN" => "Gujarati (India)",
// "gu" => "Gujarati",
// "guz_KE" => "Gusii (Kenya)",
// "guz" => "Gusii",
// "ha_Latn" => "Hausa (Latin)",
// "ha_Latn_GH" => "Hausa (Latin, Ghana)",
// "ha_Latn_NE" => "Hausa (Latin, Niger)",
// "ha_Latn_NG" => "Hausa (Latin, Nigeria)",
// "ha" => "Hausa",
// "haw_US" => "Hawaiian (United States)",
// "haw" => "Hawaiian",
// "he_IL" => "Hebrew (Israel)",
// "he" => "Hebrew",
// "hi_IN" => "Hindi (India)",
// "hi" => "Hindi",
// "hu_HU" => "Hungarian (Hungary)",
// "hu" => "Hungarian",
// "is_IS" => "Icelandic (Iceland)",
// "is" => "Icelandic",
// "ig_NG" => "Igbo (Nigeria)",
// "ig" => "Igbo",
// "id_ID" => "Indonesian (Indonesia)",
// "id" => "Indonesian",
// "ga_IE" => "Irish (Ireland)",
// "ga" => "Irish",
// "it_IT" => "Italian (Italy)",
// "it_CH" => "Italian (Switzerland)",
// 'it' => 'Italian',
// "ja_JP" => "Japanese (Japan)",
// "ja" => "Japanese",
// "kea_CV" => "Kabuverdianu (Cape Verde)",
// "kea" => "Kabuverdianu",
// "kab_DZ" => "Kabyle (Algeria)",
// "kab" => "Kabyle",
// "kl_GL" => "Kalaallisut (Greenland)",
// "kl" => "Kalaallisut",
// "kln_KE" => "Kalenjin (Kenya)",
// "kln" => "Kalenjin",
// "kam_KE" => "Kamba (Kenya)",
// "kam" => "Kamba",
// "kn_IN" => "Kannada (India)",
// "kn" => "Kannada",
// "kk_Cyrl" => "Kazakh (Cyrillic)",
// "kk_Cyrl_KZ" => "Kazakh (Cyrillic, Kazakhstan)",
// "kk" => "Kazakh",
// "km_KH" => "Khmer (Cambodia)",
// "km" => "Khmer",
// "ki_KE" => "Kikuyu (Kenya)",
// "ki" => "Kikuyu",
// "rw_RW" => "Kinyarwanda (Rwanda)",
// "rw" => "Kinyarwanda",
// "kok_IN" => "Konkani (India)",
// "kok" => "Konkani",
// "ko_KR" => "Korean (South Korea)",
// "ko" => "Korean",
// "khq_ML" => "Koyra Chiini (Mali)",
// "khq" => "Koyra Chiini",
// "ses_ML" => "Koyraboro Senni (Mali)",
// "ses" => "Koyraboro Senni",
// "lag_TZ" => "Langi (Tanzania)",
// "lag" => "Langi",
// "lv_LV" => "Latvian (Latvia)",
// "lv" => "Latvian",
// "lt_LT" => "Lithuanian (Lithuania)",
// "lt" => "Lithuanian",
// "luo_KE" => "Luo (Kenya)",
// "luo" => "Luo",
// "luy_KE" => "Luyia (Kenya)",
// "luy" => "Luyia",
// "mk_MK" => "Macedonian (Macedonia)",
// "mk" => "Macedonian",
// "jmc_TZ" => "Machame (Tanzania)",
// "jmc" => "Machame",
// "kde_TZ" => "Makonde (Tanzania)",
// "kde" => "Makonde",
// "mg_MG" => "Malagasy (Madagascar)",
// "mg" => "Malagasy",
// "ms_BN" => "Malay (Brunei)",
// "ms_MY" => "Malay (Malaysia)",
// "ms" => "Malay",
// "ml_IN" => "Malayalam (India)",
// "ml" => "Malayalam",
// "mt_MT" => "Maltese (Malta)",
// "mt" => "Maltese",
// "gv_GB" => "Manx (United Kingdom)",
// "gv" => "Manx",
// "mr_IN" => "Marathi (India)",
// "mr" => "Marathi",
// "mas_KE" => "Masai (Kenya)",
// "mas_TZ" => "Masai (Tanzania)",
// "mas" => "Masai",
// "mer_KE" => "Meru (Kenya)",
// "mer" => "Meru",
// "mfe_MU" => "Morisyen (Mauritius)",
// "mfe" => "Morisyen",
// "naq_NA" => "Nama (Namibia)",
// "naq" => "Nama",
// "ne_IN" => "Nepali (India)",
// "ne_NP" => "Nepali (Nepal)",
// "ne" => "Nepali",
// "nd_ZW" => "North Ndebele (Zimbabwe)",
// "nd" => "North Ndebele",
// "nb_NO" => "Norwegian Bokmål (Norway)",
// "nb" => "Norwegian Bokmål",
// "nn_NO" => "Norwegian Nynorsk (Norway)",
// "nn" => "Norwegian Nynorsk",
// "nyn_UG" => "Nyankole (Uganda)",
// "nyn" => "Nyankole",
// "or_IN" => "Oriya (India)",
// "or" => "Oriya",
// "om_ET" => "Oromo (Ethiopia)",
// "om_KE" => "Oromo (Kenya)",
// "om" => "Oromo",
// "ps_AF" => "Pashto (Afghanistan)",
// "ps" => "Pashto",
// "fa_AF" => "Persian (Afghanistan)",
// "fa_IR" => "Persian (Iran)",
// "fa" => "Persian",
// "pl_PL" => "Polish (Poland)",
// "pl" => "Polish",
// "pt_BR" => "Portuguese (Brazil)",
// "pt_GW" => "Portuguese (Guinea-Bissau)",
// "pt_MZ" => "Portuguese (Mozambique)",
// "pt_PT" => "Portuguese (Portugal)",
// "pt" => "Portuguese",
// "pa_Arab" => "Punjabi (Arabic)",
// "pa_Arab_PK" => "Punjabi (Arabic, Pakistan)",
// "pa_Guru" => "Punjabi (Gurmukhi)",
// "pa_Guru_IN" => "Punjabi (Gurmukhi, India)",
// "pa" => "Punjabi",
// "ro_MD" => "Romanian (Moldova)",
// "ro_RO" => "Romanian (Romania)",
// 'ro' => 'Romanian',
// "rm_CH" => "Romansh (Switzerland)",
// "rm" => "Romansh",
// "rof_TZ" => "Rombo (Tanzania)",
// "rof" => "Rombo",
// "ru_MD" => "Russian (Moldova)",
// "ru_RU" => "Russian (Russia)",
// "ru_UA" => "Russian (Ukraine)",
"ru" => "Russian",
// "rwk_TZ" => "Rwa (Tanzania)",
// "rwk" => "Rwa",
// "saq_KE" => "Samburu (Kenya)",
// "saq" => "Samburu",
// "sg_CF" => "Sango (Central African Republic)",
// "sg" => "Sango",
// "seh_MZ" => "Sena (Mozambique)",
// "seh" => "Sena",
// "sr_Cyrl" => "Serbian (Cyrillic)",
// "sr_Cyrl_BA" => "Serbian (Cyrillic, Bosnia and Herzegovina)",
// "sr_Cyrl_ME" => "Serbian (Cyrillic, Montenegro)",
// "sr_Cyrl_RS" => "Serbian (Cyrillic, Serbia)",
// "sr_Latn" => "Serbian (Latin)",
// "sr_Latn_BA" => "Serbian (Latin, Bosnia and Herzegovina)",
// "sr_Latn_ME" => "Serbian (Latin, Montenegro)",
// "sr_Latn_RS" => "Serbian (Latin, Serbia)",
// "sr" => "Serbian",
// "sn_ZW" => "Shona (Zimbabwe)",
// "sn" => "Shona",
// "ii_CN" => "Sichuan Yi (China)",
// "ii" => "Sichuan Yi",
// "si_LK" => "Sinhala (Sri Lanka)",
// "si" => "Sinhala",
// "sk_SK" => "Slovak (Slovakia)",
// "sk" => "Slovak",
// "sl_SI" => "Slovenian (Slovenia)",
// "sl" => "Slovenian",
// "xog_UG" => "Soga (Uganda)",
// "xog" => "Soga",
// "so_DJ" => "Somali (Djibouti)",
// "so_ET" => "Somali (Ethiopia)",
// "so_KE" => "Somali (Kenya)",
// "so_SO" => "Somali (Somalia)",
// "so" => "Somali",
// "es_AR" => "Spanish (Argentina)",
// "es_BO" => "Spanish (Bolivia)",
// "es_CL" => "Spanish (Chile)",
// "es_CO" => "Spanish (Colombia)",
// "es_CR" => "Spanish (Costa Rica)",
// "es_DO" => "Spanish (Dominican Republic)",
// "es_EC" => "Spanish (Ecuador)",
// "es_SV" => "Spanish (El Salvador)",
// "es_GQ" => "Spanish (Equatorial Guinea)",
// "es_GT" => "Spanish (Guatemala)",
// "es_HN" => "Spanish (Honduras)",
// "es_419" => "Spanish (Latin America)",
// "es_MX" => "Spanish (Mexico)",
// "es_NI" => "Spanish (Nicaragua)",
// "es_PA" => "Spanish (Panama)",
// "es_PY" => "Spanish (Paraguay)",
// "es_PE" => "Spanish (Peru)",
// "es_PR" => "Spanish (Puerto Rico)",
// "es_ES" => "Spanish (Spain)",
// "es_US" => "Spanish (United States)",
// "es_UY" => "Spanish (Uruguay)",
// "es_VE" => "Spanish (Venezuela)",
// "es" => "Spanish",
// "sw_KE" => "Swahili (Kenya)",
// "sw_TZ" => "Swahili (Tanzania)",
// "sw" => "Swahili",
// "sv_FI" => "Swedish (Finland)",
// "sv_SE" => "Swedish (Sweden)",
// "sv" => "Swedish",
// "gsw_CH" => "Swiss German (Switzerland)",
// "gsw" => "Swiss German",
// "shi_Latn" => "Tachelhit (Latin)",
// "shi_Latn_MA" => "Tachelhit (Latin, Morocco)",
// "shi_Tfng" => "Tachelhit (Tifinagh)",
// "shi_Tfng_MA" => "Tachelhit (Tifinagh, Morocco)",
// "shi" => "Tachelhit",
// "dav_KE" => "Taita (Kenya)",
// "dav" => "Taita",
// "ta_IN" => "Tamil (India)",
// "ta_LK" => "Tamil (Sri Lanka)",
// "ta" => "Tamil",
// "te_IN" => "Telugu (India)",
// "te" => "Telugu",
// "teo_KE" => "Teso (Kenya)",
// "teo_UG" => "Teso (Uganda)",
// "teo" => "Teso",
// "th_TH" => "Thai (Thailand)",
// "th" => "Thai",
// "bo_CN" => "Tibetan (China)",
// "bo_IN" => "Tibetan (India)",
// "bo" => "Tibetan",
// "ti_ER" => "Tigrinya (Eritrea)",
// "ti_ET" => "Tigrinya (Ethiopia)",
// "ti" => "Tigrinya",
// "to_TO" => "Tonga (Tonga)",
// "to" => "Tonga",
// "tr_TR" => "Turkish (Turkey)",
// "tr" => "Turkish",
"tk" => "Turkmen",
// "uk_UA" => "Ukrainian (Ukraine)",
// "uk" => "Ukrainian",
// "ur_IN" => "Urdu (India)",
// "ur_PK" => "Urdu (Pakistan)",
// "ur" => "Urdu",
// "uz_Arab" => "Uzbek (Arabic)",
// "uz_Arab_AF" => "Uzbek (Arabic, Afghanistan)",
// "uz_Cyrl" => "Uzbek (Cyrillic)",
// "uz_Cyrl_UZ" => "Uzbek (Cyrillic, Uzbekistan)",
// "uz_Latn" => "Uzbek (Latin)",
// "uz_Latn_UZ" => "Uzbek (Latin, Uzbekistan)",
// "uz" => "Uzbek",
// "vi_VN" => "Vietnamese (Vietnam)",
// "vi" => "Vietnamese",
// "vun_TZ" => "Vunjo (Tanzania)",
// "vun" => "Vunjo",
// "cy_GB" => "Welsh (United Kingdom)",
// "cy" => "Welsh",
// "yo_NG" => "Yoruba (Nigeria)",
// "yo" => "Yoruba",
// "zu_ZA" => "Zulu (South Africa)",
// "zu" => "Zulu"
],
'view_namespaces' => [
'buttons' => [
'crud::buttons', // falls back to 'resources/views/vendor/backpack/crud/buttons'
],
'columns' => [
'crud::columns', // falls back to 'resources/views/vendor/backpack/crud/columns'
],
'fields' => [
'crud::fields', // falls back to 'resources/views/vendor/backpack/crud/fields'
],
'filters' => [
'crud::filters', // falls back to 'resources/views/vendor/backpack/crud/filters'
],
],
];

View File

@ -0,0 +1,42 @@
<?php
/**
* Configurations for Backpack's CreateOperation.
*
* @see https://backpackforlaravel.com/docs/crud-operation-create
*/
return [
// Define the size/looks of the content div for all CRUDs
// To override per view use $this->crud->setCreateContentClass('class-string')
'contentClass' => 'col-md-8 bold-labels',
// When using tabbed forms (create & update), what kind of tabs would you like?
'tabsType' => 'horizontal', //options: horizontal, vertical
// How would you like the validation errors to be shown?
'groupedErrors' => true,
'inlineErrors' => true,
// when the page loads, put the cursor on the first input?
'autoFocusOnFirstField' => true,
// Where do you want to redirect the user by default, save?
// options: save_and_back, save_and_edit, save_and_new
'defaultSaveAction' => 'save_and_back',
// When the user chooses "save and back" or "save and new", show a bubble
// for the fact that the default save action has been changed?
'showSaveActionChange' => true, //options: true, false
// Should we show a cancel button to the user?
'showCancelButton' => true,
// Should we warn a user before leaving the page with unsaved changes?
'warnBeforeLeaving' => false,
// Before saving the entry, how would you like the request to be stripped?
// - false - use Backpack's default (ONLY save inputs that have fields)
// - invokable class - custom stripping (the return should be an array with input names)
// 'strippedRequest' => App\Http\Requests\StripBackpackRequest::class,
];

View File

@ -0,0 +1,64 @@
<?php
/**
* Configurations for Backpack's ListOperation.
*
* @see https://backpackforlaravel.com/docs/crud-operation-list
*/
return [
// Define the size/looks of the content div for all CRUDs
// To override per view use $this->crud->setListContentClass('class-string')
'contentClass' => 'col-md-12',
// enable the datatables-responsive plugin, which hides columns if they don't fit?
// if not, a horizontal scrollbar will be shown instead
'responsiveTable' => true,
// stores pagination and filters in localStorage for two hours
// whenever the user tries to see that page, backpack loads the previous pagination and filtration
'persistentTable' => true,
// show search bar in the top-right corner?
'searchableTable' => true,
// the time the table will be persisted in minutes
// after this the table info is cleared from localStorage.
// use false to never force localStorage clear. (default)
// keep in mind: User can clear their localStorage whenever they want.
'persistentTableDuration' => false,
// How many items should be shown by default by the Datatable?
// This value can be overwritten on a specific CRUD by calling
// $this->crud->setDefaultPageLength(50);
'defaultPageLength' => 10,
// A 1D array of options which will be used for both the displayed option and the value, or
// A 2D array in which the first array is used to define the value options and the second array the displayed options
// If a 2D array is used, strings in the right hand array will be automatically run through trans()
'pageLengthMenu' => [[10, 25, 50, 100, -1], [10, 25, 50, 100, 'backpack::crud.all']],
// How important is it for the action buttons to be visible?
// - 0 - most important
// - 1 - as important as bulk buttons
// - 2-3 - more important than the rest of the columns
// - 4 - less important than most columns
'actionsColumnPriority' => 1,
// Show a "Reset" button next to the List operation subheading
// (Showing 1 to 25 of 9999 entries. Reset)
// that allows the user to erase local storage for that datatable,
// thus clearing any searching, filtering or pagination that has been
// remembered and persisted using persistentTable
'resetButton' => true,
// The query operator that is used to search on the table.
// If you are using PostgreSQL you might want to change
// to `ilike` for case-insensitive search
'searchOperator' => 'like',
// Display the `Showing X of XX entries (filtered from X entries)`?
// Setting this to false will improve performance on big datasets.
'showEntryCount' => true,
];

View File

@ -0,0 +1,13 @@
<?php
/**
* Configurations for Backpack's ReorderOperation.
*
* @see https://backpackforlaravel.com/docs/crud-operation-reorder
*/
return [
// Define the size/looks of the content div for all CRUDs
// To override per Controller use $this->crud->setReorderContentClass('class-string')
'contentClass' => 'col-md-8 col-md-offset-2',
];

View File

@ -0,0 +1,24 @@
<?php
/**
* Configurations for Backpack's ShowOperation.
*
* @see https://backpackforlaravel.com/docs/crud-operation-show
*/
return [
// Define the size/looks of the content div for all CRUDs
// To override per Controller use $this->crud->setShowContentClass('class-string')
'contentClass' => 'col-md-8',
// Automatically add all columns from the db table?
'setFromDb' => true,
// Automatically add created_at and updated_at columns, if model has timestamps?
'timestamps' => true,
// If model has SoftDeletes, allow the admin to access the Show page for
// soft deleted items & add a deleted_at column to ShowOperation?
'softDeletes' => false,
];

View File

@ -0,0 +1,42 @@
<?php
/**
* Configurations for Backpack's UpdateOperation.
*
* @see https://backpackforlaravel.com/docs/crud-operation-update
*/
return [
// Define the size/looks of the content div for all CRUDs
// To override per view use $this->crud->setEditContentClass('class-string')
'contentClass' => 'col-md-8 bold-labels',
// When using tabbed forms (create & update), what kind of tabs would you like?
'tabsType' => 'horizontal', //options: horizontal, vertical
// How would you like the validation errors to be shown?
'groupedErrors' => true,
'inlineErrors' => true,
// when the page loads, put the cursor on the first input?
'autoFocusOnFirstField' => true,
// Where do you want to redirect the user by default, save?
// options: save_and_back, save_and_edit, save_and_new
'defaultSaveAction' => 'save_and_back',
// When the user chooses "save and back" or "save and new", show a bubble
// for the fact that the default save action has been changed?
'showSaveActionChange' => true, //options: true, false
// Should we show a cancel button to the user?
'showCancelButton' => true,
// Should we warn a user before leaving the page with unsaved changes?
'warnBeforeLeaving' => false,
// Before saving the entry, how would you like the request to be stripped?
// - false - use Backpack's default (ONLY save inputs that have fields)
// - invokable class - custom stripping (the return should be an array with input names)
// 'strippedRequest' => App\Http\Requests\StripBackpackRequest::class,
];

34
config/gravatar.php Normal file
View File

@ -0,0 +1,34 @@
<?php
return [
'default' => [
// By default, images are presented at 80px by 80px if no size parameter is supplied.
// You may request a specific image size, which will be dynamically delivered from Gravatar
// by passing a single pixel dimension (since the images are square):
'size' => 80,
// the fallback image, can be a string or a url
// for more info, visit: http://en.gravatar.com/site/implement/images/#default-image
'fallback' => 'mp',
// would you like to return a https://... image
'secure' => false,
// Gravatar allows users to self-rate their images so that they can indicate if an image
// is appropriate for a certain audience. By default, only 'G' rated images are displayed
// unless you indicate that you would like to see higher ratings.
// Available options:
// g: suitable for display on all websites with any audience type.
// pg: may contain rude gestures, provocatively dressed individuals, the lesser swear words, or mild violence.
// r: may contain such things as harsh profanity, intense violence, nudity, or hard drug use.
// x: may contain hardcore sexual imagery or extremely disturbing violence.
'maximumRating' => 'g',
// If for some reason you wanted to force the default image to always load, you can do that setting this to true
'forceDefault' => false,
// If you require a file-type extension (some places do) then you may also add an (optional) .jpg extension to that URL
'forceExtension' => 'jpg',
]
];

View File

@ -0,0 +1,38 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddReorderToCategoriesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('categories', function (Blueprint $table) {
$table->integer('parent_id')->default(0)->nullable();
$table->integer('lft')->default(0);
$table->integer('rgt')->default(0);
$table->integer('depth')->default(0);
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('exports', function (Blueprint $table) {
$table->dropColumn('parent_id');
$table->dropColumn('lft');
$table->dropColumn('rgt');
$table->dropColumn('depth');
});
}
}

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

94
public/packages/URI.js/URI.min.js vendored Normal file
View File

@ -0,0 +1,94 @@
/*! URI.js v1.19.11 http://medialize.github.io/URI.js/ */
/* build contains: IPv6.js, punycode.js, SecondLevelDomains.js, URI.js, URITemplate.js */
(function(r,x){"object"===typeof module&&module.exports?module.exports=x():"function"===typeof define&&define.amd?define(x):r.IPv6=x(r)})(this,function(r){var x=r&&r.IPv6;return{best:function(k){k=k.toLowerCase().split(":");var m=k.length,d=8;""===k[0]&&""===k[1]&&""===k[2]?(k.shift(),k.shift()):""===k[0]&&""===k[1]?k.shift():""===k[m-1]&&""===k[m-2]&&k.pop();m=k.length;-1!==k[m-1].indexOf(".")&&(d=7);var q;for(q=0;q<m&&""!==k[q];q++);if(q<d)for(k.splice(q,1,"0000");k.length<d;)k.splice(q,0,"0000");
for(q=0;q<d;q++){m=k[q].split("");for(var E=0;3>E;E++)if("0"===m[0]&&1<m.length)m.splice(0,1);else break;k[q]=m.join("")}m=-1;var A=E=0,h=-1,p=!1;for(q=0;q<d;q++)p?"0"===k[q]?A+=1:(p=!1,A>E&&(m=h,E=A)):"0"===k[q]&&(p=!0,h=q,A=1);A>E&&(m=h,E=A);1<E&&k.splice(m,E,"");m=k.length;d="";""===k[0]&&(d=":");for(q=0;q<m;q++){d+=k[q];if(q===m-1)break;d+=":"}""===k[m-1]&&(d+=":");return d},noConflict:function(){r.IPv6===this&&(r.IPv6=x);return this}}});
(function(r){function x(l){throw new RangeError(H[l]);}function k(l,t){for(var C=l.length,y=[];C--;)y[C]=t(l[C]);return y}function m(l,t){var C=l.split("@"),y="";1<C.length&&(y=C[0]+"@",l=C[1]);l=l.replace(w,".");C=l.split(".");C=k(C,t).join(".");return y+C}function d(l){for(var t=[],C=0,y=l.length,J,M;C<y;)J=l.charCodeAt(C++),55296<=J&&56319>=J&&C<y?(M=l.charCodeAt(C++),56320==(M&64512)?t.push(((J&1023)<<10)+(M&1023)+65536):(t.push(J),C--)):t.push(J);return t}function q(l){return k(l,function(t){var C=
"";65535<t&&(t-=65536,C+=g(t>>>10&1023|55296),t=56320|t&1023);return C+=g(t)}).join("")}function E(l,t,C){var y=0;l=C?v(l/700):l>>1;for(l+=v(l/t);455<l;y+=36)l=v(l/35);return v(y+36*l/(l+38))}function A(l){var t=[],C=l.length,y=0,J=128,M=72,a,b;var c=l.lastIndexOf("-");0>c&&(c=0);for(a=0;a<c;++a)128<=l.charCodeAt(a)&&x("not-basic"),t.push(l.charCodeAt(a));for(c=0<c?c+1:0;c<C;){a=y;var e=1;for(b=36;;b+=36){c>=C&&x("invalid-input");var f=l.charCodeAt(c++);f=10>f-48?f-22:26>f-65?f-65:26>f-97?f-97:36;
(36<=f||f>v((2147483647-y)/e))&&x("overflow");y+=f*e;var n=b<=M?1:b>=M+26?26:b-M;if(f<n)break;f=36-n;e>v(2147483647/f)&&x("overflow");e*=f}e=t.length+1;M=E(y-a,e,0==a);v(y/e)>2147483647-J&&x("overflow");J+=v(y/e);y%=e;t.splice(y++,0,J)}return q(t)}function h(l){var t,C,y,J=[];l=d(l);var M=l.length;var a=128;var b=0;var c=72;for(y=0;y<M;++y){var e=l[y];128>e&&J.push(g(e))}for((t=C=J.length)&&J.push("-");t<M;){var f=2147483647;for(y=0;y<M;++y)e=l[y],e>=a&&e<f&&(f=e);var n=t+1;f-a>v((2147483647-b)/n)&&
x("overflow");b+=(f-a)*n;a=f;for(y=0;y<M;++y)if(e=l[y],e<a&&2147483647<++b&&x("overflow"),e==a){var z=b;for(f=36;;f+=36){e=f<=c?1:f>=c+26?26:f-c;if(z<e)break;var I=z-e;z=36-e;var L=J;e+=I%z;L.push.call(L,g(e+22+75*(26>e)-0));z=v(I/z)}J.push(g(z+22+75*(26>z)-0));c=E(b,n,t==C);b=0;++t}++b;++a}return J.join("")}var p="object"==typeof exports&&exports&&!exports.nodeType&&exports,D="object"==typeof module&&module&&!module.nodeType&&module,u="object"==typeof global&&global;if(u.global===u||u.window===u||
u.self===u)r=u;var K=/^xn--/,F=/[^\x20-\x7E]/,w=/[\x2E\u3002\uFF0E\uFF61]/g,H={overflow:"Overflow: input needs wider integers to process","not-basic":"Illegal input >= 0x80 (not a basic code point)","invalid-input":"Invalid input"},v=Math.floor,g=String.fromCharCode,B;var G={version:"1.3.2",ucs2:{decode:d,encode:q},decode:A,encode:h,toASCII:function(l){return m(l,function(t){return F.test(t)?"xn--"+h(t):t})},toUnicode:function(l){return m(l,function(t){return K.test(t)?A(t.slice(4).toLowerCase()):
t})}};if("function"==typeof define&&"object"==typeof define.amd&&define.amd)define("punycode",function(){return G});else if(p&&D)if(module.exports==p)D.exports=G;else for(B in G)G.hasOwnProperty(B)&&(p[B]=G[B]);else r.punycode=G})(this);
(function(r,x){"object"===typeof module&&module.exports?module.exports=x():"function"===typeof define&&define.amd?define(x):r.SecondLevelDomains=x(r)})(this,function(r){var x=r&&r.SecondLevelDomains,k={list:{ac:" com gov mil net org ",ae:" ac co gov mil name net org pro sch ",af:" com edu gov net org ",al:" com edu gov mil net org ",ao:" co ed gv it og pb ",ar:" com edu gob gov int mil net org tur ",at:" ac co gv or ",au:" asn com csiro edu gov id net org ",ba:" co com edu gov mil net org rs unbi unmo unsa untz unze ",
bb:" biz co com edu gov info net org store tv ",bh:" biz cc com edu gov info net org ",bn:" com edu gov net org ",bo:" com edu gob gov int mil net org tv ",br:" adm adv agr am arq art ato b bio blog bmd cim cng cnt com coop ecn edu eng esp etc eti far flog fm fnd fot fst g12 ggf gov imb ind inf jor jus lel mat med mil mus net nom not ntr odo org ppg pro psc psi qsl rec slg srv tmp trd tur tv vet vlog wiki zlg ",bs:" com edu gov net org ",bz:" du et om ov rg ",ca:" ab bc mb nb nf nl ns nt nu on pe qc sk yk ",
ck:" biz co edu gen gov info net org ",cn:" ac ah bj com cq edu fj gd gov gs gx gz ha hb he hi hl hn jl js jx ln mil net nm nx org qh sc sd sh sn sx tj tw xj xz yn zj ",co:" com edu gov mil net nom org ",cr:" ac c co ed fi go or sa ",cy:" ac biz com ekloges gov ltd name net org parliament press pro tm ","do":" art com edu gob gov mil net org sld web ",dz:" art asso com edu gov net org pol ",ec:" com edu fin gov info med mil net org pro ",eg:" com edu eun gov mil name net org sci ",er:" com edu gov ind mil net org rochest w ",
es:" com edu gob nom org ",et:" biz com edu gov info name net org ",fj:" ac biz com info mil name net org pro ",fk:" ac co gov net nom org ",fr:" asso com f gouv nom prd presse tm ",gg:" co net org ",gh:" com edu gov mil org ",gn:" ac com gov net org ",gr:" com edu gov mil net org ",gt:" com edu gob ind mil net org ",gu:" com edu gov net org ",hk:" com edu gov idv net org ",hu:" 2000 agrar bolt casino city co erotica erotika film forum games hotel info ingatlan jogasz konyvelo lakas media news org priv reklam sex shop sport suli szex tm tozsde utazas video ",
id:" ac co go mil net or sch web ",il:" ac co gov idf k12 muni net org ","in":" ac co edu ernet firm gen gov i ind mil net nic org res ",iq:" com edu gov i mil net org ",ir:" ac co dnssec gov i id net org sch ",it:" edu gov ",je:" co net org ",jo:" com edu gov mil name net org sch ",jp:" ac ad co ed go gr lg ne or ",ke:" ac co go info me mobi ne or sc ",kh:" com edu gov mil net org per ",ki:" biz com de edu gov info mob net org tel ",km:" asso com coop edu gouv k medecin mil nom notaires pharmaciens presse tm veterinaire ",
kn:" edu gov net org ",kr:" ac busan chungbuk chungnam co daegu daejeon es gangwon go gwangju gyeongbuk gyeonggi gyeongnam hs incheon jeju jeonbuk jeonnam k kg mil ms ne or pe re sc seoul ulsan ",kw:" com edu gov net org ",ky:" com edu gov net org ",kz:" com edu gov mil net org ",lb:" com edu gov net org ",lk:" assn com edu gov grp hotel int ltd net ngo org sch soc web ",lr:" com edu gov net org ",lv:" asn com conf edu gov id mil net org ",ly:" com edu gov id med net org plc sch ",ma:" ac co gov m net org press ",
mc:" asso tm ",me:" ac co edu gov its net org priv ",mg:" com edu gov mil nom org prd tm ",mk:" com edu gov inf name net org pro ",ml:" com edu gov net org presse ",mn:" edu gov org ",mo:" com edu gov net org ",mt:" com edu gov net org ",mv:" aero biz com coop edu gov info int mil museum name net org pro ",mw:" ac co com coop edu gov int museum net org ",mx:" com edu gob net org ",my:" com edu gov mil name net org sch ",nf:" arts com firm info net other per rec store web ",ng:" biz com edu gov mil mobi name net org sch ",
ni:" ac co com edu gob mil net nom org ",np:" com edu gov mil net org ",nr:" biz com edu gov info net org ",om:" ac biz co com edu gov med mil museum net org pro sch ",pe:" com edu gob mil net nom org sld ",ph:" com edu gov i mil net ngo org ",pk:" biz com edu fam gob gok gon gop gos gov net org web ",pl:" art bialystok biz com edu gda gdansk gorzow gov info katowice krakow lodz lublin mil net ngo olsztyn org poznan pwr radom slupsk szczecin torun warszawa waw wroc wroclaw zgora ",pr:" ac biz com edu est gov info isla name net org pro prof ",
ps:" com edu gov net org plo sec ",pw:" belau co ed go ne or ",ro:" arts com firm info nom nt org rec store tm www ",rs:" ac co edu gov in org ",sb:" com edu gov net org ",sc:" com edu gov net org ",sh:" co com edu gov net nom org ",sl:" com edu gov net org ",st:" co com consulado edu embaixada gov mil net org principe saotome store ",sv:" com edu gob org red ",sz:" ac co org ",tr:" av bbs bel biz com dr edu gen gov info k12 name net org pol tel tsk tv web ",tt:" aero biz cat co com coop edu gov info int jobs mil mobi museum name net org pro tel travel ",
tw:" club com ebiz edu game gov idv mil net org ",mu:" ac co com gov net or org ",mz:" ac co edu gov org ",na:" co com ",nz:" ac co cri geek gen govt health iwi maori mil net org parliament school ",pa:" abo ac com edu gob ing med net nom org sld ",pt:" com edu gov int net nome org publ ",py:" com edu gov mil net org ",qa:" com edu gov mil net org ",re:" asso com nom ",ru:" ac adygeya altai amur arkhangelsk astrakhan bashkiria belgorod bir bryansk buryatia cbg chel chelyabinsk chita chukotka chuvashia com dagestan e-burg edu gov grozny int irkutsk ivanovo izhevsk jar joshkar-ola kalmykia kaluga kamchatka karelia kazan kchr kemerovo khabarovsk khakassia khv kirov koenig komi kostroma kranoyarsk kuban kurgan kursk lipetsk magadan mari mari-el marine mil mordovia mosreg msk murmansk nalchik net nnov nov novosibirsk nsk omsk orenburg org oryol penza perm pp pskov ptz rnd ryazan sakhalin samara saratov simbirsk smolensk spb stavropol stv surgut tambov tatarstan tom tomsk tsaritsyn tsk tula tuva tver tyumen udm udmurtia ulan-ude vladikavkaz vladimir vladivostok volgograd vologda voronezh vrn vyatka yakutia yamal yekaterinburg yuzhno-sakhalinsk ",
rw:" ac co com edu gouv gov int mil net ",sa:" com edu gov med net org pub sch ",sd:" com edu gov info med net org tv ",se:" a ac b bd c d e f g h i k l m n o org p parti pp press r s t tm u w x y z ",sg:" com edu gov idn net org per ",sn:" art com edu gouv org perso univ ",sy:" com edu gov mil net news org ",th:" ac co go in mi net or ",tj:" ac biz co com edu go gov info int mil name net nic org test web ",tn:" agrinet com defense edunet ens fin gov ind info intl mincom nat net org perso rnrt rns rnu tourism ",
tz:" ac co go ne or ",ua:" biz cherkassy chernigov chernovtsy ck cn co com crimea cv dn dnepropetrovsk donetsk dp edu gov if in ivano-frankivsk kh kharkov kherson khmelnitskiy kiev kirovograd km kr ks kv lg lugansk lutsk lviv me mk net nikolaev od odessa org pl poltava pp rovno rv sebastopol sumy te ternopil uzhgorod vinnica vn zaporizhzhe zhitomir zp zt ",ug:" ac co go ne or org sc ",uk:" ac bl british-library co cym gov govt icnet jet lea ltd me mil mod national-library-scotland nel net nhs nic nls org orgn parliament plc police sch scot soc ",
us:" dni fed isa kids nsn ",uy:" com edu gub mil net org ",ve:" co com edu gob info mil net org web ",vi:" co com k12 net org ",vn:" ac biz com edu gov health info int name net org pro ",ye:" co com gov ltd me net org plc ",yu:" ac co edu gov org ",za:" ac agric alt bourse city co cybernet db edu gov grondar iaccess imt inca landesign law mil net ngo nis nom olivetti org pix school tm web ",zm:" ac co com edu gov net org sch ",com:"ar br cn de eu gb gr hu jpn kr no qc ru sa se uk us uy za ",net:"gb jp se uk ",
org:"ae",de:"com "},has:function(m){var d=m.lastIndexOf(".");if(0>=d||d>=m.length-1)return!1;var q=m.lastIndexOf(".",d-1);if(0>=q||q>=d-1)return!1;var E=k.list[m.slice(d+1)];return E?0<=E.indexOf(" "+m.slice(q+1,d)+" "):!1},is:function(m){var d=m.lastIndexOf(".");if(0>=d||d>=m.length-1||0<=m.lastIndexOf(".",d-1))return!1;var q=k.list[m.slice(d+1)];return q?0<=q.indexOf(" "+m.slice(0,d)+" "):!1},get:function(m){var d=m.lastIndexOf(".");if(0>=d||d>=m.length-1)return null;var q=m.lastIndexOf(".",d-1);
if(0>=q||q>=d-1)return null;var E=k.list[m.slice(d+1)];return!E||0>E.indexOf(" "+m.slice(q+1,d)+" ")?null:m.slice(q+1)},noConflict:function(){r.SecondLevelDomains===this&&(r.SecondLevelDomains=x);return this}};return k});
(function(r,x){"object"===typeof module&&module.exports?module.exports=x(require("./punycode"),require("./IPv6"),require("./SecondLevelDomains")):"function"===typeof define&&define.amd?define(["./punycode","./IPv6","./SecondLevelDomains"],x):r.URI=x(r.punycode,r.IPv6,r.SecondLevelDomains,r)})(this,function(r,x,k,m){function d(a,b){var c=1<=arguments.length,e=2<=arguments.length;if(!(this instanceof d))return c?e?new d(a,b):new d(a):new d;if(void 0===a){if(c)throw new TypeError("undefined is not a valid argument for URI");
a="undefined"!==typeof location?location.href+"":""}if(null===a&&c)throw new TypeError("null is not a valid argument for URI");this.href(a);return void 0!==b?this.absoluteTo(b):this}function q(a){return a.replace(/([.*+?^=!:${}()|[\]\/\\])/g,"\\$1")}function E(a){return void 0===a?"Undefined":String(Object.prototype.toString.call(a)).slice(8,-1)}function A(a){return"Array"===E(a)}function h(a,b){var c={},e;if("RegExp"===E(b))c=null;else if(A(b)){var f=0;for(e=b.length;f<e;f++)c[b[f]]=!0}else c[b]=
!0;f=0;for(e=a.length;f<e;f++)if(c&&void 0!==c[a[f]]||!c&&b.test(a[f]))a.splice(f,1),e--,f--;return a}function p(a,b){var c;if(A(b)){var e=0;for(c=b.length;e<c;e++)if(!p(a,b[e]))return!1;return!0}var f=E(b);e=0;for(c=a.length;e<c;e++)if("RegExp"===f){if("string"===typeof a[e]&&a[e].match(b))return!0}else if(a[e]===b)return!0;return!1}function D(a,b){if(!A(a)||!A(b)||a.length!==b.length)return!1;a.sort();b.sort();for(var c=0,e=a.length;c<e;c++)if(a[c]!==b[c])return!1;return!0}function u(a){return a.replace(/^\/+|\/+$/g,
"")}function K(a){return escape(a)}function F(a){return encodeURIComponent(a).replace(/[!'()*]/g,K).replace(/\*/g,"%2A")}function w(a){return function(b,c){if(void 0===b)return this._parts[a]||"";this._parts[a]=b||null;this.build(!c);return this}}function H(a,b){return function(c,e){if(void 0===c)return this._parts[a]||"";null!==c&&(c+="",c.charAt(0)===b&&(c=c.substring(1)));this._parts[a]=c;this.build(!e);return this}}var v=m&&m.URI;d.version="1.19.11";var g=d.prototype,B=Object.prototype.hasOwnProperty;
d._parts=function(){return{protocol:null,username:null,password:null,hostname:null,urn:null,port:null,path:null,query:null,fragment:null,preventInvalidHostname:d.preventInvalidHostname,duplicateQueryParameters:d.duplicateQueryParameters,escapeQuerySpace:d.escapeQuerySpace}};d.preventInvalidHostname=!1;d.duplicateQueryParameters=!1;d.escapeQuerySpace=!0;d.protocol_expression=/^[a-z][a-z0-9.+-]*$/i;d.idn_expression=/[^a-z0-9\._-]/i;d.punycode_expression=/(xn--)/i;d.ip4_expression=/^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/;
d.ip6_expression=/^\s*((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){5}(((:[0-9A-Fa-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){4}(((:[0-9A-Fa-f]{1,4}){1,3})|((:[0-9A-Fa-f]{1,4})?:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){3}(((:[0-9A-Fa-f]{1,4}){1,4})|((:[0-9A-Fa-f]{1,4}){0,2}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){2}(((:[0-9A-Fa-f]{1,4}){1,5})|((:[0-9A-Fa-f]{1,4}){0,3}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){1}(((:[0-9A-Fa-f]{1,4}){1,6})|((:[0-9A-Fa-f]{1,4}){0,4}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(:(((:[0-9A-Fa-f]{1,4}){1,7})|((:[0-9A-Fa-f]{1,4}){0,5}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:)))(%.+)?\s*$/;
d.find_uri_expression=/\b((?:[a-z][\w-]+:(?:\/{1,3}|[a-z0-9%])|www\d{0,3}[.]|[a-z0-9.\-]+[.][a-z]{2,4}\/)(?:[^\s()<>]+|\(([^\s()<>]+|(\([^\s()<>]+\)))*\))+(?:\(([^\s()<>]+|(\([^\s()<>]+\)))*\)|[^\s`!()\[\]{};:'".,<>?\u00ab\u00bb\u201c\u201d\u2018\u2019]))/ig;d.findUri={start:/\b(?:([a-z][a-z0-9.+-]*:\/\/)|www\.)/gi,end:/[\s\r\n]|$/,trim:/[`!()\[\]{};:'".,<>?\u00ab\u00bb\u201c\u201d\u201e\u2018\u2019]+$/,parens:/(\([^\)]*\)|\[[^\]]*\]|\{[^}]*\}|<[^>]*>)/g};d.leading_whitespace_expression=/^[\x00-\x20\u00a0\u1680\u2000-\u200a\u2028\u2029\u202f\u205f\u3000\ufeff]+/;
d.ascii_tab_whitespace=/[\u0009\u000A\u000D]+/g;d.defaultPorts={http:"80",https:"443",ftp:"21",gopher:"70",ws:"80",wss:"443"};d.hostProtocols=["http","https"];d.invalid_hostname_characters=/[^a-zA-Z0-9\.\-:_]/;d.domAttributes={a:"href",blockquote:"cite",link:"href",base:"href",script:"src",form:"action",img:"src",area:"href",iframe:"src",embed:"src",source:"src",track:"src",input:"src",audio:"src",video:"src"};d.getDomAttribute=function(a){if(a&&a.nodeName){var b=a.nodeName.toLowerCase();if("input"!==
b||"image"===a.type)return d.domAttributes[b]}};d.encode=F;d.decode=decodeURIComponent;d.iso8859=function(){d.encode=escape;d.decode=unescape};d.unicode=function(){d.encode=F;d.decode=decodeURIComponent};d.characters={pathname:{encode:{expression:/%(24|26|2B|2C|3B|3D|3A|40)/ig,map:{"%24":"$","%26":"&","%2B":"+","%2C":",","%3B":";","%3D":"=","%3A":":","%40":"@"}},decode:{expression:/[\/\?#]/g,map:{"/":"%2F","?":"%3F","#":"%23"}}},reserved:{encode:{expression:/%(21|23|24|26|27|28|29|2A|2B|2C|2F|3A|3B|3D|3F|40|5B|5D)/ig,
map:{"%3A":":","%2F":"/","%3F":"?","%23":"#","%5B":"[","%5D":"]","%40":"@","%21":"!","%24":"$","%26":"&","%27":"'","%28":"(","%29":")","%2A":"*","%2B":"+","%2C":",","%3B":";","%3D":"="}}},urnpath:{encode:{expression:/%(21|24|27|28|29|2A|2B|2C|3B|3D|40)/ig,map:{"%21":"!","%24":"$","%27":"'","%28":"(","%29":")","%2A":"*","%2B":"+","%2C":",","%3B":";","%3D":"=","%40":"@"}},decode:{expression:/[\/\?#:]/g,map:{"/":"%2F","?":"%3F","#":"%23",":":"%3A"}}}};d.encodeQuery=function(a,b){var c=d.encode(a+"");
void 0===b&&(b=d.escapeQuerySpace);return b?c.replace(/%20/g,"+"):c};d.decodeQuery=function(a,b){a+="";void 0===b&&(b=d.escapeQuerySpace);try{return d.decode(b?a.replace(/\+/g,"%20"):a)}catch(c){return a}};var G={encode:"encode",decode:"decode"},l,t=function(a,b){return function(c){try{return d[b](c+"").replace(d.characters[a][b].expression,function(e){return d.characters[a][b].map[e]})}catch(e){return c}}};for(l in G)d[l+"PathSegment"]=t("pathname",G[l]),d[l+"UrnPathSegment"]=t("urnpath",G[l]);G=
function(a,b,c){return function(e){var f=c?function(I){return d[b](d[c](I))}:d[b];e=(e+"").split(a);for(var n=0,z=e.length;n<z;n++)e[n]=f(e[n]);return e.join(a)}};d.decodePath=G("/","decodePathSegment");d.decodeUrnPath=G(":","decodeUrnPathSegment");d.recodePath=G("/","encodePathSegment","decode");d.recodeUrnPath=G(":","encodeUrnPathSegment","decode");d.encodeReserved=t("reserved","encode");d.parse=function(a,b){b||(b={preventInvalidHostname:d.preventInvalidHostname});a=a.replace(d.leading_whitespace_expression,
"");a=a.replace(d.ascii_tab_whitespace,"");var c=a.indexOf("#");-1<c&&(b.fragment=a.substring(c+1)||null,a=a.substring(0,c));c=a.indexOf("?");-1<c&&(b.query=a.substring(c+1)||null,a=a.substring(0,c));a=a.replace(/^(https?|ftp|wss?)?:+[/\\]*/i,"$1://");a=a.replace(/^[/\\]{2,}/i,"//");"//"===a.substring(0,2)?(b.protocol=null,a=a.substring(2),a=d.parseAuthority(a,b)):(c=a.indexOf(":"),-1<c&&(b.protocol=a.substring(0,c)||null,b.protocol&&!b.protocol.match(d.protocol_expression)?b.protocol=void 0:"//"===
a.substring(c+1,c+3).replace(/\\/g,"/")?(a=a.substring(c+3),a=d.parseAuthority(a,b)):(a=a.substring(c+1),b.urn=!0)));b.path=a;return b};d.parseHost=function(a,b){a||(a="");a=a.replace(/\\/g,"/");var c=a.indexOf("/");-1===c&&(c=a.length);if("["===a.charAt(0)){var e=a.indexOf("]");b.hostname=a.substring(1,e)||null;b.port=a.substring(e+2,c)||null;"/"===b.port&&(b.port=null)}else{var f=a.indexOf(":");e=a.indexOf("/");f=a.indexOf(":",f+1);-1!==f&&(-1===e||f<e)?(b.hostname=a.substring(0,c)||null,b.port=
null):(e=a.substring(0,c).split(":"),b.hostname=e[0]||null,b.port=e[1]||null)}b.hostname&&"/"!==a.substring(c).charAt(0)&&(c++,a="/"+a);b.preventInvalidHostname&&d.ensureValidHostname(b.hostname,b.protocol);b.port&&d.ensureValidPort(b.port);return a.substring(c)||"/"};d.parseAuthority=function(a,b){a=d.parseUserinfo(a,b);return d.parseHost(a,b)};d.parseUserinfo=function(a,b){var c=a;-1!==a.indexOf("\\")&&(a=a.replace(/\\/g,"/"));var e=a.indexOf("/"),f=a.lastIndexOf("@",-1<e?e:a.length-1);-1<f&&(-1===
e||f<e)?(e=a.substring(0,f).split(":"),b.username=e[0]?d.decode(e[0]):null,e.shift(),b.password=e[0]?d.decode(e.join(":")):null,a=c.substring(f+1)):(b.username=null,b.password=null);return a};d.parseQuery=function(a,b){if(!a)return{};a=a.replace(/&+/g,"&").replace(/^\?*&*|&+$/g,"");if(!a)return{};for(var c={},e=a.split("&"),f=e.length,n,z,I=0;I<f;I++)if(n=e[I].split("="),z=d.decodeQuery(n.shift(),b),n=n.length?d.decodeQuery(n.join("="),b):null,"__proto__"!==z)if(B.call(c,z)){if("string"===typeof c[z]||
null===c[z])c[z]=[c[z]];c[z].push(n)}else c[z]=n;return c};d.build=function(a){var b="",c=!1;a.protocol&&(b+=a.protocol+":");a.urn||!b&&!a.hostname||(b+="//",c=!0);b+=d.buildAuthority(a)||"";"string"===typeof a.path&&("/"!==a.path.charAt(0)&&c&&(b+="/"),b+=a.path);"string"===typeof a.query&&a.query&&(b+="?"+a.query);"string"===typeof a.fragment&&a.fragment&&(b+="#"+a.fragment);return b};d.buildHost=function(a){var b="";if(a.hostname)b=d.ip6_expression.test(a.hostname)?b+("["+a.hostname+"]"):b+a.hostname;
else return"";a.port&&(b+=":"+a.port);return b};d.buildAuthority=function(a){return d.buildUserinfo(a)+d.buildHost(a)};d.buildUserinfo=function(a){var b="";a.username&&(b+=d.encode(a.username));a.password&&(b+=":"+d.encode(a.password));b&&(b+="@");return b};d.buildQuery=function(a,b,c){var e="",f,n;for(f in a)if("__proto__"!==f&&B.call(a,f))if(A(a[f])){var z={};var I=0;for(n=a[f].length;I<n;I++)void 0!==a[f][I]&&void 0===z[a[f][I]+""]&&(e+="&"+d.buildQueryParameter(f,a[f][I],c),!0!==b&&(z[a[f][I]+
""]=!0))}else void 0!==a[f]&&(e+="&"+d.buildQueryParameter(f,a[f],c));return e.substring(1)};d.buildQueryParameter=function(a,b,c){return d.encodeQuery(a,c)+(null!==b?"="+d.encodeQuery(b,c):"")};d.addQuery=function(a,b,c){if("object"===typeof b)for(var e in b)B.call(b,e)&&d.addQuery(a,e,b[e]);else if("string"===typeof b)void 0===a[b]?a[b]=c:("string"===typeof a[b]&&(a[b]=[a[b]]),A(c)||(c=[c]),a[b]=(a[b]||[]).concat(c));else throw new TypeError("URI.addQuery() accepts an object, string as the name parameter");
};d.setQuery=function(a,b,c){if("object"===typeof b)for(var e in b)B.call(b,e)&&d.setQuery(a,e,b[e]);else if("string"===typeof b)a[b]=void 0===c?null:c;else throw new TypeError("URI.setQuery() accepts an object, string as the name parameter");};d.removeQuery=function(a,b,c){var e;if(A(b))for(c=0,e=b.length;c<e;c++)a[b[c]]=void 0;else if("RegExp"===E(b))for(e in a)b.test(e)&&(a[e]=void 0);else if("object"===typeof b)for(e in b)B.call(b,e)&&d.removeQuery(a,e,b[e]);else if("string"===typeof b)void 0!==
c?"RegExp"===E(c)?!A(a[b])&&c.test(a[b])?a[b]=void 0:a[b]=h(a[b],c):a[b]!==String(c)||A(c)&&1!==c.length?A(a[b])&&(a[b]=h(a[b],c)):a[b]=void 0:a[b]=void 0;else throw new TypeError("URI.removeQuery() accepts an object, string, RegExp as the first parameter");};d.hasQuery=function(a,b,c,e){switch(E(b)){case "String":break;case "RegExp":for(var f in a)if(B.call(a,f)&&b.test(f)&&(void 0===c||d.hasQuery(a,f,c)))return!0;return!1;case "Object":for(var n in b)if(B.call(b,n)&&!d.hasQuery(a,n,b[n]))return!1;
return!0;default:throw new TypeError("URI.hasQuery() accepts a string, regular expression or object as the name parameter");}switch(E(c)){case "Undefined":return b in a;case "Boolean":return a=!(A(a[b])?!a[b].length:!a[b]),c===a;case "Function":return!!c(a[b],b,a);case "Array":return A(a[b])?(e?p:D)(a[b],c):!1;case "RegExp":return A(a[b])?e?p(a[b],c):!1:!(!a[b]||!a[b].match(c));case "Number":c=String(c);case "String":return A(a[b])?e?p(a[b],c):!1:a[b]===c;default:throw new TypeError("URI.hasQuery() accepts undefined, boolean, string, number, RegExp, Function as the value parameter");
}};d.joinPaths=function(){for(var a=[],b=[],c=0,e=0;e<arguments.length;e++){var f=new d(arguments[e]);a.push(f);f=f.segment();for(var n=0;n<f.length;n++)"string"===typeof f[n]&&b.push(f[n]),f[n]&&c++}if(!b.length||!c)return new d("");b=(new d("")).segment(b);""!==a[0].path()&&"/"!==a[0].path().slice(0,1)||b.path("/"+b.path());return b.normalize()};d.commonPath=function(a,b){var c=Math.min(a.length,b.length),e;for(e=0;e<c;e++)if(a.charAt(e)!==b.charAt(e)){e--;break}if(1>e)return a.charAt(0)===b.charAt(0)&&
"/"===a.charAt(0)?"/":"";if("/"!==a.charAt(e)||"/"!==b.charAt(e))e=a.substring(0,e).lastIndexOf("/");return a.substring(0,e+1)};d.withinString=function(a,b,c){c||(c={});var e=c.start||d.findUri.start,f=c.end||d.findUri.end,n=c.trim||d.findUri.trim,z=c.parens||d.findUri.parens,I=/[a-z0-9-]=["']?$/i;for(e.lastIndex=0;;){var L=e.exec(a);if(!L)break;var P=L.index;if(c.ignoreHtml){var N=a.slice(Math.max(P-3,0),P);if(N&&I.test(N))continue}var O=P+a.slice(P).search(f);N=a.slice(P,O);for(O=-1;;){var Q=z.exec(N);
if(!Q)break;O=Math.max(O,Q.index+Q[0].length)}N=-1<O?N.slice(0,O)+N.slice(O).replace(n,""):N.replace(n,"");N.length<=L[0].length||c.ignore&&c.ignore.test(N)||(O=P+N.length,L=b(N,P,O,a),void 0===L?e.lastIndex=O:(L=String(L),a=a.slice(0,P)+L+a.slice(O),e.lastIndex=P+L.length))}e.lastIndex=0;return a};d.ensureValidHostname=function(a,b){var c=!!a,e=!1;b&&(e=p(d.hostProtocols,b));if(e&&!c)throw new TypeError("Hostname cannot be empty, if protocol is "+b);if(a&&a.match(d.invalid_hostname_characters)){if(!r)throw new TypeError('Hostname "'+
a+'" contains characters other than [A-Z0-9.-:_] and Punycode.js is not available');if(r.toASCII(a).match(d.invalid_hostname_characters))throw new TypeError('Hostname "'+a+'" contains characters other than [A-Z0-9.-:_]');}};d.ensureValidPort=function(a){if(a){var b=Number(a);if(!(/^[0-9]+$/.test(b)&&0<b&&65536>b))throw new TypeError('Port "'+a+'" is not a valid port');}};d.noConflict=function(a){if(a)return a={URI:this.noConflict()},m.URITemplate&&"function"===typeof m.URITemplate.noConflict&&(a.URITemplate=
m.URITemplate.noConflict()),m.IPv6&&"function"===typeof m.IPv6.noConflict&&(a.IPv6=m.IPv6.noConflict()),m.SecondLevelDomains&&"function"===typeof m.SecondLevelDomains.noConflict&&(a.SecondLevelDomains=m.SecondLevelDomains.noConflict()),a;m.URI===this&&(m.URI=v);return this};g.build=function(a){if(!0===a)this._deferred_build=!0;else if(void 0===a||this._deferred_build)this._string=d.build(this._parts),this._deferred_build=!1;return this};g.clone=function(){return new d(this)};g.valueOf=g.toString=
function(){return this.build(!1)._string};g.protocol=w("protocol");g.username=w("username");g.password=w("password");g.hostname=w("hostname");g.port=w("port");g.query=H("query","?");g.fragment=H("fragment","#");g.search=function(a,b){var c=this.query(a,b);return"string"===typeof c&&c.length?"?"+c:c};g.hash=function(a,b){var c=this.fragment(a,b);return"string"===typeof c&&c.length?"#"+c:c};g.pathname=function(a,b){if(void 0===a||!0===a){var c=this._parts.path||(this._parts.hostname?"/":"");return a?
(this._parts.urn?d.decodeUrnPath:d.decodePath)(c):c}this._parts.path=this._parts.urn?a?d.recodeUrnPath(a):"":a?d.recodePath(a):"/";this.build(!b);return this};g.path=g.pathname;g.href=function(a,b){var c;if(void 0===a)return this.toString();this._string="";this._parts=d._parts();var e=a instanceof d,f="object"===typeof a&&(a.hostname||a.path||a.pathname);a.nodeName&&(f=d.getDomAttribute(a),a=a[f]||"",f=!1);!e&&f&&void 0!==a.pathname&&(a=a.toString());if("string"===typeof a||a instanceof String)this._parts=
d.parse(String(a),this._parts);else if(e||f){e=e?a._parts:a;for(c in e)"query"!==c&&B.call(this._parts,c)&&(this._parts[c]=e[c]);e.query&&this.query(e.query,!1)}else throw new TypeError("invalid input");this.build(!b);return this};g.is=function(a){var b=!1,c=!1,e=!1,f=!1,n=!1,z=!1,I=!1,L=!this._parts.urn;this._parts.hostname&&(L=!1,c=d.ip4_expression.test(this._parts.hostname),e=d.ip6_expression.test(this._parts.hostname),b=c||e,n=(f=!b)&&k&&k.has(this._parts.hostname),z=f&&d.idn_expression.test(this._parts.hostname),
I=f&&d.punycode_expression.test(this._parts.hostname));switch(a.toLowerCase()){case "relative":return L;case "absolute":return!L;case "domain":case "name":return f;case "sld":return n;case "ip":return b;case "ip4":case "ipv4":case "inet4":return c;case "ip6":case "ipv6":case "inet6":return e;case "idn":return z;case "url":return!this._parts.urn;case "urn":return!!this._parts.urn;case "punycode":return I}return null};var C=g.protocol,y=g.port,J=g.hostname;g.protocol=function(a,b){if(a&&(a=a.replace(/:(\/\/)?$/,
""),!a.match(d.protocol_expression)))throw new TypeError('Protocol "'+a+"\" contains characters other than [A-Z0-9.+-] or doesn't start with [A-Z]");return C.call(this,a,b)};g.scheme=g.protocol;g.port=function(a,b){if(this._parts.urn)return void 0===a?"":this;void 0!==a&&(0===a&&(a=null),a&&(a+="",":"===a.charAt(0)&&(a=a.substring(1)),d.ensureValidPort(a)));return y.call(this,a,b)};g.hostname=function(a,b){if(this._parts.urn)return void 0===a?"":this;if(void 0!==a){var c={preventInvalidHostname:this._parts.preventInvalidHostname};
if("/"!==d.parseHost(a,c))throw new TypeError('Hostname "'+a+'" contains characters other than [A-Z0-9.-]');a=c.hostname;this._parts.preventInvalidHostname&&d.ensureValidHostname(a,this._parts.protocol)}return J.call(this,a,b)};g.origin=function(a,b){if(this._parts.urn)return void 0===a?"":this;if(void 0===a){var c=this.protocol();return this.authority()?(c?c+"://":"")+this.authority():""}c=d(a);this.protocol(c.protocol()).authority(c.authority()).build(!b);return this};g.host=function(a,b){if(this._parts.urn)return void 0===
a?"":this;if(void 0===a)return this._parts.hostname?d.buildHost(this._parts):"";if("/"!==d.parseHost(a,this._parts))throw new TypeError('Hostname "'+a+'" contains characters other than [A-Z0-9.-]');this.build(!b);return this};g.authority=function(a,b){if(this._parts.urn)return void 0===a?"":this;if(void 0===a)return this._parts.hostname?d.buildAuthority(this._parts):"";if("/"!==d.parseAuthority(a,this._parts))throw new TypeError('Hostname "'+a+'" contains characters other than [A-Z0-9.-]');this.build(!b);
return this};g.userinfo=function(a,b){if(this._parts.urn)return void 0===a?"":this;if(void 0===a){var c=d.buildUserinfo(this._parts);return c?c.substring(0,c.length-1):c}"@"!==a[a.length-1]&&(a+="@");d.parseUserinfo(a,this._parts);this.build(!b);return this};g.resource=function(a,b){if(void 0===a)return this.path()+this.search()+this.hash();var c=d.parse(a);this._parts.path=c.path;this._parts.query=c.query;this._parts.fragment=c.fragment;this.build(!b);return this};g.subdomain=function(a,b){if(this._parts.urn)return void 0===
a?"":this;if(void 0===a){if(!this._parts.hostname||this.is("IP"))return"";var c=this._parts.hostname.length-this.domain().length-1;return this._parts.hostname.substring(0,c)||""}c=this._parts.hostname.length-this.domain().length;c=this._parts.hostname.substring(0,c);c=new RegExp("^"+q(c));a&&"."!==a.charAt(a.length-1)&&(a+=".");if(-1!==a.indexOf(":"))throw new TypeError("Domains cannot contain colons");a&&d.ensureValidHostname(a,this._parts.protocol);this._parts.hostname=this._parts.hostname.replace(c,
a);this.build(!b);return this};g.domain=function(a,b){if(this._parts.urn)return void 0===a?"":this;"boolean"===typeof a&&(b=a,a=void 0);if(void 0===a){if(!this._parts.hostname||this.is("IP"))return"";var c=this._parts.hostname.match(/\./g);if(c&&2>c.length)return this._parts.hostname;c=this._parts.hostname.length-this.tld(b).length-1;c=this._parts.hostname.lastIndexOf(".",c-1)+1;return this._parts.hostname.substring(c)||""}if(!a)throw new TypeError("cannot set domain empty");if(-1!==a.indexOf(":"))throw new TypeError("Domains cannot contain colons");
d.ensureValidHostname(a,this._parts.protocol);!this._parts.hostname||this.is("IP")?this._parts.hostname=a:(c=new RegExp(q(this.domain())+"$"),this._parts.hostname=this._parts.hostname.replace(c,a));this.build(!b);return this};g.tld=function(a,b){if(this._parts.urn)return void 0===a?"":this;"boolean"===typeof a&&(b=a,a=void 0);if(void 0===a){if(!this._parts.hostname||this.is("IP"))return"";var c=this._parts.hostname.lastIndexOf(".");c=this._parts.hostname.substring(c+1);return!0!==b&&k&&k.list[c.toLowerCase()]?
k.get(this._parts.hostname)||c:c}if(a)if(a.match(/[^a-zA-Z0-9-]/))if(k&&k.is(a))c=new RegExp(q(this.tld())+"$"),this._parts.hostname=this._parts.hostname.replace(c,a);else throw new TypeError('TLD "'+a+'" contains characters other than [A-Z0-9]');else{if(!this._parts.hostname||this.is("IP"))throw new ReferenceError("cannot set TLD on non-domain host");c=new RegExp(q(this.tld())+"$");this._parts.hostname=this._parts.hostname.replace(c,a)}else throw new TypeError("cannot set TLD empty");this.build(!b);
return this};g.directory=function(a,b){if(this._parts.urn)return void 0===a?"":this;if(void 0===a||!0===a){if(!this._parts.path&&!this._parts.hostname)return"";if("/"===this._parts.path)return"/";var c=this._parts.path.length-this.filename().length-1;c=this._parts.path.substring(0,c)||(this._parts.hostname?"/":"");return a?d.decodePath(c):c}c=this._parts.path.length-this.filename().length;c=this._parts.path.substring(0,c);c=new RegExp("^"+q(c));this.is("relative")||(a||(a="/"),"/"!==a.charAt(0)&&
(a="/"+a));a&&"/"!==a.charAt(a.length-1)&&(a+="/");a=d.recodePath(a);this._parts.path=this._parts.path.replace(c,a);this.build(!b);return this};g.filename=function(a,b){if(this._parts.urn)return void 0===a?"":this;if("string"!==typeof a){if(!this._parts.path||"/"===this._parts.path)return"";var c=this._parts.path.lastIndexOf("/");c=this._parts.path.substring(c+1);return a?d.decodePathSegment(c):c}c=!1;"/"===a.charAt(0)&&(a=a.substring(1));a.match(/\.?\//)&&(c=!0);var e=new RegExp(q(this.filename())+
"$");a=d.recodePath(a);this._parts.path=this._parts.path.replace(e,a);c?this.normalizePath(b):this.build(!b);return this};g.suffix=function(a,b){if(this._parts.urn)return void 0===a?"":this;if(void 0===a||!0===a){if(!this._parts.path||"/"===this._parts.path)return"";var c=this.filename(),e=c.lastIndexOf(".");if(-1===e)return"";c=c.substring(e+1);c=/^[a-z0-9%]+$/i.test(c)?c:"";return a?d.decodePathSegment(c):c}"."===a.charAt(0)&&(a=a.substring(1));if(c=this.suffix())e=a?new RegExp(q(c)+"$"):new RegExp(q("."+
c)+"$");else{if(!a)return this;this._parts.path+="."+d.recodePath(a)}e&&(a=d.recodePath(a),this._parts.path=this._parts.path.replace(e,a));this.build(!b);return this};g.segment=function(a,b,c){var e=this._parts.urn?":":"/",f=this.path(),n="/"===f.substring(0,1);f=f.split(e);void 0!==a&&"number"!==typeof a&&(c=b,b=a,a=void 0);if(void 0!==a&&"number"!==typeof a)throw Error('Bad segment "'+a+'", must be 0-based integer');n&&f.shift();0>a&&(a=Math.max(f.length+a,0));if(void 0===b)return void 0===a?f:
f[a];if(null===a||void 0===f[a])if(A(b)){f=[];a=0;for(var z=b.length;a<z;a++)if(b[a].length||f.length&&f[f.length-1].length)f.length&&!f[f.length-1].length&&f.pop(),f.push(u(b[a]))}else{if(b||"string"===typeof b)b=u(b),""===f[f.length-1]?f[f.length-1]=b:f.push(b)}else b?f[a]=u(b):f.splice(a,1);n&&f.unshift("");return this.path(f.join(e),c)};g.segmentCoded=function(a,b,c){var e;"number"!==typeof a&&(c=b,b=a,a=void 0);if(void 0===b){a=this.segment(a,b,c);if(A(a)){var f=0;for(e=a.length;f<e;f++)a[f]=
d.decode(a[f])}else a=void 0!==a?d.decode(a):void 0;return a}if(A(b))for(f=0,e=b.length;f<e;f++)b[f]=d.encode(b[f]);else b="string"===typeof b||b instanceof String?d.encode(b):b;return this.segment(a,b,c)};var M=g.query;g.query=function(a,b){if(!0===a)return d.parseQuery(this._parts.query,this._parts.escapeQuerySpace);if("function"===typeof a){var c=d.parseQuery(this._parts.query,this._parts.escapeQuerySpace),e=a.call(this,c);this._parts.query=d.buildQuery(e||c,this._parts.duplicateQueryParameters,
this._parts.escapeQuerySpace);this.build(!b);return this}return void 0!==a&&"string"!==typeof a?(this._parts.query=d.buildQuery(a,this._parts.duplicateQueryParameters,this._parts.escapeQuerySpace),this.build(!b),this):M.call(this,a,b)};g.setQuery=function(a,b,c){var e=d.parseQuery(this._parts.query,this._parts.escapeQuerySpace);if("string"===typeof a||a instanceof String)e[a]=void 0!==b?b:null;else if("object"===typeof a)for(var f in a)B.call(a,f)&&(e[f]=a[f]);else throw new TypeError("URI.addQuery() accepts an object, string as the name parameter");
this._parts.query=d.buildQuery(e,this._parts.duplicateQueryParameters,this._parts.escapeQuerySpace);"string"!==typeof a&&(c=b);this.build(!c);return this};g.addQuery=function(a,b,c){var e=d.parseQuery(this._parts.query,this._parts.escapeQuerySpace);d.addQuery(e,a,void 0===b?null:b);this._parts.query=d.buildQuery(e,this._parts.duplicateQueryParameters,this._parts.escapeQuerySpace);"string"!==typeof a&&(c=b);this.build(!c);return this};g.removeQuery=function(a,b,c){var e=d.parseQuery(this._parts.query,
this._parts.escapeQuerySpace);d.removeQuery(e,a,b);this._parts.query=d.buildQuery(e,this._parts.duplicateQueryParameters,this._parts.escapeQuerySpace);"string"!==typeof a&&(c=b);this.build(!c);return this};g.hasQuery=function(a,b,c){var e=d.parseQuery(this._parts.query,this._parts.escapeQuerySpace);return d.hasQuery(e,a,b,c)};g.setSearch=g.setQuery;g.addSearch=g.addQuery;g.removeSearch=g.removeQuery;g.hasSearch=g.hasQuery;g.normalize=function(){return this._parts.urn?this.normalizeProtocol(!1).normalizePath(!1).normalizeQuery(!1).normalizeFragment(!1).build():
this.normalizeProtocol(!1).normalizeHostname(!1).normalizePort(!1).normalizePath(!1).normalizeQuery(!1).normalizeFragment(!1).build()};g.normalizeProtocol=function(a){"string"===typeof this._parts.protocol&&(this._parts.protocol=this._parts.protocol.toLowerCase(),this.build(!a));return this};g.normalizeHostname=function(a){this._parts.hostname&&(this.is("IDN")&&r?this._parts.hostname=r.toASCII(this._parts.hostname):this.is("IPv6")&&x&&(this._parts.hostname=x.best(this._parts.hostname)),this._parts.hostname=
this._parts.hostname.toLowerCase(),this.build(!a));return this};g.normalizePort=function(a){"string"===typeof this._parts.protocol&&this._parts.port===d.defaultPorts[this._parts.protocol]&&(this._parts.port=null,this.build(!a));return this};g.normalizePath=function(a){var b=this._parts.path;if(!b)return this;if(this._parts.urn)return this._parts.path=d.recodeUrnPath(this._parts.path),this.build(!a),this;if("/"===this._parts.path)return this;b=d.recodePath(b);var c="";if("/"!==b.charAt(0)){var e=!0;
b="/"+b}if("/.."===b.slice(-3)||"/."===b.slice(-2))b+="/";b=b.replace(/(\/(\.\/)+)|(\/\.$)/g,"/").replace(/\/{2,}/g,"/");e&&(c=b.substring(1).match(/^(\.\.\/)+/)||"")&&(c=c[0]);for(;;){var f=b.search(/\/\.\.(\/|$)/);if(-1===f)break;else if(0===f){b=b.substring(3);continue}var n=b.substring(0,f).lastIndexOf("/");-1===n&&(n=f);b=b.substring(0,n)+b.substring(f+3)}e&&this.is("relative")&&(b=c+b.substring(1));this._parts.path=b;this.build(!a);return this};g.normalizePathname=g.normalizePath;g.normalizeQuery=
function(a){"string"===typeof this._parts.query&&(this._parts.query.length?this.query(d.parseQuery(this._parts.query,this._parts.escapeQuerySpace)):this._parts.query=null,this.build(!a));return this};g.normalizeFragment=function(a){this._parts.fragment||(this._parts.fragment=null,this.build(!a));return this};g.normalizeSearch=g.normalizeQuery;g.normalizeHash=g.normalizeFragment;g.iso8859=function(){var a=d.encode,b=d.decode;d.encode=escape;d.decode=decodeURIComponent;try{this.normalize()}finally{d.encode=
a,d.decode=b}return this};g.unicode=function(){var a=d.encode,b=d.decode;d.encode=F;d.decode=unescape;try{this.normalize()}finally{d.encode=a,d.decode=b}return this};g.readable=function(){var a=this.clone();a.username("").password("").normalize();var b="";a._parts.protocol&&(b+=a._parts.protocol+"://");a._parts.hostname&&(a.is("punycode")&&r?(b+=r.toUnicode(a._parts.hostname),a._parts.port&&(b+=":"+a._parts.port)):b+=a.host());a._parts.hostname&&a._parts.path&&"/"!==a._parts.path.charAt(0)&&(b+="/");
b+=a.path(!0);if(a._parts.query){for(var c="",e=0,f=a._parts.query.split("&"),n=f.length;e<n;e++){var z=(f[e]||"").split("=");c+="&"+d.decodeQuery(z[0],this._parts.escapeQuerySpace).replace(/&/g,"%26");void 0!==z[1]&&(c+="="+d.decodeQuery(z[1],this._parts.escapeQuerySpace).replace(/&/g,"%26"))}b+="?"+c.substring(1)}return b+=d.decodeQuery(a.hash(),!0)};g.absoluteTo=function(a){var b=this.clone(),c=["protocol","username","password","hostname","port"],e,f;if(this._parts.urn)throw Error("URNs do not have any generally defined hierarchical components");
a instanceof d||(a=new d(a));if(b._parts.protocol)return b;b._parts.protocol=a._parts.protocol;if(this._parts.hostname)return b;for(e=0;f=c[e];e++)b._parts[f]=a._parts[f];b._parts.path?(".."===b._parts.path.substring(-2)&&(b._parts.path+="/"),"/"!==b.path().charAt(0)&&(c=(c=a.directory())?c:0===a.path().indexOf("/")?"/":"",b._parts.path=(c?c+"/":"")+b._parts.path,b.normalizePath())):(b._parts.path=a._parts.path,b._parts.query||(b._parts.query=a._parts.query));b.build();return b};g.relativeTo=function(a){var b=
this.clone().normalize();if(b._parts.urn)throw Error("URNs do not have any generally defined hierarchical components");a=(new d(a)).normalize();var c=b._parts;var e=a._parts;var f=b.path();a=a.path();if("/"!==f.charAt(0))throw Error("URI is already relative");if("/"!==a.charAt(0))throw Error("Cannot calculate a URI relative to another relative URI");c.protocol===e.protocol&&(c.protocol=null);if(c.username===e.username&&c.password===e.password&&null===c.protocol&&null===c.username&&null===c.password&&
c.hostname===e.hostname&&c.port===e.port)c.hostname=null,c.port=null;else return b.build();if(f===a)return c.path="",b.build();f=d.commonPath(f,a);if(!f)return b.build();e=e.path.substring(f.length).replace(/[^\/]*$/,"").replace(/.*?\//g,"../");c.path=e+c.path.substring(f.length)||"./";return b.build()};g.equals=function(a){var b=this.clone(),c=new d(a);a={};var e;b.normalize();c.normalize();if(b.toString()===c.toString())return!0;var f=b.query();var n=c.query();b.query("");c.query("");if(b.toString()!==
c.toString()||f.length!==n.length)return!1;b=d.parseQuery(f,this._parts.escapeQuerySpace);n=d.parseQuery(n,this._parts.escapeQuerySpace);for(e in b)if(B.call(b,e)){if(!A(b[e])){if(b[e]!==n[e])return!1}else if(!D(b[e],n[e]))return!1;a[e]=!0}for(e in n)if(B.call(n,e)&&!a[e])return!1;return!0};g.preventInvalidHostname=function(a){this._parts.preventInvalidHostname=!!a;return this};g.duplicateQueryParameters=function(a){this._parts.duplicateQueryParameters=!!a;return this};g.escapeQuerySpace=function(a){this._parts.escapeQuerySpace=
!!a;return this};return d});
(function(r,x){"object"===typeof module&&module.exports?module.exports=x(require("./URI")):"function"===typeof define&&define.amd?define(["./URI"],x):r.URITemplate=x(r.URI,r)})(this,function(r,x){function k(h){if(k._cache[h])return k._cache[h];if(!(this instanceof k))return new k(h);this.expression=h;k._cache[h]=this;return this}function m(h){this.data=h;this.cache={}}var d=x&&x.URITemplate,q=Object.prototype.hasOwnProperty,E=k.prototype,A={"":{prefix:"",separator:",",named:!1,empty_name_separator:!1,
encode:"encode"},"+":{prefix:"",separator:",",named:!1,empty_name_separator:!1,encode:"encodeReserved"},"#":{prefix:"#",separator:",",named:!1,empty_name_separator:!1,encode:"encodeReserved"},".":{prefix:".",separator:".",named:!1,empty_name_separator:!1,encode:"encode"},"/":{prefix:"/",separator:"/",named:!1,empty_name_separator:!1,encode:"encode"},";":{prefix:";",separator:";",named:!0,empty_name_separator:!1,encode:"encode"},"?":{prefix:"?",separator:"&",named:!0,empty_name_separator:!0,encode:"encode"},
"&":{prefix:"&",separator:"&",named:!0,empty_name_separator:!0,encode:"encode"}};k._cache={};k.EXPRESSION_PATTERN=/\{([^a-zA-Z0-9%_]?)([^\}]+)(\}|$)/g;k.VARIABLE_PATTERN=/^([^*:.](?:\.?[^*:.])*)((\*)|:(\d+))?$/;k.VARIABLE_NAME_PATTERN=/[^a-zA-Z0-9%_.]/;k.LITERAL_PATTERN=/[<>{}"`^| \\]/;k.expand=function(h,p,D){var u=A[h.operator],K=u.named?"Named":"Unnamed";h=h.variables;var F=[],w,H;for(H=0;w=h[H];H++){var v=p.get(w.name);if(0===v.type&&D&&D.strict)throw Error('Missing expansion value for variable "'+
w.name+'"');if(v.val.length){if(1<v.type&&w.maxlength)throw Error('Invalid expression: Prefix modifier not applicable to variable "'+w.name+'"');F.push(k["expand"+K](v,u,w.explode,w.explode&&u.separator||",",w.maxlength,w.name))}else v.type&&F.push("")}return F.length?u.prefix+F.join(u.separator):""};k.expandNamed=function(h,p,D,u,K,F){var w="",H=p.encode;p=p.empty_name_separator;var v=!h[H].length,g=2===h.type?"":r[H](F),B;var G=0;for(B=h.val.length;G<B;G++){if(K){var l=r[H](h.val[G][1].substring(0,
K));2===h.type&&(g=r[H](h.val[G][0].substring(0,K)))}else v?(l=r[H](h.val[G][1]),2===h.type?(g=r[H](h.val[G][0]),h[H].push([g,l])):h[H].push([void 0,l])):(l=h[H][G][1],2===h.type&&(g=h[H][G][0]));w&&(w+=u);D?w+=g+(p||l?"=":"")+l:(G||(w+=r[H](F)+(p||l?"=":"")),2===h.type&&(w+=g+","),w+=l)}return w};k.expandUnnamed=function(h,p,D,u,K){var F="",w=p.encode;p=p.empty_name_separator;var H=!h[w].length,v;var g=0;for(v=h.val.length;g<v;g++){if(K)var B=r[w](h.val[g][1].substring(0,K));else H?(B=r[w](h.val[g][1]),
h[w].push([2===h.type?r[w](h.val[g][0]):void 0,B])):B=h[w][g][1];F&&(F+=u);if(2===h.type){var G=K?r[w](h.val[g][0].substring(0,K)):h[w][g][0];F+=G;F=D?F+(p||B?"=":""):F+","}F+=B}return F};k.noConflict=function(){x.URITemplate===k&&(x.URITemplate=d);return k};E.expand=function(h,p){var D="";this.parts&&this.parts.length||this.parse();h instanceof m||(h=new m(h));for(var u=0,K=this.parts.length;u<K;u++)D+="string"===typeof this.parts[u]?this.parts[u]:k.expand(this.parts[u],h,p);return D};E.parse=function(){var h=
this.expression,p=k.EXPRESSION_PATTERN,D=k.VARIABLE_PATTERN,u=k.VARIABLE_NAME_PATTERN,K=k.LITERAL_PATTERN,F=[],w=0,H=function(t){if(t.match(K))throw Error('Invalid Literal "'+t+'"');return t};for(p.lastIndex=0;;){var v=p.exec(h);if(null===v){F.push(H(h.substring(w)));break}else F.push(H(h.substring(w,v.index))),w=v.index+v[0].length;if(!A[v[1]])throw Error('Unknown Operator "'+v[1]+'" in "'+v[0]+'"');if(!v[3])throw Error('Unclosed Expression "'+v[0]+'"');var g=v[2].split(",");for(var B=0,G=g.length;B<
G;B++){var l=g[B].match(D);if(null===l)throw Error('Invalid Variable "'+g[B]+'" in "'+v[0]+'"');if(l[1].match(u))throw Error('Invalid Variable Name "'+l[1]+'" in "'+v[0]+'"');g[B]={name:l[1],explode:!!l[3],maxlength:l[4]&&parseInt(l[4],10)}}if(!g.length)throw Error('Expression Missing Variable(s) "'+v[0]+'"');F.push({expression:v[0],operator:v[1],variables:g})}F.length||F.push(H(h));this.parts=F;return this};m.prototype.get=function(h){var p=this.data,D={type:0,val:[],encode:[],encodeReserved:[]};
if(void 0!==this.cache[h])return this.cache[h];this.cache[h]=D;p="[object Function]"===String(Object.prototype.toString.call(p))?p(h):"[object Function]"===String(Object.prototype.toString.call(p[h]))?p[h](h):p[h];if(void 0!==p&&null!==p)if("[object Array]"===String(Object.prototype.toString.call(p))){var u=0;for(h=p.length;u<h;u++)void 0!==p[u]&&null!==p[u]&&D.val.push([void 0,String(p[u])]);D.val.length&&(D.type=3)}else if("[object Object]"===String(Object.prototype.toString.call(p))){for(u in p)q.call(p,
u)&&void 0!==p[u]&&null!==p[u]&&D.val.push([u,String(p[u])]);D.val.length&&(D.type=2)}else D.type=1,D.val.push([void 0,String(p)]);return D};r.expand=function(h,p){var D=(new k(h)).expand(p);return new r(D)};return k});

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,68 @@
<?xml version="1.0" encoding="utf-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="margin: auto; background: none; display: block; shape-rendering: auto;" width="32px" height="32px" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid">
<g transform="rotate(0 50 50)">
<rect x="48" y="6" rx="2" ry="2.34" width="4" height="26" fill="#1b2a4e">
<animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1.25s" begin="-1.171875s" repeatCount="indefinite"></animate>
</rect>
</g><g transform="rotate(22.5 50 50)">
<rect x="48" y="6" rx="2" ry="2.34" width="4" height="26" fill="#1b2a4e">
<animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1.25s" begin="-1.09375s" repeatCount="indefinite"></animate>
</rect>
</g><g transform="rotate(45 50 50)">
<rect x="48" y="6" rx="2" ry="2.34" width="4" height="26" fill="#1b2a4e">
<animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1.25s" begin="-1.015625s" repeatCount="indefinite"></animate>
</rect>
</g><g transform="rotate(67.5 50 50)">
<rect x="48" y="6" rx="2" ry="2.34" width="4" height="26" fill="#1b2a4e">
<animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1.25s" begin="-0.9375s" repeatCount="indefinite"></animate>
</rect>
</g><g transform="rotate(90 50 50)">
<rect x="48" y="6" rx="2" ry="2.34" width="4" height="26" fill="#1b2a4e">
<animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1.25s" begin="-0.859375s" repeatCount="indefinite"></animate>
</rect>
</g><g transform="rotate(112.5 50 50)">
<rect x="48" y="6" rx="2" ry="2.34" width="4" height="26" fill="#1b2a4e">
<animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1.25s" begin="-0.78125s" repeatCount="indefinite"></animate>
</rect>
</g><g transform="rotate(135 50 50)">
<rect x="48" y="6" rx="2" ry="2.34" width="4" height="26" fill="#1b2a4e">
<animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1.25s" begin="-0.703125s" repeatCount="indefinite"></animate>
</rect>
</g><g transform="rotate(157.5 50 50)">
<rect x="48" y="6" rx="2" ry="2.34" width="4" height="26" fill="#1b2a4e">
<animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1.25s" begin="-0.625s" repeatCount="indefinite"></animate>
</rect>
</g><g transform="rotate(180 50 50)">
<rect x="48" y="6" rx="2" ry="2.34" width="4" height="26" fill="#1b2a4e">
<animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1.25s" begin="-0.546875s" repeatCount="indefinite"></animate>
</rect>
</g><g transform="rotate(202.5 50 50)">
<rect x="48" y="6" rx="2" ry="2.34" width="4" height="26" fill="#1b2a4e">
<animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1.25s" begin="-0.46875s" repeatCount="indefinite"></animate>
</rect>
</g><g transform="rotate(225 50 50)">
<rect x="48" y="6" rx="2" ry="2.34" width="4" height="26" fill="#1b2a4e">
<animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1.25s" begin="-0.390625s" repeatCount="indefinite"></animate>
</rect>
</g><g transform="rotate(247.5 50 50)">
<rect x="48" y="6" rx="2" ry="2.34" width="4" height="26" fill="#1b2a4e">
<animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1.25s" begin="-0.3125s" repeatCount="indefinite"></animate>
</rect>
</g><g transform="rotate(270 50 50)">
<rect x="48" y="6" rx="2" ry="2.34" width="4" height="26" fill="#1b2a4e">
<animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1.25s" begin="-0.234375s" repeatCount="indefinite"></animate>
</rect>
</g><g transform="rotate(292.5 50 50)">
<rect x="48" y="6" rx="2" ry="2.34" width="4" height="26" fill="#1b2a4e">
<animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1.25s" begin="-0.15625s" repeatCount="indefinite"></animate>
</rect>
</g><g transform="rotate(315 50 50)">
<rect x="48" y="6" rx="2" ry="2.34" width="4" height="26" fill="#1b2a4e">
<animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1.25s" begin="-0.078125s" repeatCount="indefinite"></animate>
</rect>
</g><g transform="rotate(337.5 50 50)">
<rect x="48" y="6" rx="2" ry="2.34" width="4" height="26" fill="#1b2a4e">
<animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1.25s" begin="0s" repeatCount="indefinite"></animate>
</rect>
</g>
<!-- [ldio] generated by https://loading.io/ --></svg>

After

Width:  |  Height:  |  Size: 4.3 KiB

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,89 @@
/*
@package NOTY - Dependency-free notification library
@version version: 3.2.0-beta
@contributors https://github.com/needim/noty/graphs/contributors
@documentation Examples and Documentation - https://ned.im/noty
@license Licensed under the MIT licenses: http://www.opensource.org/licenses/mit-license.php
*/
/*!
* Bootstrap v4.6.2 (https://getbootstrap.com/)
* Copyright 2011-2022 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
*/
/*!
* CoreUI v2.1.16 (https://coreui.io)
* Copyright 2019 Łukasz Holeczek
* Licensed under MIT (https://coreui.io)
*/
/*!
* @overview es6-promise - a tiny implementation of Promises/A+.
* @copyright Copyright (c) 2014 Yehuda Katz, Tom Dale, Stefan Penner and contributors (Conversion to ES6 API by Jake Archibald)
* @license Licensed under MIT license
* See https://raw.githubusercontent.com/stefanpenner/es6-promise/master/LICENSE
* @version 4.1.1
*/
/*!
* Sizzle CSS Selector Engine v2.3.6
* https://sizzlejs.com/
*
* Copyright JS Foundation and other contributors
* Released under the MIT license
* https://js.foundation/
*
* Date: 2021-02-16
*/
/*!
* jQuery JavaScript Library v3.6.1
* https://jquery.com/
*
* Includes Sizzle.js
* https://sizzlejs.com/
*
* Copyright OpenJS Foundation and other contributors
* Released under the MIT license
* https://jquery.org/license
*
* Date: 2022-08-26T17:52Z
*/
/*!
* pace.js v1.2.4
* https://github.com/CodeByZach/pace/
* Licensed MIT © HubSpot, Inc.
*/
/*!
* perfect-scrollbar v1.5.3
* Copyright 2021 Hyunje Jun, MDBootstrap and Contributors
* Licensed under MIT
*/
/**!
* @fileOverview Kickass library to create and place poppers near their reference elements.
* @version 1.16.1
* @license
* Copyright (c) 2016 Federico Zivolo and contributors
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/

View File

@ -0,0 +1,410 @@
.daterangepicker {
position: absolute;
color: inherit;
background-color: #fff;
border-radius: 4px;
border: 1px solid #ddd;
width: 278px;
max-width: none;
padding: 0;
margin-top: 7px;
top: 100px;
left: 20px;
z-index: 3001;
display: none;
font-family: arial;
font-size: 15px;
line-height: 1em;
}
.daterangepicker:before, .daterangepicker:after {
position: absolute;
display: inline-block;
border-bottom-color: rgba(0, 0, 0, 0.2);
content: '';
}
.daterangepicker:before {
top: -7px;
border-right: 7px solid transparent;
border-left: 7px solid transparent;
border-bottom: 7px solid #ccc;
}
.daterangepicker:after {
top: -6px;
border-right: 6px solid transparent;
border-bottom: 6px solid #fff;
border-left: 6px solid transparent;
}
.daterangepicker.opensleft:before {
right: 9px;
}
.daterangepicker.opensleft:after {
right: 10px;
}
.daterangepicker.openscenter:before {
left: 0;
right: 0;
width: 0;
margin-left: auto;
margin-right: auto;
}
.daterangepicker.openscenter:after {
left: 0;
right: 0;
width: 0;
margin-left: auto;
margin-right: auto;
}
.daterangepicker.opensright:before {
left: 9px;
}
.daterangepicker.opensright:after {
left: 10px;
}
.daterangepicker.drop-up {
margin-top: -7px;
}
.daterangepicker.drop-up:before {
top: initial;
bottom: -7px;
border-bottom: initial;
border-top: 7px solid #ccc;
}
.daterangepicker.drop-up:after {
top: initial;
bottom: -6px;
border-bottom: initial;
border-top: 6px solid #fff;
}
.daterangepicker.single .daterangepicker .ranges, .daterangepicker.single .drp-calendar {
float: none;
}
.daterangepicker.single .drp-selected {
display: none;
}
.daterangepicker.show-calendar .drp-calendar {
display: block;
}
.daterangepicker.show-calendar .drp-buttons {
display: block;
}
.daterangepicker.auto-apply .drp-buttons {
display: none;
}
.daterangepicker .drp-calendar {
display: none;
max-width: 270px;
}
.daterangepicker .drp-calendar.left {
padding: 8px 0 8px 8px;
}
.daterangepicker .drp-calendar.right {
padding: 8px;
}
.daterangepicker .drp-calendar.single .calendar-table {
border: none;
}
.daterangepicker .calendar-table .next span, .daterangepicker .calendar-table .prev span {
color: #fff;
border: solid black;
border-width: 0 2px 2px 0;
border-radius: 0;
display: inline-block;
padding: 3px;
}
.daterangepicker .calendar-table .next span {
transform: rotate(-45deg);
-webkit-transform: rotate(-45deg);
}
.daterangepicker .calendar-table .prev span {
transform: rotate(135deg);
-webkit-transform: rotate(135deg);
}
.daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
white-space: nowrap;
text-align: center;
vertical-align: middle;
min-width: 32px;
width: 32px;
height: 24px;
line-height: 24px;
font-size: 12px;
border-radius: 4px;
border: 1px solid transparent;
white-space: nowrap;
cursor: pointer;
}
.daterangepicker .calendar-table {
border: 1px solid #fff;
border-radius: 4px;
background-color: #fff;
}
.daterangepicker .calendar-table table {
width: 100%;
margin: 0;
border-spacing: 0;
border-collapse: collapse;
}
.daterangepicker td.available:hover, .daterangepicker th.available:hover {
background-color: #eee;
border-color: transparent;
color: inherit;
}
.daterangepicker td.week, .daterangepicker th.week {
font-size: 80%;
color: #ccc;
}
.daterangepicker td.off, .daterangepicker td.off.in-range, .daterangepicker td.off.start-date, .daterangepicker td.off.end-date {
background-color: #fff;
border-color: transparent;
color: #999;
}
.daterangepicker td.in-range {
background-color: #ebf4f8;
border-color: transparent;
color: #000;
border-radius: 0;
}
.daterangepicker td.start-date {
border-radius: 4px 0 0 4px;
}
.daterangepicker td.end-date {
border-radius: 0 4px 4px 0;
}
.daterangepicker td.start-date.end-date {
border-radius: 4px;
}
.daterangepicker td.active, .daterangepicker td.active:hover {
background-color: #357ebd;
border-color: transparent;
color: #fff;
}
.daterangepicker th.month {
width: auto;
}
.daterangepicker td.disabled, .daterangepicker option.disabled {
color: #999;
cursor: not-allowed;
text-decoration: line-through;
}
.daterangepicker select.monthselect, .daterangepicker select.yearselect {
font-size: 12px;
padding: 1px;
height: auto;
margin: 0;
cursor: default;
}
.daterangepicker select.monthselect {
margin-right: 2%;
width: 56%;
}
.daterangepicker select.yearselect {
width: 40%;
}
.daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker select.secondselect, .daterangepicker select.ampmselect {
width: 50px;
margin: 0 auto;
background: #eee;
border: 1px solid #eee;
padding: 2px;
outline: 0;
font-size: 12px;
}
.daterangepicker .calendar-time {
text-align: center;
margin: 4px auto 0 auto;
line-height: 30px;
position: relative;
}
.daterangepicker .calendar-time select.disabled {
color: #ccc;
cursor: not-allowed;
}
.daterangepicker .drp-buttons {
clear: both;
text-align: right;
padding: 8px;
border-top: 1px solid #ddd;
display: none;
line-height: 12px;
vertical-align: middle;
}
.daterangepicker .drp-selected {
display: inline-block;
font-size: 12px;
padding-right: 8px;
}
.daterangepicker .drp-buttons .btn {
margin-left: 8px;
font-size: 12px;
font-weight: bold;
padding: 4px 8px;
}
.daterangepicker.show-ranges.single.rtl .drp-calendar.left {
border-right: 1px solid #ddd;
}
.daterangepicker.show-ranges.single.ltr .drp-calendar.left {
border-left: 1px solid #ddd;
}
.daterangepicker.show-ranges.rtl .drp-calendar.right {
border-right: 1px solid #ddd;
}
.daterangepicker.show-ranges.ltr .drp-calendar.left {
border-left: 1px solid #ddd;
}
.daterangepicker .ranges {
float: none;
text-align: left;
margin: 0;
}
.daterangepicker.show-calendar .ranges {
margin-top: 8px;
}
.daterangepicker .ranges ul {
list-style: none;
margin: 0 auto;
padding: 0;
width: 100%;
}
.daterangepicker .ranges li {
font-size: 12px;
padding: 8px 12px;
cursor: pointer;
}
.daterangepicker .ranges li:hover {
background-color: #eee;
}
.daterangepicker .ranges li.active {
background-color: #08c;
color: #fff;
}
/* Larger Screen Styling */
@media (min-width: 564px) {
.daterangepicker {
width: auto;
}
.daterangepicker .ranges ul {
width: 140px;
}
.daterangepicker.single .ranges ul {
width: 100%;
}
.daterangepicker.single .drp-calendar.left {
clear: none;
}
.daterangepicker.single .ranges, .daterangepicker.single .drp-calendar {
float: left;
}
.daterangepicker {
direction: ltr;
text-align: left;
}
.daterangepicker .drp-calendar.left {
clear: left;
margin-right: 0;
}
.daterangepicker .drp-calendar.left .calendar-table {
border-right: none;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.daterangepicker .drp-calendar.right {
margin-left: 0;
}
.daterangepicker .drp-calendar.right .calendar-table {
border-left: none;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
.daterangepicker .drp-calendar.left .calendar-table {
padding-right: 8px;
}
.daterangepicker .ranges, .daterangepicker .drp-calendar {
float: left;
}
}
@media (min-width: 730px) {
.daterangepicker .ranges {
width: auto;
}
.daterangepicker .ranges {
float: left;
}
.daterangepicker.rtl .ranges {
float: right;
}
.daterangepicker .drp-calendar.left {
clear: none !important;
}
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,60 @@
/*!========================================================================
* Bootstrap: bootstrap-iconpicker.css v1.8.2 by @recktoner
* https://victor-valencia.github.com/bootstrap-iconpicker
* ========================================================================
* Copyright 2013-2017 Victor Valencia Rico.
* Licensed under MIT license.
* https://github.com/victor-valencia/bootstrap-iconpicker/blob/master/LICENSE
* ========================================================================
*/
.iconpicker .caret {
margin-left: 10px !important;
}
.iconpicker {
min-width: 60px;
}
.iconpicker input.search-control {
margin-bottom: 6px;
margin-top: 6px;
}
div.iconpicker.left .table-icons {
margin-right: auto;
}
div.iconpicker.center .table-icons {
margin-left: auto;
margin-right: auto;
}
div.iconpicker.right .table-icons {
margin-left: auto;
}
.table-icons .btn {
min-height: 30px;
min-width: 35px;
text-align: center;
padding: 0;
margin: 2px;
}
.table-icons td {
min-width: 39px;
}
.popover {
max-width: inherit !important;
}
.iconpicker-popover {
z-index: 1050 !important;
}
.iconpicker-popover .search-control {
margin-bottom: 6px;
margin-top: 6px;
}

View File

@ -0,0 +1,9 @@
/*!========================================================================
* Bootstrap: bootstrap-iconpicker.css v1.8.2 by @recktoner
* https://victor-valencia.github.com/bootstrap-iconpicker
* ========================================================================
* Copyright 2013-2017 Victor Valencia Rico.
* Licensed under MIT license.
* https://github.com/victor-valencia/bootstrap-iconpicker/blob/master/LICENSE
* ========================================================================
*/.iconpicker .caret{margin-left:10px!important}.iconpicker{min-width:60px}.iconpicker input.search-control{margin-bottom:6px;margin-top:6px}div.iconpicker.left .table-icons{margin-right:auto}div.iconpicker.center .table-icons{margin-left:auto;margin-right:auto}div.iconpicker.right .table-icons{margin-left:auto}.table-icons .btn{min-height:30px;min-width:35px;text-align:center;padding:0;margin:2px}.table-icons td{min-width:39px}.popover{max-width:inherit!important}.iconpicker-popover{z-index:1050!important}.iconpicker-popover .search-control{margin-bottom:6px;margin-top:6px}

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,519 @@
/*!========================================================================
* Bootstrap: bootstrap-iconpicker.js v1.8.2 by @recktoner
* https://victor-valencia.github.com/bootstrap-iconpicker
* ========================================================================
* Copyright 2013-2017 Victor Valencia Rico.
* Licensed under MIT license.
* https://github.com/victor-valencia/bootstrap-iconpicker/blob/master/LICENSE
* ========================================================================*/
;(function($){ "use strict";
// ICONPICKER PUBLIC CLASS DEFINITION
// ==============================
var Iconpicker = function (element, options) {
this.$element = $(element);
this.options = $.extend({}, Iconpicker.DEFAULTS, this.$element.data());
this.options = $.extend({}, this.options, options);
};
// ICONPICKER VERSION
// ==============================
Iconpicker.VERSION = '1.8.2';
// ICONPICKER ICONSET_EMPTY
// ==============================
Iconpicker.ICONSET_EMPTY = {
iconClass: '',
iconClassFix: '',
icons: []
};
// ICONPICKER ICONSET
// ==============================
Iconpicker.ICONSET = {
_custom: null,
elusiveicon: $.iconset_elusiveicon || Iconpicker.ICONSET_EMPTY,
fontawesome: $.iconset_fontawesome || Iconpicker.ICONSET_EMPTY,
ionicon: $.iconset_ionicon || Iconpicker.ICONSET_EMPTY,
glyphicon: $.iconset_glyphicon || Iconpicker.ICONSET_EMPTY,
mapicon: $.iconset_mapicon || Iconpicker.ICONSET_EMPTY,
materialdesign: $.iconset_materialdesign || Iconpicker.ICONSET_EMPTY,
octicon: $.iconset_octicon || Iconpicker.ICONSET_EMPTY,
typicon: $.iconset_typicon || Iconpicker.ICONSET_EMPTY,
weathericon: $.iconset_weathericon || Iconpicker.ICONSET_EMPTY
};
// ICONPICKER DEFAULTS
// ==============================
Iconpicker.DEFAULTS = {
align: 'center',
arrowClass: 'btn-primary',
arrowNextIconClass: 'glyphicon glyphicon-arrow-right',
arrowPrevIconClass: 'glyphicon glyphicon-arrow-left',
cols: 4,
icon: '',
iconset: 'glyphicon',
header: true,
labelHeader: '{0} / {1}',
footer: true,
labelFooter: '{0} - {1} of {2}',
placement: 'bottom',
rows: 4,
search: true,
searchText: 'Search icon',
selectedClass: 'btn-warning',
unselectedClass: 'btn-default'
};
// ICONPICKER PRIVATE METHODS
// ==============================
Iconpicker.prototype.bindEvents = function () {
var op = this.options;
var el = this;
op.table.find('.btn-previous, .btn-next').off('click').on('click', function(e) {
e.preventDefault();
if(!$(this).hasClass('disabled')){
var inc = parseInt($(this).val(), 10);
el.changeList(op.page + inc);
}
});
op.table.find('.btn-icon').off('click').on('click', function(e) {
e.preventDefault();
el.select($(this).val());
if(op.inline === false){
el.$element.popover('destroy');
}
else{
op.table.find('i.' + $(this).val()).parent().addClass(op.selectedClass);
}
});
op.table.find('.search-control').off('keyup').on('keyup', function() {
el.changeList(1);
});
};
Iconpicker.prototype.changeList = function (page) {
this.filterIcons();
this.updateLabels(page);
this.updateIcons(page);
this.options.page = page;
this.bindEvents();
};
Iconpicker.prototype.filterIcons = function () {
var op = this.options;
var search = op.table.find('.search-control').val();
if (search === "") {
op.icons = Iconpicker.ICONSET[op.iconset].icons;
}
else {
var result = [];
$.each(Iconpicker.ICONSET[op.iconset].icons, function(i, v) {
if (v.toLowerCase().indexOf(search) > -1) {
result.push(v);
}
});
op.icons = result;
}
};
Iconpicker.prototype.removeAddClass = function (target, remove, add) {
this.options.table.find(target).removeClass(remove).addClass(add);
return add;
};
Iconpicker.prototype.reset = function () {
this.updatePicker();
this.changeList(1);
};
Iconpicker.prototype.select = function (icon) {
var op = this.options;
var el = this.$element;
op.selected = $.inArray(icon.replace(op.iconClassFix, ''), op.icons);
if (op.selected === -1) {
op.selected = 0;
icon = op.iconClassFix + op.icons[op.selected];
}
if (icon !== '' && op.selected >= 0) {
op.icon = icon;
if(op.inline === false){
el.find('input').val(icon);
el.find('i').attr('class', '').addClass(op.iconClass).addClass(icon);
}
if(icon === op.iconClassFix){
el.trigger({ type: "change", icon: 'empty' });
}
else {
el.trigger({ type: "change", icon: icon });
el.find('input').val(icon);
}
op.table.find('button.' + op.selectedClass).removeClass(op.selectedClass);
}
};
Iconpicker.prototype.switchPage = function (icon) {
var op = this.options;
op.selected = $.inArray(icon.replace(op.iconClassFix, ''), op.icons);
if(op.selected >= 0) {
var page = Math.ceil((op.selected + 1) / this.totalIconsPerPage());
this.changeList(page);
}
if(icon === ''){
op.table.find('i.' + op.iconClassFix).parent().addClass(op.selectedClass);
}
else{
op.table.find('i.' + icon).parent().addClass(op.selectedClass);
}
};
Iconpicker.prototype.totalPages = function () {
return Math.ceil(this.totalIcons() / this.totalIconsPerPage());
};
Iconpicker.prototype.totalIcons = function () {
return this.options.icons.length;
};
Iconpicker.prototype.totalIconsPerPage = function () {
if(this.options.rows === 0){
return this.options.icons.length;
}
else{
return this.options.cols * this.options.rows;
}
};
Iconpicker.prototype.updateArrows = function (page) {
var op = this.options;
var total_pages = this.totalPages();
if (page === 1) {
op.table.find('.btn-previous').addClass('disabled');
}
else {
op.table.find('.btn-previous').removeClass('disabled');
}
if (page === total_pages || total_pages === 0) {
op.table.find('.btn-next').addClass('disabled');
}
else {
op.table.find('.btn-next').removeClass('disabled');
}
};
Iconpicker.prototype.updateIcons = function (page) {
var op = this.options;
var tbody = op.table.find('tbody').empty();
var offset = (page - 1) * this.totalIconsPerPage();
var length = op.rows;
if(op.rows === 0){
length = op.icons.length;
}
for (var i = 0; i < length; i++) {
var tr = $('<tr></tr>');
for (var j = 0; j < op.cols; j++) {
var pos = offset + (i * op.cols) + j;
var btn = $('<button class="btn ' + op.unselectedClass + ' btn-icon"></button>').hide();
if (pos < op.icons.length) {
var v = op.iconClassFix + op.icons[pos];
btn.val(v).attr('title', v).append('<i class="' + op.iconClass + ' ' + v + '"></i>').show();
if (op.icon === v) {
btn.addClass(op.selectedClass).addClass('btn-icon-selected');
}
}
tr.append($('<td></td>').append(btn));
}
tbody.append(tr);
}
};
Iconpicker.prototype.updateIconsCount = function () {
var op = this.options;
if(op.footer === true){
var icons_count = [
'<tr>',
' <td colspan="' + op.cols + '" class="text-center">',
' <span class="icons-count"></span>',
' </td>',
'</tr>'
];
op.table.find('tfoot').empty().append(icons_count.join(''));
}
};
Iconpicker.prototype.updateLabels = function (page) {
var op = this.options;
var total_icons = this.totalIcons();
var total_pages = this.totalPages();
op.table.find('.page-count').html(op.labelHeader.replace('{0}', (total_pages === 0 ) ? 0 : page).replace('{1}', total_pages));
var offset = (page - 1) * this.totalIconsPerPage();
var total = page * this.totalIconsPerPage();
op.table.find('.icons-count').html(op.labelFooter.replace('{0}', total_icons ? offset + 1 : 0).replace('{1}', (total < total_icons) ? total: total_icons).replace('{2}', total_icons));
this.updateArrows(page);
};
Iconpicker.prototype.updatePagesCount = function () {
var op = this.options;
if(op.header === true){
var tr = $('<tr></tr>');
for (var i = 0; i < op.cols; i++) {
var td = $('<td class="text-center"></td>');
if (i === 0 || i === op.cols - 1) {
var arrow = [
'<button class="btn btn-arrow ' + ((i === 0) ? 'btn-previous' : 'btn-next') + ' ' + op.arrowClass + '" value="' + ((i === 0) ? -1 : 1) + '">',
'<span class="' + ((i === 0) ? op.arrowPrevIconClass : op.arrowNextIconClass) + '"></span>',
'</button>'
];
td.append(arrow.join(''));
tr.append(td);
}
else if (tr.find('.page-count').length === 0) {
td.attr('colspan', op.cols - 2).append('<span class="page-count"></span>');
tr.append(td);
}
}
op.table.find('thead').empty().append(tr);
}
};
Iconpicker.prototype.updatePicker = function () {
var op = this.options;
if (op.cols < 4) {
throw 'Iconpicker => The number of columns must be greater than or equal to 4. [option.cols = ' + op.cols + ']';
}
else if (op.rows < 0) {
throw 'Iconpicker => The number of rows must be greater than or equal to 0. [option.rows = ' + op.rows + ']';
}
else {
this.updatePagesCount();
this.updateSearch();
this.updateIconsCount();
}
};
Iconpicker.prototype.updateSearch = function () {
var op = this.options;
var search = [
'<tr>',
' <td colspan="' + op.cols + '">',
' <input type="text" class="form-control search-control" style="width: ' + op.cols * 39 + 'px;" placeholder="' + op.searchText + '">',
' </td>',
'</tr>'
];
search = $(search.join(''));
if (op.search === true) {
search.show();
}
else {
search.hide();
}
op.table.find('thead').append(search);
};
// ICONPICKER PUBLIC METHODS
// ==============================
Iconpicker.prototype.setAlign = function (value) {
this.$element.removeClass(this.options.align).addClass(value);
this.options.align = value;
};
Iconpicker.prototype.setArrowClass = function (value) {
this.options.arrowClass = this.removeAddClass('.btn-arrow', this.options.arrowClass, value);
};
Iconpicker.prototype.setArrowNextIconClass = function (value) {
this.options.arrowNextIconClass = this.removeAddClass('.btn-next > span', this.options.arrowNextIconClass, value);
};
Iconpicker.prototype.setArrowPrevIconClass = function (value) {
this.options.arrowPrevIconClass = this.removeAddClass('.btn-previous > span', this.options.arrowPrevIconClass, value);
};
Iconpicker.prototype.setCols = function (value) {
this.options.cols = value;
this.reset();
};
Iconpicker.prototype.setFooter = function (value) {
var footer = this.options.table.find('tfoot');
if (value === true) {
footer.show();
}
else {
footer.hide();
}
this.options.footer = value;
};
Iconpicker.prototype.setHeader = function (value) {
var header = this.options.table.find('thead');
if (value === true) {
header.show();
}
else {
header.hide();
}
this.options.header = value;
};
Iconpicker.prototype.setIcon = function (value) {
this.select(value);
};
Iconpicker.prototype.setIconset = function (value) {
var op = this.options;
if ($.isPlainObject(value)) {
Iconpicker.ICONSET._custom = $.extend(Iconpicker.ICONSET_EMPTY, value);
op.iconset = '_custom';
}
else if (!Iconpicker.ICONSET.hasOwnProperty(value)) {
op.iconset = Iconpicker.DEFAULTS.iconset;
}
else {
op.iconset = value;
}
op = $.extend(op, Iconpicker.ICONSET[op.iconset]);
this.reset();
this.select(op.icon);
};
Iconpicker.prototype.setLabelHeader = function (value) {
this.options.labelHeader = value;
this.updateLabels(this.options.page);
};
Iconpicker.prototype.setLabelFooter = function (value) {
this.options.labelFooter = value;
this.updateLabels(this.options.page);
};
Iconpicker.prototype.setPlacement = function (value) {
this.options.placement = value;
};
Iconpicker.prototype.setRows = function (value) {
this.options.rows = value;
this.reset();
};
Iconpicker.prototype.setSearch = function (value) {
var search = this.options.table.find('.search-control');
if (value === true) {
search.show();
}
else {
search.hide();
}
search.val('');
this.changeList(1);
this.options.search = value;
};
Iconpicker.prototype.setSearchText = function (value) {
this.options.table.find('.search-control').attr('placeholder', value);
this.options.searchText = value;
};
Iconpicker.prototype.setSelectedClass = function (value) {
this.options.selectedClass = this.removeAddClass('.btn-icon-selected', this.options.selectedClass, value);
};
Iconpicker.prototype.setUnselectedClass = function (value) {
this.options.unselectedClass = this.removeAddClass('.btn-icon', this.options.unselectedClass, value);
};
// ICONPICKER PLUGIN DEFINITION
// ========================
var old = $.fn.iconpicker;
$.fn.iconpicker = function (option, params) {
return this.each(function () {
var $this = $(this);
var data = $this.data('bs.iconpicker');
var options = typeof option === 'object' && option;
if (!data) {
$this.data('bs.iconpicker', (data = new Iconpicker(this, options)));
}
if (typeof option === 'string') {
if (typeof data[option] === 'undefined') {
throw 'Iconpicker => The "' + option + '" method does not exists.';
}
else {
data[option](params);
}
}
else{
var op = data.options;
op = $.extend(op, {
inline: false,
page: 1,
selected: -1,
table: $('<table class="table-icons"><thead></thead><tbody></tbody><tfoot></tfoot></table>')
});
var name = (typeof $this.attr('name') !== 'undefined') ? 'name="' + $this.attr('name') + '"' : '';
if($this.prop('tagName') === 'BUTTON'){
$this.empty()
.append('<i></i>')
.append('<input type="hidden" ' + name + '></input>')
.append('<span class="caret"></span>')
.addClass('iconpicker');
data.setIconset(op.iconset);
$this.on('click', function(e) {
e.preventDefault();
$this.popover({
animation: false,
trigger: 'manual',
html: true,
content: op.table,
container: 'body',
placement: op.placement
}).on('shown.bs.popover', function () {
data.switchPage(op.icon);
data.bindEvents();
});
$this.data('bs.popover').tip().addClass('iconpicker-popover');
$this.popover('show');
});
}
else{
op.inline = true;
data.setIconset(op.iconset);
$this.empty()
.append('<input type="hidden" ' + name + '></input>')
.append(op.table)
.addClass('iconpicker')
.addClass(op.align);
data.switchPage(op.icon);
data.bindEvents();
}
}
});
};
$.fn.iconpicker.Constructor = Iconpicker;
// ICONPICKER NO CONFLICT
// ==================
$.fn.iconpicker.noConflict = function () {
$.fn.iconpicker = old;
return this;
};
// ICONPICKER DATA-API
// ===============
$(document).on('click', 'body', function (e) {
$('.iconpicker').each(function () {
//the 'is' for buttons that trigger popups
//the 'has' for icons within a button that triggers a popup
if (!$(this).is(e.target) && $(this).has(e.target).length === 0 && $('.popover').has(e.target).length === 0) {
$(this).popover('destroy');
}
});
});
$('button[role="iconpicker"],div[role="iconpicker"]').iconpicker();
})(jQuery);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,322 @@
/*!========================================================================
* Bootstrap: iconset-elusiveicon-2.0.0.js by @recktoner
* https://victor-valencia.github.com/bootstrap-iconpicker
*
* Iconset: Elusive icons 2.0.0
* http://press.codes/downloads/elusive-icons-webfont/
* ========================================================================
* Copyright 2013-2017 Victor Valencia Rico.
* Licensed under MIT license.
* https://github.com/victor-valencia/bootstrap-iconpicker/blob/master/LICENSE
* ======================================================================== */
;(function($){
$.iconset_elusiveicon = {
iconClass: '',
iconClassFix: 'el-icon-',
icons: [
'',
'address-book',
'address-book-alt',
'adjust',
'adjust-alt',
'adult',
'align-center',
'align-justify',
'align-left',
'align-right',
'arrow-down',
'arrow-left',
'arrow-right',
'arrow-up',
'asl',
'asterisk',
'backward',
'ban-circle',
'barcode',
'behance',
'bell',
'blind',
'blogger',
'bold',
'book',
'bookmark',
'bookmark-empty',
'braille',
'briefcase',
'broom',
'brush',
'bulb',
'bullhorn',
'calendar',
'calendar-sign',
'camera',
'car',
'caret-down',
'caret-left',
'caret-right',
'caret-up',
'cc',
'certificate',
'check',
'check-empty',
'chevron-down',
'chevron-left',
'chevron-right',
'chevron-up',
'child',
'circle-arrow-down',
'circle-arrow-left',
'circle-arrow-right',
'circle-arrow-up',
'cloud',
'cloud-alt',
'cog',
'cog-alt',
'cogs',
'comment',
'comment-alt',
'compass',
'compass-alt',
'credit-card',
'css',
'dashboard',
'delicious',
'deviantart',
'digg',
'download',
'download-alt',
'dribbble',
'edit',
'eject',
'envelope',
'envelope-alt',
'error',
'error-alt',
'eur',
'exclamation-sign',
'eye-close',
'eye-open',
'facebook',
'facetime-video',
'fast-backward',
'fast-forward',
'female',
'file',
'file-alt',
'file-edit',
'file-edit-alt',
'file-new',
'file-new-alt',
'film',
'filter',
'fire',
'flag',
'flag-alt',
'flickr',
'folder',
'folder-close',
'folder-open',
'folder-sign',
'font',
'fontsize',
'fork',
'forward',
'forward-alt',
'foursquare',
'friendfeed',
'friendfeed-rect',
'fullscreen',
'gbp',
'gift',
'github',
'github-text',
'glass',
'glasses',
'globe',
'globe-alt',
'googleplus',
'graph',
'graph-alt',
'group',
'group-alt',
'guidedog',
'hand-down',
'hand-left',
'hand-right',
'hand-up',
'hdd',
'headphones',
'hearing-impaired',
'heart',
'heart-alt',
'heart-empty',
'home',
'home-alt',
'hourglass',
'idea',
'idea-alt',
'inbox',
'inbox-alt',
'inbox-box',
'indent-left',
'indent-right',
'info-sign',
'instagram',
'iphone-home',
'italic',
'key',
'laptop',
'laptop-alt',
'lastfm',
'leaf',
'lines',
'link',
'linkedin',
'list',
'list-alt',
'livejournal',
'lock',
'lock-alt',
'magic',
'magnet',
'male',
'map-marker',
'map-marker-alt',
'mic',
'mic-alt',
'minus',
'minus-sign',
'move',
'music',
'myspace',
'network',
'off',
'ok',
'ok-circle',
'ok-sign',
'opensource',
'paper-clip',
'paper-clip-alt',
'path',
'pause',
'pause-alt',
'pencil',
'pencil-alt',
'person',
'phone',
'phone-alt',
'photo',
'photo-alt',
'picasa',
'picture',
'pinterest',
'plane',
'play',
'play-alt',
'play-circle',
'plus',
'plus-sign',
'podcast',
'print',
'puzzle',
'qrcode',
'question',
'question-sign',
'quotes',
'quotes-alt',
'random',
'record',
'reddit',
'refresh',
'remove',
'remove-circle',
'remove-sign',
'repeat',
'repeat-alt',
'resize-full',
'resize-horizontal',
'resize-small',
'resize-vertical',
'return-key',
'retweet',
'reverse-alt',
'road',
'rss',
'scissors',
'screen',
'screen-alt',
'screenshot',
'search',
'search-alt',
'share',
'share-alt',
'shopping-cart',
'shopping-cart-sign',
'signal',
'skype',
'slideshare',
'smiley',
'smiley-alt',
'soundcloud',
'speaker',
'spotify',
'stackoverflow',
'star',
'star-alt',
'star-empty',
'step-backward',
'step-forward',
'stop',
'stop-alt',
'stumbleupon',
'tag',
'tags',
'tasks',
'text-height',
'text-width',
'th',
'th-large',
'th-list',
'thumbs-down',
'thumbs-up',
'time',
'time-alt',
'tint',
'torso',
'trash',
'trash-alt',
'tumblr',
'twitter',
'universal-access',
'unlock',
'unlock-alt',
'upload',
'usd',
'user',
'viadeo',
'video',
'video-alt',
'video-chat',
'view-mode',
'vimeo',
'vkontakte',
'volume-down',
'volume-off',
'volume-up',
'w3c',
'warning-sign',
'website',
'website-alt',
'wheelchair',
'wordpress',
'wrench',
'wrench-alt',
'youtube',
'zoom-in',
'zoom-out'
]
};
})(jQuery);

View File

@ -0,0 +1,12 @@
/*!========================================================================
* Bootstrap: iconset-elusiveicon-2.0.0.js by @recktoner
* https://victor-valencia.github.com/bootstrap-iconpicker
*
* Iconset: Elusive icons 2.0.0
* http://press.codes/downloads/elusive-icons-webfont/
* ========================================================================
* Copyright 2013-2017 Victor Valencia Rico.
* Licensed under MIT license.
* https://github.com/victor-valencia/bootstrap-iconpicker/blob/master/LICENSE
* ======================================================================== */
!function($){$.iconset_elusiveicon={iconClass:"",iconClassFix:"el-icon-",icons:["","address-book","address-book-alt","adjust","adjust-alt","adult","align-center","align-justify","align-left","align-right","arrow-down","arrow-left","arrow-right","arrow-up","asl","asterisk","backward","ban-circle","barcode","behance","bell","blind","blogger","bold","book","bookmark","bookmark-empty","braille","briefcase","broom","brush","bulb","bullhorn","calendar","calendar-sign","camera","car","caret-down","caret-left","caret-right","caret-up","cc","certificate","check","check-empty","chevron-down","chevron-left","chevron-right","chevron-up","child","circle-arrow-down","circle-arrow-left","circle-arrow-right","circle-arrow-up","cloud","cloud-alt","cog","cog-alt","cogs","comment","comment-alt","compass","compass-alt","credit-card","css","dashboard","delicious","deviantart","digg","download","download-alt","dribbble","edit","eject","envelope","envelope-alt","error","error-alt","eur","exclamation-sign","eye-close","eye-open","facebook","facetime-video","fast-backward","fast-forward","female","file","file-alt","file-edit","file-edit-alt","file-new","file-new-alt","film","filter","fire","flag","flag-alt","flickr","folder","folder-close","folder-open","folder-sign","font","fontsize","fork","forward","forward-alt","foursquare","friendfeed","friendfeed-rect","fullscreen","gbp","gift","github","github-text","glass","glasses","globe","globe-alt","googleplus","graph","graph-alt","group","group-alt","guidedog","hand-down","hand-left","hand-right","hand-up","hdd","headphones","hearing-impaired","heart","heart-alt","heart-empty","home","home-alt","hourglass","idea","idea-alt","inbox","inbox-alt","inbox-box","indent-left","indent-right","info-sign","instagram","iphone-home","italic","key","laptop","laptop-alt","lastfm","leaf","lines","link","linkedin","list","list-alt","livejournal","lock","lock-alt","magic","magnet","male","map-marker","map-marker-alt","mic","mic-alt","minus","minus-sign","move","music","myspace","network","off","ok","ok-circle","ok-sign","opensource","paper-clip","paper-clip-alt","path","pause","pause-alt","pencil","pencil-alt","person","phone","phone-alt","photo","photo-alt","picasa","picture","pinterest","plane","play","play-alt","play-circle","plus","plus-sign","podcast","print","puzzle","qrcode","question","question-sign","quotes","quotes-alt","random","record","reddit","refresh","remove","remove-circle","remove-sign","repeat","repeat-alt","resize-full","resize-horizontal","resize-small","resize-vertical","return-key","retweet","reverse-alt","road","rss","scissors","screen","screen-alt","screenshot","search","search-alt","share","share-alt","shopping-cart","shopping-cart-sign","signal","skype","slideshare","smiley","smiley-alt","soundcloud","speaker","spotify","stackoverflow","star","star-alt","star-empty","step-backward","step-forward","stop","stop-alt","stumbleupon","tag","tags","tasks","text-height","text-width","th","th-large","th-list","thumbs-down","thumbs-up","time","time-alt","tint","torso","trash","trash-alt","tumblr","twitter","universal-access","unlock","unlock-alt","upload","usd","user","viadeo","video","video-alt","video-chat","view-mode","vimeo","vkontakte","volume-down","volume-off","volume-up","w3c","warning-sign","website","website-alt","wheelchair","wordpress","wrench","wrench-alt","youtube","zoom-in","zoom-out"]}}(jQuery);

View File

@ -0,0 +1,419 @@
/*!========================================================================
* Bootstrap: iconset-fontawesome-4.0.0.js by @recktoner
* https://victor-valencia.github.com/bootstrap-iconpicker
*
* Iconset: Font Awesome 4.0.0
* http://fortawesome.github.io/Font-Awesome/
* ========================================================================
* Copyright 2013-2017 Victor Valencia Rico.
* Licensed under MIT license.
* https://github.com/victor-valencia/bootstrap-iconpicker/blob/master/LICENSE
* ======================================================================== */
;(function($){
$.iconset_fontawesome = {
iconClass: 'fa',
iconClassFix: 'fa-',
icons: [
'',
'adjust',
'adn',
'align-center',
'align-justify',
'align-left',
'align-right',
'ambulance',
'anchor',
'android',
'angle-double-down',
'angle-double-left',
'angle-double-right',
'angle-double-up',
'angle-down',
'angle-left',
'angle-right',
'angle-up',
'apple',
'archive',
'arrow-circle-down',
'arrow-circle-left',
'arrow-circle-o-down',
'arrow-circle-o-left',
'arrow-circle-o-right',
'arrow-circle-o-up',
'arrow-circle-right',
'arrow-circle-up',
'arrow-down',
'arrow-left',
'arrow-right',
'arrow-up',
'asterisk',
'backward',
'ban',
'bar-chart-o',
'barcode',
'beer',
'bell',
'bell-o',
'bitbucket',
'bitbucket-square',
'bitcoin',
'bold',
'bolt',
'book',
'bookmark',
'bookmark-o',
'briefcase',
'btc',
'bug',
'building',
'bullhorn',
'bullseye',
'calendar',
'calendar-o',
'camera',
'camera-retro',
'caret-down',
'caret-left',
'caret-right',
'caret-square-o-down',
'caret-square-o-left',
'caret-square-o-right',
'caret-square-o-up',
'caret-up',
'certificate',
'chain',
'chain-broken',
'check',
'check-circle',
'check-circle-o',
'check-square',
'check-square-o',
'chevron-circle-down',
'chevron-circle-left',
'chevron-circle-right',
'chevron-circle-up',
'chevron-down',
'chevron-left',
'chevron-right',
'chevron-up',
'circle',
'circle-o',
'clipboard',
'clock-o',
'cloud',
'cloud-download',
'cloud-upload',
'cny',
'code',
'code-fork',
'coffee',
'cog',
'cogs',
'columns',
'comment',
'comment-o',
'comments',
'comments-o',
'compass',
'copy',
'credit-card',
'crop',
'crosshairs',
'css3',
'cut',
'cutlery',
'dashboard',
'dedent',
'desktop',
'dollar',
'dot-circle-o',
'download',
'dribbble',
'dropbox',
'edit',
'eject',
'envelope',
'envelope-o',
'eraser',
'eur',
'euro',
'exchange',
'exclamation',
'exclamation-circle',
'exclamation-triangle',
'external-link',
'external-link-square',
'eye',
'eye-slash',
'facebook',
'facebook-square',
'fast-backward',
'fast-forward',
'female',
'fighter-jet',
'file',
'file-o',
'file-text',
'file-text-o',
'files-o',
'film',
'filter',
'fire',
'fire-extinguisher',
'flag',
'flag-checkered',
'flag-o',
'flash',
'flask',
'flickr',
'floppy-o',
'folder',
'folder-o',
'folder-open',
'folder-open-o',
'font',
'forward',
'foursquare',
'frown-o',
'gamepad',
'gavel',
'gbp',
'gear',
'gears',
'gift',
'github',
'github-alt',
'github-square',
'gittip',
'glass',
'globe',
'google-plus',
'google-plus-square',
'group',
'h-square',
'hand-o-down',
'hand-o-left',
'hand-o-right',
'hand-o-up',
'headphones',
'heart',
'heart-o',
'home',
'html5',
'inbox',
'indent',
'info',
'info-circle',
'inr',
'instagram',
'italic',
'jpy',
'key',
'keyboard-o',
'krw',
'laptop',
'leaf',
'legal',
'lemon-o',
'level-down',
'level-up',
'lightbulb-o',
'link',
'linkedin',
'linkedin-square',
'linux',
'list',
'list-alt',
'list-ol',
'list-ul',
'location-arrow',
'lock',
'long-arrow-down',
'long-arrow-left',
'long-arrow-right',
'long-arrow-up',
'magic',
'magnet',
'mail-forward',
'mail-reply',
'mail-reply-all',
'male',
'map-marker',
'maxcdn',
'medkit',
'meh-o',
'microphone',
'microphone-slash',
'minus',
'minus-circle',
'minus-square',
'minus-square-o',
'mobile',
'mobile-phone',
'money',
'moon-o',
'music',
'outdent',
'pagelines',
'paperclip',
'paste',
'pause',
'pencil',
'pencil-square',
'pencil-square-o',
'phone',
'phone-square',
'picture-o',
'pinterest',
'pinterest-square',
'plane',
'play',
'play-circle',
'play-circle-o',
'plus',
'plus-circle',
'plus-square',
'power-off',
'print',
'puzzle-piece',
'qrcode',
'question',
'question-circle',
'quote-left',
'quote-right',
'random',
'refresh',
'renren',
'reorder',
'repeat',
'reply',
'reply-all',
'retweet',
'rmb',
'road',
'rocket',
'rotate-left',
'rotate-right',
'rouble',
'rss',
'rss-square',
'rub',
'ruble',
'rupee',
'save',
'scissors',
'search',
'search-minus',
'search-plus',
'share',
'share-square',
'share-square-o',
'shield',
'shopping-cart',
'sign-in',
'sign-out',
'signal',
'sitemap',
'skype',
'smile-o',
'sort',
'sort-alpha-asc',
'sort-alpha-desc',
'sort-amount-asc',
'sort-amount-desc',
'sort-asc',
'sort-desc',
'sort-down',
'sort-numeric-asc',
'sort-numeric-desc',
'sort-up',
'spinner',
'square',
'square-o',
'stack-exchange',
'stack-overflow',
'star',
'star-half',
'star-half-empty',
'star-half-full',
'star-half-o',
'star-o',
'step-backward',
'step-forward',
'stethoscope',
'stop',
'strikethrough',
'subscript',
'suitcase',
'sun-o',
'superscript',
'table',
'tablet',
'tachometer',
'tag',
'tags',
'tasks',
'terminal',
'text-height',
'text-width',
'th',
'th-large',
'th-list',
'thumb-tack',
'thumbs-down',
'thumbs-o-down',
'thumbs-o-up',
'thumbs-up',
'ticket',
'times',
'times-circle',
'times-circle-o',
'tint',
'toggle-down',
'toggle-left',
'toggle-right',
'toggle-up',
'trash-o',
'trello',
'trophy',
'truck',
'try',
'tumblr',
'tumblr-square',
'turkish-lira',
'twitter',
'twitter-square',
'umbrella',
'underline',
'undo',
'unlink',
'unlock',
'unsorted',
'upload',
'usd',
'user',
'user-md',
'video-camera',
'vimeo-square',
'vk',
'volume-down',
'volume-off',
'volume-up',
'warning',
'weibo',
'wheelchair',
'windows',
'won',
'wrench',
'xing',
'xing-square',
'yen',
'youtube',
'youtube-play',
'youtube-square'
]
};
})(jQuery);

View File

@ -0,0 +1,12 @@
/*!========================================================================
* Bootstrap: iconset-fontawesome-4.0.0.js by @recktoner
* https://victor-valencia.github.com/bootstrap-iconpicker
*
* Iconset: Font Awesome 4.0.0
* http://fortawesome.github.io/Font-Awesome/
* ========================================================================
* Copyright 2013-2017 Victor Valencia Rico.
* Licensed under MIT license.
* https://github.com/victor-valencia/bootstrap-iconpicker/blob/master/LICENSE
* ======================================================================== */
!function($){$.iconset_fontawesome={iconClass:"fa",iconClassFix:"fa-",icons:["","adjust","adn","align-center","align-justify","align-left","align-right","ambulance","anchor","android","angle-double-down","angle-double-left","angle-double-right","angle-double-up","angle-down","angle-left","angle-right","angle-up","apple","archive","arrow-circle-down","arrow-circle-left","arrow-circle-o-down","arrow-circle-o-left","arrow-circle-o-right","arrow-circle-o-up","arrow-circle-right","arrow-circle-up","arrow-down","arrow-left","arrow-right","arrow-up","asterisk","backward","ban","bar-chart-o","barcode","beer","bell","bell-o","bitbucket","bitbucket-square","bitcoin","bold","bolt","book","bookmark","bookmark-o","briefcase","btc","bug","building","bullhorn","bullseye","calendar","calendar-o","camera","camera-retro","caret-down","caret-left","caret-right","caret-square-o-down","caret-square-o-left","caret-square-o-right","caret-square-o-up","caret-up","certificate","chain","chain-broken","check","check-circle","check-circle-o","check-square","check-square-o","chevron-circle-down","chevron-circle-left","chevron-circle-right","chevron-circle-up","chevron-down","chevron-left","chevron-right","chevron-up","circle","circle-o","clipboard","clock-o","cloud","cloud-download","cloud-upload","cny","code","code-fork","coffee","cog","cogs","columns","comment","comment-o","comments","comments-o","compass","copy","credit-card","crop","crosshairs","css3","cut","cutlery","dashboard","dedent","desktop","dollar","dot-circle-o","download","dribbble","dropbox","edit","eject","envelope","envelope-o","eraser","eur","euro","exchange","exclamation","exclamation-circle","exclamation-triangle","external-link","external-link-square","eye","eye-slash","facebook","facebook-square","fast-backward","fast-forward","female","fighter-jet","file","file-o","file-text","file-text-o","files-o","film","filter","fire","fire-extinguisher","flag","flag-checkered","flag-o","flash","flask","flickr","floppy-o","folder","folder-o","folder-open","folder-open-o","font","forward","foursquare","frown-o","gamepad","gavel","gbp","gear","gears","gift","github","github-alt","github-square","gittip","glass","globe","google-plus","google-plus-square","group","h-square","hand-o-down","hand-o-left","hand-o-right","hand-o-up","headphones","heart","heart-o","home","html5","inbox","indent","info","info-circle","inr","instagram","italic","jpy","key","keyboard-o","krw","laptop","leaf","legal","lemon-o","level-down","level-up","lightbulb-o","link","linkedin","linkedin-square","linux","list","list-alt","list-ol","list-ul","location-arrow","lock","long-arrow-down","long-arrow-left","long-arrow-right","long-arrow-up","magic","magnet","mail-forward","mail-reply","mail-reply-all","male","map-marker","maxcdn","medkit","meh-o","microphone","microphone-slash","minus","minus-circle","minus-square","minus-square-o","mobile","mobile-phone","money","moon-o","music","outdent","pagelines","paperclip","paste","pause","pencil","pencil-square","pencil-square-o","phone","phone-square","picture-o","pinterest","pinterest-square","plane","play","play-circle","play-circle-o","plus","plus-circle","plus-square","power-off","print","puzzle-piece","qrcode","question","question-circle","quote-left","quote-right","random","refresh","renren","reorder","repeat","reply","reply-all","retweet","rmb","road","rocket","rotate-left","rotate-right","rouble","rss","rss-square","rub","ruble","rupee","save","scissors","search","search-minus","search-plus","share","share-square","share-square-o","shield","shopping-cart","sign-in","sign-out","signal","sitemap","skype","smile-o","sort","sort-alpha-asc","sort-alpha-desc","sort-amount-asc","sort-amount-desc","sort-asc","sort-desc","sort-down","sort-numeric-asc","sort-numeric-desc","sort-up","spinner","square","square-o","stack-exchange","stack-overflow","star","star-half","star-half-empty","star-half-full","star-half-o","star-o","step-backward","step-forward","stethoscope","stop","strikethrough","subscript","suitcase","sun-o","superscript","table","tablet","tachometer","tag","tags","tasks","terminal","text-height","text-width","th","th-large","th-list","thumb-tack","thumbs-down","thumbs-o-down","thumbs-o-up","thumbs-up","ticket","times","times-circle","times-circle-o","tint","toggle-down","toggle-left","toggle-right","toggle-up","trash-o","trello","trophy","truck","try","tumblr","tumblr-square","turkish-lira","twitter","twitter-square","umbrella","underline","undo","unlink","unlock","unsorted","upload","usd","user","user-md","video-camera","vimeo-square","vk","volume-down","volume-off","volume-up","warning","weibo","wheelchair","windows","won","wrench","xing","xing-square","yen","youtube","youtube-play","youtube-square"]}}(jQuery);

View File

@ -0,0 +1,522 @@
/*!========================================================================
* Bootstrap: iconset-fontawesome-4.1.0.js by @recktoner
* https://victor-valencia.github.com/bootstrap-iconpicker
*
* Iconset: Font Awesome 4.1.0
* http://fortawesome.github.io/Font-Awesome/
* ========================================================================
* Copyright 2013-2017 Victor Valencia Rico.
* Licensed under MIT license.
* https://github.com/victor-valencia/bootstrap-iconpicker/blob/master/LICENSE
* ======================================================================== */
;(function($){
$.iconset_fontawesome = {
iconClass: 'fa',
iconClassFix: 'fa-',
icons: [
'',
'adjust',
'adn',
'align-center',
'align-justify',
'align-left',
'align-right',
'ambulance',
'anchor',
'android',
'angle-double-down',
'angle-double-left',
'angle-double-right',
'angle-double-up',
'angle-down',
'angle-left',
'angle-right',
'angle-up',
'apple',
'archive',
'arrow-circle-down',
'arrow-circle-left',
'arrow-circle-o-down',
'arrow-circle-o-left',
'arrow-circle-o-right',
'arrow-circle-o-up',
'arrow-circle-right',
'arrow-circle-up',
'arrow-down',
'arrow-left',
'arrow-right',
'arrow-up',
'arrows',
'arrows-alt',
'arrows-h',
'arrows-v',
'asterisk',
'automobile',
'backward',
'ban',
'bank',
'bar-chart-o',
'barcode',
'bars',
'beer',
'behance',
'behance-square',
'bell',
'bell-o',
'bitbucket',
'bitbucket-square',
'bitcoin',
'bold',
'bolt',
'bomb',
'book',
'bookmark',
'bookmark-o',
'briefcase',
'btc',
'bug',
'building',
'building-o',
'bullhorn',
'bullseye',
'cab',
'calendar',
'calendar-o',
'camera',
'camera-retro',
'car',
'caret-down',
'caret-left',
'caret-right',
'caret-square-o-down',
'caret-square-o-left',
'caret-square-o-right',
'caret-square-o-up',
'caret-up',
'certificate',
'chain',
'chain-broken',
'check',
'check-circle',
'check-circle-o',
'check-square',
'check-square-o',
'chevron-circle-down',
'chevron-circle-left',
'chevron-circle-right',
'chevron-circle-up',
'chevron-down',
'chevron-left',
'chevron-right',
'chevron-up',
'child',
'circle',
'circle-o',
'circle-thin',
'clipboard',
'clock-o',
'cloud',
'cloud-download',
'cloud-upload',
'cny',
'code',
'code-fork',
'coffee',
'cog',
'cogs',
'columns',
'comment',
'comment-o',
'comments',
'comments-o',
'compass',
'compress',
'copy',
'credit-card',
'crop',
'crosshairs',
'css3',
'cube',
'cubes',
'cut',
'cutlery',
'dashboard',
'database',
'dedent',
'delicious',
'desktop',
'digg',
'dollar',
'dot-circle-o',
'download',
'dribbble',
'dropbox',
'drupal',
'edit',
'eject',
'ellipsis-h',
'ellipsis-v',
'empire',
'envelope',
'envelope-o',
'envelope-square',
'eraser',
'eur',
'euro',
'exchange',
'exclamation',
'exclamation-circle',
'exclamation-triangle',
'expand',
'external-link',
'external-link-square',
'eye',
'eye-slash',
'facebook',
'facebook-square',
'fast-backward',
'fast-forward',
'fax',
'female',
'fighter-jet',
'file',
'file-archive-o',
'file-audio-o',
'file-code-o',
'file-excel-o',
'file-image-o',
'file-movie-o',
'file-o',
'file-pdf-o',
'file-photo-o',
'file-picture-o',
'file-powerpoint-o',
'file-sound-o',
'file-text',
'file-text-o',
'file-video-o',
'file-word-o',
'file-zip-o',
'files-o',
'film',
'filter',
'fire',
'fire-extinguisher',
'flag',
'flag-checkered',
'flag-o',
'flash',
'flask',
'flickr',
'floppy-o',
'folder',
'folder-o',
'folder-open',
'folder-open-o',
'font',
'forward',
'foursquare',
'frown-o',
'gamepad',
'gavel',
'gbp',
'ge',
'gear',
'gears',
'gift',
'git',
'git-square',
'github',
'github-alt',
'github-square',
'gittip',
'glass',
'globe',
'google',
'google-plus',
'google-plus-square',
'graduation-cap',
'group',
'h-square',
'hacker-news',
'hand-o-down',
'hand-o-left',
'hand-o-right',
'hand-o-up',
'hdd-o',
'header',
'headphones',
'heart',
'heart-o',
'history',
'home',
'hospital-o',
'html5',
'image',
'inbox',
'indent',
'info',
'info-circle',
'inr',
'instagram',
'institution',
'italic',
'joomla',
'jpy',
'jsfiddle',
'key',
'keyboard-o',
'krw',
'language',
'laptop',
'leaf',
'legal',
'lemon-o',
'level-down',
'level-up',
'life-bouy',
'life-ring',
'life-saver',
'lightbulb-o',
'link',
'linkedin',
'linkedin-square',
'linux',
'list',
'list-alt',
'list-ol',
'list-ul',
'location-arrow',
'lock',
'long-arrow-down',
'long-arrow-left',
'long-arrow-right',
'long-arrow-up',
'magic',
'magnet',
'mail-forward',
'mail-reply',
'mail-reply-all',
'male',
'map-marker',
'maxcdn',
'medkit',
'meh-o',
'microphone',
'microphone-slash',
'minus',
'minus-circle',
'minus-square',
'minus-square-o',
'mobile',
'mobile-phone',
'money',
'moon-o',
'mortar-board',
'music',
'navicon',
'openid',
'outdent',
'pagelines',
'paper-plane',
'paper-plane-o',
'paperclip',
'paragraph',
'paste',
'pause',
'paw',
'pencil',
'pencil-square',
'pencil-square-o',
'phone',
'phone-square',
'photo',
'picture-o',
'pied-piper',
'pied-piper-alt',
'pied-piper-square',
'pinterest',
'pinterest-square',
'plane',
'play',
'play-circle',
'play-circle-o',
'plus',
'plus-circle',
'plus-square',
'plus-square-o',
'power-off',
'print',
'puzzle-piece',
'qq',
'qrcode',
'question',
'question-circle',
'quote-left',
'quote-right',
'ra',
'random',
'rebel',
'reddit',
'reddit-square',
'refresh',
'renren',
'reorder',
'repeat',
'reply',
'reply-all',
'retweet',
'rmb',
'road',
'rocket',
'rotate-left',
'rotate-right',
'rouble',
'rss',
'rss-square',
'rub',
'ruble',
'rupee',
'save',
'scissors',
'search',
'search-minus',
'search-plus',
'send',
'send-o',
'share',
'share-alt',
'share-alt-square',
'share-square',
'share-square-o',
'shield',
'shopping-cart',
'sign-in',
'sign-out',
'signal',
'sitemap',
'skype',
'slack',
'sliders',
'smile-o',
'sort',
'sort-alpha-asc',
'sort-alpha-desc',
'sort-amount-asc',
'sort-amount-desc',
'sort-asc',
'sort-desc',
'sort-down',
'sort-numeric-asc',
'sort-numeric-desc',
'sort-up',
'soundcloud',
'space-shuttle',
'spinner',
'spoon',
'spotify',
'square',
'square-o',
'stack-exchange',
'stack-overflow',
'star',
'star-half',
'star-half-empty',
'star-half-full',
'star-half-o',
'star-o',
'steam',
'steam-square',
'step-backward',
'step-forward',
'stethoscope',
'stop',
'strikethrough',
'stumbleupon',
'stumbleupon-circle',
'subscript',
'suitcase',
'sun-o',
'superscript',
'support',
'table',
'tablet',
'tachometer',
'tag',
'tags',
'tasks',
'taxi',
'tencent-weibo',
'terminal',
'text-height',
'text-width',
'th',
'th-large',
'th-list',
'thumb-tack',
'thumbs-down',
'thumbs-o-down',
'thumbs-o-up',
'thumbs-up',
'ticket',
'times',
'times-circle',
'times-circle-o',
'tint',
'toggle-down',
'toggle-left',
'toggle-right',
'toggle-up',
'trash-o',
'tree',
'trello',
'trophy',
'truck',
'try',
'tumblr',
'tumblr-square',
'turkish-lira',
'twitter',
'twitter-square',
'umbrella',
'underline',
'undo',
'university',
'unlink',
'unlock',
'unlock-alt',
'unsorted',
'upload',
'usd',
'user',
'user-md',
'users',
'video-camera',
'vimeo-square',
'vine',
'vk',
'volume-down',
'volume-off',
'volume-up',
'warning',
'wechat',
'weibo',
'weixin',
'wheelchair',
'windows',
'won',
'wordpress',
'wrench',
'xing',
'xing-square',
'yahoo',
'yen',
'youtube',
'youtube-play',
'youtube-square'
]
};
})(jQuery);

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,564 @@
/*!========================================================================
* Bootstrap: iconset-fontawesome-4.2.0.js by @recktoner
* https://victor-valencia.github.com/bootstrap-iconpicker
*
* Iconset: Font Awesome 4.2.0
* http://fortawesome.github.io/Font-Awesome/
* ========================================================================
* Copyright 2013-2017 Victor Valencia Rico.
* Licensed under MIT license.
* https://github.com/victor-valencia/bootstrap-iconpicker/blob/master/LICENSE
* ======================================================================== */
;(function($){
$.iconset_fontawesome = {
iconClass: 'fa',
iconClassFix: 'fa-',
icons: [
'',
'adjust',
'adn',
'align-center',
'align-justify',
'align-left',
'align-right',
'ambulance',
'anchor',
'android',
'angellist',
'angle-double-down',
'angle-double-left',
'angle-double-right',
'angle-double-up',
'angle-down',
'angle-left',
'angle-right',
'angle-up',
'apple',
'archive',
'area-chart',
'arrow-circle-down',
'arrow-circle-left',
'arrow-circle-o-down',
'arrow-circle-o-left',
'arrow-circle-o-right',
'arrow-circle-o-up',
'arrow-circle-right',
'arrow-circle-up',
'arrow-down',
'arrow-left',
'arrow-right',
'arrow-up',
'arrows',
'arrows-alt',
'arrows-h',
'arrows-v',
'asterisk',
'at',
'automobile',
'backward',
'ban',
'bank',
'bar-chart-o',
'barcode',
'bars',
'beer',
'behance',
'behance-square',
'bell',
'bell-o',
'bell-slash',
'bell-slash-o',
'bicycle',
'binoculars',
'birthday-cake',
'bitbucket',
'bitbucket-square',
'bitcoin',
'bold',
'bolt',
'bomb',
'book',
'bookmark',
'bookmark-o',
'briefcase',
'btc',
'bug',
'building',
'building-o',
'bullhorn',
'bullseye',
'bus',
'cab',
'calculator',
'calendar',
'calendar-o',
'camera',
'camera-retro',
'car',
'caret-down',
'caret-left',
'caret-right',
'caret-square-o-down',
'caret-square-o-left',
'caret-square-o-right',
'caret-square-o-up',
'caret-up',
'cc',
'cc-amex',
'cc-discover',
'cc-mastercard',
'cc-paypal',
'cc-stripe',
'cc-visa',
'certificate',
'chain',
'chain-broken',
'check',
'check-circle',
'check-circle-o',
'check-square',
'check-square-o',
'chevron-circle-down',
'chevron-circle-left',
'chevron-circle-right',
'chevron-circle-up',
'chevron-down',
'chevron-left',
'chevron-right',
'chevron-up',
'child',
'circle',
'circle-o',
'circle-thin',
'clipboard',
'clock-o',
'cloud',
'cloud-download',
'cloud-upload',
'cny',
'code',
'code-fork',
'coffee',
'cog',
'cogs',
'columns',
'comment',
'comment-o',
'comments',
'comments-o',
'compass',
'compress',
'copy',
'copyright',
'credit-card',
'crop',
'crosshairs',
'css3',
'cube',
'cubes',
'cut',
'cutlery',
'dashboard',
'database',
'dedent',
'delicious',
'desktop',
'digg',
'dollar',
'dot-circle-o',
'download',
'dribbble',
'dropbox',
'drupal',
'edit',
'eject',
'ellipsis-h',
'ellipsis-v',
'empire',
'envelope',
'envelope-o',
'envelope-square',
'eraser',
'eur',
'euro',
'exchange',
'exclamation',
'exclamation-circle',
'exclamation-triangle',
'expand',
'external-link',
'external-link-square',
'eye',
'eye-slash',
'eyedropper',
'facebook',
'facebook-square',
'fast-backward',
'fast-forward',
'fax',
'female',
'fighter-jet',
'file',
'file-archive-o',
'file-audio-o',
'file-code-o',
'file-excel-o',
'file-image-o',
'file-movie-o',
'file-o',
'file-pdf-o',
'file-photo-o',
'file-picture-o',
'file-powerpoint-o',
'file-sound-o',
'file-text',
'file-text-o',
'file-video-o',
'file-word-o',
'file-zip-o',
'files-o',
'film',
'filter',
'fire',
'fire-extinguisher',
'flag',
'flag-checkered',
'flag-o',
'flash',
'flask',
'flickr',
'floppy-o',
'folder',
'folder-o',
'folder-open',
'folder-open-o',
'font',
'forward',
'foursquare',
'frown-o',
'futbol-o',
'gamepad',
'gavel',
'gbp',
'ge',
'gear',
'gears',
'gift',
'git',
'git-square',
'github',
'github-alt',
'github-square',
'gittip',
'glass',
'globe',
'google',
'google-plus',
'google-plus-square',
'google-wallet',
'graduation-cap',
'group',
'h-square',
'hacker-news',
'hand-o-down',
'hand-o-left',
'hand-o-right',
'hand-o-up',
'hdd-o',
'header',
'headphones',
'heart',
'heart-o',
'history',
'home',
'hospital-o',
'html5',
'ils',
'image',
'inbox',
'indent',
'info',
'info-circle',
'inr',
'instagram',
'institution',
'ioxhost',
'italic',
'joomla',
'jpy',
'jsfiddle',
'key',
'keyboard-o',
'krw',
'language',
'laptop',
'lastfm',
'lastfm-square',
'leaf',
'legal',
'lemon-o',
'level-down',
'level-up',
'life-bouy',
'life-ring',
'life-saver',
'lightbulb-o',
'line-chart',
'link',
'linkedin',
'linkedin-square',
'linux',
'list',
'list-alt',
'list-ol',
'list-ul',
'location-arrow',
'lock',
'long-arrow-down',
'long-arrow-left',
'long-arrow-right',
'long-arrow-up',
'magic',
'magnet',
'mail-forward',
'mail-reply',
'mail-reply-all',
'male',
'map-marker',
'maxcdn',
'meanpath',
'medkit',
'meh-o',
'microphone',
'microphone-slash',
'minus',
'minus-circle',
'minus-square',
'minus-square-o',
'mobile',
'mobile-phone',
'money',
'moon-o',
'mortar-board',
'music',
'navicon',
'newspaper-o',
'openid',
'outdent',
'pagelines',
'paint-brush',
'paper-plane',
'paper-plane-o',
'paperclip',
'paragraph',
'paste',
'pause',
'paw',
'paypal',
'pencil',
'pencil-square',
'pencil-square-o',
'phone',
'phone-square',
'photo',
'picture-o',
'pie-chart',
'pied-piper',
'pied-piper-alt',
'pinterest',
'pinterest-square',
'plane',
'play',
'play-circle',
'play-circle-o',
'plug',
'plus',
'plus-circle',
'plus-square',
'plus-square-o',
'power-off',
'print',
'puzzle-piece',
'qq',
'qrcode',
'question',
'question-circle',
'quote-left',
'quote-right',
'ra',
'random',
'rebel',
'reddit',
'reddit-square',
'refresh',
'renren',
'reorder',
'repeat',
'reply',
'reply-all',
'retweet',
'rmb',
'road',
'rocket',
'rotate-left',
'rotate-right',
'rouble',
'rss',
'rss-square',
'rub',
'ruble',
'rupee',
'save',
'scissors',
'search',
'search-minus',
'search-plus',
'send',
'send-o',
'share',
'share-alt',
'share-alt-square',
'share-square',
'share-square-o',
'shekel',
'sheqel',
'shield',
'shopping-cart',
'sign-in',
'sign-out',
'signal',
'sitemap',
'skype',
'slack',
'sliders',
'slideshare',
'smile-o',
'soccer-ball-o',
'sort',
'sort-alpha-asc',
'sort-alpha-desc',
'sort-amount-asc',
'sort-amount-desc',
'sort-asc',
'sort-desc',
'sort-down',
'sort-numeric-asc',
'sort-numeric-desc',
'sort-up',
'soundcloud',
'space-shuttle',
'spinner',
'spoon',
'spotify',
'square',
'square-o',
'stack-exchange',
'stack-overflow',
'star',
'star-half',
'star-half-empty',
'star-half-full',
'star-half-o',
'star-o',
'steam',
'steam-square',
'step-backward',
'step-forward',
'stethoscope',
'stop',
'strikethrough',
'stumbleupon',
'stumbleupon-circle',
'subscript',
'suitcase',
'sun-o',
'superscript',
'support',
'table',
'tablet',
'tachometer',
'tag',
'tags',
'tasks',
'taxi',
'tencent-weibo',
'terminal',
'text-height',
'text-width',
'th',
'th-large',
'th-list',
'thumb-tack',
'thumbs-down',
'thumbs-o-down',
'thumbs-o-up',
'thumbs-up',
'ticket',
'times',
'times-circle',
'times-circle-o',
'tint',
'toggle-down',
'toggle-left',
'toggle-off',
'toggle-on',
'toggle-right',
'toggle-up',
'trash',
'trash-o',
'tree',
'trello',
'trophy',
'truck',
'try',
'tty',
'tumblr',
'tumblr-square',
'turkish-lira',
'twitch',
'twitter',
'twitter-square',
'umbrella',
'underline',
'undo',
'university',
'unlink',
'unlock',
'unlock-alt',
'unsorted',
'upload',
'usd',
'user',
'user-md',
'users',
'video-camera',
'vimeo-square',
'vine',
'vk',
'volume-down',
'volume-off',
'volume-up',
'warning',
'wechat',
'weibo',
'weixin',
'wheelchair',
'wifi',
'windows',
'won',
'wordpress',
'wrench',
'xing',
'xing-square',
'yahoo',
'yelp',
'yen',
'youtube',
'youtube-play',
'youtube-square'
]
};
})(jQuery);

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,616 @@
/*!========================================================================
* Bootstrap: iconset-fontawesome-4.3.0.js by @michaelbilcot
* https://victor-valencia.github.com/bootstrap-iconpicker
*
* Iconset: Font Awesome 4.3.0
* http://fortawesome.github.io/Font-Awesome/
* ========================================================================
* Copyright 2013-2017 Victor Valencia Rico.
* Licensed under MIT license.
* https://github.com/victor-valencia/bootstrap-iconpicker/blob/master/LICENSE
* ======================================================================== */
;(function($){
$.iconset_fontawesome = {
iconClass: 'fa',
iconClassFix: 'fa-',
icons: [
'',
'adjust',
'adn',
'align-center',
'align-justify',
'align-left',
'align-right',
'ambulance',
'anchor',
'android',
'angellist',
'angle-double-down',
'angle-double-left',
'angle-double-right',
'angle-double-up',
'angle-down',
'angle-left',
'angle-right',
'angle-up',
'apple',
'archive',
'area-chart',
'arrow-circle-down',
'arrow-circle-left',
'arrow-circle-o-down',
'arrow-circle-o-left',
'arrow-circle-o-right',
'arrow-circle-o-up',
'arrow-circle-right',
'arrow-circle-up',
'arrow-down',
'arrow-left',
'arrow-right',
'arrow-up',
'arrows',
'arrows-alt',
'arrows-h',
'arrows-v',
'asterisk',
'at',
'automobile',
'backward',
'ban',
'bank',
'bar-chart',
'bar-chart-o',
'barcode',
'bars',
'bed',
'beer',
'behance',
'behance-square',
'bell',
'bell-o',
'bell-slash',
'bell-slash-o',
'bicycle',
'binoculars',
'birthday-cake',
'bitbucket',
'bitbucket-square',
'bitcoin',
'bold',
'bolt',
'bomb',
'book',
'bookmark',
'bookmark-o',
'briefcase',
'btc',
'bug',
'building',
'building-o',
'bullhorn',
'bullseye',
'bus',
'buysellads',
'cab',
'calculator',
'calendar',
'calendar-o',
'camera',
'camera-retro',
'car',
'caret-down',
'caret-left',
'caret-right',
'caret-square-o-down',
'caret-square-o-left',
'caret-square-o-right',
'caret-square-o-up',
'caret-up',
'cart-arrow-down',
'cart-plus',
'cc',
'cc-amex',
'cc-discover',
'cc-mastercard',
'cc-paypal',
'cc-stripe',
'cc-visa',
'certificate',
'chain',
'chain-broken',
'check',
'check-circle',
'check-circle-o',
'check-square',
'check-square-o',
'chevron-circle-down',
'chevron-circle-left',
'chevron-circle-right',
'chevron-circle-up',
'chevron-down',
'chevron-left',
'chevron-right',
'chevron-up',
'child',
'circle',
'circle-o',
'circle-o-notch',
'circle-thin',
'clipboard',
'clock-o',
'close',
'cloud',
'cloud-download',
'cloud-upload',
'cny',
'code',
'code-fork',
'codepen',
'coffee',
'cog',
'cogs',
'columns',
'comment',
'comment-o',
'comments',
'comments-o',
'compass',
'compress',
'connectdevelop',
'copy',
'copyright',
'credit-card',
'crop',
'crosshairs',
'css3',
'cube',
'cubes',
'cut',
'cutlery',
'dashboard',
'dashcube',
'database',
'dedent',
'delicious',
'desktop',
'deviantart',
'diamond',
'digg',
'dollar',
'dot-circle-o',
'download',
'dribbble',
'dropbox',
'drupal',
'edit',
'eject',
'ellipsis-h',
'ellipsis-v',
'empire',
'envelope',
'envelope-o',
'envelope-square',
'eraser',
'eur',
'euro',
'exchange',
'exclamation',
'exclamation-circle',
'exclamation-triangle',
'expand',
'external-link',
'external-link-square',
'eye',
'eye-slash',
'eyedropper',
'facebook',
'facebook-f',
'facebook-official',
'facebook-square',
'fast-backward',
'fast-forward',
'fax',
'female',
'fighter-jet',
'file',
'file-archive-o',
'file-audio-o',
'file-code-o',
'file-excel-o',
'file-image-o',
'file-movie-o',
'file-o',
'file-pdf-o',
'file-photo-o',
'file-picture-o',
'file-powerpoint-o',
'file-sound-o',
'file-text',
'file-text-o',
'file-video-o',
'file-word-o',
'file-zip-o',
'files-o',
'film',
'filter',
'fire',
'fire-extinguisher',
'flag',
'flag-checkered',
'flag-o',
'flash',
'flask',
'flickr',
'floppy-o',
'folder',
'folder-o',
'folder-open',
'folder-open-o',
'font',
'forumbee',
'forward',
'foursquare',
'frown-o',
'futbol-o',
'gamepad',
'gavel',
'gbp',
'ge',
'gear',
'gears',
'genderless',
'gift',
'git',
'git-square',
'github',
'github-alt',
'github-square',
'gittip',
'glass',
'globe',
'google',
'google-plus',
'google-plus-square',
'google-wallet',
'graduation-cap',
'gratipay',
'group',
'h-square',
'hacker-news',
'hand-o-down',
'hand-o-left',
'hand-o-right',
'hand-o-up',
'hdd-o',
'header',
'headphones',
'heart',
'heart-o',
'heartbeat',
'history',
'home',
'hospital-o',
'hotel',
'html5',
'ils',
'image',
'inbox',
'indent',
'info',
'info-circle',
'inr',
'instagram',
'institution',
'ioxhost',
'italic',
'joomla',
'jpy',
'jsfiddle',
'key',
'keyboard-o',
'krw',
'language',
'laptop',
'lastfm',
'lastfm-square',
'leaf',
'leanpub',
'legal',
'lemon-o',
'level-down',
'level-up',
'life-bouy',
'life-buoy',
'life-ring',
'life-saver',
'lightbulb-o',
'line-chart',
'link',
'linkedin',
'linkedin-square',
'linux',
'list',
'list-alt',
'list-ol',
'list-ul',
'location-arrow',
'lock',
'long-arrow-down',
'long-arrow-left',
'long-arrow-right',
'long-arrow-up',
'magic',
'magnet',
'mail-forward',
'mail-reply',
'mail-reply-all',
'male',
'map-marker',
'mars',
'mars-double',
'mars-stroke',
'mars-stroke-h',
'mars-stroke-v',
'maxcdn',
'meanpath',
'medium',
'medkit',
'meh-o',
'mercury',
'microphone',
'microphone-slash',
'minus',
'minus-circle',
'minus-square',
'minus-square-o',
'mobile',
'mobile-phone',
'money',
'moon-o',
'mortar-board',
'motorcycle',
'music',
'navicon',
'neuter',
'newspaper-o',
'openid',
'outdent',
'pagelines',
'paint-brush',
'paper-plane',
'paper-plane-o',
'paperclip',
'paragraph',
'paste',
'pause',
'paw',
'paypal',
'pencil',
'pencil-square',
'pencil-square-o',
'phone',
'phone-square',
'photo',
'picture-o',
'pie-chart',
'pied-piper',
'pied-piper-alt',
'pinterest',
'pinterest-p',
'pinterest-square',
'plane',
'play',
'play-circle',
'play-circle-o',
'plug',
'plus',
'plus-circle',
'plus-square',
'plus-square-o',
'power-off',
'print',
'puzzle-piece',
'qq',
'qrcode',
'question',
'question-circle',
'quote-left',
'quote-right',
'ra',
'random',
'rebel',
'recycle',
'reddit',
'reddit-square',
'refresh',
'remove',
'renren',
'reorder',
'repeat',
'reply',
'reply-all',
'retweet',
'rmb',
'road',
'rocket',
'rotate-left',
'rotate-right',
'rouble',
'rss',
'rss-square',
'rub',
'ruble',
'rupee',
'save',
'scissors',
'search',
'search-minus',
'search-plus',
'sellsy',
'send',
'send-o',
'server',
'share',
'share-alt',
'share-alt-square',
'share-square',
'share-square-o',
'shekel',
'sheqel',
'shield',
'ship',
'shirtsinbulk',
'shopping-cart',
'sign-in',
'sign-out',
'signal',
'simplybuilt',
'sitemap',
'skyatlas',
'skype',
'slack',
'sliders',
'slideshare',
'smile-o',
'soccer-ball-o',
'sort',
'sort-alpha-asc',
'sort-alpha-desc',
'sort-amount-asc',
'sort-amount-desc',
'sort-asc',
'sort-desc',
'sort-down',
'sort-numeric-asc',
'sort-numeric-desc',
'sort-up',
'soundcloud',
'space-shuttle',
'spinner',
'spoon',
'spotify',
'square',
'square-o',
'stack-exchange',
'stack-overflow',
'star',
'star-half',
'star-half-empty',
'star-half-full',
'star-half-o',
'star-o',
'steam',
'steam-square',
'step-backward',
'step-forward',
'stethoscope',
'stop',
'street-view',
'strikethrough',
'stumbleupon',
'stumbleupon-circle',
'subscript',
'subway',
'suitcase',
'sun-o',
'superscript',
'support',
'table',
'tablet',
'tachometer',
'tag',
'tags',
'tasks',
'taxi',
'tencent-weibo',
'terminal',
'text-height',
'text-width',
'th',
'th-large',
'th-list',
'thumb-tack',
'thumbs-down',
'thumbs-o-down',
'thumbs-o-up',
'thumbs-up',
'ticket',
'times',
'times-circle',
'times-circle-o',
'tint',
'toggle-down',
'toggle-left',
'toggle-off',
'toggle-on',
'toggle-right',
'toggle-up',
'train',
'transgender',
'transgender-alt',
'trash',
'trash-o',
'tree',
'trello',
'trophy',
'truck',
'try',
'tty',
'tumblr',
'tumblr-square',
'turkish-lira',
'twitch',
'twitter',
'twitter-square',
'umbrella',
'underline',
'undo',
'university',
'unlink',
'unlock',
'unlock-alt',
'unsorted',
'upload',
'usd',
'user',
'user-md',
'user-plus',
'user-secret',
'user-times',
'users',
'venus',
'venus-double',
'venus-mars',
'viacoin',
'video-camera',
'vimeo-square',
'vine',
'vk',
'volume-down',
'volume-off',
'volume-up',
'warning',
'wechat',
'weibo',
'weixin',
'whatsapp',
'wheelchair',
'wifi',
'windows',
'won',
'wordpress',
'wrench',
'xing',
'xing-square',
'yahoo',
'yelp',
'yen',
'youtube',
'youtube-play',
'youtube-square'
]
};
})(jQuery);

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,697 @@
/*!========================================================================
* Bootstrap: iconset-fontawesome-4.4.0.js by @michaelbilcot
* https://victor-valencia.github.com/bootstrap-iconpicker
*
* Iconset: Font Awesome 4.4.0
* http://fortawesome.github.io/Font-Awesome/
* ========================================================================
* Copyright 2013-2017 Victor Valencia Rico.
* Licensed under MIT license.
* https://github.com/victor-valencia/bootstrap-iconpicker/blob/master/LICENSE
* ======================================================================== */
;(function($){
$.iconset_fontawesome = {
iconClass: 'fa',
iconClassFix: 'fa-',
icons: [
'',
'500px',
'adjust',
'adn',
'align-center',
'align-justify',
'align-left',
'align-right',
'amazon',
'ambulance',
'anchor',
'android',
'angellist',
'angle-double-down',
'angle-double-left',
'angle-double-right',
'angle-double-up',
'angle-down',
'angle-left',
'angle-right',
'angle-up',
'apple',
'archive',
'area-chart',
'arrow-circle-down',
'arrow-circle-left',
'arrow-circle-o-down',
'arrow-circle-o-left',
'arrow-circle-o-right',
'arrow-circle-o-up',
'arrow-circle-right',
'arrow-circle-up',
'arrow-down',
'arrow-left',
'arrow-right',
'arrow-up',
'arrows',
'arrows-alt',
'arrows-h',
'arrows-v',
'asterisk',
'at',
'automobile',
'backward',
'balance-scale',
'ban',
'bank',
'bar-chart',
'bar-chart-o',
'barcode',
'bars',
'battery-0',
'battery-1',
'battery-2',
'battery-3',
'battery-4',
'battery-empty',
'battery-full',
'battery-half',
'battery-quarter',
'battery-three-quarters',
'bed',
'beer',
'behance',
'behance-square',
'bell',
'bell-o',
'bell-slash',
'bell-slash-o',
'bicycle',
'binoculars',
'birthday-cake',
'bitbucket',
'bitbucket-square',
'bitcoin',
'black-tie',
'bold',
'bolt',
'bomb',
'book',
'bookmark',
'bookmark-o',
'briefcase',
'btc',
'bug',
'building',
'building-o',
'bullhorn',
'bullseye',
'bus',
'buysellads',
'cab',
'calculator',
'calendar',
'calendar-check-o',
'calendar-minus-o',
'calendar-o',
'calendar-plus-o',
'calendar-times-o',
'camera',
'camera-retro',
'car',
'caret-down',
'caret-left',
'caret-right',
'caret-square-o-down',
'caret-square-o-left',
'caret-square-o-right',
'caret-square-o-up',
'caret-up',
'cart-arrow-down',
'cart-plus',
'cc',
'cc-amex',
'cc-diners-club',
'cc-discover',
'cc-jcb',
'cc-mastercard',
'cc-paypal',
'cc-stripe',
'cc-visa',
'certificate',
'chain',
'chain-broken',
'check',
'check-circle',
'check-circle-o',
'check-square',
'check-square-o',
'chevron-circle-down',
'chevron-circle-left',
'chevron-circle-right',
'chevron-circle-up',
'chevron-down',
'chevron-left',
'chevron-right',
'chevron-up',
'child',
'chrome',
'circle',
'circle-o',
'circle-o-notch',
'circle-thin',
'clipboard',
'clock-o',
'clone',
'close',
'cloud',
'cloud-download',
'cloud-upload',
'cny',
'code',
'code-fork',
'codepen',
'coffee',
'cog',
'cogs',
'columns',
'comment',
'comment-o',
'commenting',
'commenting-o',
'comments',
'comments-o',
'compass',
'compress',
'connectdevelop',
'contao',
'copy',
'copyright',
'creative-commons',
'credit-card',
'crop',
'crosshairs',
'css3',
'cube',
'cubes',
'cut',
'cutlery',
'dashboard',
'dashcube',
'database',
'dedent',
'delicious',
'desktop',
'deviantart',
'diamond',
'digg',
'dollar',
'dot-circle-o',
'download',
'dribbble',
'dropbox',
'drupal',
'edit',
'eject',
'ellipsis-h',
'ellipsis-v',
'empire',
'envelope',
'envelope-o',
'envelope-square',
'eraser',
'eur',
'euro',
'exchange',
'exclamation',
'exclamation-circle',
'exclamation-triangle',
'expand',
'expeditedssl',
'external-link',
'external-link-square',
'eye',
'eye-slash',
'eyedropper',
'facebook',
'facebook-f',
'facebook-official',
'facebook-square',
'fast-backward',
'fast-forward',
'fax',
'feed',
'female',
'fighter-jet',
'file',
'file-archive-o',
'file-audio-o',
'file-code-o',
'file-excel-o',
'file-image-o',
'file-movie-o',
'file-o',
'file-pdf-o',
'file-photo-o',
'file-picture-o',
'file-powerpoint-o',
'file-sound-o',
'file-text',
'file-text-o',
'file-video-o',
'file-word-o',
'file-zip-o',
'files-o',
'film',
'filter',
'fire',
'fire-extinguisher',
'firefox',
'flag',
'flag-checkered',
'flag-o',
'flash',
'flask',
'flickr',
'floppy-o',
'folder',
'folder-o',
'folder-open',
'folder-open-o',
'font',
'fonticons',
'forumbee',
'forward',
'foursquare',
'frown-o',
'futbol-o',
'gamepad',
'gavel',
'gbp',
'ge',
'gear',
'gears',
'genderless',
'get-pocket',
'gg',
'gg-circle',
'gift',
'git',
'git-square',
'github',
'github-alt',
'github-square',
'gittip',
'glass',
'globe',
'google',
'google-plus',
'google-plus-square',
'google-wallet',
'graduation-cap',
'gratipay',
'group',
'h-square',
'hacker-news',
'hand-grab-o',
'hand-lizard-o',
'hand-o-down',
'hand-o-left',
'hand-o-right',
'hand-o-up',
'hand-paper-o',
'hand-peace-o',
'hand-pointer-o',
'hand-rock-o',
'hand-scissors-o',
'hand-spock-o',
'hand-stop-o',
'hdd-o',
'header',
'headphones',
'heart',
'heart-o',
'heartbeat',
'history',
'home',
'hospital-o',
'hotel',
'hourglass',
'hourglass-1',
'hourglass-2',
'hourglass-3',
'hourglass-end',
'hourglass-half',
'hourglass-o',
'hourglass-start',
'houzz',
'html5',
'i-cursor',
'ils',
'image',
'inbox',
'indent',
'industry',
'info',
'info-circle',
'inr',
'instagram',
'institution',
'internet-explorer',
'intersex',
'ioxhost',
'italic',
'joomla',
'jpy',
'jsfiddle',
'key',
'keyboard-o',
'krw',
'language',
'laptop',
'lastfm',
'lastfm-square',
'leaf',
'leanpub',
'legal',
'lemon-o',
'level-down',
'level-up',
'life-bouy',
'life-buoy',
'life-ring',
'life-saver',
'lightbulb-o',
'line-chart',
'link',
'linkedin',
'linkedin-square',
'linux',
'list',
'list-alt',
'list-ol',
'list-ul',
'location-arrow',
'lock',
'long-arrow-down',
'long-arrow-left',
'long-arrow-right',
'long-arrow-up',
'magic',
'magnet',
'mail-forward',
'mail-reply',
'mail-reply-all',
'male',
'map',
'map-marker',
'map-o',
'map-pin',
'map-signs',
'mars',
'mars-double',
'mars-stroke',
'mars-stroke-h',
'mars-stroke-v',
'maxcdn',
'meanpath',
'medium',
'medkit',
'meh-o',
'mercury',
'microphone',
'microphone-slash',
'minus',
'minus-circle',
'minus-square',
'minus-square-o',
'mobile',
'mobile-phone',
'money',
'moon-o',
'mortar-board',
'motorcycle',
'mouse-pointer',
'music',
'navicon',
'neuter',
'newspaper-o',
'object-group',
'object-ungroup',
'odnoklassniki',
'odnoklassniki-square',
'opencart',
'openid',
'opera',
'optin-monster',
'outdent',
'pagelines',
'paint-brush',
'paper-plane',
'paper-plane-o',
'paperclip',
'paragraph',
'paste',
'pause',
'paw',
'paypal',
'pencil',
'pencil-square',
'pencil-square-o',
'phone',
'phone-square',
'photo',
'picture-o',
'pie-chart',
'pied-piper',
'pied-piper-alt',
'pinterest',
'pinterest-p',
'pinterest-square',
'plane',
'play',
'play-circle',
'play-circle-o',
'plug',
'plus',
'plus-circle',
'plus-square',
'plus-square-o',
'power-off',
'print',
'puzzle-piece',
'qq',
'qrcode',
'question',
'question-circle',
'quote-left',
'quote-right',
'ra',
'random',
'rebel',
'recycle',
'reddit',
'reddit-square',
'refresh',
'registered',
'remove',
'renren',
'reorder',
'repeat',
'reply',
'reply-all',
'retweet',
'rmb',
'road',
'rocket',
'rotate-left',
'rotate-right',
'rouble',
'rss',
'rss-square',
'rub',
'ruble',
'rupee',
'safari',
'save',
'scissors',
'search',
'search-minus',
'search-plus',
'sellsy',
'send',
'send-o',
'server',
'share',
'share-alt',
'share-alt-square',
'share-square',
'share-square-o',
'shekel',
'sheqel',
'shield',
'ship',
'shirtsinbulk',
'shopping-cart',
'sign-in',
'sign-out',
'signal',
'simplybuilt',
'sitemap',
'skyatlas',
'skype',
'slack',
'sliders',
'slideshare',
'smile-o',
'soccer-ball-o',
'sort',
'sort-alpha-asc',
'sort-alpha-desc',
'sort-amount-asc',
'sort-amount-desc',
'sort-asc',
'sort-desc',
'sort-down',
'sort-numeric-asc',
'sort-numeric-desc',
'sort-up',
'soundcloud',
'space-shuttle',
'spinner',
'spoon',
'spotify',
'square',
'square-o',
'stack-exchange',
'stack-overflow',
'star',
'star-half',
'star-half-empty',
'star-half-full',
'star-half-o',
'star-o',
'steam',
'steam-square',
'step-backward',
'step-forward',
'stethoscope',
'sticky-note',
'sticky-note-o',
'stop',
'street-view',
'strikethrough',
'stumbleupon',
'stumbleupon-circle',
'subscript',
'subway',
'suitcase',
'sun-o',
'superscript',
'support',
'table',
'tablet',
'tachometer',
'tag',
'tags',
'tasks',
'taxi',
'television',
'tencent-weibo',
'terminal',
'text-height',
'text-width',
'th',
'th-large',
'th-list',
'thumb-tack',
'thumbs-down',
'thumbs-o-down',
'thumbs-o-up',
'thumbs-up',
'ticket',
'times',
'times-circle',
'times-circle-o',
'tint',
'toggle-down',
'toggle-left',
'toggle-off',
'toggle-on',
'toggle-right',
'toggle-up',
'trademark',
'train',
'transgender',
'transgender-alt',
'trash',
'trash-o',
'tree',
'trello',
'tripadvisor',
'trophy',
'truck',
'try',
'tty',
'tumblr',
'tumblr-square',
'turkish-lira',
'tv',
'twitch',
'twitter',
'twitter-square',
'umbrella',
'underline',
'undo',
'university',
'unlink',
'unlock',
'unlock-alt',
'unsorted',
'upload',
'usd',
'user',
'user-md',
'user-plus',
'user-secret',
'user-times',
'users',
'venus',
'venus-double',
'venus-mars',
'viacoin',
'video-camera',
'vimeo',
'vimeo-square',
'vine',
'vk',
'volume-down',
'volume-off',
'volume-up',
'warning',
'wechat',
'weibo',
'weixin',
'whatsapp',
'wheelchair',
'wifi',
'wikipedia-w',
'windows',
'won',
'wordpress',
'wrench',
'xing',
'xing-square',
'y-combinator',
'y-combinator-square',
'yahoo',
'yc',
'yc-square',
'yelp',
'yen',
'youtube',
'youtube-play',
'youtube-square'
]
};
})(jQuery);

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,717 @@
/*!========================================================================
* Bootstrap: iconset-fontawesome-4.5.0.js by @michaelbilcot
* https://victor-valencia.github.com/bootstrap-iconpicker
*
* Iconset: Font Awesome 4.5.0
* http://fortawesome.github.io/Font-Awesome/
* ========================================================================
* Copyright 2013-2017 Victor Valencia Rico.
* Licensed under MIT license.
* https://github.com/victor-valencia/bootstrap-iconpicker/blob/master/LICENSE
* ======================================================================== */
;(function($){
$.iconset_fontawesome = {
iconClass: 'fa',
iconClassFix: 'fa-',
icons: [
'',
'500px',
'adjust',
'adn',
'align-center',
'align-justify',
'align-left',
'align-right',
'amazon',
'ambulance',
'anchor',
'android',
'angellist',
'angle-double-down',
'angle-double-left',
'angle-double-right',
'angle-double-up',
'angle-down',
'angle-left',
'angle-right',
'angle-up',
'apple',
'archive',
'area-chart',
'arrow-circle-down',
'arrow-circle-left',
'arrow-circle-o-down',
'arrow-circle-o-left',
'arrow-circle-o-right',
'arrow-circle-o-up',
'arrow-circle-right',
'arrow-circle-up',
'arrow-down',
'arrow-left',
'arrow-right',
'arrow-up',
'arrows',
'arrows-alt',
'arrows-h',
'arrows-v',
'asterisk',
'at',
'automobile',
'backward',
'balance-scale',
'ban',
'bank',
'bar-chart',
'bar-chart-o',
'barcode',
'bars',
'battery-0',
'battery-1',
'battery-2',
'battery-3',
'battery-4',
'battery-empty',
'battery-full',
'battery-half',
'battery-quarter',
'battery-three-quarters',
'bed',
'beer',
'behance',
'behance-square',
'bell',
'bell-o',
'bell-slash',
'bell-slash-o',
'bicycle',
'binoculars',
'birthday-cake',
'bitbucket',
'bitbucket-square',
'bitcoin',
'black-tie',
'bluetooth',
'bluetooth-b',
'bold',
'bolt',
'bomb',
'book',
'bookmark',
'bookmark-o',
'briefcase',
'btc',
'bug',
'building',
'building-o',
'bullhorn',
'bullseye',
'bus',
'buysellads',
'cab',
'calculator',
'calendar',
'calendar-check-o',
'calendar-minus-o',
'calendar-o',
'calendar-plus-o',
'calendar-times-o',
'camera',
'camera-retro',
'car',
'caret-down',
'caret-left',
'caret-right',
'caret-square-o-down',
'caret-square-o-left',
'caret-square-o-right',
'caret-square-o-up',
'caret-up',
'cart-arrow-down',
'cart-plus',
'cc',
'cc-amex',
'cc-diners-club',
'cc-discover',
'cc-jcb',
'cc-mastercard',
'cc-paypal',
'cc-stripe',
'cc-visa',
'certificate',
'chain',
'chain-broken',
'check',
'check-circle',
'check-circle-o',
'check-square',
'check-square-o',
'chevron-circle-down',
'chevron-circle-left',
'chevron-circle-right',
'chevron-circle-up',
'chevron-down',
'chevron-left',
'chevron-right',
'chevron-up',
'child',
'chrome',
'circle',
'circle-o',
'circle-o-notch',
'circle-thin',
'clipboard',
'clock-o',
'clone',
'close',
'cloud',
'cloud-download',
'cloud-upload',
'cny',
'code',
'code-fork',
'codepen',
'codiepie',
'coffee',
'cog',
'cogs',
'columns',
'comment',
'comment-o',
'commenting',
'commenting-o',
'comments',
'comments-o',
'compass',
'compress',
'connectdevelop',
'contao',
'copy',
'copyright',
'creative-commons',
'credit-card',
'credit-card-alt',
'crop',
'crosshairs',
'css3',
'cube',
'cubes',
'cut',
'cutlery',
'dashboard',
'dashcube',
'database',
'dedent',
'delicious',
'desktop',
'deviantart',
'diamond',
'digg',
'dollar',
'dot-circle-o',
'download',
'dribbble',
'dropbox',
'drupal',
'edge',
'edit',
'eject',
'ellipsis-h',
'ellipsis-v',
'empire',
'envelope',
'envelope-o',
'envelope-square',
'eraser',
'eur',
'euro',
'exchange',
'exclamation',
'exclamation-circle',
'exclamation-triangle',
'expand',
'expeditedssl',
'external-link',
'external-link-square',
'eye',
'eye-slash',
'eyedropper',
'facebook',
'facebook-f',
'facebook-official',
'facebook-square',
'fast-backward',
'fast-forward',
'fax',
'feed',
'female',
'fighter-jet',
'file',
'file-archive-o',
'file-audio-o',
'file-code-o',
'file-excel-o',
'file-image-o',
'file-movie-o',
'file-o',
'file-pdf-o',
'file-photo-o',
'file-picture-o',
'file-powerpoint-o',
'file-sound-o',
'file-text',
'file-text-o',
'file-video-o',
'file-word-o',
'file-zip-o',
'files-o',
'film',
'filter',
'fire',
'fire-extinguisher',
'firefox',
'flag',
'flag-checkered',
'flag-o',
'flash',
'flask',
'flickr',
'floppy-o',
'folder',
'folder-o',
'folder-open',
'folder-open-o',
'font',
'fonticons',
'fort-awesome',
'forumbee',
'forward',
'foursquare',
'frown-o',
'futbol-o',
'gamepad',
'gavel',
'gbp',
'ge',
'gear',
'gears',
'genderless',
'get-pocket',
'gg',
'gg-circle',
'gift',
'git',
'git-square',
'github',
'github-alt',
'github-square',
'gittip',
'glass',
'globe',
'google',
'google-plus',
'google-plus-square',
'google-wallet',
'graduation-cap',
'gratipay',
'group',
'h-square',
'hacker-news',
'hand-grab-o',
'hand-lizard-o',
'hand-o-down',
'hand-o-left',
'hand-o-right',
'hand-o-up',
'hand-paper-o',
'hand-peace-o',
'hand-pointer-o',
'hand-rock-o',
'hand-scissors-o',
'hand-spock-o',
'hand-stop-o',
'hashtag',
'hdd-o',
'header',
'headphones',
'heart',
'heart-o',
'heartbeat',
'history',
'home',
'hospital-o',
'hotel',
'hourglass',
'hourglass-1',
'hourglass-2',
'hourglass-3',
'hourglass-end',
'hourglass-half',
'hourglass-o',
'hourglass-start',
'houzz',
'html5',
'i-cursor',
'ils',
'image',
'inbox',
'indent',
'industry',
'info',
'info-circle',
'inr',
'instagram',
'institution',
'internet-explorer',
'intersex',
'ioxhost',
'italic',
'joomla',
'jpy',
'jsfiddle',
'key',
'keyboard-o',
'krw',
'language',
'laptop',
'lastfm',
'lastfm-square',
'leaf',
'leanpub',
'legal',
'lemon-o',
'level-down',
'level-up',
'life-bouy',
'life-buoy',
'life-ring',
'life-saver',
'lightbulb-o',
'line-chart',
'link',
'linkedin',
'linkedin-square',
'linux',
'list',
'list-alt',
'list-ol',
'list-ul',
'location-arrow',
'lock',
'long-arrow-down',
'long-arrow-left',
'long-arrow-right',
'long-arrow-up',
'magic',
'magnet',
'mail-forward',
'mail-reply',
'mail-reply-all',
'male',
'map',
'map-marker',
'map-o',
'map-pin',
'map-signs',
'mars',
'mars-double',
'mars-stroke',
'mars-stroke-h',
'mars-stroke-v',
'maxcdn',
'meanpath',
'medium',
'medkit',
'meh-o',
'mercury',
'microphone',
'microphone-slash',
'minus',
'minus-circle',
'minus-square',
'minus-square-o',
'mixcloud',
'mobile',
'mobile-phone',
'modx',
'money',
'moon-o',
'mortar-board',
'motorcycle',
'mouse-pointer',
'music',
'navicon',
'neuter',
'newspaper-o',
'object-group',
'object-ungroup',
'odnoklassniki',
'odnoklassniki-square',
'opencart',
'openid',
'opera',
'optin-monster',
'outdent',
'pagelines',
'paint-brush',
'paper-plane',
'paper-plane-o',
'paperclip',
'paragraph',
'paste',
'pause',
'pause-circle',
'pause-circle-o',
'paw',
'paypal',
'pencil',
'pencil-square',
'pencil-square-o',
'percent',
'phone',
'phone-square',
'photo',
'picture-o',
'pie-chart',
'pied-piper',
'pied-piper-alt',
'pinterest',
'pinterest-p',
'pinterest-square',
'plane',
'play',
'play-circle',
'play-circle-o',
'plug',
'plus',
'plus-circle',
'plus-square',
'plus-square-o',
'power-off',
'print',
'product-hunt',
'puzzle-piece',
'qq',
'qrcode',
'question',
'question-circle',
'quote-left',
'quote-right',
'ra',
'random',
'rebel',
'recycle',
'reddit',
'reddit-alien',
'reddit-square',
'refresh',
'registered',
'remove',
'renren',
'reorder',
'repeat',
'reply',
'reply-all',
'retweet',
'rmb',
'road',
'rocket',
'rotate-left',
'rotate-right',
'rouble',
'rss',
'rss-square',
'rub',
'ruble',
'rupee',
'safari',
'save',
'scissors',
'scribd',
'search',
'search-minus',
'search-plus',
'sellsy',
'send',
'send-o',
'server',
'share',
'share-alt',
'share-alt-square',
'share-square',
'share-square-o',
'shekel',
'sheqel',
'shield',
'ship',
'shirtsinbulk',
'shopping-bag',
'shopping-basket',
'shopping-cart',
'sign-in',
'sign-out',
'signal',
'simplybuilt',
'sitemap',
'skyatlas',
'skype',
'slack',
'sliders',
'slideshare',
'smile-o',
'soccer-ball-o',
'sort',
'sort-alpha-asc',
'sort-alpha-desc',
'sort-amount-asc',
'sort-amount-desc',
'sort-asc',
'sort-desc',
'sort-down',
'sort-numeric-asc',
'sort-numeric-desc',
'sort-up',
'soundcloud',
'space-shuttle',
'spinner',
'spoon',
'spotify',
'square',
'square-o',
'stack-exchange',
'stack-overflow',
'star',
'star-half',
'star-half-empty',
'star-half-full',
'star-half-o',
'star-o',
'steam',
'steam-square',
'step-backward',
'step-forward',
'stethoscope',
'sticky-note',
'sticky-note-o',
'stop',
'stop-circle',
'stop-circle-o',
'street-view',
'strikethrough',
'stumbleupon',
'stumbleupon-circle',
'subscript',
'subway',
'suitcase',
'sun-o',
'superscript',
'support',
'table',
'tablet',
'tachometer',
'tag',
'tags',
'tasks',
'taxi',
'television',
'tencent-weibo',
'terminal',
'text-height',
'text-width',
'th',
'th-large',
'th-list',
'thumb-tack',
'thumbs-down',
'thumbs-o-down',
'thumbs-o-up',
'thumbs-up',
'ticket',
'times',
'times-circle',
'times-circle-o',
'tint',
'toggle-down',
'toggle-left',
'toggle-off',
'toggle-on',
'toggle-right',
'toggle-up',
'trademark',
'train',
'transgender',
'transgender-alt',
'trash',
'trash-o',
'tree',
'trello',
'tripadvisor',
'trophy',
'truck',
'try',
'tty',
'tumblr',
'tumblr-square',
'turkish-lira',
'tv',
'twitch',
'twitter',
'twitter-square',
'umbrella',
'underline',
'undo',
'university',
'unlink',
'unlock',
'unlock-alt',
'unsorted',
'upload',
'usb',
'usd',
'user',
'user-md',
'user-plus',
'user-secret',
'user-times',
'users',
'venus',
'venus-double',
'venus-mars',
'viacoin',
'video-camera',
'vimeo',
'vimeo-square',
'vine',
'vk',
'volume-down',
'volume-off',
'volume-up',
'warning',
'wechat',
'weibo',
'weixin',
'whatsapp',
'wheelchair',
'wifi',
'wikipedia-w',
'windows',
'won',
'wordpress',
'wrench',
'xing',
'xing-square',
'y-combinator',
'y-combinator-square',
'yahoo',
'yc',
'yc-square',
'yelp',
'yen',
'youtube',
'youtube-play',
'youtube-square'
]
};
})(jQuery);

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,744 @@
/*!========================================================================
* Bootstrap: iconset-fontawesome-4.6.0.js by @michaelbilcot
* https://victor-valencia.github.com/bootstrap-iconpicker
*
* Iconset: Font Awesome 4.6.0
* http://fortawesome.github.io/Font-Awesome/
* ========================================================================
* Copyright 2013-2017 Victor Valencia Rico.
* Licensed under MIT license.
* https://github.com/victor-valencia/bootstrap-iconpicker/blob/master/LICENSE
* ======================================================================== */
;(function($){
$.iconset_fontawesome = {
iconClass: 'fa',
iconClassFix: 'fa-',
icons: [
'',
'500px',
'adjust',
'adn',
'align-center',
'align-justify',
'align-left',
'align-right',
'amazon',
'ambulance',
'american-sign-language-interpreting',
'anchor',
'android',
'angellist',
'angle-double-down',
'angle-double-left',
'angle-double-right',
'angle-double-up',
'angle-down',
'angle-left',
'angle-right',
'angle-up',
'apple',
'archive',
'area-chart',
'arrow-circle-down',
'arrow-circle-left',
'arrow-circle-o-down',
'arrow-circle-o-left',
'arrow-circle-o-right',
'arrow-circle-o-up',
'arrow-circle-right',
'arrow-circle-up',
'arrow-down',
'arrow-left',
'arrow-right',
'arrow-up',
'arrows',
'arrows-alt',
'arrows-h',
'arrows-v',
'asl-interpreting',
'assistive-listening-systems',
'asterisk',
'at',
'audio-description',
'automobile',
'backward',
'balance-scale',
'ban',
'bank',
'bar-chart',
'bar-chart-o',
'barcode',
'bars',
'battery-0',
'battery-1',
'battery-2',
'battery-3',
'battery-4',
'battery-empty',
'battery-full',
'battery-half',
'battery-quarter',
'battery-three-quarters',
'bed',
'beer',
'behance',
'behance-square',
'bell',
'bell-o',
'bell-slash',
'bell-slash-o',
'bicycle',
'binoculars',
'birthday-cake',
'bitbucket',
'bitbucket-square',
'bitcoin',
'black-tie',
'blind',
'bluetooth',
'bluetooth-b',
'bold',
'bolt',
'bomb',
'book',
'bookmark',
'bookmark-o',
'braille',
'briefcase',
'btc',
'bug',
'building',
'building-o',
'bullhorn',
'bullseye',
'bus',
'buysellads',
'cab',
'calculator',
'calendar',
'calendar-check-o',
'calendar-minus-o',
'calendar-o',
'calendar-plus-o',
'calendar-times-o',
'camera',
'camera-retro',
'car',
'caret-down',
'caret-left',
'caret-right',
'caret-square-o-down',
'caret-square-o-left',
'caret-square-o-right',
'caret-square-o-up',
'caret-up',
'cart-arrow-down',
'cart-plus',
'cc',
'cc-amex',
'cc-diners-club',
'cc-discover',
'cc-jcb',
'cc-mastercard',
'cc-paypal',
'cc-stripe',
'cc-visa',
'certificate',
'chain',
'chain-broken',
'check',
'check-circle',
'check-circle-o',
'check-square',
'check-square-o',
'chevron-circle-down',
'chevron-circle-left',
'chevron-circle-right',
'chevron-circle-up',
'chevron-down',
'chevron-left',
'chevron-right',
'chevron-up',
'child',
'chrome',
'circle',
'circle-o',
'circle-o-notch',
'circle-thin',
'clipboard',
'clock-o',
'clone',
'close',
'cloud',
'cloud-download',
'cloud-upload',
'cny',
'code',
'code-fork',
'codepen',
'codiepie',
'coffee',
'cog',
'cogs',
'columns',
'comment',
'comment-o',
'commenting',
'commenting-o',
'comments',
'comments-o',
'compass',
'compress',
'connectdevelop',
'contao',
'copy',
'copyright',
'creative-commons',
'credit-card',
'credit-card-alt',
'crop',
'crosshairs',
'css3',
'cube',
'cubes',
'cut',
'cutlery',
'dashboard',
'dashcube',
'database',
'deaf',
'deafness',
'dedent',
'delicious',
'desktop',
'deviantart',
'diamond',
'digg',
'dollar',
'dot-circle-o',
'download',
'dribbble',
'dropbox',
'drupal',
'edge',
'edit',
'eject',
'ellipsis-h',
'ellipsis-v',
'empire',
'envelope',
'envelope-o',
'envelope-square',
'envira',
'eraser',
'eur',
'euro',
'exchange',
'exclamation',
'exclamation-circle',
'exclamation-triangle',
'expand',
'expeditedssl',
'external-link',
'external-link-square',
'eye',
'eye-slash',
'eyedropper',
'facebook',
'facebook-f',
'facebook-official',
'facebook-square',
'fast-backward',
'fast-forward',
'fax',
'feed',
'female',
'fighter-jet',
'file',
'file-archive-o',
'file-audio-o',
'file-code-o',
'file-excel-o',
'file-image-o',
'file-movie-o',
'file-o',
'file-pdf-o',
'file-photo-o',
'file-picture-o',
'file-powerpoint-o',
'file-sound-o',
'file-text',
'file-text-o',
'file-video-o',
'file-word-o',
'file-zip-o',
'files-o',
'film',
'filter',
'fire',
'fire-extinguisher',
'firefox',
'flag',
'flag-checkered',
'flag-o',
'flash',
'flask',
'flickr',
'floppy-o',
'folder',
'folder-o',
'folder-open',
'folder-open-o',
'font',
'fonticons',
'fort-awesome',
'forumbee',
'forward',
'foursquare',
'frown-o',
'futbol-o',
'gamepad',
'gavel',
'gbp',
'ge',
'gear',
'gears',
'genderless',
'get-pocket',
'gg',
'gg-circle',
'gift',
'git',
'git-square',
'github',
'github-alt',
'github-square',
'gitlab',
'gittip',
'glass',
'glide',
'glide-g',
'globe',
'google',
'google-plus',
'google-plus-square',
'google-wallet',
'graduation-cap',
'gratipay',
'group',
'h-square',
'hacker-news',
'hand-grab-o',
'hand-lizard-o',
'hand-o-down',
'hand-o-left',
'hand-o-right',
'hand-o-up',
'hand-paper-o',
'hand-peace-o',
'hand-pointer-o',
'hand-rock-o',
'hand-scissors-o',
'hand-spock-o',
'hand-stop-o',
'hard-of-hearing',
'hashtag',
'hdd-o',
'header',
'headphones',
'heart',
'heart-o',
'heartbeat',
'history',
'home',
'hospital-o',
'hotel',
'hourglass',
'hourglass-1',
'hourglass-2',
'hourglass-3',
'hourglass-end',
'hourglass-half',
'hourglass-o',
'hourglass-start',
'houzz',
'html5',
'i-cursor',
'ils',
'image',
'inbox',
'indent',
'industry',
'info',
'info-circle',
'inr',
'instagram',
'institution',
'internet-explorer',
'intersex',
'ioxhost',
'italic',
'joomla',
'jpy',
'jsfiddle',
'key',
'keyboard-o',
'krw',
'language',
'laptop',
'lastfm',
'lastfm-square',
'leaf',
'leanpub',
'legal',
'lemon-o',
'level-down',
'level-up',
'life-bouy',
'life-buoy',
'life-ring',
'life-saver',
'lightbulb-o',
'line-chart',
'link',
'linkedin',
'linkedin-square',
'linux',
'list',
'list-alt',
'list-ol',
'list-ul',
'location-arrow',
'lock',
'long-arrow-down',
'long-arrow-left',
'long-arrow-right',
'long-arrow-up',
'low-vision',
'magic',
'magnet',
'mail-forward',
'mail-reply',
'mail-reply-all',
'male',
'map',
'map-marker',
'map-o',
'map-pin',
'map-signs',
'mars',
'mars-double',
'mars-stroke',
'mars-stroke-h',
'mars-stroke-v',
'maxcdn',
'meanpath',
'medium',
'medkit',
'meh-o',
'mercury',
'microphone',
'microphone-slash',
'minus',
'minus-circle',
'minus-square',
'minus-square-o',
'mixcloud',
'mobile',
'mobile-phone',
'modx',
'money',
'moon-o',
'mortar-board',
'motorcycle',
'mouse-pointer',
'music',
'navicon',
'neuter',
'newspaper-o',
'object-group',
'object-ungroup',
'odnoklassniki',
'odnoklassniki-square',
'opencart',
'openid',
'opera',
'optin-monster',
'outdent',
'pagelines',
'paint-brush',
'paper-plane',
'paper-plane-o',
'paperclip',
'paragraph',
'paste',
'pause',
'pause-circle',
'pause-circle-o',
'paw',
'paypal',
'pencil',
'pencil-square',
'pencil-square-o',
'percent',
'phone',
'phone-square',
'photo',
'picture-o',
'pie-chart',
'pied-piper',
'pied-piper-alt',
'pinterest',
'pinterest-p',
'pinterest-square',
'plane',
'play',
'play-circle',
'play-circle-o',
'plug',
'plus',
'plus-circle',
'plus-square',
'plus-square-o',
'power-off',
'print',
'product-hunt',
'puzzle-piece',
'qq',
'qrcode',
'question',
'question-circle',
'question-circle-o',
'quote-left',
'quote-right',
'ra',
'random',
'rebel',
'recycle',
'reddit',
'reddit-alien',
'reddit-square',
'refresh',
'registered',
'remove',
'renren',
'reorder',
'repeat',
'reply',
'reply-all',
'retweet',
'rmb',
'road',
'rocket',
'rotate-left',
'rotate-right',
'rouble',
'rss',
'rss-square',
'rub',
'ruble',
'rupee',
'safari',
'save',
'scissors',
'scribd',
'search',
'search-minus',
'search-plus',
'sellsy',
'send',
'send-o',
'server',
'share',
'share-alt',
'share-alt-square',
'share-square',
'share-square-o',
'shekel',
'sheqel',
'shield',
'ship',
'shirtsinbulk',
'shopping-bag',
'shopping-basket',
'shopping-cart',
'sign-in',
'sign-language',
'sign-out',
'signal',
'signing',
'simplybuilt',
'sitemap',
'skyatlas',
'skype',
'slack',
'sliders',
'slideshare',
'smile-o',
'snapchat',
'snapchat-ghost',
'snapchat-square',
'soccer-ball-o',
'sort',
'sort-alpha-asc',
'sort-alpha-desc',
'sort-amount-asc',
'sort-amount-desc',
'sort-asc',
'sort-desc',
'sort-down',
'sort-numeric-asc',
'sort-numeric-desc',
'sort-up',
'soundcloud',
'space-shuttle',
'spinner',
'spoon',
'spotify',
'square',
'square-o',
'stack-exchange',
'stack-overflow',
'star',
'star-half',
'star-half-empty',
'star-half-full',
'star-half-o',
'star-o',
'steam',
'steam-square',
'step-backward',
'step-forward',
'stethoscope',
'sticky-note',
'sticky-note-o',
'stop',
'stop-circle',
'stop-circle-o',
'street-view',
'strikethrough',
'stumbleupon',
'stumbleupon-circle',
'subscript',
'subway',
'suitcase',
'sun-o',
'superscript',
'support',
'table',
'tablet',
'tachometer',
'tag',
'tags',
'tasks',
'taxi',
'television',
'tencent-weibo',
'terminal',
'text-height',
'text-width',
'th',
'th-large',
'th-list',
'thumb-tack',
'thumbs-down',
'thumbs-o-down',
'thumbs-o-up',
'thumbs-up',
'ticket',
'times',
'times-circle',
'times-circle-o',
'tint',
'toggle-down',
'toggle-left',
'toggle-off',
'toggle-on',
'toggle-right',
'toggle-up',
'trademark',
'train',
'transgender',
'transgender-alt',
'trash',
'trash-o',
'tree',
'trello',
'tripadvisor',
'trophy',
'truck',
'try',
'tty',
'tumblr',
'tumblr-square',
'turkish-lira',
'tv',
'twitch',
'twitter',
'twitter-square',
'umbrella',
'underline',
'undo',
'universal-access',
'university',
'unlink',
'unlock',
'unlock-alt',
'unsorted',
'upload',
'usb',
'usd',
'user',
'user-md',
'user-plus',
'user-secret',
'user-times',
'users',
'venus',
'venus-double',
'venus-mars',
'viacoin',
'viadeo',
'viadeo-square',
'video-camera',
'vimeo',
'vimeo-square',
'vine',
'vk',
'volume-control-phone',
'volume-down',
'volume-off',
'volume-up',
'warning',
'wechat',
'weibo',
'weixin',
'whatsapp',
'wheelchair',
'wheelchair-alt',
'wifi',
'wikipedia-w',
'windows',
'won',
'wordpress',
'wpbeginner',
'wpforms',
'wrench',
'xing',
'xing-square',
'y-combinator',
'y-combinator-square',
'yahoo',
'yc',
'yc-square',
'yelp',
'yen',
'youtube',
'youtube-play',
'youtube-square'
]
};
})(jQuery);

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,809 @@
/*!========================================================================
* Bootstrap: iconset-fontawesome-4.7.0.js by @michaelbilcot
* https://victor-valencia.github.com/bootstrap-iconpicker
*
* Iconset: Font Awesome 4.7.0
* http://fortawesome.github.io/Font-Awesome/
* ========================================================================
* Copyright 2013-2017 Victor Valencia Rico.
* Licensed under MIT license.
* https://github.com/victor-valencia/bootstrap-iconpicker/blob/master/LICENSE
* ======================================================================== */
;(function($){
$.iconset_fontawesome = {
iconClass: 'fa',
iconClassFix: 'fa-',
icons: [
'',
'500px',
'address-book',
'address-book-o',
'address-card',
'address-card-o',
'adjust',
'adn',
'align-center',
'align-justify',
'align-left',
'align-right',
'amazon',
'ambulance',
'american-sign-language-interpreting',
'anchor',
'android',
'angellist',
'angle-double-down',
'angle-double-left',
'angle-double-right',
'angle-double-up',
'angle-down',
'angle-left',
'angle-right',
'angle-up',
'apple',
'archive',
'area-chart',
'arrow-circle-down',
'arrow-circle-left',
'arrow-circle-o-down',
'arrow-circle-o-left',
'arrow-circle-o-right',
'arrow-circle-o-up',
'arrow-circle-right',
'arrow-circle-up',
'arrow-down',
'arrow-left',
'arrow-right',
'arrow-up',
'arrows',
'arrows-alt',
'arrows-h',
'arrows-v',
'asl-interpreting',
'assistive-listening-systems',
'asterisk',
'at',
'audio-description',
'automobile',
'backward',
'balance-scale',
'ban',
'bandcamp',
'bank',
'bar-chart',
'bar-chart-o',
'barcode',
'bars',
'bath',
'bathtub',
'battery',
'battery-0',
'battery-1',
'battery-2',
'battery-3',
'battery-4',
'battery-empty',
'battery-full',
'battery-half',
'battery-quarter',
'battery-three-quarters',
'bed',
'beer',
'behance',
'behance-square',
'bell',
'bell-o',
'bell-slash',
'bell-slash-o',
'bicycle',
'binoculars',
'birthday-cake',
'bitbucket',
'bitbucket-square',
'bitcoin',
'black-tie',
'blind',
'bluetooth',
'bluetooth-b',
'bold',
'bolt',
'bomb',
'book',
'bookmark',
'bookmark-o',
'braille',
'briefcase',
'btc',
'bug',
'building',
'building-o',
'bullhorn',
'bullseye',
'bus',
'buysellads',
'cab',
'calculator',
'calendar',
'calendar-check-o',
'calendar-minus-o',
'calendar-o',
'calendar-plus-o',
'calendar-times-o',
'camera',
'camera-retro',
'car',
'caret-down',
'caret-left',
'caret-right',
'caret-square-o-down',
'caret-square-o-left',
'caret-square-o-right',
'caret-square-o-up',
'caret-up',
'cart-arrow-down',
'cart-plus',
'cc',
'cc-amex',
'cc-diners-club',
'cc-discover',
'cc-jcb',
'cc-mastercard',
'cc-paypal',
'cc-stripe',
'cc-visa',
'certificate',
'chain',
'chain-broken',
'check',
'check-circle',
'check-circle-o',
'check-square',
'check-square-o',
'chevron-circle-down',
'chevron-circle-left',
'chevron-circle-right',
'chevron-circle-up',
'chevron-down',
'chevron-left',
'chevron-right',
'chevron-up',
'child',
'chrome',
'circle',
'circle-o',
'circle-o-notch',
'circle-thin',
'clipboard',
'clock-o',
'clone',
'close',
'cloud',
'cloud-download',
'cloud-upload',
'cny',
'code',
'code-fork',
'codepen',
'codiepie',
'coffee',
'cog',
'cogs',
'columns',
'comment',
'comment-o',
'commenting',
'commenting-o',
'comments',
'comments-o',
'compass',
'compress',
'connectdevelop',
'contao',
'copy',
'copyright',
'creative-commons',
'credit-card',
'credit-card-alt',
'crop',
'crosshairs',
'css3',
'cube',
'cubes',
'cut',
'cutlery',
'dashboard',
'dashcube',
'database',
'deaf',
'deafness',
'dedent',
'delicious',
'desktop',
'deviantart',
'diamond',
'digg',
'dollar',
'dot-circle-o',
'download',
'dribbble',
'drivers-license',
'drivers-license-o',
'dropbox',
'drupal',
'edge',
'edit',
'eercast',
'eject',
'ellipsis-h',
'ellipsis-v',
'empire',
'envelope',
'envelope-o',
'envelope-open',
'envelope-open-o',
'envelope-square',
'envira',
'eraser',
'etsy',
'eur',
'euro',
'exchange',
'exclamation',
'exclamation-circle',
'exclamation-triangle',
'expand',
'expeditedssl',
'external-link',
'external-link-square',
'eye',
'eye-slash',
'eyedropper',
'fa',
'facebook',
'facebook-f',
'facebook-official',
'facebook-square',
'fast-backward',
'fast-forward',
'fax',
'feed',
'female',
'fighter-jet',
'file',
'file-archive-o',
'file-audio-o',
'file-code-o',
'file-excel-o',
'file-image-o',
'file-movie-o',
'file-o',
'file-pdf-o',
'file-photo-o',
'file-picture-o',
'file-powerpoint-o',
'file-sound-o',
'file-text',
'file-text-o',
'file-video-o',
'file-word-o',
'file-zip-o',
'files-o',
'film',
'filter',
'fire',
'fire-extinguisher',
'firefox',
'first-order',
'flag',
'flag-checkered',
'flag-o',
'flash',
'flask',
'flickr',
'floppy-o',
'folder',
'folder-o',
'folder-open',
'folder-open-o',
'font',
'font-awesome',
'fonticons',
'fort-awesome',
'forumbee',
'forward',
'foursquare',
'free-code-camp',
'frown-o',
'futbol-o',
'gamepad',
'gavel',
'gbp',
'ge',
'gear',
'gears',
'genderless',
'get-pocket',
'gg',
'gg-circle',
'gift',
'git',
'git-square',
'github',
'github-alt',
'github-square',
'gitlab',
'gittip',
'glass',
'glide',
'glide-g',
'globe',
'google',
'google-plus',
'google-plus-circle',
'google-plus-official',
'google-plus-square',
'google-wallet',
'graduation-cap',
'gratipay',
'grav',
'group',
'h-square',
'hacker-news',
'hand-grab-o',
'hand-lizard-o',
'hand-o-down',
'hand-o-left',
'hand-o-right',
'hand-o-up',
'hand-paper-o',
'hand-peace-o',
'hand-pointer-o',
'hand-rock-o',
'hand-scissors-o',
'hand-spock-o',
'hand-stop-o',
'handshake-o',
'hard-of-hearing',
'hashtag',
'hdd-o',
'header',
'headphones',
'heart',
'heart-o',
'heartbeat',
'history',
'home',
'hospital-o',
'hotel',
'hourglass',
'hourglass-1',
'hourglass-2',
'hourglass-3',
'hourglass-end',
'hourglass-half',
'hourglass-o',
'hourglass-start',
'houzz',
'html5',
'i-cursor',
'id-badge',
'id-card',
'id-card-o',
'ils',
'image',
'imdb',
'inbox',
'indent',
'industry',
'info',
'info-circle',
'inr',
'instagram',
'institution',
'internet-explorer',
'intersex',
'ioxhost',
'italic',
'joomla',
'jpy',
'jsfiddle',
'key',
'keyboard-o',
'krw',
'language',
'laptop',
'lastfm',
'lastfm-square',
'leaf',
'leanpub',
'legal',
'lemon-o',
'level-down',
'level-up',
'life-bouy',
'life-buoy',
'life-ring',
'life-saver',
'lightbulb-o',
'line-chart',
'link',
'linkedin',
'linkedin-square',
'linode',
'linux',
'list',
'list-alt',
'list-ol',
'list-ul',
'location-arrow',
'lock',
'long-arrow-down',
'long-arrow-left',
'long-arrow-right',
'long-arrow-up',
'low-vision',
'magic',
'magnet',
'mail-forward',
'mail-reply',
'mail-reply-all',
'male',
'map',
'map-marker',
'map-o',
'map-pin',
'map-signs',
'mars',
'mars-double',
'mars-stroke',
'mars-stroke-h',
'mars-stroke-v',
'maxcdn',
'meanpath',
'medium',
'medkit',
'meetup',
'meh-o',
'mercury',
'microchip',
'microphone',
'microphone-slash',
'minus',
'minus-circle',
'minus-square',
'minus-square-o',
'mixcloud',
'mobile',
'mobile-phone',
'modx',
'money',
'moon-o',
'mortar-board',
'motorcycle',
'mouse-pointer',
'music',
'navicon',
'neuter',
'newspaper-o',
'object-group',
'object-ungroup',
'odnoklassniki',
'odnoklassniki-square',
'opencart',
'openid',
'opera',
'optin-monster',
'outdent',
'pagelines',
'paint-brush',
'paper-plane',
'paper-plane-o',
'paperclip',
'paragraph',
'paste',
'pause',
'pause-circle',
'pause-circle-o',
'paw',
'paypal',
'pencil',
'pencil-square',
'pencil-square-o',
'percent',
'phone',
'phone-square',
'photo',
'picture-o',
'pie-chart',
'pied-piper',
'pied-piper-alt',
'pied-piper-pp',
'pinterest',
'pinterest-p',
'pinterest-square',
'plane',
'play',
'play-circle',
'play-circle-o',
'plug',
'plus',
'plus-circle',
'plus-square',
'plus-square-o',
'podcast',
'power-off',
'print',
'product-hunt',
'puzzle-piece',
'qq',
'qrcode',
'question',
'question-circle',
'question-circle-o',
'quora',
'quote-left',
'quote-right',
'ra',
'random',
'ravelry',
'rebel',
'recycle',
'reddit',
'reddit-alien',
'reddit-square',
'refresh',
'registered',
'remove',
'renren',
'reorder',
'repeat',
'reply',
'reply-all',
'resistance',
'retweet',
'rmb',
'road',
'rocket',
'rotate-left',
'rotate-right',
'rouble',
'rss',
'rss-square',
'rub',
'ruble',
'rupee',
's15',
'safari',
'save',
'scissors',
'scribd',
'search',
'search-minus',
'search-plus',
'sellsy',
'send',
'send-o',
'server',
'share',
'share-alt',
'share-alt-square',
'share-square',
'share-square-o',
'shekel',
'sheqel',
'shield',
'ship',
'shirtsinbulk',
'shopping-bag',
'shopping-basket',
'shopping-cart',
'shower',
'sign-in',
'sign-language',
'sign-out',
'signal',
'signing',
'simplybuilt',
'sitemap',
'skyatlas',
'skype',
'slack',
'sliders',
'slideshare',
'smile-o',
'snapchat',
'snapchat-ghost',
'snapchat-square',
'snowflake-o',
'soccer-ball-o',
'sort',
'sort-alpha-asc',
'sort-alpha-desc',
'sort-amount-asc',
'sort-amount-desc',
'sort-asc',
'sort-desc',
'sort-down',
'sort-numeric-asc',
'sort-numeric-desc',
'sort-up',
'soundcloud',
'space-shuttle',
'spinner',
'spoon',
'spotify',
'square',
'square-o',
'stack-exchange',
'stack-overflow',
'star',
'star-half',
'star-half-empty',
'star-half-full',
'star-half-o',
'star-o',
'steam',
'steam-square',
'step-backward',
'step-forward',
'stethoscope',
'sticky-note',
'sticky-note-o',
'stop',
'stop-circle',
'stop-circle-o',
'street-view',
'strikethrough',
'stumbleupon',
'stumbleupon-circle',
'subscript',
'subway',
'suitcase',
'sun-o',
'superpowers',
'superscript',
'support',
'table',
'tablet',
'tachometer',
'tag',
'tags',
'tasks',
'taxi',
'telegram',
'television',
'tencent-weibo',
'terminal',
'text-height',
'text-width',
'th',
'th-large',
'th-list',
'themeisle',
'thermometer',
'thermometer-0',
'thermometer-1',
'thermometer-2',
'thermometer-3',
'thermometer-4',
'thermometer-empty',
'thermometer-full',
'thermometer-half',
'thermometer-quarter',
'thermometer-three-quarters',
'thumb-tack',
'thumbs-down',
'thumbs-o-down',
'thumbs-o-up',
'thumbs-up',
'ticket',
'times',
'times-circle',
'times-circle-o',
'times-rectangle',
'times-rectangle-o',
'tint',
'toggle-down',
'toggle-left',
'toggle-off',
'toggle-on',
'toggle-right',
'toggle-up',
'trademark',
'train',
'transgender',
'transgender-alt',
'trash',
'trash-o',
'tree',
'trello',
'tripadvisor',
'trophy',
'truck',
'try',
'tty',
'tumblr',
'tumblr-square',
'turkish-lira',
'tv',
'twitch',
'twitter',
'twitter-square',
'umbrella',
'underline',
'undo',
'universal-access',
'university',
'unlink',
'unlock',
'unlock-alt',
'unsorted',
'upload',
'usb',
'usd',
'user',
'user-circle',
'user-circle-o',
'user-md',
'user-o',
'user-plus',
'user-secret',
'user-times',
'users',
'vcard',
'vcard-o',
'venus',
'venus-double',
'venus-mars',
'viacoin',
'viadeo',
'viadeo-square',
'video-camera',
'vimeo',
'vimeo-square',
'vine',
'vk',
'volume-control-phone',
'volume-down',
'volume-off',
'volume-up',
'warning',
'wechat',
'weibo',
'weixin',
'whatsapp',
'wheelchair',
'wheelchair-alt',
'wifi',
'wikipedia-w',
'window-close',
'window-close-o',
'window-maximize',
'window-minimize',
'window-restore',
'windows',
'won',
'wordpress',
'wpbeginner',
'wpexplorer',
'wpforms',
'wrench',
'xing',
'xing-square',
'y-combinator',
'y-combinator-square',
'yahoo',
'yc',
'yc-square',
'yelp',
'yen',
'yoast',
'youtube',
'youtube-play',
'youtube-square'
]
};
})(jQuery);

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,222 @@
/*!========================================================================
* Bootstrap: iconset-glyphicon.js by @recktoner
* https://victor-valencia.github.com/bootstrap-iconpicker
*
* Iconset: Glyphicons
* ========================================================================
* Copyright 2013-2017 Victor Valencia Rico.
* Licensed under MIT license.
* https://github.com/victor-valencia/bootstrap-iconpicker/blob/master/LICENSE
* ======================================================================== */
;(function($){
$.iconset_glyphicon = {
iconClass: 'glyphicon',
iconClassFix: 'glyphicon-',
icons: [
'',
'adjust',
'align-center',
'align-justify',
'align-left',
'align-right',
'arrow-down',
'arrow-left',
'arrow-right',
'arrow-up',
'asterisk',
'backward',
'ban-circle',
'barcode',
'bell',
'bold',
'book',
'bookmark',
'briefcase',
'bullhorn',
'calendar',
'camera',
'certificate',
'check',
'chevron-down',
'chevron-left',
'chevron-right',
'chevron-up',
'circle-arrow-down',
'circle-arrow-left',
'circle-arrow-right',
'circle-arrow-up',
'cloud',
'cloud-download',
'cloud-upload',
'cog',
'collapse-down',
'collapse-up',
'comment',
'compressed',
'copyright-mark',
'credit-card',
'cutlery',
'dashboard',
'download',
'download-alt',
'earphone',
'edit',
'eject',
'envelope',
'euro',
'exclamation-sign',
'expand',
'export',
'eye-close',
'eye-open',
'facetime-video',
'fast-backward',
'fast-forward',
'file',
'film',
'filter',
'fire',
'flag',
'flash',
'floppy-disk',
'floppy-open',
'floppy-remove',
'floppy-save',
'floppy-saved',
'folder-close',
'folder-open',
'font',
'forward',
'fullscreen',
'gbp',
'gift',
'glass',
'globe',
'hand-down',
'hand-left',
'hand-right',
'hand-up',
'hd-video',
'hdd',
'header',
'headphones',
'heart',
'heart-empty',
'home',
'import',
'inbox',
'indent-left',
'indent-right',
'info-sign',
'italic',
'leaf',
'link',
'list',
'list-alt',
'lock',
'log-in',
'log-out',
'magnet',
'map-marker',
'minus',
'minus-sign',
'move',
'music',
'new-window',
'off',
'ok',
'ok-circle',
'ok-sign',
'open',
'paperclip',
'pause',
'pencil',
'phone',
'phone-alt',
'picture',
'plane',
'play',
'play-circle',
'plus',
'plus-sign',
'print',
'pushpin',
'qrcode',
'question-sign',
'random',
'record',
'refresh',
'registration-mark',
'remove',
'remove-circle',
'remove-sign',
'repeat',
'resize-full',
'resize-horizontal',
'resize-small',
'resize-vertical',
'retweet',
'road',
'save',
'saved',
'screenshot',
'sd-video',
'search',
'send',
'share',
'share-alt',
'shopping-cart',
'signal',
'sort',
'sort-by-alphabet',
'sort-by-alphabet-alt',
'sort-by-attributes',
'sort-by-attributes-alt',
'sort-by-order',
'sort-by-order-alt',
'sound-5-1',
'sound-6-1',
'sound-7-1',
'sound-dolby',
'sound-stereo',
'star',
'star-empty',
'stats',
'step-backward',
'step-forward',
'stop',
'subtitles',
'tag',
'tags',
'tasks',
'text-height',
'text-width',
'th',
'th-large',
'th-list',
'thumbs-down',
'thumbs-up',
'time',
'tint',
'tower',
'transfer',
'trash',
'tree-conifer',
'tree-deciduous',
'unchecked',
'upload',
'usd',
'user',
'volume-down',
'volume-off',
'volume-up',
'warning-sign',
'wrench',
'zoom-in',
'zoom-out'
]
};
})(jQuery);

View File

@ -0,0 +1,11 @@
/*!========================================================================
* Bootstrap: iconset-glyphicon.js by @recktoner
* https://victor-valencia.github.com/bootstrap-iconpicker
*
* Iconset: Glyphicons
* ========================================================================
* Copyright 2013-2017 Victor Valencia Rico.
* Licensed under MIT license.
* https://github.com/victor-valencia/bootstrap-iconpicker/blob/master/LICENSE
* ======================================================================== */
!function($){$.iconset_glyphicon={iconClass:"glyphicon",iconClassFix:"glyphicon-",icons:["","adjust","align-center","align-justify","align-left","align-right","arrow-down","arrow-left","arrow-right","arrow-up","asterisk","backward","ban-circle","barcode","bell","bold","book","bookmark","briefcase","bullhorn","calendar","camera","certificate","check","chevron-down","chevron-left","chevron-right","chevron-up","circle-arrow-down","circle-arrow-left","circle-arrow-right","circle-arrow-up","cloud","cloud-download","cloud-upload","cog","collapse-down","collapse-up","comment","compressed","copyright-mark","credit-card","cutlery","dashboard","download","download-alt","earphone","edit","eject","envelope","euro","exclamation-sign","expand","export","eye-close","eye-open","facetime-video","fast-backward","fast-forward","file","film","filter","fire","flag","flash","floppy-disk","floppy-open","floppy-remove","floppy-save","floppy-saved","folder-close","folder-open","font","forward","fullscreen","gbp","gift","glass","globe","hand-down","hand-left","hand-right","hand-up","hd-video","hdd","header","headphones","heart","heart-empty","home","import","inbox","indent-left","indent-right","info-sign","italic","leaf","link","list","list-alt","lock","log-in","log-out","magnet","map-marker","minus","minus-sign","move","music","new-window","off","ok","ok-circle","ok-sign","open","paperclip","pause","pencil","phone","phone-alt","picture","plane","play","play-circle","plus","plus-sign","print","pushpin","qrcode","question-sign","random","record","refresh","registration-mark","remove","remove-circle","remove-sign","repeat","resize-full","resize-horizontal","resize-small","resize-vertical","retweet","road","save","saved","screenshot","sd-video","search","send","share","share-alt","shopping-cart","signal","sort","sort-by-alphabet","sort-by-alphabet-alt","sort-by-attributes","sort-by-attributes-alt","sort-by-order","sort-by-order-alt","sound-5-1","sound-6-1","sound-7-1","sound-dolby","sound-stereo","star","star-empty","stats","step-backward","step-forward","stop","subtitles","tag","tags","tasks","text-height","text-width","th","th-large","th-list","thumbs-down","thumbs-up","time","tint","tower","transfer","trash","tree-conifer","tree-deciduous","unchecked","upload","usd","user","volume-down","volume-off","volume-up","warning-sign","wrench","zoom-in","zoom-out"]}}(jQuery);

View File

@ -0,0 +1,625 @@
/*!========================================================================
* Bootstrap: iconset-ionicon-1.5.2.js by @recktoner
* https://victor-valencia.github.com/bootstrap-iconpicker
*
* Iconset: Ionicons 1.5.2
* http://ionicons.com/
* ========================================================================
* Copyright 2013-2017 Victor Valencia Rico.
* Licensed under MIT license.
* https://github.com/victor-valencia/bootstrap-iconpicker/blob/master/LICENSE
* ======================================================================== */
;(function($){
$.iconset_ionicon = {
iconClass: '',
iconClassFix: 'ion-',
icons: [
'',
'alert',
'alert-circled',
'android-add',
'android-add-contact',
'android-alarm',
'android-archive',
'android-arrow-back',
'android-arrow-down-left',
'android-arrow-down-right',
'android-arrow-forward',
'android-arrow-up-left',
'android-arrow-up-right',
'android-battery',
'android-book',
'android-calendar',
'android-call',
'android-camera',
'android-chat',
'android-checkmark',
'android-clock',
'android-close',
'android-contact',
'android-contacts',
'android-data',
'android-developer',
'android-display',
'android-download',
'android-drawer',
'android-dropdown',
'android-earth',
'android-folder',
'android-forums',
'android-friends',
'android-hand',
'android-image',
'android-inbox',
'android-information',
'android-keypad',
'android-lightbulb',
'android-locate',
'android-location',
'android-mail',
'android-microphone',
'android-mixer',
'android-more',
'android-note',
'android-playstore',
'android-printer',
'android-promotion',
'android-reminder',
'android-remove',
'android-search',
'android-send',
'android-settings',
'android-share',
'android-social',
'android-social-user',
'android-sort',
'android-stair-drawer',
'android-star',
'android-stopwatch',
'android-storage',
'android-system-back',
'android-system-home',
'android-system-windows',
'android-timer',
'android-trash',
'android-user-menu',
'android-volume',
'android-wifi',
'aperture',
'archive',
'arrow-down-a',
'arrow-down-b',
'arrow-down-c',
'arrow-expand',
'arrow-graph-down-left',
'arrow-graph-down-right',
'arrow-graph-up-left',
'arrow-graph-up-right',
'arrow-left-a',
'arrow-left-b',
'arrow-left-c',
'arrow-move',
'arrow-resize',
'arrow-return-left',
'arrow-return-right',
'arrow-right-a',
'arrow-right-b',
'arrow-right-c',
'arrow-shrink',
'arrow-swap',
'arrow-up-a',
'arrow-up-b',
'arrow-up-c',
'asterisk',
'at',
'bag',
'battery-charging',
'battery-empty',
'battery-full',
'battery-half',
'battery-low',
'beaker',
'beer',
'bluetooth',
'bonfire',
'bookmark',
'briefcase',
'bug',
'calculator',
'calendar',
'camera',
'card',
'cash',
'chatbox',
'chatbox-working',
'chatboxes',
'chatbubble',
'chatbubble-working',
'chatbubbles',
'checkmark',
'checkmark-circled',
'checkmark-round',
'chevron-down',
'chevron-left',
'chevron-right',
'chevron-up',
'clipboard',
'clock',
'close',
'close-circled',
'close-round',
'closed-captioning',
'cloud',
'code',
'code-download',
'code-working',
'coffee',
'compass',
'compose',
'connection-bars',
'contrast',
'cube',
'disc',
'document',
'document-text',
'drag',
'earth',
'edit',
'egg',
'eject',
'email',
'eye',
'eye-disabled',
'female',
'filing',
'film-marker',
'fireball',
'flag',
'flame',
'flash',
'flash-off',
'flask',
'folder',
'fork',
'fork-repo',
'forward',
'funnel',
'game-controller-a',
'game-controller-b',
'gear-a',
'gear-b',
'grid',
'hammer',
'happy',
'headphone',
'heart',
'heart-broken',
'help',
'help-buoy',
'help-circled',
'home',
'icecream',
'image',
'images',
'information',
'information-circled',
'ionic',
'ios7-alarm',
'ios7-alarm-outline',
'ios7-albums',
'ios7-albums-outline',
'ios7-americanfootball',
'ios7-americanfootball-outline',
'ios7-analytics',
'ios7-analytics-outline',
'ios7-arrow-back',
'ios7-arrow-down',
'ios7-arrow-forward',
'ios7-arrow-left',
'ios7-arrow-right',
'ios7-arrow-thin-down',
'ios7-arrow-thin-left',
'ios7-arrow-thin-right',
'ios7-arrow-thin-up',
'ios7-arrow-up',
'ios7-at',
'ios7-at-outline',
'ios7-barcode',
'ios7-barcode-outline',
'ios7-baseball',
'ios7-baseball-outline',
'ios7-basketball',
'ios7-basketball-outline',
'ios7-bell',
'ios7-bell-outline',
'ios7-bolt',
'ios7-bolt-outline',
'ios7-bookmarks',
'ios7-bookmarks-outline',
'ios7-box',
'ios7-box-outline',
'ios7-briefcase',
'ios7-briefcase-outline',
'ios7-browsers',
'ios7-browsers-outline',
'ios7-calculator',
'ios7-calculator-outline',
'ios7-calendar',
'ios7-calendar-outline',
'ios7-camera',
'ios7-camera-outline',
'ios7-cart',
'ios7-cart-outline',
'ios7-chatboxes',
'ios7-chatboxes-outline',
'ios7-chatbubble',
'ios7-chatbubble-outline',
'ios7-checkmark',
'ios7-checkmark-empty',
'ios7-checkmark-outline',
'ios7-circle-filled',
'ios7-circle-outline',
'ios7-clock',
'ios7-clock-outline',
'ios7-close',
'ios7-close-empty',
'ios7-close-outline',
'ios7-cloud',
'ios7-cloud-download',
'ios7-cloud-download-outline',
'ios7-cloud-outline',
'ios7-cloud-upload',
'ios7-cloud-upload-outline',
'ios7-cloudy',
'ios7-cloudy-night',
'ios7-cloudy-night-outline',
'ios7-cloudy-outline',
'ios7-cog',
'ios7-cog-outline',
'ios7-compose',
'ios7-compose-outline',
'ios7-copy',
'ios7-copy-outline',
'ios7-download',
'ios7-download-outline',
'ios7-drag',
'ios7-email',
'ios7-email-outline',
'ios7-eye',
'ios7-eye-outline',
'ios7-fastforward',
'ios7-fastforward-outline',
'ios7-filing',
'ios7-filing-outline',
'ios7-film',
'ios7-film-outline',
'ios7-flag',
'ios7-flag-outline',
'ios7-folder',
'ios7-folder-outline',
'ios7-football',
'ios7-football-outline',
'ios7-gear',
'ios7-gear-outline',
'ios7-glasses',
'ios7-glasses-outline',
'ios7-heart',
'ios7-heart-outline',
'ios7-help',
'ios7-help-empty',
'ios7-help-outline',
'ios7-home',
'ios7-home-outline',
'ios7-infinite',
'ios7-infinite-outline',
'ios7-information',
'ios7-information-empty',
'ios7-information-outline',
'ios7-ionic-outline',
'ios7-keypad',
'ios7-keypad-outline',
'ios7-lightbulb',
'ios7-lightbulb-outline',
'ios7-location',
'ios7-location-outline',
'ios7-locked',
'ios7-locked-outline',
'ios7-loop',
'ios7-loop-strong',
'ios7-medkit',
'ios7-medkit-outline',
'ios7-mic',
'ios7-mic-off',
'ios7-mic-outline',
'ios7-minus',
'ios7-minus-empty',
'ios7-minus-outline',
'ios7-monitor',
'ios7-monitor-outline',
'ios7-moon',
'ios7-moon-outline',
'ios7-more',
'ios7-more-outline',
'ios7-musical-note',
'ios7-musical-notes',
'ios7-navigate',
'ios7-navigate-outline',
'ios7-paper',
'ios7-paper-outline',
'ios7-paperplane',
'ios7-paperplane-outline',
'ios7-partlysunny',
'ios7-partlysunny-outline',
'ios7-pause',
'ios7-pause-outline',
'ios7-paw',
'ios7-paw-outline',
'ios7-people',
'ios7-people-outline',
'ios7-person',
'ios7-person-outline',
'ios7-personadd',
'ios7-personadd-outline',
'ios7-photos',
'ios7-photos-outline',
'ios7-pie',
'ios7-pie-outline',
'ios7-play',
'ios7-play-outline',
'ios7-plus',
'ios7-plus-empty',
'ios7-plus-outline',
'ios7-pricetag',
'ios7-pricetag-outline',
'ios7-pricetags',
'ios7-pricetags-outline',
'ios7-printer',
'ios7-printer-outline',
'ios7-pulse',
'ios7-pulse-strong',
'ios7-rainy',
'ios7-rainy-outline',
'ios7-recording',
'ios7-recording-outline',
'ios7-redo',
'ios7-redo-outline',
'ios7-refresh',
'ios7-refresh-empty',
'ios7-refresh-outline',
'ios7-reload',
'ios7-reloading',
'ios7-reverse-camera',
'ios7-reverse-camera-outline',
'ios7-rewind',
'ios7-rewind-outline',
'ios7-search',
'ios7-search-strong',
'ios7-settings',
'ios7-settings-strong',
'ios7-skipbackward',
'ios7-skipbackward-outline',
'ios7-skipforward',
'ios7-skipforward-outline',
'ios7-snowy',
'ios7-speedometer',
'ios7-speedometer-outline',
'ios7-star',
'ios7-star-half',
'ios7-star-outline',
'ios7-stopwatch',
'ios7-stopwatch-outline',
'ios7-sunny',
'ios7-sunny-outline',
'ios7-telephone',
'ios7-telephone-outline',
'ios7-tennisball',
'ios7-tennisball-outline',
'ios7-thunderstorm',
'ios7-thunderstorm-outline',
'ios7-time',
'ios7-time-outline',
'ios7-timer',
'ios7-timer-outline',
'ios7-toggle',
'ios7-toggle-outline',
'ios7-trash',
'ios7-trash-outline',
'ios7-undo',
'ios7-undo-outline',
'ios7-unlocked',
'ios7-unlocked-outline',
'ios7-upload',
'ios7-upload-outline',
'ios7-videocam',
'ios7-videocam-outline',
'ios7-volume-high',
'ios7-volume-low',
'ios7-wineglass',
'ios7-wineglass-outline',
'ios7-world',
'ios7-world-outline',
'ipad',
'iphone',
'ipod',
'jet',
'key',
'knife',
'laptop',
'leaf',
'levels',
'lightbulb',
'link',
'load-a',
'load-b',
'load-c',
'load-d',
'loading-a',
'loading-b',
'loading-c',
'loading-d',
'location',
'locked',
'log-in',
'log-out',
'loop',
'looping',
'magnet',
'male',
'man',
'map',
'medkit',
'merge',
'mic-a',
'mic-b',
'mic-c',
'minus',
'minus-circled',
'minus-round',
'model-s',
'monitor',
'more',
'mouse',
'music-note',
'navicon',
'navicon-round',
'navigate',
'network',
'no-smoking',
'nuclear',
'outlet',
'paper-airplane',
'paperclip',
'pause',
'person',
'person-add',
'person-stalker',
'pie-graph',
'pin',
'pinpoint',
'pizza',
'plane',
'planet',
'play',
'playstation',
'plus',
'plus-circled',
'plus-round',
'podium',
'pound',
'power',
'pricetag',
'pricetags',
'printer',
'pull-request',
'qr-scanner',
'quote',
'radio-waves',
'record',
'refresh',
'refreshing',
'reply',
'reply-all',
'ribbon-a',
'ribbon-b',
'sad',
'scissors',
'search',
'settings',
'share',
'shuffle',
'skip-backward',
'skip-forward',
'social-android',
'social-android-outline',
'social-apple',
'social-apple-outline',
'social-bitcoin',
'social-bitcoin-outline',
'social-buffer',
'social-buffer-outline',
'social-designernews',
'social-designernews-outline',
'social-dribbble',
'social-dribbble-outline',
'social-dropbox',
'social-dropbox-outline',
'social-facebook',
'social-facebook-outline',
'social-foursquare',
'social-foursquare-outline',
'social-freebsd-devil',
'social-github',
'social-github-outline',
'social-google',
'social-google-outline',
'social-googleplus',
'social-googleplus-outline',
'social-hackernews',
'social-hackernews-outline',
'social-instagram',
'social-instagram-outline',
'social-linkedin',
'social-linkedin-outline',
'social-pinterest',
'social-pinterest-outline',
'social-reddit',
'social-reddit-outline',
'social-rss',
'social-rss-outline',
'social-skype',
'social-skype-outline',
'social-tumblr',
'social-tumblr-outline',
'social-tux',
'social-twitter',
'social-twitter-outline',
'social-usd',
'social-usd-outline',
'social-vimeo',
'social-vimeo-outline',
'social-windows',
'social-windows-outline',
'social-wordpress',
'social-wordpress-outline',
'social-yahoo',
'social-yahoo-outline',
'social-youtube',
'social-youtube-outline',
'speakerphone',
'speedometer',
'spoon',
'star',
'stats-bars',
'steam',
'stop',
'thermometer',
'thumbsdown',
'thumbsup',
'toggle',
'toggle-filled',
'trash-a',
'trash-b',
'trophy',
'umbrella',
'university',
'unlocked',
'upload',
'usb',
'videocamera',
'volume-high',
'volume-low',
'volume-medium',
'volume-mute',
'wand',
'waterdrop',
'wifi',
'wineglass',
'woman',
'wrench',
'xbox'
]
};
})(jQuery);

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,198 @@
/*!========================================================================
* Bootstrap: iconset-mapicon-2.1.0.js by @recktoner
* https://victor-valencia.github.com/bootstrap-iconpicker
*
* Iconset: Map Icons 2.1.0
* https://github.com/scottdejonge/Map-Icons
* ========================================================================
* Copyright 2013-2017 Victor Valencia Rico.
* Licensed under MIT license.
* https://github.com/victor-valencia/bootstrap-iconpicker/blob/master/LICENSE
* ======================================================================== */
;(function($){
$.iconset_mapicon = {
iconClass: '',
iconClassFix: 'map-icon-',
icons: [
'',
'abseiling',
'accounting',
'airport',
'amusement-park',
'aquarium',
'archery',
'art-gallery',
'assistive-listening-system',
'atm',
'audio-description',
'bakery',
'bank',
'bar',
'baseball',
'beauty-salon',
'bicycle-store',
'bicycling',
'boat-ramp',
'boat-tour',
'boating',
'book-store',
'bowling-alley',
'braille',
'bus-station',
'cafe',
'campground',
'canoe',
'car-dealer',
'car-rental',
'car-repair',
'car-wash',
'casino',
'cemetery',
'chairlift',
'church',
'circle',
'city-hall',
'climbing',
'closed-captioning',
'clothing-store',
'compass',
'convenience-store',
'courthouse',
'cross-country-skiing',
'crosshairs',
'dentist',
'department-store',
'diving',
'doctor',
'electrician',
'electronics-store',
'embassy',
'expand',
'female',
'finance',
'fire-station',
'fish-cleaning',
'fishing',
'fishing-pier',
'florist',
'food',
'fullscreen',
'funeral-home',
'furniture-store',
'gas-station',
'general-contractor',
'golf',
'grocery-or-supermarket',
'gym',
'hair-care',
'hang-gliding',
'hardware-store',
'health',
'hindu-temple',
'horse-riding',
'hospital',
'ice-fishing',
'ice-skating',
'inline-skating',
'insurance-agency',
'jet-skiing',
'jewelry-store',
'kayaking',
'laundry',
'lawyer',
'library',
'liquor-store',
'local-government',
'location-arrow',
'locksmith',
'lodging',
'low-vision-access',
'male',
'map-pin',
'marina',
'mosque',
'motobike-trail',
'movie-rental',
'movie-theater',
'moving-company',
'museum',
'natural-feature',
'night-club',
'open-captioning',
'painter',
'park',
'parking',
'pet-store',
'pharmacy',
'physiotherapist',
'place-of-worship',
'playground',
'plumber',
'point-of-interest',
'police',
'political',
'post-box',
'post-office',
'postal-code',
'postal-code-prefix',
'rafting',
'real-estate-agency',
'restaurant',
'roofing-contractor',
'route',
'route-pin',
'rv-park',
'sailing',
'school',
'scuba-diving',
'search',
'sheild',
'shopping-mall',
'sign-language',
'skateboarding',
'ski-jumping',
'skiing',
'sledding',
'snow',
'snow-shoeing',
'snowboarding',
'snowmobile',
'spa',
'square',
'square-pin',
'square-rounded',
'stadium',
'storage',
'store',
'subway-station',
'surfing',
'swimming',
'synagogue',
'taxi-stand',
'tennis',
'toilet',
'trail-walking',
'train-station',
'transit-station',
'travel-agency',
'unisex',
'university',
'veterinary-care',
'viewing',
'volume-control-telephone',
'walking',
'waterskiing',
'whale-watching',
'wheelchair',
'wind-surfing',
'zoo',
'zoom-in',
'zoom-in-alt',
'zoom-out',
'zoom-out-alt'
]
};
})(jQuery);

View File

@ -0,0 +1,12 @@
/*!========================================================================
* Bootstrap: iconset-mapicon-2.1.0.js by @recktoner
* https://victor-valencia.github.com/bootstrap-iconpicker
*
* Iconset: Map Icons 2.1.0
* https://github.com/scottdejonge/Map-Icons
* ========================================================================
* Copyright 2013-2017 Victor Valencia Rico.
* Licensed under MIT license.
* https://github.com/victor-valencia/bootstrap-iconpicker/blob/master/LICENSE
* ======================================================================== */
!function($){$.iconset_mapicon={iconClass:"",iconClassFix:"map-icon-",icons:["","abseiling","accounting","airport","amusement-park","aquarium","archery","art-gallery","assistive-listening-system","atm","audio-description","bakery","bank","bar","baseball","beauty-salon","bicycle-store","bicycling","boat-ramp","boat-tour","boating","book-store","bowling-alley","braille","bus-station","cafe","campground","canoe","car-dealer","car-rental","car-repair","car-wash","casino","cemetery","chairlift","church","circle","city-hall","climbing","closed-captioning","clothing-store","compass","convenience-store","courthouse","cross-country-skiing","crosshairs","dentist","department-store","diving","doctor","electrician","electronics-store","embassy","expand","female","finance","fire-station","fish-cleaning","fishing","fishing-pier","florist","food","fullscreen","funeral-home","furniture-store","gas-station","general-contractor","golf","grocery-or-supermarket","gym","hair-care","hang-gliding","hardware-store","health","hindu-temple","horse-riding","hospital","ice-fishing","ice-skating","inline-skating","insurance-agency","jet-skiing","jewelry-store","kayaking","laundry","lawyer","library","liquor-store","local-government","location-arrow","locksmith","lodging","low-vision-access","male","map-pin","marina","mosque","motobike-trail","movie-rental","movie-theater","moving-company","museum","natural-feature","night-club","open-captioning","painter","park","parking","pet-store","pharmacy","physiotherapist","place-of-worship","playground","plumber","point-of-interest","police","political","post-box","post-office","postal-code","postal-code-prefix","rafting","real-estate-agency","restaurant","roofing-contractor","route","route-pin","rv-park","sailing","school","scuba-diving","search","sheild","shopping-mall","sign-language","skateboarding","ski-jumping","skiing","sledding","snow","snow-shoeing","snowboarding","snowmobile","spa","square","square-pin","square-rounded","stadium","storage","store","subway-station","surfing","swimming","synagogue","taxi-stand","tennis","toilet","trail-walking","train-station","transit-station","travel-agency","unisex","university","veterinary-care","viewing","volume-control-telephone","walking","waterskiing","whale-watching","wheelchair","wind-surfing","zoo","zoom-in","zoom-in-alt","zoom-out","zoom-out-alt"]}}(jQuery);

View File

@ -0,0 +1,767 @@
/*!========================================================================
* Bootstrap: iconset-materialdesign-1.1.1.js by @recktoner
* https://victor-valencia.github.com/bootstrap-iconpicker
*
* Iconset: Material Design 1.1.1
* http://zavoloklom.github.io/material-design-iconic-font
* ========================================================================
* Copyright 2013-2017 Victor Valencia Rico.
* Licensed under MIT license.
* https://github.com/victor-valencia/bootstrap-iconpicker/blob/master/LICENSE
* ======================================================================== */
;(function($){
$.iconset_materialdesign = {
iconClass: 'md',
iconClassFix: 'md-',
icons: [
'',
'3d-rotation',
'access-alarm',
'access-alarms',
'access-time',
'accessibility',
'account-balance',
'account-balance-wallet',
'account-box',
'account-child',
'account-circle',
'adb',
'add',
'add-alarm',
'add-box',
'add-circle',
'add-circle-outline',
'add-shopping-cart',
'add-to-photos',
'adjust',
'airplanemode-off',
'airplanemode-on',
'alarm',
'alarm-add',
'alarm-off',
'alarm-on',
'album',
'android',
'announcement',
'apps',
'archive',
'arrow-back',
'arrow-drop-down',
'arrow-drop-down-circle',
'arrow-drop-up',
'arrow-forward',
'aspect-ratio',
'assessment',
'assignment',
'assignment-ind',
'assignment-late',
'assignment-return',
'assignment-returned',
'assignment-turned-in',
'assistant-photo',
'attach-file',
'attach-money',
'attachment',
'audiotrack',
'autorenew',
'av-timer',
'backspace',
'backup',
'battery-20',
'battery-30',
'battery-50',
'battery-60',
'battery-80',
'battery-90',
'battery-alert',
'battery-charging-20',
'battery-charging-30',
'battery-charging-50',
'battery-charging-60',
'battery-charging-80',
'battery-charging-90',
'battery-charging-full',
'battery-full',
'battery-std',
'battery-unknown',
'beenhere',
'block',
'bluetooth',
'bluetooth-audio',
'bluetooth-connected',
'bluetooth-disabled',
'bluetooth-searching',
'blur-circular',
'blur-linear',
'blur-off',
'blur-on',
'book',
'bookmark',
'bookmark-outline',
'border-all',
'border-bottom',
'border-clear',
'border-color',
'border-horizontal',
'border-inner',
'border-left',
'border-outer',
'border-right',
'border-style',
'border-top',
'border-vertical',
'brightness-1',
'brightness-2',
'brightness-3',
'brightness-4',
'brightness-5',
'brightness-6',
'brightness-7',
'brightness-auto',
'brightness-high',
'brightness-low',
'brightness-medium',
'brush',
'bug-report',
'business',
'cached',
'cake',
'call',
'call-end',
'call-made',
'call-merge',
'call-missed',
'call-received',
'call-split',
'camera',
'camera-alt',
'camera-front',
'camera-rear',
'camera-roll',
'cancel',
'cast',
'cast-connected',
'center-focus-strong',
'center-focus-weak',
'chat',
'check',
'check-box',
'check-box-outline-blank',
'chevron-left',
'chevron-right',
'class',
'clear',
'clear-all',
'close',
'closed-caption',
'cloud',
'cloud-circle',
'cloud-done',
'cloud-download',
'cloud-off',
'cloud-queue',
'cloud-upload',
'collections',
'color-lens',
'colorize',
'comment',
'compare',
'computer',
'contacts',
'content-copy',
'content-cut',
'content-paste',
'control-point',
'control-point-duplicate',
'create',
'credit-card',
'crop',
'crop-16-9',
'crop-3-2',
'crop-5-4',
'crop-7-5',
'crop-din',
'crop-free',
'crop-landscape',
'crop-original',
'crop-portrait',
'crop-square',
'dashboard',
'data-usage',
'dehaze',
'delete',
'description',
'desktop-mac',
'desktop-windows',
'details',
'developer-mode',
'devices',
'dialer-sip',
'dialpad',
'directions',
'directions-bike',
'directions-bus',
'directions-car',
'directions-ferry',
'directions-subway',
'directions-train',
'directions-transit',
'directions-walk',
'disc-full',
'dnd-forwardslash',
'dnd-on',
'dns',
'do-not-disturb',
'dock',
'domain',
'done',
'done-all',
'drafts',
'drive-eta',
'dvr',
'edit',
'email',
'equalizer',
'error',
'event',
'event-available',
'event-busy',
'event-note',
'exit-to-app',
'expand-less',
'expand-more',
'explicit',
'explore',
'exposure',
'exposure-minus-1',
'exposure-minus-2',
'exposure-plus-1',
'exposure-plus-2',
'exposure-zero',
'extension',
'face-unlock',
'fast-forward',
'fast-rewind',
'favorite',
'favorite-outline',
'file-download',
'file-upload',
'filter',
'filter-1',
'filter-2',
'filter-3',
'filter-4',
'filter-5',
'filter-6',
'filter-7',
'filter-8',
'filter-9',
'filter-9-plus',
'filter-b-and-w',
'filter-center-focus',
'filter-drama',
'filter-frames',
'filter-hdr',
'filter-list',
'filter-none',
'filter-tilt-shift',
'filter-vintage',
'find-in-page',
'find-replace',
'flag',
'flare',
'flash-auto',
'flash-off',
'flash-on',
'flight',
'flip',
'flip-to-back',
'flip-to-front',
'folder',
'folder-open',
'folder-shared',
'folder-special',
'format-align-center',
'format-align-justify',
'format-align-left',
'format-align-right',
'format-bold',
'format-clear',
'format-color-fill',
'format-color-reset',
'format-color-text',
'format-indent-decrease',
'format-indent-increase',
'format-italic',
'format-line-spacing',
'format-list-bulleted',
'format-list-numbered',
'format-paint',
'format-quote',
'format-size',
'format-strikethrough',
'format-textdirection-l-to-r',
'format-textdirection-r-to-l',
'format-underline',
'forum',
'forward',
'fullscreen',
'fullscreen-exit',
'functions',
'gamepad',
'games',
'gesture',
'get-app',
'gps-fixed',
'gps-not-fixed',
'gps-off',
'grade',
'gradient',
'grain',
'grid-off',
'grid-on',
'group',
'group-add',
'group-work',
'hdr-off',
'hdr-on',
'hdr-strong',
'hdr-weak',
'headset',
'headset-mic',
'healing',
'hearing',
'help',
'high-quality',
'highlight-remove',
'history',
'home',
'hotel',
'https',
'image',
'image-aspect-ratio',
'import-export',
'inbox',
'info',
'info-outline',
'input',
'insert-chart',
'insert-comment',
'insert-drive-file',
'insert-emoticon',
'insert-invitation',
'insert-link',
'insert-photo',
'invert-colors',
'invert-colors-off',
'invert-colors-on',
'iso',
'keyboard',
'keyboard-alt',
'keyboard-arrow-down',
'keyboard-arrow-left',
'keyboard-arrow-right',
'keyboard-arrow-up',
'keyboard-backspace',
'keyboard-capslock',
'keyboard-control',
'keyboard-hide',
'keyboard-return',
'keyboard-tab',
'keyboard-voice',
'label',
'label-outline',
'landscape',
'language',
'laptop',
'laptop-chromebook',
'laptop-mac',
'laptop-windows',
'launch',
'layers',
'layers-clear',
'leak-add',
'leak-remove',
'lens',
'link',
'list',
'live-help',
'local-airport',
'local-atm',
'local-attraction',
'local-bar',
'local-cafe',
'local-car-wash',
'local-convenience-store',
'local-drink',
'local-florist',
'local-gas-station',
'local-grocery-store',
'local-hospital',
'local-hotel',
'local-laundry-service',
'local-library',
'local-mall',
'local-movies',
'local-offer',
'local-parking',
'local-pharmacy',
'local-phone',
'local-pizza',
'local-play',
'local-post-office',
'local-print-shop',
'local-restaurant',
'local-see',
'local-shipping',
'local-taxi',
'location-city',
'location-disabled',
'location-history',
'location-off',
'location-on',
'location-searching',
'lock',
'lock-open',
'lock-outline',
'looks',
'looks-1',
'looks-2',
'looks-3',
'looks-4',
'looks-5',
'looks-6',
'loop',
'loupe',
'loyalty',
'mail',
'map',
'markunread',
'markunread-mailbox',
'memory',
'menu',
'merge-type',
'message',
'messenger',
'mic',
'mic-none',
'mic-off',
'mms',
'mode-comment',
'mode-edit',
'mood',
'more',
'more-horiz',
'more-vert',
'mouse',
'movie',
'movie-creation',
'multitrack-audio',
'my-library-add',
'my-library-books',
'my-library-music',
'my-location',
'nature',
'nature-people',
'navigate-before',
'navigate-next',
'navigation',
'network-cell',
'network-locked',
'network-wifi',
'new-releases',
'nfc',
'no-sim',
'not-interested',
'note-add',
'notifications',
'notifications-none',
'notifications-off',
'notifications-on',
'notifications-paused',
'now-wallpaper',
'now-widgets',
'open-in-browser',
'open-in-new',
'open-with',
'pages',
'pageview',
'palette',
'panorama',
'panorama-fisheye',
'panorama-horizontal',
'panorama-vertical',
'panorama-wide-angle',
'party-mode',
'pause',
'pause-circle-fill',
'pause-circle-outline',
'payment',
'people',
'people-outline',
'perm-camera-mic',
'perm-contact-cal',
'perm-data-setting',
'perm-device-info',
'perm-identity',
'perm-media',
'perm-phone-msg',
'perm-scan-wifi',
'person',
'person-add',
'person-outline',
'phone',
'phone-android',
'phone-bluetooth-speaker',
'phone-forwarded',
'phone-in-talk',
'phone-iphone',
'phone-locked',
'phone-missed',
'phone-paused',
'phonelink',
'phonelink-off',
'photo',
'photo-album',
'photo-camera',
'photo-library',
'picture-in-picture',
'pin-drop',
'place',
'play-arrow',
'play-circle-fill',
'play-circle-outline',
'play-download',
'play-install',
'play-shopping-bag',
'playlist-add',
'plus-one',
'poll',
'polymer',
'portable-wifi-off',
'portrait',
'print',
'public',
'publish',
'query-builder',
'question-answer',
'queue',
'queue-music',
'quick-contacts-dialer',
'quick-contacts-mail',
'radio',
'radio-button-off',
'radio-button-on',
'rate-review',
'receipt',
'recent-actors',
'redeem',
'redo',
'refresh',
'remove',
'remove-circle',
'remove-circle-outline',
'remove-red-eye',
'repeat',
'repeat-one',
'replay',
'reply',
'reply-all',
'report',
'report-problem',
'restaurant-menu',
'restore',
'ring-volume',
'room',
'rotate-left',
'rotate-right',
'satellite',
'save',
'schedule',
'school',
'screen-lock-landscape',
'screen-lock-portrait',
'screen-lock-rotation',
'screen-rotation',
'sd-card',
'sd-storage',
'search',
'security',
'select-all',
'send',
'settings',
'settings-applications',
'settings-backup-restore',
'settings-bluetooth',
'settings-cell',
'settings-display',
'settings-ethernet',
'settings-input-antenna',
'settings-input-component',
'settings-input-composite',
'settings-input-hdmi',
'settings-input-svideo',
'settings-overscan',
'settings-phone',
'settings-power',
'settings-remote',
'settings-system-daydream',
'settings-voice',
'share',
'shop',
'shop-two',
'shopping-basket',
'shopping-cart',
'shuffle',
'signal-cellular-0-bar',
'signal-cellular-1-bar',
'signal-cellular-2-bar',
'signal-cellular-3-bar',
'signal-cellular-4-bar',
'signal-cellular-connected-no-internet-0-bar',
'signal-cellular-connected-no-internet-1-bar',
'signal-cellular-connected-no-internet-2-bar',
'signal-cellular-connected-no-internet-3-bar',
'signal-cellular-connected-no-internet-4-bar',
'signal-cellular-no-sim',
'signal-cellular-null',
'signal-cellular-off',
'signal-wifi-0-bar',
'signal-wifi-1-bar',
'signal-wifi-2-bar',
'signal-wifi-3-bar',
'signal-wifi-4-bar',
'signal-wifi-off',
'sim-card',
'sim-card-alert',
'skip-next',
'skip-previous',
'slideshow',
'smartphone',
'sms',
'sms-failed',
'snooze',
'sort',
'speaker',
'speaker-notes',
'spellcheck',
'star',
'star-half',
'star-outline',
'star-rate',
'stars',
'stay-current-landscape',
'stay-current-portrait',
'stay-primary-landscape',
'stay-primary-portrait',
'stop',
'storage',
'store',
'store-mall-directory',
'straighten',
'style',
'subject',
'subtitles',
'surround-sound',
'swap-calls',
'swap-horiz',
'swap-vert',
'swap-vert-circle',
'switch-camera',
'switch-video',
'sync',
'sync-disabled',
'sync-problem',
'system-update',
'system-update-tv',
'tab',
'tab-unselected',
'tablet',
'tablet-android',
'tablet-mac',
'tag-faces',
'tap-and-play',
'terrain',
'text-format',
'textsms',
'texture',
'theaters',
'thumb-down',
'thumb-up',
'thumbs-up-down',
'time-to-leave',
'timelapse',
'timer',
'timer-10',
'timer-3',
'timer-auto',
'timer-off',
'toc',
'today',
'tonality',
'track-changes',
'traffic',
'transform',
'translate',
'trending-down',
'trending-neutral',
'trending-up',
'tune',
'turned-in',
'turned-in-not',
'tv',
'undo',
'unfold-less',
'unfold-more',
'usb',
'verified-user',
'vertical-align-bottom',
'vertical-align-center',
'vertical-align-top',
'vibration',
'video-collection',
'videocam',
'videocam-off',
'view-agenda',
'view-array',
'view-carousel',
'view-column',
'view-day',
'view-headline',
'view-list',
'view-module',
'view-quilt',
'view-stream',
'view-week',
'visibility',
'visibility-off',
'voice-chat',
'voicemail',
'volume-down',
'volume-mute',
'volume-off',
'volume-up',
'vpn-key',
'vpn-lock',
'wallet-giftcard',
'wallet-membership',
'wallet-travel',
'warning',
'watch',
'wb-auto',
'wb-cloudy',
'wb-incandescent',
'wb-irradescent',
'wb-sunny',
'web',
'whatshot',
'wifi-lock',
'wifi-tethering',
'work',
'wrap-text'
]
};
})(jQuery);

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,199 @@
/*!========================================================================
* Bootstrap: iconset-octicon-2.1.2.js by @recktoner
* https://victor-valencia.github.com/bootstrap-iconpicker
*
* Iconset: Octicons 2.1.2
* https://octicons.github.com/
* ========================================================================
* Copyright 2013-2017 Victor Valencia Rico.
* Licensed under MIT license.
* https://github.com/victor-valencia/bootstrap-iconpicker/blob/master/LICENSE
* ======================================================================== */
;(function($){
$.iconset_octicon = {
iconClass: 'octicon',
iconClassFix: 'octicon-',
icons: [
'',
'alert',
'alignment-align',
'alignment-aligned-to',
'alignment-unalign',
'arrow-down',
'arrow-left',
'arrow-right',
'arrow-small-down',
'arrow-small-left',
'arrow-small-right',
'arrow-small-up',
'arrow-up',
'beer',
'book',
'bookmark',
'briefcase',
'broadcast',
'browser',
'bug',
'calendar',
'check',
'checklist',
'chevron-down',
'chevron-left',
'chevron-right',
'chevron-up',
'circle-slash',
'circuit-board',
'clippy',
'clock',
'cloud-download',
'cloud-upload',
'code',
'color-mode',
'comment',
'comment-discussion',
'credit-card',
'dash',
'dashboard',
'database',
'device-camera',
'device-camera-video',
'device-desktop',
'device-mobile',
'diff',
'diff-added',
'diff-ignored',
'diff-modified',
'diff-removed',
'diff-renamed',
'ellipsis',
'eye',
'file-binary',
'file-code',
'file-directory',
'file-media',
'file-pdf',
'file-submodule',
'file-symlink-directory',
'file-symlink-file',
'file-text',
'file-zip',
'flame',
'fold',
'gear',
'gift',
'gist',
'gist-secret',
'git-branch',
'git-commit',
'git-compare',
'git-merge',
'git-pull-request',
'globe',
'graph',
'heart',
'history',
'home',
'horizontal-rule',
'hourglass',
'hubot',
'inbox',
'info',
'issue-closed',
'issue-opened',
'issue-reopened',
'jersey',
'jump-down',
'jump-left',
'jump-right',
'jump-up',
'key',
'keyboard',
'law',
'light-bulb',
'link',
'link-external',
'list-ordered',
'list-unordered',
'location',
'lock',
'mail',
'mail-read',
'mail-reply',
'mark-github',
'markdown',
'megaphone',
'mention',
'microscope',
'milestone',
'mirror',
'mortar-board',
'move-down',
'move-left',
'move-right',
'move-up',
'mute',
'no-newline',
'octoface',
'organization',
'package',
'paintcan',
'pencil',
'person',
'pin',
'playback-fast-forward',
'playback-pause',
'playback-play',
'playback-rewind',
'plug',
'plus',
'podium',
'primitive-dot',
'primitive-square',
'pulse',
'puzzle',
'question',
'quote',
'radio-tower',
'repo',
'repo-clone',
'repo-force-push',
'repo-forked',
'repo-pull',
'repo-push',
'rocket',
'rss',
'ruby',
'screen-full',
'screen-normal',
'search',
'server',
'settings',
'sign-in',
'sign-out',
'split',
'squirrel',
'star',
'steps',
'stop',
'sync',
'tag',
'telescope',
'terminal',
'three-bars',
'tools',
'trashcan',
'triangle-down',
'triangle-left',
'triangle-right',
'triangle-up',
'unfold',
'unmute',
'versions',
'x',
'zap'
]
};
})(jQuery);

View File

@ -0,0 +1,12 @@
/*!========================================================================
* Bootstrap: iconset-octicon-2.1.2.js by @recktoner
* https://victor-valencia.github.com/bootstrap-iconpicker
*
* Iconset: Octicons 2.1.2
* https://octicons.github.com/
* ========================================================================
* Copyright 2013-2017 Victor Valencia Rico.
* Licensed under MIT license.
* https://github.com/victor-valencia/bootstrap-iconpicker/blob/master/LICENSE
* ======================================================================== */
!function($){$.iconset_octicon={iconClass:"octicon",iconClassFix:"octicon-",icons:["","alert","alignment-align","alignment-aligned-to","alignment-unalign","arrow-down","arrow-left","arrow-right","arrow-small-down","arrow-small-left","arrow-small-right","arrow-small-up","arrow-up","beer","book","bookmark","briefcase","broadcast","browser","bug","calendar","check","checklist","chevron-down","chevron-left","chevron-right","chevron-up","circle-slash","circuit-board","clippy","clock","cloud-download","cloud-upload","code","color-mode","comment","comment-discussion","credit-card","dash","dashboard","database","device-camera","device-camera-video","device-desktop","device-mobile","diff","diff-added","diff-ignored","diff-modified","diff-removed","diff-renamed","ellipsis","eye","file-binary","file-code","file-directory","file-media","file-pdf","file-submodule","file-symlink-directory","file-symlink-file","file-text","file-zip","flame","fold","gear","gift","gist","gist-secret","git-branch","git-commit","git-compare","git-merge","git-pull-request","globe","graph","heart","history","home","horizontal-rule","hourglass","hubot","inbox","info","issue-closed","issue-opened","issue-reopened","jersey","jump-down","jump-left","jump-right","jump-up","key","keyboard","law","light-bulb","link","link-external","list-ordered","list-unordered","location","lock","mail","mail-read","mail-reply","mark-github","markdown","megaphone","mention","microscope","milestone","mirror","mortar-board","move-down","move-left","move-right","move-up","mute","no-newline","octoface","organization","package","paintcan","pencil","person","pin","playback-fast-forward","playback-pause","playback-play","playback-rewind","plug","plus","podium","primitive-dot","primitive-square","pulse","puzzle","question","quote","radio-tower","repo","repo-clone","repo-force-push","repo-forked","repo-pull","repo-push","rocket","rss","ruby","screen-full","screen-normal","search","server","settings","sign-in","sign-out","split","squirrel","star","steps","stop","sync","tag","telescope","terminal","three-bars","tools","trashcan","triangle-down","triangle-left","triangle-right","triangle-up","unfold","unmute","versions","x","zap"]}}(jQuery);

View File

@ -0,0 +1,358 @@
/*!========================================================================
* Bootstrap: iconset-typicon-2.0.6.js by @recktoner
* https://victor-valencia.github.com/bootstrap-iconpicker
*
* Iconset: Typicons 2.0.6
* https://github.com/stephenhutchings/typicons.font
* ========================================================================
* Copyright 2013-2017 Victor Valencia Rico.
* Licensed under MIT license.
* https://github.com/victor-valencia/bootstrap-iconpicker/blob/master/LICENSE
* ======================================================================== */
;(function($){
$.iconset_typicon = {
iconClass: 'typcn',
iconClassFix: 'typcn-',
icons: [
'',
'adjust-brightness',
'adjust-contrast',
'anchor',
'anchor-outline',
'archive',
'arrow-back',
'arrow-back-outline',
'arrow-down',
'arrow-down-outline',
'arrow-down-thick',
'arrow-forward',
'arrow-forward-outline',
'arrow-left',
'arrow-left-outline',
'arrow-left-thick',
'arrow-loop',
'arrow-loop-outline',
'arrow-maximise',
'arrow-maximise-outline',
'arrow-minimise',
'arrow-minimise-outline',
'arrow-move',
'arrow-move-outline',
'arrow-repeat',
'arrow-repeat-outline',
'arrow-right',
'arrow-right-outline',
'arrow-right-thick',
'arrow-shuffle',
'arrow-sorted-down',
'arrow-sorted-up',
'arrow-sync',
'arrow-sync-outline',
'arrow-unsorted',
'arrow-up',
'arrow-up-outline',
'arrow-up-thick',
'at',
'attachment',
'attachment-outline',
'backspace',
'backspace-outline',
'battery-charge',
'battery-full',
'battery-high',
'battery-low',
'battery-mid',
'beaker',
'beer',
'bell',
'book',
'bookmark',
'briefcase',
'brush',
'business-card',
'calculator',
'calendar',
'calendar-outline',
'camera',
'camera-outline',
'cancel',
'cancel-outline',
'chart-area',
'chart-area-outline',
'chart-bar',
'chart-bar-outline',
'chart-line',
'chart-line-outline',
'chart-pie',
'chart-pie-outline',
'chevron-left',
'chevron-left-outline',
'chevron-right',
'chevron-right-outline',
'clipboard',
'cloud-storage',
'cloud-storage-outline',
'code',
'code-outline',
'coffee',
'cog',
'cog-outline',
'compass',
'contacts',
'credit-card',
'css3',
'database',
'delete',
'delete-outline',
'device-desktop',
'device-laptop',
'device-phone',
'device-tablet',
'directions',
'divide',
'divide-outline',
'document',
'document-add',
'document-delete',
'document-text',
'download',
'download-outline',
'dropbox',
'edit',
'eject',
'eject-outline',
'equals',
'equals-outline',
'export',
'export-outline',
'eye',
'eye-outline',
'feather',
'film',
'filter',
'flag',
'flag-outline',
'flash',
'flash-outline',
'flow-children',
'flow-merge',
'flow-parallel',
'flow-switch',
'folder',
'folder-add',
'folder-delete',
'folder-open',
'gift',
'globe',
'globe-outline',
'group',
'group-outline',
'headphones',
'heart',
'heart-full-outline',
'heart-half-outline',
'heart-outline',
'home',
'home-outline',
'html5',
'image',
'image-outline',
'infinity',
'infinity-outline',
'info',
'info-large',
'info-large-outline',
'info-outline',
'input-checked',
'input-checked-outline',
'key',
'key-outline',
'keyboard',
'leaf',
'lightbulb',
'link',
'link-outline',
'location',
'location-arrow',
'location-arrow-outline',
'location-outline',
'lock-closed',
'lock-closed-outline',
'lock-open',
'lock-open-outline',
'mail',
'map',
'media-eject',
'media-eject-outline',
'media-fast-forward',
'media-fast-forward-outline',
'media-pause',
'media-pause-outline',
'media-play',
'media-play-outline',
'media-play-reverse',
'media-play-reverse-outline',
'media-record',
'media-record-outline',
'media-rewind',
'media-rewind-outline',
'media-stop',
'media-stop-outline',
'message',
'message-typing',
'messages',
'microphone',
'microphone-outline',
'minus',
'minus-outline',
'mortar-board',
'news',
'notes',
'notes-outline',
'pen',
'pencil',
'phone',
'phone-outline',
'pi',
'pi-outline',
'pin',
'pin-outline',
'pipette',
'plane',
'plane-outline',
'plug',
'plus',
'plus-outline',
'point-of-interest',
'point-of-interest-outline',
'power',
'power-outline',
'printer',
'puzzle',
'puzzle-outline',
'radar',
'radar-outline',
'refresh',
'refresh-outline',
'rss',
'rss-outline',
'scissors',
'scissors-outline',
'shopping-bag',
'shopping-cart',
'social-at-circular',
'social-dribbble',
'social-dribbble-circular',
'social-facebook',
'social-facebook-circular',
'social-flickr',
'social-flickr-circular',
'social-github',
'social-github-circular',
'social-google-plus',
'social-google-plus-circular',
'social-instagram',
'social-instagram-circular',
'social-last-fm',
'social-last-fm-circular',
'social-linkedin',
'social-linkedin-circular',
'social-pinterest',
'social-pinterest-circular',
'social-skype',
'social-skype-outline',
'social-tumbler',
'social-tumbler-circular',
'social-twitter',
'social-twitter-circular',
'social-vimeo',
'social-vimeo-circular',
'social-youtube',
'social-youtube-circular',
'sort-alphabetically',
'sort-alphabetically-outline',
'sort-numerically',
'sort-numerically-outline',
'spanner',
'spanner-outline',
'spiral',
'star',
'star-full-outline',
'star-half',
'star-half-outline',
'star-outline',
'starburst',
'starburst-outline',
'stopwatch',
'support',
'tabs-outline',
'tag',
'tags',
'th-large',
'th-large-outline',
'th-list',
'th-list-outline',
'th-menu',
'th-menu-outline',
'th-small',
'th-small-outline',
'thermometer',
'thumbs-down',
'thumbs-ok',
'thumbs-up',
'tick',
'tick-outline',
'ticket',
'time',
'times',
'times-outline',
'trash',
'tree',
'upload',
'upload-outline',
'user',
'user-add',
'user-add-outline',
'user-delete',
'user-delete-outline',
'user-outline',
'vendor-android',
'vendor-apple',
'vendor-microsoft',
'video',
'video-outline',
'volume',
'volume-down',
'volume-mute',
'volume-up',
'warning',
'warning-outline',
'watch',
'waves',
'waves-outline',
'weather-cloudy',
'weather-downpour',
'weather-night',
'weather-partly-sunny',
'weather-shower',
'weather-snow',
'weather-stormy',
'weather-sunny',
'weather-windy',
'weather-windy-cloudy',
'wi-fi',
'wi-fi-outline',
'wine',
'world',
'world-outline',
'zoom',
'zoom-in',
'zoom-in-outline',
'zoom-out',
'zoom-out-outline',
'zoom-outline'
]};
})(jQuery);

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,146 @@
/*!========================================================================
* Bootstrap: iconset-weathericon-1.2.0.js by @recktoner
* https://victor-valencia.github.com/bootstrap-iconpicker
*
* Iconset: Weather Icons 1.2.0
* http://erikflowers.github.io/weather-icons/
* ========================================================================
* Copyright 2013-2017 Victor Valencia Rico.
* Licensed under MIT license.
* https://github.com/victor-valencia/bootstrap-iconpicker/blob/master/LICENSE
* ======================================================================== */
;(function($){
$.iconset_weathericon = {
iconClass: 'wi',
iconClassFix: 'wi-',
icons: [
'',
'alien',
'celsius',
'cloud',
'cloud-down',
'cloud-refresh',
'cloud-up',
'cloudy',
'cloudy-gusts',
'cloudy-windy',
'day-cloudy',
'day-cloudy-gusts',
'day-cloudy-windy',
'day-fog',
'day-hail',
'day-lightning',
'day-rain',
'day-rain-mix',
'day-rain-wind',
'day-showers',
'day-sleet-storm',
'day-snow',
'day-snow-thunderstorm',
'day-snow-wind',
'day-sprinkle',
'day-storm-showers',
'day-sunny',
'day-sunny-overcast',
'day-thunderstorm',
'degrees',
'down',
'down-left',
'dust',
'fahrenheit',
'fog',
'hail',
'horizon',
'horizon-alt',
'hot',
'hurricane',
'left',
'lightning',
'lunar-eclipse',
'meteor',
'moon-full',
'moon-new',
'moon-old',
'moon-waning-crescent',
'moon-waning-gibbous',
'moon-waning-quarter',
'moon-waxing-crescent',
'moon-waxing-gibbous',
'moon-waxing-quarter',
'moon-young',
'night-alt-cloudy-gusts',
'night-alt-cloudy-windy',
'night-alt-hail',
'night-alt-lightning',
'night-alt-rain',
'night-alt-rain-mix',
'night-alt-rain-wind',
'night-alt-showers',
'night-alt-sleet-storm',
'night-alt-snow',
'night-alt-snow-thunderstorm',
'night-alt-snow-wind',
'night-alt-sprinkle',
'night-alt-storm-showers',
'night-alt-thunderstorm',
'night-clear',
'night-cloudy',
'night-cloudy-gusts',
'night-cloudy-windy',
'night-fog',
'night-hail',
'night-lightning',
'night-partly-cloudy',
'night-rain',
'night-rain-mix',
'night-rain-wind',
'night-showers',
'night-sleet-storm',
'night-snow',
'night-snow-thunderstorm',
'night-snow-wind',
'night-sprinkle',
'night-storm-showers',
'night-thunderstorm',
'rain',
'rain-mix',
'rain-wind',
'refresh',
'refresh-alt',
'right',
'showers',
'smog',
'smoke',
'snow',
'snow-wind',
'snowflake-cold',
'solar-eclipse',
'sprinkle',
'sprinkles',
'stars',
'storm-showers',
'strong-wind',
'sunrise',
'sunset',
'thermometer',
'thermometer-exterior',
'thermometer-internal',
'thunderstorm',
'tornado',
'up',
'up-right',
'wind-east',
'wind-north',
'wind-north-east',
'wind-north-west',
'wind-south',
'wind-south-east',
'wind-south-west',
'wind-west',
'windy'
]
};
})(jQuery);

View File

@ -0,0 +1,12 @@
/*!========================================================================
* Bootstrap: iconset-weathericon-1.2.0.js by @recktoner
* https://victor-valencia.github.com/bootstrap-iconpicker
*
* Iconset: Weather Icons 1.2.0
* http://erikflowers.github.io/weather-icons/
* ========================================================================
* Copyright 2013-2017 Victor Valencia Rico.
* Licensed under MIT license.
* https://github.com/victor-valencia/bootstrap-iconpicker/blob/master/LICENSE
* ======================================================================== */
!function($){$.iconset_weathericon={iconClass:"wi",iconClassFix:"wi-",icons:["","alien","celsius","cloud","cloud-down","cloud-refresh","cloud-up","cloudy","cloudy-gusts","cloudy-windy","day-cloudy","day-cloudy-gusts","day-cloudy-windy","day-fog","day-hail","day-lightning","day-rain","day-rain-mix","day-rain-wind","day-showers","day-sleet-storm","day-snow","day-snow-thunderstorm","day-snow-wind","day-sprinkle","day-storm-showers","day-sunny","day-sunny-overcast","day-thunderstorm","degrees","down","down-left","dust","fahrenheit","fog","hail","horizon","horizon-alt","hot","hurricane","left","lightning","lunar-eclipse","meteor","moon-full","moon-new","moon-old","moon-waning-crescent","moon-waning-gibbous","moon-waning-quarter","moon-waxing-crescent","moon-waxing-gibbous","moon-waxing-quarter","moon-young","night-alt-cloudy-gusts","night-alt-cloudy-windy","night-alt-hail","night-alt-lightning","night-alt-rain","night-alt-rain-mix","night-alt-rain-wind","night-alt-showers","night-alt-sleet-storm","night-alt-snow","night-alt-snow-thunderstorm","night-alt-snow-wind","night-alt-sprinkle","night-alt-storm-showers","night-alt-thunderstorm","night-clear","night-cloudy","night-cloudy-gusts","night-cloudy-windy","night-fog","night-hail","night-lightning","night-partly-cloudy","night-rain","night-rain-mix","night-rain-wind","night-showers","night-sleet-storm","night-snow","night-snow-thunderstorm","night-snow-wind","night-sprinkle","night-storm-showers","night-thunderstorm","rain","rain-mix","rain-wind","refresh","refresh-alt","right","showers","smog","smoke","snow","snow-wind","snowflake-cold","solar-eclipse","sprinkle","sprinkles","stars","storm-showers","strong-wind","sunrise","sunset","thermometer","thermometer-exterior","thermometer-internal","thunderstorm","tornado","up","up-right","wind-east","wind-north","wind-north-east","wind-north-west","wind-south","wind-south-east","wind-south-west","wind-west","windy"]}}(jQuery);

View File

@ -0,0 +1,922 @@
@font-face {
font-family: 'Elusive-Icons';
src:url('../fonts//Elusive-Icons.eot');
src:url('../fonts//Elusive-Icons.eot?#iefix') format('embedded-opentype'),
url('../fonts//Elusive-Icons.ttf') format('truetype'),
url('../fonts//Elusive-Icons.woff') format('woff'),
url('../fonts//Elusive-Icons.svg#Elusive-Icons') format('svg');
font-weight: normal;
font-style: normal;
}
[class*="el-icon-"] {
font-family: 'Elusive-Icons';
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.el-icon-zoom-out:before {
content: "\e600";
}
.el-icon-zoom-in:before {
content: "\e601";
}
.el-icon-youtube:before {
content: "\e602";
}
.el-icon-wrench-alt:before {
content: "\e603";
}
.el-icon-wrench:before {
content: "\e604";
}
.el-icon-wordpress:before {
content: "\e605";
}
.el-icon-wheelchair:before {
content: "\e606";
}
.el-icon-website-alt:before {
content: "\e607";
}
.el-icon-website:before {
content: "\e608";
}
.el-icon-warning-sign:before {
content: "\e609";
}
.el-icon-w3c:before {
content: "\e60a";
}
.el-icon-volume-up:before {
content: "\e60b";
}
.el-icon-volume-off:before {
content: "\e60c";
}
.el-icon-volume-down:before {
content: "\e60d";
}
.el-icon-vkontakte:before {
content: "\e60e";
}
.el-icon-vimeo:before {
content: "\e60f";
}
.el-icon-view-mode:before {
content: "\e610";
}
.el-icon-video-chat:before {
content: "\e611";
}
.el-icon-video-alt:before {
content: "\e612";
}
.el-icon-video:before {
content: "\e613";
}
.el-icon-viadeo:before {
content: "\e614";
}
.el-icon-user:before {
content: "\e615";
}
.el-icon-usd:before {
content: "\e616";
}
.el-icon-upload:before {
content: "\e617";
}
.el-icon-unlock-alt:before {
content: "\e618";
}
.el-icon-unlock:before {
content: "\e619";
}
.el-icon-universal-access:before {
content: "\e61a";
}
.el-icon-twitter:before {
content: "\e61b";
}
.el-icon-tumblr:before {
content: "\e61c";
}
.el-icon-trash-alt:before {
content: "\e61d";
}
.el-icon-trash:before {
content: "\e61e";
}
.el-icon-torso:before {
content: "\e61f";
}
.el-icon-tint:before {
content: "\e620";
}
.el-icon-time-alt:before {
content: "\e621";
}
.el-icon-time:before {
content: "\e622";
}
.el-icon-thumbs-up:before {
content: "\e623";
}
.el-icon-thumbs-down:before {
content: "\e624";
}
.el-icon-th-list:before {
content: "\e625";
}
.el-icon-th-large:before {
content: "\e626";
}
.el-icon-th:before {
content: "\e627";
}
.el-icon-text-width:before {
content: "\e628";
}
.el-icon-text-height:before {
content: "\e629";
}
.el-icon-tasks:before {
content: "\e62a";
}
.el-icon-tags:before {
content: "\e62b";
}
.el-icon-tag:before {
content: "\e62c";
}
.el-icon-stumbleupon:before {
content: "\e62d";
}
.el-icon-stop-alt:before {
content: "\e62e";
}
.el-icon-stop:before {
content: "\e62f";
}
.el-icon-step-forward:before {
content: "\e630";
}
.el-icon-step-backward:before {
content: "\e631";
}
.el-icon-star-empty:before {
content: "\e632";
}
.el-icon-star-alt:before {
content: "\e633";
}
.el-icon-star:before {
content: "\e634";
}
.el-icon-stackoverflow:before {
content: "\e635";
}
.el-icon-spotify:before {
content: "\e636";
}
.el-icon-speaker:before {
content: "\e637";
}
.el-icon-soundcloud:before {
content: "\e638";
}
.el-icon-smiley-alt:before {
content: "\e639";
}
.el-icon-smiley:before {
content: "\e63a";
}
.el-icon-slideshare:before {
content: "\e63b";
}
.el-icon-skype:before {
content: "\e63c";
}
.el-icon-signal:before {
content: "\e63d";
}
.el-icon-shopping-cart-sign:before {
content: "\e63e";
}
.el-icon-shopping-cart:before {
content: "\e63f";
}
.el-icon-share-alt:before {
content: "\e640";
}
.el-icon-share:before {
content: "\e641";
}
.el-icon-search-alt:before {
content: "\e642";
}
.el-icon-search:before {
content: "\e643";
}
.el-icon-screenshot:before {
content: "\e644";
}
.el-icon-screen-alt:before {
content: "\e645";
}
.el-icon-screen:before {
content: "\e646";
}
.el-icon-scissors:before {
content: "\e647";
}
.el-icon-rss:before {
content: "\e648";
}
.el-icon-road:before {
content: "\e649";
}
.el-icon-reverse-alt:before {
content: "\e64a";
}
.el-icon-retweet:before {
content: "\e64b";
}
.el-icon-return-key:before {
content: "\e64c";
}
.el-icon-resize-vertical:before {
content: "\e64d";
}
.el-icon-resize-small:before {
content: "\e64e";
}
.el-icon-resize-horizontal:before {
content: "\e64f";
}
.el-icon-resize-full:before {
content: "\e650";
}
.el-icon-repeat-alt:before {
content: "\e651";
}
.el-icon-repeat:before {
content: "\e652";
}
.el-icon-remove-sign:before {
content: "\e653";
}
.el-icon-remove-circle:before {
content: "\e654";
}
.el-icon-remove:before {
content: "\e655";
}
.el-icon-refresh:before {
content: "\e656";
}
.el-icon-reddit:before {
content: "\e657";
}
.el-icon-record:before {
content: "\e658";
}
.el-icon-random:before {
content: "\e659";
}
.el-icon-quotes-alt:before {
content: "\e65a";
}
.el-icon-quotes:before {
content: "\e65b";
}
.el-icon-question-sign:before {
content: "\e65c";
}
.el-icon-question:before {
content: "\e65d";
}
.el-icon-qrcode:before {
content: "\e65e";
}
.el-icon-puzzle:before {
content: "\e65f";
}
.el-icon-print:before {
content: "\e660";
}
.el-icon-podcast:before {
content: "\e661";
}
.el-icon-plus-sign:before {
content: "\e662";
}
.el-icon-plus:before {
content: "\e663";
}
.el-icon-play-circle:before {
content: "\e664";
}
.el-icon-play-alt:before {
content: "\e665";
}
.el-icon-play:before {
content: "\e666";
}
.el-icon-plane:before {
content: "\e667";
}
.el-icon-pinterest:before {
content: "\e668";
}
.el-icon-picture:before {
content: "\e669";
}
.el-icon-picasa:before {
content: "\e66a";
}
.el-icon-photo-alt:before {
content: "\e66b";
}
.el-icon-photo:before {
content: "\e66c";
}
.el-icon-phone-alt:before {
content: "\e66d";
}
.el-icon-phone:before {
content: "\e66e";
}
.el-icon-person:before {
content: "\e66f";
}
.el-icon-pencil-alt:before {
content: "\e670";
}
.el-icon-pencil:before {
content: "\e671";
}
.el-icon-pause-alt:before {
content: "\e672";
}
.el-icon-pause:before {
content: "\e673";
}
.el-icon-path:before {
content: "\e674";
}
.el-icon-paper-clip-alt:before {
content: "\e675";
}
.el-icon-paper-clip:before {
content: "\e676";
}
.el-icon-opensource:before {
content: "\e677";
}
.el-icon-ok-sign:before {
content: "\e678";
}
.el-icon-ok-circle:before {
content: "\e679";
}
.el-icon-ok:before {
content: "\e67a";
}
.el-icon-off:before {
content: "\e67b";
}
.el-icon-network:before {
content: "\e67c";
}
.el-icon-myspace:before {
content: "\e67d";
}
.el-icon-music:before {
content: "\e67e";
}
.el-icon-move:before {
content: "\e67f";
}
.el-icon-minus-sign:before {
content: "\e680";
}
.el-icon-minus:before {
content: "\e681";
}
.el-icon-mic-alt:before {
content: "\e682";
}
.el-icon-mic:before {
content: "\e683";
}
.el-icon-map-marker-alt:before {
content: "\e684";
}
.el-icon-map-marker:before {
content: "\e685";
}
.el-icon-male:before {
content: "\e686";
}
.el-icon-magnet:before {
content: "\e687";
}
.el-icon-magic:before {
content: "\e688";
}
.el-icon-lock-alt:before {
content: "\e689";
}
.el-icon-lock:before {
content: "\e68a";
}
.el-icon-livejournal:before {
content: "\e68b";
}
.el-icon-list-alt:before {
content: "\e68c";
}
.el-icon-list:before {
content: "\e68d";
}
.el-icon-linkedin:before {
content: "\e68e";
}
.el-icon-link:before {
content: "\e68f";
}
.el-icon-lines:before {
content: "\e690";
}
.el-icon-leaf:before {
content: "\e691";
}
.el-icon-lastfm:before {
content: "\e692";
}
.el-icon-laptop-alt:before {
content: "\e693";
}
.el-icon-laptop:before {
content: "\e694";
}
.el-icon-key:before {
content: "\e695";
}
.el-icon-italic:before {
content: "\e696";
}
.el-icon-iphone-home:before {
content: "\e697";
}
.el-icon-instagram:before {
content: "\e698";
}
.el-icon-info-sign:before {
content: "\e699";
}
.el-icon-indent-right:before {
content: "\e69a";
}
.el-icon-indent-left:before {
content: "\e69b";
}
.el-icon-inbox-box:before {
content: "\e69c";
}
.el-icon-inbox-alt:before {
content: "\e69d";
}
.el-icon-inbox:before {
content: "\e69e";
}
.el-icon-idea-alt:before {
content: "\e69f";
}
.el-icon-idea:before {
content: "\e6a0";
}
.el-icon-hourglass:before {
content: "\e6a1";
}
.el-icon-home-alt:before {
content: "\e6a2";
}
.el-icon-home:before {
content: "\e6a3";
}
.el-icon-heart-empty:before {
content: "\e6a4";
}
.el-icon-heart-alt:before {
content: "\e6a5";
}
.el-icon-heart:before {
content: "\e6a6";
}
.el-icon-hearing-impaired:before {
content: "\e6a7";
}
.el-icon-headphones:before {
content: "\e6a8";
}
.el-icon-hdd:before {
content: "\e6a9";
}
.el-icon-hand-up:before {
content: "\e6aa";
}
.el-icon-hand-right:before {
content: "\e6ab";
}
.el-icon-hand-left:before {
content: "\e6ac";
}
.el-icon-hand-down:before {
content: "\e6ad";
}
.el-icon-guidedog:before {
content: "\e6ae";
}
.el-icon-group-alt:before {
content: "\e6af";
}
.el-icon-group:before {
content: "\e6b0";
}
.el-icon-graph-alt:before {
content: "\e6b1";
}
.el-icon-graph:before {
content: "\e6b2";
}
.el-icon-googleplus:before {
content: "\e6b3";
}
.el-icon-globe-alt:before {
content: "\e6b4";
}
.el-icon-globe:before {
content: "\e6b5";
}
.el-icon-glasses:before {
content: "\e6b6";
}
.el-icon-glass:before {
content: "\e6b7";
}
.el-icon-github-text:before {
content: "\e6b8";
}
.el-icon-github:before {
content: "\e6b9";
}
.el-icon-gift:before {
content: "\e6ba";
}
.el-icon-gbp:before {
content: "\e6bb";
}
.el-icon-fullscreen:before {
content: "\e6bc";
}
.el-icon-friendfeed-rect:before {
content: "\e6bd";
}
.el-icon-friendfeed:before {
content: "\e6be";
}
.el-icon-foursquare:before {
content: "\e6bf";
}
.el-icon-forward-alt:before {
content: "\e6c0";
}
.el-icon-forward:before {
content: "\e6c1";
}
.el-icon-fork:before {
content: "\e6c2";
}
.el-icon-fontsize:before {
content: "\e6c3";
}
.el-icon-font:before {
content: "\e6c4";
}
.el-icon-folder-sign:before {
content: "\e6c5";
}
.el-icon-folder-open:before {
content: "\e6c6";
}
.el-icon-folder-close:before {
content: "\e6c7";
}
.el-icon-folder:before {
content: "\e6c8";
}
.el-icon-flickr:before {
content: "\e6c9";
}
.el-icon-flag-alt:before {
content: "\e6ca";
}
.el-icon-flag:before {
content: "\e6cb";
}
.el-icon-fire:before {
content: "\e6cc";
}
.el-icon-filter:before {
content: "\e6cd";
}
.el-icon-film:before {
content: "\e6ce";
}
.el-icon-file-new-alt:before {
content: "\e6cf";
}
.el-icon-file-new:before {
content: "\e6d0";
}
.el-icon-file-edit-alt:before {
content: "\e6d1";
}
.el-icon-file-edit:before {
content: "\e6d2";
}
.el-icon-file-alt:before {
content: "\e6d3";
}
.el-icon-file:before {
content: "\e6d4";
}
.el-icon-female:before {
content: "\e6d5";
}
.el-icon-fast-forward:before {
content: "\e6d6";
}
.el-icon-fast-backward:before {
content: "\e6d7";
}
.el-icon-facetime-video:before {
content: "\e6d8";
}
.el-icon-facebook:before {
content: "\e6d9";
}
.el-icon-eye-open:before {
content: "\e6da";
}
.el-icon-eye-close:before {
content: "\e6db";
}
.el-icon-exclamation-sign:before {
content: "\e6dc";
}
.el-icon-eur:before {
content: "\e6dd";
}
.el-icon-error-alt:before {
content: "\e6de";
}
.el-icon-error:before {
content: "\e6df";
}
.el-icon-envelope-alt:before {
content: "\e6e0";
}
.el-icon-envelope:before {
content: "\e6e1";
}
.el-icon-eject:before {
content: "\e6e2";
}
.el-icon-edit:before {
content: "\e6e3";
}
.el-icon-dribbble:before {
content: "\e6e4";
}
.el-icon-download-alt:before {
content: "\e6e5";
}
.el-icon-download:before {
content: "\e6e6";
}
.el-icon-digg:before {
content: "\e6e7";
}
.el-icon-deviantart:before {
content: "\e6e8";
}
.el-icon-delicious:before {
content: "\e6e9";
}
.el-icon-dashboard:before {
content: "\e6ea";
}
.el-icon-css:before {
content: "\e6eb";
}
.el-icon-credit-card:before {
content: "\e6ec";
}
.el-icon-compass-alt:before {
content: "\e6ed";
}
.el-icon-compass:before {
content: "\e6ee";
}
.el-icon-comment-alt:before {
content: "\e6ef";
}
.el-icon-comment:before {
content: "\e6f0";
}
.el-icon-cogs:before {
content: "\e6f1";
}
.el-icon-cog-alt:before {
content: "\e6f2";
}
.el-icon-cog:before {
content: "\e6f3";
}
.el-icon-cloud-alt:before {
content: "\e6f4";
}
.el-icon-cloud:before {
content: "\e6f5";
}
.el-icon-circle-arrow-up:before {
content: "\e6f6";
}
.el-icon-circle-arrow-right:before {
content: "\e6f7";
}
.el-icon-circle-arrow-left:before {
content: "\e6f8";
}
.el-icon-circle-arrow-down:before {
content: "\e6f9";
}
.el-icon-child:before {
content: "\e6fa";
}
.el-icon-chevron-up:before {
content: "\e6fb";
}
.el-icon-chevron-right:before {
content: "\e6fc";
}
.el-icon-chevron-left:before {
content: "\e6fd";
}
.el-icon-chevron-down:before {
content: "\e6fe";
}
.el-icon-check-empty:before {
content: "\e6ff";
}
.el-icon-check:before {
content: "\e700";
}
.el-icon-certificate:before {
content: "\e701";
}
.el-icon-cc:before {
content: "\e702";
}
.el-icon-caret-up:before {
content: "\e703";
}
.el-icon-caret-right:before {
content: "\e704";
}
.el-icon-caret-left:before {
content: "\e705";
}
.el-icon-caret-down:before {
content: "\e706";
}
.el-icon-car:before {
content: "\e707";
}
.el-icon-camera:before {
content: "\e708";
}
.el-icon-calendar-sign:before {
content: "\e709";
}
.el-icon-calendar:before {
content: "\e70a";
}
.el-icon-bullhorn:before {
content: "\e70b";
}
.el-icon-bulb:before {
content: "\e70c";
}
.el-icon-brush:before {
content: "\e70d";
}
.el-icon-broom:before {
content: "\e70e";
}
.el-icon-briefcase:before {
content: "\e70f";
}
.el-icon-braille:before {
content: "\e710";
}
.el-icon-bookmark-empty:before {
content: "\e711";
}
.el-icon-bookmark:before {
content: "\e712";
}
.el-icon-book:before {
content: "\e713";
}
.el-icon-bold:before {
content: "\e714";
}
.el-icon-blogger:before {
content: "\e715";
}
.el-icon-blind:before {
content: "\e716";
}
.el-icon-bell:before {
content: "\e717";
}
.el-icon-behance:before {
content: "\e718";
}
.el-icon-barcode:before {
content: "\e719";
}
.el-icon-ban-circle:before {
content: "\e71a";
}
.el-icon-backward:before {
content: "\e71b";
}
.el-icon-asl:before {
content: "\e71c";
}
.el-icon-arrow-up:before {
content: "\e71d";
}
.el-icon-arrow-right:before {
content: "\e71e";
}
.el-icon-arrow-left:before {
content: "\e71f";
}
.el-icon-arrow-down:before {
content: "\e720";
}
.el-icon-align-right:before {
content: "\e721";
}
.el-icon-align-left:before {
content: "\e722";
}
.el-icon-align-justify:before {
content: "\e723";
}
.el-icon-align-center:before {
content: "\e724";
}
.el-icon-adult:before {
content: "\e725";
}
.el-icon-adjust-alt:before {
content: "\e726";
}
.el-icon-adjust:before {
content: "\e727";
}
.el-icon-address-book-alt:before {
content: "\e728";
}
.el-icon-address-book:before {
content: "\e729";
}
.el-icon-asterisk:before {
content: "\e72a";
}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,309 @@
<?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>Generated by IcoMoon</metadata>
<defs>
<font id="Elusive-Icons" horiz-adv-x="1024">
<font-face units-per-em="1024" ascent="960" descent="-64" />
<missing-glyph horiz-adv-x="1024" />
<glyph unicode="&#x20;" d="" horiz-adv-x="512" />
<glyph unicode="&#xe600;" d="M1024 50.069l-189.285 189.285c51.891 74.299 82.554 164.519 82.554 262.011 0 253.297-205.403 458.635-458.635 458.635-253.232 0-458.635-205.337-458.635-458.635 0-253.297 205.337-458.635 458.635-458.635 97.493 0 187.778 30.663 262.077 82.554l189.285-189.285zM458.569 173.704c-180.899 0-327.596 146.632-327.596 327.596s146.698 327.596 327.596 327.596c180.964 0 327.596-146.632 327.596-327.596 0.066-180.964-146.567-327.596-327.596-327.596zM262.012 435.846h393.115v131.038h-393.115z" />
<glyph unicode="&#xe601;" d="M524.088 697.923h-131.038v-131.039h-131.038v-131.039h131.038v-131.038h131.038v131.038h131.038v131.039h-131.038zM1024 50.069l-189.285 189.285c51.891 74.299 82.554 164.518 82.554 262.012 0 253.297-205.403 458.634-458.635 458.634-253.232 0-458.635-205.338-458.635-458.634 0-253.297 205.337-458.635 458.635-458.635 97.493 0 187.778 30.663 262.077 82.554l189.285-189.285zM458.569 173.704c-180.899 0-327.596 146.633-327.596 327.596 0 180.964 146.698 327.596 327.596 327.596 180.964 0 327.596-146.633 327.596-327.596 0.066-180.964-146.566-327.596-327.596-327.596z" />
<glyph unicode="&#xe602;" d="M1024 59.36h-1024v777.28h1024zM364.623 220.93l358.072 224.887-358.072 224.887z" />
<glyph unicode="&#xe603;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM651.438 755.312c19.397 0.055 38.842-3.229 57.312-9.875l-101.938-101.938 28.125-72.562 72.562-28.125 101.938 101.938c21.267-59.104 8.234-127.829-39.125-175.188-47.358-47.359-116.021-60.392-175.125-39.125l-289.812-289.75-100.688 100.688 289.75 289.812c-21.267 59.104-8.234 127.766 39.125 175.125 32.559 32.559 75.203 48.88 117.875 49zM283.812 261.625c-11.556-11.556-11.556-30.256 0-41.812s30.256-11.556 41.812 0c11.556 11.556 11.556 30.256 0 41.812-12.526 11.386-31.019 10.468-41.812 0z" />
<glyph unicode="&#xe604;" d="M839.758 943.526c-98.471 35.432-212.885 13.712-291.787-65.19-78.902-78.902-100.622-193.316-65.19-291.786l-482.781-482.781 167.769-167.768 482.781 482.781c98.471-35.432 212.885-13.712 291.786 65.19 78.902 78.902 100.622 193.316 65.19 291.787l-169.773-169.773-120.924 46.844-46.844 120.924 169.773 169.773zM201.54 137.54c19.253-19.253 19.253-50.469 0-69.722-19.253-19.253-50.469-19.253-69.722 0-19.253 19.253-19.253 50.469 0 69.722 19.253 19.253 50.469 19.253 69.722 0z" />
<glyph unicode="&#xe605;" d="M511.415-64c-285.929 5.496-509.416 239.882-511.415 512.585 5.56 285.716 238.702 509.416 511.415 511.415 285.732-5.712 510.583-238.334 512.585-511.415-5.648-285.945-239.515-510.583-512.585-512.585zM511.415 923.721c-265.487-5.228-474.459-221.626-476.306-475.136 5.164-265.699 222.807-474.459 476.306-476.306 265.699 5.164 474.459 222.807 476.306 476.306-5.011 265.683-223.173 473.291-476.306 475.136zM388.535 29.623l131.072 376.832 136.923-368.64c-92.248-30.881-179.459-32.752-267.995-8.192zM287.89 695.515c-47.983-6.522-94.649-8.849-140.434-7.022 86.935 124.289 226.13 194.213 363.959 195.438 112.734-2.134 217.83-44.747 294.912-114.688-35.749 2.642-57.154-13.036-72.558-39.79-22.387-69.068 24.919-120.194 51.493-172.032 25.126-47.364 23.134-101.222 9.362-147.456l-65.536-223.524-157.988 469.285c16.462 1.532 33.031 2.025 47.982 4.681 17.696 3.94 21.578 20.407 9.362 30.427-3.901 3.121-8.192 4.681-12.873 4.681l-94.793-7.022h-71.973c-20.32-1.2-77.697 18.429-82.505-8.192-2.485-10.254 5.17-18.292 14.043-19.895 15.655-2.029 33.591-4.331 47.982-5.851l69.047-184.905-95.963-283.209-159.159 469.285c16.842 1.463 33.906 1.973 49.152 4.681 12.483 1.565 17.944 7.806 16.384 18.725-2.213 9.709-10.866 16.269-19.895 16.384zM112.348 622.958l209.481-566.418c-75.586 37.256-135.343 92.044-177.884 157.404-77.821 124.187-86.007 281.74-31.598 409.015zM930.962 332.142c-34.391-112.307-104.634-205.324-201.874-261.559 4.681 12.483 12.093 33.548 22.235 63.195l121.71 353.426c11.703 34.328 19.895 72.558 24.576 114.688 1.58 17.237 1.633 34.615-1.17 50.322 49.869-107.556 64.015-214.094 34.523-320.073z" />
<glyph unicode="&#xe606;" d="M406.8 960c-55.98-0.402-100.333-43.397-102.72-101.627 0.407-56.663 43.856-100.581 102.72-102.747 52.417 0.71 98.978 43.925 101.627 102.747-0.397 56.432-43.592 99.054-101.627 101.627zM435.2 732.693c-23.314 0-42.984-7.83-59.013-23.493-13.022-13.071-27.602-41.9-22.933-65.040h-1.093l60.107-289.6c6.199-33.172 33.5-54.561 69.947-56.827 83.726 0.23 174.513 2.131 260.080 1.093l144.267-251.36c16.233-34.259 57.8-41.474 87.973-16.4 14.477 14.365 20.331 38.805 10.373 60.107l-167.2 290.72c-12.047 24.924-35.814 38.965-65.573 40.427h-185.787l-21.84 107.093h145.333c31.419-2.323 54.053 21.653 47.547 54.64-4.78 16.117-21.482 30.959-40.987 31.707h-170.48c-8.592 43.916-7.224 70.462-40.987 100.533-14.207 10.928-30.791 16.4-49.733 16.4zM278.427 608.747c-4.488-0.061-9.099-0.623-13.707-1.733-64.379-25.051-122.297-68.097-167.2-127.867-39.569-55.797-61.691-122.961-63.387-196.72 0.659-87.418 38.196-177.125 105.467-244.8 65.202-62.1 155.703-99.583 252.987-101.627 70.957 0.391 141.887 21.346 206.56 62.827 58.087 39.456 103.606 96.075 131.12 166.667 5.1 12.386 9.478 26.247 13.12 41.547 5.333 24.052-8.167 43.591-33.867 51.36-23.376 5.18-44.281-7.718-52.453-32.8-2.186-10.928-5.469-21.48-9.84-31.68-18.559-49.073-53.105-91.549-98.907-124.587-44.531-30.283-97.864-46.773-155.733-48.080-68.821 0.49-135.11 26.723-190.693 76.48-47.761 46.305-77.638 112.565-79.227 184.693 0.305 51.417 16.864 102.157 48.080 148.080 30.613 42.502 73.468 75.326 125.68 96.72 22.001 7.216 33.854 29.995 26.213 54.64-7.38 17.716-24.766 27.143-44.213 26.88z" />
<glyph unicode="&#xe607;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM239.918 702.606h544.13v-509.212h-544.13zM306.999 636.077v-376.186h410.002v376.186zM351.708 588.093h319.481v-166.809h-319.481zM351.708 392.365h90.488v-90.488h-90.488zM466.188 392.365h90.521v-90.488h-90.521zM580.669 392.365h90.521v-90.488h-90.521z" />
<glyph unicode="&#xe608;" d="M596.136 173.018h-170.325v170.325h170.325zM811.607 173.018h-170.325v170.325h170.325zM380.665 173.018h-170.325v170.325h170.325zM811.607 711.696v-313.972h-601.267v313.972zM897.796 801.988h-771.591v-707.976h771.591zM0-31.166v958.332h1024v-958.332z" />
<glyph unicode="&#xe609;" d="M512 960l-512-1024h1024l-512 1024zM472.625 604.938h78.75v-135.375l-19.25-190.375h-40.25l-19.25 190.375v135.375zM472.625 204.438h78.75v-84.813h-78.75v84.813z" />
<glyph unicode="&#xe60a;" d="M916.334 422.839c2.474 9.934-0.073 20.151-9.362 23.406l-38.619 17.554c-9.544 3.985-21.692-1.398-23.406-10.533-7.455-15.959-18.023-29.022-35.109-29.257-14.824 0-26.917 7.997-36.279 23.991-9.362 15.994-14.043 36.864-14.043 62.61 0 25.746 4.681 46.811 14.043 63.195 9.362 16.384 21.455 24.576 36.279 24.576 18.7-1.359 27.574-13.168 35.109-28.087 3.994-9.8 14.86-12.102 23.406-9.362l38.619 17.554c8.943 4.707 12.928 16.362 8.192 24.576-22.625 48.371-57.734 72.558-105.326 72.558-39.79 0-71.973-15.214-96.549-45.641-24.576-30.427-36.864-70.217-36.864-119.369 0-49.152 12.288-88.746 36.864-118.784 24.576-30.038 56.759-45.056 96.549-45.056 47.592 0 83.090 25.357 106.496 76.069zM544.183 346.77c62.033 0.959 109.272 43.584 110.007 99.474-1.096 29.514-12.963 52.471-33.938 70.217 18.47 17.44 29.074 41.193 29.257 64.366-1.536 63.242-54.135 93.119-105.326 93.623-44.471 0-78.799-17.554-102.985-52.663-5.462-7.803-4.681-15.606 2.341-23.406l28.087-25.746c9.003-8.026 19.019-6.542 26.917 1.17 11.703 16.384 25.746 24.576 42.13 24.576 13.263 0 21.065-3.315 23.406-9.947 4.512-9.839 3.215-18.816 0-26.917-12.070-12.498-29.711-8.777-46.811-8.777-11.122-0.374-19.725-6.896-19.895-17.554v-42.13c0.97-12.086 9.209-20.071 19.895-17.554 12.901 0.012 45.614 1.473 50.907-9.362 2.73-6.241 4.096-11.313 4.096-15.214 0-17.944-9.752-26.917-29.257-26.917-18.725 0-34.328 8.582-46.811 25.746-7.636 9.239-19.699 9.374-26.917 2.341l-29.257-29.257c-7.022-7.022-7.802-14.433-2.341-22.235 26.521-37.31 65.134-53.505 106.496-53.833zM428.325 648.704c2.139 11.218-6.123 22.039-16.384 22.235h-51.493c-9.362 0-14.824-4.681-16.384-14.043l-24.576-125.221-25.746 125.221c-2.341 9.362-8.192 14.043-17.554 14.043h-37.449c-10.144 0-15.995-4.681-17.554-14.043l-25.746-125.221-24.576 125.221c-1.56 9.362-7.411 14.043-17.554 14.043h-50.322c-12.826-1.009-18.991-11.151-17.554-22.235l64.366-283.209c2.341-9.362 8.192-14.043 17.554-14.043h49.152c9.362 0 15.214 4.681 17.554 14.043l23.406 117.029 23.406-117.029c1.56-9.362 7.411-14.043 17.554-14.043h49.152c9.362 0 15.214 4.681 17.554 14.043zM1024 960v-784l-512-240-512 240v784z" />
<glyph unicode="&#xe60b;" d="M0 631.633h208.057l312.989 255.095v-877.456l-312.989 255.095h-208.057zM638.643 673.244c61.512-61.512 92.872-136.292 94.078-224.339 0-84.429-31.359-156.796-94.078-217.103l-63.322 65.131c43.42 43.42 65.131 94.681 65.131 153.781 0 60.306-21.71 112.773-65.131 157.399l63.322 65.131zM747.194 779.986c90.459-90.459 135.689-199.614 135.689-327.463s-45.23-237.607-135.689-329.272l-66.94 66.94c72.367 71.161 108.551 158.304 108.551 261.428s-36.184 190.869-108.551 263.237zM846.7 879.491c55.482-55.482 98.902-120.009 130.262-193.583 31.359-73.574 47.039-151.369 47.039-233.385 0-82.016-15.68-160.113-47.039-234.29-31.359-74.177-74.78-139.006-130.262-194.488l-65.131 65.131c100.108 100.108 150.163 221.022 150.163 362.742s-50.054 262.634-150.163 362.742z" />
<glyph unicode="&#xe60c;" d="M929.315 378.573q2.199-2.199 2.199-5.183t-2.199-5.183l-48.693-48.693q-2.199-2.199-5.026-2.199-2.513 0-5.341 2.199l-69.427 69.427-69.427-69.427q-2.199-2.199-5.026-2.199-2.513 0-5.341 2.199l-48.693 48.693q-1.885 1.885-1.885 5.341 0 3.142 1.885 5.026l69.427 69.427-69.113 69.427q-2.199 1.885-2.199 5.026 0 3.456 2.199 5.341l48.379 48.693q2.199 2.199 5.341 2.199 3.141 0 5.026-2.199l69.427-69.427 69.427 69.427q2.199 2.199 5.184 2.199t5.183-2.199l48.693-48.693q2.199-2.199 2.199-5.183 0-2.984-2.199-5.183l-69.427-69.427zM92.486 631.633h208.057l312.99 255.096v-877.456l-312.99 255.096h-208.057v367.265z" />
<glyph unicode="&#xe60d;" d="M145.639 631.633h208.057l312.989 255.095v-877.456l-312.989 255.095h-208.057zM784.283 673.244c61.512-61.512 92.872-136.292 94.078-224.339 0-84.429-31.359-156.796-94.078-217.103l-63.322 65.131c43.421 43.421 65.131 94.681 65.131 153.781 0 60.306-21.71 112.773-65.131 157.399z" />
<glyph unicode="&#xe60e;" d="M0 960v-1024h1024v1024h-1024zM454.562 686.188c28.994 0.3 57.353-2.914 71.188-3.313 51.285-1.477 60.342-27.415 59.688-48.75-0.959-31.246-21.063-163.422 16.187-176.313 54.281 29.025 90.679 119.176 117.187 176.313 13.408 28.901 11.289 30.337 42.188 30.375l122.75 0.188c29.559 0.037 28.407 1.073 37.875-11 22.024-28.082-69.502-144.891-99.063-177.188-54.552-59.602-22.724-82.682-13.937-90.875 40.712-37.959 80.050-77.322 104.5-113.625 19.438-28.861 11.41-55.734-13.313-56.75l-131.625-5.438c-43.679-1.795-111.596 76.504-122.438 93.563-8.767 14.071-51.020 31.707-55-4.25l-5.562-50.187c-4.041-35.875-30.529-35.038-51.438-35.938-144.784-6.23-194.091 48.893-267 130.25-53.436 75.571-104.431 151.576-146.688 242.625-12.648 27.254-19.347 47.246-21.062 68.437 21.262 16.618 95.892 9.46 146 10.563 13.706 0.302 22.954-7.55 30.188-23.187 28.229-61.023 59.016-120.951 99.75-173.938 17.74-16.34 33.423-22.348 41.25 10.875 4.545 0.418 4.18 55.435 4.437 96.937 0.177 28.496-3.171 62.671-51.437 78.438 9.762 25.594 48.098 31.801 85.375 32.188z" />
<glyph unicode="&#xe60f;" d="M812.922 688.304c-105.758 87.401-246.232-32.040-279.273-127.729 20.374-0.351 43.685 1.767 61.159-4.871 26.981-14.597 27.357-42.729 25.438-66.571-12.031-52.759-49.416-148.757-97.421-156.414-10.103-1.082-20.567 4.511-31.391 16.778-41.954 52.554-36.757 121.689-46.545 179.687-9.159 48.522-16.064 146.452-73.607 167.78-63.38 7.741-119.035-39.485-159.662-76.854-24.896-23.092-50.334-45.103-76.313-66.030v-4.33c6.181-7.432 11.19-15.009 16.778-22.19 9.483-9.543 26.785-7.208 37.345-3.789 38.395 9.982 51.891 19.767 72.524-16.778 31.095-84.060 54.637-178.8 75.23-259.247 14.393-45.885 33.376-104.489 79.56-123.4 28.533-12.124 77.755 4.169 99.586 17.319 93.421 59.019 165.714 153.455 217.573 244.634 37.86 76.826 131.99 229.673 79.019 302.004zM1024 960v-1024h-1024v1024z" />
<glyph unicode="&#xe610;" d="M947.75 960l-947.75-948.875 76.25-75.125 947.75 947.688-76.25 76.312zM0 958.5v-240.062h240v240l-240 0.062zM282.812 958.5v-240.062h240v240l-240 0.062zM0 671.188v-240h240v240h-240zM282.812 671.188v-240l240 240h-240zM704.625 417l-148-134.812h467.375v134.812h-319.375zM524.625 244.625v-134.813h499.375v134.813h-499.375zM524.625 72.25v-134.75h499.375v134.75h-499.375z" />
<glyph unicode="&#xe611;" d="M0 876.188v-729.188h211v-211l328.938 211h484.062v729.188h-1024zM224.5 693h412.5v-127.188l162.5 127.188v-340l-162.5 127.188v-127.188h-412.5v340z" />
<glyph unicode="&#xe612;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM206.75 679h610.438v-462h-610.438zM281.625 604.125v-312.25h460.75v312.25zM443.5 549.75l179.812-103.688-179.812-104.312z" />
<glyph unicode="&#xe613;" d="M0 835.5v-775h1024v775zM125.562 709.875h772.875v-523.75h-772.875zM397.125 618.687v-348.875l301.625 174.938z" />
<glyph unicode="&#xe614;" d="M470.275 960l138.165-295.55c1.964 74.747-60.494 251.17-138.165 295.55zM902.675 939.216c-2.001-0.179-4.138-2.453-6.448-7.012-31.357-57.297-85.464-91.319-136.037-105.549-51.418-14.431-104.899-48.862-124.518-87.895-22.922-53.225-13.092-95.469 9.203-143.424 28.116 4.26 56.254 15.121 80.069 26.544 61.091 29.743 114.011 76.352 148.432 130.903 13.842 21.938 16.552 18.002 4.633-6.699-22.442-46.506-95.974-111.676-188.31-166.963-20.579-12.322-20.882-12.747-11.644-20.784 29.551-25.712 61.94-41.273 91.338-43.76 127.503-0.587 182.232 136.014 185.806 230.943-0.948 61.597-11.367 141.194-49.081 191.754-1.147 1.439-2.242 2.048-3.443 1.941zM437.909 674.217c-203.356 0-369.108-165.752-369.108-369.108 0-203.356 165.752-369.108 369.108-369.108 203.356 0 369.046 165.752 369.046 369.108 0 50.839-10.294 99.546-28.985 143.737l-77.44-32.741c14.412-34.073 22.412-71.513 22.412-110.995 0-153.327-119.819-277.602-271.322-284.719 175.329 119.784 254.699 430 160.953 627.221 7.447-135.349 1.338-503.63-208.218-625.594-141.988 16.517-251.54 136.525-251.54 283.092 0 157.932 127.163 285.032 285.095 285.032 39.483 0 76.797-7.875 110.87-22.287l32.804 77.315c-44.191 18.691-92.835 29.048-143.674 29.048z" />
<glyph unicode="&#xe615;" d="M801.77 227.513c-134.264 48.912-177.185 90.199-177.185 178.601 0 53.052 43.992 87.434 58.989 132.902 14.997 45.468 23.672 99.299 30.883 138.458 7.211 39.159 10.077 54.305 13.998 96.027 4.793 52.071-30.066 186.499-216.456 186.499-186.335 0-221.304-134.427-216.402-186.499 3.922-41.723 6.803-56.87 13.998-96.027 7.196-39.158 15.787-92.987 30.774-138.458 14.987-45.471 59.043-79.85 59.043-132.902 0-88.402-42.921-129.689-177.185-178.601-134.754-49.021-222.23-97.362-222.23-131.513 0-34.097 0-160 0-160h1024c0 0 0 125.903 0 160s-87.53 82.437-222.23 131.513z" />
<glyph unicode="&#xe616;" d="M819.261 288.555c-0.001-64.88-23.463-117.111-70.388-156.691-46.926-39.173-93.377-62.636-177.843-70.389v-125.475h-122.344v123.027c-99.564 2.040-167.642 19.586-242.723 52.638v161.588c35.5-17.546 78.141-33.052 127.923-46.518 50.19-13.466 75.627-21.423 114.799-23.871v189.743l-21.764 15.914c-80.794 31.827-138.125 66.308-171.993 103.441-33.46 37.54-50.19 83.853-50.19 138.941 0 59.166 23.055 107.724 69.164 145.674 46.518 38.356 91.948 61.615 174.783 69.777v93.647h122.344v-91.199c93.443-4.081 158.664-22.851 234.154-56.311l-57.535-143.226c-63.656 26.115-109.699 42.029-176.619 47.742v-180.562c79.569-30.604 116.839-57.127 150.3-79.569 33.867-22.443 58.554-47.13 74.061-74.061 15.913-26.932 23.87-58.352 23.871-94.259M635.027 279.373c-0.001 17.138-6.937 31.624-20.81 43.457-13.874 11.833-15.44 24.074-43.187 36.724v-152.406c55.494 9.385 63.997 33.46 63.997 72.225M388.973 650.902c0-17.955 6.12-32.849 18.362-44.682 12.649-11.426 13.603-23.259 41.351-35.5v143.838c-52.639-7.754-59.713-28.972-59.713-63.656" />
<glyph unicode="&#xe617;" d="M512-64c-282.769 0-512 229.231-512 512s229.231 512 512 512c282.769 0 512-229.231 512-512 0-282.769-229.231-512-512-512zM512 848.696c-221.329 0-400.696-179.423-400.696-400.696s179.367-400.696 400.696-400.696c221.329 0 400.696 179.423 400.696 400.696 0 221.273-179.367 400.696-400.696 400.696zM612.174 233.739h-200.348v227.617h-125.217l225.391 212.035 225.391-212.035h-125.217v-227.617z" />
<glyph unicode="&#xe618;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM519.165 778.699c95.656 3.873 165.625-79.573 169.046-166.699h-99.502c-3.703 39.039-31.339 68.144-69.544 66.614-38.205-1.53-68.694-31.626-69.512-69.544v-78.492l310.469 0.001v-312.868h-496.276v312.868h85.722v78.492c8.088 96.786 73.941 165.756 169.597 169.629z" />
<glyph unicode="&#xe619;" d="M964.924 507.076v-571.076h-905.848v571.076l156.445 0.001v143.316c2.178 84.511 35.808 162.987 90.803 218.803 27.715 27.715 60.354 49.778 97.915 66.188 37.562 16.41 77.858 24.615 120.889 24.615 83.715-1.705 160.464-35.744 216.068-89.162 58.7-59.642 90.579-138.458 92.444-214.974h-181.607c-1.111 35.641-14.008 60.716-37.197 84.239-25.978 24.405-56.879 36.961-89.709 37.197-35.641-1.111-66.186-14.008-89.709-37.197-24.405-25.978-36.961-56.879-37.197-89.709v-143.316z" />
<glyph unicode="&#xe61a;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM512 891.591c244.998 0 443.591-198.593 443.591-443.591s-198.593-443.623-443.591-443.623c-244.998 0-443.623 198.626-443.623 443.623 0 244.998 198.626 443.591 443.623 443.591zM787.094 498.208c14.736-13.935 14.278-33.917 3.275-48.034-13.458-14.197-34.671-14.802-48.034-3.275-41.74 37.876-87.419 73.317-129.91 112.444-0.13-1.673-11.521 7.519-16.375 7.642-4.367 0-6.55-5.095-6.55-15.284 2.143-42.049-0.98-86.441 3.821-127.181 1.82-14.92 2.729-23.471 2.729-25.655l49.126-279.471c2.815-25.664-11.213-44.833-33.842-49.126-22.66-6.164-45.947 13.376-49.126 33.842 0 0-39.633 225.659-40.392 229.254-0.759 3.594-2.099 23.499-9.825 24.563-9.927-3.602-8.777-20.32-9.825-24.563-1.048-4.243-40.392-229.254-40.392-229.254-6.64-23.674-27.049-37.666-49.126-33.842-25.226 6.307-37.556 26.468-33.842 49.126l49.126 280.563c7.254 51.855 5.458 98.243 5.458 150.652 0 10.192-2.001 15.469-6.004 15.829-4.003 0.364-9.279-2.366-15.829-8.188l-129.91-111.352c-15.179-11.311-36.399-9.426-48.034 3.275-11.762 16.807-11.010 34.992 3.275 48.034l170.303 150.652c8.007 5.095 15.467 8.551 22.38 10.371 6.916 1.82 15.467 2.729 25.655 2.729h113.535c10.189 0 18.741-0.909 25.655-2.729 6.914-1.82 14.374-5.641 22.38-11.463 54.222-47.561 111.79-98.732 170.303-149.561zM587.12 756.629c0-41.239-33.431-74.671-74.671-74.671-41.239 0-74.671 33.431-74.671 74.671 0 41.239 33.431 74.671 74.671 74.671 41.239 0 74.671-33.431 74.671-74.671z" />
<glyph unicode="&#xe61b;" d="M1024 774.832c-6.849-14.46-19.598-32.726-38.243-54.796-18.646-22.070-41.668-41.477-69.066-58.221 0.761-6.088 1.332-11.796 1.712-17.124 2.955-82.022-16.691-167.123-43.951-238.020-52.837-131.816-133.799-237.905-249.436-309.94-120.588-69.168-261.026-83.879-390.421-71.349-85.902 9.866-170.567 37.917-234.595 90.756 117.106-13.999 226.394 25.839 312.794 90.185-95.976-2.429-165.71 66.999-198.635 147.264 14.842-3.889 30.369-3.42 44.522-2.283 17.422 1.636 33.959 3.271 50.23 6.85-61.199 19.744-114.747 56.042-142.698 110.734-16.396 34.655-23.798 67.655-23.973 105.026 28.677-15.099 63.171-29.812 94.751-28.54-47.694 40.403-85.93 92.039-93.039 151.26-4.488 49.379 7.869 94.455 25.686 136.419 71.345-78.408 151.394-142.935 243.728-182.653 63.144-25.858 126.11-39.685 191.215-39.955-7.515 58.15-1.672 114.389 25.686 162.105 32.197 51.3 79.171 81.065 131.853 95.893 75.381 19.329 148.903-7.974 195.211-60.504 49.938 5.394 97.776 27.548 135.848 50.23-16.177-48.99-47.679-97.7-93.61-121.008 43.735 8.099 85.464 21.045 124.433 37.672z" />
<glyph unicode="&#xe61c;" d="M1024 960v-1024h-1024v1024zM596.431 213.649c-17.4 4.85-34.558 10.363-48.169 21.108-5.412 4.33-8.118 8.299-8.118 11.907 0 87.318 0 174.636 0 261.953h165.615c0 38.247 0 76.493 0 114.74h-165.615v173.192h-95.256c-7.101-88.917-54.21-173.192-147.214-173.192v-114.74h79.019c0-94.534 0-189.068 0-283.603 0.325-44.599 20.918-82.974 56.829-103.374 33.988-17.594 69.8-22.072 105.539-22.19 35.028 0.17 72.305-0.527 105.539 1.624 29.1 1.045 56.994 7.703 81.725 20.025v122.317c-14.432-9.382-30.309-17.319-47.628-23.814-29.053-9.526-54.986-12.653-82.266-5.953z" />
<glyph unicode="&#xe61d;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM432.562 768.562h158.875v-49h185.25v-90.187h-529.375v90.187h185.25v49zM275.75 560.75h472.5v-433.312h-472.5v433.312z" />
<glyph unicode="&#xe61e;" d="M385.174 960v-78.287h-295.927v-144.049h845.505v144.049h-295.927v78.287h-253.651zM134.654 628.061v-692.061h754.691v692.061h-754.691z" />
<glyph unicode="&#xe61f;" d="M964 302.035v-366.035h-904v366.035l345.333 147.087c-85.057 54.607-125.014 150.371-125.754 240.281 1.121 135.189 93.872 269.426 232.421 270.597 145.521-4.772 231.628-141.011 232.421-270.597-2.889-97.213-45.744-189.544-122.386-239.158z" />
<glyph unicode="&#xe620;" d="M150.102 298.538c1.144 72.484 21.331 137.697 57.647 194.080 37.42 56.044 78.988 110.577 113.694 162.694 55.094 84.962 101.793 172.969 130.347 263.257 9.926 28.322 32.458 44.338 60.21 40.994 30.927 1.899 52.344-14.575 60.21-40.994 30.067-97.764 78.011-183.219 130.988-263.257 36.176-58.982 77.5-104.505 113.053-162.694 38.573-61.3 57.3-127.62 57.647-194.080-2.203-99.152-41.214-191.324-105.367-256.851-71.555-68.752-165.688-105.034-256.531-105.687-99.103 2.111-191.021 41.444-256.211 105.687-68.61 71.782-105.033 165.922-105.687 256.851zM308.953 218.472c2.375-52.198 43.843-90.327 90.314-90.955 52.665 2.331 89.705 44.501 90.314 90.955 0 18.362-4.697 34.375-14.092 48.040-10.326 13.437-20.506 27.346-28.824 40.673-13.177 21.519-26.061 42.918-32.667 65.654-1.708 8.54-6.619 12.17-14.732 10.889-7.686 1.708-12.811-1.922-15.373-10.889-6.906-24.355-18.976-45.825-31.706-65.654-8.954-14.941-19.687-26.569-29.144-40.673-9.821-14.092-14.519-30.105-14.092-48.040z" />
<glyph unicode="&#xe621;" d="M874.015 810.015c-92.648 92.648-220.639 149.985-362.015 149.985-282.751 0-512-229.249-512-512 0-282.751 229.249-512 512-512 282.751 0 512 229.249 512 512 0 141.376-57.337 269.367-149.985 362.015zM770.121 736.348l92.271-92.271-346.415-346.327-242.477 242.477 92.271 92.271 150.25-150.25 254.1 254.1z" />
<glyph unicode="&#xe622;" d="M512 960c-131.026 0-262.076-49.962-362.046-149.934-199.939-199.944-199.939-524.164 0-724.108 199.939-199.944 524.152-199.944 724.091 0 199.939 199.944 199.939 524.164 0 724.108-99.969 99.972-231.020 149.934-362.046 149.934zM512 826.253c96.8 0 193.629-36.887 267.488-110.747 147.717-147.72 147.717-387.267 0-534.988-147.717-147.72-387.258-147.72-534.975 0-147.717 147.72-147.717 387.267 0 534.988 73.858 73.86 170.687 110.747 267.488 110.747zM459.627 740.318v-239.182h-132.556v-130.934h263.488v370.116h-130.931z" />
<glyph unicode="&#xe623;" d="M0 934.175zM612.296 882.55c36.275 0.39 70.598-37.081 94.373-63.81 55.837-68.61 25.025-144.64 12.75-227.868h254.681c34.429-0.256 52.081-26.145 49.685-61.124l-71.31-441.862c-16.16-56.504-78.972-106.245-145.184-113.311h-471.111c-27.869 0.364-48.751 20.145-50.937 50.937v514.424c0.362 27.867 20.145 48.751 50.937 50.937h117.121l115.873 259.743c6.444 14.018 23.335 31.619 43.123 31.935zM185.933 601.058c19.601-0.25 35.229-13.802 36.873-35.685v-567.923c-0.284-19.184-16.182-34.125-36.873-35.625h-148.996c-18.905 0.258-35.157 14.586-36.937 35.625v567.923c0.27 19.813 15.34 34.183 36.937 35.685z" />
<glyph unicode="&#xe624;" d="M973.87 279.747h-254.607c5.156-41.804 12.507-81.954 21.642-120.938 4.962-74.133-44.682-127.555-96.751-162.948-13.579-8.487-28.007-10.608-43.283-6.365-14.434 5.092-25.042 15.276-31.826 30.553l-115.846 259.699h-117.119c-30.784 2.186-50.559 23.060-50.921 50.921v514.305c2.186 30.784 23.060 50.559 50.921 50.921h471.022c25.717-1.962 51.094-11.121 71.926-22.915 36.114-21.936 61.545-52.188 73.199-89.112l71.29-443.016c4.246-33.594-20.213-60.68-49.648-61.106zM185.863 269.563h-148.945c-20.687 1.499-36.634 16.466-36.918 35.645v567.773c1.643 21.88 17.32 35.394 36.918 35.645h148.945c21.591-1.503 36.648-15.835 36.918-35.645v-567.773c-1.779-21.035-18.018-35.388-36.918-35.645z" />
<glyph unicode="&#xe625;" d="M0 960v-256h256v256h-256zM400 960v-256h624v256h-624zM0 576v-256h256v256h-256zM400 576v-256h624v256h-624zM0 192v-256h256v256h-256zM400 192v-256h624v256h-624z" />
<glyph unicode="&#xe626;" d="M0 960v-448h448v448h-448zM576 960v-448h448v448h-448zM0 384v-448h448v448h-448zM576 384v-448h448v448h-448z" />
<glyph unicode="&#xe627;" d="M0 960v-256h256v256h-256zM384 960v-256h256v256h-256zM768 960v-256h256v256h-256zM0 576v-256h256v256h-256zM384 576v-256h256v256h-256zM768 576v-256h256v256h-256zM0 192v-256h256v256h-256zM384 192v-256h256v256h-256zM768 192v-256h256v256h-256z" />
<glyph unicode="&#xe628;" d="M220 960l-5-181.812h63.188c0 124.703 0.023 124.562 159.375 124.562v-501.562c0-62.518-0.032-62.414-87.5-60.875v-49.937h323.875v49.937c-87.326 0-87.5 0.152-87.5 60.875v501.562c159.436 0 159.812-0.035 159.812-124.562h62.75l-4.562 181.812h-584.438zM178.688 291.5l-178.688-177.75 178.688-177.75v118.938h666.625v-118.938l178.688 177.75-178.688 177.75v-119h-666.625v119z" />
<glyph unicode="&#xe629;" d="M846.25 960l-177.75-178.688h119v-666.625h-119l177.75-178.688 177.75 178.688h-118.938v666.625h118.938l-177.75 178.688zM5.062 782.812l-5.062-181.812h63.188c0 124.703 0.085 124.562 159.437 124.562v-501.562c0-62.518-0.032-62.414-87.5-60.875v-49.937h323.813v49.937c-87.326 0-87.5 0.152-87.5 60.875v501.562c159.436 0 159.875-0.035 159.875-124.562h62.75l-4.562 181.812h-584.438z" />
<glyph unicode="&#xe62a;" d="M0 848.031v-200h1024v200h-1024zM642.438 798.531h329.062v-101h-329.062v101zM0 547.969v-200h1024v200h-1024zM416.188 498.469h555.312v-101h-555.312v101zM0 247.969v-200h1024v200h-1024zM763.688 198.469h207.812v-101h-207.812v101z" />
<glyph unicode="&#xe62b;" d="M0 561.085v248.041c2.968 38.946 30.775 65.629 66.108 66.108h248.041c32.903-0.552 63.554-12.455 90.42-28.683l388.726-426.97c23.438-30.099 24.641-67.553 0-92.879l-287.378-286.286c-29.038-25.056-69.734-27.324-92.879 0l-366.052 407.575c-25.731 31.846-46.604 73.764-46.986 113.094zM125.387 659.428c27.452-25.31 66.852-22.968 90.42 0 25.195 27.22 23.091 67.030 0 90.42-27.255 24.811-66.947 22.842-90.42 0-24.916-29.101-23.98-65.457 0-90.42zM432.16 874.142h95.064c39.854-2.458 87.017-18.163 112.547-46.986l366.052-408.667c24.735-28.561 23.729-69.583 0-93.972l-286.286-286.286c-39.676-22.491-76.038-20.923-100.528 7.649l280.822 280.822c25.287 27.979 22.586 68.332 0 92.879l-327.572 366.52c-38.775 48.395-122.254 85.855-140.101 88.040z" />
<glyph unicode="&#xe62c;" d="M26.199 584.071v296.821c2.268 45.351 38.81 78.562 79.109 79.109h296.821c47.733-2.966 104.726-21.681 135.334-56.226l439.347-489.035c27.598-34.938 28.379-83.284 0-112.452l-343.893-343.893c-33.718-30.505-84.026-29.206-112.452 0l-438.039 490.342c-31.933 37.711-55.785 88.13-56.226 135.335zM154.995 755.364c1.872-44.126 36.68-75.972 75.84-76.493 44.254 1.977 75.971 37.249 76.493 76.493-1.95 44.273-37.401 75.327-76.493 75.84-44.146-1.844-75.328-36.832-75.84-75.84z" />
<glyph unicode="&#xe62d;" d="M917.624 762.232c112.314-150.392 137.082-348.125 67.667-513.099-86.43-191.871-273.749-311.689-472.565-313.133-195.721 2.177-369.451 113.044-456.612 279.073h223.355c96.49 0.695 179.2 60.004 180.444 149.425-0.045 48.959-18.287 93.921-57.764 118.112-34.692 19.78-71.149 23.694-107.826 30.215-22.772 4.768-57.296 9.367-57.764 35.159 2.113 41.446 46.038 44.896 74.818 45.047 51.713 0 103.425 0 155.138 0 22.225-0.583 44.165-1.851 63.816-9.888 20.301-9.435 30.612-23.647 30.808-43.948v-154.918c1.533-51.318 18.218-94.998 54.463-126.901 36.819-29.633 80.263-42.046 123.78-42.3 46.494 1.267 90.603 14.036 123.78 42.3 38.102 35.548 54.144 80.023 54.463 126.901zM512.725 960c106.174-1.373 206.465-35.152 288.27-88.996v-491.124c-2.733-36.006-28.8-61.077-61.615-61.528-35.955 2.712-62.248 28.62-62.715 61.528v147.227c-1.341 65.175-19.188 133.637-82.52 157.665-16.873 6.226-34.844 9.339-53.913 9.339h-251.962c-44.63-1.121-85.79-13.721-117.729-40.652-33.256-30.601-49.206-68.641-49.512-109.871 0.495-28.173 6.917-56.227 21.455-78.009 24.127-32.89 58.78-48.327 94.073-54.936 28.219-6.692 57.178-6.732 83.62-15.382 19.247-7.193 25.171-18.377 25.306-36.258-1.119-21.265-12.422-30.574-30.257-35.708-25.353-5.919-51.559-4.933-75.368-4.944h-223.355c-10.509 43.714-16.402 88.185-16.504 129.648 5.41 286.182 239.292 510.014 512.725 512z" />
<glyph unicode="&#xe62e;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM256 704h512v-512h-512v512z" />
<glyph unicode="&#xe62f;" d="M0 960h1024v-1024h-1024z" />
<glyph unicode="&#xe630;" d="M810.667 960v-1024h-170.667v469.333l-426.667-426.667v938.667l426.667-426.667v469.333z" />
<glyph unicode="&#xe631;" d="M213.333-64v1024h170.667v-469.333l426.667 426.667v-938.667l-426.667 426.667v-469.333z" />
<glyph unicode="&#xe632;" d="M516.989 937.055l-128.348-366.811-388.641 1.722 309.221-235.474-91.424-277.109-30.289-91.931 319.452 221.292 313.425-229.801-27.858 92.69-83.978 279.54 315.451 227.066-388.539 8.712-118.471 370.103zM514.254 732.985l73.544-229.852 241.248-5.369-195.865-140.96 6.686-22.134 62.756-208.984-194.599 142.682-198.347-137.415 68.378 207.211 7.192 21.932-18.386 14.030-173.528 132.147 241.248-1.064 7.648 21.83 72.025 205.945z" />
<glyph unicode="&#xe633;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM515.375 780.875l80.687-251.937 264.438-5.938-214.688-154.5 76.063-253.375-213.313 156.437-217.437-150.687 82.875 251.25-210.5 160.25 264.562-1.187 87.313 249.687z" />
<glyph unicode="&#xe634;" d="M820.36-41.063l-313.408 229.822-319.459-221.333 121.725 369.087-309.218 235.428 388.638-1.713 128.352 366.835 118.466-370.146 388.544-8.712-315.422-227.049z" />
<glyph unicode="&#xe635;" d="M242.471 154.565v-83.538h403.505v83.538h-403.505zM249.301 304.829l-5.779-83.538 402.455-27.321 5.254 83.013-401.929 27.846zM125.307 339.505v-403.505h637.833v403.505h-66.725v-336.254h-504.382v336.254h-66.725zM279.774 482.414l-19.965-80.911 391.421-97.199 19.965 81.437-391.421 96.673zM366.465 684.692l-42.557-71.979 347.813-204.38 42.557 72.505-347.813 203.854zM578.725 876.462l-69.352-46.76 224.345-334.678 69.353 46.235-224.345 335.204zM849.831 960l-83.013-9.983 48.862-400.353 83.013 9.983-48.862 400.353z" />
<glyph unicode="&#xe636;" d="M512 960c-282.77 0-512-229.225-512-512 0-123.356 43.652-236.482 116.312-324.875 201.19 213.297 601.007 148.124 700.563-86.437 125.658 93.301 207.125 242.778 207.125 411.312 0 282.775-229.23 512-512 512zM819.75 693.438c46.964-15.45 28.73-95.098-6.688-92.938-195.109 62.14-345.109 94.135-571.062 59.375-46.964 15.451-28.73 95.098 6.688 92.938 201.427 17.552 376.551 12.54 571.062-59.375zM752.938 542.75c39.759-13.12 24.383-80.588-5.688-78.75-165.324 52.633-292.418 79.732-483.875 50.312-39.803 13.093-24.32 80.579 5.688 78.75 170.463 15.076 319.309 10.484 483.875-50.312zM698.313 393.812c33.471-11.032 20.541-67.858-4.75-66.312-139.258 44.38-246.335 67.191-407.625 42.375-33.495 11.052-20.523 67.861 4.812 66.312 143.999 12.552 268.391 9.103 407.562-42.375zM454.313 104.625c-78.978 0-150.050-42.395-183.375-108.438 71.839-38.41 153.907-60.187 241.062-60.187 52.651 0 103.446 7.927 151.25 22.688-38.528 80.444-126.656 145.937-208.938 145.937z" />
<glyph unicode="&#xe637;" d="M0 660.984h241.312l363.016 295.869v-1017.705l-363.016 295.869h-241.312zM740.721 709.246c71.344-71.344 107.716-158.076 109.115-260.197 0-97.923-36.372-181.858-109.115-251.803l-73.443 75.541c50.361 50.361 75.541 109.814 75.541 178.361 0 69.945-25.18 130.798-75.541 182.557l73.443 75.541zM866.623 833.049c104.918-104.918 157.377-231.519 157.377-379.803s-52.459-275.585-157.377-381.902l-77.639 77.639c83.934 82.536 125.902 183.607 125.902 303.213 0 119.607-41.967 221.377-125.902 305.312z" />
<glyph unicode="&#xe638;" d="M621.926 669.309c-23.764-0.166-47.615-4.113-70.457-12.391-4.758-1.783-12.468-4.393-15.849-12.135l1.041-409.564c2.021-4.455 4.681-6.929 9.125-8.517h364.146c59.519-1.045 105.902 49.864 113.409 111.872 6.429 67.139-34.598 127.266-106.589 137.695-20.449 2.951-45.926 0.020-66.646-8.165-0.694-0.311-0.892 0.471-1.425 5.379-5.114 44.968-23.964 84.618-54.255 121.862-41.706 45.944-106.8 74.42-172.499 73.963zM509.109 639.355c-6.946 0-13.596-98.901-14.696-296.715 17.016-151.699 15.101-155.638 31.17 0-2.282 197.825-9.527 296.718-16.473 296.715zM465.1 615.806c-6.946-0.215-13.447-91.483-14.264-273.165 17.016-151.699 15.101-155.638 31.17 0-2.565 182.542-9.959 273.38-16.906 273.165zM337.41 587.582c-0.052 0-0.108 0-0.16-0.020-6.535-0.988-12.675-82.352-14.328-244.925 17.016-151.699 15.085-155.638 31.154 0-3.131 162.722-10.074 244.651-16.666 244.941zM380.283 579.929c-6.734 0.138-13.254-78.813-14.921-237.289 17.016-151.699 15.101-155.638 31.17 0-2.565 157.921-9.515 237.15-16.249 237.289zM295.226 576.743c-7.017-0.074-13.372-78.174-13.624-234.103 17.016-151.699 15.085-155.638 31.154 0-2.848 156.223-10.513 234.176-17.53 234.103zM422.611 572.101c-0.053 0.001-0.105 0-0.16-0.020-6.876-1.064-13.254-78.61-14.072-229.444 17.016-151.699 15.101-155.638 31.17 0-2.826 153.879-10.108 229.33-16.938 229.46zM253.698 561.903c-6.045 0.058-11.776-71.853-14.552-219.262 17.016-151.699 15.101-155.638 31.17 0-4.011 144.894-10.477 219.204-16.618 219.262zM213.019 521.143c-5.744 0.351-11.539-58.799-15.753-178.503 17.016-151.699 15.101-155.638 31.17 0-3.98 118.3-9.673 178.152-15.417 178.503zM130.267 461.845c-3.401-0.69-6.754-38.213-14.232-113.97 16.089-150.022 14.28-153.919 29.473 0-8.17 76.183-11.732 114.681-15.241 113.97zM89.236 458.739c-3.401-0.676-6.754-37.46-14.232-111.712 16.089-147.042 14.28-150.861 29.473 0-8.045 73.521-11.623 111.235-15.081 111.712-0.054 0-0.106 0.020-0.16 0zM170.707 457.042c-3.597-0.69-7.14-38.229-15.049-113.986 17.016-150.022 15.101-153.918 31.17 0-8.508 75.011-12.289 113.499-15.945 113.986-0.057 0-0.119 0.020-0.176 0zM49.341 438.648c-3.401-0.569-6.77-31.542-14.248-94.038 16.089-123.762 14.28-126.976 29.473 0-8.045 61.88-11.607 93.637-15.065 94.038-0.054 0-0.106 0-0.16 0zM11.639 404.676c-2.78-0.366-5.525-20.276-11.639-60.483 13.154-79.621 11.673-81.689 24.094 0-6.68 40.434-9.587 60.86-12.455 60.483z" />
<glyph unicode="&#xe639;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM244.188 715.812h535.625v-535.625h-535.625v535.625zM419.25 613.938c-31.935 0-57.812-25.878-57.812-57.813s25.878-57.813 57.812-57.813c31.935 0 57.875 25.878 57.875 57.813 0 31.935-25.94 57.813-57.875 57.813zM599.5 613.938c-31.935 0-57.812-25.878-57.812-57.813s25.878-57.813 57.812-57.813c31.935 0 57.812 25.878 57.812 57.813 0 31.935-25.878 57.813-57.812 57.813zM325.875 431.875c0-102.795 83.33-186.125 186.125-186.125 102.795 0 186.125 83.33 186.125 186.125h-372.25z" />
<glyph unicode="&#xe63a;" d="M0 960v-1024h1024v1024zM334.75 765.25c61.049 0 110.562-49.451 110.562-110.5s-49.513-110.562-110.562-110.562c-61.049 0-110.563 49.514-110.563 110.562 0 61.049 49.514 110.5 110.563 110.5zM679.312 765.25c61.049 0 110.5-49.451 110.5-110.5s-49.451-110.562-110.5-110.562c-61.049 0-110.562 49.514-110.562 110.562 0 61.049 49.513 110.5 110.562 110.5zM156.187 417.188h711.625c0-196.511-159.301-355.875-355.812-355.875s-355.813 159.364-355.813 355.875z" />
<glyph unicode="&#xe63b;" d="M53.149 959.999l0.001-494.622c-11.764 7.837-32.732 14.395-43.51 6.517-10.393-12.016 4.38-29.55 10.894-40.754 64.568-64.987 130.734-106.749 208.697-140.774-17.637-55.206-22.824-110.52-17.378-165.22 11.591-95.607 76.913-188.462 179.356-189.147 48.996 1.118 101.73 36.429 102.192 86.954v215.246c12.432-3.554 24.598-8.793 36.961-10.894v-201.078c0-14.494 3.426-27.003 10.31-37.512 21.249-30.706 55.646-49.228 91.85-49.475 107.208 4.28 167.276 92.317 179.388 189.147 5.247 57.238-2.369 115.196-17.41 165.252 71.083 35.893 200.612 88.582 223.384 171.185 1.025 10.249-8.623 14.063-16.567 14.136-12.859-0.528-23.271-5.312-32.875-12.482l0.001 493.52zM106.386 905.629h807.684v-471.765c-13.466-8.547-26.501-14.207-40.203-20.652l-715.282-7.619c-18.519 7.065-34.601 18.521-52.199 26.099zM373.344 655.27c-66.64 0-120.64-54.033-120.64-120.673s54-120.64 120.64-120.64c66.64 0 120.673 54 120.673 120.64 0 66.64-54.033 120.673-120.673 120.673zM659.334 655.27c-66.64 0-120.64-54.033-120.64-120.673s54-120.64 120.64-120.64c66.64 0 120.673 54 120.673 120.64 0 66.64-54.033 120.673-120.673 120.673z" />
<glyph unicode="&#xe63c;" d="M797.287 320.534c0.536 79.814-46.71 132.879-111.197 162.687-31.757 13.573-64.292 24.658-95.312 32.318-42.058 10.638-81.374 17.706-123.248 29.58-33.936 8.022-75.487 34.056-76.688 64.637 7.714 54.251 73.788 66.528 113.936 66.828 60.029 2.291 97.648-27.821 123.796-72.306 19.15-32.088 34.688-51.163 70.114-51.49 38.561 2.171 68.512 32.643 69.019 67.923-5.386 79.456-76.295 125.266-141.324 146.802-83.982 21.225-176.192 21.856-254.165-7.669-74.169-27.396-125.158-88.978-125.987-162.14 3.722-134.445 138.886-173.096 239.923-195.006 30.773-6.133 60.439-12.543 88.739-21.911 37.85-13.743 69.592-34.496 70.114-74.497 0-24.102-12.051-44.186-36.153-60.255-51.569-25.376-115.244-39.041-166.522-12.051-36.607 17.49-54.362 47.016-69.019 79.974-15.325 34.096-34.198 55.483-70.114 55.872-37.654-1.404-70.677-28.427-71.21-63.541 5.966-70.253 55.077-128.149 110.649-157.758 105.24-43.218 221.357-51.595 323.184-9.86 79.143 33.968 130.641 103.017 131.465 181.859zM987.91 340.254c18.989-39.439 28.484-81.070 28.484-124.891-1.672-76.477-31.987-147.381-81.618-197.745-57.072-53.416-125.721-81.098-197.745-81.618-47.557 0.802-92.273 12.002-131.465 32.866-91.535-15.9-198.101-2.772-276.076 30.127-118.313 53.434-209.030 147.958-256.904 256.904-36.762 98.14-46.889 190.341-27.936 284.84-62.783 113.425-44.070 250.435 43.274 339.069 96.771 92.539 236.599 104.283 346.738 38.892 156.515 25.274 317-30.396 422.878-134.751 91.257-95.2 140.449-219.961 141.324-340.713-0.15-35.65-3.989-70.611-10.955-102.981z" />
<glyph unicode="&#xe63d;" d="M819.2-64v1024h204.8v-1024h-204.8zM546.133 704h204.8v-768h-204.8v768zM273.067 448h204.8v-512h-204.8v512zM0 192h204.8v-256h-204.8v256z" />
<glyph unicode="&#xe63e;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM253.938 743.688l91.125-28.625c12.064-3.962 20.099-15.165 21.5-26.625l5.125-50.188 412.625-46.062c17.718-3.433 30.167-19.429 27.688-35.875l-25.625-144.375c-3.262-15.101-15.769-25.454-29.688-25.625h-366.562l-7.188-40.938h348.125c18.203-0.641 31.537-14.503 31.75-30.688-0.755-18.464-15.638-30.549-31.75-30.75h-385c-19.419 1.606-33.674 16.994-30.688 35.812l16.375 90.125-25.625 251.938-70.625 22.5c-8.192 2.731-14.341 7.866-18.438 15.375-7.749 16.24-0.511 34.222 13.312 42 7.89 4.102 15.596 4.613 23.562 2zM392.688 266.25c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48 0 26.51 21.49 48 48 48zM674.438 266.25c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48 0 26.51 21.49 48 48 48z" />
<glyph unicode="&#xe63f;" d="M1023.487 595.316l-42.942-246.354c-5.296-27.214-26.979-43.762-51.983-44.072h-626.054l-12.431-70.064h596.673c31.419-2.387 52.73-24.645 53.113-53.113-2.284-31.353-24.539-52.724-53.113-53.113h-659.956c-35.692 3.21-56.975 31.661-53.113 63.283l28.251 153.689-42.942 431.684-122.047 38.422c-29.824 11.842-41.997 38.823-35.032 66.674 11.582 29.027 39.335 42.288 66.674 35.032l155.949-49.723c21.009-7.876 33.094-25.073 36.162-45.202l9.040-85.885 707.419-79.104c32.503-7.040 50.148-32.786 46.333-62.153zM388.499 17.081c0-44.78-36.301-81.081-81.081-81.081-44.78 0-81.081 36.301-81.081 81.081 0 44.78 36.301 81.081 81.081 81.081 44.78 0 81.081-36.301 81.081-81.081zM872.554 17.081c0-44.78-36.301-81.081-81.081-81.081s-81.081 36.301-81.081 81.081c0 44.78 36.301 81.081 81.081 81.081 44.78 0 81.081-36.301 81.081-81.081z" />
<glyph unicode="&#xe640;" d="M643.885 900.216v-251.059c-228.040-0.006-643.885-2.507-643.885-713.157 47.147 475.222 263.732 478.21 643.885 478.215v-274.17l380.115 380.115-380.115 380.054z" />
<glyph unicode="&#xe641;" d="M0 960v-1024h1024v534.625l-168-178.125v-188.5h-688v688h338.5v168h-506.5zM732.042 960v-192.833c-175.15-0.004-494.542-1.924-494.542-547.75 36.212 365.002 202.559 367.287 494.542 367.292v-210.583l291.958 291.958-291.958 291.917z" />
<glyph unicode="&#xe642;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM547.125 738.125c136.988 0 248-111.075 248-248.063s-111.012-248-248-248c-41.456 0-80.527 10.142-114.875 28.125 0.035-0.159 0.091-0.342 0.125-0.5l-111.875-111.813-91.625 91.687 107.875 107.938c0.178 0.080 0.384 0.11 0.562 0.188-24.223 38.308-38.25 83.702-38.25 132.375 0 136.988 111.075 248.063 248.063 248.063zM547.125 627.938c-76.129 0-137.875-61.746-137.875-137.875s61.746-137.812 137.875-137.812c76.129 0 137.813 61.684 137.813 137.812 0 76.129-61.684 137.875-137.813 137.875z" />
<glyph unicode="&#xe643;" d="M573.98 960c-241.755 0-437.758-195.97-437.758-437.724 0-85.898 24.734-166.027 67.484-233.634-0.314-0.137-0.622-0.26-0.937-0.402l-190.474-190.44 161.8-161.8 197.332 197.366c-0.060 0.278-0.139 0.557-0.201 0.836 60.617-31.736 129.592-49.684 202.752-49.684 241.755 0 437.724 196.003 437.724 437.758 0 241.755-195.97 437.724-437.724 437.724zM573.98 765.545c134.351 0 243.236-108.919 243.236-243.269 0-134.351-108.885-243.269-243.236-243.269-134.351 0-243.269 108.919-243.269 243.269 0 134.351 108.919 243.269 243.269 243.269z" />
<glyph unicode="&#xe644;" d="M434.875 960v-133.312c-151.534-30.699-270.864-150.028-301.563-301.563h-133.312v-154.25h133.312c30.699-151.534 150.028-270.864 301.563-301.563v-133.312h154.25v133.312c151.534 30.699 270.864 150.028 301.563 301.563h133.312v154.25h-133.312c-30.699 151.534-150.028 270.864-301.563 301.563v133.312h-154.25zM434.875 723.938v-149.625h154.25v149.625c96.205-26.83 171.983-102.608 198.813-198.813h-149.625v-154.25h149.625c-26.83-96.205-102.608-171.983-198.813-198.813v149.625h-154.25v-149.625c-96.205 26.83-171.983 102.608-198.813 198.813h149.625v154.25h-149.625c26.83 96.205 102.608 171.983 198.813 198.813z" />
<glyph unicode="&#xe645;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM213.375 695.062h597.25v-394.25h-216.875v-56.812h52.875v-43.062h-269.25v43.062h52.875v56.812h-216.875v394.25zM286.875 620.625v-245.437h450.25v245.437h-450.25z" />
<glyph unicode="&#xe646;" d="M0 871.625v-676h371.812v-97.438h-90.625v-73.812h461.625v73.812h-90.625v97.438h371.812v676h-1024zM125.938 744h772.125v-420.812h-772.125v420.812z" />
<glyph unicode="&#xe647;" d="M440.991 893.096c-76.405 0-138.35-61.945-138.35-138.35 6.548-93.321 69.495-119.898 139.049-172.151 51.719-32.723 45.385-69.2 55.812-127.869-46.038-11.66-101.219-25.495-133.983 2.358l-78.084 55.55c-0.112 0.093-0.237 0.17-0.349 0.262-23.866 19.571-54.421 31.356-87.692 31.356-58.49 0-108.422-36.301-128.655-87.604-2.664-10.305-4.366-10.246-13.363-10.219-30.6 0-55.375-24.774-55.375-55.375 0-30.6 24.774-55.375 55.375-55.375 26.443 2.945 16.988 6.113 31.967-13.625 25.284-33.118 65.174-54.502 110.051-54.502 56.443 0 104.955 33.809 126.472 82.276 24.443-14 45.585-19.263 73.455-23.058h626.68c-77.651 141.523-270.504 119.657-397.32 131.8-26.041 64.687-31.915 150.135-92.321 193.55h-0.611c28.004 25.318 45.593 61.905 45.593 102.627 0 76.405-61.945 138.35-138.35 138.35zM440.991 823.921c38.202 0 69.175-30.973 69.175-69.175s-30.973-69.175-69.175-69.175c-38.202 0-69.175 30.973-69.175 69.175 0 38.202 30.973 69.175 69.175 69.175zM197.394 475.076c38.202 0 69.175-30.973 69.175-69.175s-30.973-69.175-69.175-69.175c-38.202 0-69.175 30.973-69.175 69.175 0 38.202 30.973 69.175 69.175 69.175zM566.676 446.078c21.707 0 39.304-17.597 39.304-39.304s-17.597-39.304-39.304-39.304c-21.707 0-39.304 17.597-39.304 39.304 0 21.707 17.597 39.304 39.304 39.304zM569.646 256.633c53.326-107.778 90.229-240.056 224.819-253.729l-94.854 253.729zM153.548 180.034v-61.838h134.769v61.838zM396.097 180.034v-61.838h148.744l-28.474 61.838zM818.921 180.034l18.342-61.838h134.769v61.838z" />
<glyph unicode="&#xe648;" d="M1024-64c0 565.54-458.46 1024-1024 1024v-204.812c452.432 0 819.188-366.756 819.188-819.188h204.812zM614.375-64c0 339.324-275.051 614.375-614.375 614.375v-204.75c226.216 0 409.625-183.409 409.625-409.625h204.75zM204.813-64c0 113.108-91.705 204.812-204.812 204.812v-204.812h204.812z" />
<glyph unicode="&#xe649;" d="M1024-64c0 0-206.726 1024-206.726 1024s-255.19 0-255.19 0c0 0 7.82-236.096 7.82-236.096 0 0-115.808 0-115.808 0 0 0 7.82 236.096 7.82 236.096 0 0-255.19 0-255.19 0 0 0-206.725-1024-206.725-1024 0 0 428 0 428 0 0 0 9.763 294.78 9.763 294.78 0 0 148.473 0 148.473 0 0 0 9.763-294.78 9.763-294.78 0 0 428 0 428 0 0 0 0 0 0 0M583.316 318.949c0 0-142.633 0-142.633 0s11.502 347.276 11.502 347.276c0 0 119.628 0 119.628 0 0 0 11.502-347.276 11.502-347.276 0 0 0 0 0 0" />
<glyph unicode="&#xe64a;" d="M512-64c-282.752 0-512 229.248-512 512s229.248 512 512 512c282.752 0 512-229.248 512-512 0-282.752-229.248-512-512-512zM448 639.68l-256-191.68 256-191.68v383.36zM768 639.68l-256-191.68 256-191.68v383.36z" />
<glyph unicode="&#xe64b;" d="M256 768l-256-256h192v-320h384l-128 128h-128v192h192l-256 256zM448 704l128-128h128v-192h-192l256-256 256 256h-192v320h-384z" />
<glyph unicode="&#xe64c;" d="M690.32 845.714v-219.357h114.323v-228.608h-447.965v128.107l-356.678-237.785 356.678-237.785v128.107h667.322v667.322h-333.68z" />
<glyph unicode="&#xe64d;" d="M771.5 700.5l-259.5 259.5-259.5-259.5h173.688v-505h-173.688l259.5-259.5 259.5 259.5h-173.687v505h173.687z" />
<glyph unicode="&#xe64e;" d="M874.542 960l-205.875-205.875-151.25 151.292v-452h452l-151.292 151.25 205.875 205.875-149.458 149.458zM54.583 442.583l151.292-151.25-205.875-205.875 149.458-149.458 205.875 205.875 151.25-151.292v452h-452z" />
<glyph unicode="&#xe64f;" d="M259.5 707.5l-259.5-259.5 259.5-259.5v173.688h505v-173.688l259.5 259.5-259.5 259.5v-173.688h-505z" />
<glyph unicode="&#xe650;" d="M572 960l151.25-151.292-205.833-205.833 149.458-149.458 205.833 205.833 151.292-151.25v452h-452zM357.125 442.583l-205.833-205.833-151.292 151.25v-452h452l-151.25 151.292 205.833 205.833-149.458 149.458z" />
<glyph unicode="&#xe651;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM512 744.562c82.32 0 156.771-33.586 210.5-87.75l86.062 61.25v-276.25l-264.375 88.125 77.875 55.437c-30.148 24.252-68.354 38.813-110.062 38.813-97.306 0-176.188-78.882-176.188-176.188 0-97.306 78.882-176.188 176.188-176.188 65.304 0 122.193 35.592 152.625 88.375l104.375-60c-51.22-88.856-147.072-148.75-257-148.75-163.782 0-296.562 132.78-296.562 296.562 0 163.782 132.78 296.562 296.562 296.562z" />
<glyph unicode="&#xe652;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c189.791 0 355.319 103.341 443.75 256.75l-180.25 103.688c-52.541-91.13-150.752-152.625-263.5-152.625-167.998 0-304.188 136.189-304.188 304.188 0 167.998 136.189 304.188 304.188 304.188 72.010 0 138.011-25.192 190.062-67.063l-134.437-95.625 456.375-152.188v476.938l-148.625-105.75c-92.762 93.514-221.25 151.5-363.375 151.5z" />
<glyph unicode="&#xe653;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM351.125 736l160.875-160.875 160.875 160.875 127.125-127.125-160.875-160.875 160.875-160.875-127.125-127.125-160.875 160.875-160.875-160.875-127.125 127.125 160.875 160.875-160.875 160.875 127.125 127.125z" />
<glyph unicode="&#xe654;" d="M512 960c-282.769 0-512-229.231-512-512s229.231-512 512-512c282.769 0 512 229.231 512 512 0 282.769-229.231 512-512 512zM512 848.75c221.329 0 400.688-179.477 400.688-400.75s-179.359-400.688-400.688-400.688c-221.329 0-400.688 179.414-400.688 400.688 0 221.273 179.359 400.75 400.688 400.75zM371.562 699.438l-111-111 140.438-140.438-140.438-140.438 111-111 140.438 140.438 140.438-140.438 111 111-140.438 140.438 140.438 140.438-111 111-140.438-140.438-140.438 140.438z" />
<glyph unicode="&#xe655;" d="M0 734.003l286.003-286.003-286.003-286.003 225.997-225.997 286.003 286.003 286.003-286.003 225.997 225.997-286.003 286.003 286.003 286.003-225.997 225.997-286.003-286.003-286.003 286.003-225.997-225.997z" />
<glyph unicode="&#xe656;" d="M512 960c-248.541 0-455.673-177.114-502.188-412h142.125c43.791 157.914 188.204 274 360.063 274 103.312 0 196.671-41.98 264.25-109.75l-164.25-164.25h412v412l-150-150c-92.642 92.672-220.604 150-362 150zM0 348v-412l150 150c92.642-92.672 220.604-150 362-150 248.541 0 455.673 177.114 502.188 412h-142.125c-43.791-157.914-188.204-274-360.063-274-103.312 0-196.671 41.98-264.25 109.75l164.25 164.25z" />
<glyph unicode="&#xe657;" d="M681.939 209.459c11.601-18.786-0.762-26.623-11.294-35.496-45.309-33.728-108.721-46.057-160.807-46.252-48.727 0.957-119.874 12.441-156.504 46.252-12.51 9.88-19.98 25.778-8.067 36.571 12.617 10.582 24.051-0.622 33.882-9.143 42.402-29.545 80.674-30.947 130.689-36.034 54.116 2.634 90.366 10.687 136.605 37.109 10.985 9.547 23.506 18.643 35.496 6.992zM868.896 880.146c-40.732 0-75.551-25.31-89.613-61.050l-198.452 48.665-82.837-234.505c-58.801-1.434-114.011-9.679-165.641-24.738-51.63-15.059-97.505-35.141-137.662-60.239-21.513 19.361-47.337 29.050-77.455 29.050-16.493 0-31.731-3.047-45.714-9.143-13.983-6.096-26.366-14.532-37.123-25.289-10.756-10.756-19.161-23.3-25.256-37.641-6.095-14.341-9.143-29.387-9.143-45.163 0-20.795 4.844-39.819 14.525-57.029 9.681-17.21 22.737-31.197 39.23-41.953-0.717-5.736-1.423-11.639-2.14-17.735-0.717-6.096-1.070-12.383-1.070-18.837 0-42.308 11.998-82.28 36.020-119.927 24.022-37.647 57.033-70.433 98.983-98.399 41.95-27.966 90.711-50.038 146.286-66.172 55.575-16.134 115.243-24.186 179.064-24.186 63.104 0 122.645 8.052 178.578 24.186 55.933 16.134 104.855 38.206 146.804 66.172 41.95 27.966 74.961 60.752 98.983 98.399 24.022 37.647 36.020 77.619 36.020 119.927 0 11.474-1.091 23.311-3.242 35.502 17.21 10.756 30.845 24.936 40.883 42.505 10.039 17.568 15.076 36.753 15.076 57.548 0 15.776-3.047 30.822-9.143 45.163-6.096 14.341-14.532 26.885-25.289 37.641-10.756 10.756-23.3 19.193-37.641 25.289-14.341 6.096-29.773 9.143-46.265 9.143-28.684 0-54.476-9.688-77.422-29.050-38.723 24.381-82.833 44.11-132.312 59.169-49.479 15.059-102.539 23.656-159.189 25.808l67.761 190.379 168.138-39.425c0-0.119 0-0.238 0-0.357 0-53.168 43.091-96.259 96.259-96.259 53.168 0 96.292 43.091 96.292 96.259 0 53.168-43.124 96.292-96.292 96.292zM510.898 596.685c58.084 0 112.941-7.154 164.571-21.495 51.63-14.341 96.639-33.718 135.003-58.099 38.365-24.381 68.68-53.253 90.91-86.598 22.23-33.345 33.329-68.665 33.329-105.953 0-37.289-11.099-72.416-33.329-105.402-22.228-32.986-52.544-61.666-90.91-86.047-38.364-24.381-83.373-43.758-135.003-58.099-51.63-14.342-106.487-21.495-164.571-21.495-58.084 0-112.941 7.154-164.571 21.495-51.63 14.342-96.447 33.718-134.452 58.099-38.005 24.381-68.096 53.061-90.326 86.047-22.23 32.986-33.362 68.113-33.362 105.402 0 37.289 11.132 72.609 33.362 105.953 22.23 33.345 52.321 62.216 90.326 86.598 38.005 24.381 82.822 43.758 134.452 58.099 51.63 14.341 106.487 21.495 164.571 21.495zM667.007 452.312c-40.099 0-72.624-32.271-72.624-72.073 0-39.801 32.526-72.073 72.624-72.073 40.099 0 72.592 32.271 72.592 72.073 0 39.801-32.493 72.073-72.592 72.073zM365.52 451.177c-40.099 0-72.592-32.271-72.592-72.073 0-39.801 32.493-72.073 72.592-72.073 40.099 0 72.624 32.271 72.624 72.073 0 39.801-32.526 72.073-72.624 72.073zM965.901 358.419c-0.344-0.179-0.682-0.386-1.038-0.648 0.351 0.262 0.686 0.473 1.038 0.648z" />
<glyph unicode="&#xe658;" d="M512-64c-282.752 0-512 229.248-512 512s229.248 512 512 512c282.752 0 512-229.248 512-512 0-282.752-229.248-512-512-512zM512 704c-141.376 0-256-114.624-256-256s114.624-256 256-256c141.376 0 256 114.624 256 256 0 141.376-114.624 256-256 256z" />
<glyph unicode="&#xe659;" d="M798.657 923.987v-158.772h-146.746c-46.428 0-97.694-22.663-140.568-65.98-42.875-43.317-89.465-107.576-163.438-213.251-74.305-106.15-115.684-170.297-141.488-199.122-25.804-28.825-21.654-26.352-59.211-26.352h-147.206v-126.176h147.206c56.387 0 113.101 23.568 153.186 68.346s77.919 106.807 150.82 210.951c73.233 104.618 119.791 166.536 149.769 196.822 29.977 30.286 31.267 28.587 50.931 28.587h146.746v-165.672l225.343 225.277-225.343 225.343zM0 765.215v-126.176h147.206c37.557 0 33.407 2.538 59.211-26.287 16.602-18.546 43.953-57.878 78.072-107.447 4.625 6.634 6.803 9.832 11.698 16.824 18.586 26.551 35.468 50.507 51.062 72.354 5.427 7.604 9.972 13.603 15.115 20.701-23.057 33.314-42.262 59.735-61.971 81.752-40.085 44.778-96.799 68.28-153.186 68.28h-147.206zM798.657 422.633v-162.123h-146.746c-19.664 0-20.953-1.634-50.931 28.653-19.829 20.033-47.91 55.546-85.169 106.461-4.506-6.391-8.153-11.45-12.88-18.204-26.088-37.269-44.074-64.156-62.957-92.004 26.789-35.481 49.595-63.040 71.369-85.038 42.875-43.317 94.14-66.045 140.568-66.045h146.746v-162.321l225.343 225.277-225.343 225.343z" />
<glyph unicode="&#xe65a;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM472.812 719l22-101.312c-64.461-14.269-123.738-32.826-118.937-104.813h75.75v-269.625h-228.187v252c0.081 200.27 147.116 216.564 249.375 223.75zM778.5 719l22.062-101.312c-64.461-14.269-123.738-32.826-118.937-104.813h75.75v-269.625h-228.187v252c0.081 200.27 147.053 216.564 249.312 223.75z" />
<glyph unicode="&#xe65b;" d="M442.43 780.214c-181.455-12.751-442.287-41.722-442.43-397.093v-447.121h404.91v478.388h-134.449c-8.518 127.738 96.669 160.721 211.053 186.040l-39.084 179.786zM984.916 780.214c-181.455-12.751-442.287-41.722-442.431-397.093v-447.121h404.91v478.388h-134.449c-8.518 127.738 96.669 160.721 211.053 186.040l-39.084 179.786z" />
<glyph unicode="&#xe65c;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM502.75 831.688c62.131-0.15 112.049-19.797 146.875-55.75s50.795-80.113 51.125-124.313c-0.431-46.578-3.988-68.023-41.438-124.313-37.449-56.29-131.604-137.744-113.812-229.187l-71.875 1.25c-31.835 64.060-23.747 141.119 0.5 192.125s42.42 67.396 62.125 114.562c19.705 47.167-26.983 100.454-69.562 100.813-42.579 0.359-58.799-17.221-72.125-47.313h-58.312c-5.036 2.908-15.898 6.149-12.312 59.313 3.585 53.163 116.682 112.963 178.812 112.813zM506.375 238.5c48.075 0 86.937-38.925 86.937-87s-38.862-87.188-86.937-87.188c-48.075 0-87 39.112-87 87.188 0 48.075 38.925 87 87 87z" />
<glyph unicode="&#xe65d;" d="M499.676 960c-82.904 0.2-233.808-79.59-238.592-150.528-4.784-70.938 9.664-75.309 16.384-79.189h77.824c17.782 40.153 39.441 63.625 96.256 63.147 56.815-0.479 119.136-71.549 92.843-134.485-26.293-62.937-50.59-84.858-82.944-152.917-32.354-68.059-43.161-170.864-0.683-256.341l95.915-1.707c-23.74 122.016 101.923 230.725 151.893 305.835 49.97 75.11 54.72 103.737 55.296 165.888-0.44 58.978-21.797 117.914-68.267 165.888-46.469 47.974-113.022 74.211-195.925 74.411zM504.455 168.448c-64.149 0-116.053-51.905-116.053-116.053 0-64.149 51.904-116.395 116.053-116.395 64.149 0 116.053 52.246 116.053 116.395 0 64.149-51.904 116.053-116.053 116.053z" />
<glyph unicode="&#xe65e;" d="M0 960v-465.333h465.333v465.333h-465.333zM558.667 960v-465.333h465.333v465.333h-465.333zM92.667 867.333h280v-280h-280v280zM651.333 867.333h280v-280h-280v280zM186 772.667v-92.667h94v92.667h-94zM744 772.667v-92.667h92.667v92.667h-92.667zM0 401.333v-465.333h465.333v465.333h-465.333zM558.667 401.333v-465.333h92.667v278.667h92.667v-92.667h280v279.333h-92.667v-92.667h-94.667v92.667h-278zM92.667 308.667h280v-280h-280v280zM186 216v-94h94v94h-94zM744 28.667v-92.667h92.667v92.667h-92.667zM931.333 28.667v-92.667h92.667v92.667h-92.667z" />
<glyph unicode="&#xe65f;" d="M402.558 960c-80.252 0-145.3-65.113-145.3-145.443 0-39.723 15.892-75.748 41.679-101.997h-298.936v-242.405c26.644 30.812 66.038 50.351 109.945 50.351 80.252 0 145.3-65.113 145.3-145.443 0-80.33-65.049-145.443-145.3-145.443-43.907 0-83.301 19.539-109.945 50.351v-343.971h314.027c-33.207 26.657-54.47 67.583-54.47 113.506 0 80.33 65.049 145.443 145.3 145.443 80.252 0 145.3-65.113 145.3-145.443 0-45.923-21.263-86.849-54.47-113.506h280.109v303.834c26.307-26.407 62.704-42.727 102.903-42.727 80.251 0 145.3 65.113 145.3 145.443 0 80.33-65.049 145.443-145.3 145.443-40.199 0-76.596-16.32-102.903-42.727v267.293h-269.617c25.793 26.251 41.679 62.268 41.679 101.997 0 80.33-65.049 145.443-145.3 145.443z" />
<glyph unicode="&#xe660;" d="M313.562 834.437v-154.625h-40.437l-238.813-101.625h955.375l-238.813 101.625h-40.437v154.625h-396.875zM0 518.812v-310.938h158.5l-55.688-271.875h818.375l-55.688 271.875h158.5v310.938h-1024zM248.688 401.625h526.562l80-390.625h-686.562l80 390.625z" />
<glyph unicode="&#xe661;" d="M512 929.872c-282.759 0-512-229.241-512-512 0-216.949 135.020-402.185 325.552-476.707v45.106c-166.911 72.175-283.718 238.155-283.718 431.602 0 259.709 210.457 470.338 470.165 470.338 259.709 0 470.165-210.629 470.165-470.338 0-193.447-116.806-359.427-283.718-431.602v-45.106c190.611 74.484 325.552 259.701 325.552 476.707 0 282.759-229.241 512-512 512zM511.828 828.299c-192.86 0-349.138-156.45-349.138-349.31 0-130.378 71.462-243.899 177.323-303.86v37.358c-87.377 56.463-145.302 154.69-145.302 266.502 0 175.187 141.929 317.288 317.116 317.288 175.187 0 317.288-142.101 317.288-317.288 0-111.812-58.046-210.039-145.474-266.502v-37.358c105.912 59.961 177.496 173.482 177.496 303.86 0 192.86-156.45 349.31-349.31 349.31zM512 715.19c-115.254 0-208.656-93.402-208.656-208.656 0-58.726 24.321-111.692 63.354-149.606v49.065c-19.765 28.557-31.333 63.194-31.333 100.541 0 97.583 79.052 176.635 176.635 176.635 97.583 0 176.807-79.052 176.807-176.635 0-37.347-11.536-71.984-31.333-100.541v-48.893c38.931 37.902 63.182 90.796 63.182 149.434 0 115.254-93.402 208.656-208.656 208.656zM512 606.386c-55.13 0-99.852-44.722-99.852-99.852s44.722-99.68 99.852-99.68c55.13 0 99.852 44.55 99.852 99.68 0 55.13-44.722 99.852-99.852 99.852zM512 381.030c-119.697 0-121.2-44.073-121.2-44.073s-0.461-128.667 10.33-195.917c10.791-67.249 55.779-205.041 55.779-205.041h110.182c0 0 45.006 138.305 55.779 205.558 10.773 67.252 10.33 195.4 10.33 195.4 0 0-1.502 44.073-121.2 44.073z" />
<glyph unicode="&#xe662;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM430.25 736.562h163.5v-206.812h206.812v-163.5h-206.812v-206.812h-163.5v206.812h-206.812v163.5h206.812v206.812z" />
<glyph unicode="&#xe663;" d="M367 960v-367h-367v-290h367v-367h290v367h367v290h-367v367h-290z" />
<glyph unicode="&#xe664;" d="M512 960c-282.752 0-512-229.248-512-512s229.248-512 512-512c282.752 0 512 229.248 512 512 0 282.752-229.248 512-512 512zM512 841.25c217.172 0 393.25-176.078 393.25-393.25s-176.078-393.25-393.25-393.25c-217.172 0-393.25 176.078-393.25 393.25 0 217.172 176.078 393.25 393.25 393.25zM384 703.625v-511.25l384 255.625-384 255.625z" />
<glyph unicode="&#xe665;" d="M512-64c-282.752 0-512 229.248-512 512s229.248 512 512 512c282.752 0 512-229.248 512-512 0-282.752-229.248-512-512-512zM384 703.616v-511.232l384 255.616-384 255.616z" />
<glyph unicode="&#xe666;" d="M85.333 960l853.333-512-853.333-512z" />
<glyph unicode="&#xe667;" d="M273.92-33.28h102.4l229.786 409.651h264.294c0 0 153.6 0 153.6 71.629 0 71.68-153.6 71.68-153.6 71.68h-264.294l-229.786 409.6h-102.4l127.386-409.6h-183.654l-115.251 102.451h-102.4l81.971-174.080-81.971-174.131h102.4l115.251 102.451h183.654l-127.386-409.651z" />
<glyph unicode="&#xe668;" d="M512 960c304.174-5.688 510.014-238.955 512-512-5.44-290.921-238.955-510.014-512-512-50.51 0.196-99.824 8.057-144.864 21.011 9.584 15.482 19.167 32.622 28.752 51.421 20.212 41.089 29.442 85.094 39.81 127.171 4.423 18.062 10.69 41.837 18.799 71.326 8.847-16.956 24.881-31.701 48.104-44.233 60.617-29.493 135.713-19.749 189.65 7.741 75.671 42.981 120.012 109.741 143.758 184.674 45.724 173.774-13.234 340.854-170.851 408.052-190.050 57.245-402.149-14.199-476.060-184.121-32.27-113.556-30.36-259.351 81.832-306.868 5.901-2.212 11.245-2.212 16.035 0 10.53 6.016 22.742 58.159 20.458 69.114-0.738 3.317-3.317 7.925-7.741 13.823-62.005 83.941-24.217 208.863 33.728 271.482 98.532 84.632 251.884 98.375 342.255 17.693 80.157-93.511 61.952-239.043 10.505-331.749-28.427-45.334-66.56-79.593-117.771-80.173-53.905 1.194-94.563 46.808-80.726 98.419 11.759 60.569 44.386 124.804 45.339 181.356-2.605 47.038-26.16 76.871-69.667 77.408-69.451-8.757-97.488-73.691-98.419-132.7 2.219-28.357 3.94-57.218 16.587-80.726-14.744-59.715-26.172-107.819-34.281-144.311-12.431-64.746-36.806-132.463-40.363-195.179-1.106-20.642-1.29-39.81-0.553-57.503-189.718 89.969-305.194 265.709-306.315 468.872 5.526 295.504 238.955 510.014 512 512z" />
<glyph unicode="&#xe669;" d="M0 875.312v-854.625h1024v854.625h-1024zM78.562 795.438h866.875v-694.875h-866.875v694.875zM257.25 695.125c-24.448 0-45.018-8.331-61.688-25-16.669-16.669-25-37.239-25-61.687 0-23.337 8.331-43.331 25-60 16.669-16.669 37.239-25 61.688-25 23.337 0 43.331 8.331 60 25 16.669 16.669 25 36.663 25 60 0 24.448-8.331 45.018-25 61.687-16.669 16.669-36.663 25-60 25zM625.625 652.875l-196.687-298.375-104.438 86.688-153.938-200v-58.375h682.875v234.5l-227.813 235.563z" />
<glyph unicode="&#xe66a;" d="M777.24 873.042c151.951-94.77 245.894-258.639 246.76-431.558 0-57.976-9.783-113.415-29.35-166.318h-217.41zM971.822 221.9c-80.966-162.677-240.113-266.987-413.079-284.807-88.667-5.677-184.947 11.099-256.544 42.395v242.412zM0 441.484c2.263 193.968 113.416 365.17 278.285 450.038l194.582-173.928-454.386-407.643c-12.32 44.931-18.48 88.776-18.48 131.533zM247.847 8.838c-96.688 60.592-170.525 148.523-210.887 245.673l210.887 190.234zM722.888 564.32l-390.251 351.117c59.591 20.032 121.038 32.399 179.363 32.611 73.919 0 144.215-15.219 210.887-45.656z" />
<glyph unicode="&#xe66b;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM237.25 708.562h549.5v-521.125h-549.5v521.125zM305.062 642.812v-285.75h413.875v285.75h-413.875z" />
<glyph unicode="&#xe66c;" d="M0 907.125v-971.125h1024v971.125h-1024zM126.375 784.625h771.25v-532.562h-771.25v532.562z" />
<glyph unicode="&#xe66d;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM328 756.625c10.549 0.622 20.084-5.683 27.312-16.875l70-132.75c7.37-15.729 3.183-32.574-7.812-43.812l-32.062-32.063c-1.98-2.712-3.281-5.766-3.313-9.125 12.296-47.596 49.594-91.497 82.5-121.688 32.906-30.191 68.274-71.067 114.187-80.75 5.675-1.583 12.627-2.149 16.688 1.625l37.25 37.937c12.859 9.746 31.459 14.469 45.188 6.5h0.625l126.313-74.563c18.54-11.622 20.462-34.085 7.187-47.75l-87-86.312c-12.847-13.176-29.916-17.605-46.5-17.625-73.343 2.198-142.642 38.194-199.562 75.187-93.431 67.971-179.134 152.275-232.938 254.125-20.635 42.709-44.876 97.203-42.562 144.875 0.206 17.933 5.058 35.503 17.688 47.063l87 87c6.777 5.765 13.483 8.627 19.812 9z" />
<glyph unicode="&#xe66e;" d="M1009.772 108.508l-144.372-143.214c-21.311-21.856-49.56-29.261-77.071-29.294-121.661 3.645-236.658 63.406-331.078 124.77-154.984 112.751-297.188 252.556-386.438 421.506-34.231 70.847-74.395 161.24-70.558 240.318 0.342 29.747 8.359 58.942 29.309 78.117l144.372 144.299c29.979 25.5 58.971 16.684 78.156-13.020l116.149-220.247c12.225-26.092 5.213-54.049-13.026-72.692l-53.19-53.163c-3.284-4.499-5.375-9.617-5.428-15.189 20.397-78.953 82.188-151.722 136.773-201.802 54.585-50.080 113.258-117.93 189.42-133.992 9.414-2.626 20.944-3.548 27.68 2.712l61.874 62.928c21.33 16.167 52.127 24.069 74.9 10.85h1.086l209.502-123.685c30.754-19.278 33.96-56.535 11.941-79.202z" />
<glyph unicode="&#xe66f;" d="M614.034 727.864c15.753 0 30.252-3.043 43.498-9.129 39.321-19.791 62.536-57.405 62.831-99.348v-288.916c-7.375-45.931-59.947-33.439-61.22 0v272.806c-4.686 15.557-34.725 9.106-35.443 0v-626.164c-7.639-63.938-90.26-45.17-92.367 1.074 0 127.81 0 255.621 0 383.431-5.283 24.731-40.051 13.494-40.813-1.074 1.474-127.448 1.074-254.904 1.074-382.357-8.24-63.61-90.459-47.334-92.367-1.074l-1.074 626.164c-4.815 15.221-32.651 9.383-33.295 0v-272.806c-7.375-45.931-59.947-33.439-61.22 0v288.916c0.743 40.154 15.46 80.382 50.48 99.348 11.457 6.087 25.419 9.129 41.887 9.129 72.677 0 145.353 0 218.030 0zM612.95 859.070c0-55.742-45.188-100.93-100.93-100.93-55.742 0-100.93 45.188-100.93 100.93 0 55.742 45.188 100.93 100.93 100.93 55.742 0 100.93-45.188 100.93-100.93z" />
<glyph unicode="&#xe670;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM684.255 800.065c15.009-0.119 29.582-5.655 40.592-16.665l85.204-85.171c23.552-23.552 21.938-63.234-3.534-88.77-25.536-25.536-65.282-27.054-88.77-3.566l-85.171 85.171c-23.552 23.488-21.906 63.298 3.566 88.77 13.532 13.566 31.103 20.365 48.113 20.231zM543.87 687.53l170.375-170.342-276.879-276.815-170.375 170.375 276.879 276.782zM222.768 378.488l179.712-179.712-224.713-45.001 45.001 224.713z" />
<glyph unicode="&#xe671;" d="M997.688 797.225l-134.419 134.419c-37.064 37.064-99.779 34.64-139.973-5.656-40.194-40.194-42.82-103.011-5.656-140.074l134.419-134.419c37.064-37.064 99.779-34.64 140.074 5.655 40.194 40.295 42.719 102.91 5.554 140.074zM140.781 343.574l268.838-268.838 436.886 436.785-268.838 268.838-436.886-436.785zM0-61.904l354.579 70.997-283.582 283.582-70.997-354.579z" />
<glyph unicode="&#xe672;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM282.312 713.062h155.063v-530.125h-155.063v530.125zM586.625 713.062h155.063v-530.125h-155.063v530.125z" />
<glyph unicode="&#xe673;" d="M0 960h426.667v-1024h-426.667zM597.333 960h426.667v-1024h-426.667z" />
<glyph unicode="&#xe674;" d="M987.136 566.784c-1.486-109.207-49.143-208.251-126.293-271.701-100.32-76.356-226.291-101.797-339.285-103.765v-61.44c-3.027-78.873-49.128-147.327-114.688-177.493-24.106-11.443-50.728-16.288-75.093-16.384-34.357 0.416-67.781 10.805-95.573 24.576v177.493c23.444-16.519 50.308-27.635 77.141-19.797 23.735 8.809 34.6 27.371 34.816 49.835v492.885h173.397v-307.2c39.842 0.552 79.145 4.924 115.371 12.971 47.49 11.527 92.72 29.714 126.976 60.075 42.038 40.049 60.399 87.737 60.757 139.947-0.651 77.308-39.553 141.596-98.987 178.859-67.365 38.542-142.063 51.59-213.675 51.883-77.221-1.692-153.224-16.877-215.040-55.296-63.134-40.871-97.052-108.451-97.621-175.445 4.010-48.28 16.372-115.5 49.152-146.091l-110.592-118.784c-35.885 35.89-59.533 79.83-75.093 124.245-15.273 46.979-25.748 93.748-25.941 140.629 1.887 114.012 52.552 216.931 132.437 283.989 100.798 78.801 227.355 108.624 342.699 109.227 126.288-2.147 251.1-33.95 344.064-108.544 87.176-74.103 130.299-181.36 131.072-284.672z" />
<glyph unicode="&#xe675;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM634.5 768.688c40.225-0.371 78.097-18.409 113.688-54 39.519-40.455 62.202-92.112 47.437-151.813-8.436-31.636-28.426-63.958-60.063-97-95.825-93.982-181.991-181.54-292.125-291.063-21.066-20.697-58.703-45.967-97-47.5-31.852 0.25-57.529 13.346-81.25 36.938-25.236 25.559-43.897 58.793-41.125 100.188 3.515 29.527 17.941 56.941 43.25 82.25l245.75 245.687c36.319 36 87.439 63.868 136 22.187 43.908-45.484 15.864-94.722-23.187-135l-226.75-225.687-43.25 44.313 225.687 225.687c10.309 10.351 31.369 28.453 23.188 47.437-10.666 9.628-36.213-11.943-47.438-23.187l-245.687-245.75c-12.288-12.376-22.972-25.384-25.313-44.25-2.109-16.169 5.252-32.69 22.125-49.563 32.711-30.338 55.478-21.673 90.687 10.5 93.685 93.685 168.869 168.053 265.25 264.188 31.684 31.684 54.582 51.654 71.187 95.438 13.096 49.349-37.583 119.511-94.937 127.562-37.643 3.512-70.469-21.203-98.063-47.438l-268.937-268.875-44.25 43.187 268.875 270c42.182 41.478 84.889 63.266 128.125 65.375 2.702 0.132 5.443 0.212 8.125 0.188z" />
<glyph unicode="&#xe676;" d="M402.519 11.77c175.849 174.873 313.402 314.661 466.405 464.721 50.513 52.758 82.505 104.394 95.975 154.907 23.574 95.323-12.67 177.869-75.77 242.463-60.616 60.616-125.441 89.24-194.476 85.872-69.035-3.368-137.228-38.166-204.578-104.394l-429.362-431.046 70.718-69.035 429.362 429.362c44.058 41.888 96.486 81.378 156.591 75.77 91.577-12.856 172.45-124.942 151.54-203.737-26.514-69.908-63.066-101.793-113.655-152.381-153.891-153.498-273.883-272.199-423.469-421.785-56.218-51.37-92.575-65.278-144.804-16.838-26.94 26.94-38.727 53.32-35.359 79.137 3.737 30.123 20.791 50.958 40.411 70.718l392.319 392.319c17.923 17.955 58.74 52.416 75.77 37.043 13.064-30.312-20.582-59.243-37.043-75.77l-360.327-360.327 69.035-70.718 362.011 360.327c62.353 64.312 107.15 142.899 37.043 215.523-77.537 66.55-159.217 22.121-217.207-35.359l-392.319-392.319c-40.411-40.411-63.423-84.189-69.035-131.334-4.426-66.095 25.373-119.149 65.667-159.958 37.875-37.669 78.794-58.534 129.651-58.932 61.148 2.448 121.271 42.724 154.907 75.77z" />
<glyph unicode="&#xe677;" d="M512.062 960c-282.748 0-512.062-229.19-512.062-511.938 0-222.286 141.753-411.454 339.751-482.198l126.204 333.753c-63.376 19.638-109.46 78.623-109.46 148.446 0 85.884 69.684 155.568 155.568 155.568 85.884 0 155.443-69.684 155.443-155.568 0-69.877-46.039-128.979-109.46-148.571l126.204-333.753c198.043 70.703 339.751 259.981 339.751 482.323 0 282.748-229.19 511.938-511.938 511.938z" />
<glyph unicode="&#xe678;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM731.688 720.188l106.375-106.375-438-438-214.125 214.188 105.687 105.688 107.75-107.813 332.313 332.313z" />
<glyph unicode="&#xe679;" d="M512 960c-282.769 0-512-229.231-512-512s229.231-512 512-512c282.769 0 512 229.231 512 512 0 282.769-229.231 512-512 512zM512 848.75c221.329 0 400.688-179.477 400.688-400.75s-179.359-400.688-400.688-400.688c-221.329 0-400.688 179.414-400.688 400.688 0 221.273 179.359 400.75 400.688 400.75zM708.188 691.125l-296.75-296.813-96.25 96.25-94.438-94.375 191.312-191.313 391.188 391.187-95.062 95.063z" />
<glyph unicode="&#xe67a;" d="M856.949 875.39l-521.763-521.763-169.22 169.22-165.966-165.966 336.271-336.271 687.729 687.729-167.051 167.051z" />
<glyph unicode="&#xe67b;" d="M438.562 960v-592.188h146.875v592.188h-146.875zM149.938 810.062c-92.654-92.654-149.938-220.677-149.938-362.062 0-282.77 229.23-512 512-512 282.77 0 512 229.23 512 512 0 141.385-57.284 269.409-149.938 362.062l-103.125-103.125c66.269-66.269 107.25-157.826 107.25-258.938 0-202.224-163.963-366.188-366.188-366.188-202.224 0-366.188 163.963-366.188 366.188 0 101.112 40.981 192.669 107.25 258.938l-103.125 103.125z" />
<glyph unicode="&#xe67c;" d="M1.213 422.089c-1.555 8.522-1.172 15.759-1.172 24.625v2.345c139.368 11.956 291.192 47.062 404.194 127.818 32.423-14.856 64.31-12.829 94.898 2.345 64.088-64.73 126.981-109.717 210.884-136.026 8.591-21.89 22.26-38.697 41.005-50.424-22.65-56.287-54.283-105.928-94.898-148.925-60.028 43.242-139.291 11.93-166.364-50.424-187.743 2.034-376.968 84.174-488.548 228.665zM488.589 119.547c-95.841-49.497-196.998-76.183-299.924-70.359-79.613 66.803-136.981 154.126-166.364 245.082 129.299-111.129 301.151-174.548 466.288-174.723zM700.645 133.619c109.062 22.749 209.276 66.602 290.551 133.681-106.677-278.133-427.928-405.282-691.23-287.297 85.472 12.315 165.761 41.836 234.315 80.912 68.509-39.259 150.042 2.037 166.364 72.704zM902.156 419.743c41.98 3.098 82.915 6.187 121.844 12.899-0.076-10.482-1.158-20.799-1.172-30.489-73.191-93.667-183.208-157.662-292.894-187.623 40.93 49.694 71.292 104.894 92.555 160.652 33.429 4.337 60.734 19.693 79.667 44.56zM920.901 494.792c-4.621 34.76-22.007 62.973-49.206 80.912 8.595 79.59 10.012 157.249 3.515 232.183 82.054-84.705 131.74-192.823 145.276-300.196-29.681-6.254-62.875-10.554-99.584-12.899zM350.343 629.646c-103.495-65.209-224.679-96.885-344.444-106.71 29.909 186.915 157.223 341.396 328.042 404.561 4.639-60.701 18.696-119.304 41.005-170.033-35.816-36.371-44.323-82.999-24.603-127.818zM551.854 716.422c53.943 66.977 98.79 135.42 124.187 215.766 43.738-14.854 83.182-34.007 118.329-57.459 12.276-96.583 13.982-192.782 4.686-282.606-42.435-7.243-75.797-33.063-90.211-70.358-62.648 22.68-113.932 64.912-159.334 110.228 11.403 29.421 11.834 56.998 2.343 84.43zM442.898 785.607c-21.798 53.887-36.025 106.104-36.319 162.997 65.365 15.038 135.933 14.537 197.997 2.345-23.71-66.377-61.173-127.898-100.756-178.241-13.928 5.949-47.851 19.2-60.922 12.899z" />
<glyph unicode="&#xe67d;" d="M282.358 196.998l-0.788-63.729h-281.57v63.729c0 77.248 65.051 139.123 142.299 139.123s141.054-61.881 140.059-139.123zM270.247 486.9c0-70.798-57.151-128.191-127.948-128.191-70.798 0-128.433 57.393-128.433 128.191 0 70.798 57.636 128.191 128.433 128.191 70.798 0 127.948-57.393 127.948-128.191zM631.541 206.762l-0.908-73.492h-324.709v73.493c0 89.083 75.017 160.438 164.1 160.438s162.665-71.362 161.517-160.438zM617.575 541.080c0-81.645-65.907-147.831-147.551-147.831-81.645 0-148.111 66.186-148.111 147.831 0 81.645 66.466 147.831 148.111 147.831 81.645 0 147.551-66.186 147.551-147.831zM1023.985 216.526l-1.029-83.256h-367.849v83.256c0 100.918 84.984 181.753 185.902 181.753s184.276-80.843 182.976-181.753zM1008.164 595.26c0-92.492-74.663-167.471-167.154-167.471-92.492 0-167.788 74.979-167.788 167.471 0 92.492 75.296 167.471 167.788 167.471 92.492 0 167.154-74.979 167.154-167.471z" />
<glyph unicode="&#xe67e;" d="M311.294 891.453l-25.957-674.798c-34.931 17.925-78.756 25.681-124.74 19.157-99.151-14.042-170.547-88.839-159.463-167.039 11.086-78.206 100.449-130.206 199.596-116.159 87.995 12.47 154.047 72.792 160.049 140.864l0.020-0.038c0.012 0.154 0.022 0.386 0.036 0.56 0.146 1.73 0.23 3.482 0.294 5.222 3.692 70.288 26.297 604.182 26.297 604.182l556.727 57.36-25.145-480.835c-35.727 19.885-81.646 28.743-129.932 21.901-99.151-14.056-170.541-88.837-159.457-167.047 11.082-78.198 100.445-130.208 199.596-116.146 89.869 12.72 156.825 75.366 160.337 145.212l0.043 0.042c1.884 31.388 33.295 756.173 34.405 781.786z" />
<glyph unicode="&#xe67f;" d="M0 448l176.562-176.562-0.531 123.531h282.937v-283.438l-121.969-0.531 175-175 176.562 176.562-123.531-0.531v282.937h283.438l0.531-121.969 175 175-176.562 176.562 0.531-123.531h-282.938v283.437l121.969 0.531-175 175-176.562-176.562 123.531 0.531v-282.937h-283.438l-0.531 121.969-175-175z" />
<glyph unicode="&#xe680;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM218 531.25h588.062v-166.5h-588.062v166.5z" />
<glyph unicode="&#xe681;" d="M0 593h1024v-290h-1024z" />
<glyph unicode="&#xe682;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM494.062 781v-98.75h36.563v98.75c16.87-1.379 33.576-4.742 49.813-9.688v-89.062h36.562v74.5c15.914-7.922 31.106-17.491 45-29 0.073-0.061 0.113-0.126 0.188-0.188v-364.812c-0.073-0.061-0.113-0.126-0.188-0.188-41.604-34.338-94.868-54.042-150-54.062-53.883 0.104-107.556 18.905-150 54.062-0.074 0.061-0.114 0.126-0.188 0.188v364.812c0.074 0.061 0.114 0.126 0.188 0.188 13.988 11.545 29.373 21.267 45.625 29.312v-74.812h36.625v89.312c16.134 4.882 32.814 8.112 49.812 9.438zM289.938 489.5h43.125v-165.312c48.831-39.877 111.080-63.813 178.938-63.813s130.106 23.936 178.938 63.813v165.312h43.125v-186.812c-13.385-12.353-27.831-23.557-43.125-33.563-35.234-23.052-75.092-39.519-117.938-47.625v-60.75h72.125v-45.75h-266.25v45.75h72.125v60.75c-42.845 8.106-82.703 24.573-117.938 47.625-15.293 10.006-29.74 21.21-43.125 33.563v186.812zM451 221.5c19.752-3.737 40.164-5.688 61-5.688s41.248 1.951 61 5.688v21.562h-122v-21.562z" />
<glyph unicode="&#xe683;" d="M484.375 960c-26.134-2.038-51.757-7.057-76.563-14.562v-137.313h-56.25v115.063c-24.987-12.369-48.681-27.312-70.187-45.063-0.113-0.094-0.199-0.218-0.313-0.313v-560.875c0.114-0.094 0.199-0.219 0.313-0.313 65.256-54.054 147.781-82.965 230.625-83.125 84.764 0.031 166.66 30.331 230.625 83.125 0.114 0.094 0.2 0.218 0.313 0.313v560.875c-0.114 0.094-0.2 0.219-0.313 0.313-21.361 17.694-44.72 32.383-69.187 44.563v-114.563h-56.25v136.937c-24.963 7.604-50.625 12.817-76.563 14.938v-151.875h-56.25v151.875zM170.625 511.812v-287.187c20.58-18.992 42.737-36.241 66.25-51.625 54.172-35.443 115.502-60.787 181.375-73.25v33.125h187.5v-33.125c65.873 12.463 127.203 37.807 181.375 73.25 23.513 15.384 45.67 32.633 66.25 51.625v287.187h-66.25v-254.187c-75.077-61.31-170.795-98.125-275.125-98.125-104.33 0-200.048 36.815-275.125 98.125v254.187h-66.25zM605.75 99.75c-30.369-5.746-61.716-8.75-93.75-8.75s-63.381 3.004-93.75 8.75v-93.438h-110.938v-70.312h409.375v70.312h-110.938v93.438z" />
<glyph unicode="&#xe684;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM512 786.562c140.957 0 255.25-114.293 255.25-255.25 0-42.698-11.7-99.064-35.75-130.937l-219.5-290.937-219.5 290.937c-26.478 35.092-35.75 83.798-35.75 130.937 0 140.957 114.293 255.25 255.25 255.25zM512 638.688c-59.309 0-107.375-48.066-107.375-107.375s48.066-107.375 107.375-107.375c59.309 0 107.375 48.065 107.375 107.375 0 59.31-48.066 107.375-107.375 107.375z" />
<glyph unicode="&#xe685;" d="M512 960c-213.182 0-386-172.818-386-386 0-71.293 13.954-144.928 54-198l332-440 332 440c36.373 48.205 54 133.424 54 198 0 213.182-172.818 386-386 386zM512 736.438c89.699 0 162.438-72.739 162.438-162.438 0-89.699-72.739-162.438-162.438-162.438-89.699 0-162.438 72.739-162.438 162.438 0 89.699 72.739 162.438 162.438 162.438z" />
<glyph unicode="&#xe686;" d="M620.799 960v-142.576h155.602l-205.105-203.741c-57.551 37.244-126.151 58.857-199.808 58.857-203.388 0-368.286-164.866-368.286-368.254 0-203.388 164.899-368.286 368.286-368.286 203.388 0 368.254 164.899 368.254 368.286 0 77.308-23.811 149.052-64.512 208.29l201.661 201.661v-154.237h142.576c0 124.992 1.354 275.333 1.332 400zM371.487 524.309c121.525 0 220.023-98.498 220.023-220.023s-98.498-220.055-220.023-220.055c-121.525 0-220.055 98.53-220.055 220.055 0 121.525 98.53 220.023 220.055 220.023z" />
<glyph unicode="&#xe687;" d="M512 960c-261.823 0-474.86-200.309-474.86-446.554 0-12.915 0.583-25.972 1.742-38.944l9.332-196.277 300.046 24.636-9.332 196.152c-0.404 4.691-0.684 9.627-0.684 14.433 0 90.112 77.969 163.305 173.757 163.305 95.787 0 173.757-73.251 173.757-163.305 0-4.807-0.221-9.684-0.684-14.433l-9.27-196.152 299.984-24.636 9.332 196.277c1.158 12.972 1.742 26.030 1.742 38.944 0 246.245-213.037 446.554-474.86 446.554zM358.089 186.961l-299.797-26.253 19.597-223.588 299.797 26.253-19.597 223.588zM665.538 185.841l-19.534-223.65 299.797-26.191 19.534 223.588-299.797 26.253z" />
<glyph unicode="&#xe688;" d="M288.949 960l-50.517-237.822-237.307-56.56 238.753-50.3 56.782-236.442 50.457 237.882 237.347 56.48-238.733 50.32-56.782 236.442zM915.456 949.188l-186.488-185.751 101.717-101.319 186.468 185.757-101.697 101.313zM661.143 695.886l-661.143-658.565 101.709-101.321 661.143 658.565-101.717 101.321zM866.143 577.945l-26.985-127.061-126.815-30.26 127.558-26.86 30.318-126.321 26.965 127.061 126.815 30.26-127.558 26.86-30.298 126.321zM658.131 347.063l-29.736-140.121-139.806-33.26 140.629-29.62 33.431-139.301 29.736 140.121 139.806 33.3-140.609 29.64-33.451 139.241z" />
<glyph unicode="&#xe689;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM508.312 725.625c69.143-0.329 132.342-44.421 159.188-105.937 9.183-21.427 14.062-43.437 14.062-67.313v-60.875h83.875v-321.125h-506.875v321.125h77.125c-0.699 43.013-1.585 92.22 13.5 128.188 29.329 64.777 89.982 106.267 159.125 105.937zM504.562 623.375c-38.298-0.806-63.557-29.93-67.25-71v-60.875h142.625v61.5c-1.758 38.946-31.234 69.303-71.625 70.375-1.262 0.034-2.514 0.026-3.75 0z" />
<glyph unicode="&#xe68a;" d="M505.25 959.996c-127.513 0.608-239.472-75.849-293.561-195.312-27.819-66.331-26.165-157.173-24.875-236.499h-142.187v-592.186h934.747v592.186h-154.625v112.312c0 44.031-9.065 84.672-26 124.187-49.509 113.449-165.986 194.704-293.499 195.312zM505.25 771.435c74.489-1.977 128.82-57.987 132.062-129.812v-113.437h-263.061v112.312c7.031 78.185 56.511 132.914 131 130.937z" />
<glyph unicode="&#xe68b;" d="M264.886-55.075c-89.119 22.95-154.484 104.367-164.887 194.673-19.694 136.708 38.159 270.523 115.351 380.299-14.429 32.027-34.178 49.4-62.868 6.483-52.232-72.184-90.346-154.013-115.989-239.032-16.273 109.985 63.515 215.375 114.246 292.995-9.801 44.769-64.271 104.866-62.148 103.996-28.806 35.757-60.56 108.209-30.196 150.48 41.264 69.604 117.989 127.4 201.574 125.116 52.067-12.53 77.22-66.026 109.019-104.464 11.468-15.418 22.936-30.837 34.405-46.255 115.814 61.803 246.492 115.504 380.064 90.942 98.74-15.312 180.753-96.534 197.812-194.858 33.668-165.924-38.545-332.808-135.655-464.145-100.698-132.994-235.672-250.713-400.090-293.683-58.866-12.185-121.801-17.054-180.638-2.546zM496.261 10.75c126.045 40.976 221.307 140.605 305.663 238.362 92.18 117.144 154.295 271.969 123.924 422.197-22.125 96.434-111.341 170.87-210.365 174.696-96.31 6.23-192.196-23.677-276.958-67.413-1.751-13.704 20.278-57.891 41.3-34.673 89.828 46.674 199.681 67.515 297.619 35.505 63.34-23.531 109.17-84.91 110.988-152.866 11.88-143.978-75.975-274.348-177.676-367.897-33.238-39.241-70.742-54.406-123.789-27.903-74.925 34.332-152.932 62.814-225.941 100.835-48.501 45.488-82.513 104.018-123.548 156.106-14.173-17.211-28.081-47.305-40.474-69.574-49.819-98.454-83.578-223.865-22.738-325.43 52.235-90.789 169.115-116.351 265.507-96.119 19.121 3.439 37.998 8.213 56.488 14.174zM631.295 235.107c-16.157 93.054-26.308 187.457-38.094 280.928-42.132 68.358-95.937 131.489-137.377 198.77-43.939 58.739-89.202 123.404-136.139 173.518-24.672 42.311-75.075 66.81-121.168 42.449-61.516-25.832-123.395-75.579-136.502-144.163 15.267-53.844 57.316-97.502 87.269-144.564 75.097-98.903 141.397-203.605 215.644-292.408 89.462-39.078 183.487-78.332 268.533-119.1zM382.602 384.21c-39.445 19.479-56.090 70.466-86.156 102.972-41.193 57.88-87.101 113.121-121.425 175.409 11.235 41.791 25.057 49.771 49.337 78.396 35.735 25.406 106.892 90.99 152.057 26.519 59.721-75.828 119.199-152.465 169.412-234.994l48.491-199.884-42.694-33.953c-43.022 24.57-169.021 85.535-169.021 85.535zM341.304 574.574c-34.984 47.216-67.643 96.733-107.169 140.205-50.612-33.699-18.681-77.665 8.527-119.504 45.084-58.63 85.359-121.186 133.728-177.148 68.010 62.375-22.158 127.215-35.087 156.447zM519.611 527.144c-12.358 43.513-49.435 78.74-74.008 117.152-34.391 46.217-67.91 93.111-103.654 138.302-23.252-12.529-49.167-13.673-67.664-33.062 35.084-55.027 75.010-112.156 113.799-165.356 37.744-46.978 85.359-75.513 131.527-57.036zM131.85 705.192c-38.736 46.631 21.011 97.038 54.080 126.45 30.384 25.566 69.050 44.659 107.732 38.356 24.416-3.978 54.391-35.008 33.652-48.668-50.815-33.471-115.432-56.852-149.818-114.85-16.055-30.149-26.848-30.467-45.647-1.287zM173.975 737.876c29.601 46.255 83.79 64.551 127.591 93.032-7.074 52.012-74.214 8.767-98.651-11.157-24.358-23.384-94.557-75.182-47.373-103.414 8.34 5.116 12.788 14.002 18.433 21.538zM90.786 771.464c-9.429 52.056 35.935 96.663 76.844 122.017 23.477 14.294 103.718 42.15 95.742-2.429-61.584-19.614-116.177-61.845-150.196-117.209-5.185-9.029-18.8-18.551-22.39-2.379zM750.912 351.435c60.421 80.231 111.801 185.219 80.517 287.205-30.099 90.633-139.595 120.87-225.026 103.452-34.575-12.124-114.055-13.106-109.863-54.093 36.304-52.398 75.502-102.7 113.565-153.816 12.92-94.856 23.512-191.223 38.38-284.876 39.147 27.814 71.68 65.335 102.427 102.128z" />
<glyph unicode="&#xe68c;" d="M512 960c-55.61 0-98.438-46.397-98.438-101.875 0-53.435-0.375-100.187-0.375-100.187h-98.875c-1.861 0-3.661-0.205-5.437-0.5h-27.5v-96.063h461.25v96.063h-27.5c-1.776 0.295-3.577 0.5-5.437 0.5h-98.875c0 0 1.125 42.322 1.125 99.875 0 53.435-44.328 102.188-99.938 102.188zM149.5 862.562v-926.562h725v926.562h-229.688v-67.125h163.313v-792.188h-592.187v792.188h163.25v67.125h-229.688zM512 861.312c18.218 0 32.938-14.66 32.938-32.812 0-18.185-14.72-32.875-32.938-32.875-18.218 0-32.938 14.69-32.938 32.875 0 18.152 14.72 32.812 32.938 32.812zM281.375 596.25v-32.875h32.937v32.875h-32.937zM380.25 595.625v-32.875h362.375v32.875h-362.375zM281.375 472.25v-32.875h32.937v32.875h-32.937zM380.25 471.625v-32.937h362.375v32.937h-362.375zM281.375 348.25v-32.875h32.937v32.875h-32.937zM380.25 347.562v-32.875h362.375v32.875h-362.375zM281.375 224.188v-32.875h32.937v32.875h-32.937zM380.25 223.5v-32.875h362.375v32.875h-362.375zM281.375 100.188v-32.875h32.937v32.875h-32.937zM380.25 99.5v-32.875h362.375v32.875h-362.375z" />
<glyph unicode="&#xe68d;" d="M0 120.404h184.404v-184.404h-184.404zM0 120.404h184.404v-184.404h-184.404zM0 400.269h184.404v-184.404h-184.404zM0 680.135h184.404v-184.404h-184.404zM0 960h184.404v-184.404h-184.404zM271.015 120.404h752.985v-184.404h-752.985zM271.015 120.404h752.985v-184.404h-752.985zM271.015 400.269h752.985v-184.404h-752.985zM271.015 680.135h752.985v-184.404h-752.985zM271.015 960h752.985v-184.404h-752.985z" />
<glyph unicode="&#xe68e;" d="M0 960v-1024h1024v1024h-1024zM251.125 758.688c40.559-0.457 80.511-28.438 82.25-76.875 0.867-43.071-36.668-75.879-83.313-76.875h-1.125c-40.156 0.463-79.371 29.146-81.188 76.875 0.572 42.593 36.375 75.865 83.375 76.875zM686.25 555.188c44.591-0.276 86.675-13.505 121.25-48.75 35.932-40.073 47.466-95.326 48.75-151.5v-255.5h-147.25v238.125c-0.327 44.631-15.615 98.882-74.688 100.688-34.621-0.368-59.033-20.486-75.75-54.125-4.563-10.826-5.221-23.273-5.437-35.687v-249h-147.187c0.563 124.481 1.337 248.954 1.062 373.437 0 35.36-0.341 59.17-1.062 71.437h147.187v-62.75c12.493 17.77 26.35 34.621 44.937 48.188 25.211 17.992 55.496 24.89 88.188 25.438zM176.438 544.312h147.187v-444.875h-147.187v444.875z" />
<glyph unicode="&#xe68f;" d="M273.82-64l341.88 341.9-103.5 103.48 66.42 66.42 103.48-103.5 341.9 341.88-273.82 273.82-341.88-341.9 103.5-103.48-66.42-66.42-103.48 103.5-341.9-341.88 273.82-273.82zM273.82 69.648l-140.164 140.164 208.24 208.24 36.67-36.67-67.034-67.034 66.824-66.824 67.034 67.034 36.67-36.67-208.24-208.24zM682.12 477.948l-36.67 36.67 67.034 67.034-66.824 66.824-67.034-67.034-36.68 36.68 208.24 208.26 140.18-140.172-208.26-208.24z" />
<glyph unicode="&#xe690;" d="M0 960v-204.8h1024v204.8h-1024zM0 550.4v-204.8h1024v204.8h-1024zM0 140.8v-204.8h1024v204.8h-1024z" />
<glyph unicode="&#xe691;" d="M112.343 243.611c-6.366 15.345-14.29 30.598-16.609 47.149-30.538 213.433 143.598 386.479 301.648 452.204 158.050 65.725 340.028-38.825 447.918 73.403 26.955 30.436 54.389 59.259 95.37 59.472 17.081-0.848 31.308-8.876 38.577-23.039 134.856-276.213-57.816-603.727-275.394-720.097-138.079-68.251-280.959-83.265-414.699-36.969-37.19 8.821-67 47.716-105.55 48.221-26.585-14.917-48.664-63.516-66.705-90.28-21.014-36.47-62.855-46.112-92.959-14.198-87.808 86.533 94.671 163.334 88.405 204.135zM229.68 278.972c18.858-15.235 46.062-10.917 60.544 4.286 115.791 140.295 272.578 201.843 443.095 197.169 25.127-1.458 43.39 18.889 45.006 40.72 0.504 25.925-19.445 43.457-41.791 45.006-206.091 11.456-384.892-79.416-511.14-226.102-15.992-19.969-13.088-46.537 4.286-61.080z" />
<glyph unicode="&#xe692;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM332.933 685.013c34.429-0.089 52.803-3.215 82.827-13.627 52.838-18.323 97.836-56.218 128.747-108.4 48.101-91.757 89.716-200.191 123.547-271.6 45.298-62.424 137.817-59.536 171.947-21.707 78.467 86.972-40.678 135.416-82.56 149.44-46.9 14.66-101.953 39.981-122.827 83.12-38.262 108.973 32.084 180.403 122.827 177.947 28.153 4.046 81.667-12.267 116.747-68.987l-45.68-24.773c-19.367 20.502-46.971 37.523-73.493 37.76-59.064 8.318-91.405-67.022-55.707-108.88 12.044-12.401 26.76-19.218 82.373-38.053 79.453-26.699 137.388-53.038 141.76-134.933 5.395-110.556-104.415-176.85-215.68-151.2-44.809 12.165-81.842 44.004-105.387 90.56-41.392 80.699-70.35 179.91-112.987 251.12-35.785 56.865-92.866 88.087-160.96 88-83.459 1.123-156.526-64.815-180.187-131.307-17.631-70.834-0.331-142.701 49.013-191.253 115.775-102.629 243.516-35.416 294.32 36.88 2.147 0 28.747-57.201 28.747-61.813-34.568-41.604-99.462-77.62-147.12-86.507-25.421-4.433-66.304-4.478-90.4-0.107-93.233 16.917-170.954 88.983-197.173 182.8-38.916 156.653 63.449 281.673 181.307 309.013 19.72 5.206 29.419 6.239 58.88 6.48 2.446 0.020 4.825 0.033 7.12 0.027z" />
<glyph unicode="&#xe693;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM247.438 683.625h529.125v-346.313h-529.125v346.313zM313.062 620.5v-220.125h397.875v220.125h-397.875zM181.125 305.812h661.75v-58.562l-33.625-34.875h-594.5l-33.625 34.875v58.562zM450.625 286.625v-53.063h122.75v53.063h-122.75z" />
<glyph unicode="&#xe694;" d="M102.625 812.625v-535.937h818.75v535.937h-818.75zM204.188 714.938h615.625v-340.625h-615.625v340.625zM0 227.938v-90.625l52-53.937h920l52 53.937v90.625h-1024zM417.062 198.25h189.875v-82.062h-189.875v82.062z" />
<glyph unicode="&#xe695;" d="M280.116 728.1c-154.696 0-280.116-125.388-280.116-280.084s125.42-280.116 280.116-280.116c138.001 0 252.658 99.805 275.802 231.171 0.261-0.014 0.517-0.055 0.778-0.065h107.849v-155.699h119.072v155.699h56.146v-225.339h119.072v225.34h65.164v119.071h-471.812c-0.276-0.022-0.537-0.041-0.811-0.065-31.082 120.818-140.737 210.087-271.261 210.087zM280.116 598.519c83.127 0 150.502-67.375 150.502-150.502s-67.375-150.535-150.502-150.535c-83.127 0-150.535 67.408-150.535 150.535 0 83.127 67.408 150.502 150.535 150.502z" />
<glyph unicode="&#xe696;" d="M493.481 8.702h130.315l-14.403-72.702h-399.861l14.403 72.702h130.315l175.582 877.91h-130.315l15.089 73.388h399.861l-15.089-73.388h-130.315l-175.582-877.91" />
<glyph unicode="&#xe697;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM334.688 667.438h354.562c23.864-1.616 41.871-18.98 42.188-41v-355.75c-1.692-24.797-19.731-41.823-42.188-42.125h-354.562c-24.781 1.69-41.824 19.69-42.125 42.125v355.75c1.367 23.748 21.138 40.718 42.125 41zM394.375 586.688c-12.724-0.316-20.929-10.109-21.063-21.125v-234c0.33-12.702 10.076-20.992 21.063-21.125h235.187c12.73 0.33 20.994 10.114 21.125 21.125v234c-0.312 12.753-10.083 20.993-21.125 21.125h-235.187z" />
<glyph unicode="&#xe698;" d="M0 960v-292.062h303.125c46.632 59.808 119.661 98.375 201.813 98.375 82.156 0 155.243-38.561 201.875-98.375h317.188v292.062h-1024zM819.438 916.562h95.75c34.087 0 61.5-27.475 61.5-61.562v-80.188c0-34.087-27.413-61.562-61.5-61.562h-95.75c-34.088 0-61.5 27.475-61.5 61.562v80.188c0 34.088 27.412 61.562 61.5 61.562zM112.438 915.625h34.937v-202.437h-34.937v202.437zM172.5 915.625h36v-202.437h-36v202.437zM233.625 915.625h34.937v-202.437h-34.937v202.437zM86.25 910.188v-197h-36.062v141.812c0 12.262 3.461 23.453 10.375 33.562 6.914 10.103 15.499 17.295 25.688 21.625zM504.562 737.312c-124.213 0-224.937-100.272-224.937-223.875s100.725-223.813 224.937-223.813c124.213 0 224.938 100.21 224.938 223.813 0 123.602-100.725 223.875-224.938 223.875zM504.562 691.875c99.042 0 179.313-79.882 179.313-178.437 0-98.556-80.27-178.438-179.313-178.438-99.042 0-179.312 79.882-179.312 178.438 0 98.556 80.27 178.437 179.312 178.437zM0 626.562v-690.562h1024v690.562h-290.875c17.176-34.008 26.813-72.441 26.813-113.062 0-139.601-114.179-252.75-255-252.75-140.821 0-254.938 113.149-254.938 252.75 0 40.631 9.691 79.048 26.875 113.062h-276.875z" />
<glyph unicode="&#xe699;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM495.938 784.312c23.461-0.001 42.565-6.327 57.312-19.062 14.747-12.737 22.125-29.533 22.125-50.312 0-20.781-7.378-37.514-22.125-50.25-14.747-12.737-33.851-19.126-57.312-19.125-23.462 0-42.566 6.388-57.313 19.125-14.077 12.736-21.125 29.469-21.125 50.25 0 20.779 7.048 37.576 21.125 50.312 14.747 12.736 33.851 19.062 57.313 19.062zM569.312 560.125l20.125-23.125c-10.726-28.154-16.125-59.314-16.125-93.5v-246.375c0-8.714 0.722-14.711 2.063-18.063 2.011-3.352 6.359-6.711 13.063-10.062 12.066-7.374 29.788-14.422 53.25-21.125l-7-36.187c-57.648 6.033-98.226 9-121.688 9s-63.647-2.967-120.625-9l-8.063 36.187c24.132 5.363 41.917 12.081 53.313 20.125 10.055 6.033 15.062 15.718 15.063 29.125v251.375c0 23.461-9.089 35.187-27.188 35.188l-35.188-7-8 40.187c24.132 10.054 55.951 19.803 95.5 29.187s70.049 14.062 91.5 14.063z" />
<glyph unicode="&#xe69a;" d="M0 874.469v-150.312h1024v150.25l-1024 0.062zM1024 640.219l-288.375-192.25 288.375-192.25v384.5zM0 639.094v-149.813h592v149.813h-592zM0 405.531v-149.812h592v149.812h-592zM1024 171.781l-1024-0.062v-150.188h1024v150.25z" />
<glyph unicode="&#xe69b;" d="M1024 874.469v-150.312h-1024v150.25l1024 0.062zM0 640.219l288.375-192.25-288.375-192.25v384.5zM1024 639.094v-149.812h-592v149.812h592zM1024 405.531v-149.812h-592v149.812h592zM0 171.781l1024-0.062v-150.188h-1024v150.25z" />
<glyph unicode="&#xe69c;" d="M80 416l237.088 320h389.824l237.088-320h-176l-128-128h-256l-128 128h-176zM280.992 800l-280.992-384v-320h1024v320l-280.992 384h-462.016z" />
<glyph unicode="&#xe69d;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM449.5 775.625h125v-143.563h72.938l-135.438-203.187-135.438 203.187h72.938v143.563zM204.375 456.875h202.125c0-58.253 47.247-105.563 105.5-105.563 58.253 0 105.5 47.309 105.5 105.563h202.125v-296.5h-615.25v296.5z" />
<glyph unicode="&#xe69e;" d="M408 960v-238.938h-121.438l225.438-338.187 225.438 338.187h-121.438v238.938h-208zM0 429.438v-493.438h1024v493.438h-336.375c0-96.962-78.663-175.625-175.625-175.625s-175.625 78.663-175.625 175.625h-336.375z" />
<glyph unicode="&#xe69f;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM494.625 770.75h34.75v-102.438h-34.75v102.438zM352.5 740l58.75-83.875-28.5-20-58.75 83.875 28.5 20zM671.5 740l28.5-20-58.75-83.875-28.5 20 58.75 83.875zM512 640.312c85.123 0 154.125-51.669 154.125-115.437l-87.562-265.187h-133.125l-87.562 265.187c0 63.77 69.007 115.437 154.125 115.437zM235.187 609.562l96.25-35.062-11.937-32.688-96.188 35.062 11.875 32.688zM788.813 609.562l11.875-32.688-96.25-35.062-11.875 32.688 96.25 35.062zM326.813 460l9-33.625-98.938-26.5-9 33.625 98.938 26.5zM697.187 460l98.938-26.5-9-33.625-98.938 26.5 9 33.625zM443.5 240.313h137v-46.063h-137v46.063zM443.5 171.312h137v-46.062h-137v46.062z" />
<glyph unicode="&#xe6a0;" d="M484.406 960v-162.494h55.193v162.494h-55.198zM259.032 911.168l-45.22-31.661 93.186-133.074 45.195 31.661-93.162 133.074zM764.962 911.168l-93.16-133.074 45.202-31.661 93.186 133.074-45.22 31.661zM511.991 753.046c-135.020 0-244.474-81.991-244.474-183.146l138.899-420.65h211.175l138.887 420.65c0 101.154-109.447 183.146-244.474 183.146zM72.93 704.279l-18.858-51.895 152.618-55.564 18.928 51.87-152.692 55.589zM951.064 704.279l-152.692-55.593 18.864-51.876 152.691 55.573-18.864 51.896zM218.245 467.046l-156.928-42.092 14.238-53.274 156.928 42.031-14.236 53.336zM805.749 467.046l-14.229-53.334 156.928-42.024 14.229 53.275-156.928 42.085zM403.337 118.586v-73.118h217.332v73.107h-217.332zM403.337 9.118v-73.118h217.332v73.107h-217.332z" />
<glyph unicode="&#xe6a1;" d="M93.198 960v-44.857c-2.579-343.956-47.524-228.157 190.992-467.143-242.858-239.32-190.992-127.42-190.992-467.143v-44.857h837.563v44.857c2.552 343.869 47.77 228.731-190.642 467.143 242.707 238.624 190.642 127.642 190.642 467.143v44.857h-837.563zM182.912 870.286h658.136c12.252-252.955-15.699-209.495-196.6-390.396l-31.54-31.89 31.54-31.89c202.032-199.766 196.6-130.793 196.6-390.396h-658.136c-12.288 252.939 15.869 209.694 196.6 390.746l31.54 31.54-31.54 31.54c-201.898 199.967-196.6 131.121-196.6 390.746zM274.028 685.952c77.468-66.215 186.101-95.562 208.865-226.738h43.455c-1.822 117.949 130.923 161.085 223.233 226.738-182.972-19.722-257.599-30.303-475.554 0zM510.228 311.326c-119.486 0.753-238.154-60.506-235.849-186.086h475.554c0.087 122.568-120.218 185.333-239.704 186.086z" />
<glyph unicode="&#xe6a2;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM512 724.062l250-194.312v-357.812h-172v216h-156v-216h-172v357.812l250 194.312z" />
<glyph unicode="&#xe6a3;" d="M512 960l-463.663-360.382v-663.618h319v400.605h289.326v-400.605h319v663.618l-463.663 360.382z" />
<glyph unicode="&#xe6a4;" d="M710.388 920.602c-41.23-0.424-83.518-8.475-124.891-24.99l-1.879-0.797-1.878-0.968c-26.227-13.356-50.132-30.065-71.383-49.865-114.366 98.915-296.442 106.094-421.009-6.205l-1.252-1.138-1.138-1.195c-109.273-114.138-106.715-289.918-41.213-428.808l0.569-1.082 0.569-1.138c77.144-142.854 221.197-264.236 352.473-364.028l0.342-0.285 0.285-0.228c8.446-6.192 22.967-18.993 39.733-31.593 16.766-12.6 35.703-26.409 63.413-31.707l6.205-1.195 6.262 0.512c29.084 2.508 40.492 13.247 59.599 25.274 19.107 12.027 40.258 27.295 61.99 44.002 42.839 32.934 87.166 70.894 116.352 97.966 0.376 0.349 0.995 0.85 1.366 1.195 0.060 0.051 0.11 0.119 0.171 0.171 61.484 52.466 122.388 112.949 174.016 184.092 0.016 0.022 0.041 0.035 0.056 0.057 0.097 0.131 0.187 0.268 0.285 0.398 81.882 110.245 121.602 258.813 74.229 405.184l-0.854 2.619-1.138 2.448c-53.189 114.99-167.589 182.574-291.279 181.303zM711.868 830.548c89.117 2.050 167.23-45.669 206.008-127.282 35.832-114.259 4.859-230.673-61.876-320.311l-0.341-0.456c-46.49-64.154-102.792-120.311-161.152-169.975l-1.48-1.366c-26.279-24.462-70.762-62.569-111.4-93.811-20.319-15.621-39.799-29.581-54.932-39.107-5.69-3.582-11.099-6.023-15.54-7.912-4.667 2.55-10.59 6.14-16.736 10.759-12.373 9.299-25.549 21.169-39.904 31.764-0.224 0.17-0.459 0.342-0.683 0.512-127.398 96.899-261.589 214.558-326.117 333.176-52.386 111.917-50.101 245.873 23.908 324.58 100.63 89.474 250.131 70.022 324.694-21.802l36.317-44.685 35.122 45.596c20.209 26.217 44.326 46.259 73.603 61.478 30.688 11.988 61.179 18.167 90.509 18.842z" />
<glyph unicode="&#xe6a5;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM625.313 666.877c60.839 0.951 115.859-32.125 141.941-88.511 24.126-74.544 3.935-150.378-38.614-207.53-28.086-38.756-61.651-72.179-95.968-101.382-31.571-29.388-102.236-87.544-120.964-89.159-16.553 3.165-35.134 21.912-48.276 31.546-73.843 56.133-153.316 124.367-193.621 199.003-33.793 71.654-33.854 160.311 18.74 215.246 68.197 61.48 171 49.447 223.157-14.784 14.007 18.171 31.237 32.483 51.68 42.894 20.718 8.27 41.645 12.36 61.925 12.677z" />
<glyph unicode="&#xe6a6;" d="M1004.057 746.37c46.509-143.702 7.586-289.93-74.438-400.103-54.141-74.712-118.847-139.104-185-195.399-60.861-56.653-197.062-168.75-233.165-171.864-31.909 6.1-67.714 42.182-93.047 60.755-142.35 108.21-295.586 239.804-373.284 383.683-65.143 138.13-65.263 308.98 36.124 414.881 131.465 118.518 329.661 95.359 430.207-28.462 27.002 35.030 60.207 62.579 99.615 82.648 159.755 63.768 325.949-1.21 392.988-146.139z" />
<glyph unicode="&#xe6a7;" d="M989.718 944.567c22.366-25.929 21.632-59.188 0-81.409l-140.204-141.335c-25.704-22.47-58.2-21.493-80.278 0-21.933 25.222-22.095 60.158 0 81.409l140.204 141.335c24.451 20.76 59.276 20.393 80.278 0zM289.826 320.431c24.452 20.759 59.276 20.395 80.278 0 21.519-24.51 22.518-61.221 0-81.409l-255.534-257.795c-25.704-22.47-58.2-21.493-80.278 0-21.933 25.222-22.094 60.157 0 81.409zM536.315 508.124c-2.046 41.543-35.473 71.865-72.364 72.364-40.97-2.262-71.848-35.56-72.364-72.364-1.751-26.353-18.838-43.778-42.966-44.097-26.676 1.959-42.67 20.293-42.966 44.097 1.489 44.309 17.361 83.631 46.358 113.068 32.31 30.256 71.127 46.062 111.937 46.358 44.245-1.437 82.646-17.49 111.937-46.358 30.297-32.508 46.060-72.053 46.358-113.068-1.751-26.353-18.838-43.778-42.966-44.097-26.677 1.959-42.67 20.293-42.966 44.097zM463.951 834.891c86.799-1.861 167.172-36.67 223.875-93.281 59.729-63.302 92.137-145.733 92.716-225.571-1.793-72.593-14.645-107.007-48.619-162.818-18.544-44.209-61.311-76.996-84.236-117.025-12.996-41.371-3.428-86.441-5.088-132.29-0.619-51.132-20.639-108.299-55.969-136.247-39.577-23.069-80.889-31.659-117.025-31.659-30.058 2.34-49.139 24.089-50.881 50.881-0.978 13.944 4.508 26.976 13.568 36.182 22.774 23.222 45.114 14.431 72.929 21.483 10.044 3.191 24.549 6.998 28.267 17.526 6.402 19.741 6.196 43.904 6.219 60.491 1.876 42.128-6.024 80.899 2.827 120.418 6.067 25.46 16.046 49.549 31.094 68.972 10.168 13.377 21.801 25.139 30.528 36.747 12.557 15.536 22.732 32.344 32.79 48.054 10.85 16.6 19.347 33.062 29.398 49.185 8.068 23.203 11.243 47.527 11.307 70.102-2.046 59.627-23.731 112.466-62.753 152.077-43.49 40.674-95.968 62.348-150.946 62.753-59.564-1.994-111.481-23.86-150.946-62.753-40.715-43.688-62.347-96.895-62.753-152.077-2.184-30.455-23.030-51.631-50.881-52.011-30.601 2.295-51.632 24.187-52.011 52.011 1.977 87.111 36.571 167.855 92.716 225.571 62.302 60.443 144.44 92.705 223.875 93.281z" />
<glyph unicode="&#xe6a8;" d="M896 128c0 85.333 0 170.667 0 256 0 212.064-171.936 384-384 384-212.064 0-384-171.936-384-384 0-85.333 0-170.667 0-256-9.428-91.226-125.95-67.367-128 0 0 85.333 0 170.667 0 256 0 282.784 229.248 512 512 512 282.752 0 512-229.216 512-512 0-85.333 0-170.667 0-256-9.428-91.226-125.95-67.367-128 0zM224 320h64c17.664 0 32-14.304 32-32v-320c0-17.696-14.336-32-32-32h-64c-17.664 0-32 14.304-32 32v320c0 17.696 14.336 32 32 32zM736 320h64c17.696 0 32-14.304 32-32v-320c0-17.696-14.304-32-32-32h-64c-17.696 0-32 14.304-32 32v320c0 17.696 14.304 32 32 32z" />
<glyph unicode="&#xe6a9;" d="M204.812 883.438l-204.812-550.25 81.938-320.625h860.125l81.937 320.625-204.812 550.25h-614.375zM80 282.5h864.062l-56-219.25h-752.062l-56 219.25zM791.875 213.812c-22.62 0-40.938-18.317-40.938-40.938 0-22.62 18.317-41 40.938-41 22.62 0 41 18.38 41 41 0 22.62-18.38 40.938-41 40.938z" />
<glyph unicode="&#xe6aa;" d="M194.443-64h354.568c37.523 1.871 64.618 32.246 65.068 65.62v158.811c34.862 45.394 83.245 77.566 118.281 121.314 12.315 15.44 26.009 27.388 41.081 35.843 54 27.489 116.868 10.833 159.914 49.904 33.692 78.513-13.441 172.571-87.401 199.065-60.399 20.825-120.632 6.87-173.975-19.024 0.154 93.744-0.604 187.486-1.103 281.228-5.699 76.316-57.081 130.732-130.137 131.24-73.622-0.208-127.161-63.678-128.482-131.24v-110.285c-21.689-3.676-41.357-10.845-59.003-21.506-45.35 6.178-89.811-7.959-121.865-35.291-261.761-14.998-106.463-357.925-102.565-486.359v-173.699c1.789-37.787 32.077-65.169 65.62-65.62zM194.443 172.562c-2.211 102.763-157.575 453.895 65.068 420.187 20.028 37.159 73.63 51.456 107.528 28.674 34.138 34.616 77.026 44.474 110.837 11.029 0 33.086 0.184 65.804 0.551 98.154 0.368 32.35 0.551 65.068 0.551 98.154 0.796 37.863 28.576 64.104 61.76 64.517 39.232-0.865 64.116-30.646 64.517-64.517 0.007-128.328 1.089-254.833 1.103-373.868 85.984 10.713 202.739 113.296 270.475 8.547 8.236-16.77 11.732-30.18 8.547-47.698-1.47-2.941-2.941-4.595-4.411-4.963-1.47-0.368-3.86-0.919-7.169-1.654-68.156-11.131-136.303-21.522-181.419-74.443-44.666-58.251-114.986-92.599-143.371-159.362v-2.757z" />
<glyph unicode="&#xe6ab;" d="M0 130.443v354.568c1.871 37.523 32.246 64.617 65.62 65.068h158.811c45.394 34.862 77.566 83.245 121.314 118.281 15.44 12.315 27.388 26.009 35.843 41.081 27.489 54 10.833 116.868 49.904 159.914 78.513 33.692 172.571-13.441 199.065-87.401 20.825-60.399 6.87-120.632-19.024-173.975 93.744 0.154 187.486-0.604 281.228-1.103 76.316-5.699 130.732-57.081 131.24-130.137-0.208-73.622-63.678-127.161-131.24-128.482h-110.285c-3.676-21.689-10.845-41.357-21.506-59.003 6.178-45.35-7.959-89.811-35.291-121.865-14.998-261.761-357.925-106.463-486.359-102.565h-173.7c-37.787 1.789-65.169 32.077-65.62 65.62zM236.562 130.443c102.763-2.211 453.895-157.575 420.187 65.068 37.159 20.028 51.456 73.63 28.674 107.528 34.616 34.138 44.474 77.026 11.029 110.837 33.086 0 65.804 0.184 98.154 0.551 32.35 0.368 65.068 0.551 98.154 0.551 37.863 0.796 64.104 28.576 64.517 61.76-0.865 39.232-30.646 64.116-64.517 64.517-128.328 0.007-254.833 1.089-373.868 1.103 10.713 85.984 113.296 202.739 8.547 270.475-16.77 8.236-30.18 11.732-47.698 8.547-2.941-1.47-4.595-2.941-4.963-4.411-0.368-1.47-0.919-3.86-1.654-7.169-11.131-68.156-21.522-136.303-74.443-181.419-58.251-44.666-92.599-114.986-159.362-143.371h-2.757z" />
<glyph unicode="&#xe6ac;" d="M1024 130.443v354.568c-1.871 37.523-32.246 64.618-65.62 65.068h-158.811c-45.394 34.862-77.566 83.245-121.314 118.281-15.44 12.315-27.388 26.009-35.843 41.081-27.489 54-10.833 116.868-49.904 159.914-78.513 33.692-172.571-13.441-199.065-87.401-20.825-60.399-6.87-120.632 19.024-173.975-93.744 0.154-187.486-0.604-281.228-1.103-76.316-5.699-130.732-57.081-131.24-130.137 0.208-73.622 63.678-127.161 131.24-128.482h110.285c3.676-21.689 10.845-41.357 21.506-59.003-6.178-45.35 7.959-89.811 35.291-121.865 14.998-261.761 357.925-106.463 486.359-102.565h173.7c37.787 1.789 65.169 32.077 65.62 65.62zM787.438 130.443c-102.763-2.211-453.895-157.575-420.187 65.068-37.159 20.028-51.456 73.63-28.674 107.528-34.616 34.138-44.474 77.026-11.029 110.837-33.086 0-65.804 0.184-98.154 0.551-32.35 0.368-65.068 0.551-98.154 0.551-37.863 0.796-64.104 28.576-64.517 61.76 0.865 39.232 30.646 64.116 64.517 64.517 128.328 0.007 254.833 1.089 373.868 1.103-10.713 85.984-113.296 202.739-8.547 270.475 16.77 8.236 30.18 11.732 47.698 8.547 2.941-1.47 4.595-2.941 4.963-4.411 0.368-1.47 0.919-3.86 1.654-7.169 11.131-68.156 21.522-136.303 74.443-181.419 58.251-44.666 92.599-114.986 159.362-143.371h2.757z" />
<glyph unicode="&#xe6ad;" d="M194.443 960h354.568c37.523-1.871 64.618-32.246 65.068-65.62v-158.811c34.862-45.394 83.245-77.566 118.281-121.314 12.315-15.44 26.009-27.388 41.081-35.843 54-27.489 116.868-10.833 159.914-49.904 33.692-78.513-13.441-172.571-87.401-199.065-60.399-20.825-120.632-6.87-173.975 19.024 0.154-93.744-0.604-187.486-1.103-281.228-5.699-76.317-57.081-130.732-130.137-131.24-73.622 0.208-127.161 63.678-128.482 131.24v110.285c-21.689 3.676-41.357 10.845-59.003 21.506-45.35-6.178-89.811 7.959-121.865 35.291-261.761 14.998-106.463 357.925-102.566 486.359v173.7c1.789 37.787 32.077 65.169 65.62 65.62zM194.443 723.438c-2.211-102.763-157.575-453.895 65.068-420.187 20.028-37.159 73.63-51.456 107.528-28.674 34.138-34.616 77.026-44.474 110.837-11.029 0-33.086 0.184-65.804 0.551-98.154 0.368-32.35 0.551-65.068 0.551-98.154 0.796-37.863 28.576-64.104 61.76-64.517 39.232 0.865 64.116 30.646 64.517 64.517 0.007 128.328 1.089 254.833 1.103 373.868 85.984-10.713 202.739-113.296 270.475-8.547 8.236 16.77 11.732 30.18 8.547 47.698-1.47 2.941-2.941 4.595-4.411 4.963-1.47 0.368-3.86 0.919-7.169 1.654-68.156 11.131-136.303 21.522-181.419 74.443-44.666 58.251-114.986 92.599-143.371 159.362v2.757z" />
<glyph unicode="&#xe6ae;" d="M532.458 529.4l-116.052 181.743c-6.794 13.029-3.721 28.765 7.664 36.13 13.017 6.836 27.718 3.641 35.035-7.664l116.053-182.837c6.793-13.029 3.723-28.77-7.664-36.13-12.983-6.259-28.892-2.013-35.035 8.759zM1019.66 495.461c18.668-33.842-27.603-61.586-49.268-73.354-18.977 1.466-37.042 3.473-54.194 6.022-17.153 2.554-32.298 4.927-45.436 7.116-15.328 2.92-29.561 5.839-42.699 8.759-1.486-7.299-3.494-14.963-6.022-22.992-2.567-8.028-5.67-16.423-9.306-25.181-74.632 16.146-162.527 59.821-203.639 127.001l140.139 143.423 25.181 90.871 53.647-65.69c37.009-10.404 88.354-11.134 104.009-49.268 13.557-22.842 12.459-71.284 27.371-89.776 8.028-8.028 16.787-15.328 26.276-21.897 9.489-6.569 20.802-18.248 33.94-35.035zM494.139 191.097c-33.168 0.235-67.78 11.741-100.725 12.043-18.977 2.19-25.911-6.204-20.802-25.181l45.983-185.027c-0.618-29.721-16.764-52.481-40.509-56.384-23.107-2.22-46.344 18.624-51.457 34.487l-59.121 232.105c-1.459 8.028-6.022 11.86-13.685 11.496-7.664-0.365-12.591-4.196-14.78-11.496l-54.742-231.010c-7.218-21.678-24.71-35.868-45.983-36.129-31.403 0.553-53.086 29.721-47.078 56.931l66.785 273.709 5.474 165.32c-57.886 14.684-131.038 54.286-159.846 109.483-8.127 17.842-2.236 35.148 13.138 43.793 18.173 8.306 38.728 0.31 45.983-12.043 28.345-44.366 90.918-72.638 133.57-73.354h326.261c-20.186-101.252-31.482-202.509-28.466-308.743zM574.062 481.228c55.266-71.87 134.912-116.908 220.062-134.665-7.925-23.724-18.511-46.806-25.729-68.427-3.285-9.854-2.373-24.269 2.737-43.246 20.98-80.378 44.049-166.19 64.595-240.864 8.002-62.549-78.865-61.217-91.966-22.992l-47.078 179.553c-12.991 22.051-45.479 27.197-52.552 0l-42.699-178.458c-22.096-55.101-100.933-18.054-91.966 20.802l40.509 166.415c0.73 5.839 0.365 11.679-1.095 17.517 0.706 101.396 3.942 205.136 25.181 304.364z" />
<glyph unicode="&#xe6af;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM510.963 675.307c47.226-0.621 86.343-39.067 99.339-88.057 4.955-19.989 5.514-40.268 0.519-61.439-7.532-29.806-22.612-58.921-50.707-76.806l40.948-19.453 97.297-47.108c9.557-4.096 14.33-12.287 14.33-24.575v-94.184c0-19.424 1.542-36.175-22.533-43.023h-358.387c-23.154 0.334-24.113 23.786-23.57 43.023v94.184c0 12.288 5.128 20.834 15.368 25.613l100.344 46.071 38.938 18.448c-17.749 11.605-31.746 27.633-41.986 48.113-12.296 27.036-17.172 62.134-8.203 94.217 11.339 43.488 46.852 82.559 98.302 84.977zM344.057 632.316c15.019 0 28.66-4.45 40.948-13.325-3.408-9.556-6.294-19.634-8.689-30.217-2.389-10.58-3.599-21.657-3.599-33.264 0-17.067 2.386-33.45 7.165-49.151 4.777-15.701 11.614-30.052 20.49-43.023-4.096-5.461-9.546-10.234-16.373-14.33l-75.801-34.821c-10.24-5.461-18.431-13.12-24.575-23.019s-9.208-21.009-9.208-33.297v-94.184h-74.731c-10.842 0.169-18.163 11.095-18.448 22.5v89.094c0 10.24 3.741 17.077 11.25 20.49l113.67 52.231c-29.369 18.054-43.538 50.683-45.033 87.019 0.518 44.767 29.86 93.577 82.934 97.297zM679.911 632.316c47.181-0.746 81.262-47.524 82.967-97.297-0.259-32.935-13.115-64.736-43.023-86.014l111.627-53.236c7.509-4.096 11.25-10.933 11.25-20.49v-89.094c-0.113-10.574-5.82-21.421-18.415-22.5h-76.806v94.184c0 12.288-3.064 23.398-9.208 33.297s-14.335 17.558-24.575 23.019c-31.833 14.795-68.392 25.416-92.174 50.188 17.749 27.306 26.618 57.686 26.618 91.137 0 21.163-3.741 41.996-11.25 62.476 12.332 8.143 26.929 14.101 42.991 14.33z" />
<glyph unicode="&#xe6b0;" d="M509.309 799.157c-88.186 0-159.676-83.465-159.676-186.423 0-71.406 34.386-133.421 84.879-164.734l-214.371-99.404c-15.053-7.527-22.565-20.291-22.565-38.355 0-57.202 0-114.405 0-171.607 1.238-21.455 14.111-41.452 34.983-41.791h554.342c23.828 2.072 35.882 21.265 36.118 41.791 0 57.202 0 114.405 0 171.607 0 18.064-7.512 30.828-22.565 38.355l-150.176 72.267-62.411 29.568c48.422 32.019 81.119 92.693 81.119 162.302 0 102.959-71.489 186.423-159.676 186.423zM251.753 733.601c-37.95-1.442-68.027-17.863-90.877-44.028-25.275-31.503-37.597-68.907-37.836-106.115 1.552-55.021 26.171-107.109 69.998-134.355l-174.979-81.313c-12.043-4.516-18.059-15.052-18.059-31.611v-137.726c0.94-18.266 10.424-33.616 28.207-33.88h116.296v145.67c1.924 38.945 20.213 70.425 53.074 85.787l116.263 55.311c9.032 5.269 17.691 12.431 25.97 21.463-47.937 73.963-54.594 162.553-23.7 240.47-20.093 12.297-42.674 20.199-64.357 20.328zM771.080 733.601c-24.818-0.519-47.752-9.659-66.594-22.565 30.052-78.624 21.763-167.267-22.598-235.964 9.785-11.29 19.972-19.949 30.509-25.97l111.757-53.074c34.046-18.671 51.601-50.43 51.939-85.787v-145.67h119.668c19.681 1.699 28.068 17.397 28.239 33.88v137.726c0 15.053-6.016 25.589-18.059 31.611l-172.742 82.448c44.799 33.031 67.294 82.534 67.728 133.22-1.19 40.117-13.445 77.367-37.836 106.115-25.486 27.647-57.096 43.735-92.012 44.028z" />
<glyph unicode="&#xe6b1;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM214.312 673.438h595.375v-450.875h-595.375v450.875zM287.5 600.875v-305.75h449v305.75h-449zM669.5 576.688l50.312-29.063-131.562-228.313-23.875 49.75-37.187 77.688-74.688-116.438-25.562 26.813-32.563 34.25-53-44.25-37.25 44.625 94.75 79.125 18.813-19.687 25.812-27.188 91 141.812 22.562-47 35.875-74.875 76.562 132.75z" />
<glyph unicode="&#xe6b2;" d="M0 835.812v-775.625h1024v775.625h-1024zM125.875 710.938h772.25v-525.875h-772.25v525.875zM782.875 669.312l-131.625-228.25-100.5 209.625-48.375-75.438-108.187-168.5-76.75 80.625-35.938-30.063-127.062-106.062 64.062-76.75 91.125 76.062 100-105 128.5 200.25 105-219.125 47.375 82.25 179 310.437-86.625 49.937z" />
<glyph unicode="&#xe6b3;" d="M0 960v-180.062c63.723 61.661 170.195 90.89 265.25 91.687h315.5l-84-67.75h-90.625c21.903-20.153 42.215-41.806 58.375-68.75 20.898-35.534 31.868-77.299 32.25-121.187-0.192-42.243-10.361-89.388-36.625-128.813-21.444-31.529-52.238-58.855-84.625-84.063-21.297-21.391-39.879-39.221-41.438-73.125 0.254-25.278 16.802-48.074 39.313-64.438 37.678-29.219 69.925-53.637 105.313-84.062 33.944-29.292 65.483-65.552 85.687-109.75 17.263-40.076 17.445-88.788 5.5-133.688h454.125v667.062h-188.875v-191.062h-81.813v191.062h-188.937v78.625h188.937v189.937h81.813v-189.937h188.875v278.312h-1024zM187 819.25c-18.434-0.405-37.168-4.458-54.938-12.562-35.71-17.48-61.936-45.685-71.5-88.5-7.379-44.287-5.745-91.158 5.5-138.625 13.328-54.143 39.855-105.514 87.813-143.062 36.169-25.546 90.954-29.358 137.063-16.875 36.047 10.728 61.869 44.791 75.875 81.875 12.718 40.212 8.32 85.905-2.75 132.062-14.385 58.946-43 115.857-93.375 158.875-23.106 17.944-52.964 27.487-83.688 26.812zM0 408.688v-259.813c51.364 37.949 122.674 42.577 187.25 44.75 20.014 0 37.256 0.335 51.812 1.063-10.189 13.828-20.175 28.404-30 43.687-22.106 35.407-16.654 78.61-0.562 116.875-75.542-9.69-142.818 4.237-208.5 53.438zM253.062 153.375c-35.861-0.131-70.748-6.733-106.25-11.625-55.096-10.684-107.31-32.658-146.812-76.875v-128.875h482.562c1.655 5.025 2.125 10.72 2.125 16.375-0.373 37.513-25.288 71.678-55.688 97.687-42.695 36.275-92.178 65.693-139.688 101-12.236 1.688-24.296 2.356-36.25 2.313z" />
<glyph unicode="&#xe6b4;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM507.875 828.938c28.672 0 56.154-2.885 82.437-8.688 26.283-5.798 51.42-14.197 75.313-25.125-3.413 0.683-7.851 1.697-13.313 3.063-27.358 5.426-52.619 7.811-77.875-9.188-15.539-9.686-32.584-17.144-52.188-16.375-23.211 0-46.573 3.899-70.125 11.75-23.552 7.851-44.568 16.568-63 26.125 37.546 12.288 77.107 18.438 118.75 18.438zM286.438 750.812c6.507-0.027 12.714-0.757 18.687-2.25 9.557-2.389 16.087-7.366 19.5-14.875 4.779-9.557 11.404-18.433 19.937-26.625 8.533-8.192 17.568-15.356 27.125-21.5 5.461-1.365 9.899-2.697 13.312-4.062 10.14-3.568 15.596-13.138 26.625-13.312 8.192 2.731 14.721 0.639 19.5-6.188 15.083-7.565 28.445-18.064 37.875-32.75-9.248-15.392-19.827-32.238-36.875-40.938 0.683 0 1-0.221 1-0.562 0-0.341 0.38-0.5 1.063-0.5 2.734-4.779 1.34-8.519-4.125-11.25-3.413-1.365-6.615-2.38-9.687-3.062-3.072-0.683-6.337-1.38-9.75-2.063-8.875-1.365-14.707-3.077-17.437-5.125 0-1.365-1.015-2.062-3.063-2.062 0-0.683-2.188-2.87-6.625-6.625-4.437-3.755-8.019-11.457-10.75-23.062-0.683-2.731-2.077-5.457-4.125-8.188 2.048-19.115 2.587-33.981 1.563-44.562-1.024-10.581-5.304-16.889-12.813-18.938-3.411-0.683-7.848 0.014-13.313 2.063-4.779 1.365-10.769 3.933-17.937 7.687-7.168 3.755-15.505 9.746-25.063 17.938 1.399-12.397 5.052-25.161 9.188-37.875 8.782 1.724 23.901 0.726 17.438-12.313-4.627-4.687-3.362-7.867 3.062-10.25 2.726-0.683 5.451-3.091 8.188-7.187 10.594-0.936 21.476-1.178 33.312 1.063 9.899 1.365 20.423 1.683 31.688 1 11.264-0.683 22.389-3.251 33.312-7.688 31.133-13.015 56.396-54.047 90.625-69.125 8.529-5.461 15.535-10.914 21-16.375 5.461-5.461 8.187-11.61 8.187-18.438-0.056-23.68-2.14-47.78-8.187-71.687-2.048-6.144-8.356-14.64-18.937-25.563-10.579-10.923-22.72-21.193-36.375-30.75-5.461-4.096-10.216-8.851-14.312-14.312-3.413-4.779-6.678-10.928-9.75-18.438-3.072-7.509-4.625-16.385-4.625-26.625-5.461-10.24-10.058-19.654-13.813-28.188-3.755-8.533-6.956-15.476-9.687-20.938-2.731-7.509-5.519-13.659-8.25-18.437-27.173 1.58-52.549 11.756-77.813 26.625 2.949 48.538 12.616 96.648 17.438 144.375 1.365 4.779 0.986 9.216-1.062 13.313-21.953 43.63-47.707 65.433-41.938 125.937 1.365 6.827 2 11.962 2 15.375-9.026 8.893-21.605 15.805-30.688 26.625-62.040 29.079-126.662 31.304-172.062 96.25 7.509 49.834 24.088 95.545 49.688 137.187 25.6 41.643 57.521 77.145 95.75 106.5 4.096 0.512 8.096 0.766 12 0.75zM754.688 739.812c42.325-35.499 75.799-78.483 100.375-129s36.813-105.8 36.813-165.875v-7.188l-32.75-10.25c-13.858 3.818-28.622-6.221-34.813-19.438l17.438-6.125c2.731-1.365 4.442-2.76 5.125-4.125 3.794-9.717-0.215-21.525-3.125-31.75-5.477-7.221-14.465-14.003-21.5-21.5-0.683-3.413-1-8.548-1-15.375 0-10.923-4.438-24.237-13.312-39.938 1.365-4.779 1.365-9.216 0-13.312-2.048-8.875-5.092-17.371-9.188-25.563-4.767-8.192-7.556-15.736-8.25-22.563-2.731-18.432-10.909-35.486-24.562-51.187-18.432-19.115-34.472-27.611-48.125-25.563-6.144 1.365-10.74 5.265-13.812 11.75-10.086 21.365-16.37 43.731-27.125 67.063-7.272 19.381-1.99 41.706-0.5 62.5 0.553 15.416-9.697 29.434-12.813 44.5-0.685 5.12 0.647 12.125 4.063 21-0.673 0.683-3.874 1.918-9.687 3.625-30.981 8.681-53.502-7.9-79.875 15.875-10.581 9.557-17.587 23.187-21 40.937-4.096 24.576 0.66 46.766 14.313 66.563 0.683 2.048 1.063 4.077 1.063 6.125 0 4.779 0.317 8.202 1 10.25 3.395 0.683 6.28 2.077 8.687 4.125 2.372 2.048 4.242 4.077 5.625 6.125 2.048 2.728 3.442 5.454 4.125 8.188 72.89 6.647 88.459 20.245 153.625-18.438l29.688 20.5c-6.827 11.605-12.818 20.101-17.938 25.562-17.286 18.156-39.111 21.282-56.812 0l-71.688 6.188c-9.385-9.207-25.769-9.491-38.938-10.25 0 6.144-1.712 12.293-5.125 18.438-4.096 8.192-6.125 14.658-6.125 19.437 0 4.775 1.015 8.516 3.063 11.25 21.713 28.613 17.418 30.619 26.125 68.625 3.072 8.875 8.683 19.779 16.875 32.75 19.137 27.154 92.001 42.094 130.063 46.062z" />
<glyph unicode="&#xe6b5;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM385.070 821.236c18.644-10.039 40.683-19.535 66.14-28.498 25.457-8.963 50.736-13.455 75.834-13.455 18.523 0.035 37.001 4.633 52.717 16.146 15.219 9.12 29.948 16.398 49.475 14.525 20.064-2.192 41.194-9.1 62.379-10.245 26.533-14.341 52.357-32.242 77.455-53.755-12.19-0.716-25.119-2-38.744-3.793-13.625-1.793-26.874-4.455-39.781-8.041-12.908-3.585-24.745-8.27-35.502-14.006-10.756-5.736-18.648-12.89-23.668-21.495-7.888-12.908-13.438-23.847-16.665-32.811-6.641-18.585-5.071-48.238-20.426-61.86-3.227-2.151-5.922-4.653-8.073-7.522-2.151-2.869-3.049-6.622-2.691-11.283 0.358-4.661 2.701-11.302 7.003-19.907 2.151-5.020 3.916-11.114 5.35-18.286 13.623 0.043 27.752 2.094 39.814 10.764l71.003-6.452c18.328 20.645 39.687 20.988 58.067 0 5.736-5.736 11.832-14.366 18.286-25.84l-30.12-20.426c-7.171 2.151-15.769 6.45-25.808 12.904-5.008 2.869-10.045 6.109-15.076 9.694-28.616 13.889-84.649-2.285-116.166-4.312-4.109-8.219-7.42-16.267-17.183-18.286-1.697-5.319-0.058-11.024-2.172-16.146-13.625-21.513-18.276-44.097-13.974-67.761 7.888-37.289 27.232-55.927 58.067-55.927h11.834c15.059 0 25.645-0.706 31.741-2.14s9.143-2.525 9.143-3.242c-3.585-8.605-4.836-15.406-3.761-20.426 3.551-16.106 15.172-28.294 13.974-45.714-1.114-22.158-8.080-41.262-0.519-63.481 8.622-21.553 19.453-44.958 27.429-67.21 3.227-6.454 8.071-10.4 14.525-11.834 12.908-2.151 29.044 6.446 48.405 25.808 14.341 15.776 22.586 33.003 24.738 51.647 2.839 16.503 14.473 31.163 18.286 48.405v13.974c3.579 7.171 6.627 14.165 9.143 20.977 3.589 9.902 3.981 22.519 4.831 33.88 11.274 11.274 22.273 21.338 30.12 35.502 5.020 8.605 6.463 16.112 4.312 22.565-0.689 1.434-2.486 2.878-5.382 4.312l-16.146 6.452c0.276 9.016 16.854 7.674 24.738 6.452l38.711 23.668c-1.434-48.762-10.93-95.92-28.498-141.455-17.568-45.535-43.554-86.565-77.974-123.137-45.893-50.196-100.943-86.062-165.123-107.574-64.18-21.513-130.329-25.811-198.452-12.904 11.728 20.719 18.499 44.066 32.292 64.551 0 10.756 1.604 19.899 4.831 27.429 13.69 31.672 36.027 39.914 61.86 64.519 26.066 27.169 25.822 59.273 26.877 98.432-0.356 24.785-39.985 40-58.099 53.787-41.986 28.295-68.648 69.922-128.519 57.548-21.397-2.181-26.576-6.34-42.505 6.971l-6.452 3.242 0.551 2.14 2.691 5.382c6.426 6.721-2.696 15.171-11.315 12.385-1.793-0.358-3.749-0.551-5.901-0.551-1.967 9.606-8.412 18.544-9.694 29.050 10.039-7.888 18.669-13.823 25.84-17.767 7.169-3.944 13.265-6.639 18.286-8.073 5.020-2.151 9.319-2.857 12.904-2.14 7.888 1.434 12.347 9.326 13.422 23.668 1.076 14.341 0.563 30.831-1.589 49.475 2.151 2.867 3.562 5.754 4.28 8.624 7.579 39.192 27.649 30.598 58.099 41.921 5.020 2.869 6.078 6.461 3.21 10.764 0 0.717-0.161 1.070-0.519 1.070-0.358 0-0.551 0.385-0.551 1.102 16.553 8.313 26.303 25.335 36.571 40.851-8.749 13.864-22.331 25.44-37.641 33.362-8.211 10.127-40.447 3.918-47.335 20.426-5.736 0.717-10.035 1.808-12.904 3.242-29.041 18.82-41.307 51.73-72.592 65.070-12.549 1.076-24.932 0.883-37.123-0.551 36.571 29.399 76.383 51.278 119.408 65.621zM123.688 517.901c6.454-10.756 14.345-20.445 23.668-29.050 48.383-44.446 93.862-53.865 155.947-76.353 2.865-2.151 6.812-5.744 11.834-10.764 6.765-5.134 12.488-11.282 19.388-16.146 0-3.585-0.545-8.59-1.621-15.044-1.076-6.454-1.269-16.848-0.551-31.189 2.072-39.907 34.984-71.499 44.093-109.714-8.080-49.526-8.195-98.204-13.974-147.356-48.762 20.078-91.588 48.758-128.519 86.047-36.93 37.289-65.449 80.661-85.528 130.14-14.341 35.854-23.484 72.266-27.429 109.196-3.949 36.93-3.050 73.662 2.691 110.233z" />
<glyph unicode="&#xe6b6;" d="M954.836 454.065h-329.795l42.589-194.382h266.457zM397.898 454.065h-329.795l20.749-194.382h266.457zM1014.898 510.851c7.284-8.008 10.196-16.744 8.736-26.209l-28.393-262.089c-3.895-17.136-16.109-30.345-32.761-30.577h-321.058c-17.265 1.148-28.705 11.977-31.669 27.301l-51.326 228.235c-27.773 17.298-64.294 14.778-93.915 2.184l-51.326-230.419c-4.072-16.599-15.918-27.109-31.669-27.301h-321.058c-18.061 1.427-30.123 14.456-31.669 30.577l-28.393 262.089c-1.456 10.192 1.092 18.928 7.644 26.209l369.108 190.014c17.705 7.898 35.24 0.313 42.589-15.289 6.163-17.82 2.161-38.117-14.196-45.865l-233.696-105.927h675.97l-233.696 105.927c-17.336 9.827-21.82 29.619-15.288 45.865 9.269 16.622 28.044 22.14 43.681 15.289z" />
<glyph unicode="&#xe6b7;" d="M0 878.888l430.019-430v-421.137h-158.124v-91.751h480.229v91.751h-158.124v421.137l430 430z" />
<glyph unicode="&#xe6b8;" d="M873.422 705.981h97.504v-108.714c-3.734 0-10.645 0.371-20.734 1.12-10.086 0.746-19.612 1.122-28.58 1.122h-48.19v-208.464c0-50.064 16.436-75.093 49.313-75.093 23.164 0 44.081 6.345 62.767 19.051v-112.074c-27.647-14.95-60.899-22.419-99.755-22.419-54.544 0-92.273 19.425-113.195 58.276-15.69 29.145-23.54 75.090-23.54 137.862v200.619h1.122v2.242l-16.812 1.117c-9.714 0-22.416-1.117-38.105-3.359v108.714h54.918v43.71c0 20.922-1.122 37.735-3.362 50.436h130.009c-2.239-14.198-3.36-30.263-3.36-48.192v-45.955zM514.86 208.356c1.493 14.938 2.236 40.34 2.236 76.209v348.568c0 35.113-0.743 59.4-2.236 72.848h126.649c-1.498-14.198-2.245-37.735-2.245-70.612v-344.077c0-38.11 0.747-65.755 2.245-82.937h-126.649zM233.498 711.562c-50.809 0-94.51-16.813-131.125-50.438-38.102-35.866-57.188-80.701-57.188-134.5 0-35.866 10.516-69.433 31.438-100.812 18.679-29.137 39.965-47.845 63.875-56.062v-2.25c-23.91-10.451-35.875-36.594-35.875-78.438 0-32.133 12.662-56.060 38.062-71.75v-2.25c-69.483-23.16-104.187-66.113-104.187-128.875 0-54.55 23.17-94.534 69.5-119.938 36.606-20.177 83.275-30.25 140.062-30.25 138.228 0 207.375 57.929 207.375 173.75 0 72.476-53.46 116.941-160.312 133.375-24.656 3.734-43.298 12.674-56 26.875-9.714 9.71-14.562 19.411-14.562 29.125 0 27.644 14.931 43.702 44.812 48.188 45.579 6.717 82.732 27.885 111.5 63.375 28.767 35.493 43.188 77.117 43.188 124.938 0 14.944-3.024 31.005-9 48.188 19.429 4.487 34.35 8.579 44.812 12.312v115.438c-47.078-17.933-88.512-26.875-124.375-26.875-31.385 17.932-65.388 26.875-102 26.875zM237.998 608.5c22.417 0 39.986-8.63 52.688-25.812 10.46-15.695 15.688-34.394 15.688-56.062 0-52.302-22.796-78.438-68.375-78.438-47.069 0-70.625 25.816-70.625 77.375 0 55.29 23.556 82.938 70.625 82.938zM245.81 152.313c62.767 0 94.188-19.079 94.188-57.188 0-40.352-28.778-60.5-86.312-60.5-65.75 0-98.625 19.464-98.625 58.313 0 39.603 30.227 59.375 90.75 59.375zM656.376 876.503c0-46.114-34.874-83.497-77.894-83.497s-77.894 37.383-77.894 83.497c0 46.114 34.874 83.497 77.894 83.497 43.020 0 77.894-37.383 77.894-83.497z" />
<glyph unicode="&#xe6b9;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM512 904.25c251.98 0 456.25-204.27 456.25-456.25s-204.27-456.25-456.25-456.25c-251.98 0-456.25 204.27-456.25 456.25 0 251.98 204.27 456.25 456.25 456.25zM285.562 770.625c-12.994-37.768-17.499-78.761-5.875-114.563-14.044-15.584-24.948-33.487-32.75-53.75-20.797-65.729-15.717-149.696 29.812-200.5 15.994-17.534 37.694-31.95 65-43.25 27.306-11.299 62.402-18.507 105.312-21.625-28.8-13.458-49.103-21.681-56.187-51.438-32.125-21.467-71.191-16.344-99.5 7-22.372 16.335-32.507 45.366-57.313 56.125-1.56 1.558-6.433 2.72-14.625 3.5-8.192 0.78-14.631-1.544-19.313-7-2.341-2.338-2.168-4.835 0.563-7.563 18.779-15.273 36.852-31.46 47.437-50.875 10.143-21.041 20.64-36.447 31.563-46.188 30.299-20.474 70.935-31.126 106.5-18.125-4.147-25.028 7.041-64.111-1.188-86.5-3.121-6.234-7.586-11.699-13.438-16.375-5.215-5.087-21.384-11.452-18.125-19.25 1.56-3.507 7.013-5.658 16.375-6.438 20.609 0.526 41.125 8.858 53.25 25.125 4.292 5.845 6.438 13.461 6.438 22.812v95.812c0 10.91 2.319 18.699 7 23.375s9.788 7.817 15.25 9.375v-126.25c0-10.91-0.987-20.269-2.938-28.062-1.951-7.793-3.69-13.258-5.25-16.375-3.581-6.007-10.428-11.55-10.562-18.687 0-2.338 1.395-3.673 4.125-4.063 20.497 0.889 44.278 12.913 52.625 29.813 6.632 14.027 9.938 28.789 9.938 44.375v123.938h25.75v-123.938c0-15.586 3.541-30.348 10.562-44.375 7.022-14.027 18.741-23.041 35.125-26.938 8.582-2.338 14.379-3.265 17.5-2.875 3.121 0.39 4.515 1.725 4.125 4.063-1.879 7.081-5.795 13.139-9.938 18.687-5.462 7.014-8.187 21.838-8.187 44.437v126.25c5.462-1.558 10.742-4.699 15.813-9.375s7.562-12.465 7.562-23.375v-95.812c0-9.352 2.146-16.968 6.438-22.812 13.042-16.586 32.696-25 53.25-25.125 9.362 0.779 14.815 2.931 16.375 6.438 1.56 3.507 0.401 6.412-3.5 8.75-3.9 2.338-8.773 5.824-14.625 10.5-5.852 4.676-10.316 10.141-13.438 16.375-3.502 40.2-0.089 83.293-2.938 123.937-5.623 44.356-22.695 58.948-56.75 75.938 40.57 3.118 73.927 10.561 100.063 22.25 78.129 37.961 99.734 96.646 100.063 175.312-1.232 50.628-15.847 94.793-49.188 128.625 4.681 17.923 6.076 36.58 4.125 56.062-1.951 19.483-6.071 37.039-12.313 52.625-28.864-1.558-53.055-7.369-72.562-17.5-19.505-10.131-33.543-18.736-42.125-25.75-69.133 15.695-143.14 15.79-209.437-2.313-33.924 27.746-75.968 43.203-115.875 45.563z" />
<glyph unicode="&#xe6ba;" d="M640.502 642.761l196.769 124.486-192.753 192.753-124.486-277.082-72.282 216.847-192.753-128.502 160.627-128.502h-365.427v-257.004h64.251v-449.757h795.106v449.757h64.251v257.004zM660.773 875.596l100.86-100.86-205.738-130.466zM421.984 824.673l56.951-170.851-142.376 113.901zM447.749 0.251h-269.051v405.631h269.051zM447.749 450.008h-333.302v128.502h333.302zM845.302 0.251h-269.051v405.631h269.051zM909.553 450.008h-333.302v128.502h333.302z" />
<glyph unicode="&#xe6bb;" d="M576.906 960c89.763-0.001 179.527-18.874 269.292-56.62l-64.216-158.813c-72.272 29.46-134.877 44.191-187.814 44.192-35.906-0.001-63.526-10.358-82.859-31.072-19.334-20.255-29.001-49.486-29.001-87.693v-133.265h258.935v-151.218h-258.935v-98.74c0-78.256-34.755-135.337-104.264-171.242h495.773v-179.528h-723.636v171.242c47.414 20.254 79.867 43.501 97.359 69.74 17.953 26.238 26.929 62.374 26.929 108.407v100.121h-122.908v151.218h122.908v134.646c0 92.525 26.238 163.646 78.716 213.362 52.937 50.175 127.511 75.263 223.719 75.264" />
<glyph unicode="&#xe6bc;" d="M0 960v-353.125l123 124.063 282.938-282.938-283.438-283.438-122.5 121.438v-350h353.125l-124.063 123 282.938 282.938 283.438-283.438-121.438-122.5h350v353.125l-123-124.063-282.938 282.938 283.438 283.438 122.5-121.438v350h-353.125l124.063-123-282.938-282.938-283.438 283.438 121.438 122.5h-350z" />
<glyph unicode="&#xe6bd;" d="M0 960v-1024h1024v1024h-1024zM690.625 819.312c35.398 0.063 67.92-6.063 95.313-10.062 59.782-15.856 83.645-40.181 82.75-83l2.187-68.25c-9.517-62.091-35.989-64.765-61.625-70.438 9.523-7.316 18.802-3.286 24.25-37.437v-83.625c-18.844-44.475-45.729-48.971-72.688-52.875l-33 2.25-2.187-279.625c-4.354-51.581-35.51-54.065-63.875-61.625h-125.5c-38.327 0.778-58.69 26.19-63.812 72.625-14.577-57.122-41.954-82.207-81.438-77.062l-107.875 2.25c-72.056 7.807-66.179 43.099-70.5 74.813l-2.187 268.625c-30.58 10.142-59.26 25.009-57.25 116.625 2.1 80.893 31.070 89.012 61.687 92.5 8.524 104.637 63.926 177.979 209.125 191.5 64.2 4.759 110.394-8.478 154.125-24.188 38.868 20.716 77.102 26.937 112.5 27zM440.688 753.812c-13.424-0.15-22.894-2.138-37.625-1.125-119.548-14.985-114.655-111.15-117.375-166.938l1.562-23.375-60.75 3.125 1.562-85.625h56.063l-3.125-339.313h115.188v339.313l149.437 3.125v-342.438l115.187-3.125-1.562 345.562h104.312v76.312h-104.312c3.757 51.594-14.182 121.475 63.875 110.5 28.062-3.57 54.832-8.994 74.687-24.875l1.563 85.562c-38.401 16.429-89.107 23.531-144.313 16.188-126.46-16.829-105.954-114.167-109.437-190.5l-144.75 1.562v57.562c3.628 29.859 8.916 58.714 65.375 56.063 18.244 2.47 40.98-8.026 66.938-17.125l-1.563 80.938c-49.885 15.99-73.678 18.818-90.937 18.625z" />
<glyph unicode="&#xe6be;" d="M755.957 959.999c-48.345-0.086-100.581-8.618-153.664-36.91-59.725 21.455-122.792 39.565-210.471 33.065-198.304-18.466-273.995-118.668-285.637-261.575-41.816-4.763-81.333-15.792-84.201-126.27-2.744-125.124 36.413-145.516 78.178-159.367l3.012-366.827c5.902-43.312-2.194-91.546 96.216-102.208l147.32-3.012c53.924-7.026 91.335 27.206 111.243 105.219 6.996-63.418 34.868-98.133 87.213-99.196h171.382c38.74 10.324 81.235 13.723 87.181 84.169l3.012 381.853 45.080-3.012c36.818 5.332 73.492 11.413 99.228 72.154v114.255c-7.441 46.642-20.059 41.144-33.065 51.136 35.012 7.747 71.172 11.417 84.169 96.216l-2.98 93.205c1.223 58.479-31.358 91.702-113.005 113.358-37.411 5.462-81.866 13.831-130.211 13.745zM414.635 870.512c23.572 0.264 56.058-3.57 124.187-25.408l2.115-110.57c-35.451 12.427-66.493 26.763-91.41 23.389-77.108 3.622-84.341-35.764-89.296-76.544v-78.658l197.719-2.115c4.758 104.251-23.277 237.15 149.435 260.133 75.396 10.029 144.665 0.426 197.111-22.012l-2.115-116.946c-27.117 21.689-63.722 29.151-102.048 34.027-106.606 14.989-82.050-80.509-87.181-150.973h142.45v-104.162h-142.45l2.115-471.982-157.317 4.261v467.721l-204.095-4.261v-463.46h-157.317l4.229 463.46h-76.544l-2.115 116.946 82.92-4.261-2.115 31.88c3.715 76.191-2.943 207.564 160.328 228.029 20.119-1.384 33.059 1.301 51.392 1.506z" />
<glyph unicode="&#xe6bf;" d="M0 960v-1024h1024v730.625l-229.5-193.75c18.221-18.711 18.698-45.937-1.062-67.125l-234.938-235.938c-19.627-19.149-46.279-20.086-69.25 0l-208.938 208.938c-53.656 3.248-102.571 28.921-141.75 71.438-34.589 40.51-51.619 92.133-48.75 149.875 4.782 53.504 28.933 101.996 71.438 141.25 36.875 30.808 82.234 48.46 134.25 49.813 59.073-0.471 113.879-25.296 156.938-72.5 3.608-4.33 7.065-8.872 10.312-13.563 3.247-4.69 6.301-9.17 9.188-13.5l17.312 17.313c19.628 19.149 46.278 20.086 69.25 0l69.312-69.313 233.813 320.438h-861.625zM911.438 960l-378.875-520.625c-3.608-4.33-7.948-6.563-13-6.563s-8.648 1.83-10.812 5.438c-1.443 0.722-7.954 8.658-19.5 23.812-11.546 15.154-25.59 33.942-42.188 56.313 0.15 0.939 0.244 1.833 0.375 2.75 8.104 19.516 12.562 40.864 12.562 63.313 0 91.319-73.993 165.375-165.312 165.375-91.319 0-165.375-74.056-165.375-165.375 0-91.319 74.056-165.313 165.375-165.313 19.94 0 39.049 3.532 56.75 10 0.032 0.012 0.030-0.012 0.062 0 0.812 0.159 1.616 0.273 2.438 0.437l157-126.625c2.165-2.165 4.273-3.25 6.437-3.25h3.25c3.608 0 6.523 1.085 8.687 3.25l494.688 416.75v240.312h-112.562z" />
<glyph unicode="&#xe6c0;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM256 639.688l256-191.688-256-191.688v383.375zM576 639.688l256-191.688-256-191.688v383.375z" />
<glyph unicode="&#xe6c1;" d="M488.727-64v465.455l-465.454-465.455v1024l465.454-465.455v465.455l512-512z" />
<glyph unicode="&#xe6c2;" d="M36.013 161.343h158.772v146.746c0 46.428 22.663 97.694 65.98 140.568 43.317 42.875 107.576 89.465 213.251 163.438 106.15 74.305 170.297 115.684 199.122 141.488 28.825 25.804 26.352 21.654 26.352 59.211v147.206h126.176v-147.206c0-56.387-23.568-113.101-68.346-153.186s-106.807-77.919-210.951-150.82c-104.618-73.233-166.536-119.791-196.822-149.769-30.286-29.977-28.587-31.267-28.587-50.931v-146.746h165.672l-225.277-225.343zM537.367 161.343h162.123v146.746c0 19.664 1.634 20.953-28.653 50.931-20.033 19.829-55.546 47.91-106.461 85.169 6.391 4.506 11.45 8.153 18.204 12.88 37.269 26.088 64.156 44.074 92.004 62.957 35.481-26.789 63.040-49.595 85.038-71.369 43.317-42.875 66.045-94.14 66.045-140.568v-146.746h162.321l-225.277-225.343z" />
<glyph unicode="&#xe6c3;" d="M888.561 283.070c-10.194 16.748-22.937 27.488-38.229 32.222-31.715 10.15-67.114 9.461-88.472-13.653-23.875-31.625-24.473-79.020 0-106.494 37.328-35.237 103.259-17.823 126.701 16.929v70.996zM972.664 565.963c34.223-31.311 51.336-75.729 51.336-133.255v-332.044c-0.557-9.175-8.087-16.264-16.384-16.383h-102.671c-9.175 0.555-16.264 8.087-16.384 16.383v9.83c-34.275-26.010-73.934-37.993-113.594-38.229-45.005 1.318-84.128 17.242-114.686 45.328-37.63 37.658-52.131 83.958-52.428 131.616 1.481 52.141 16.541 99.069 52.974 132.708 33.609 28.431 73.359 41.788 114.14 42.051 45.146 0 83.011-12.014 113.594-36.044v31.676c0 50.243-26.214 75.365-78.642 75.365-40.777 0-77.913-17.112-111.409-51.336-8.893-7.87-21.431-4.784-26.214 4.369l-40.413 69.904c-3.64 7.281-2.548 13.835 3.277 19.66 24.758 24.759 53.52 43.508 86.288 56.251 81.205 28.173 189.585 26.62 251.217-27.852zM300.931 620.576l-72.088-257.771h145.269zM601.299 112.679c1.456-4.369 2.184-7.281 2.184-8.738-0.306-9.713-7.761-16.273-16.384-16.383h-128.885c-8.009 0-13.107 4.005-15.291 12.014l-36.044 126.701h-210.804l-36.044-126.701c-2.184-8.009-7.646-12.014-16.384-12.014h-126.701c-13.619 1.134-18.768 9.492-16.384 20.752l214.081 703.409c2.913 8.009 8.374 12.015 16.384 12.015h140.9c8.009 0 13.471-4.005 16.384-12.015l212.989-699.040z" />
<glyph unicode="&#xe6c4;" d="M285.996 308.734h371.377l-185.69 481.166-185.69-481.166M0.003-57.9v71.836h88.779l360.534 939.965h113.851l361.211-939.965h99.622v-71.836h-367.991v71.836h112.498l-84.712 222.283h-425.593l-84.712-222.283h111.141v-71.836h-284.632" />
<glyph unicode="&#xe6c5;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM333.25 693.75h131.812l42.687-55h310v-436.5h-611.5v436.5h84.312l42.687 55z" />
<glyph unicode="&#xe6c6;" d="M212.625 859.563l-71.438-92.187h-141.187v-520.509l105.448 397.072h742.552v123.438h-343.125l-71.438 92.187zM0 92.491v-56.053h848l176 573.125h-874.552z" />
<glyph unicode="&#xe6c7;" d="M212.199 868.518l-71.438-92.188h-141.188v-123.438h1024v123.438h-519.125l-71.438 92.188h-220.812zM-0.426 618.518v-573.125h1024v573.125h-1024z" />
<glyph unicode="&#xe6c8;" d="M212.625 859.562l-71.437-92.187h-141.188v-730.938h1024v730.938h-519.125l-71.438 92.188z" />
<glyph unicode="&#xe6c9;" d="M0 960v-1024h1024v1024h-1024zM302.875 641c106.607 0 193-86.393 193-193s-86.393-193.062-193-193.062c-106.607 0-193 86.456-193 193.062 0 106.607 86.393 193 193 193zM721.125 641c106.607 0 193-86.393 193-193s-86.393-193.062-193-193.062c-106.607 0-193 86.456-193 193.062 0 106.607 86.393 193 193 193z" />
<glyph unicode="&#xe6ca;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM350.188 737c154.457-0.692 268.477-154.807 451.437-36.438v-309.75c-147.816-147.816-286.419 91.4-502.375 32.625v-264.438h-76.875v541.562c46.442 26.814 88.441 36.614 127.813 36.438z" />
<glyph unicode="&#xe6cb;" d="M0 895.462v-959.462h135.937v468.521c381.785 104.121 626.741-319.663 888.063-57.806v548.747c-405.902-263.143-619.792 233.848-1024 0z" />
<glyph unicode="&#xe6cc;" d="M325.666-64c-209.801 118.243-265.038 230.162-233.457 383.020 23.314 112.872 99.654 204.702 106.974 317.358 32.61-59.344 46.236-102.137 49.88-164.15 103.717 127.073 172.255 302.987 176.313 487.773 0 0 270.144-158.729 287.871-398.49 23.256 49.419 34.962 127.908 11.706 178.777 69.766-50.871 478.117-502.475-55.312-804.287 100.29 195.275 25.873 458.762-148.257 580.452 11.629-52.326-8.76-247.484-85.796-333.239 21.345 143.288-20.31 203.877-20.31 203.877 0 0-14.296-80.26-69.766-161.336-50.653-74.037-85.751-152.616-19.845-289.754z" />
<glyph unicode="&#xe6cd;" d="M0 960l354.875-354.875v-669.125l314.25 257.125v412l354.875 354.875h-1024z" />
<glyph unicode="&#xe6ce;" d="M60.438 960v-1024h903.125v1024h-903.125zM106.5 898.5h110.938v-84.375h-110.938v84.375zM806.5 898.5h110.938v-84.375h-110.938v84.375zM265.125 892.25h493.75v-446.875h-493.75v446.875zM106.5 709.438h110.938v-84.375h-110.938v84.375zM806.562 709.438h110.938v-84.375h-110.938v84.375zM106.5 520.375h110.938v-84.375h-110.938v84.375zM806.562 520.375h110.938v-84.375h-110.938v84.375zM265.125 414.125h493.75v-446.875h-493.75v446.875zM106.5 331.312h110.938v-84.375h-110.938v84.375zM806.562 331.312h110.938v-84.375h-110.938v84.375zM106.5 142.25h110.938v-84.375h-110.938v84.375zM806.562 142.25h110.938v-84.375h-110.938v84.375z" />
<glyph unicode="&#xe6cf;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM383.125 770.625h312v-208.563h-52.437v156.438h-221.313v-93.938h-98.75v-401.562h250.375v-52.125h-302.875v490.687l113 109.063zM619.375 516.375h96.437v-124.5h124.563v-96.5h-124.563v-124.5h-96.437v124.5h-124.5v96.5h124.5v124.5z" />
<glyph unicode="&#xe6d0;" d="M218.097 960l-192.913-186.239v-837.761h517.1v89.027h-427.506v685.647h168.61v160.299h377.893v-267.081h89.594v356.108h-532.777zM621.489 525.883v-212.557h-212.62v-164.769h212.62v-212.557h164.706v212.557h212.62v164.769h-212.62v212.557h-164.706z" />
<glyph unicode="&#xe6d1;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM389.875 771.5h336.625v-146.812l21.062 21 104.438-104.375-246.625-246.687-154.625-50.25 50.188 154.687 169 169v147.188h-238.813v-101.312h-106.5v-433.188h345.313v93.375l56.562 56.625v-206.25h-458.5v529.312l121.875 117.688zM527.062 373l-25.125-77.375 77.312 25.125-52.188 52.25z" />
<glyph unicode="&#xe6d2;" d="M242.778 960l-192.913-186.239v-837.761h725.69v326.391l-89.594-89.594v-147.77h-546.503v685.647h168.61v160.299h377.893v-232.956l-267.459-267.459-79.457-244.793 244.73 79.52 390.359 390.359-165.273 165.273-33.306-33.306v232.39h-532.777zM459.868 329.255l82.605-82.668-122.396-39.728 39.791 122.396z" />
<glyph unicode="&#xe6d3;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM423.875 713.562h33.875v-129.312h-133.938v32.688l100.063 96.625zM503.188 713.562h197v-531.125h-376.375v357.937h179.375v173.187z" />
<glyph unicode="&#xe6d4;" d="M342.068 960l-192.913-186.239v-63.087h258.204v249.326h-65.291zM495.001 960v-333.883h-345.846v-690.117h725.69v1024h-379.844z" />
<glyph unicode="&#xe6d5;" d="M512 960c-181.644 0-328.928-147.283-328.928-328.928 0-160.214 114.611-293.701 266.287-322.968v-105.881h-141.069v-125.218h141.069v-141.005h125.218v141.005h141.069v125.218h-141.069v105.881c151.706 29.243 266.35 162.733 266.35 322.968 0 181.644-147.283 328.928-328.928 328.928zM512 829.202c109.424 0 198.13-88.706 198.13-198.13s-88.706-198.13-198.13-198.13c-109.424 0-198.13 88.706-198.13 198.13 0 109.424 88.706 198.13 198.13 198.13z" />
<glyph unicode="&#xe6d6;" d="M1024 960v-1024h-170.667v469.333l-426.667-426.667v426.667l-426.667-426.667v938.667l426.667-426.667v426.667l426.667-426.667v469.333z" />
<glyph unicode="&#xe6d7;" d="M0-64v1024h170.667v-469.333l426.667 426.667v-426.667l426.667 426.667v-938.667l-426.667 426.667v-426.667l-426.667 426.667v-469.333z" />
<glyph unicode="&#xe6d8;" d="M0 844.962v-793.925h793.925v333.871l230.075-333.871v793.925l-230.075-333.871v333.871h-793.925z" />
<glyph unicode="&#xe6d9;" d="M0 960v-1024h1024v1024h-1024zM736.625 826.375c7.437 0.158 15.182-0.084 23.187-0.625 29.419-0.040 60.146-2.692 90.625-5.375l-3.313-121.25h-81.875c-38.39 0.85-52.254-14.057-53.5-57.375v-95.25h138.688l-5.5-129.875h-133.188v-361.563h-135.312v361.563h-93.938v129.875h93.938v111.5c0 80.392 33.987 131.562 100.937 157.5 17.194 6.765 36.939 10.401 59.25 10.875z" />
<glyph unicode="&#xe6da;" d="M665.466 448.064c0-81.349-68.833-147.296-153.744-147.296-84.91 0-153.744 65.947-153.744 147.296 0 81.349 68.833 147.296 153.744 147.296 84.91 0 153.744-65.947 153.744-147.296zM512 754.756c-87.915-0.39-179.042-21.793-265.305-62.768-64.049-31.678-126.469-76.371-180.652-131.534-26.611-28.159-60.555-68.934-66.043-112.438 0.648-37.684 41.071-84.198 66.043-112.438 50.81-52.998 111.604-96.442 180.652-131.566 80.445-39.040 169.486-61.518 265.305-62.768 87.998 0.396 179.104 22.045 265.273 62.768 64.049 31.678 126.501 76.403 180.685 131.566 26.611 28.159 60.554 68.934 66.043 112.438-0.648 37.684-41.071 84.198-66.043 112.438-50.81 52.998-111.636 96.409-180.685 131.534-80.403 39.012-169.664 61.335-265.273 62.768zM511.935 678.598c133.222 0 241.216-103.248 241.216-230.614s-107.994-230.614-241.216-230.614c-133.222 0-241.216 103.248-241.216 230.614 0 127.366 107.994 230.614 241.216 230.614z" />
<glyph unicode="&#xe6db;" d="M571.5 726.6c-19.533 2.112-39.381 3.323-59.5 3.625-87.915-0.39-179.049-21.775-265.312-62.75-64.049-31.678-126.441-76.399-180.625-131.562-26.611-28.16-60.574-68.934-66.062-112.438 0.648-37.684 41.091-84.198 66.062-112.438 50.81-52.998 111.577-96.438 180.625-131.562 2.346-1.139 4.701-2.265 7.062-3.375l-64.061-111.873 87.044-51.444 470.541 819.228-83.785 51.207zM770.188 670.725l-63.938-110.812c29.414-38.214 46.875-85.338 46.875-136.438 0-127.366-107.966-230.625-241.187-230.625-5.76 0-11.341 0.621-17 1l-42.313-73.25c19.514-2.090 39.245-3.612 59.375-3.875 87.998 0.396 179.082 22.027 265.25 62.75 64.049 31.678 126.504 76.399 180.688 131.562 26.611 28.159 60.574 68.934 66.062 112.438-0.648 37.684-41.091 84.198-66.062 112.438-50.81 52.998-111.639 96.438-180.688 131.562-2.331 1.131-4.717 2.147-7.062 3.25zM511.938 654.1c5.841 0 11.637-0.235 17.375-0.625l-49.562-85.812c-69.559-14.102-121.75-73.284-121.75-144.125 0-17.795 3.277-34.833 9.312-50.625 0.007-0.018-0.007-0.045 0-0.063l-49.687-86.063c-29.483 38.249-46.875 85.529-46.875 136.688 0 127.366 107.966 230.625 241.188 230.625zM656.125 473.162l-111.687-193.5c69.185 14.368 121 73.28 121 143.875 0 17.471-3.486 34.081-9.313 49.625z" />
<glyph unicode="&#xe6dc;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM325.938 859.125h372.125l-80-563.687h-212.125l-80 563.687zM514 257.062c60.81 0 110.125-49.314 110.125-110.125s-49.315-110.062-110.125-110.062c-60.81 0-110.125 49.252-110.125 110.062 0 60.81 49.315 110.125 110.125 110.125z" />
<glyph unicode="&#xe6dd;" d="M644.029 789.905c-55.784-0.001-101.737-16.233-137.859-48.697-36.123-32.008-59.442-78.647-69.958-139.917h276.405v-120.713h-286.693l-1.372-24.005v-32.236l1.372-22.634h243.483v-122.084h-231.823c23.319-111.111 96.707-166.666 220.163-166.666 65.385 0 128.257 13.031 188.614 39.094v-175.582c-53.041-26.977-120.027-40.466-200.959-40.466-112.025 0-204.16 30.407-276.405 91.22-72.245 60.813-117.741 144.946-136.488 252.399h-93.964v122.084h80.932c-1.829 10.516-2.744 24.691-2.743 42.524l1.372 36.351h-79.561v120.713h91.22c16.918 110.653 62.414 197.986 136.488 262.001 74.073 64.471 166.665 96.706 277.776 96.707 85.961-0.001 166.436-18.748 241.425-56.241l-67.215-159.121c-31.551 14.174-61.043 25.148-88.477 32.922-27.435 8.23-56.013 12.345-85.733 12.346" />
<glyph unicode="&#xe6de;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM168.375 585h687.25v-274h-687.25v274z" />
<glyph unicode="&#xe6df;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM512 820c205.45 0 372-166.55 372-372s-166.55-372-372-372c-205.45 0-372 166.55-372 372 0 205.45 166.55 372 372 372zM240.188 548.562v-201.125h543.625v201.125h-543.625z" />
<glyph unicode="&#xe6e0;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM250 646.062h524v-73.687l-262-149.375-262 149.375v73.687zM250 525.25l133.438-76.062-133.438-139.875v215.938zM774 525.25v-215.938l-133.438 139.875 133.438 76.062zM420.125 428.25l91.875-52.375 91.875 52.375 170.125-178.312h-524l170.125 178.312z" />
<glyph unicode="&#xe6e1;" d="M0 835v-143.938l512-291.938 512 291.938v143.938zM0 599v-422.062l260.812 273.375zM1024 599l-260.812-148.688 260.812-273.375zM332.438 409.438l-332.438-348.438h1024l-332.438 348.438-179.562-102.375z" />
<glyph unicode="&#xe6e2;" d="M512 849.063l-512-551.75h1024l-512 551.75zM0 200v-264h1024v264h-1024z" />
<glyph unicode="&#xe6e3;" d="M0 960v-1024h1024v661.938l-168-168v-325.938h-688v688h325.938l168 168h-661.938zM896 960l-65.562-65.562 128-128 65.562 65.562-128 128zM799.5 863.5l-375.25-375.25 128-128 375.25 375.25-128 128zM377.125 428.938c-1.898-0.029-3.834-0.167-5.75-0.313v-121.25h121.25c0 33.031-15.78 66.593-40.375 90.063-20.345 19.414-46.656 31.938-75.125 31.5z" />
<glyph unicode="&#xe6e4;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM512 885.82c111.546 0 213.347-41.715 290.659-110.395-56.8-74.931-143.124-124.814-229.577-158.606-47.143 86.224-105.172 177.131-164.247 256.778 33.079 7.989 67.631 12.223 103.165 12.223zM325.739 844.32c57.083-85.354 112.347-164.547 162.918-254.184-127.785-33.103-272.123-52.959-405.463-53.301 28.114 136.431 119.718 249.655 242.545 307.485zM851.226 724.815c61.064-74.744 97.892-170.043 98.561-273.929-101.259 19.946-201.973 25.207-304.535 14.881-11.553 28.75-25.492 56.050-38.873 85.495 88.412 35.658 182.906 96.692 244.847 173.552zM524.191 522.407c10.974-23.327 23.666-48.035 35.566-73.305-142.593-62.876-294.242-146.92-373.009-294.193-69.972 77.602-112.567 180.373-112.567 293.090 0 4.281 0.072 8.555 0.195 12.806 152.735 0.741 302.611 19.857 449.816 61.601zM948.328 411.558c-0.141-1.709-0.293-3.419-0.454-5.123 0.161 1.702 0.312 3.415 0.454 5.123zM755.55 403.032c63.662 0.198 129.385-8.696 188.823-24.316-19.44-122.291-89.527-227.707-188.077-294.095-23.511 106.886-45.91 209.151-85.495 312.284 27.301 4.070 55.813 6.038 84.75 6.128zM946.643 395.088c-0.299-2.478-0.6-4.959-0.94-7.425 0.341 2.472 0.64 4.94 0.94 7.425zM589.747 376.9c40.379-104.245 72.070-219.697 93.277-332.061-52.544-22.32-110.336-34.659-171.023-34.659-101.26 0-194.476 34.39-268.644 92.109 79.287 128.669 202.094 225.988 346.391 274.61z" />
<glyph unicode="&#xe6e5;" d="M0 74.653h1024v-138.653h-1024zM700.404 960h-376.807v-423.793h-235.505l423.908-394.78 423.908 394.78h-235.504z" />
<glyph unicode="&#xe6e6;" d="M512 960c-282.769 0-512-229.231-512-512s229.231-512 512-512c282.769 0 512 229.231 512 512 0 282.769-229.231 512-512 512zM512 47.304c-221.329 0-400.696 179.423-400.696 400.696s179.367 400.696 400.696 400.696c221.329 0 400.696-179.423 400.696-400.696 0-221.273-179.367-400.696-400.696-400.696zM612.174 662.261h-200.348v-227.617h-125.217l225.391-212.035 225.391 212.035h-125.217v227.617z" />
<glyph unicode="&#xe6e7;" d="M958.464 572.635h-64.366v-127.561h-381.513v127.561h-65.536v-195.438h65.536v-376.832h190.757v187.246h65.536v-187.246h124.050v376.832h65.536zM578.121 759.881v-250.441h250.441v250.441zM1024 633.49v-321.829h-65.536v-375.662h-511.415v375.662h-190.757v-124.050h60.855v-64.366h65.536v-187.246h-318.318v187.246h65.536v-122.88h187.246v122.88h-187.246v64.366h60.855v124.050h-126.391v65.536h317.147v256.293h131.072v191.927h381.513v-191.927zM317.148 633.49v60.855h64.366v-60.855zM64.366 633.49v-256.293h-64.366v256.293zM129.902 633.49h-65.536v60.855h65.536zM317.148 694.345h-187.246v65.536h187.246z" />
<glyph unicode="&#xe6e8;" d="M372.125 659.966h115.993v-423.626l-485.622-0.306c4.241 118.083 68.204 283.685 369.629 323.069l1.477-45.389c-137.027-20.193-184.618-101.21-208.247-201.727h211.813l-5.043 347.979zM541.793 472.391l-1.783-235.468 481.418 0.108c4.631 235.557-204.81 342.217-534.018 336.993v-47.25c145.966 3.778 328.717-1.634 378.894-213.072l-215.747 1.783v147.992c-38.632 11.279-71.916 11.475-108.765 8.915z" />
<glyph unicode="&#xe6e9;" d="M0 960v-512h512v512h-512zM512 448v-512h512v512h-512z" />
<glyph unicode="&#xe6ea;" d="M512 793.281c-282.77 0-512-229.23-512-512 0-62.8 11.312-122.969 32-178.562h140c-28.072 53.346-44 114.094-44 178.562 0 212.078 171.922 384 384 384 212.078 0 384-171.922 384-384 0-64.469-15.928-125.216-44-178.562h140c20.688 55.594 32 115.763 32 178.562 0 282.77-229.23 512-512 512zM512 592.219c-35.346 0-64-28.654-64-64 0-35.346 28.654-64 64-64 35.346 0 64 28.654 64 64 0 35.346-28.654 64-64 64zM320.062 529.531c-35.346 0-64-28.654-64-64 0-35.346 28.654-64 64-64 35.346 0 64 28.654 64 64 0 35.346-28.654 64-64 64zM703.937 529.531c-35.347 0-64-28.654-64-64 0-35.346 28.653-64 64-64 35.346 0 64 28.654 64 64 0 35.346-28.654 64-64 64zM512 403.906l-50.188-251v-50.188h100.375v50.188l-50.187 251z" />
<glyph unicode="&#xe6eb;" d="M0 919.75v-791.125l512-192.625 512 192.625v791.125zM245.188 605.688c73.071-1.139 123.908-37.881 124.375-111h-79.25c0.054 19.515-8.329 38.093-25.875 45.5-19.797 7.081-44.536 3.573-57.25-13.188-13.615-20.352-11.188-43.135-11.188-67.125-0.75-31.966 15.612-59.6 48.062-59.812 32.878 1.655 48.5 17.696 48.812 47.312h76.688c-1.841-78.533-54.963-108.995-124.375-109.312-87.666-0.532-133.351 61.206-134.062 133.875-0.516 87.635 61.441 133.037 134.062 133.75zM522.5 605.688c52.631 0.555 112.817-22.352 114.312-79.812v-4.375h-77.812v1.438c-0.481 18.869-17.61 26.177-33.375 26.25-11.426-0.292-33.976-2.75-34.312-16.875 2.877-22.327 58.333-26.396 75.562-30.625 40.025-8.504 75.91-31.198 77.062-73.375-1.297-68.279-56.702-90.030-113.875-90.25-67.925 0.486-127.182 16.813-127.688 92.062h78.5c-0.733-26.915 20.276-32.575 41.625-32.625 12.792 0.002 36.31 0.463 36.5 17.25-2.585 20.693-59.92 26.067-76.312 30.25-42.338 10.613-75.827 32.658-76.125 77.938 2.926 65.882 62.061 82.546 115.938 82.75zM794 605.688c56.403-0.473 114.25-21.812 114.25-84.188h-77.75c0.694 19.629-17.385 27.613-33.375 27.688-11.426-0.292-33.976-2.75-34.312-16.875 2.444-22.043 58.541-26.447 75.562-30.625 27.876-6.73 56.338-18.019 69.875-43.125 4.524-8.193 6.88-18.266 7.125-30.25-1.249-68.298-56.68-90.030-113.875-90.25-67.886 0.468-127.173 16.854-127.688 92.062h78.5c-0.424-17.19 8.758-28.79 24.438-31.5 14.188-1.332 53.487-6.067 53.75 16.125-3.090 21.025-59.644 25.996-76.312 30.25-42.379 10.621-75.827 32.615-76.125 77.938 2.937 65.927 61.993 82.546 115.938 82.75z" />
<glyph unicode="&#xe6ec;" d="M-1.733 787.053v-213.067h1027.467v213.067h-1027.467zM-1.733 476.627v-367.68h1027.467v367.68h-1027.467zM110.533 315.133h387.147v-116.853h-387.147v116.853z" />
<glyph unicode="&#xe6ed;" d="M149.961 85.961c199.948-199.948 524.129-199.948 724.077 0 199.948 199.948 199.948 524.129 0 724.077-199.948 199.948-524.129 199.948-724.077 0-199.948-199.948-199.948-524.129 0-724.077zM230.969 141.955l-24.97 24.97 222.827 364.248 364.248 222.827 24.97-24.97-222.827-364.248-364.248-222.827z" />
<glyph unicode="&#xe6ee;" d="M149.961 85.961c199.948-199.948 524.129-199.948 724.077 0 199.948 199.948 199.948 524.129 0 724.077-199.948 199.948-524.129 199.948-724.077 0-199.948-199.948-199.948-524.129 0-724.077zM199.945 135.945c-172.345 172.345-172.345 451.765 0 624.11s451.765 172.345 624.11 0c172.345-172.345 172.345-451.766 0-624.11-172.345-172.345-451.765-172.345-624.11 0zM249.884 162.638l339.721 207.757 207.757 339.721-23.246 23.246-339.721-207.757-207.757-339.721 23.246-23.246z" />
<glyph unicode="&#xe6ef;" d="M0 856.731v-622.304h180.108v-180.047l280.685 180.047h413.075v622.304h-873.869zM914.981 719.937v-78.308h30.711v-443.786h-151.049v-118.624l-184.88 118.624h-132.084l-122.050-78.308h231.070l286.253-183.534v183.534h151.049v600.402h-109.019z" />
<glyph unicode="&#xe6f0;" d="M0 876.187v-729.187h211v-211l328.938 211h484.062v729.187h-1024z" />
<glyph unicode="&#xe6f1;" d="M776.654 804.49l-14.433-69.165c-14.796-2.325-29.047-6.605-42.406-12.581l-49.686 50.197-56.584-45.791 38.702-59.138c-8.622-11.829-15.664-24.835-21.011-38.829l-70.698 0.319-7.6-72.422 69.165-14.433c2.323-14.788 6.61-28.926 12.581-42.278l-50.197-49.814 45.791-56.584 59.138 38.766c11.82-8.615 24.847-15.729 38.829-21.075l-0.319-70.634 72.422-7.6 14.369 69.165c14.8 2.322 29.043 6.542 42.406 12.517l49.75-50.197 56.584 45.855-38.766 59.074c8.622 11.825 15.727 24.839 21.075 38.829l70.634-0.255 7.6 72.422-69.165 14.306c-2.324 14.809-6.536 29.101-12.517 42.47l50.197 49.686-45.855 56.584-59.074-38.702c-11.835 8.628-24.891 15.725-38.893 21.075l0.319 70.634-72.358 7.6zM788.66 636.272c2.276-0.008 4.585-0.076 6.897-0.319 36.998-3.887 63.791-37.021 59.905-74.019-3.886-36.998-37.021-63.855-74.019-59.969-36.998 3.886-63.855 37.021-59.969 74.019 3.644 34.685 33.045 60.406 67.185 60.288zM268.996 630.332l-9.707-96.18c-19.802-5.278-38.558-13.077-55.881-23.119l-74.849 61.182-70.442-70.442 61.182-74.913c-10.042-17.329-17.843-36.074-23.119-55.881l-96.18-9.643v-99.628l96.18-9.707c5.275-19.791 13.085-38.502 23.119-55.817l-61.182-74.913 70.442-70.442 74.913 61.182c17.316-10.034 36.027-17.843 55.817-23.119l9.707-96.18h99.628l9.643 96.18c19.808 5.276 38.552 13.077 55.881 23.119l74.913-61.182 70.442 70.442-61.182 74.849c10.042 17.324 17.84 36.080 23.119 55.881l96.18 9.707v99.628l-96.18 9.643c-5.279 19.819-13.069 38.608-23.119 55.945l61.182 74.849-70.442 70.442-74.849-61.182c-17.337 10.050-36.126 17.84-55.945 23.119l-9.643 96.18h-99.628zM318.811 403.678c50.9 0 92.156-41.256 92.156-92.156 0-50.9-41.256-92.156-92.156-92.156-50.9 0-92.156 41.256-92.156 92.156 0 50.9 41.256 92.156 92.156 92.156zM741.784 280.612l-10.154-50.581c-10.399-1.701-20.372-4.824-29.761-9.196l-34.998 36.722-39.724-33.529 27.206-43.236c-6.060-8.654-11.058-18.181-14.817-28.42l-49.623 0.255-5.365-53.007 48.601-10.538c1.633-10.819 4.617-21.206 8.813-30.974l-35.253-36.403 32.188-41.384 41.576 28.356c8.307-6.303 17.443-11.48 27.27-15.391l-0.192-51.73 50.9-5.556 10.091 50.644c10.402 1.699 20.369 4.761 29.761 9.132l34.998-36.722 39.787 33.529-27.27 43.236c6.060 8.651 11.057 18.185 14.817 28.42l49.686-0.192 5.301 52.943-48.601 10.538c-1.633 10.834-4.61 21.257-8.813 31.038l35.253 36.339-32.188 41.448-41.512-28.356c-8.318 6.312-17.493 11.477-27.334 15.391l0.255 51.666-50.9 5.556zM750.214 157.609c1.6-0.007 3.228-0.078 4.854-0.255 26.003-2.843 44.818-27.090 42.087-54.157-2.732-27.067-25.983-46.718-51.986-43.875-26.003 2.843-44.882 27.090-42.15 54.157 2.561 25.375 23.201 44.217 47.196 44.13z" />
<glyph unicode="&#xe6f2;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512 0 282.77-229.23 512-512 512zM463.25 760h97.5l9.438-94.125c19.395-5.166 37.783-12.79 54.75-22.625l73.25 59.875 68.937-68.937-59.875-73.25c9.835-16.967 17.459-35.355 22.625-54.75l94.125-9.438v-97.5l-94.125-9.5c-5.166-19.379-12.798-37.734-22.625-54.688l59.875-73.25-68.937-68.937-73.313 59.875c-16.959-9.827-35.303-17.462-54.687-22.625l-9.438-94.125h-97.5l-9.5 94.125c-19.368 5.163-37.679 12.806-54.625 22.625l-73.313-59.875-68.937 68.937 59.875 73.313c-9.819 16.946-17.462 35.257-22.625 54.625l-94.125 9.5v97.5l94.125 9.438c5.163 19.384 12.798 37.728 22.625 54.687l-59.875 73.313 68.937 68.937 73.25-59.875c16.954 9.827 35.309 17.459 54.688 22.625l9.5 94.125zM512 538.188c-49.813 0-90.188-40.375-90.188-90.188s40.375-90.188 90.188-90.188c49.813 0 90.188 40.375 90.188 90.188 0 49.813-40.375 90.188-90.188 90.188z" />
<glyph unicode="&#xe6f3;" d="M432.021 960l-15.563-154.507c-31.799-8.476-61.939-20.993-89.758-37.118l-120.218 98.247-113.103-113.103 98.247-120.26c-16.125-27.828-28.73-57.95-37.202-89.758l-154.424-15.521v-160l154.507-15.521c8.472-31.781 21.006-61.91 37.118-89.717l-98.247-120.26 113.103-113.103 120.26 98.247c27.806-16.113 57.936-28.647 89.717-37.118l15.521-154.507h160l15.521 154.424c31.808 8.472 61.93 21.076 89.758 37.202l120.26-98.247 113.103 113.103-98.247 120.218c16.126 27.819 28.642 57.96 37.118 89.758l154.507 15.521v160l-154.424 15.521c-8.476 31.826-21.063 61.959-37.202 89.8l98.247 120.218-113.103 113.103-120.218-98.247c-27.841 16.138-57.974 28.725-89.8 37.202l-15.521 154.424h-159.958zM512 596.016c81.738 0 148.016-66.277 148.016-148.016 0-81.738-66.277-148.016-148.016-148.016-81.738 0-148.016 66.277-148.016 148.016 0 81.738 66.277 148.016 148.016 148.016z" />
<glyph unicode="&#xe6f4;" d="M512 960c-282.765 0-512-229.235-512-512s229.235-512 512-512c282.765 0 512 229.235 512 512 0 282.765-229.235 512-512 512zM516.562 693.813c96.12 2.097 191.324-76.622 218.875-180.006 109.378 10.772 170.565-134.824 86.499-208.688h-630.193c-81.058 137.754 18.949 321.075 165.185 285.508 43.967 71.56 101.953 101.929 159.619 103.187z" />
<glyph unicode="&#xe6f5;" d="M839.584 469.011c160.363 15.793 250.099-197.669 126.853-305.959h-923.976c-118.859 201.959 27.78 470.738 242.179 418.578 171.899 279.779 490.298 129.879 554.938-112.619z" />
<glyph unicode="&#xe6f6;" d="M1024 448c0-282.76-229.24-512-512-512s-512 229.24-512 512c0 282.76 229.24 512 512 512 282.76 0 512-229.24 512-512zM770.44 391.14l-258.44 387.68-258.44-387.68h139.25v-273.94h238.38v273.94h139.25z" />
<glyph unicode="&#xe6f7;" d="M512 960c-282.765 0-512-229.235-512-512s229.235-512 512-512c282.765 0 512 229.235 512 512 0 282.765-229.235 512-512 512zM455.127 706.437l387.682-258.437-387.682-258.437v139.245h-273.937v238.37h273.937v139.245z" />
<glyph unicode="&#xe6f8;" d="M512-64c282.76 0 512 229.24 512 512s-229.24 512-512 512c-282.76 0-512-229.24-512-512 0-282.76 229.24-512 512-512zM568.88 189.56l-387.7 258.44 387.7 258.44v-139.25h273.94v-238.38h-273.94v-139.25z" />
<glyph unicode="&#xe6f9;" d="M1024 448c0 282.76-229.24 512-512 512s-512-229.24-512-512c0-282.76 229.24-512 512-512 282.76 0 512 229.24 512 512zM770.44 504.88l-258.44-387.68-258.44 387.68h139.25v273.94h238.38v-273.94h139.25z" />
<glyph unicode="&#xe6fa;" d="M516.036 960c-115.52 0-209.179-94.137-209.179-210.286 0-116.151 93.665-210.321 209.179-210.321 115.52 0 209.143 94.165 209.143 210.321 0 116.151-93.624 210.286-209.143 210.286zM396.25 714.75h238.393c0-65.83-53.384-119.214-119.214-119.214-65.83 0-119.179 53.384-119.179 119.214zM351.643 506.25c-108.938-2.237-180.597-73.003-176.536-201.143l-0.214-369.107h125.393v331.643c1.085 29.035 43.726 39.206 49.214 0v-331.643h329.5v331.643c1.085 29.035 43.726 39.206 49.214 0v-331.643h120.893v369.107c-0.732 101.308-42.301 202.082-175.429 201.143h-322.036z" />
<glyph unicode="&#xe6fb;" d="M512.002 600.567l-512.002-511.96 152.508-152.607 359.494 359.545 359.494-359.545 152.505 152.607-511.998 511.96z" />
<glyph unicode="&#xe6fc;" d="M844.261 447.991l-512.001 512.009-152.52-152.508 359.481-359.501-359.481-359.481 152.51-152.51 511.991 511.991z" />
<glyph unicode="&#xe6fd;" d="M179.739 448.009l512.001-512.009 152.52 152.508-359.481 359.501 359.481 359.481-152.51 152.51-511.991-511.991z" />
<glyph unicode="&#xe6fe;" d="M512.005-64l511.995 511.995-152.519 152.499-359.476-359.476-359.496 359.476-152.509-152.509 511.985-511.985z" />
<glyph unicode="&#xe6ff;" d="M0 960v-1024h1024v1024h-1024zM168 792h688v-688h-688v688z" />
<glyph unicode="&#xe700;" d="M0 960v-1024h1024v661.94l-168-168v-325.94h-688v688h325.94l168 168zM878.94 947.062l-370.5-370.56-132.376 132.376-135.75-135.812 268.12-268.060 506.25 506.31-135.75 135.75z" />
<glyph unicode="&#xe701;" d="M834.756 49.712l-221.997 108.628-116.701-217.861-100.234 225.911-229.437-91.878 68.429 237.487-234.817 77.097 205.073 137.941-130.323 209.997 245.762-26.15 35.15 244.637 171.456-178.005 184.176 164.809 16.923-246.569 247.024 7.865-145.527-199.761 194.287-152.759-239.884-59.483z" />
<glyph unicode="&#xe702;" d="M512 875.067l-512-100v-654.133l512-100 512 100v654.133l-512 100zM325.84 647.6c79.393 0 148.005-46.376 180.16-113.493h-96.96c-21.545 20.826-50.866 33.68-83.2 33.68-66.138 0-119.733-53.622-119.733-119.76 0-66.138 53.596-119.733 119.733-119.733 32.312 0 61.632 12.771 83.173 33.573h96.96c-32.165-67.102-100.76-113.44-180.133-113.44-110.229 0-199.573 89.371-199.573 199.6 0 110.229 89.344 199.573 199.573 199.573zM717.6 647.6c79.393 0 147.978-46.376 180.133-113.493h-96.933c-21.545 20.826-50.866 33.68-83.2 33.68-66.138 0-119.76-53.622-119.76-119.76 0-66.138 53.622-119.733 119.76-119.733 32.312 0 61.579 12.771 83.12 33.573h96.987c-32.165-67.102-100.733-113.44-180.107-113.44-110.229 0-199.573 89.371-199.573 199.6 0 110.229 89.344 199.573 199.573 199.573z" />
<glyph unicode="&#xe703;" d="M0-64l512 853.327 512-853.327z" />
<glyph unicode="&#xe704;" d="M85.333 960l853.333-512-853.333-512z" />
<glyph unicode="&#xe705;" d="M938.673-64l-853.345 512 853.345 512z" />
<glyph unicode="&#xe706;" d="M0 745.972l512-809.972 512 809.972h-1024z" />
<glyph unicode="&#xe707;" d="M183.178 874.025l-64.828-269.996h-118.35v-78.043h40.595v-504.012h116.539v82.505h709.731v-82.505h116.477v504.012h40.658v78.043h-118.35l-64.828 269.996h-657.639zM217.716 821.528h588.555l52.212-217.504h-692.993l52.212 217.504zM74.315 459.971l162.509-60.014v-77.981l-162.509 60.014v77.981zM949.605 459.971v-77.981l-162.442-60.014v78.043l162.442 59.953zM354.844 255.97h314.192v-77.981h-314.192v77.981z" />
<glyph unicode="&#xe708;" d="M333.418 833.56l-32.218-129.56h-301.2v-641.56h1024v641.56h-287.16l-32.218 129.56h-371.2zM514.616 704.248c159.058 0 287.96-128.91 287.96-287.96 0-159.058-128.912-287.96-287.96-287.96-159.058 0-287.96 128.912-287.96 287.96 0 159.058 128.91 287.96 287.96 287.96zM852.296 641.56h145.17v-84.292h-145.17v84.292zM514.616 619.206c-112.074 0-202.92-90.854-202.92-202.92 0-112.074 90.854-202.92 202.92-202.92 112.074 0 202.92 90.854 202.92 202.92 0 112.074-90.854 202.92-202.92 202.92z" />
<glyph unicode="&#xe709;" d="M512 960c-282.765 0-512-229.235-512-512s229.235-512 512-512c282.765 0 512 229.235 512 512 0 282.765-229.235 512-512 512zM332.247 770.94h53.125v-101.188h-53.125v101.188zM638.622 770.94h53.063v-101.188h-53.063v101.188zM223.615 722.315h70.688v-90.499h129v90.499h177.316v-90.499h129.063v90.499h70.688v-141.682h-576.756v141.682zM223.615 543.441h576.756v-418.375h-576.756v418.375zM450.174 446.754c-40.523-0.208-78.747-20.957-79.749-67.5h46.188c0.212 18.46 11.503 30.135 32.062 31.375 19.3-0.25 27.431-14.429 28.312-34.313-0.231-27.033-31.388-31.036-54.063-30.563v-36.5c13.871-0.014 29.764 0.666 44-5.25 11.036-4.891 15.676-17.873 15.688-30.563-0.206-21.010-10.089-37.423-35.062-39.125-19.644 0.272-29.19 15.625-30.187 35.812h-46.938c0-47.95 26.584-71.937 79.749-71.937 18.853 0.129 38.090 7.172 54 19.75 14.963 12.258 24.888 31.014 25.375 52.188-0.182 30.869-20.091 49.864-50.313 57.75 16.103 5.65 32.528 14.412 40.624 31.25 6.467 14.596 3.695 31.322-1.5 47-11.046 26.246-38.829 40.335-68.187 40.624zM612.176 442.254c-15.901-15.404-36.028-27.809-60.375-37.25v-41c20.869 6.211 39.857 16.654 57 31.313v-192.682h44.75v239.621h-41.375z" />
<glyph unicode="&#xe70a;" d="M227.008 960v-160.443h84.259v160.443h-84.259zM712.733 960v-160.443h84.132v160.443h-84.132zM54.813 882.886v-224.62h914.375v224.62h-112.077v-143.489h-204.622v143.489h-281.102v-143.489h-204.496v143.489h-112.077zM54.813 599.29v-663.29h914.375v663.29h-914.375zM414.001 446.034c46.544-0.458 90.591-22.821 108.103-64.431 8.236-24.856 12.621-51.353 2.367-74.493-12.836-26.695-38.859-40.592-64.388-49.549 47.914-12.502 79.447-42.632 79.735-91.573-0.773-33.569-16.483-63.303-40.206-82.737-25.224-19.941-55.722-31.081-85.612-31.285-84.289 0-126.452 38.003-126.452 114.022h74.408c1.581-32.005 16.714-56.347 47.858-56.778 39.592 2.698 55.268 28.712 55.595 62.021-0.019 20.119-7.363 40.738-24.859 48.492-22.57 9.379-47.766 8.264-69.758 8.286v57.878c35.948-0.749 85.33 5.592 85.696 48.45-1.398 31.523-14.3 54.014-44.899 54.411-32.595-1.965-50.481-20.494-50.817-49.76h-73.224c1.59 73.79 62.206 106.716 126.452 107.046zM670.836 438.889h65.572v-379.904h-70.941v305.496c-27.179-23.239-57.261-39.787-90.347-49.634v64.98c38.6 14.968 70.507 34.64 95.716 59.061z" />
<glyph unicode="&#xe70b;" d="M878.945 877.303c-132.418-131.13-327.038-211.393-514.536-222.683h-278.437c-43.853-0.603-83.499-37.884-85.972-87.059v-125.552c0.598-43.835 36.752-84.584 85.93-87.059h111.634c-29.834-101.177 2.213-203.602 36.821-304.141 51.342-48.477 168.776-42.447 207.051 20.647-81.514 64.078-121.216 236.497-22.945 279.022 167.497-19.005 333.439-104.115 460.453-218.211 43.664 0.598 83.375 36.475 85.93 85.387v205.923c87.424 31.047 69.75 140.167 0 162.373v205.38c-0.583 43.831-36.756 83.455-85.93 85.93zM881.16 766.254v-523.48c-122.735 95.637-274.378 159.814-430.821 188.62v146.198c153.51 23.101 303.646 93.933 430.821 188.662z" />
<glyph unicode="&#xe70c;" d="M512 755.882c-135.488 0-245.322-82.274-245.322-183.781l139.368-422.096h211.907l139.368 422.109c0 101.505-109.826 183.781-245.322 183.781zM512 715.778c135.488 0 205.209-109.344 205.209-143.669l-99.258-294.764h-211.907l-99.258 294.764c0 42.351 69.721 143.669 205.209 143.669zM402.957 119.218v-73.372h218.086v73.373h-218.086zM402.957 9.372v-73.372h218.086v73.373h-218.086z" />
<glyph unicode="&#xe70d;" d="M987.82 959.989c-39.86-2.285-628.462-504.745-676.799-681.675l111.561-116.859c318.878 265.895 421.291 547.476 601.417 797.991l-36.166 0.554zM275.854 242.72c-201.538-74.117-75.195-220.767-275.854-292.514 227.237-51.16 327.933 42.452 387.416 175.293l-111.561 117.233z" />
<glyph unicode="&#xe70e;" d="M933.236 960l-349.625-349.624c-25.122 14.439-57.729 10.952-79.198-10.517-17.958-17.958-23.326-43.712-16.154-66.357-49.332 25.216-106.061 29.466-163.161 5.113-107.107-53.149-181.005-163.733-325.097-176.583 10.998-22.644 25.241-47.894 42.708-75.712 60.591-9.54 120.256 9.728 166.876 57.292-18.108-56.359-62.356-98.421-122.197-120.336 15.526-20.702 33.286-42.435 53.341-65.079 68.993 23.065 93.664 54.629 29.111-30.97 27.225-28.278 56.384-58.265 92.215-83.498 15.918 58.775 58.818 103.908 120.28 127.136-47.093-44.14-65.953-108.074-54.329-176.583 35.582-23.937 68.265-43.401 98.025-58.28 25.348 108.744 99.319 221.538 176.584 325.096 24.93 52.478 20.892 109.186-5.636 163.334 22.77-7.422 48.783-2.117 66.88 15.979 21.469 21.469 24.956 54.076 10.517 79.198l349.625 349.624-90.762 90.762z" />
<glyph unicode="&#xe70f;" d="M271.48 897.092v-142.715h-271.48v-415.891h461.84v85.352h100.319v-85.352h461.84v415.891h-271.524v142.715h-480.996zM345.256 823.316h333.444v-68.939h-333.444v68.939zM0 258.399v-259.491h1024v259.491h-461.84v-82.447h-100.319v82.447h-461.84z" />
<glyph unicode="&#xe710;" d="M435.372 63.162c0-70.23-56.932-127.162-127.161-127.162-70.23 0-127.162 56.932-127.162 127.162 0 70.23 56.932 127.161 127.162 127.161 70.23 0 127.161-56.932 127.161-127.161zM435.372 448c0-70.23-56.932-127.161-127.161-127.161-70.23 0-127.162 56.932-127.162 127.161 0 70.23 56.932 127.161 127.162 127.161 70.23 0 127.161-56.932 127.161-127.161zM435.372 832.839c0-70.23-56.932-127.161-127.161-127.161-70.23 0-127.162 56.932-127.162 127.161 0 70.23 56.932 127.161 127.162 127.161 70.23 0 127.161-56.932 127.161-127.161zM842.951 63.162c0-70.23-56.932-127.162-127.161-127.162-70.23 0-127.161 56.932-127.161 127.162 0 70.23 56.932 127.161 127.161 127.161 70.23 0 127.161-56.932 127.161-127.161zM842.951 448c0-70.23-56.932-127.161-127.161-127.161-70.23 0-127.161 56.932-127.161 127.161 0 70.23 56.932 127.161 127.161 127.161 70.23 0 127.161-56.932 127.161-127.161zM842.951 832.839c0-70.23-56.932-127.161-127.161-127.161-70.23 0-127.161 56.932-127.161 127.161 0 70.23 56.932 127.161 127.161 127.161 70.23 0 127.161-56.932 127.161-127.161z" />
<glyph unicode="&#xe711;" d="M199.991 960v-1024l312.009 312.009 312.009-312.009v1024h-624.018zM263.991 896h496.018v-800l-248.009 248.009-248.009-248.009v800z" />
<glyph unicode="&#xe712;" d="M200 960v-1024l312 312 312-312v1024h-624z" />
<glyph unicode="&#xe713;" d="M388.072 950.616c-65.032 34.23-193.2-31.91-230.018-90.138-16.402-26.055-15.243-44.832-15.243-55.486v-569.919l480.636-299.074 90.383 49.351v555.032l-493.486 283.335c26.481 33.328 86.039 73.97 130.696 57.647l439.556-235.091v-618.308l90.61 49.439v618.295z" />
<glyph unicode="&#xe714;" d="M0 960v-83.017h128.505v-858.008h-128.505v-82.975h558.421c160.118 0 277.647 23.979 352.555 71.99 75.353 48.011 113.023 122.784 113.024 224.291 0 74.987-26.905 135.122-80.731 180.39-53.826 45.268-131.199 72.705-232.124 82.309 83.431 9.144 146.222 31.54 188.387 67.204 42.613 35.664 63.918 83.914 63.919 144.728 0 84.592-30.726 147.895-92.175 189.961-61.453 42.066-153.406 63.125-275.86 63.126h-595.416zM387.553 876.983h88.139c79.39 0 137.022-13.471 172.907-40.447 36.33-26.976 54.514-70.182 54.515-129.623 0-58.985-18.617-102.898-55.846-131.704-37.232-28.349-94.424-42.529-171.575-42.528h-88.139v344.302zM387.553 450.372h96.212c84.775 0 148.005-18.059 189.719-54.179 41.714-36.124 62.587-90.754 62.588-163.912 0-72.705-20.656-126.456-61.922-161.207-41.266-34.751-104.711-52.099-190.385-52.099h-96.212v431.397z" />
<glyph unicode="&#xe715;" d="M0 960v-1024h1024v1024h-1024zM547.62 772.444c98.272-7.872 155.398-70.8 162.189-151.256 5.278-41.403 3.837-72.141-2.187-94.75 56.056-1.837 121.572-26.743 125.75-117.187v-89c-5.813-77.749-33.721-173.814-176.876-194.187l-239.568-0.875c-145.198-2.637-225.173 60.708-225.919 196.198l1.875 300.316c6.25 87.356 77.032 138.566 159.619 149.938l195.119 0.813zM384.433 650.944c-83.651-13.58-87.786-108.306 0-120h158.807c83.651 13.58 87.786 108.306 0 120h-158.807zM348.433 388.938c-86.117-13.255-87.457-120.813 3-131.938l291.687-1c85.385 13.142 85.144 120.559-3.063 131.938l-291.62 1z" />
<glyph unicode="&#xe716;" d="M328.8 960c-56.161 0-101.688-45.527-101.688-101.688s45.527-101.688 101.688-101.688c56.161 0 101.688 45.527 101.688 101.688 0 56.161-45.527 101.688-101.688 101.688zM244.297 704.244l-109.276-147.539c-4.371-5.827-6.55-11.992-6.55-18.548l-13.1-121.306c-5.912-52.923 69.771-65.151 78.667-7.653l10.928 112.552 28.406 38.231 1.103-158.435-53.535-192.289-136.58-173.741c-39.711-61.811 42.365-107.838 84.115-59.015l142.060 182.495c3.815 5.136 6.177 12.006 8.723 18.548l42.641 150.815 96.144-108.174 52.433-244.796c14.473-65.347 114.988-42.843 102.726 19.683l-55.699 254.596c-1.327 6.557-2.767 13.83-8.723 18.58l-118 134.408v166.089l45.883-57.913c5.1-6.556 12.76-11.289 22.958-14.203l108.174-20.754 400.993-527.771c7.161-9.957 27.423-0.036 19.683 13.1l-373.694 513.591c43.943 14.731 20.224 64.785-8.755 69.943l-115.826 22.926-119.102 149.713c-37.723 37.463-100.81 28.256-126.754-13.1z" />
<glyph unicode="&#xe717;" d="M444.868 960v-63.249c-139.605-30.627-244.228-154.731-244.867-303.378v-272.751l-201.564-174.306v-47.437h1027.127v47.437l-201.564 174.306v272.751c-0.642 148.646-105.271 272.751-244.881 303.378v63.249h-134.252zM511.992 85.687c-41.342 0-74.874-33.47-74.874-74.813 0-41.342 33.532-74.874 74.874-74.874 41.342 0 74.874 33.532 74.874 74.874 0 41.342-33.532 74.813-74.874 74.813z" />
<glyph unicode="&#xe718;" d="M0 960v-1024h1024v1024h-1024zM159.126 536.871h260.501c26.648-0.186 54.661-10.437 76.125-30.187 19.758-19.508 31.363-47.484 31.937-77.438-0.099-23.002-4.48-49.508-19.75-70.625-10.671-14.365-27.379-25.227-45.812-31.438v-2.438c19.412-4.855 38.548-15.226 52.188-32.375 16.223-20.979 21.772-49.277 22.25-77.125-0.194-29.544-10.422-61.183-33.313-84.624-20.347-19.99-49.561-31.432-80.313-32.062h-263.816v438.309zM615.625 535.996h193.748v-71.874h-193.748v71.874zM708.375 442.622c27.033 0 51.015-3.511 71.937-10.563 21.107-6.844 38.871-17.545 53.312-32.062 14.441-14.311 25.343-32.559 32.749-54.75 9.769-29.049 11.621-66.238 11.437-100.188h-225.253c0-23.228 4.617-41.266 13.875-54.124 9.443-12.651 24.897-18.938 46.374-18.938 20.405 0.096 44.308 6.639 52.188 29.563 2.036 6.014 3.062 12.406 3.062 19.25h109.75c-0.228-34.876-11.457-69.515-40.875-95.188-32.498-26.434-77.921-33.976-121.626-34.812-27.033 0-51.465 3.406-73.313 10.25-21.662 7.052-40.068 17.857-55.251 32.375-15.183 14.517-26.853 32.765-35 54.75-8.147 22.191-12.25 48.408-12.25 78.687 0 29.45 3.976 55.14 11.938 77.125 7.961 21.983 19.248 40.232 33.875 54.75 14.813 14.725 32.575 25.741 53.312 33 20.922 7.259 44.198 10.875 69.751 10.875zM284.687 440.747v-74.626h86.376c7.787 0.060 15.195 3.626 20.813 9.937 5.455 6.644 8.131 15.395 8.313 24.563v6.25c-0.057 8.272-3.236 16.817-8.625 23.937-4.898 5.785-12.243 9.52-20.5 9.938h-86.376zM712.809 361.747c-19.071 0-33.307-5.088-42.75-15.249-9.258-10.163-14.901-23.954-16.938-41.375h110.5c0 17.629-4.425 31.42-13.313 41.375-8.887 10.162-21.392 15.249-37.501 15.249zM284.687 275.559v-74.937h95.5c7.698 0.060 15.068 3.593 20.813 9.625 5.43 6.613 8.238 15.407 8.375 24.563v6.563c-0.049 8.347-2.755 17.054-8.375 24.25-4.932 5.818-12.569 9.465-20.813 9.937h-95.5z" />
<glyph unicode="&#xe719;" d="M0 874.778v-853.555h85.555v853.555h-85.555zM158.835 874.778v-853.555h20.557v853.555h-20.557zM208.229 874.778v-853.555h65.040v853.555h-65.040zM339.35 874.778v-853.555h27.756v853.555h-27.756zM440.427 874.778v-853.555h20.515v853.555h-20.515zM469.763 874.778v-853.555h85.014v853.555h-85.014zM605.795 874.778v-853.555h42.819v853.555h-42.819zM732.962 874.778v-853.555h9.488v853.555h-9.488zM807.74 874.778v-853.555h28.588v853.555h-28.588zM909.607 874.778v-853.555h20.557v853.555h-20.557zM938.986 874.778v-853.555h85.014v853.555h-85.014z" />
<glyph unicode="&#xe71a;" d="M874.037 810.037c-199.95 199.95-524.111 199.95-724.074 0-199.95-199.95-199.95-524.111 0-724.074 199.95-199.95 524.111-199.95 724.074 0 199.95 199.95 199.95 524.111 0 724.074zM734.527 761.022l-535.536-535.522c-106.886 149.963-93.051 359.487 41.492 494.030 134.543 134.543 344.081 148.378 494.030 41.492zM825.035 670.527c106.878-149.963 93.040-359.501-41.519-494.030-134.53-134.556-344.068-148.405-494.030-41.505l535.536 535.536z" />
<glyph unicode="&#xe71b;" d="M535.276 960v-465.461l465.447 465.461v-1024l-465.461 465.461v-465.461l-511.987 512z" />
<glyph unicode="&#xe71c;" d="M605.453 959.994c-0.467-0.010-0.934-0.033-1.397-0.053-27.618-1.232-55.222-27.084-60.566-78.222l-6.718-595.619c-4.428-106.86-121.242-142.531-175.624-82.873-64.032-82.963-174.686-16.907-182.422 77.928-12.055 71.594-24.56 143.216-35.791 214.883-2.17 22.885 2.058 46.494 13.435 67.929l-55.971 192.614c-19.644 58.164-109.732 62.182-99.608-21.146l120.863-676.941c10.388-55.641 41.441-118.287 110.786-122.492h370.434c30.589 0 53.9 5.954 69.943 17.831 137.762 103.833 113.178 318.294 302.076 400.038 44.333 26.723 71.074 110.080 25.285 143.825-75.635 67.94-270.81-53.395-304.763-175.718l-29.96 557.524c-1.992 52.966-29.883 80.057-58.604 80.494-0.463 0.007-0.93 0.010-1.397 0zM418.543 628.634c-2.257-0.023-4.486-0.153-6.718-0.374-29.591-2.939-56.068-23.509-56.293-65.416l23.512-263.885c1.993-44.975 36.748-76.85 68.654-76.644 27.87 0.179 53.575 24.837 53.338 86.669l-8.975 259.42c-4.011 38.692-39.656 60.571-73.517 60.23zM249.233 570.222c-4.010-0.054-7.988-0.503-11.904-1.337-28.405-6.043-52.545-32.647-46.298-80.654l38.048-227.126c10.234-37.517 35.6-51.439 58.9-46.623 26.34 5.445 50.042 34.834 46.298 81.136l-22.383 219.347c-5.882 36.971-34.59 55.633-62.662 55.258z" />
<glyph unicode="&#xe71d;" d="M511.993 960l-399.999-600.005h215.506v-423.995h369v423.995h215.506l-400.013 600.005z" />
<glyph unicode="&#xe71e;" d="M1024 448l-600 400v-215.5h-424v-369h424v-215.5l600 400z" />
<glyph unicode="&#xe71f;" d="M0 448l600-400v215.5h424v369h-424v215.5l-600-400z" />
<glyph unicode="&#xe720;" d="M512-64l-400 600h215.5v424h369v-424h215.5l-400-600z" />
<glyph unicode="&#xe721;" d="M496 875.348v-151.899h528v151.899h-528zM216 641.082v-151.899h808v151.899h-808zM400 406.817v-151.899h624v151.899h-624zM0 172.551v-151.899h1024v151.899h-1024z" />
<glyph unicode="&#xe722;" d="M528 875.348v-151.899h-528v151.899h528zM808 641.082v-151.899h-808v151.899h808zM624 406.817v-151.899h-624v151.899h624zM1024 172.551v-151.899h-1024v151.899h1024z" />
<glyph unicode="&#xe723;" d="M0 875.348v-151.899h1024v151.899h-1024zM0 641.082v-151.899h1024v151.899h-1024zM0 406.817v-151.899h1024v151.899h-1024zM0 172.551v-151.898h1024v151.898h-1024z" />
<glyph unicode="&#xe724;" d="M248 875.348v-151.899h528v151.899h-528zM108 641.082v-151.899h808v151.899h-808zM200 406.817v-151.899h624v151.899h-624zM0 172.551v-151.899h1024v151.899h-1024z" />
<glyph unicode="&#xe725;" d="M516.348 550.399c-115.664 1.79-204.017 94.769-204.8 204.8 1.911 114.631 95.605 203.996 204.8 204.8 115.765-4.378 203.977-92.988 204.8-204.8-2.276-114.721-95.493-204.023-204.8-204.8zM681.931 507.914c145.572-1.699 219.387-129.392 220.059-257.082v-314.832h-142.708v276.696c-3.475 19.128-16.431 25.616-28.3 23.74-11.112-1.755-21.272-10.839-21.81-23.74v-276.696h-396.52v276.696c-3.035 18.205-14.616 25.206-25.882 24.499-12.065-0.758-23.768-10.355-24.228-24.499v-276.696h-140.529v314.832c-0.836 136.084 85.25 256.074 221.13 257.082z" />
<glyph unicode="&#xe726;" d="M89.013 960v-597.2h-89.013v-216.8h313.413v216.8h-89.013v597.2h-135.387zM444.373 960v-385.493h-89.093v-216.8h313.44v216.8h-89.040v385.493h-135.307zM799.6 960v-172.053h-89.013v-216.8h313.413v216.8h-89.013v172.053h-135.387zM756 744.933h222.587v-43.040h-222.587v43.040zM799.6 534.933v-598.933h135.387v598.933h-135.387zM400.72 531.493h222.56v-43.040h-222.56v43.040zM444.373 323.253v-387.253h135.307v387.253h-135.307zM45.413 319.813h222.587v-43.040h-222.587v43.040zM89.040 109.813v-173.813h135.387v173.813h-135.387z" />
<glyph unicode="&#xe727;" d="M512 960c-282.76 0-512-229.24-512-512s229.24-512 512-512c282.76 0 512 229.24 512 512 0 282.76-229.24 512-512 512zM512 810.688v-725.44c-200.32 0-362.76 162.42-362.76 362.76 0 200.32 162.42 362.68 362.76 362.68z" />
<glyph unicode="&#xe728;" d="M512 960c-282.765 0-512-229.235-512-512s229.235-512 512-512c282.765 0 512 229.235 512 512 0 282.765-229.235 512-512 512zM225.013 734.987h573.973v-101.6h-62.48v-55.893h62.48v-101.547h-62.48v-55.893h62.48v-101.547h-62.48v-55.893h62.48v-101.627h-573.973zM480.747 634.747c-45.818 0-82.933-37.169-82.933-82.987 0-32.47 18.638-60.562 45.813-74.187l-106.187-63.573h-1.307v-89.68h289.227v89.68h-1.307l-106.187 63.573c27.175 13.625 45.813 41.717 45.813 74.187 0 45.818-37.116 82.987-82.933 82.987z" />
<glyph unicode="&#xe729;" d="M0.007 959.987v-1023.987h1023.993v181.278h-111.5v99.696h111.5v181.211h-111.5v99.696h111.5v181.131h-111.5v99.696h111.5l-0.014 181.291h-1023.986zM456.254 781.163c81.736 0 147.945-66.287 147.945-148.025 0-57.925-33.253-108.053-81.732-132.36l189.451-113.431h2.301v-159.976h-516.007v159.976h2.375l189.371 113.431c-48.479 24.306-81.732 74.435-81.732 132.36 0 81.736 66.287 148.025 148.025 148.025z" />
<glyph unicode="&#xe72a;" d="M417.995 934.951v-378.541l-359.941 116.96-58.054-178.68 359.961-116.98-222.5-306.241 152.080-110.42 222.5 306.181 222.44-306.181 152.018 110.42-222.52 306.161 360.021 116.98-58.054 178.69-360.021-116.966v378.541h-187.928z" />
</font></defs></svg>

After

Width:  |  Height:  |  Size: 174 KiB

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,395 @@
@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.0.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.0.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff?v=4.0.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.0.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.0.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
.fa-lg{font-size:1.3333333333333333em;line-height:.75em;vertical-align:-15%}
.fa-2x{font-size:2em}
.fa-3x{font-size:3em}
.fa-4x{font-size:4em}
.fa-5x{font-size:5em}
.fa-fw{width:1.2857142857142858em;text-align:center}
.fa-ul{padding-left:0;margin-left:2.142857142857143em;list-style-type:none}.fa-ul>li{position:relative}
.fa-li{position:absolute;left:-2.142857142857143em;width:2.142857142857143em;top:.14285714285714285em;text-align:center}.fa-li.fa-lg{left:-1.8571428571428572em}
.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}
.pull-right{float:right}
.pull-left{float:left}
.fa.pull-left{margin-right:.3em}
.fa.pull-right{margin-left:.3em}
.fa-spin{-webkit-animation:spin 2s infinite linear;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;animation:spin 2s infinite linear}
@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)} 100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)} 100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)} 100%{-o-transform:rotate(359deg)}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg)} 100%{-ms-transform:rotate(359deg)}}@keyframes spin{0%{transform:rotate(0deg)} 100%{transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}
.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}
.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}
.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-transform:scale(-1, 1);transform:scale(-1, 1)}
.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1)}
.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}
.fa-stack-1x,.fa-stack-2x{position:absolute;width:100%;text-align:center}
.fa-stack-1x{line-height:inherit}
.fa-stack-2x{font-size:2em}
.fa-inverse{color:#fff}
.fa-glass:before{content:"\f000"}
.fa-music:before{content:"\f001"}
.fa-search:before{content:"\f002"}
.fa-envelope-o:before{content:"\f003"}
.fa-heart:before{content:"\f004"}
.fa-star:before{content:"\f005"}
.fa-star-o:before{content:"\f006"}
.fa-user:before{content:"\f007"}
.fa-film:before{content:"\f008"}
.fa-th-large:before{content:"\f009"}
.fa-th:before{content:"\f00a"}
.fa-th-list:before{content:"\f00b"}
.fa-check:before{content:"\f00c"}
.fa-times:before{content:"\f00d"}
.fa-search-plus:before{content:"\f00e"}
.fa-search-minus:before{content:"\f010"}
.fa-power-off:before{content:"\f011"}
.fa-signal:before{content:"\f012"}
.fa-gear:before,.fa-cog:before{content:"\f013"}
.fa-trash-o:before{content:"\f014"}
.fa-home:before{content:"\f015"}
.fa-file-o:before{content:"\f016"}
.fa-clock-o:before{content:"\f017"}
.fa-road:before{content:"\f018"}
.fa-download:before{content:"\f019"}
.fa-arrow-circle-o-down:before{content:"\f01a"}
.fa-arrow-circle-o-up:before{content:"\f01b"}
.fa-inbox:before{content:"\f01c"}
.fa-play-circle-o:before{content:"\f01d"}
.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}
.fa-refresh:before{content:"\f021"}
.fa-list-alt:before{content:"\f022"}
.fa-lock:before{content:"\f023"}
.fa-flag:before{content:"\f024"}
.fa-headphones:before{content:"\f025"}
.fa-volume-off:before{content:"\f026"}
.fa-volume-down:before{content:"\f027"}
.fa-volume-up:before{content:"\f028"}
.fa-qrcode:before{content:"\f029"}
.fa-barcode:before{content:"\f02a"}
.fa-tag:before{content:"\f02b"}
.fa-tags:before{content:"\f02c"}
.fa-book:before{content:"\f02d"}
.fa-bookmark:before{content:"\f02e"}
.fa-print:before{content:"\f02f"}
.fa-camera:before{content:"\f030"}
.fa-font:before{content:"\f031"}
.fa-bold:before{content:"\f032"}
.fa-italic:before{content:"\f033"}
.fa-text-height:before{content:"\f034"}
.fa-text-width:before{content:"\f035"}
.fa-align-left:before{content:"\f036"}
.fa-align-center:before{content:"\f037"}
.fa-align-right:before{content:"\f038"}
.fa-align-justify:before{content:"\f039"}
.fa-list:before{content:"\f03a"}
.fa-dedent:before,.fa-outdent:before{content:"\f03b"}
.fa-indent:before{content:"\f03c"}
.fa-video-camera:before{content:"\f03d"}
.fa-picture-o:before{content:"\f03e"}
.fa-pencil:before{content:"\f040"}
.fa-map-marker:before{content:"\f041"}
.fa-adjust:before{content:"\f042"}
.fa-tint:before{content:"\f043"}
.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}
.fa-share-square-o:before{content:"\f045"}
.fa-check-square-o:before{content:"\f046"}
.fa-move:before{content:"\f047"}
.fa-step-backward:before{content:"\f048"}
.fa-fast-backward:before{content:"\f049"}
.fa-backward:before{content:"\f04a"}
.fa-play:before{content:"\f04b"}
.fa-pause:before{content:"\f04c"}
.fa-stop:before{content:"\f04d"}
.fa-forward:before{content:"\f04e"}
.fa-fast-forward:before{content:"\f050"}
.fa-step-forward:before{content:"\f051"}
.fa-eject:before{content:"\f052"}
.fa-chevron-left:before{content:"\f053"}
.fa-chevron-right:before{content:"\f054"}
.fa-plus-circle:before{content:"\f055"}
.fa-minus-circle:before{content:"\f056"}
.fa-times-circle:before{content:"\f057"}
.fa-check-circle:before{content:"\f058"}
.fa-question-circle:before{content:"\f059"}
.fa-info-circle:before{content:"\f05a"}
.fa-crosshairs:before{content:"\f05b"}
.fa-times-circle-o:before{content:"\f05c"}
.fa-check-circle-o:before{content:"\f05d"}
.fa-ban:before{content:"\f05e"}
.fa-arrow-left:before{content:"\f060"}
.fa-arrow-right:before{content:"\f061"}
.fa-arrow-up:before{content:"\f062"}
.fa-arrow-down:before{content:"\f063"}
.fa-mail-forward:before,.fa-share:before{content:"\f064"}
.fa-resize-full:before{content:"\f065"}
.fa-resize-small:before{content:"\f066"}
.fa-plus:before{content:"\f067"}
.fa-minus:before{content:"\f068"}
.fa-asterisk:before{content:"\f069"}
.fa-exclamation-circle:before{content:"\f06a"}
.fa-gift:before{content:"\f06b"}
.fa-leaf:before{content:"\f06c"}
.fa-fire:before{content:"\f06d"}
.fa-eye:before{content:"\f06e"}
.fa-eye-slash:before{content:"\f070"}
.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}
.fa-plane:before{content:"\f072"}
.fa-calendar:before{content:"\f073"}
.fa-random:before{content:"\f074"}
.fa-comment:before{content:"\f075"}
.fa-magnet:before{content:"\f076"}
.fa-chevron-up:before{content:"\f077"}
.fa-chevron-down:before{content:"\f078"}
.fa-retweet:before{content:"\f079"}
.fa-shopping-cart:before{content:"\f07a"}
.fa-folder:before{content:"\f07b"}
.fa-folder-open:before{content:"\f07c"}
.fa-resize-vertical:before{content:"\f07d"}
.fa-resize-horizontal:before{content:"\f07e"}
.fa-bar-chart-o:before{content:"\f080"}
.fa-twitter-square:before{content:"\f081"}
.fa-facebook-square:before{content:"\f082"}
.fa-camera-retro:before{content:"\f083"}
.fa-key:before{content:"\f084"}
.fa-gears:before,.fa-cogs:before{content:"\f085"}
.fa-comments:before{content:"\f086"}
.fa-thumbs-o-up:before{content:"\f087"}
.fa-thumbs-o-down:before{content:"\f088"}
.fa-star-half:before{content:"\f089"}
.fa-heart-o:before{content:"\f08a"}
.fa-sign-out:before{content:"\f08b"}
.fa-linkedin-square:before{content:"\f08c"}
.fa-thumb-tack:before{content:"\f08d"}
.fa-external-link:before{content:"\f08e"}
.fa-sign-in:before{content:"\f090"}
.fa-trophy:before{content:"\f091"}
.fa-github-square:before{content:"\f092"}
.fa-upload:before{content:"\f093"}
.fa-lemon-o:before{content:"\f094"}
.fa-phone:before{content:"\f095"}
.fa-square-o:before{content:"\f096"}
.fa-bookmark-o:before{content:"\f097"}
.fa-phone-square:before{content:"\f098"}
.fa-twitter:before{content:"\f099"}
.fa-facebook:before{content:"\f09a"}
.fa-github:before{content:"\f09b"}
.fa-unlock:before{content:"\f09c"}
.fa-credit-card:before{content:"\f09d"}
.fa-rss:before{content:"\f09e"}
.fa-hdd:before{content:"\f0a0"}
.fa-bullhorn:before{content:"\f0a1"}
.fa-bell:before{content:"\f0f3"}
.fa-certificate:before{content:"\f0a3"}
.fa-hand-o-right:before{content:"\f0a4"}
.fa-hand-o-left:before{content:"\f0a5"}
.fa-hand-o-up:before{content:"\f0a6"}
.fa-hand-o-down:before{content:"\f0a7"}
.fa-arrow-circle-left:before{content:"\f0a8"}
.fa-arrow-circle-right:before{content:"\f0a9"}
.fa-arrow-circle-up:before{content:"\f0aa"}
.fa-arrow-circle-down:before{content:"\f0ab"}
.fa-globe:before{content:"\f0ac"}
.fa-wrench:before{content:"\f0ad"}
.fa-tasks:before{content:"\f0ae"}
.fa-filter:before{content:"\f0b0"}
.fa-briefcase:before{content:"\f0b1"}
.fa-fullscreen:before{content:"\f0b2"}
.fa-group:before{content:"\f0c0"}
.fa-chain:before,.fa-link:before{content:"\f0c1"}
.fa-cloud:before{content:"\f0c2"}
.fa-flask:before{content:"\f0c3"}
.fa-cut:before,.fa-scissors:before{content:"\f0c4"}
.fa-copy:before,.fa-files-o:before{content:"\f0c5"}
.fa-paperclip:before{content:"\f0c6"}
.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}
.fa-square:before{content:"\f0c8"}
.fa-reorder:before{content:"\f0c9"}
.fa-list-ul:before{content:"\f0ca"}
.fa-list-ol:before{content:"\f0cb"}
.fa-strikethrough:before{content:"\f0cc"}
.fa-underline:before{content:"\f0cd"}
.fa-table:before{content:"\f0ce"}
.fa-magic:before{content:"\f0d0"}
.fa-truck:before{content:"\f0d1"}
.fa-pinterest:before{content:"\f0d2"}
.fa-pinterest-square:before{content:"\f0d3"}
.fa-google-plus-square:before{content:"\f0d4"}
.fa-google-plus:before{content:"\f0d5"}
.fa-money:before{content:"\f0d6"}
.fa-caret-down:before{content:"\f0d7"}
.fa-caret-up:before{content:"\f0d8"}
.fa-caret-left:before{content:"\f0d9"}
.fa-caret-right:before{content:"\f0da"}
.fa-columns:before{content:"\f0db"}
.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}
.fa-sort-down:before,.fa-sort-asc:before{content:"\f0dd"}
.fa-sort-up:before,.fa-sort-desc:before{content:"\f0de"}
.fa-envelope:before{content:"\f0e0"}
.fa-linkedin:before{content:"\f0e1"}
.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}
.fa-legal:before,.fa-gavel:before{content:"\f0e3"}
.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}
.fa-comment-o:before{content:"\f0e5"}
.fa-comments-o:before{content:"\f0e6"}
.fa-flash:before,.fa-bolt:before{content:"\f0e7"}
.fa-sitemap:before{content:"\f0e8"}
.fa-umbrella:before{content:"\f0e9"}
.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}
.fa-lightbulb-o:before{content:"\f0eb"}
.fa-exchange:before{content:"\f0ec"}
.fa-cloud-download:before{content:"\f0ed"}
.fa-cloud-upload:before{content:"\f0ee"}
.fa-user-md:before{content:"\f0f0"}
.fa-stethoscope:before{content:"\f0f1"}
.fa-suitcase:before{content:"\f0f2"}
.fa-bell-o:before{content:"\f0a2"}
.fa-coffee:before{content:"\f0f4"}
.fa-cutlery:before{content:"\f0f5"}
.fa-file-text-o:before{content:"\f0f6"}
.fa-building:before{content:"\f0f7"}
.fa-hospital:before{content:"\f0f8"}
.fa-ambulance:before{content:"\f0f9"}
.fa-medkit:before{content:"\f0fa"}
.fa-fighter-jet:before{content:"\f0fb"}
.fa-beer:before{content:"\f0fc"}
.fa-h-square:before{content:"\f0fd"}
.fa-plus-square:before{content:"\f0fe"}
.fa-angle-double-left:before{content:"\f100"}
.fa-angle-double-right:before{content:"\f101"}
.fa-angle-double-up:before{content:"\f102"}
.fa-angle-double-down:before{content:"\f103"}
.fa-angle-left:before{content:"\f104"}
.fa-angle-right:before{content:"\f105"}
.fa-angle-up:before{content:"\f106"}
.fa-angle-down:before{content:"\f107"}
.fa-desktop:before{content:"\f108"}
.fa-laptop:before{content:"\f109"}
.fa-tablet:before{content:"\f10a"}
.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}
.fa-circle-o:before{content:"\f10c"}
.fa-quote-left:before{content:"\f10d"}
.fa-quote-right:before{content:"\f10e"}
.fa-spinner:before{content:"\f110"}
.fa-circle:before{content:"\f111"}
.fa-mail-reply:before,.fa-reply:before{content:"\f112"}
.fa-github-alt:before{content:"\f113"}
.fa-folder-o:before{content:"\f114"}
.fa-folder-open-o:before{content:"\f115"}
.fa-expand-o:before{content:"\f116"}
.fa-collapse-o:before{content:"\f117"}
.fa-smile-o:before{content:"\f118"}
.fa-frown-o:before{content:"\f119"}
.fa-meh-o:before{content:"\f11a"}
.fa-gamepad:before{content:"\f11b"}
.fa-keyboard-o:before{content:"\f11c"}
.fa-flag-o:before{content:"\f11d"}
.fa-flag-checkered:before{content:"\f11e"}
.fa-terminal:before{content:"\f120"}
.fa-code:before{content:"\f121"}
.fa-reply-all:before{content:"\f122"}
.fa-mail-reply-all:before{content:"\f122"}
.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}
.fa-location-arrow:before{content:"\f124"}
.fa-crop:before{content:"\f125"}
.fa-code-fork:before{content:"\f126"}
.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}
.fa-question:before{content:"\f128"}
.fa-info:before{content:"\f129"}
.fa-exclamation:before{content:"\f12a"}
.fa-superscript:before{content:"\f12b"}
.fa-subscript:before{content:"\f12c"}
.fa-eraser:before{content:"\f12d"}
.fa-puzzle-piece:before{content:"\f12e"}
.fa-microphone:before{content:"\f130"}
.fa-microphone-slash:before{content:"\f131"}
.fa-shield:before{content:"\f132"}
.fa-calendar-o:before{content:"\f133"}
.fa-fire-extinguisher:before{content:"\f134"}
.fa-rocket:before{content:"\f135"}
.fa-maxcdn:before{content:"\f136"}
.fa-chevron-circle-left:before{content:"\f137"}
.fa-chevron-circle-right:before{content:"\f138"}
.fa-chevron-circle-up:before{content:"\f139"}
.fa-chevron-circle-down:before{content:"\f13a"}
.fa-html5:before{content:"\f13b"}
.fa-css3:before{content:"\f13c"}
.fa-anchor:before{content:"\f13d"}
.fa-unlock-o:before{content:"\f13e"}
.fa-bullseye:before{content:"\f140"}
.fa-ellipsis-horizontal:before{content:"\f141"}
.fa-ellipsis-vertical:before{content:"\f142"}
.fa-rss-square:before{content:"\f143"}
.fa-play-circle:before{content:"\f144"}
.fa-ticket:before{content:"\f145"}
.fa-minus-square:before{content:"\f146"}
.fa-minus-square-o:before{content:"\f147"}
.fa-level-up:before{content:"\f148"}
.fa-level-down:before{content:"\f149"}
.fa-check-square:before{content:"\f14a"}
.fa-pencil-square:before{content:"\f14b"}
.fa-external-link-square:before{content:"\f14c"}
.fa-share-square:before{content:"\f14d"}
.fa-compass:before{content:"\f14e"}
.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}
.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}
.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}
.fa-euro:before,.fa-eur:before{content:"\f153"}
.fa-gbp:before{content:"\f154"}
.fa-dollar:before,.fa-usd:before{content:"\f155"}
.fa-rupee:before,.fa-inr:before{content:"\f156"}
.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}
.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}
.fa-won:before,.fa-krw:before{content:"\f159"}
.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}
.fa-file:before{content:"\f15b"}
.fa-file-text:before{content:"\f15c"}
.fa-sort-alpha-asc:before{content:"\f15d"}
.fa-sort-alpha-desc:before{content:"\f15e"}
.fa-sort-amount-asc:before{content:"\f160"}
.fa-sort-amount-desc:before{content:"\f161"}
.fa-sort-numeric-asc:before{content:"\f162"}
.fa-sort-numeric-desc:before{content:"\f163"}
.fa-thumbs-up:before{content:"\f164"}
.fa-thumbs-down:before{content:"\f165"}
.fa-youtube-square:before{content:"\f166"}
.fa-youtube:before{content:"\f167"}
.fa-xing:before{content:"\f168"}
.fa-xing-square:before{content:"\f169"}
.fa-youtube-play:before{content:"\f16a"}
.fa-dropbox:before{content:"\f16b"}
.fa-stack-overflow:before{content:"\f16c"}
.fa-instagram:before{content:"\f16d"}
.fa-flickr:before{content:"\f16e"}
.fa-adn:before{content:"\f170"}
.fa-bitbucket:before{content:"\f171"}
.fa-bitbucket-square:before{content:"\f172"}
.fa-tumblr:before{content:"\f173"}
.fa-tumblr-square:before{content:"\f174"}
.fa-long-arrow-down:before{content:"\f175"}
.fa-long-arrow-up:before{content:"\f176"}
.fa-long-arrow-left:before{content:"\f177"}
.fa-long-arrow-right:before{content:"\f178"}
.fa-apple:before{content:"\f179"}
.fa-windows:before{content:"\f17a"}
.fa-android:before{content:"\f17b"}
.fa-linux:before{content:"\f17c"}
.fa-dribbble:before{content:"\f17d"}
.fa-skype:before{content:"\f17e"}
.fa-foursquare:before{content:"\f180"}
.fa-trello:before{content:"\f181"}
.fa-female:before{content:"\f182"}
.fa-male:before{content:"\f183"}
.fa-gittip:before{content:"\f184"}
.fa-sun-o:before{content:"\f185"}
.fa-moon-o:before{content:"\f186"}
.fa-archive:before{content:"\f187"}
.fa-bug:before{content:"\f188"}
.fa-vk:before{content:"\f189"}
.fa-weibo:before{content:"\f18a"}
.fa-renren:before{content:"\f18b"}
.fa-pagelines:before{content:"\f18c"}
.fa-stack-exchange:before{content:"\f18d"}
.fa-arrow-circle-o-right:before{content:"\f18e"}
.fa-arrow-circle-o-left:before{content:"\f190"}
.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}
.fa-dot-circle-o:before{content:"\f192"}
.fa-wheelchair:before{content:"\f193"}
.fa-vimeo-square:before{content:"\f194"}
.fa-turkish-lira:before,.fa-try:before{content:"\f195"}

View File

@ -0,0 +1,414 @@
<?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></metadata>
<defs>
<font id="fontawesomeregular" horiz-adv-x="1536" >
<font-face units-per-em="1792" ascent="1536" descent="-256" />
<missing-glyph horiz-adv-x="448" />
<glyph unicode=" " horiz-adv-x="448" />
<glyph unicode="&#x09;" horiz-adv-x="448" />
<glyph unicode="&#xa0;" horiz-adv-x="448" />
<glyph unicode="&#xa8;" horiz-adv-x="1792" />
<glyph unicode="&#xa9;" horiz-adv-x="1792" />
<glyph unicode="&#xae;" horiz-adv-x="1792" />
<glyph unicode="&#xb4;" horiz-adv-x="1792" />
<glyph unicode="&#xc6;" horiz-adv-x="1792" />
<glyph unicode="&#x2000;" horiz-adv-x="768" />
<glyph unicode="&#x2001;" />
<glyph unicode="&#x2002;" horiz-adv-x="768" />
<glyph unicode="&#x2003;" />
<glyph unicode="&#x2004;" horiz-adv-x="512" />
<glyph unicode="&#x2005;" horiz-adv-x="384" />
<glyph unicode="&#x2006;" horiz-adv-x="256" />
<glyph unicode="&#x2007;" horiz-adv-x="256" />
<glyph unicode="&#x2008;" horiz-adv-x="192" />
<glyph unicode="&#x2009;" horiz-adv-x="307" />
<glyph unicode="&#x200a;" horiz-adv-x="85" />
<glyph unicode="&#x202f;" horiz-adv-x="307" />
<glyph unicode="&#x205f;" horiz-adv-x="384" />
<glyph unicode="&#x2122;" horiz-adv-x="1792" />
<glyph unicode="&#x221e;" horiz-adv-x="1792" />
<glyph unicode="&#x2260;" horiz-adv-x="1792" />
<glyph unicode="&#xe000;" horiz-adv-x="500" d="M0 0z" />
<glyph unicode="&#xf000;" horiz-adv-x="1792" d="M1699 1350q0 -35 -43 -78l-632 -632v-768h320q26 0 45 -19t19 -45t-19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45t45 19h320v768l-632 632q-43 43 -43 78q0 23 18 36.5t38 17.5t43 4h1408q23 0 43 -4t38 -17.5t18 -36.5z" />
<glyph unicode="&#xf001;" d="M1536 1312v-1120q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v537l-768 -237v-709q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89 t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v967q0 31 19 56.5t49 35.5l832 256q12 4 28 4q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf002;" horiz-adv-x="1664" d="M1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -52 -38 -90t-90 -38q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5 t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
<glyph unicode="&#xf003;" horiz-adv-x="1792" d="M1664 32v768q-32 -36 -69 -66q-268 -206 -426 -338q-51 -43 -83 -67t-86.5 -48.5t-102.5 -24.5h-1h-1q-48 0 -102.5 24.5t-86.5 48.5t-83 67q-158 132 -426 338q-37 30 -69 66v-768q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1664 1083v11v13.5t-0.5 13 t-3 12.5t-5.5 9t-9 7.5t-14 2.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5q0 -168 147 -284q193 -152 401 -317q6 -5 35 -29.5t46 -37.5t44.5 -31.5t50.5 -27.5t43 -9h1h1q20 0 43 9t50.5 27.5t44.5 31.5t46 37.5t35 29.5q208 165 401 317q54 43 100.5 115.5t46.5 131.5z M1792 1120v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf004;" horiz-adv-x="1792" d="M896 -128q-26 0 -44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124t127 -344q0 -221 -229 -450l-623 -600 q-18 -18 -44 -18z" />
<glyph unicode="&#xf005;" horiz-adv-x="1664" d="M1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -21 -10.5 -35.5t-30.5 -14.5q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455 l502 -73q56 -9 56 -46z" />
<glyph unicode="&#xf006;" horiz-adv-x="1664" d="M1137 532l306 297l-422 62l-189 382l-189 -382l-422 -62l306 -297l-73 -421l378 199l377 -199zM1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -50 -41 -50q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500 l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455l502 -73q56 -9 56 -46z" />
<glyph unicode="&#xf007;" horiz-adv-x="1408" d="M1408 131q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5t43 97.5t62 81t85.5 53.5t111.5 20q9 0 42 -21.5t74.5 -48t108 -48t133.5 -21.5t133.5 21.5t108 48t74.5 48t42 21.5q61 0 111.5 -20t85.5 -53.5t62 -81 t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5z" />
<glyph unicode="&#xf008;" horiz-adv-x="1920" d="M384 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 320v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 704v128q0 26 -19 45t-45 19h-128 q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 -64v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM384 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45 t45 -19h128q26 0 45 19t19 45zM1792 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 704v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1792 320v128 q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 704v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19 t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1920 1248v-1344q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1344q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf009;" horiz-adv-x="1664" d="M768 512v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM768 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 512v-384q0 -52 -38 -90t-90 -38 h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf00a;" horiz-adv-x="1792" d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 288v-192q0 -40 -28 -68t-68 -28h-320 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28 h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192 q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf00b;" horiz-adv-x="1792" d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-960 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28 h960q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf00c;" horiz-adv-x="1792" d="M1671 970q0 -40 -28 -68l-724 -724l-136 -136q-28 -28 -68 -28t-68 28l-136 136l-362 362q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -295l656 657q28 28 68 28t68 -28l136 -136q28 -28 28 -68z" />
<glyph unicode="&#xf00d;" horiz-adv-x="1408" d="M1298 214q0 -40 -28 -68l-136 -136q-28 -28 -68 -28t-68 28l-294 294l-294 -294q-28 -28 -68 -28t-68 28l-136 136q-28 28 -28 68t28 68l294 294l-294 294q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -294l294 294q28 28 68 28t68 -28l136 -136q28 -28 28 -68 t-28 -68l-294 -294l294 -294q28 -28 28 -68z" />
<glyph unicode="&#xf00e;" horiz-adv-x="1664" d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-224q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v224h-224q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h224v224q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5v-224h224 q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5 t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
<glyph unicode="&#xf010;" horiz-adv-x="1664" d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-576q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h576q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5z M1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z " />
<glyph unicode="&#xf011;" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61t-298 61t-245 164t-164 245t-61 298q0 182 80.5 343t226.5 270q43 32 95.5 25t83.5 -50q32 -42 24.5 -94.5t-49.5 -84.5q-98 -74 -151.5 -181t-53.5 -228q0 -104 40.5 -198.5t109.5 -163.5t163.5 -109.5 t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5q0 121 -53.5 228t-151.5 181q-42 32 -49.5 84.5t24.5 94.5q31 43 84 50t95 -25q146 -109 226.5 -270t80.5 -343zM896 1408v-640q0 -52 -38 -90t-90 -38t-90 38t-38 90v640q0 52 38 90t90 38t90 -38t38 -90z" />
<glyph unicode="&#xf012;" horiz-adv-x="1792" d="M256 96v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 224v-320q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 480v-576q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23 v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1408 864v-960q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1376v-1472q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1472q0 14 9 23t23 9h192q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf013;" d="M1024 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1536 749v-222q0 -12 -8 -23t-20 -13l-185 -28q-19 -54 -39 -91q35 -50 107 -138q10 -12 10 -25t-9 -23q-27 -37 -99 -108t-94 -71q-12 0 -26 9l-138 108q-44 -23 -91 -38 q-16 -136 -29 -186q-7 -28 -36 -28h-222q-14 0 -24.5 8.5t-11.5 21.5l-28 184q-49 16 -90 37l-141 -107q-10 -9 -25 -9q-14 0 -25 11q-126 114 -165 168q-7 10 -7 23q0 12 8 23q15 21 51 66.5t54 70.5q-27 50 -41 99l-183 27q-13 2 -21 12.5t-8 23.5v222q0 12 8 23t19 13 l186 28q14 46 39 92q-40 57 -107 138q-10 12 -10 24q0 10 9 23q26 36 98.5 107.5t94.5 71.5q13 0 26 -10l138 -107q44 23 91 38q16 136 29 186q7 28 36 28h222q14 0 24.5 -8.5t11.5 -21.5l28 -184q49 -16 90 -37l142 107q9 9 24 9q13 0 25 -10q129 -119 165 -170q7 -8 7 -22 q0 -12 -8 -23q-15 -21 -51 -66.5t-54 -70.5q26 -50 41 -98l183 -28q13 -2 21 -12.5t8 -23.5z" />
<glyph unicode="&#xf014;" horiz-adv-x="1408" d="M512 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM768 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1024 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576 q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1152 76v948h-896v-948q0 -22 7 -40.5t14.5 -27t10.5 -8.5h832q3 0 10.5 8.5t14.5 27t7 40.5zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832 q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf015;" horiz-adv-x="1664" d="M1408 544v-480q0 -26 -19 -45t-45 -19h-384v384h-256v-384h-384q-26 0 -45 19t-19 45v480q0 1 0.5 3t0.5 3l575 474l575 -474q1 -2 1 -6zM1631 613l-62 -74q-8 -9 -21 -11h-3q-13 0 -21 7l-692 577l-692 -577q-12 -8 -24 -7q-13 2 -21 11l-62 74q-8 10 -7 23.5t11 21.5 l719 599q32 26 76 26t76 -26l244 -204v195q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-408l219 -182q10 -8 11 -21.5t-7 -23.5z" />
<glyph unicode="&#xf016;" horiz-adv-x="1280" d="M128 0h1024v768h-416q-40 0 -68 28t-28 68v416h-512v-1280zM768 896h376q-10 29 -22 41l-313 313q-12 12 -41 22v-376zM1280 864v-896q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h640q40 0 88 -20t76 -48l312 -312q28 -28 48 -76t20 -88z " />
<glyph unicode="&#xf017;" d="M896 992v-448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf018;" horiz-adv-x="1920" d="M1111 540v4l-24 320q-1 13 -11 22.5t-23 9.5h-186q-13 0 -23 -9.5t-11 -22.5l-24 -320v-4q-1 -12 8 -20t21 -8h244q12 0 21 8t8 20zM1870 73q0 -73 -46 -73h-704q13 0 22 9.5t8 22.5l-20 256q-1 13 -11 22.5t-23 9.5h-272q-13 0 -23 -9.5t-11 -22.5l-20 -256 q-1 -13 8 -22.5t22 -9.5h-704q-46 0 -46 73q0 54 26 116l417 1044q8 19 26 33t38 14h339q-13 0 -23 -9.5t-11 -22.5l-15 -192q-1 -14 8 -23t22 -9h166q13 0 22 9t8 23l-15 192q-1 13 -11 22.5t-23 9.5h339q20 0 38 -14t26 -33l417 -1044q26 -62 26 -116z" />
<glyph unicode="&#xf019;" horiz-adv-x="1664" d="M1280 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 416v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h465l135 -136 q58 -56 136 -56t136 56l136 136h464q40 0 68 -28t28 -68zM1339 985q17 -41 -14 -70l-448 -448q-18 -19 -45 -19t-45 19l-448 448q-31 29 -14 70q17 39 59 39h256v448q0 26 19 45t45 19h256q26 0 45 -19t19 -45v-448h256q42 0 59 -39z" />
<glyph unicode="&#xf01a;" d="M1120 608q0 -12 -10 -24l-319 -319q-11 -9 -23 -9t-23 9l-320 320q-15 16 -7 35q8 20 30 20h192v352q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-352h192q14 0 23 -9t9 -23zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273 t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf01b;" d="M1118 660q-8 -20 -30 -20h-192v-352q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v352h-192q-14 0 -23 9t-9 23q0 12 10 24l319 319q11 9 23 9t23 -9l320 -320q15 -16 7 -35zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198 t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf01c;" d="M1023 576h316q-1 3 -2.5 8t-2.5 8l-212 496h-708l-212 -496q-1 -2 -2.5 -8t-2.5 -8h316l95 -192h320zM1536 546v-482q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v482q0 62 25 123l238 552q10 25 36.5 42t52.5 17h832q26 0 52.5 -17t36.5 -42l238 -552 q25 -61 25 -123z" />
<glyph unicode="&#xf01d;" d="M1184 640q0 -37 -32 -55l-544 -320q-15 -9 -32 -9q-16 0 -32 8q-32 19 -32 56v640q0 37 32 56q33 18 64 -1l544 -320q32 -18 32 -55zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf01e;" d="M1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l138 138q-148 137 -349 137q-104 0 -198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5q119 0 225 52t179 147q7 10 23 12q14 0 25 -9 l137 -138q9 -8 9.5 -20.5t-7.5 -22.5q-109 -132 -264 -204.5t-327 -72.5q-156 0 -298 61t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q147 0 284.5 -55.5t244.5 -156.5l130 129q29 31 70 14q39 -17 39 -59z" />
<glyph unicode="&#xf021;" d="M1511 480q0 -5 -1 -7q-64 -268 -268 -434.5t-478 -166.5q-146 0 -282.5 55t-243.5 157l-129 -129q-19 -19 -45 -19t-45 19t-19 45v448q0 26 19 45t45 19h448q26 0 45 -19t19 -45t-19 -45l-137 -137q71 -66 161 -102t187 -36q134 0 250 65t186 179q11 17 53 117 q8 23 30 23h192q13 0 22.5 -9.5t9.5 -22.5zM1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-26 0 -45 19t-19 45t19 45l138 138q-148 137 -349 137q-134 0 -250 -65t-186 -179q-11 -17 -53 -117q-8 -23 -30 -23h-199q-13 0 -22.5 9.5t-9.5 22.5v7q65 268 270 434.5t480 166.5 q146 0 284 -55.5t245 -156.5l130 129q19 19 45 19t45 -19t19 -45z" />
<glyph unicode="&#xf022;" horiz-adv-x="1792" d="M384 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M384 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1536 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5z M1536 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5zM1536 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5 t9.5 -22.5zM1664 160v832q0 13 -9.5 22.5t-22.5 9.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1792 1248v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47 t47 -113z" />
<glyph unicode="&#xf023;" horiz-adv-x="1152" d="M320 768h512v192q0 106 -75 181t-181 75t-181 -75t-75 -181v-192zM1152 672v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v192q0 184 132 316t316 132t316 -132t132 -316v-192h32q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf024;" horiz-adv-x="1792" d="M320 1280q0 -72 -64 -110v-1266q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v1266q-64 38 -64 110q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -25 -12.5 -38.5t-39.5 -27.5q-215 -116 -369 -116q-61 0 -123.5 22t-108.5 48 t-115.5 48t-142.5 22q-192 0 -464 -146q-17 -9 -33 -9q-26 0 -45 19t-19 45v742q0 32 31 55q21 14 79 43q236 120 421 120q107 0 200 -29t219 -88q38 -19 88 -19q54 0 117.5 21t110 47t88 47t54.5 21q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf025;" horiz-adv-x="1664" d="M1664 650q0 -166 -60 -314l-20 -49l-185 -33q-22 -83 -90.5 -136.5t-156.5 -53.5v-32q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-32q71 0 130 -35.5t93 -95.5l68 12q29 95 29 193q0 148 -88 279t-236.5 209t-315.5 78 t-315.5 -78t-236.5 -209t-88 -279q0 -98 29 -193l68 -12q34 60 93 95.5t130 35.5v32q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v32q-88 0 -156.5 53.5t-90.5 136.5l-185 33l-20 49q-60 148 -60 314q0 151 67 291t179 242.5 t266 163.5t320 61t320 -61t266 -163.5t179 -242.5t67 -291z" />
<glyph unicode="&#xf026;" horiz-adv-x="768" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45z" />
<glyph unicode="&#xf027;" horiz-adv-x="1152" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 35.5 t12 57t-12 57t-29 35.5t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142z" />
<glyph unicode="&#xf028;" horiz-adv-x="1664" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 35.5 t12 57t-12 57t-29 35.5t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142zM1408 640q0 -153 -85 -282.5t-225 -188.5q-13 -5 -25 -5q-27 0 -46 19t-19 45q0 39 39 59q56 29 76 44q74 54 115.5 135.5t41.5 173.5t-41.5 173.5 t-115.5 135.5q-20 15 -76 44q-39 20 -39 59q0 26 19 45t45 19q13 0 26 -5q140 -59 225 -188.5t85 -282.5zM1664 640q0 -230 -127 -422.5t-338 -283.5q-13 -5 -26 -5q-26 0 -45 19t-19 45q0 36 39 59q7 4 22.5 10.5t22.5 10.5q46 25 82 51q123 91 192 227t69 289t-69 289 t-192 227q-36 26 -82 51q-7 4 -22.5 10.5t-22.5 10.5q-39 23 -39 59q0 26 19 45t45 19q13 0 26 -5q211 -91 338 -283.5t127 -422.5z" />
<glyph unicode="&#xf029;" horiz-adv-x="1408" d="M384 384v-128h-128v128h128zM384 1152v-128h-128v128h128zM1152 1152v-128h-128v128h128zM128 129h384v383h-384v-383zM128 896h384v384h-384v-384zM896 896h384v384h-384v-384zM640 640v-640h-640v640h640zM1152 128v-128h-128v128h128zM1408 128v-128h-128v128h128z M1408 640v-384h-384v128h-128v-384h-128v640h384v-128h128v128h128zM640 1408v-640h-640v640h640zM1408 1408v-640h-640v640h640z" />
<glyph unicode="&#xf02a;" horiz-adv-x="1792" d="M63 0h-63v1408h63v-1408zM126 1h-32v1407h32v-1407zM220 1h-31v1407h31v-1407zM377 1h-31v1407h31v-1407zM534 1h-62v1407h62v-1407zM660 1h-31v1407h31v-1407zM723 1h-31v1407h31v-1407zM786 1h-31v1407h31v-1407zM943 1h-63v1407h63v-1407zM1100 1h-63v1407h63v-1407z M1226 1h-63v1407h63v-1407zM1352 1h-63v1407h63v-1407zM1446 1h-63v1407h63v-1407zM1635 1h-94v1407h94v-1407zM1698 1h-32v1407h32v-1407zM1792 0h-63v1408h63v-1408z" />
<glyph unicode="&#xf02b;" d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5 l715 -714q37 -39 37 -91z" />
<glyph unicode="&#xf02c;" horiz-adv-x="1920" d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5 l715 -714q37 -39 37 -91zM1899 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-36 0 -59 14t-53 45l470 470q37 37 37 90q0 52 -37 91l-715 714q-38 38 -102 64.5t-117 26.5h224q53 0 117 -26.5t102 -64.5l715 -714q37 -39 37 -91z" />
<glyph unicode="&#xf02d;" horiz-adv-x="1664" d="M1639 1058q40 -57 18 -129l-275 -906q-19 -64 -76.5 -107.5t-122.5 -43.5h-923q-77 0 -148.5 53.5t-99.5 131.5q-24 67 -2 127q0 4 3 27t4 37q1 8 -3 21.5t-3 19.5q2 11 8 21t16.5 23.5t16.5 23.5q23 38 45 91.5t30 91.5q3 10 0.5 30t-0.5 28q3 11 17 28t17 23 q21 36 42 92t25 90q1 9 -2.5 32t0.5 28q4 13 22 30.5t22 22.5q19 26 42.5 84.5t27.5 96.5q1 8 -3 25.5t-2 26.5q2 8 9 18t18 23t17 21q8 12 16.5 30.5t15 35t16 36t19.5 32t26.5 23.5t36 11.5t47.5 -5.5l-1 -3q38 9 51 9h761q74 0 114 -56t18 -130l-274 -906 q-36 -119 -71.5 -153.5t-128.5 -34.5h-869q-27 0 -38 -15q-11 -16 -1 -43q24 -70 144 -70h923q29 0 56 15.5t35 41.5l300 987q7 22 5 57q38 -15 59 -43zM575 1056q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5 t-16.5 -22.5zM492 800q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5t-16.5 -22.5z" />
<glyph unicode="&#xf02e;" horiz-adv-x="1280" d="M1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
<glyph unicode="&#xf02f;" horiz-adv-x="1664" d="M384 0h896v256h-896v-256zM384 640h896v384h-160q-40 0 -68 28t-28 68v160h-640v-640zM1536 576q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 576v-416q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-160q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68 v160h-224q-13 0 -22.5 9.5t-9.5 22.5v416q0 79 56.5 135.5t135.5 56.5h64v544q0 40 28 68t68 28h672q40 0 88 -20t76 -48l152 -152q28 -28 48 -76t20 -88v-256h64q79 0 135.5 -56.5t56.5 -135.5z" />
<glyph unicode="&#xf030;" horiz-adv-x="1920" d="M960 864q119 0 203.5 -84.5t84.5 -203.5t-84.5 -203.5t-203.5 -84.5t-203.5 84.5t-84.5 203.5t84.5 203.5t203.5 84.5zM1664 1280q106 0 181 -75t75 -181v-896q0 -106 -75 -181t-181 -75h-1408q-106 0 -181 75t-75 181v896q0 106 75 181t181 75h224l51 136 q19 49 69.5 84.5t103.5 35.5h512q53 0 103.5 -35.5t69.5 -84.5l51 -136h224zM960 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
<glyph unicode="&#xf031;" horiz-adv-x="1664" d="M725 977l-170 -450q73 -1 153.5 -2t119 -1.5t52.5 -0.5l29 2q-32 95 -92 241q-53 132 -92 211zM21 -128h-21l2 79q22 7 80 18q89 16 110 31q20 16 48 68l237 616l280 724h75h53l11 -21l205 -480q103 -242 124 -297q39 -102 96 -235q26 -58 65 -164q24 -67 65 -149 q22 -49 35 -57q22 -19 69 -23q47 -6 103 -27q6 -39 6 -57q0 -14 -1 -26q-80 0 -192 8q-93 8 -189 8q-79 0 -135 -2l-200 -11l-58 -2q0 45 4 78l131 28q56 13 68 23q12 12 12 27t-6 32l-47 114l-92 228l-450 2q-29 -65 -104 -274q-23 -64 -23 -84q0 -31 17 -43 q26 -21 103 -32q3 0 13.5 -2t30 -5t40.5 -6q1 -28 1 -58q0 -17 -2 -27q-66 0 -349 20l-48 -8q-81 -14 -167 -14z" />
<glyph unicode="&#xf032;" horiz-adv-x="1408" d="M555 15q76 -32 140 -32q131 0 216 41t122 113q38 70 38 181q0 114 -41 180q-58 94 -141 126q-80 32 -247 32q-74 0 -101 -10v-144l-1 -173l3 -270q0 -15 12 -44zM541 761q43 -7 109 -7q175 0 264 65t89 224q0 112 -85 187q-84 75 -255 75q-52 0 -130 -13q0 -44 2 -77 q7 -122 6 -279l-1 -98q0 -43 1 -77zM0 -128l2 94q45 9 68 12q77 12 123 31q17 27 21 51q9 66 9 194l-2 497q-5 256 -9 404q-1 87 -11 109q-1 4 -12 12q-18 12 -69 15q-30 2 -114 13l-4 83l260 6l380 13l45 1q5 0 14 0.5t14 0.5q1 0 21.5 -0.5t40.5 -0.5h74q88 0 191 -27 q43 -13 96 -39q57 -29 102 -76q44 -47 65 -104t21 -122q0 -70 -32 -128t-95 -105q-26 -20 -150 -77q177 -41 267 -146q92 -106 92 -236q0 -76 -29 -161q-21 -62 -71 -117q-66 -72 -140 -108q-73 -36 -203 -60q-82 -15 -198 -11l-197 4q-84 2 -298 -11q-33 -3 -272 -11z" />
<glyph unicode="&#xf033;" horiz-adv-x="1024" d="M0 -126l17 85q4 1 77 20q76 19 116 39q29 37 41 101l27 139l56 268l12 64q8 44 17 84.5t16 67t12.5 46.5t9 30.5t3.5 11.5l29 157l16 63l22 135l8 50v38q-41 22 -144 28q-28 2 -38 4l19 103l317 -14q39 -2 73 -2q66 0 214 9q33 2 68 4.5t36 2.5q-2 -19 -6 -38 q-7 -29 -13 -51q-55 -19 -109 -31q-64 -16 -101 -31q-12 -31 -24 -88q-9 -44 -13 -82q-44 -199 -66 -306l-61 -311l-38 -158l-43 -235l-12 -45q-2 -7 1 -27q64 -15 119 -21q36 -5 66 -10q-1 -29 -7 -58q-7 -31 -9 -41q-18 0 -23 -1q-24 -2 -42 -2q-9 0 -28 3q-19 4 -145 17 l-198 2q-41 1 -174 -11q-74 -7 -98 -9z" />
<glyph unicode="&#xf034;" horiz-adv-x="1792" d="M81 1407l54 -27q20 -5 211 -5h130l19 3l115 1l215 -1h293l34 -2q14 -1 28 7t21 16l7 8l42 1q15 0 28 -1v-104.5t1 -131.5l1 -100l-1 -58q0 -32 -4 -51q-39 -15 -68 -18q-25 43 -54 128q-8 24 -15.5 62.5t-11.5 65.5t-6 29q-13 15 -27 19q-7 2 -42.5 2t-103.5 -1t-111 -1 q-34 0 -67 -5q-10 -97 -8 -136l1 -152v-332l3 -359l-1 -147q-1 -46 11 -85q49 -25 89 -32q2 0 18 -5t44 -13t43 -12q30 -8 50 -18q5 -45 5 -50q0 -10 -3 -29q-14 -1 -34 -1q-110 0 -187 10q-72 8 -238 8q-88 0 -233 -14q-48 -4 -70 -4q-2 22 -2 26l-1 26v9q21 33 79 49 q139 38 159 50q9 21 12 56q8 192 6 433l-5 428q-1 62 -0.5 118.5t0.5 102.5t-2 57t-6 15q-6 5 -14 6q-38 6 -148 6q-43 0 -100 -13.5t-73 -24.5q-13 -9 -22 -33t-22 -75t-24 -84q-6 -19 -19.5 -32t-20.5 -13q-44 27 -56 44v297v86zM1744 128q33 0 42 -18.5t-11 -44.5 l-126 -162q-20 -26 -49 -26t-49 26l-126 162q-20 26 -11 44.5t42 18.5h80v1024h-80q-33 0 -42 18.5t11 44.5l126 162q20 26 49 26t49 -26l126 -162q20 -26 11 -44.5t-42 -18.5h-80v-1024h80z" />
<glyph unicode="&#xf035;" d="M81 1407l54 -27q20 -5 211 -5h130l19 3l115 1l446 -1h318l34 -2q14 -1 28 7t21 16l7 8l42 1q15 0 28 -1v-104.5t1 -131.5l1 -100l-1 -58q0 -32 -4 -51q-39 -15 -68 -18q-25 43 -54 128q-8 24 -15.5 62.5t-11.5 65.5t-6 29q-13 15 -27 19q-7 2 -58.5 2t-138.5 -1t-128 -1 q-94 0 -127 -5q-10 -97 -8 -136l1 -152v52l3 -359l-1 -147q-1 -46 11 -85q49 -25 89 -32q2 0 18 -5t44 -13t43 -12q30 -8 50 -18q5 -45 5 -50q0 -10 -3 -29q-14 -1 -34 -1q-110 0 -187 10q-72 8 -238 8q-82 0 -233 -13q-45 -5 -70 -5q-2 22 -2 26l-1 26v9q21 33 79 49 q139 38 159 50q9 21 12 56q6 137 6 433l-5 44q0 265 -2 278q-2 11 -6 15q-6 5 -14 6q-38 6 -148 6q-50 0 -168.5 -14t-132.5 -24q-13 -9 -22 -33t-22 -75t-24 -84q-6 -19 -19.5 -32t-20.5 -13q-44 27 -56 44v297v86zM1505 113q26 -20 26 -49t-26 -49l-162 -126 q-26 -20 -44.5 -11t-18.5 42v80h-1024v-80q0 -33 -18.5 -42t-44.5 11l-162 126q-26 20 -26 49t26 49l162 126q26 20 44.5 11t18.5 -42v-80h1024v80q0 33 18.5 42t44.5 -11z" />
<glyph unicode="&#xf036;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45 t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf037;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h896q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45t-45 -19 h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h640q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf038;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45 t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf039;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45 t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf03a;" horiz-adv-x="1792" d="M256 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM256 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5 t9.5 -22.5zM256 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344 q13 0 22.5 -9.5t9.5 -22.5zM256 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5 t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192 q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5z" />
<glyph unicode="&#xf03b;" horiz-adv-x="1792" d="M384 992v-576q0 -13 -9.5 -22.5t-22.5 -9.5q-14 0 -23 9l-288 288q-9 9 -9 23t9 23l288 288q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5 t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088 q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
<glyph unicode="&#xf03c;" horiz-adv-x="1792" d="M352 704q0 -14 -9 -23l-288 -288q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v576q0 13 9.5 22.5t22.5 9.5q14 0 23 -9l288 -288q9 -9 9 -23zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5 t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088 q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
<glyph unicode="&#xf03d;" horiz-adv-x="1792" d="M1792 1184v-1088q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-403 403v-166q0 -119 -84.5 -203.5t-203.5 -84.5h-704q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h704q119 0 203.5 -84.5t84.5 -203.5v-165l403 402q18 19 45 19q12 0 25 -5 q39 -17 39 -59z" />
<glyph unicode="&#xf03e;" horiz-adv-x="1920" d="M640 960q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 576v-448h-1408v192l320 320l160 -160l512 512zM1760 1280h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-1216q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5v1216 q0 13 -9.5 22.5t-22.5 9.5zM1920 1248v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf040;" d="M363 0l91 91l-235 235l-91 -91v-107h128v-128h107zM886 928q0 22 -22 22q-10 0 -17 -7l-542 -542q-7 -7 -7 -17q0 -22 22 -22q10 0 17 7l542 542q7 7 7 17zM832 1120l416 -416l-832 -832h-416v416zM1515 1024q0 -53 -37 -90l-166 -166l-416 416l166 165q36 38 90 38 q53 0 91 -38l235 -234q37 -39 37 -91z" />
<glyph unicode="&#xf041;" horiz-adv-x="1024" d="M768 896q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1024 896q0 -109 -33 -179l-364 -774q-16 -33 -47.5 -52t-67.5 -19t-67.5 19t-46.5 52l-365 774q-33 70 -33 179q0 212 150 362t362 150t362 -150t150 -362z" />
<glyph unicode="&#xf042;" d="M768 96v1088q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf043;" horiz-adv-x="1024" d="M512 384q0 36 -20 69q-1 1 -15.5 22.5t-25.5 38t-25 44t-21 50.5q-4 16 -21 16t-21 -16q-7 -23 -21 -50.5t-25 -44t-25.5 -38t-15.5 -22.5q-20 -33 -20 -69q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 512q0 -212 -150 -362t-362 -150t-362 150t-150 362 q0 145 81 275q6 9 62.5 90.5t101 151t99.5 178t83 201.5q9 30 34 47t51 17t51.5 -17t33.5 -47q28 -93 83 -201.5t99.5 -178t101 -151t62.5 -90.5q81 -127 81 -275z" />
<glyph unicode="&#xf044;" horiz-adv-x="1792" d="M888 352l116 116l-152 152l-116 -116v-56h96v-96h56zM1328 1072q-16 16 -33 -1l-350 -350q-17 -17 -1 -33t33 1l350 350q17 17 1 33zM1408 478v-190q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832 q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-14 -14 -32 -8q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v126q0 13 9 22l64 64q15 15 35 7t20 -29zM1312 1216l288 -288l-672 -672h-288v288zM1756 1084l-92 -92 l-288 288l92 92q28 28 68 28t68 -28l152 -152q28 -28 28 -68t-28 -68z" />
<glyph unicode="&#xf045;" horiz-adv-x="1664" d="M1408 547v-259q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h255v0q13 0 22.5 -9.5t9.5 -22.5q0 -27 -26 -32q-77 -26 -133 -60q-10 -4 -16 -4h-112q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832 q66 0 113 47t47 113v214q0 19 18 29q28 13 54 37q16 16 35 8q21 -9 21 -29zM1645 1043l-384 -384q-18 -19 -45 -19q-12 0 -25 5q-39 17 -39 59v192h-160q-323 0 -438 -131q-119 -137 -74 -473q3 -23 -20 -34q-8 -2 -12 -2q-16 0 -26 13q-10 14 -21 31t-39.5 68.5t-49.5 99.5 t-38.5 114t-17.5 122q0 49 3.5 91t14 90t28 88t47 81.5t68.5 74t94.5 61.5t124.5 48.5t159.5 30.5t196.5 11h160v192q0 42 39 59q13 5 25 5q26 0 45 -19l384 -384q19 -19 19 -45t-19 -45z" />
<glyph unicode="&#xf046;" horiz-adv-x="1664" d="M1408 606v-318q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-10 -10 -23 -10q-3 0 -9 2q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832 q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v254q0 13 9 22l64 64q10 10 23 10q6 0 12 -3q20 -8 20 -29zM1639 1095l-814 -814q-24 -24 -57 -24t-57 24l-430 430q-24 24 -24 57t24 57l110 110q24 24 57 24t57 -24l263 -263l647 647q24 24 57 24t57 -24l110 -110 q24 -24 24 -57t-24 -57z" />
<glyph unicode="&#xf047;" horiz-adv-x="1792" d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-384v-384h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v384h-384v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45 t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h384v384h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45t-19 -45t-45 -19h-128v-384h384v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
<glyph unicode="&#xf048;" horiz-adv-x="1024" d="M979 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 11 13 19z" />
<glyph unicode="&#xf049;" horiz-adv-x="1792" d="M1747 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 11 13 19l710 710 q19 19 32 13t13 -32v-710q4 11 13 19z" />
<glyph unicode="&#xf04a;" horiz-adv-x="1664" d="M1619 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-8 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-19 19 -19 45t19 45l710 710q19 19 32 13t13 -32v-710q5 11 13 19z" />
<glyph unicode="&#xf04b;" horiz-adv-x="1408" d="M1384 609l-1328 -738q-23 -13 -39.5 -3t-16.5 36v1472q0 26 16.5 36t39.5 -3l1328 -738q23 -13 23 -31t-23 -31z" />
<glyph unicode="&#xf04c;" d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45zM640 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf04d;" d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf04e;" horiz-adv-x="1664" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v710q0 26 13 32t32 -13l710 -710q19 -19 19 -45t-19 -45l-710 -710q-19 -19 -32 -13t-13 32v710q-5 -10 -13 -19z" />
<glyph unicode="&#xf050;" horiz-adv-x="1792" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v710q0 26 13 32t32 -13l710 -710q8 -8 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-5 -10 -13 -19l-710 -710 q-19 -19 -32 -13t-13 32v710q-5 -10 -13 -19z" />
<glyph unicode="&#xf051;" horiz-adv-x="1024" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-5 -10 -13 -19z" />
<glyph unicode="&#xf052;" horiz-adv-x="1538" d="M14 557l710 710q19 19 45 19t45 -19l710 -710q19 -19 13 -32t-32 -13h-1472q-26 0 -32 13t13 32zM1473 0h-1408q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1408q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19z" />
<glyph unicode="&#xf053;" horiz-adv-x="1152" d="M742 -37l-652 651q-37 37 -37 90.5t37 90.5l652 651q37 37 90.5 37t90.5 -37l75 -75q37 -37 37 -90.5t-37 -90.5l-486 -486l486 -485q37 -38 37 -91t-37 -90l-75 -75q-37 -37 -90.5 -37t-90.5 37z" />
<glyph unicode="&#xf054;" horiz-adv-x="1152" d="M1099 704q0 -52 -37 -91l-652 -651q-37 -37 -90 -37t-90 37l-76 75q-37 39 -37 91q0 53 37 90l486 486l-486 485q-37 39 -37 91q0 53 37 90l76 75q36 38 90 38t90 -38l652 -651q37 -37 37 -90z" />
<glyph unicode="&#xf055;" d="M1216 576v128q0 26 -19 45t-45 19h-256v256q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-256h-256q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h256v-256q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v256h256q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5 t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf056;" d="M1216 576v128q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5 t103 -385.5z" />
<glyph unicode="&#xf057;" d="M1149 414q0 26 -19 45l-181 181l181 181q19 19 19 45q0 27 -19 46l-90 90q-19 19 -46 19q-26 0 -45 -19l-181 -181l-181 181q-19 19 -45 19q-27 0 -46 -19l-90 -90q-19 -19 -19 -46q0 -26 19 -45l181 -181l-181 -181q-19 -19 -19 -45q0 -27 19 -46l90 -90q19 -19 46 -19 q26 0 45 19l181 181l181 -181q19 -19 45 -19q27 0 46 19l90 90q19 19 19 46zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf058;" d="M1284 802q0 28 -18 46l-91 90q-19 19 -45 19t-45 -19l-408 -407l-226 226q-19 19 -45 19t-45 -19l-91 -90q-18 -18 -18 -46q0 -27 18 -45l362 -362q19 -19 45 -19q27 0 46 19l543 543q18 18 18 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf059;" d="M896 160v192q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h192q14 0 23 9t9 23zM1152 832q0 88 -55.5 163t-138.5 116t-170 41q-243 0 -371 -213q-15 -24 8 -42l132 -100q7 -6 19 -6q16 0 25 12q53 68 86 92q34 24 86 24q48 0 85.5 -26t37.5 -59 q0 -38 -20 -61t-68 -45q-63 -28 -115.5 -86.5t-52.5 -125.5v-36q0 -14 9 -23t23 -9h192q14 0 23 9t9 23q0 19 21.5 49.5t54.5 49.5q32 18 49 28.5t46 35t44.5 48t28 60.5t12.5 81zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf05a;" d="M1024 160v160q0 14 -9 23t-23 9h-96v512q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h96v-320h-96q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h448q14 0 23 9t9 23zM896 1056v160q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23 t23 -9h192q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf05b;" d="M1197 512h-109q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h109q-32 108 -112.5 188.5t-188.5 112.5v-109q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v109q-108 -32 -188.5 -112.5t-112.5 -188.5h109q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-109 q32 -108 112.5 -188.5t188.5 -112.5v109q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-109q108 32 188.5 112.5t112.5 188.5zM1536 704v-128q0 -26 -19 -45t-45 -19h-143q-37 -161 -154.5 -278.5t-278.5 -154.5v-143q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v143 q-161 37 -278.5 154.5t-154.5 278.5h-143q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h143q37 161 154.5 278.5t278.5 154.5v143q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-143q161 -37 278.5 -154.5t154.5 -278.5h143q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf05c;" d="M1097 457l-146 -146q-10 -10 -23 -10t-23 10l-137 137l-137 -137q-10 -10 -23 -10t-23 10l-146 146q-10 10 -10 23t10 23l137 137l-137 137q-10 10 -10 23t10 23l146 146q10 10 23 10t23 -10l137 -137l137 137q10 10 23 10t23 -10l146 -146q10 -10 10 -23t-10 -23 l-137 -137l137 -137q10 -10 10 -23t-10 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5 t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf05d;" d="M1171 723l-422 -422q-19 -19 -45 -19t-45 19l-294 294q-19 19 -19 45t19 45l102 102q19 19 45 19t45 -19l147 -147l275 275q19 19 45 19t45 -19l102 -102q19 -19 19 -45t-19 -45zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198 t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf05e;" d="M1312 643q0 161 -87 295l-754 -753q137 -89 297 -89q111 0 211.5 43.5t173.5 116.5t116 174.5t43 212.5zM313 344l755 754q-135 91 -300 91q-148 0 -273 -73t-198 -199t-73 -274q0 -162 89 -299zM1536 643q0 -157 -61 -300t-163.5 -246t-245 -164t-298.5 -61t-298.5 61 t-245 164t-163.5 246t-61 300t61 299.5t163.5 245.5t245 164t298.5 61t298.5 -61t245 -164t163.5 -245.5t61 -299.5z" />
<glyph unicode="&#xf060;" d="M1536 640v-128q0 -53 -32.5 -90.5t-84.5 -37.5h-704l293 -294q38 -36 38 -90t-38 -90l-75 -76q-37 -37 -90 -37q-52 0 -91 37l-651 652q-37 37 -37 90q0 52 37 91l651 650q38 38 91 38q52 0 90 -38l75 -74q38 -38 38 -91t-38 -91l-293 -293h704q52 0 84.5 -37.5 t32.5 -90.5z" />
<glyph unicode="&#xf061;" d="M1472 576q0 -54 -37 -91l-651 -651q-39 -37 -91 -37q-51 0 -90 37l-75 75q-38 38 -38 91t38 91l293 293h-704q-52 0 -84.5 37.5t-32.5 90.5v128q0 53 32.5 90.5t84.5 37.5h704l-293 294q-38 36 -38 90t38 90l75 75q38 38 90 38q53 0 91 -38l651 -651q37 -35 37 -90z" />
<glyph unicode="&#xf062;" horiz-adv-x="1664" d="M1611 565q0 -51 -37 -90l-75 -75q-38 -38 -91 -38q-54 0 -90 38l-294 293v-704q0 -52 -37.5 -84.5t-90.5 -32.5h-128q-53 0 -90.5 32.5t-37.5 84.5v704l-294 -293q-36 -38 -90 -38t-90 38l-75 75q-38 38 -38 90q0 53 38 91l651 651q35 37 90 37q54 0 91 -37l651 -651 q37 -39 37 -91z" />
<glyph unicode="&#xf063;" horiz-adv-x="1664" d="M1611 704q0 -53 -37 -90l-651 -652q-39 -37 -91 -37q-53 0 -90 37l-651 652q-38 36 -38 90q0 53 38 91l74 75q39 37 91 37q53 0 90 -37l294 -294v704q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-704l294 294q37 37 90 37q52 0 91 -37l75 -75q37 -39 37 -91z" />
<glyph unicode="&#xf064;" horiz-adv-x="1792" d="M1792 896q0 -26 -19 -45l-512 -512q-19 -19 -45 -19t-45 19t-19 45v256h-224q-98 0 -175.5 -6t-154 -21.5t-133 -42.5t-105.5 -69.5t-80 -101t-48.5 -138.5t-17.5 -181q0 -55 5 -123q0 -6 2.5 -23.5t2.5 -26.5q0 -15 -8.5 -25t-23.5 -10q-16 0 -28 17q-7 9 -13 22 t-13.5 30t-10.5 24q-127 285 -127 451q0 199 53 333q162 403 875 403h224v256q0 26 19 45t45 19t45 -19l512 -512q19 -19 19 -45z" />
<glyph unicode="&#xf065;" d="M755 480q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23zM1536 1344v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332 q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf066;" d="M768 576v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45zM1523 1248q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45 t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23z" />
<glyph unicode="&#xf067;" horiz-adv-x="1408" d="M1408 800v-192q0 -40 -28 -68t-68 -28h-416v-416q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v416h-416q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h416v416q0 40 28 68t68 28h192q40 0 68 -28t28 -68v-416h416q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf068;" horiz-adv-x="1408" d="M1408 800v-192q0 -40 -28 -68t-68 -28h-1216q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h1216q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf069;" horiz-adv-x="1664" d="M1482 486q46 -26 59.5 -77.5t-12.5 -97.5l-64 -110q-26 -46 -77.5 -59.5t-97.5 12.5l-266 153v-307q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v307l-266 -153q-46 -26 -97.5 -12.5t-77.5 59.5l-64 110q-26 46 -12.5 97.5t59.5 77.5l266 154l-266 154 q-46 26 -59.5 77.5t12.5 97.5l64 110q26 46 77.5 59.5t97.5 -12.5l266 -153v307q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-307l266 153q46 26 97.5 12.5t77.5 -59.5l64 -110q26 -46 12.5 -97.5t-59.5 -77.5l-266 -154z" />
<glyph unicode="&#xf06a;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM896 161v190q0 14 -9 23.5t-22 9.5h-192q-13 0 -23 -10t-10 -23v-190q0 -13 10 -23t23 -10h192 q13 0 22 9.5t9 23.5zM894 505l18 621q0 12 -10 18q-10 8 -24 8h-220q-14 0 -24 -8q-10 -6 -10 -18l17 -621q0 -10 10 -17.5t24 -7.5h185q14 0 23.5 7.5t10.5 17.5z" />
<glyph unicode="&#xf06b;" d="M928 180v56v468v192h-320v-192v-468v-56q0 -25 18 -38.5t46 -13.5h192q28 0 46 13.5t18 38.5zM472 1024h195l-126 161q-26 31 -69 31q-40 0 -68 -28t-28 -68t28 -68t68 -28zM1160 1120q0 40 -28 68t-68 28q-43 0 -69 -31l-125 -161h194q40 0 68 28t28 68zM1536 864v-320 q0 -14 -9 -23t-23 -9h-96v-416q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v416h-96q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h440q-93 0 -158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5q107 0 168 -77l128 -165l128 165q61 77 168 77q93 0 158.5 -65.5t65.5 -158.5 t-65.5 -158.5t-158.5 -65.5h440q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf06c;" horiz-adv-x="1792" d="M1280 832q0 26 -19 45t-45 19q-172 0 -318 -49.5t-259.5 -134t-235.5 -219.5q-19 -21 -19 -45q0 -26 19 -45t45 -19q24 0 45 19q27 24 74 71t67 66q137 124 268.5 176t313.5 52q26 0 45 19t19 45zM1792 1030q0 -95 -20 -193q-46 -224 -184.5 -383t-357.5 -268 q-214 -108 -438 -108q-148 0 -286 47q-15 5 -88 42t-96 37q-16 0 -39.5 -32t-45 -70t-52.5 -70t-60 -32q-30 0 -51 11t-31 24t-27 42q-2 4 -6 11t-5.5 10t-3 9.5t-1.5 13.5q0 35 31 73.5t68 65.5t68 56t31 48q0 4 -14 38t-16 44q-9 51 -9 104q0 115 43.5 220t119 184.5 t170.5 139t204 95.5q55 18 145 25.5t179.5 9t178.5 6t163.5 24t113.5 56.5l29.5 29.5t29.5 28t27 20t36.5 16t43.5 4.5q39 0 70.5 -46t47.5 -112t24 -124t8 -96z" />
<glyph unicode="&#xf06d;" horiz-adv-x="1408" d="M1408 -160v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1152 896q0 -78 -24.5 -144t-64 -112.5t-87.5 -88t-96 -77.5t-87.5 -72t-64 -81.5t-24.5 -96.5q0 -96 67 -224l-4 1l1 -1 q-90 41 -160 83t-138.5 100t-113.5 122.5t-72.5 150.5t-27.5 184q0 78 24.5 144t64 112.5t87.5 88t96 77.5t87.5 72t64 81.5t24.5 96.5q0 94 -66 224l3 -1l-1 1q90 -41 160 -83t138.5 -100t113.5 -122.5t72.5 -150.5t27.5 -184z" />
<glyph unicode="&#xf06e;" horiz-adv-x="1792" d="M1664 576q-152 236 -381 353q61 -104 61 -225q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 121 61 225q-229 -117 -381 -353q133 -205 333.5 -326.5t434.5 -121.5t434.5 121.5t333.5 326.5zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5 t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1792 576q0 -34 -20 -69q-140 -230 -376.5 -368.5t-499.5 -138.5t-499.5 139t-376.5 368q-20 35 -20 69t20 69q140 229 376.5 368t499.5 139t499.5 -139t376.5 -368q20 -35 20 -69z" />
<glyph unicode="&#xf070;" horiz-adv-x="1792" d="M555 201l78 141q-87 63 -136 159t-49 203q0 121 61 225q-229 -117 -381 -353q167 -258 427 -375zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1307 1151q0 -7 -1 -9 q-105 -188 -315 -566t-316 -567l-49 -89q-10 -16 -28 -16q-12 0 -134 70q-16 10 -16 28q0 12 44 87q-143 65 -263.5 173t-208.5 245q-20 31 -20 69t20 69q153 235 380 371t496 136q89 0 180 -17l54 97q10 16 28 16q5 0 18 -6t31 -15.5t33 -18.5t31.5 -18.5t19.5 -11.5 q16 -10 16 -27zM1344 704q0 -139 -79 -253.5t-209 -164.5l280 502q8 -45 8 -84zM1792 576q0 -35 -20 -69q-39 -64 -109 -145q-150 -172 -347.5 -267t-419.5 -95l74 132q212 18 392.5 137t301.5 307q-115 179 -282 294l63 112q95 -64 182.5 -153t144.5 -184q20 -34 20 -69z " />
<glyph unicode="&#xf071;" horiz-adv-x="1792" d="M1024 161v190q0 14 -9.5 23.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -23.5v-190q0 -14 9.5 -23.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 23.5zM1022 535l18 459q0 12 -10 19q-13 11 -24 11h-220q-11 0 -24 -11q-10 -7 -10 -21l17 -457q0 -10 10 -16.5t24 -6.5h185 q14 0 23.5 6.5t10.5 16.5zM1008 1469l768 -1408q35 -63 -2 -126q-17 -29 -46.5 -46t-63.5 -17h-1536q-34 0 -63.5 17t-46.5 46q-37 63 -2 126l768 1408q17 31 47 49t65 18t65 -18t47 -49z" />
<glyph unicode="&#xf072;" horiz-adv-x="1408" d="M1376 1376q44 -52 12 -148t-108 -172l-161 -161l160 -696q5 -19 -12 -33l-128 -96q-7 -6 -19 -6q-4 0 -7 1q-15 3 -21 16l-279 508l-259 -259l53 -194q5 -17 -8 -31l-96 -96q-9 -9 -23 -9h-2q-15 2 -24 13l-189 252l-252 189q-11 7 -13 23q-1 13 9 25l96 97q9 9 23 9 q6 0 8 -1l194 -53l259 259l-508 279q-14 8 -17 24q-2 16 9 27l128 128q14 13 30 8l665 -159l160 160q76 76 172 108t148 -12z" />
<glyph unicode="&#xf073;" horiz-adv-x="1664" d="M128 -128h288v288h-288v-288zM480 -128h320v288h-320v-288zM128 224h288v320h-288v-320zM480 224h320v320h-320v-320zM128 608h288v288h-288v-288zM864 -128h320v288h-320v-288zM480 608h320v288h-320v-288zM1248 -128h288v288h-288v-288zM864 224h320v320h-320v-320z M512 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1248 224h288v320h-288v-320zM864 608h320v288h-320v-288zM1248 608h288v288h-288v-288zM1280 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64 q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47 h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf074;" horiz-adv-x="1792" d="M666 1055q-60 -92 -137 -273q-22 45 -37 72.5t-40.5 63.5t-51 56.5t-63 35t-81.5 14.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q250 0 410 -225zM1792 256q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192q-32 0 -85 -0.5t-81 -1t-73 1 t-71 5t-64 10.5t-63 18.5t-58 28.5t-59 40t-55 53.5t-56 69.5q59 93 136 273q22 -45 37 -72.5t40.5 -63.5t51 -56.5t63 -35t81.5 -14.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1792 1152q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5 v192h-256q-48 0 -87 -15t-69 -45t-51 -61.5t-45 -77.5q-32 -62 -78 -171q-29 -66 -49.5 -111t-54 -105t-64 -100t-74 -83t-90 -68.5t-106.5 -42t-128 -16.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q48 0 87 15t69 45t51 61.5t45 77.5q32 62 78 171q29 66 49.5 111 t54 105t64 100t74 83t90 68.5t106.5 42t128 16.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
<glyph unicode="&#xf075;" horiz-adv-x="1792" d="M1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22q-17 -2 -30.5 9t-17.5 29v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281 q0 130 71 248.5t191 204.5t286 136.5t348 50.5q244 0 450 -85.5t326 -233t120 -321.5z" />
<glyph unicode="&#xf076;" d="M1536 704v-128q0 -201 -98.5 -362t-274 -251.5t-395.5 -90.5t-395.5 90.5t-274 251.5t-98.5 362v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-128q0 -52 23.5 -90t53.5 -57t71 -30t64 -13t44 -2t44 2t64 13t71 30t53.5 57t23.5 90v128q0 26 19 45t45 19h384 q26 0 45 -19t19 -45zM512 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45zM1536 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf077;" horiz-adv-x="1664" d="M1611 320q0 -53 -37 -90l-75 -75q-38 -38 -91 -38q-54 0 -90 38l-486 485l-486 -485q-36 -38 -90 -38t-90 38l-75 75q-38 36 -38 90q0 53 38 91l651 651q37 37 90 37q52 0 91 -37l650 -651q38 -38 38 -91z" />
<glyph unicode="&#xf078;" horiz-adv-x="1664" d="M1611 832q0 -53 -37 -90l-651 -651q-38 -38 -91 -38q-54 0 -90 38l-651 651q-38 36 -38 90q0 53 38 91l74 75q39 37 91 37q53 0 90 -37l486 -486l486 486q37 37 90 37q52 0 91 -37l75 -75q37 -39 37 -91z" />
<glyph unicode="&#xf079;" horiz-adv-x="1920" d="M1280 32q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-8 0 -13.5 2t-9 7t-5.5 8t-3 11.5t-1 11.5v13v11v160v416h-192q-26 0 -45 19t-19 45q0 24 15 41l320 384q19 22 49 22t49 -22l320 -384q15 -17 15 -41q0 -26 -19 -45t-45 -19h-192v-384h576q16 0 25 -11l160 -192q7 -11 7 -21 zM1920 448q0 -24 -15 -41l-320 -384q-20 -23 -49 -23t-49 23l-320 384q-15 17 -15 41q0 26 19 45t45 19h192v384h-576q-16 0 -25 12l-160 192q-7 9 -7 20q0 13 9.5 22.5t22.5 9.5h960q8 0 13.5 -2t9 -7t5.5 -8t3 -11.5t1 -11.5v-13v-11v-160v-416h192q26 0 45 -19t19 -45z " />
<glyph unicode="&#xf07a;" horiz-adv-x="1664" d="M640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5 l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5 t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf07b;" horiz-adv-x="1664" d="M1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
<glyph unicode="&#xf07c;" horiz-adv-x="1920" d="M1879 584q0 -31 -31 -66l-336 -396q-43 -51 -120.5 -86.5t-143.5 -35.5h-1088q-34 0 -60.5 13t-26.5 43q0 31 31 66l336 396q43 51 120.5 86.5t143.5 35.5h1088q34 0 60.5 -13t26.5 -43zM1536 928v-160h-832q-94 0 -197 -47.5t-164 -119.5l-337 -396l-5 -6q0 4 -0.5 12.5 t-0.5 12.5v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158z" />
<glyph unicode="&#xf07d;" horiz-adv-x="768" d="M704 1216q0 -26 -19 -45t-45 -19h-128v-1024h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v1024h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45z" />
<glyph unicode="&#xf07e;" horiz-adv-x="1792" d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-1024v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h1024v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
<glyph unicode="&#xf080;" horiz-adv-x="1920" d="M512 512v-384h-256v384h256zM896 1024v-896h-256v896h256zM1280 768v-640h-256v640h256zM1664 1152v-1024h-256v1024h256zM1792 32v1216q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-1216q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5z M1920 1248v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf081;" d="M1280 926q-56 -25 -121 -34q68 40 93 117q-65 -38 -134 -51q-61 66 -153 66q-87 0 -148.5 -61.5t-61.5 -148.5q0 -29 5 -48q-129 7 -242 65t-192 155q-29 -50 -29 -106q0 -114 91 -175q-47 1 -100 26v-2q0 -75 50 -133.5t123 -72.5q-29 -8 -51 -8q-13 0 -39 4 q21 -63 74.5 -104t121.5 -42q-116 -90 -261 -90q-26 0 -50 3q148 -94 322 -94q112 0 210 35.5t168 95t120.5 137t75 162t24.5 168.5q0 18 -1 27q63 45 105 109zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5 t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf082;" d="M1307 618l23 219h-198v109q0 49 15.5 68.5t71.5 19.5h110v219h-175q-152 0 -218 -72t-66 -213v-131h-131v-219h131v-635h262v635h175zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960 q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf083;" horiz-adv-x="1792" d="M928 704q0 14 -9 23t-23 9q-66 0 -113 -47t-47 -113q0 -14 9 -23t23 -9t23 9t9 23q0 40 28 68t68 28q14 0 23 9t9 23zM1152 574q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM128 0h1536v128h-1536v-128zM1280 574q0 159 -112.5 271.5 t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM256 1216h384v128h-384v-128zM128 1024h1536v118v138h-828l-64 -128h-644v-128zM1792 1280v-1280q0 -53 -37.5 -90.5t-90.5 -37.5h-1536q-53 0 -90.5 37.5t-37.5 90.5v1280 q0 53 37.5 90.5t90.5 37.5h1536q53 0 90.5 -37.5t37.5 -90.5z" />
<glyph unicode="&#xf084;" horiz-adv-x="1792" d="M832 1024q0 80 -56 136t-136 56t-136 -56t-56 -136q0 -42 19 -83q-41 19 -83 19q-80 0 -136 -56t-56 -136t56 -136t136 -56t136 56t56 136q0 42 -19 83q41 -19 83 -19q80 0 136 56t56 136zM1683 320q0 -17 -49 -66t-66 -49q-9 0 -28.5 16t-36.5 33t-38.5 40t-24.5 26 l-96 -96l220 -220q28 -28 28 -68q0 -42 -39 -81t-81 -39q-40 0 -68 28l-671 671q-176 -131 -365 -131q-163 0 -265.5 102.5t-102.5 265.5q0 160 95 313t248 248t313 95q163 0 265.5 -102.5t102.5 -265.5q0 -189 -131 -365l355 -355l96 96q-3 3 -26 24.5t-40 38.5t-33 36.5 t-16 28.5q0 17 49 66t66 49q13 0 23 -10q6 -6 46 -44.5t82 -79.5t86.5 -86t73 -78t28.5 -41z" />
<glyph unicode="&#xf085;" horiz-adv-x="1920" d="M896 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1664 128q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1152q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5zM1280 731v-185q0 -10 -7 -19.5t-16 -10.5l-155 -24q-11 -35 -32 -76q34 -48 90 -115q7 -10 7 -20q0 -12 -7 -19q-23 -30 -82.5 -89.5t-78.5 -59.5q-11 0 -21 7l-115 90q-37 -19 -77 -31q-11 -108 -23 -155q-7 -24 -30 -24h-186q-11 0 -20 7.5t-10 17.5 l-23 153q-34 10 -75 31l-118 -89q-7 -7 -20 -7q-11 0 -21 8q-144 133 -144 160q0 9 7 19q10 14 41 53t47 61q-23 44 -35 82l-152 24q-10 1 -17 9.5t-7 19.5v185q0 10 7 19.5t16 10.5l155 24q11 35 32 76q-34 48 -90 115q-7 11 -7 20q0 12 7 20q22 30 82 89t79 59q11 0 21 -7 l115 -90q34 18 77 32q11 108 23 154q7 24 30 24h186q11 0 20 -7.5t10 -17.5l23 -153q34 -10 75 -31l118 89q8 7 20 7q11 0 21 -8q144 -133 144 -160q0 -9 -7 -19q-12 -16 -42 -54t-45 -60q23 -48 34 -82l152 -23q10 -2 17 -10.5t7 -19.5zM1920 198v-140q0 -16 -149 -31 q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20 t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31zM1920 1222v-140q0 -16 -149 -31q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68 q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70 q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31z" />
<glyph unicode="&#xf086;" horiz-adv-x="1792" d="M1408 768q0 -139 -94 -257t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224 q0 139 94 257t256.5 186.5t353.5 68.5t353.5 -68.5t256.5 -186.5t94 -257zM1792 512q0 -120 -71 -224.5t-195 -176.5q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7 q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230z" />
<glyph unicode="&#xf087;" d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 768q0 51 -39 89.5t-89 38.5h-352q0 58 48 159.5t48 160.5q0 98 -32 145t-128 47q-26 -26 -38 -85t-30.5 -125.5t-59.5 -109.5q-22 -23 -77 -91q-4 -5 -23 -30t-31.5 -41t-34.5 -42.5 t-40 -44t-38.5 -35.5t-40 -27t-35.5 -9h-32v-640h32q13 0 31.5 -3t33 -6.5t38 -11t35 -11.5t35.5 -12.5t29 -10.5q211 -73 342 -73h121q192 0 192 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5q32 1 53.5 47t21.5 81zM1536 769 q0 -89 -49 -163q9 -33 9 -69q0 -77 -38 -144q3 -21 3 -43q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5h-36h-93q-96 0 -189.5 22.5t-216.5 65.5q-116 40 -138 40h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h274q36 24 137 155q58 75 107 128 q24 25 35.5 85.5t30.5 126.5t62 108q39 37 90 37q84 0 151 -32.5t102 -101.5t35 -186q0 -93 -48 -192h176q104 0 180 -76t76 -179z" />
<glyph unicode="&#xf088;" d="M256 1088q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 512q0 35 -21.5 81t-53.5 47q15 17 25 47.5t10 55.5q0 69 -53 119q18 32 18 69t-17.5 73.5t-47.5 52.5q5 30 5 56q0 85 -49 126t-136 41h-128q-131 0 -342 -73q-5 -2 -29 -10.5 t-35.5 -12.5t-35 -11.5t-38 -11t-33 -6.5t-31.5 -3h-32v-640h32q16 0 35.5 -9t40 -27t38.5 -35.5t40 -44t34.5 -42.5t31.5 -41t23 -30q55 -68 77 -91q41 -43 59.5 -109.5t30.5 -125.5t38 -85q96 0 128 47t32 145q0 59 -48 160.5t-48 159.5h352q50 0 89 38.5t39 89.5z M1536 511q0 -103 -76 -179t-180 -76h-176q48 -99 48 -192q0 -118 -35 -186q-35 -69 -102 -101.5t-151 -32.5q-51 0 -90 37q-34 33 -54 82t-25.5 90.5t-17.5 84.5t-31 64q-48 50 -107 127q-101 131 -137 155h-274q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5 h288q22 0 138 40q128 44 223 66t200 22h112q140 0 226.5 -79t85.5 -216v-5q60 -77 60 -178q0 -22 -3 -43q38 -67 38 -144q0 -36 -9 -69q49 -74 49 -163z" />
<glyph unicode="&#xf089;" horiz-adv-x="896" d="M832 1504v-1339l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41z" />
<glyph unicode="&#xf08a;" horiz-adv-x="1792" d="M1664 940q0 81 -21.5 143t-55 98.5t-81.5 59.5t-94 31t-98 8t-112 -25.5t-110.5 -64t-86.5 -72t-60 -61.5q-18 -22 -49 -22t-49 22q-24 28 -60 61.5t-86.5 72t-110.5 64t-112 25.5t-98 -8t-94 -31t-81.5 -59.5t-55 -98.5t-21.5 -143q0 -168 187 -355l581 -560l580 559 q188 188 188 356zM1792 940q0 -221 -229 -450l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5 q224 0 351 -124t127 -344z" />
<glyph unicode="&#xf08b;" horiz-adv-x="1664" d="M640 96q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h320q13 0 22.5 -9.5t9.5 -22.5q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-66 0 -113 -47t-47 -113v-704 q0 -66 47 -113t113 -47h288h11h13t11.5 -1t11.5 -3t8 -5.5t7 -9t2 -13.5zM1568 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45z" />
<glyph unicode="&#xf08c;" d="M237 122h231v694h-231v-694zM483 1030q-1 52 -36 86t-93 34t-94.5 -34t-36.5 -86q0 -51 35.5 -85.5t92.5 -34.5h1q59 0 95 34.5t36 85.5zM1068 122h231v398q0 154 -73 233t-193 79q-136 0 -209 -117h2v101h-231q3 -66 0 -694h231v388q0 38 7 56q15 35 45 59.5t74 24.5 q116 0 116 -157v-371zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf08d;" horiz-adv-x="1152" d="M480 672v448q0 14 -9 23t-23 9t-23 -9t-9 -23v-448q0 -14 9 -23t23 -9t23 9t9 23zM1152 320q0 -26 -19 -45t-45 -19h-429l-51 -483q-2 -12 -10.5 -20.5t-20.5 -8.5h-1q-27 0 -32 27l-76 485h-404q-26 0 -45 19t-19 45q0 123 78.5 221.5t177.5 98.5v512q-52 0 -90 38 t-38 90t38 90t90 38h640q52 0 90 -38t38 -90t-38 -90t-90 -38v-512q99 0 177.5 -98.5t78.5 -221.5z" />
<glyph unicode="&#xf08e;" horiz-adv-x="1792" d="M1408 608v-320q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v320 q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1792 1472v-512q0 -26 -19 -45t-45 -19t-45 19l-176 176l-652 -652q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l652 652l-176 176q-19 19 -19 45t19 45t45 19h512q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf090;" d="M1184 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45zM1536 992v-704q0 -119 -84.5 -203.5t-203.5 -84.5h-320q-13 0 -22.5 9.5t-9.5 22.5 q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q66 0 113 47t47 113v704q0 66 -47 113t-113 47h-288h-11h-13t-11.5 1t-11.5 3t-8 5.5t-7 9t-2 13.5q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf091;" horiz-adv-x="1664" d="M458 653q-74 162 -74 371h-256v-96q0 -78 94.5 -162t235.5 -113zM1536 928v96h-256q0 -209 -74 -371q141 29 235.5 113t94.5 162zM1664 1056v-128q0 -71 -41.5 -143t-112 -130t-173 -97.5t-215.5 -44.5q-42 -54 -95 -95q-38 -34 -52.5 -72.5t-14.5 -89.5q0 -54 30.5 -91 t97.5 -37q75 0 133.5 -45.5t58.5 -114.5v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 69 58.5 114.5t133.5 45.5q67 0 97.5 37t30.5 91q0 51 -14.5 89.5t-52.5 72.5q-53 41 -95 95q-113 5 -215.5 44.5t-173 97.5t-112 130t-41.5 143v128q0 40 28 68t68 28h288v96 q0 66 47 113t113 47h576q66 0 113 -47t47 -113v-96h288q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf092;" d="M394 184q-8 -9 -20 3q-13 11 -4 19q8 9 20 -3q12 -11 4 -19zM352 245q9 -12 0 -19q-8 -6 -17 7t0 18q9 7 17 -6zM291 305q-5 -7 -13 -2q-10 5 -7 12q3 5 13 2q10 -5 7 -12zM322 271q-6 -7 -16 3q-9 11 -2 16q6 6 16 -3q9 -11 2 -16zM451 159q-4 -12 -19 -6q-17 4 -13 15 t19 7q16 -5 13 -16zM514 154q0 -11 -16 -11q-17 -2 -17 11q0 11 16 11q17 2 17 -11zM572 164q2 -10 -14 -14t-18 8t14 15q16 2 18 -9zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-224q-16 0 -24.5 1t-19.5 5t-16 14.5t-5 27.5v239q0 97 -52 142q57 6 102.5 18t94 39 t81 66.5t53 105t20.5 150.5q0 121 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-86 13.5q-44 -113 -7 -204q-79 -85 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-40 -36 -49 -103 q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -103t0.5 -68q0 -22 -11 -33.5t-22 -13t-33 -1.5 h-224q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf093;" horiz-adv-x="1664" d="M1280 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 288v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h427q21 -56 70.5 -92 t110.5 -36h256q61 0 110.5 36t70.5 92h427q40 0 68 -28t28 -68zM1339 936q-17 -40 -59 -40h-256v-448q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v448h-256q-42 0 -59 40q-17 39 14 69l448 448q18 19 45 19t45 -19l448 -448q31 -30 14 -69z" />
<glyph unicode="&#xf094;" d="M1407 710q0 44 -7 113.5t-18 96.5q-12 30 -17 44t-9 36.5t-4 48.5q0 23 5 68.5t5 67.5q0 37 -10 55q-4 1 -13 1q-19 0 -58 -4.5t-59 -4.5q-60 0 -176 24t-175 24q-43 0 -94.5 -11.5t-85 -23.5t-89.5 -34q-137 -54 -202 -103q-96 -73 -159.5 -189.5t-88 -236t-24.5 -248.5 q0 -40 12.5 -120t12.5 -121q0 -23 -11 -66.5t-11 -65.5t12 -36.5t34 -14.5q24 0 72.5 11t73.5 11q57 0 169.5 -15.5t169.5 -15.5q181 0 284 36q129 45 235.5 152.5t166 245.5t59.5 275zM1535 712q0 -165 -70 -327.5t-196 -288t-281 -180.5q-124 -44 -326 -44 q-57 0 -170 14.5t-169 14.5q-24 0 -72.5 -14.5t-73.5 -14.5q-73 0 -123.5 55.5t-50.5 128.5q0 24 11 68t11 67q0 40 -12.5 120.5t-12.5 121.5q0 111 18 217.5t54.5 209.5t100.5 194t150 156q78 59 232 120q194 78 316 78q60 0 175.5 -24t173.5 -24q19 0 57 5t58 5 q81 0 118 -50.5t37 -134.5q0 -23 -5 -68t-5 -68q0 -10 1 -18.5t3 -17t4 -13.5t6.5 -16t6.5 -17q16 -40 25 -118.5t9 -136.5z" />
<glyph unicode="&#xf095;" horiz-adv-x="1408" d="M1408 296q0 -27 -10 -70.5t-21 -68.5q-21 -50 -122 -106q-94 -51 -186 -51q-27 0 -52.5 3.5t-57.5 12.5t-47.5 14.5t-55.5 20.5t-49 18q-98 35 -175 83q-128 79 -264.5 215.5t-215.5 264.5q-48 77 -83 175q-3 9 -18 49t-20.5 55.5t-14.5 47.5t-12.5 57.5t-3.5 52.5 q0 92 51 186q56 101 106 122q25 11 68.5 21t70.5 10q14 0 21 -3q18 -6 53 -76q11 -19 30 -54t35 -63.5t31 -53.5q3 -4 17.5 -25t21.5 -35.5t7 -28.5q0 -20 -28.5 -50t-62 -55t-62 -53t-28.5 -46q0 -9 5 -22.5t8.5 -20.5t14 -24t11.5 -19q76 -137 174 -235t235 -174 q2 -1 19 -11.5t24 -14t20.5 -8.5t22.5 -5q18 0 46 28.5t53 62t55 62t50 28.5q14 0 28.5 -7t35.5 -21.5t25 -17.5q25 -15 53.5 -31t63.5 -35t54 -30q70 -35 76 -53q3 -7 3 -21z" />
<glyph unicode="&#xf096;" horiz-adv-x="1408" d="M1120 1280h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v832q0 66 -47 113t-113 47zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832 q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf097;" horiz-adv-x="1280" d="M1152 1280h-1024v-1242l423 406l89 85l89 -85l423 -406v1242zM1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289 q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
<glyph unicode="&#xf098;" d="M1280 343q0 11 -2 16q-3 8 -38.5 29.5t-88.5 49.5l-53 29q-5 3 -19 13t-25 15t-21 5q-18 0 -47 -32.5t-57 -65.5t-44 -33q-7 0 -16.5 3.5t-15.5 6.5t-17 9.5t-14 8.5q-99 55 -170.5 126.5t-126.5 170.5q-2 3 -8.5 14t-9.5 17t-6.5 15.5t-3.5 16.5q0 13 20.5 33.5t45 38.5 t45 39.5t20.5 36.5q0 10 -5 21t-15 25t-13 19q-3 6 -15 28.5t-25 45.5t-26.5 47.5t-25 40.5t-16.5 18t-16 2q-48 0 -101 -22q-46 -21 -80 -94.5t-34 -130.5q0 -16 2.5 -34t5 -30.5t9 -33t10 -29.5t12.5 -33t11 -30q60 -164 216.5 -320.5t320.5 -216.5q6 -2 30 -11t33 -12.5 t29.5 -10t33 -9t30.5 -5t34 -2.5q57 0 130.5 34t94.5 80q22 53 22 101zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf099;" horiz-adv-x="1664" d="M1620 1128q-67 -98 -162 -167q1 -14 1 -42q0 -130 -38 -259.5t-115.5 -248.5t-184.5 -210.5t-258 -146t-323 -54.5q-271 0 -496 145q35 -4 78 -4q225 0 401 138q-105 2 -188 64.5t-114 159.5q33 -5 61 -5q43 0 85 11q-112 23 -185.5 111.5t-73.5 205.5v4q68 -38 146 -41 q-66 44 -105 115t-39 154q0 88 44 163q121 -149 294.5 -238.5t371.5 -99.5q-8 38 -8 74q0 134 94.5 228.5t228.5 94.5q140 0 236 -102q109 21 205 78q-37 -115 -142 -178q93 10 186 50z" />
<glyph unicode="&#xf09a;" horiz-adv-x="768" d="M511 980h257l-30 -284h-227v-824h-341v824h-170v284h170v171q0 182 86 275.5t283 93.5h227v-284h-142q-39 0 -62.5 -6.5t-34 -23.5t-13.5 -34.5t-3 -49.5v-142z" />
<glyph unicode="&#xf09b;" d="M1536 640q0 -251 -146.5 -451.5t-378.5 -277.5q-27 -5 -39.5 7t-12.5 30v211q0 97 -52 142q57 6 102.5 18t94 39t81 66.5t53 105t20.5 150.5q0 121 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-86 13.5 q-44 -113 -7 -204q-79 -85 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-40 -36 -49 -103q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23 q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -89t0.5 -54q0 -18 -13 -30t-40 -7q-232 77 -378.5 277.5t-146.5 451.5q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf09c;" horiz-adv-x="1664" d="M1664 960v-256q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-192h96q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h672v192q0 185 131.5 316.5t316.5 131.5 t316.5 -131.5t131.5 -316.5z" />
<glyph unicode="&#xf09d;" horiz-adv-x="1920" d="M1760 1408q66 0 113 -47t47 -113v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600zM160 1280q-13 0 -22.5 -9.5t-9.5 -22.5v-224h1664v224q0 13 -9.5 22.5t-22.5 9.5h-1600zM1760 0q13 0 22.5 9.5t9.5 22.5v608h-1664v-608 q0 -13 9.5 -22.5t22.5 -9.5h1600zM256 128v128h256v-128h-256zM640 128v128h384v-128h-384z" />
<glyph unicode="&#xf09e;" horiz-adv-x="1408" d="M384 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 69q2 -28 -17 -48q-18 -21 -47 -21h-135q-25 0 -43 16.5t-20 41.5q-22 229 -184.5 391.5t-391.5 184.5q-25 2 -41.5 20t-16.5 43v135q0 29 21 47q17 17 43 17h5q160 -13 306 -80.5 t259 -181.5q114 -113 181.5 -259t80.5 -306zM1408 67q2 -27 -18 -47q-18 -20 -46 -20h-143q-26 0 -44.5 17.5t-19.5 42.5q-12 215 -101 408.5t-231.5 336t-336 231.5t-408.5 102q-25 1 -42.5 19.5t-17.5 43.5v143q0 28 20 46q18 18 44 18h3q262 -13 501.5 -120t425.5 -294 q187 -186 294 -425.5t120 -501.5z" />
<glyph unicode="&#xf0a0;" d="M1040 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1296 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1408 160v320q0 13 -9.5 22.5t-22.5 9.5 h-1216q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h1216q13 0 22.5 9.5t9.5 22.5zM178 640h1180l-157 482q-4 13 -16 21.5t-26 8.5h-782q-14 0 -26 -8.5t-16 -21.5zM1536 480v-320q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v320q0 25 16 75 l197 606q17 53 63 86t101 33h782q55 0 101 -33t63 -86l197 -606q16 -50 16 -75z" />
<glyph unicode="&#xf0a1;" horiz-adv-x="1792" d="M1664 896q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5v-384q0 -52 -38 -90t-90 -38q-417 347 -812 380q-58 -19 -91 -66t-31 -100.5t40 -92.5q-20 -33 -23 -65.5t6 -58t33.5 -55t48 -50t61.5 -50.5q-29 -58 -111.5 -83t-168.5 -11.5t-132 55.5q-7 23 -29.5 87.5 t-32 94.5t-23 89t-15 101t3.5 98.5t22 110.5h-122q-66 0 -113 47t-47 113v192q0 66 47 113t113 47h480q435 0 896 384q52 0 90 -38t38 -90v-384zM1536 292v954q-394 -302 -768 -343v-270q377 -42 768 -341z" />
<glyph unicode="&#xf0a2;" horiz-adv-x="1664" d="M848 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM183 128h1298q-164 181 -246.5 411.5t-82.5 484.5q0 256 -320 256t-320 -256q0 -254 -82.5 -484.5t-246.5 -411.5zM1664 128q0 -52 -38 -90t-90 -38 h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q190 161 287 397.5t97 498.5q0 165 96 262t264 117q-8 18 -8 37q0 40 28 68t68 28t68 -28t28 -68q0 -19 -8 -37q168 -20 264 -117t96 -262q0 -262 97 -498.5t287 -397.5z" />
<glyph unicode="&#xf0a3;" d="M1376 640l138 -135q30 -28 20 -70q-12 -41 -52 -51l-188 -48l53 -186q12 -41 -19 -70q-29 -31 -70 -19l-186 53l-48 -188q-10 -40 -51 -52q-12 -2 -19 -2q-31 0 -51 22l-135 138l-135 -138q-28 -30 -70 -20q-41 11 -51 52l-48 188l-186 -53q-41 -12 -70 19q-31 29 -19 70 l53 186l-188 48q-40 10 -52 51q-10 42 20 70l138 135l-138 135q-30 28 -20 70q12 41 52 51l188 48l-53 186q-12 41 19 70q29 31 70 19l186 -53l48 188q10 41 51 51q41 12 70 -19l135 -139l135 139q29 30 70 19q41 -10 51 -51l48 -188l186 53q41 12 70 -19q31 -29 19 -70 l-53 -186l188 -48q40 -10 52 -51q10 -42 -20 -70z" />
<glyph unicode="&#xf0a4;" horiz-adv-x="1792" d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 768q0 51 -39 89.5t-89 38.5h-576q0 20 15 48.5t33 55t33 68t15 84.5q0 67 -44.5 97.5t-115.5 30.5q-24 0 -90 -139q-24 -44 -37 -65q-40 -64 -112 -145q-71 -81 -101 -106 q-69 -57 -140 -57h-32v-640h32q72 0 167 -32t193.5 -64t179.5 -32q189 0 189 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5h331q52 0 90 38t38 90zM1792 769q0 -105 -75.5 -181t-180.5 -76h-169q-4 -62 -37 -119q3 -21 3 -43 q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5q-133 0 -322 69q-164 59 -223 59h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h288q10 0 21.5 4.5t23.5 14t22.5 18t24 22.5t20.5 21.5t19 21.5t14 17q65 74 100 129q13 21 33 62t37 72t40.5 63t55 49.5 t69.5 17.5q125 0 206.5 -67t81.5 -189q0 -68 -22 -128h374q104 0 180 -76t76 -179z" />
<glyph unicode="&#xf0a5;" horiz-adv-x="1792" d="M1376 128h32v640h-32q-35 0 -67.5 12t-62.5 37t-50 46t-49 54q-2 3 -3.5 4.5t-4 4.5t-4.5 5q-72 81 -112 145q-14 22 -38 68q-1 3 -10.5 22.5t-18.5 36t-20 35.5t-21.5 30.5t-18.5 11.5q-71 0 -115.5 -30.5t-44.5 -97.5q0 -43 15 -84.5t33 -68t33 -55t15 -48.5h-576 q-50 0 -89 -38.5t-39 -89.5q0 -52 38 -90t90 -38h331q-15 -17 -25 -47.5t-10 -55.5q0 -69 53 -119q-18 -32 -18 -69t17.5 -73.5t47.5 -52.5q-4 -24 -4 -56q0 -85 48.5 -126t135.5 -41q84 0 183 32t194 64t167 32zM1664 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45 t45 -19t45 19t19 45zM1792 768v-640q0 -53 -37.5 -90.5t-90.5 -37.5h-288q-59 0 -223 -59q-190 -69 -317 -69q-142 0 -230 77.5t-87 217.5l1 5q-61 76 -61 178q0 22 3 43q-33 57 -37 119h-169q-105 0 -180.5 76t-75.5 181q0 103 76 179t180 76h374q-22 60 -22 128 q0 122 81.5 189t206.5 67q38 0 69.5 -17.5t55 -49.5t40.5 -63t37 -72t33 -62q35 -55 100 -129q2 -3 14 -17t19 -21.5t20.5 -21.5t24 -22.5t22.5 -18t23.5 -14t21.5 -4.5h288q53 0 90.5 -37.5t37.5 -90.5z" />
<glyph unicode="&#xf0a6;" d="M1280 -64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 700q0 189 -167 189q-26 0 -56 -5q-16 30 -52.5 47.5t-73.5 17.5t-69 -18q-50 53 -119 53q-25 0 -55.5 -10t-47.5 -25v331q0 52 -38 90t-90 38q-51 0 -89.5 -39t-38.5 -89v-576 q-20 0 -48.5 15t-55 33t-68 33t-84.5 15q-67 0 -97.5 -44.5t-30.5 -115.5q0 -24 139 -90q44 -24 65 -37q64 -40 145 -112q81 -71 106 -101q57 -69 57 -140v-32h640v32q0 72 32 167t64 193.5t32 179.5zM1536 705q0 -133 -69 -322q-59 -164 -59 -223v-288q0 -53 -37.5 -90.5 t-90.5 -37.5h-640q-53 0 -90.5 37.5t-37.5 90.5v288q0 10 -4.5 21.5t-14 23.5t-18 22.5t-22.5 24t-21.5 20.5t-21.5 19t-17 14q-74 65 -129 100q-21 13 -62 33t-72 37t-63 40.5t-49.5 55t-17.5 69.5q0 125 67 206.5t189 81.5q68 0 128 -22v374q0 104 76 180t179 76 q105 0 181 -75.5t76 -180.5v-169q62 -4 119 -37q21 3 43 3q101 0 178 -60q139 1 219.5 -85t80.5 -227z" />
<glyph unicode="&#xf0a7;" d="M1408 576q0 84 -32 183t-64 194t-32 167v32h-640v-32q0 -35 -12 -67.5t-37 -62.5t-46 -50t-54 -49q-9 -8 -14 -12q-81 -72 -145 -112q-22 -14 -68 -38q-3 -1 -22.5 -10.5t-36 -18.5t-35.5 -20t-30.5 -21.5t-11.5 -18.5q0 -71 30.5 -115.5t97.5 -44.5q43 0 84.5 15t68 33 t55 33t48.5 15v-576q0 -50 38.5 -89t89.5 -39q52 0 90 38t38 90v331q46 -35 103 -35q69 0 119 53q32 -18 69 -18t73.5 17.5t52.5 47.5q24 -4 56 -4q85 0 126 48.5t41 135.5zM1280 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 580 q0 -142 -77.5 -230t-217.5 -87l-5 1q-76 -61 -178 -61q-22 0 -43 3q-54 -30 -119 -37v-169q0 -105 -76 -180.5t-181 -75.5q-103 0 -179 76t-76 180v374q-54 -22 -128 -22q-121 0 -188.5 81.5t-67.5 206.5q0 38 17.5 69.5t49.5 55t63 40.5t72 37t62 33q55 35 129 100 q3 2 17 14t21.5 19t21.5 20.5t22.5 24t18 22.5t14 23.5t4.5 21.5v288q0 53 37.5 90.5t90.5 37.5h640q53 0 90.5 -37.5t37.5 -90.5v-288q0 -59 59 -223q69 -190 69 -317z" />
<glyph unicode="&#xf0a8;" d="M1280 576v128q0 26 -19 45t-45 19h-502l189 189q19 19 19 45t-19 45l-91 91q-18 18 -45 18t-45 -18l-362 -362l-91 -91q-18 -18 -18 -45t18 -45l91 -91l362 -362q18 -18 45 -18t45 18l91 91q18 18 18 45t-18 45l-189 189h502q26 0 45 19t19 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf0a9;" d="M1285 640q0 27 -18 45l-91 91l-362 362q-18 18 -45 18t-45 -18l-91 -91q-18 -18 -18 -45t18 -45l189 -189h-502q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h502l-189 -189q-19 -19 -19 -45t19 -45l91 -91q18 -18 45 -18t45 18l362 362l91 91q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf0aa;" d="M1284 641q0 27 -18 45l-362 362l-91 91q-18 18 -45 18t-45 -18l-91 -91l-362 -362q-18 -18 -18 -45t18 -45l91 -91q18 -18 45 -18t45 18l189 189v-502q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v502l189 -189q19 -19 45 -19t45 19l91 91q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf0ab;" d="M1284 639q0 27 -18 45l-91 91q-18 18 -45 18t-45 -18l-189 -189v502q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-502l-189 189q-19 19 -45 19t-45 -19l-91 -91q-18 -18 -18 -45t18 -45l362 -362l91 -91q18 -18 45 -18t45 18l91 91l362 362q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf0ac;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1042 887q-2 -1 -9.5 -9.5t-13.5 -9.5q2 0 4.5 5t5 11t3.5 7q6 7 22 15q14 6 52 12q34 8 51 -11 q-2 2 9.5 13t14.5 12q3 2 15 4.5t15 7.5l2 22q-12 -1 -17.5 7t-6.5 21q0 -2 -6 -8q0 7 -4.5 8t-11.5 -1t-9 -1q-10 3 -15 7.5t-8 16.5t-4 15q-2 5 -9.5 10.5t-9.5 10.5q-1 2 -2.5 5.5t-3 6.5t-4 5.5t-5.5 2.5t-7 -5t-7.5 -10t-4.5 -5q-3 2 -6 1.5t-4.5 -1t-4.5 -3t-5 -3.5 q-3 -2 -8.5 -3t-8.5 -2q15 5 -1 11q-10 4 -16 3q9 4 7.5 12t-8.5 14h5q-1 4 -8.5 8.5t-17.5 8.5t-13 6q-8 5 -34 9.5t-33 0.5q-5 -6 -4.5 -10.5t4 -14t3.5 -12.5q1 -6 -5.5 -13t-6.5 -12q0 -7 14 -15.5t10 -21.5q-3 -8 -16 -16t-16 -12q-5 -8 -1.5 -18.5t10.5 -16.5 q2 -2 1.5 -4t-3.5 -4.5t-5.5 -4t-6.5 -3.5l-3 -2q-11 -5 -20.5 6t-13.5 26q-7 25 -16 30q-23 8 -29 -1q-5 13 -41 26q-25 9 -58 4q6 1 0 15q-7 15 -19 12q3 6 4 17.5t1 13.5q3 13 12 23q1 1 7 8.5t9.5 13.5t0.5 6q35 -4 50 11q5 5 11.5 17t10.5 17q9 6 14 5.5t14.5 -5.5 t14.5 -5q14 -1 15.5 11t-7.5 20q12 -1 3 17q-5 7 -8 9q-12 4 -27 -5q-8 -4 2 -8q-1 1 -9.5 -10.5t-16.5 -17.5t-16 5q-1 1 -5.5 13.5t-9.5 13.5q-8 0 -16 -15q3 8 -11 15t-24 8q19 12 -8 27q-7 4 -20.5 5t-19.5 -4q-5 -7 -5.5 -11.5t5 -8t10.5 -5.5t11.5 -4t8.5 -3 q14 -10 8 -14q-2 -1 -8.5 -3.5t-11.5 -4.5t-6 -4q-3 -4 0 -14t-2 -14q-5 5 -9 17.5t-7 16.5q7 -9 -25 -6l-10 1q-4 0 -16 -2t-20.5 -1t-13.5 8q-4 8 0 20q1 4 4 2q-4 3 -11 9.5t-10 8.5q-46 -15 -94 -41q6 -1 12 1q5 2 13 6.5t10 5.5q34 14 42 7l5 5q14 -16 20 -25 q-7 4 -30 1q-20 -6 -22 -12q7 -12 5 -18q-4 3 -11.5 10t-14.5 11t-15 5q-16 0 -22 -1q-146 -80 -235 -222q7 -7 12 -8q4 -1 5 -9t2.5 -11t11.5 3q9 -8 3 -19q1 1 44 -27q19 -17 21 -21q3 -11 -10 -18q-1 2 -9 9t-9 4q-3 -5 0.5 -18.5t10.5 -12.5q-7 0 -9.5 -16t-2.5 -35.5 t-1 -23.5l2 -1q-3 -12 5.5 -34.5t21.5 -19.5q-13 -3 20 -43q6 -8 8 -9q3 -2 12 -7.5t15 -10t10 -10.5q4 -5 10 -22.5t14 -23.5q-2 -6 9.5 -20t10.5 -23q-1 0 -2.5 -1t-2.5 -1q3 -7 15.5 -14t15.5 -13q1 -3 2 -10t3 -11t8 -2q2 20 -24 62q-15 25 -17 29q-3 5 -5.5 15.5 t-4.5 14.5q2 0 6 -1.5t8.5 -3.5t7.5 -4t2 -3q-3 -7 2 -17.5t12 -18.5t17 -19t12 -13q6 -6 14 -19.5t0 -13.5q9 0 20 -10t17 -20q5 -8 8 -26t5 -24q2 -7 8.5 -13.5t12.5 -9.5l16 -8t13 -7q5 -2 18.5 -10.5t21.5 -11.5q10 -4 16 -4t14.5 2.5t13.5 3.5q15 2 29 -15t21 -21 q36 -19 55 -11q-2 -1 0.5 -7.5t8 -15.5t9 -14.5t5.5 -8.5q5 -6 18 -15t18 -15q6 4 7 9q-3 -8 7 -20t18 -10q14 3 14 32q-31 -15 -49 18q0 1 -2.5 5.5t-4 8.5t-2.5 8.5t0 7.5t5 3q9 0 10 3.5t-2 12.5t-4 13q-1 8 -11 20t-12 15q-5 -9 -16 -8t-16 9q0 -1 -1.5 -5.5t-1.5 -6.5 q-13 0 -15 1q1 3 2.5 17.5t3.5 22.5q1 4 5.5 12t7.5 14.5t4 12.5t-4.5 9.5t-17.5 2.5q-19 -1 -26 -20q-1 -3 -3 -10.5t-5 -11.5t-9 -7q-7 -3 -24 -2t-24 5q-13 8 -22.5 29t-9.5 37q0 10 2.5 26.5t3 25t-5.5 24.5q3 2 9 9.5t10 10.5q2 1 4.5 1.5t4.5 0t4 1.5t3 6q-1 1 -4 3 q-3 3 -4 3q7 -3 28.5 1.5t27.5 -1.5q15 -11 22 2q0 1 -2.5 9.5t-0.5 13.5q5 -27 29 -9q3 -3 15.5 -5t17.5 -5q3 -2 7 -5.5t5.5 -4.5t5 0.5t8.5 6.5q10 -14 12 -24q11 -40 19 -44q7 -3 11 -2t4.5 9.5t0 14t-1.5 12.5l-1 8v18l-1 8q-15 3 -18.5 12t1.5 18.5t15 18.5q1 1 8 3.5 t15.5 6.5t12.5 8q21 19 15 35q7 0 11 9q-1 0 -5 3t-7.5 5t-4.5 2q9 5 2 16q5 3 7.5 11t7.5 10q9 -12 21 -2q7 8 1 16q5 7 20.5 10.5t18.5 9.5q7 -2 8 2t1 12t3 12q4 5 15 9t13 5l17 11q3 4 0 4q18 -2 31 11q10 11 -6 20q3 6 -3 9.5t-15 5.5q3 1 11.5 0.5t10.5 1.5 q15 10 -7 16q-17 5 -43 -12zM879 10q206 36 351 189q-3 3 -12.5 4.5t-12.5 3.5q-18 7 -24 8q1 7 -2.5 13t-8 9t-12.5 8t-11 7q-2 2 -7 6t-7 5.5t-7.5 4.5t-8.5 2t-10 -1l-3 -1q-3 -1 -5.5 -2.5t-5.5 -3t-4 -3t0 -2.5q-21 17 -36 22q-5 1 -11 5.5t-10.5 7t-10 1.5t-11.5 -7 q-5 -5 -6 -15t-2 -13q-7 5 0 17.5t2 18.5q-3 6 -10.5 4.5t-12 -4.5t-11.5 -8.5t-9 -6.5t-8.5 -5.5t-8.5 -7.5q-3 -4 -6 -12t-5 -11q-2 4 -11.5 6.5t-9.5 5.5q2 -10 4 -35t5 -38q7 -31 -12 -48q-27 -25 -29 -40q-4 -22 12 -26q0 -7 -8 -20.5t-7 -21.5q0 -6 2 -16z" />
<glyph unicode="&#xf0ad;" horiz-adv-x="1664" d="M384 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1028 484l-682 -682q-37 -37 -90 -37q-52 0 -91 37l-106 108q-38 36 -38 90q0 53 38 91l681 681q39 -98 114.5 -173.5t173.5 -114.5zM1662 919q0 -39 -23 -106q-47 -134 -164.5 -217.5 t-258.5 -83.5q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q58 0 121.5 -16.5t107.5 -46.5q16 -11 16 -28t-16 -28l-293 -169v-224l193 -107q5 3 79 48.5t135.5 81t70.5 35.5q15 0 23.5 -10t8.5 -25z" />
<glyph unicode="&#xf0ae;" horiz-adv-x="1792" d="M1024 128h640v128h-640v-128zM640 640h1024v128h-1024v-128zM1280 1152h384v128h-384v-128zM1792 320v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 832v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19 t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0b0;" horiz-adv-x="1408" d="M1403 1241q17 -41 -14 -70l-493 -493v-742q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-256 256q-19 19 -19 45v486l-493 493q-31 29 -14 70q17 39 59 39h1280q42 0 59 -39z" />
<glyph unicode="&#xf0b1;" horiz-adv-x="1792" d="M640 1280h512v128h-512v-128zM1792 640v-480q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v480h672v-160q0 -26 19 -45t45 -19h320q26 0 45 19t19 45v160h672zM1024 640v-128h-256v128h256zM1792 1120v-384h-1792v384q0 66 47 113t113 47h352v160q0 40 28 68 t68 28h576q40 0 68 -28t28 -68v-160h352q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf0b2;" d="M1283 995l-355 -355l355 -355l144 144q29 31 70 14q39 -17 39 -59v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l144 144l-355 355l-355 -355l144 -144q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l144 -144 l355 355l-355 355l-144 -144q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v448q0 26 19 45t45 19h448q42 0 59 -40q17 -39 -14 -69l-144 -144l355 -355l355 355l-144 144q-31 30 -14 69q17 40 59 40h448q26 0 45 -19t19 -45v-448q0 -42 -39 -59q-13 -5 -25 -5q-26 0 -45 19z " />
<glyph unicode="&#xf0c0;" horiz-adv-x="1920" d="M593 640q-162 -5 -265 -128h-134q-82 0 -138 40.5t-56 118.5q0 353 124 353q6 0 43.5 -21t97.5 -42.5t119 -21.5q67 0 133 23q-5 -37 -5 -66q0 -139 81 -256zM1664 3q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5 t43 97.5t62 81t85.5 53.5t111.5 20q10 0 43 -21.5t73 -48t107 -48t135 -21.5t135 21.5t107 48t73 48t43 21.5q61 0 111.5 -20t85.5 -53.5t62 -81t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM640 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75 t75 -181zM1344 896q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5zM1920 671q0 -78 -56 -118.5t-138 -40.5h-134q-103 123 -265 128q81 117 81 256q0 29 -5 66q66 -23 133 -23q59 0 119 21.5t97.5 42.5 t43.5 21q124 0 124 -353zM1792 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181z" />
<glyph unicode="&#xf0c1;" horiz-adv-x="1664" d="M1456 320q0 40 -28 68l-208 208q-28 28 -68 28q-42 0 -72 -32q3 -3 19 -18.5t21.5 -21.5t15 -19t13 -25.5t3.5 -27.5q0 -40 -28 -68t-68 -28q-15 0 -27.5 3.5t-25.5 13t-19 15t-21.5 21.5t-18.5 19q-33 -31 -33 -73q0 -40 28 -68l206 -207q27 -27 68 -27q40 0 68 26 l147 146q28 28 28 67zM753 1025q0 40 -28 68l-206 207q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l208 -208q27 -27 68 -27q42 0 72 31q-3 3 -19 18.5t-21.5 21.5t-15 19t-13 25.5t-3.5 27.5q0 40 28 68t68 28q15 0 27.5 -3.5t25.5 -13t19 -15 t21.5 -21.5t18.5 -19q33 31 33 73zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-206 207q-83 83 -83 203q0 123 88 209l-88 88q-86 -88 -208 -88q-120 0 -204 84l-208 208q-84 84 -84 204t85 203l147 146q83 83 203 83q121 0 204 -85l206 -207 q83 -83 83 -203q0 -123 -88 -209l88 -88q86 88 208 88q120 0 204 -84l208 -208q84 -84 84 -204z" />
<glyph unicode="&#xf0c2;" horiz-adv-x="1920" d="M1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088q-185 0 -316.5 131.5t-131.5 316.5q0 132 71 241.5t187 163.5q-2 28 -2 43q0 212 150 362t362 150q158 0 286.5 -88t187.5 -230q70 62 166 62q106 0 181 -75t75 -181q0 -75 -41 -138q129 -30 213 -134.5t84 -239.5z " />
<glyph unicode="&#xf0c3;" horiz-adv-x="1664" d="M1527 88q56 -89 21.5 -152.5t-140.5 -63.5h-1152q-106 0 -140.5 63.5t21.5 152.5l503 793v399h-64q-26 0 -45 19t-19 45t19 45t45 19h512q26 0 45 -19t19 -45t-19 -45t-45 -19h-64v-399zM748 813l-272 -429h712l-272 429l-20 31v37v399h-128v-399v-37z" />
<glyph unicode="&#xf0c4;" horiz-adv-x="1792" d="M960 640q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1260 576l507 -398q28 -20 25 -56q-5 -35 -35 -51l-128 -64q-13 -7 -29 -7q-17 0 -31 8l-690 387l-110 -66q-8 -4 -12 -5q14 -49 10 -97q-7 -77 -56 -147.5t-132 -123.5q-132 -84 -277 -84 q-136 0 -222 78q-90 84 -79 207q7 76 56 147t131 124q132 84 278 84q83 0 151 -31q9 13 22 22l122 73l-122 73q-13 9 -22 22q-68 -31 -151 -31q-146 0 -278 84q-82 53 -131 124t-56 147q-5 59 15.5 113t63.5 93q85 79 222 79q145 0 277 -84q83 -52 132 -123t56 -148 q4 -48 -10 -97q4 -1 12 -5l110 -66l690 387q14 8 31 8q16 0 29 -7l128 -64q30 -16 35 -51q3 -36 -25 -56zM579 836q46 42 21 108t-106 117q-92 59 -192 59q-74 0 -113 -36q-46 -42 -21 -108t106 -117q92 -59 192 -59q74 0 113 36zM494 91q81 51 106 117t-21 108 q-39 36 -113 36q-100 0 -192 -59q-81 -51 -106 -117t21 -108q39 -36 113 -36q100 0 192 59zM672 704l96 -58v11q0 36 33 56l14 8l-79 47l-26 -26q-3 -3 -10 -11t-12 -12q-2 -2 -4 -3.5t-3 -2.5zM896 480l96 -32l736 576l-128 64l-768 -431v-113l-160 -96l9 -8q2 -2 7 -6 q4 -4 11 -12t11 -12l26 -26zM1600 64l128 64l-520 408l-177 -138q-2 -3 -13 -7z" />
<glyph unicode="&#xf0c5;" horiz-adv-x="1792" d="M1696 1152q40 0 68 -28t28 -68v-1216q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v288h-544q-40 0 -68 28t-28 68v672q0 40 20 88t48 76l408 408q28 28 76 48t88 20h416q40 0 68 -28t28 -68v-328q68 40 128 40h416zM1152 939l-299 -299h299v299zM512 1323l-299 -299 h299v299zM708 676l316 316v416h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h512v256q0 40 20 88t48 76zM1664 -128v1152h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h896z" />
<glyph unicode="&#xf0c6;" horiz-adv-x="1408" d="M1404 151q0 -117 -79 -196t-196 -79q-135 0 -235 100l-777 776q-113 115 -113 271q0 159 110 270t269 111q158 0 273 -113l605 -606q10 -10 10 -22q0 -16 -30.5 -46.5t-46.5 -30.5q-13 0 -23 10l-606 607q-79 77 -181 77q-106 0 -179 -75t-73 -181q0 -105 76 -181 l776 -777q63 -63 145 -63q64 0 106 42t42 106q0 82 -63 145l-581 581q-26 24 -60 24q-29 0 -48 -19t-19 -48q0 -32 25 -59l410 -410q10 -10 10 -22q0 -16 -31 -47t-47 -31q-12 0 -22 10l-410 410q-63 61 -63 149q0 82 57 139t139 57q88 0 149 -63l581 -581q100 -98 100 -235 z" />
<glyph unicode="&#xf0c7;" d="M384 0h768v384h-768v-384zM1280 0h128v896q0 14 -10 38.5t-20 34.5l-281 281q-10 10 -34 20t-39 10v-416q0 -40 -28 -68t-68 -28h-576q-40 0 -68 28t-28 68v416h-128v-1280h128v416q0 40 28 68t68 28h832q40 0 68 -28t28 -68v-416zM896 928v320q0 13 -9.5 22.5t-22.5 9.5 h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5zM1536 896v-928q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h928q40 0 88 -20t76 -48l280 -280q28 -28 48 -76t20 -88z" />
<glyph unicode="&#xf0c8;" d="M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf0c9;" d="M1536 192v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 704v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 1216v-128q0 -26 -19 -45 t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0ca;" horiz-adv-x="1792" d="M384 128q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 640q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5 t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1152q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z M1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
<glyph unicode="&#xf0cb;" horiz-adv-x="1792" d="M381 -84q0 -80 -54.5 -126t-135.5 -46q-106 0 -172 66l57 88q49 -45 106 -45q29 0 50.5 14.5t21.5 42.5q0 64 -105 56l-26 56q8 10 32.5 43.5t42.5 54t37 38.5v1q-16 0 -48.5 -1t-48.5 -1v-53h-106v152h333v-88l-95 -115q51 -12 81 -49t30 -88zM383 543v-159h-362 q-6 36 -6 54q0 51 23.5 93t56.5 68t66 47.5t56.5 43.5t23.5 45q0 25 -14.5 38.5t-39.5 13.5q-46 0 -81 -58l-85 59q24 51 71.5 79.5t105.5 28.5q73 0 123 -41.5t50 -112.5q0 -50 -34 -91.5t-75 -64.5t-75.5 -50.5t-35.5 -52.5h127v60h105zM1792 224v-192q0 -13 -9.5 -22.5 t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1123v-99h-335v99h107q0 41 0.5 122t0.5 121v12h-2q-8 -17 -50 -54l-71 76l136 127h106v-404h108zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5 t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
<glyph unicode="&#xf0cc;" horiz-adv-x="1792" d="M1760 640q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1728q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h1728zM483 704q-28 35 -51 80q-48 97 -48 188q0 181 134 309q133 127 393 127q50 0 167 -19q66 -12 177 -48q10 -38 21 -118q14 -123 14 -183q0 -18 -5 -45l-12 -3l-84 6 l-14 2q-50 149 -103 205q-88 91 -210 91q-114 0 -182 -59q-67 -58 -67 -146q0 -73 66 -140t279 -129q69 -20 173 -66q58 -28 95 -52h-743zM990 448h411q7 -39 7 -92q0 -111 -41 -212q-23 -55 -71 -104q-37 -35 -109 -81q-80 -48 -153 -66q-80 -21 -203 -21q-114 0 -195 23 l-140 40q-57 16 -72 28q-8 8 -8 22v13q0 108 -2 156q-1 30 0 68l2 37v44l102 2q15 -34 30 -71t22.5 -56t12.5 -27q35 -57 80 -94q43 -36 105 -57q59 -22 132 -22q64 0 139 27q77 26 122 86q47 61 47 129q0 84 -81 157q-34 29 -137 71z" />
<glyph unicode="&#xf0cd;" d="M48 1313q-37 2 -45 4l-3 88q13 1 40 1q60 0 112 -4q132 -7 166 -7q86 0 168 3q116 4 146 5q56 0 86 2l-1 -14l2 -64v-9q-60 -9 -124 -9q-60 0 -79 -25q-13 -14 -13 -132q0 -13 0.5 -32.5t0.5 -25.5l1 -229l14 -280q6 -124 51 -202q35 -59 96 -92q88 -47 177 -47 q104 0 191 28q56 18 99 51q48 36 65 64q36 56 53 114q21 73 21 229q0 79 -3.5 128t-11 122.5t-13.5 159.5l-4 59q-5 67 -24 88q-34 35 -77 34l-100 -2l-14 3l2 86h84l205 -10q76 -3 196 10l18 -2q6 -38 6 -51q0 -7 -4 -31q-45 -12 -84 -13q-73 -11 -79 -17q-15 -15 -15 -41 q0 -7 1.5 -27t1.5 -31q8 -19 22 -396q6 -195 -15 -304q-15 -76 -41 -122q-38 -65 -112 -123q-75 -57 -182 -89q-109 -33 -255 -33q-167 0 -284 46q-119 47 -179 122q-61 76 -83 195q-16 80 -16 237v333q0 188 -17 213q-25 36 -147 39zM1536 -96v64q0 14 -9 23t-23 9h-1472 q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h1472q14 0 23 9t9 23z" />
<glyph unicode="&#xf0ce;" horiz-adv-x="1664" d="M512 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23 v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 160v192 q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192 q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1664 1248v-1088q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1344q66 0 113 -47t47 -113 z" />
<glyph unicode="&#xf0d0;" horiz-adv-x="1664" d="M1190 955l293 293l-107 107l-293 -293zM1637 1248q0 -27 -18 -45l-1286 -1286q-18 -18 -45 -18t-45 18l-198 198q-18 18 -18 45t18 45l1286 1286q18 18 45 18t45 -18l198 -198q18 -18 18 -45zM286 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM636 1276 l196 -60l-196 -60l-60 -196l-60 196l-196 60l196 60l60 196zM1566 798l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM926 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98z" />
<glyph unicode="&#xf0d1;" horiz-adv-x="1792" d="M640 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM256 640h384v256h-158q-13 0 -22 -9l-195 -195q-9 -9 -9 -22v-30zM1536 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1792 1216v-1024q0 -15 -4 -26.5t-13.5 -18.5 t-16.5 -11.5t-23.5 -6t-22.5 -2t-25.5 0t-22.5 0.5q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-64q-3 0 -22.5 -0.5t-25.5 0t-22.5 2t-23.5 6t-16.5 11.5t-13.5 18.5t-4 26.5q0 26 19 45t45 19v320q0 8 -0.5 35t0 38 t2.5 34.5t6.5 37t14 30.5t22.5 30l198 198q19 19 50.5 32t58.5 13h160v192q0 26 19 45t45 19h1024q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0d2;" d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103q-111 0 -218 32q59 93 78 164q9 34 54 211q20 -39 73 -67.5t114 -28.5q121 0 216 68.5t147 188.5t52 270q0 114 -59.5 214t-172.5 163t-255 63q-105 0 -196 -29t-154.5 -77t-109 -110.5t-67 -129.5t-21.5 -134 q0 -104 40 -183t117 -111q30 -12 38 20q2 7 8 31t8 30q6 23 -11 43q-51 61 -51 151q0 151 104.5 259.5t273.5 108.5q151 0 235.5 -82t84.5 -213q0 -170 -68.5 -289t-175.5 -119q-61 0 -98 43.5t-23 104.5q8 35 26.5 93.5t30 103t11.5 75.5q0 50 -27 83t-77 33 q-62 0 -105 -57t-43 -142q0 -73 25 -122l-99 -418q-17 -70 -13 -177q-206 91 -333 281t-127 423q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf0d3;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-725q85 122 108 210q9 34 53 209q21 -39 73.5 -67t112.5 -28q181 0 295.5 147.5t114.5 373.5q0 84 -35 162.5t-96.5 139t-152.5 97t-197 36.5q-104 0 -194.5 -28.5t-153 -76.5 t-107.5 -109.5t-66.5 -128t-21.5 -132.5q0 -102 39.5 -180t116.5 -110q13 -5 23.5 0t14.5 19q10 44 15 61q6 23 -11 42q-50 62 -50 150q0 150 103.5 256.5t270.5 106.5q149 0 232.5 -81t83.5 -210q0 -168 -67.5 -286t-173.5 -118q-60 0 -97 43.5t-23 103.5q8 34 26.5 92.5 t29.5 102t11 74.5q0 49 -26.5 81.5t-75.5 32.5q-61 0 -103.5 -56.5t-42.5 -139.5q0 -72 24 -121l-98 -414q-24 -100 -7 -254h-183q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960z" />
<glyph unicode="&#xf0d4;" d="M678 -57q0 -38 -10 -71h-380q-95 0 -171.5 56.5t-103.5 147.5q24 45 69 77.5t100 49.5t107 24t107 7q32 0 49 -2q6 -4 30.5 -21t33 -23t31 -23t32 -25.5t27.5 -25.5t26.5 -29.5t21 -30.5t17.5 -34.5t9.5 -36t4.5 -40.5zM385 294q-234 -7 -385 -85v433q103 -118 273 -118 q32 0 70 5q-21 -61 -21 -86q0 -67 63 -149zM558 805q0 -100 -43.5 -160.5t-140.5 -60.5q-51 0 -97 26t-78 67.5t-56 93.5t-35.5 104t-11.5 99q0 96 51.5 165t144.5 69q66 0 119 -41t84 -104t47 -130t16 -128zM1536 896v-736q0 -119 -84.5 -203.5t-203.5 -84.5h-468 q39 73 39 157q0 66 -22 122.5t-55.5 93t-72 71t-72 59.5t-55.5 54.5t-22 59.5q0 36 23 68t56 61.5t65.5 64.5t55.5 93t23 131t-26.5 145.5t-75.5 118.5q-6 6 -14 11t-12.5 7.5t-10 9.5t-10.5 17h135l135 64h-437q-138 0 -244.5 -38.5t-182.5 -133.5q0 126 81 213t207 87h960 q119 0 203.5 -84.5t84.5 -203.5v-96h-256v256h-128v-256h-256v-128h256v-256h128v256h256z" />
<glyph unicode="&#xf0d5;" horiz-adv-x="1664" d="M876 71q0 21 -4.5 40.5t-9.5 36t-17.5 34.5t-21 30.5t-26.5 29.5t-27.5 25.5t-32 25.5t-31 23t-33 23t-30.5 21q-17 2 -50 2q-54 0 -106 -7t-108 -25t-98 -46t-69 -75t-27 -107q0 -68 35.5 -121.5t93 -84t120.5 -45.5t127 -15q59 0 112.5 12.5t100.5 39t74.5 73.5 t27.5 110zM756 933q0 60 -16.5 127.5t-47 130.5t-84 104t-119.5 41q-93 0 -144 -69t-51 -165q0 -47 11.5 -99t35.5 -104t56 -93.5t78 -67.5t97 -26q97 0 140.5 60.5t43.5 160.5zM625 1408h437l-135 -79h-135q71 -45 110 -126t39 -169q0 -74 -23 -131.5t-56 -92.5t-66 -64.5 t-56 -61t-23 -67.5q0 -26 16.5 -51t43 -48t58.5 -48t64 -55.5t58.5 -66t43 -85t16.5 -106.5q0 -160 -140 -282q-152 -131 -420 -131q-59 0 -119.5 10t-122 33.5t-108.5 58t-77 89t-30 121.5q0 61 37 135q32 64 96 110.5t145 71t155 36t150 13.5q-64 83 -64 149q0 12 2 23.5 t5 19.5t8 21.5t7 21.5q-40 -5 -70 -5q-149 0 -255.5 98t-106.5 246q0 140 95 250.5t234 141.5q94 20 187 20zM1664 1152v-128h-256v-256h-128v256h-256v128h256v256h128v-256h256z" />
<glyph unicode="&#xf0d6;" horiz-adv-x="1920" d="M768 384h384v96h-128v448h-114l-148 -137l77 -80q42 37 55 57h2v-288h-128v-96zM1280 640q0 -70 -21 -142t-59.5 -134t-101.5 -101t-138 -39t-138 39t-101.5 101t-59.5 134t-21 142t21 142t59.5 134t101.5 101t138 39t138 -39t101.5 -101t59.5 -134t21 -142zM1792 384 v512q-106 0 -181 75t-75 181h-1152q0 -106 -75 -181t-181 -75v-512q106 0 181 -75t75 -181h1152q0 106 75 181t181 75zM1920 1216v-1152q0 -26 -19 -45t-45 -19h-1792q-26 0 -45 19t-19 45v1152q0 26 19 45t45 19h1792q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0d7;" horiz-adv-x="1024" d="M1024 832q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0d8;" horiz-adv-x="1024" d="M1024 320q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
<glyph unicode="&#xf0d9;" horiz-adv-x="640" d="M640 1088v-896q0 -26 -19 -45t-45 -19t-45 19l-448 448q-19 19 -19 45t19 45l448 448q19 19 45 19t45 -19t19 -45z" />
<glyph unicode="&#xf0da;" horiz-adv-x="640" d="M576 640q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19t-19 45v896q0 26 19 45t45 19t45 -19l448 -448q19 -19 19 -45z" />
<glyph unicode="&#xf0db;" horiz-adv-x="1664" d="M160 0h608v1152h-640v-1120q0 -13 9.5 -22.5t22.5 -9.5zM1536 32v1120h-640v-1152h608q13 0 22.5 9.5t9.5 22.5zM1664 1248v-1216q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1344q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf0dc;" horiz-adv-x="1024" d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45zM1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
<glyph unicode="&#xf0dd;" horiz-adv-x="1024" d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0de;" horiz-adv-x="1024" d="M1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
<glyph unicode="&#xf0e0;" horiz-adv-x="1792" d="M1792 826v-794q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v794q44 -49 101 -87q362 -246 497 -345q57 -42 92.5 -65.5t94.5 -48t110 -24.5h1h1q51 0 110 24.5t94.5 48t92.5 65.5q170 123 498 345q57 39 100 87zM1792 1120q0 -79 -49 -151t-122 -123 q-376 -261 -468 -325q-10 -7 -42.5 -30.5t-54 -38t-52 -32.5t-57.5 -27t-50 -9h-1h-1q-23 0 -50 9t-57.5 27t-52 32.5t-54 38t-42.5 30.5q-91 64 -262 182.5t-205 142.5q-62 42 -117 115.5t-55 136.5q0 78 41.5 130t118.5 52h1472q65 0 112.5 -47t47.5 -113z" />
<glyph unicode="&#xf0e1;" d="M349 911v-991h-330v991h330zM370 1217q1 -73 -50.5 -122t-135.5 -49h-2q-82 0 -132 49t-50 122q0 74 51.5 122.5t134.5 48.5t133 -48.5t51 -122.5zM1536 488v-568h-329v530q0 105 -40.5 164.5t-126.5 59.5q-63 0 -105.5 -34.5t-63.5 -85.5q-11 -30 -11 -81v-553h-329 q2 399 2 647t-1 296l-1 48h329v-144h-2q20 32 41 56t56.5 52t87 43.5t114.5 15.5q171 0 275 -113.5t104 -332.5z" />
<glyph unicode="&#xf0e2;" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5 t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298z" />
<glyph unicode="&#xf0e3;" horiz-adv-x="1792" d="M1771 0q0 -53 -37 -90l-107 -108q-39 -37 -91 -37q-53 0 -90 37l-363 364q-38 36 -38 90q0 53 43 96l-256 256l-126 -126q-14 -14 -34 -14t-34 14q2 -2 12.5 -12t12.5 -13t10 -11.5t10 -13.5t6 -13.5t5.5 -16.5t1.5 -18q0 -38 -28 -68q-3 -3 -16.5 -18t-19 -20.5 t-18.5 -16.5t-22 -15.5t-22 -9t-26 -4.5q-40 0 -68 28l-408 408q-28 28 -28 68q0 13 4.5 26t9 22t15.5 22t16.5 18.5t20.5 19t18 16.5q30 28 68 28q10 0 18 -1.5t16.5 -5.5t13.5 -6t13.5 -10t11.5 -10t13 -12.5t12 -12.5q-14 14 -14 34t14 34l348 348q14 14 34 14t34 -14 q-2 2 -12.5 12t-12.5 13t-10 11.5t-10 13.5t-6 13.5t-5.5 16.5t-1.5 18q0 38 28 68q3 3 16.5 18t19 20.5t18.5 16.5t22 15.5t22 9t26 4.5q40 0 68 -28l408 -408q28 -28 28 -68q0 -13 -4.5 -26t-9 -22t-15.5 -22t-16.5 -18.5t-20.5 -19t-18 -16.5q-30 -28 -68 -28 q-10 0 -18 1.5t-16.5 5.5t-13.5 6t-13.5 10t-11.5 10t-13 12.5t-12 12.5q14 -14 14 -34t-14 -34l-126 -126l256 -256q43 43 96 43q52 0 91 -37l363 -363q37 -39 37 -91z" />
<glyph unicode="&#xf0e4;" horiz-adv-x="1792" d="M384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM576 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1004 351l101 382q6 26 -7.5 48.5t-38.5 29.5 t-48 -6.5t-30 -39.5l-101 -382q-60 -5 -107 -43.5t-63 -98.5q-20 -77 20 -146t117 -89t146 20t89 117q16 60 -6 117t-72 91zM1664 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 1024q0 53 -37.5 90.5 t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1472 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1792 384q0 -261 -141 -483q-19 -29 -54 -29h-1402q-35 0 -54 29 q-141 221 -141 483q0 182 71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
<glyph unicode="&#xf0e5;" horiz-adv-x="1792" d="M896 1152q-204 0 -381.5 -69.5t-282 -187.5t-104.5 -255q0 -112 71.5 -213.5t201.5 -175.5l87 -50l-27 -96q-24 -91 -70 -172q152 63 275 171l43 38l57 -6q69 -8 130 -8q204 0 381.5 69.5t282 187.5t104.5 255t-104.5 255t-282 187.5t-381.5 69.5zM1792 640 q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22h-5q-15 0 -27 10.5t-16 27.5v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281q0 174 120 321.5 t326 233t450 85.5t450 -85.5t326 -233t120 -321.5z" />
<glyph unicode="&#xf0e6;" horiz-adv-x="1792" d="M704 1152q-153 0 -286 -52t-211.5 -141t-78.5 -191q0 -82 53 -158t149 -132l97 -56l-35 -84q34 20 62 39l44 31l53 -10q78 -14 153 -14q153 0 286 52t211.5 141t78.5 191t-78.5 191t-211.5 141t-286 52zM704 1280q191 0 353.5 -68.5t256.5 -186.5t94 -257t-94 -257 t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224q0 139 94 257t256.5 186.5 t353.5 68.5zM1526 111q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129 q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230q0 -120 -71 -224.5t-195 -176.5z" />
<glyph unicode="&#xf0e7;" horiz-adv-x="896" d="M885 970q18 -20 7 -44l-540 -1157q-13 -25 -42 -25q-4 0 -14 2q-17 5 -25.5 19t-4.5 30l197 808l-406 -101q-4 -1 -12 -1q-18 0 -31 11q-18 15 -13 39l201 825q4 14 16 23t28 9h328q19 0 32 -12.5t13 -29.5q0 -8 -5 -18l-171 -463l396 98q8 2 12 2q19 0 34 -15z" />
<glyph unicode="&#xf0e8;" horiz-adv-x="1792" d="M1792 288v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320 q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192q0 52 38 90t90 38h512v192h-96q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h320q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-96v-192h512q52 0 90 -38t38 -90v-192h96q40 0 68 -28t28 -68 z" />
<glyph unicode="&#xf0e9;" horiz-adv-x="1664" d="M896 708v-580q0 -104 -76 -180t-180 -76t-180 76t-76 180q0 26 19 45t45 19t45 -19t19 -45q0 -50 39 -89t89 -39t89 39t39 89v580q33 11 64 11t64 -11zM1664 681q0 -13 -9.5 -22.5t-22.5 -9.5q-11 0 -23 10q-49 46 -93 69t-102 23q-68 0 -128 -37t-103 -97 q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -28 -17q-18 0 -29 17q-4 6 -14.5 24t-17.5 28q-43 60 -102.5 97t-127.5 37t-127.5 -37t-102.5 -97q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -29 -17q-17 0 -28 17q-4 6 -14.5 24t-17.5 28q-43 60 -103 97t-128 37q-58 0 -102 -23t-93 -69 q-12 -10 -23 -10q-13 0 -22.5 9.5t-9.5 22.5q0 5 1 7q45 183 172.5 319.5t298 204.5t360.5 68q140 0 274.5 -40t246.5 -113.5t194.5 -187t115.5 -251.5q1 -2 1 -7zM896 1408v-98q-42 2 -64 2t-64 -2v98q0 26 19 45t45 19t45 -19t19 -45z" />
<glyph unicode="&#xf0ea;" horiz-adv-x="1792" d="M768 -128h896v640h-416q-40 0 -68 28t-28 68v416h-384v-1152zM1024 1312v64q0 13 -9.5 22.5t-22.5 9.5h-704q-13 0 -22.5 -9.5t-9.5 -22.5v-64q0 -13 9.5 -22.5t22.5 -9.5h704q13 0 22.5 9.5t9.5 22.5zM1280 640h299l-299 299v-299zM1792 512v-672q0 -40 -28 -68t-68 -28 h-960q-40 0 -68 28t-28 68v160h-544q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1088q40 0 68 -28t28 -68v-328q21 -13 36 -28l408 -408q28 -28 48 -76t20 -88z" />
<glyph unicode="&#xf0eb;" horiz-adv-x="1024" d="M736 960q0 -13 -9.5 -22.5t-22.5 -9.5t-22.5 9.5t-9.5 22.5q0 46 -54 71t-106 25q-13 0 -22.5 9.5t-9.5 22.5t9.5 22.5t22.5 9.5q50 0 99.5 -16t87 -54t37.5 -90zM896 960q0 72 -34.5 134t-90 101.5t-123 62t-136.5 22.5t-136.5 -22.5t-123 -62t-90 -101.5t-34.5 -134 q0 -101 68 -180q10 -11 30.5 -33t30.5 -33q128 -153 141 -298h228q13 145 141 298q10 11 30.5 33t30.5 33q68 79 68 180zM1024 960q0 -155 -103 -268q-45 -49 -74.5 -87t-59.5 -95.5t-34 -107.5q47 -28 47 -82q0 -37 -25 -64q25 -27 25 -64q0 -52 -45 -81q13 -23 13 -47 q0 -46 -31.5 -71t-77.5 -25q-20 -44 -60 -70t-87 -26t-87 26t-60 70q-46 0 -77.5 25t-31.5 71q0 24 13 47q-45 29 -45 81q0 37 25 64q-25 27 -25 64q0 54 47 82q-4 50 -34 107.5t-59.5 95.5t-74.5 87q-103 113 -103 268q0 99 44.5 184.5t117 142t164 89t186.5 32.5 t186.5 -32.5t164 -89t117 -142t44.5 -184.5z" />
<glyph unicode="&#xf0ec;" horiz-adv-x="1792" d="M1792 352v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5q-12 0 -24 10l-319 320q-9 9 -9 22q0 14 9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h1376q13 0 22.5 -9.5t9.5 -22.5zM1792 896q0 -14 -9 -23l-320 -320q-9 -9 -23 -9 q-13 0 -22.5 9.5t-9.5 22.5v192h-1376q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1376v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
<glyph unicode="&#xf0ed;" horiz-adv-x="1920" d="M1280 608q0 14 -9 23t-23 9h-224v352q0 13 -9.5 22.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-352h-224q-13 0 -22.5 -9.5t-9.5 -22.5q0 -14 9 -23l352 -352q9 -9 23 -9t23 9l351 351q10 12 10 24zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088 q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
<glyph unicode="&#xf0ee;" horiz-adv-x="1920" d="M1280 672q0 14 -9 23l-352 352q-9 9 -23 9t-23 -9l-351 -351q-10 -12 -10 -24q0 -14 9 -23t23 -9h224v-352q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5v352h224q13 0 22.5 9.5t9.5 22.5zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088 q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
<glyph unicode="&#xf0f0;" horiz-adv-x="1408" d="M384 192q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 68 5.5 131t24 138t47.5 132.5t81 103t120 60.5q-22 -52 -22 -120v-203q-58 -20 -93 -70t-35 -111q0 -80 56 -136t136 -56 t136 56t56 136q0 61 -35.5 111t-92.5 70v203q0 62 25 93q132 -104 295 -104t295 104q25 -31 25 -93v-64q-106 0 -181 -75t-75 -181v-89q-32 -29 -32 -71q0 -40 28 -68t68 -28t68 28t28 68q0 42 -32 71v89q0 52 38 90t90 38t90 -38t38 -90v-89q-32 -29 -32 -71q0 -40 28 -68 t68 -28t68 28t28 68q0 42 -32 71v89q0 68 -34.5 127.5t-93.5 93.5q0 10 0.5 42.5t0 48t-2.5 41.5t-7 47t-13 40q68 -15 120 -60.5t81 -103t47.5 -132.5t24 -138t5.5 -131zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5 t271.5 -112.5t112.5 -271.5z" />
<glyph unicode="&#xf0f1;" horiz-adv-x="1408" d="M1280 832q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 832q0 -62 -35.5 -111t-92.5 -70v-395q0 -159 -131.5 -271.5t-316.5 -112.5t-316.5 112.5t-131.5 271.5v132q-164 20 -274 128t-110 252v512q0 26 19 45t45 19q6 0 16 -2q17 30 47 48 t65 18q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5q-33 0 -64 18v-402q0 -106 94 -181t226 -75t226 75t94 181v402q-31 -18 -64 -18q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5q35 0 65 -18t47 -48q10 2 16 2q26 0 45 -19t19 -45v-512q0 -144 -110 -252 t-274 -128v-132q0 -106 94 -181t226 -75t226 75t94 181v395q-57 21 -92.5 70t-35.5 111q0 80 56 136t136 56t136 -56t56 -136z" />
<glyph unicode="&#xf0f2;" horiz-adv-x="1792" d="M640 1152h512v128h-512v-128zM288 1152v-1280h-64q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h64zM1408 1152v-1280h-1024v1280h128v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h128zM1792 928v-832q0 -92 -66 -158t-158 -66h-64v1280h64q92 0 158 -66 t66 -158z" />
<glyph unicode="&#xf0f3;" horiz-adv-x="1664" d="M848 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM1664 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q190 161 287 397.5t97 498.5 q0 165 96 262t264 117q-8 18 -8 37q0 40 28 68t68 28t68 -28t28 -68q0 -19 -8 -37q168 -20 264 -117t96 -262q0 -262 97 -498.5t287 -397.5z" />
<glyph unicode="&#xf0f4;" horiz-adv-x="1920" d="M1664 896q0 80 -56 136t-136 56h-64v-384h64q80 0 136 56t56 136zM0 128h1792q0 -106 -75 -181t-181 -75h-1280q-106 0 -181 75t-75 181zM1856 896q0 -159 -112.5 -271.5t-271.5 -112.5h-64v-32q0 -92 -66 -158t-158 -66h-704q-92 0 -158 66t-66 158v736q0 26 19 45 t45 19h1152q159 0 271.5 -112.5t112.5 -271.5z" />
<glyph unicode="&#xf0f5;" horiz-adv-x="1408" d="M640 1472v-640q0 -61 -35.5 -111t-92.5 -70v-779q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v779q-57 20 -92.5 70t-35.5 111v640q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45 t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45zM1408 1472v-1600q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v512h-224q-13 0 -22.5 9.5t-9.5 22.5v800q0 132 94 226t226 94h256q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0f6;" horiz-adv-x="1280" d="M1024 352v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23 -9t9 -23zM1024 608v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23 -9t9 -23zM128 0h1024v768h-416q-40 0 -68 28t-28 68v416h-512v-1280z M768 896h376q-10 29 -22 41l-313 313q-12 12 -41 22v-376zM1280 864v-896q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h640q40 0 88 -20t76 -48l312 -312q28 -28 48 -76t20 -88z" />
<glyph unicode="&#xf0f7;" horiz-adv-x="1408" d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 -128h384v1536h-1152v-1536h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM1408 1472v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0f8;" horiz-adv-x="1408" d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 -128h384v1152h-256v-32q0 -40 -28 -68t-68 -28h-448q-40 0 -68 28t-28 68v32h-256v-1152h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM896 1056v320q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-96h-128v96q0 13 -9.5 22.5 t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5v96h128v-96q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1408 1088v-1280q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1280q0 26 19 45t45 19h320 v288q0 40 28 68t68 28h448q40 0 68 -28t28 -68v-288h320q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0f9;" horiz-adv-x="1920" d="M640 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM256 640h384v256h-158q-14 -2 -22 -9l-195 -195q-7 -12 -9 -22v-30zM1536 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5zM1664 800v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM1920 1344v-1152 q0 -26 -19 -45t-45 -19h-192q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-128q-26 0 -45 19t-19 45t19 45t45 19v416q0 26 13 58t32 51l198 198q19 19 51 32t58 13h160v320q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0fa;" horiz-adv-x="1792" d="M1280 416v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM640 1152h512v128h-512v-128zM256 1152v-1280h-32 q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h32zM1440 1152v-1280h-1088v1280h160v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h160zM1792 928v-832q0 -92 -66 -158t-158 -66h-32v1280h32q92 0 158 -66t66 -158z" />
<glyph unicode="&#xf0fb;" horiz-adv-x="1920" d="M1920 576q-1 -32 -288 -96l-352 -32l-224 -64h-64l-293 -352h69q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-96h-160h-64v32h64v416h-160l-192 -224h-96l-32 32v192h32v32h128v8l-192 24v128l192 24v8h-128v32h-32v192l32 32h96l192 -224h160v416h-64v32h64h160h96 q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-69l293 -352h64l224 -64l352 -32q261 -58 287 -93z" />
<glyph unicode="&#xf0fc;" horiz-adv-x="1664" d="M640 640v384h-256v-256q0 -53 37.5 -90.5t90.5 -37.5h128zM1664 192v-192h-1152v192l128 192h-128q-159 0 -271.5 112.5t-112.5 271.5v320l-64 64l32 128h480l32 128h960l32 -192l-64 -32v-800z" />
<glyph unicode="&#xf0fd;" d="M1280 192v896q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-512v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-896q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h512v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf0fe;" d="M1280 576v128q0 26 -19 45t-45 19h-320v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-320q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h320v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h320q26 0 45 19t19 45zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf100;" horiz-adv-x="1024" d="M627 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23zM1011 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23 t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23z" />
<glyph unicode="&#xf101;" horiz-adv-x="1024" d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM979 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23 l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
<glyph unicode="&#xf102;" horiz-adv-x="1152" d="M1075 224q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM1075 608q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393 q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
<glyph unicode="&#xf103;" horiz-adv-x="1152" d="M1075 672q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23zM1075 1056q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23 t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
<glyph unicode="&#xf104;" horiz-adv-x="640" d="M627 992q0 -13 -10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
<glyph unicode="&#xf105;" horiz-adv-x="640" d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
<glyph unicode="&#xf106;" horiz-adv-x="1152" d="M1075 352q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
<glyph unicode="&#xf107;" horiz-adv-x="1152" d="M1075 800q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
<glyph unicode="&#xf108;" horiz-adv-x="1920" d="M1792 544v832q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1376v-1088q0 -66 -47 -113t-113 -47h-544q0 -37 16 -77.5t32 -71t16 -43.5q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19 t-19 45q0 14 16 44t32 70t16 78h-544q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf109;" horiz-adv-x="1920" d="M416 256q-66 0 -113 47t-47 113v704q0 66 47 113t113 47h1088q66 0 113 -47t47 -113v-704q0 -66 -47 -113t-113 -47h-1088zM384 1120v-704q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5v704q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5z M1760 192h160v-96q0 -40 -47 -68t-113 -28h-1600q-66 0 -113 28t-47 68v96h160h1600zM1040 96q16 0 16 16t-16 16h-160q-16 0 -16 -16t16 -16h160z" />
<glyph unicode="&#xf10a;" horiz-adv-x="1152" d="M640 128q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1024 288v960q0 13 -9.5 22.5t-22.5 9.5h-832q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h832q13 0 22.5 9.5t9.5 22.5zM1152 1248v-1088q0 -66 -47 -113t-113 -47h-832 q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h832q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf10b;" horiz-adv-x="768" d="M464 128q0 33 -23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5t56.5 23.5t23.5 56.5zM672 288v704q0 13 -9.5 22.5t-22.5 9.5h-512q-13 0 -22.5 -9.5t-9.5 -22.5v-704q0 -13 9.5 -22.5t22.5 -9.5h512q13 0 22.5 9.5t9.5 22.5zM480 1136 q0 16 -16 16h-160q-16 0 -16 -16t16 -16h160q16 0 16 16zM768 1152v-1024q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v1024q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf10c;" d="M768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103 t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf10d;" horiz-adv-x="1664" d="M768 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z M1664 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z" />
<glyph unicode="&#xf10e;" horiz-adv-x="1664" d="M768 1216v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136zM1664 1216 v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136z" />
<glyph unicode="&#xf110;" horiz-adv-x="1568" d="M496 192q0 -60 -42.5 -102t-101.5 -42q-60 0 -102 42t-42 102t42 102t102 42q59 0 101.5 -42t42.5 -102zM928 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM320 640q0 -66 -47 -113t-113 -47t-113 47t-47 113 t47 113t113 47t113 -47t47 -113zM1360 192q0 -46 -33 -79t-79 -33t-79 33t-33 79t33 79t79 33t79 -33t33 -79zM528 1088q0 -73 -51.5 -124.5t-124.5 -51.5t-124.5 51.5t-51.5 124.5t51.5 124.5t124.5 51.5t124.5 -51.5t51.5 -124.5zM992 1280q0 -80 -56 -136t-136 -56 t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1536 640q0 -40 -28 -68t-68 -28t-68 28t-28 68t28 68t68 28t68 -28t28 -68zM1328 1088q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5z" />
<glyph unicode="&#xf111;" d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf112;" horiz-adv-x="1792" d="M1792 416q0 -166 -127 -451q-3 -7 -10.5 -24t-13.5 -30t-13 -22q-12 -17 -28 -17q-15 0 -23.5 10t-8.5 25q0 9 2.5 26.5t2.5 23.5q5 68 5 123q0 101 -17.5 181t-48.5 138.5t-80 101t-105.5 69.5t-133 42.5t-154 21.5t-175.5 6h-224v-256q0 -26 -19 -45t-45 -19t-45 19 l-512 512q-19 19 -19 45t19 45l512 512q19 19 45 19t45 -19t19 -45v-256h224q713 0 875 -403q53 -134 53 -333z" />
<glyph unicode="&#xf113;" horiz-adv-x="1664" d="M640 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1280 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1440 320 q0 120 -69 204t-187 84q-41 0 -195 -21q-71 -11 -157 -11t-157 11q-152 21 -195 21q-118 0 -187 -84t-69 -204q0 -88 32 -153.5t81 -103t122 -60t140 -29.5t149 -7h168q82 0 149 7t140 29.5t122 60t81 103t32 153.5zM1664 496q0 -207 -61 -331q-38 -77 -105.5 -133t-141 -86 t-170 -47.5t-171.5 -22t-167 -4.5q-78 0 -142 3t-147.5 12.5t-152.5 30t-137 51.5t-121 81t-86 115q-62 123 -62 331q0 237 136 396q-27 82 -27 170q0 116 51 218q108 0 190 -39.5t189 -123.5q147 35 309 35q148 0 280 -32q105 82 187 121t189 39q51 -102 51 -218 q0 -87 -27 -168q136 -160 136 -398z" />
<glyph unicode="&#xf114;" horiz-adv-x="1664" d="M1536 224v704q0 40 -28 68t-68 28h-704q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68v-960q0 -40 28 -68t68 -28h1216q40 0 68 28t28 68zM1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320 q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
<glyph unicode="&#xf115;" horiz-adv-x="1920" d="M1781 605q0 35 -53 35h-1088q-40 0 -85.5 -21.5t-71.5 -52.5l-294 -363q-18 -24 -18 -40q0 -35 53 -35h1088q40 0 86 22t71 53l294 363q18 22 18 39zM640 768h768v160q0 40 -28 68t-68 28h-576q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68 v-853l256 315q44 53 116 87.5t140 34.5zM1909 605q0 -62 -46 -120l-295 -363q-43 -53 -116 -87.5t-140 -34.5h-1088q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158v-160h192q54 0 99 -24.5t67 -70.5q15 -32 15 -68z " />
<glyph unicode="&#xf116;" horiz-adv-x="1152" d="M896 608v-64q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v224q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-224h224q14 0 23 -9t9 -23zM1024 224v704q0 40 -28 68t-68 28h-704q-40 0 -68 -28 t-28 -68v-704q0 -40 28 -68t68 -28h704q40 0 68 28t28 68zM1152 928v-704q0 -92 -65.5 -158t-158.5 -66h-704q-93 0 -158.5 66t-65.5 158v704q0 93 65.5 158.5t158.5 65.5h704q93 0 158.5 -65.5t65.5 -158.5z" />
<glyph unicode="&#xf117;" horiz-adv-x="1152" d="M928 1152q93 0 158.5 -65.5t65.5 -158.5v-704q0 -92 -65.5 -158t-158.5 -66h-704q-93 0 -158.5 66t-65.5 158v704q0 93 65.5 158.5t158.5 65.5h704zM1024 224v704q0 40 -28 68t-68 28h-704q-40 0 -68 -28t-28 -68v-704q0 -40 28 -68t68 -28h704q40 0 68 28t28 68z M864 640q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-576q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h576z" />
<glyph unicode="&#xf118;" d="M1134 461q-37 -121 -138 -195t-228 -74t-228 74t-138 195q-8 25 4 48.5t38 31.5q25 8 48.5 -4t31.5 -38q25 -80 92.5 -129.5t151.5 -49.5t151.5 49.5t92.5 129.5q8 26 32 38t49 4t37 -31.5t4 -48.5zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5 t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf119;" d="M1134 307q8 -25 -4 -48.5t-37 -31.5t-49 4t-32 38q-25 80 -92.5 129.5t-151.5 49.5t-151.5 -49.5t-92.5 -129.5q-8 -26 -31.5 -38t-48.5 -4q-26 8 -38 31.5t-4 48.5q37 121 138 195t228 74t228 -74t138 -195zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204 t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf11a;" d="M1152 448q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h640q26 0 45 -19t19 -45zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf11b;" horiz-adv-x="1920" d="M832 448v128q0 14 -9 23t-23 9h-192v192q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-192h-192q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h192v-192q0 -14 9 -23t23 -9h128q14 0 23 9t9 23v192h192q14 0 23 9t9 23zM1408 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5 t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1920 512q0 -212 -150 -362t-362 -150q-192 0 -338 128h-220q-146 -128 -338 -128q-212 0 -362 150 t-150 362t150 362t362 150h896q212 0 362 -150t150 -362z" />
<glyph unicode="&#xf11c;" horiz-adv-x="1920" d="M384 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM512 624v-96q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h224q16 0 16 -16zM384 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 368v-96q0 -16 -16 -16 h-864q-16 0 -16 16v96q0 16 16 16h864q16 0 16 -16zM768 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM640 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1024 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16 h96q16 0 16 -16zM896 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1280 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1152 880v-96 q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 880v-352q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h112v240q0 16 16 16h96q16 0 16 -16zM1792 128v896h-1664v-896 h1664zM1920 1024v-896q0 -53 -37.5 -90.5t-90.5 -37.5h-1664q-53 0 -90.5 37.5t-37.5 90.5v896q0 53 37.5 90.5t90.5 37.5h1664q53 0 90.5 -37.5t37.5 -90.5z" />
<glyph unicode="&#xf11d;" horiz-adv-x="1792" d="M1664 491v616q-169 -91 -306 -91q-82 0 -145 32q-100 49 -184 76.5t-178 27.5q-173 0 -403 -127v-599q245 113 433 113q55 0 103.5 -7.5t98 -26t77 -31t82.5 -39.5l28 -14q44 -22 101 -22q120 0 293 92zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9 h-64q-14 0 -23 9t-9 23v1266q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102 q-15 -9 -33 -9q-16 0 -32 8q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
<glyph unicode="&#xf11e;" horiz-adv-x="1792" d="M832 536v192q-181 -16 -384 -117v-185q205 96 384 110zM832 954v197q-172 -8 -384 -126v-189q215 111 384 118zM1664 491v184q-235 -116 -384 -71v224q-20 6 -39 15q-5 3 -33 17t-34.5 17t-31.5 15t-34.5 15.5t-32.5 13t-36 12.5t-35 8.5t-39.5 7.5t-39.5 4t-44 2 q-23 0 -49 -3v-222h19q102 0 192.5 -29t197.5 -82q19 -9 39 -15v-188q42 -17 91 -17q120 0 293 92zM1664 918v189q-169 -91 -306 -91q-45 0 -78 8v-196q148 -42 384 90zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v1266 q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102q-15 -9 -33 -9q-16 0 -32 8 q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
<glyph unicode="&#xf120;" horiz-adv-x="1664" d="M585 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23zM1664 96v-64q0 -14 -9 -23t-23 -9h-960q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h960q14 0 23 -9 t9 -23z" />
<glyph unicode="&#xf121;" horiz-adv-x="1920" d="M617 137l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23zM1208 1204l-373 -1291q-4 -13 -15.5 -19.5t-23.5 -2.5l-62 17q-13 4 -19.5 15.5t-2.5 24.5 l373 1291q4 13 15.5 19.5t23.5 2.5l62 -17q13 -4 19.5 -15.5t2.5 -24.5zM1865 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23z" />
<glyph unicode="&#xf122;" horiz-adv-x="1792" d="M640 454v-70q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-69l-397 -398q-19 -19 -19 -45t19 -45zM1792 416q0 -58 -17 -133.5t-38.5 -138t-48 -125t-40.5 -90.5l-20 -40q-8 -17 -28 -17q-6 0 -9 1 q-25 8 -23 34q43 400 -106 565q-64 71 -170.5 110.5t-267.5 52.5v-251q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-262q411 -28 599 -221q169 -173 169 -509z" />
<glyph unicode="&#xf123;" horiz-adv-x="1664" d="M1186 579l257 250l-356 52l-66 10l-30 60l-159 322v-963l59 -31l318 -168l-60 355l-12 66zM1638 841l-363 -354l86 -500q5 -33 -6 -51.5t-34 -18.5q-17 0 -40 12l-449 236l-449 -236q-23 -12 -40 -12q-23 0 -34 18.5t-6 51.5l86 500l-364 354q-32 32 -23 59.5t54 34.5 l502 73l225 455q20 41 49 41q28 0 49 -41l225 -455l502 -73q45 -7 54 -34.5t-24 -59.5z" />
<glyph unicode="&#xf124;" horiz-adv-x="1408" d="M1401 1187l-640 -1280q-17 -35 -57 -35q-5 0 -15 2q-22 5 -35.5 22.5t-13.5 39.5v576h-576q-22 0 -39.5 13.5t-22.5 35.5t4 42t29 30l1280 640q13 7 29 7q27 0 45 -19q15 -14 18.5 -34.5t-6.5 -39.5z" />
<glyph unicode="&#xf125;" horiz-adv-x="1664" d="M557 256h595v595zM512 301l595 595h-595v-595zM1664 224v-192q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v224h-864q-14 0 -23 9t-9 23v864h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224v224q0 14 9 23t23 9h192q14 0 23 -9t9 -23 v-224h851l246 247q10 9 23 9t23 -9q9 -10 9 -23t-9 -23l-247 -246v-851h224q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf126;" horiz-adv-x="1024" d="M288 64q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM288 1216q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM928 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1024 1088q0 -52 -26 -96.5t-70 -69.5 q-2 -287 -226 -414q-68 -38 -203 -81q-128 -40 -169.5 -71t-41.5 -100v-26q44 -25 70 -69.5t26 -96.5q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 52 26 96.5t70 69.5v820q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136q0 -52 -26 -96.5t-70 -69.5v-497 q54 26 154 57q55 17 87.5 29.5t70.5 31t59 39.5t40.5 51t28 69.5t8.5 91.5q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136z" />
<glyph unicode="&#xf127;" horiz-adv-x="1664" d="M439 265l-256 -256q-10 -9 -23 -9q-12 0 -23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23zM608 224v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM384 448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23t9 23t23 9h320 q14 0 23 -9t9 -23zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-334 335q-21 21 -42 56l239 18l273 -274q27 -27 68 -27.5t68 26.5l147 146q28 28 28 67q0 40 -28 68l-274 275l18 239q35 -21 56 -42l336 -336q84 -86 84 -204zM1031 1044l-239 -18 l-273 274q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l274 -274l-18 -240q-35 21 -56 42l-336 336q-84 86 -84 204q0 120 85 203l147 146q83 83 203 83q121 0 204 -85l334 -335q21 -21 42 -56zM1664 960q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9 t-9 23t9 23t23 9h320q14 0 23 -9t9 -23zM1120 1504v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM1527 1353l-256 -256q-11 -9 -23 -9t-23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" />
<glyph unicode="&#xf128;" horiz-adv-x="1024" d="M704 280v-240q0 -16 -12 -28t-28 -12h-240q-16 0 -28 12t-12 28v240q0 16 12 28t28 12h240q16 0 28 -12t12 -28zM1020 880q0 -54 -15.5 -101t-35 -76.5t-55 -59.5t-57.5 -43.5t-61 -35.5q-41 -23 -68.5 -65t-27.5 -67q0 -17 -12 -32.5t-28 -15.5h-240q-15 0 -25.5 18.5 t-10.5 37.5v45q0 83 65 156.5t143 108.5q59 27 84 56t25 76q0 42 -46.5 74t-107.5 32q-65 0 -108 -29q-35 -25 -107 -115q-13 -16 -31 -16q-12 0 -25 8l-164 125q-13 10 -15.5 25t5.5 28q160 266 464 266q80 0 161 -31t146 -83t106 -127.5t41 -158.5z" />
<glyph unicode="&#xf129;" horiz-adv-x="640" d="M640 192v-128q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64v384h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-576h64q26 0 45 -19t19 -45zM512 1344v-192q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v192 q0 26 19 45t45 19h256q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf12a;" horiz-adv-x="640" d="M512 288v-224q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v224q0 26 19 45t45 19h256q26 0 45 -19t19 -45zM542 1344l-28 -768q-1 -26 -20.5 -45t-45.5 -19h-256q-26 0 -45.5 19t-20.5 45l-28 768q-1 26 17.5 45t44.5 19h320q26 0 44.5 -19t17.5 -45z" />
<glyph unicode="&#xf12b;" d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3l-9 -21q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109zM1534 846v-206h-514l-3 27 q-4 28 -4 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q83 65 188 65q110 0 178 -59.5t68 -158.5q0 -56 -24.5 -103t-62 -76.5t-81.5 -58.5t-82 -50.5t-65.5 -51.5t-30.5 -63h232v80 h126z" />
<glyph unicode="&#xf12c;" d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3l-9 -21q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109zM1536 -50v-206h-514l-4 27 q-3 45 -3 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q80 65 188 65q110 0 178 -59.5t68 -158.5q0 -66 -34.5 -118.5t-84 -86t-99.5 -62.5t-87 -63t-41 -73h232v80h126z" />
<glyph unicode="&#xf12d;" horiz-adv-x="1920" d="M896 128l336 384h-768l-336 -384h768zM1909 1205q15 -34 9.5 -71.5t-30.5 -65.5l-896 -1024q-38 -44 -96 -44h-768q-38 0 -69.5 20.5t-47.5 54.5q-15 34 -9.5 71.5t30.5 65.5l896 1024q38 44 96 44h768q38 0 69.5 -20.5t47.5 -54.5z" />
<glyph unicode="&#xf12e;" horiz-adv-x="1664" d="M1664 438q0 -81 -44.5 -135t-123.5 -54q-41 0 -77.5 17.5t-59 38t-56.5 38t-71 17.5q-110 0 -110 -124q0 -39 16 -115t15 -115v-5q-22 0 -33 -1q-34 -3 -97.5 -11.5t-115.5 -13.5t-98 -5q-61 0 -103 26.5t-42 83.5q0 37 17.5 71t38 56.5t38 59t17.5 77.5q0 79 -54 123.5 t-135 44.5q-84 0 -143 -45.5t-59 -127.5q0 -43 15 -83t33.5 -64.5t33.5 -53t15 -50.5q0 -45 -46 -89q-37 -35 -117 -35q-95 0 -245 24q-9 2 -27.5 4t-27.5 4l-13 2q-1 0 -3 1q-2 0 -2 1v1024q2 -1 17.5 -3.5t34 -5t21.5 -3.5q150 -24 245 -24q80 0 117 35q46 44 46 89 q0 22 -15 50.5t-33.5 53t-33.5 64.5t-15 83q0 82 59 127.5t144 45.5q80 0 134 -44.5t54 -123.5q0 -41 -17.5 -77.5t-38 -59t-38 -56.5t-17.5 -71q0 -57 42 -83.5t103 -26.5q64 0 180 15t163 17v-2q-1 -2 -3.5 -17.5t-5 -34t-3.5 -21.5q-24 -150 -24 -245q0 -80 35 -117 q44 -46 89 -46q22 0 50.5 15t53 33.5t64.5 33.5t83 15q82 0 127.5 -59t45.5 -143z" />
<glyph unicode="&#xf130;" horiz-adv-x="1152" d="M1152 832v-128q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-217 24 -364.5 187.5t-147.5 384.5v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -185 131.5 -316.5t316.5 -131.5 t316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45zM896 1216v-512q0 -132 -94 -226t-226 -94t-226 94t-94 226v512q0 132 94 226t226 94t226 -94t94 -226z" />
<glyph unicode="&#xf131;" horiz-adv-x="1408" d="M271 591l-101 -101q-42 103 -42 214v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -53 15 -113zM1385 1193l-361 -361v-128q0 -132 -94 -226t-226 -94q-55 0 -109 19l-96 -96q97 -51 205 -51q185 0 316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45v-128 q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-125 13 -235 81l-254 -254q-10 -10 -23 -10t-23 10l-82 82q-10 10 -10 23t10 23l1234 1234q10 10 23 10t23 -10l82 -82q10 -10 10 -23 t-10 -23zM1005 1325l-621 -621v512q0 132 94 226t226 94q102 0 184.5 -59t116.5 -152z" />
<glyph unicode="&#xf132;" horiz-adv-x="1280" d="M1088 576v640h-448v-1137q119 63 213 137q235 184 235 360zM1280 1344v-768q0 -86 -33.5 -170.5t-83 -150t-118 -127.5t-126.5 -103t-121 -77.5t-89.5 -49.5t-42.5 -20q-12 -6 -26 -6t-26 6q-16 7 -42.5 20t-89.5 49.5t-121 77.5t-126.5 103t-118 127.5t-83 150 t-33.5 170.5v768q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf133;" horiz-adv-x="1664" d="M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280 q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf134;" horiz-adv-x="1408" d="M512 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 1376v-320q0 -16 -12 -25q-8 -7 -20 -7q-4 0 -7 1l-448 96q-11 2 -18 11t-7 20h-256v-102q111 -23 183.5 -111t72.5 -203v-800q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v800 q0 106 62.5 190.5t161.5 114.5v111h-32q-59 0 -115 -23.5t-91.5 -53t-66 -66.5t-40.5 -53.5t-14 -24.5q-17 -35 -57 -35q-16 0 -29 7q-23 12 -31.5 37t3.5 49q5 10 14.5 26t37.5 53.5t60.5 70t85 67t108.5 52.5q-25 42 -25 86q0 66 47 113t113 47t113 -47t47 -113 q0 -33 -14 -64h302q0 11 7 20t18 11l448 96q3 1 7 1q12 0 20 -7q12 -9 12 -25z" />
<glyph unicode="&#xf135;" horiz-adv-x="1664" d="M1440 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1664 1376q0 -249 -75.5 -430.5t-253.5 -360.5q-81 -80 -195 -176l-20 -379q-2 -16 -16 -26l-384 -224q-7 -4 -16 -4q-12 0 -23 9l-64 64q-13 14 -8 32l85 276l-281 281l-276 -85q-3 -1 -9 -1 q-14 0 -23 9l-64 64q-17 19 -5 39l224 384q10 14 26 16l379 20q96 114 176 195q188 187 358 258t431 71q14 0 24 -9.5t10 -22.5z" />
<glyph unicode="&#xf136;" horiz-adv-x="1792" d="M1745 763l-164 -763h-334l178 832q13 56 -15 88q-27 33 -83 33h-169l-204 -953h-334l204 953h-286l-204 -953h-334l204 953l-153 327h1276q101 0 189.5 -40.5t147.5 -113.5q60 -73 81 -168.5t0 -194.5z" />
<glyph unicode="&#xf137;" d="M909 141l102 102q19 19 19 45t-19 45l-307 307l307 307q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf138;" d="M717 141l454 454q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l307 -307l-307 -307q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf139;" d="M1165 397l102 102q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l307 307l307 -307q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf13a;" d="M813 237l454 454q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-307 -307l-307 307q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf13b;" horiz-adv-x="1408" d="M1130 939l16 175h-884l47 -534h612l-22 -228l-197 -53l-196 53l-13 140h-175l22 -278l362 -100h4v1l359 99l50 544h-644l-15 181h674zM0 1408h1408l-128 -1438l-578 -162l-574 162z" />
<glyph unicode="&#xf13c;" horiz-adv-x="1792" d="M275 1408h1505l-266 -1333l-804 -267l-698 267l71 356h297l-29 -147l422 -161l486 161l68 339h-1208l58 297h1209l38 191h-1208z" />
<glyph unicode="&#xf13d;" horiz-adv-x="1792" d="M960 1280q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1792 352v-352q0 -22 -20 -30q-8 -2 -12 -2q-13 0 -23 9l-93 93q-119 -143 -318.5 -226.5t-429.5 -83.5t-429.5 83.5t-318.5 226.5l-93 -93q-9 -9 -23 -9q-4 0 -12 2q-20 8 -20 30v352 q0 14 9 23t23 9h352q22 0 30 -20q8 -19 -7 -35l-100 -100q67 -91 189.5 -153.5t271.5 -82.5v647h-192q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h192v163q-58 34 -93 92.5t-35 128.5q0 106 75 181t181 75t181 -75t75 -181q0 -70 -35 -128.5t-93 -92.5v-163h192q26 0 45 -19 t19 -45v-128q0 -26 -19 -45t-45 -19h-192v-647q149 20 271.5 82.5t189.5 153.5l-100 100q-15 16 -7 35q8 20 30 20h352q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf13e;" horiz-adv-x="1152" d="M1056 768q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v320q0 185 131.5 316.5t316.5 131.5t316.5 -131.5t131.5 -316.5q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45q0 106 -75 181t-181 75t-181 -75t-75 -181 v-320h736z" />
<glyph unicode="&#xf140;" d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM1152 640q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM1280 640q0 -212 -150 -362t-362 -150t-362 150 t-150 362t150 362t362 150t362 -150t150 -362zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf141;" horiz-adv-x="1408" d="M384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM896 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM1408 800v-192q0 -40 -28 -68t-68 -28h-192 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf142;" horiz-adv-x="384" d="M384 288v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 1312v-192q0 -40 -28 -68t-68 -28h-192 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf143;" d="M512 256q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM863 162q-13 232 -177 396t-396 177q-14 1 -24 -9t-10 -23v-128q0 -13 8.5 -22t21.5 -10q154 -11 264 -121t121 -264q1 -13 10 -21.5t22 -8.5h128q13 0 23 10 t9 24zM1247 161q-5 154 -56 297.5t-139.5 260t-205 205t-260 139.5t-297.5 56q-14 1 -23 -9q-10 -10 -10 -23v-128q0 -13 9 -22t22 -10q204 -7 378 -111.5t278.5 -278.5t111.5 -378q1 -13 10 -22t22 -9h128q13 0 23 10q11 9 9 23zM1536 1120v-960q0 -119 -84.5 -203.5 t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf144;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1152 585q32 18 32 55t-32 55l-544 320q-31 19 -64 1q-32 -19 -32 -56v-640q0 -37 32 -56 q16 -8 32 -8q17 0 32 9z" />
<glyph unicode="&#xf145;" horiz-adv-x="1792" d="M1024 1084l316 -316l-572 -572l-316 316zM813 105l618 618q19 19 19 45t-19 45l-362 362q-18 18 -45 18t-45 -18l-618 -618q-19 -19 -19 -45t19 -45l362 -362q18 -18 45 -18t45 18zM1702 742l-907 -908q-37 -37 -90.5 -37t-90.5 37l-126 126q56 56 56 136t-56 136 t-136 56t-136 -56l-125 126q-37 37 -37 90.5t37 90.5l907 906q37 37 90.5 37t90.5 -37l125 -125q-56 -56 -56 -136t56 -136t136 -56t136 56l126 -125q37 -37 37 -90.5t-37 -90.5z" />
<glyph unicode="&#xf146;" d="M1280 576v128q0 26 -19 45t-45 19h-896q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h896q26 0 45 19t19 45zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5 t84.5 -203.5z" />
<glyph unicode="&#xf147;" horiz-adv-x="1408" d="M1152 736v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h832q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5 t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf148;" horiz-adv-x="1024" d="M1018 933q-18 -37 -58 -37h-192v-864q0 -14 -9 -23t-23 -9h-704q-21 0 -29 18q-8 20 4 35l160 192q9 11 25 11h320v640h-192q-40 0 -58 37q-17 37 9 68l320 384q18 22 49 22t49 -22l320 -384q27 -32 9 -68z" />
<glyph unicode="&#xf149;" horiz-adv-x="1024" d="M32 1280h704q13 0 22.5 -9.5t9.5 -23.5v-863h192q40 0 58 -37t-9 -69l-320 -384q-18 -22 -49 -22t-49 22l-320 384q-26 31 -9 69q18 37 58 37h192v640h-320q-14 0 -25 11l-160 192q-13 14 -4 34q9 19 29 19z" />
<glyph unicode="&#xf14a;" d="M685 237l614 614q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-467 -467l-211 211q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l358 -358q19 -19 45 -19t45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5 t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf14b;" d="M404 428l152 -152l-52 -52h-56v96h-96v56zM818 818q14 -13 -3 -30l-291 -291q-17 -17 -30 -3q-14 13 3 30l291 291q17 17 30 3zM544 128l544 544l-288 288l-544 -544v-288h288zM1152 736l92 92q28 28 28 68t-28 68l-152 152q-28 28 -68 28t-68 -28l-92 -92zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf14c;" d="M1280 608v480q0 26 -19 45t-45 19h-480q-42 0 -59 -39q-17 -41 14 -70l144 -144l-534 -534q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l534 534l144 -144q18 -19 45 -19q12 0 25 5q39 17 39 59zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960 q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf14d;" d="M1005 435l352 352q19 19 19 45t-19 45l-352 352q-30 31 -69 14q-40 -17 -40 -59v-160q-119 0 -216 -19.5t-162.5 -51t-114 -79t-76.5 -95.5t-44.5 -109t-21.5 -111.5t-5 -110.5q0 -181 167 -404q10 -12 25 -12q7 0 13 3q22 9 19 33q-44 354 62 473q46 52 130 75.5 t224 23.5v-160q0 -42 40 -59q12 -5 24 -5q26 0 45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf14e;" d="M640 448l256 128l-256 128v-256zM1024 1039v-542l-512 -256v542zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf150;" d="M1145 861q18 -35 -5 -66l-320 -448q-19 -27 -52 -27t-52 27l-320 448q-23 31 -5 66q17 35 57 35h640q40 0 57 -35zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf151;" d="M1145 419q-17 -35 -57 -35h-640q-40 0 -57 35q-18 35 5 66l320 448q19 27 52 27t52 -27l320 -448q23 -31 5 -66zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf152;" d="M1088 640q0 -33 -27 -52l-448 -320q-31 -23 -66 -5q-35 17 -35 57v640q0 40 35 57q35 18 66 -5l448 -320q27 -19 27 -52zM1280 160v960q0 14 -9 23t-23 9h-960q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h960q14 0 23 9t9 23zM1536 1120v-960q0 -119 -84.5 -203.5 t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf153;" horiz-adv-x="1024" d="M976 229l35 -159q3 -12 -3 -22.5t-17 -14.5l-5 -1q-4 -2 -10.5 -3.5t-16 -4.5t-21.5 -5.5t-25.5 -5t-30 -5t-33.5 -4.5t-36.5 -3t-38.5 -1q-234 0 -409 130.5t-238 351.5h-95q-13 0 -22.5 9.5t-9.5 22.5v113q0 13 9.5 22.5t22.5 9.5h66q-2 57 1 105h-67q-14 0 -23 9 t-9 23v114q0 14 9 23t23 9h98q67 210 243.5 338t400.5 128q102 0 194 -23q11 -3 20 -15q6 -11 3 -24l-43 -159q-3 -13 -14 -19.5t-24 -2.5l-4 1q-4 1 -11.5 2.5l-17.5 3.5t-22.5 3.5t-26 3t-29 2.5t-29.5 1q-126 0 -226 -64t-150 -176h468q16 0 25 -12q10 -12 7 -26 l-24 -114q-5 -26 -32 -26h-488q-3 -37 0 -105h459q15 0 25 -12q9 -12 6 -27l-24 -112q-2 -11 -11 -18.5t-20 -7.5h-387q48 -117 149.5 -185.5t228.5 -68.5q18 0 36 1.5t33.5 3.5t29.5 4.5t24.5 5t18.5 4.5l12 3l5 2q13 5 26 -2q12 -7 15 -21z" />
<glyph unicode="&#xf154;" horiz-adv-x="1024" d="M1020 399v-367q0 -14 -9 -23t-23 -9h-956q-14 0 -23 9t-9 23v150q0 13 9.5 22.5t22.5 9.5h97v383h-95q-14 0 -23 9.5t-9 22.5v131q0 14 9 23t23 9h95v223q0 171 123.5 282t314.5 111q185 0 335 -125q9 -8 10 -20.5t-7 -22.5l-103 -127q-9 -11 -22 -12q-13 -2 -23 7 q-5 5 -26 19t-69 32t-93 18q-85 0 -137 -47t-52 -123v-215h305q13 0 22.5 -9t9.5 -23v-131q0 -13 -9.5 -22.5t-22.5 -9.5h-305v-379h414v181q0 13 9 22.5t23 9.5h162q14 0 23 -9.5t9 -22.5z" />
<glyph unicode="&#xf155;" horiz-adv-x="1024" d="M978 351q0 -153 -99.5 -263.5t-258.5 -136.5v-175q0 -14 -9 -23t-23 -9h-135q-13 0 -22.5 9.5t-9.5 22.5v175q-66 9 -127.5 31t-101.5 44.5t-74 48t-46.5 37.5t-17.5 18q-17 21 -2 41l103 135q7 10 23 12q15 2 24 -9l2 -2q113 -99 243 -125q37 -8 74 -8q81 0 142.5 43 t61.5 122q0 28 -15 53t-33.5 42t-58.5 37.5t-66 32t-80 32.5q-39 16 -61.5 25t-61.5 26.5t-62.5 31t-56.5 35.5t-53.5 42.5t-43.5 49t-35.5 58t-21 66.5t-8.5 78q0 138 98 242t255 134v180q0 13 9.5 22.5t22.5 9.5h135q14 0 23 -9t9 -23v-176q57 -6 110.5 -23t87 -33.5 t63.5 -37.5t39 -29t15 -14q17 -18 5 -38l-81 -146q-8 -15 -23 -16q-14 -3 -27 7q-3 3 -14.5 12t-39 26.5t-58.5 32t-74.5 26t-85.5 11.5q-95 0 -155 -43t-60 -111q0 -26 8.5 -48t29.5 -41.5t39.5 -33t56 -31t60.5 -27t70 -27.5q53 -20 81 -31.5t76 -35t75.5 -42.5t62 -50 t53 -63.5t31.5 -76.5t13 -94z" />
<glyph unicode="&#xf156;" horiz-adv-x="898" d="M898 1066v-102q0 -14 -9 -23t-23 -9h-168q-23 -144 -129 -234t-276 -110q167 -178 459 -536q14 -16 4 -34q-8 -18 -29 -18h-195q-16 0 -25 12q-306 367 -498 571q-9 9 -9 22v127q0 13 9.5 22.5t22.5 9.5h112q132 0 212.5 43t102.5 125h-427q-14 0 -23 9t-9 23v102 q0 14 9 23t23 9h413q-57 113 -268 113h-145q-13 0 -22.5 9.5t-9.5 22.5v133q0 14 9 23t23 9h832q14 0 23 -9t9 -23v-102q0 -14 -9 -23t-23 -9h-233q47 -61 64 -144h171q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf157;" horiz-adv-x="1027" d="M603 0h-172q-13 0 -22.5 9t-9.5 23v330h-288q-13 0 -22.5 9t-9.5 23v103q0 13 9.5 22.5t22.5 9.5h288v85h-288q-13 0 -22.5 9t-9.5 23v104q0 13 9.5 22.5t22.5 9.5h214l-321 578q-8 16 0 32q10 16 28 16h194q19 0 29 -18l215 -425q19 -38 56 -125q10 24 30.5 68t27.5 61 l191 420q8 19 29 19h191q17 0 27 -16q9 -14 1 -31l-313 -579h215q13 0 22.5 -9.5t9.5 -22.5v-104q0 -14 -9.5 -23t-22.5 -9h-290v-85h290q13 0 22.5 -9.5t9.5 -22.5v-103q0 -14 -9.5 -23t-22.5 -9h-290v-330q0 -13 -9.5 -22.5t-22.5 -9.5z" />
<glyph unicode="&#xf158;" horiz-adv-x="1280" d="M1043 971q0 100 -65 162t-171 62h-320v-448h320q106 0 171 62t65 162zM1280 971q0 -193 -126.5 -315t-326.5 -122h-340v-118h505q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9h-505v-192q0 -14 -9.5 -23t-22.5 -9h-167q-14 0 -23 9t-9 23v192h-224q-14 0 -23 9t-9 23v128 q0 14 9 23t23 9h224v118h-224q-14 0 -23 9t-9 23v149q0 13 9 22.5t23 9.5h224v629q0 14 9 23t23 9h539q200 0 326.5 -122t126.5 -315z" />
<glyph unicode="&#xf159;" horiz-adv-x="1792" d="M514 341l81 299h-159l75 -300q1 -1 1 -3t1 -3q0 1 0.5 3.5t0.5 3.5zM630 768l35 128h-292l32 -128h225zM822 768h139l-35 128h-70zM1271 340l78 300h-162l81 -299q0 -1 0.5 -3.5t1.5 -3.5q0 1 0.5 3t0.5 3zM1382 768l33 128h-297l34 -128h230zM1792 736v-64q0 -14 -9 -23 t-23 -9h-213l-164 -616q-7 -24 -31 -24h-159q-24 0 -31 24l-166 616h-209l-167 -616q-7 -24 -31 -24h-159q-11 0 -19.5 7t-10.5 17l-160 616h-208q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h175l-33 128h-142q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h109l-89 344q-5 15 5 28 q10 12 26 12h137q26 0 31 -24l90 -360h359l97 360q7 24 31 24h126q24 0 31 -24l98 -360h365l93 360q5 24 31 24h137q16 0 26 -12q10 -13 5 -28l-91 -344h111q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-145l-34 -128h179q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf15a;" horiz-adv-x="1280" d="M1167 896q18 -182 -131 -258q117 -28 175 -103t45 -214q-7 -71 -32.5 -125t-64.5 -89t-97 -58.5t-121.5 -34.5t-145.5 -15v-255h-154v251q-80 0 -122 1v-252h-154v255q-18 0 -54 0.5t-55 0.5h-200l31 183h111q50 0 58 51v402h16q-6 1 -16 1v287q-13 68 -89 68h-111v164 l212 -1q64 0 97 1v252h154v-247q82 2 122 2v245h154v-252q79 -7 140 -22.5t113 -45t82.5 -78t36.5 -114.5zM952 351q0 36 -15 64t-37 46t-57.5 30.5t-65.5 18.5t-74 9t-69 3t-64.5 -1t-47.5 -1v-338q8 0 37 -0.5t48 -0.5t53 1.5t58.5 4t57 8.5t55.5 14t47.5 21t39.5 30 t24.5 40t9.5 51zM881 827q0 33 -12.5 58.5t-30.5 42t-48 28t-55 16.5t-61.5 8t-58 2.5t-54 -1t-39.5 -0.5v-307q5 0 34.5 -0.5t46.5 0t50 2t55 5.5t51.5 11t48.5 18.5t37 27t27 38.5t9 51z" />
<glyph unicode="&#xf15b;" horiz-adv-x="1280" d="M1280 768v-800q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h544v-544q0 -40 28 -68t68 -28h544zM1277 896h-509v509q82 -15 132 -65l312 -312q50 -50 65 -132z" />
<glyph unicode="&#xf15c;" horiz-adv-x="1280" d="M1024 160v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM1024 416v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM1280 768v-800q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28 t-28 68v1344q0 40 28 68t68 28h544v-544q0 -40 28 -68t68 -28h544zM1277 896h-509v509q82 -15 132 -65l312 -312q50 -50 65 -132z" />
<glyph unicode="&#xf15d;" horiz-adv-x="1664" d="M1191 1128h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1572 -23 v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -11v-2l14 2q9 2 30 2h248v119h121zM1661 874v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162 l230 -662h70z" />
<glyph unicode="&#xf15e;" horiz-adv-x="1664" d="M1191 104h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1661 -150 v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162l230 -662h70zM1572 1001v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -10v-3l14 3q9 1 30 1h248 v119h121z" />
<glyph unicode="&#xf160;" horiz-adv-x="1792" d="M736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1792 -32v-192q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832 q14 0 23 -9t9 -23zM1600 480v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1408 992v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1216 1504v-192q0 -14 -9 -23t-23 -9h-256 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf161;" horiz-adv-x="1792" d="M1216 -32v-192q0 -14 -9 -23t-23 -9h-256q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192 q14 0 23 -9t9 -23zM1408 480v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1600 992v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1792 1504v-192q0 -14 -9 -23t-23 -9h-832 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf162;" d="M1346 223q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23 zM1486 165q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5 t82 -252.5zM1456 882v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165z" />
<glyph unicode="&#xf163;" d="M1346 1247q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9 t9 -23zM1456 -142v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165zM1486 1189q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13 q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5t82 -252.5z" />
<glyph unicode="&#xf164;" horiz-adv-x="1664" d="M256 192q0 26 -19 45t-45 19q-27 0 -45.5 -19t-18.5 -45q0 -27 18.5 -45.5t45.5 -18.5q26 0 45 18.5t19 45.5zM416 704v-640q0 -26 -19 -45t-45 -19h-288q-26 0 -45 19t-19 45v640q0 26 19 45t45 19h288q26 0 45 -19t19 -45zM1600 704q0 -86 -55 -149q15 -44 15 -76 q3 -76 -43 -137q17 -56 0 -117q-15 -57 -54 -94q9 -112 -49 -181q-64 -76 -197 -78h-36h-76h-17q-66 0 -144 15.5t-121.5 29t-120.5 39.5q-123 43 -158 44q-26 1 -45 19.5t-19 44.5v641q0 25 18 43.5t43 20.5q24 2 76 59t101 121q68 87 101 120q18 18 31 48t17.5 48.5 t13.5 60.5q7 39 12.5 61t19.5 52t34 50q19 19 45 19q46 0 82.5 -10.5t60 -26t40 -40.5t24 -45t12 -50t5 -45t0.5 -39q0 -38 -9.5 -76t-19 -60t-27.5 -56q-3 -6 -10 -18t-11 -22t-8 -24h277q78 0 135 -57t57 -135z" />
<glyph unicode="&#xf165;" horiz-adv-x="1664" d="M256 960q0 -26 -19 -45t-45 -19q-27 0 -45.5 19t-18.5 45q0 27 18.5 45.5t45.5 18.5q26 0 45 -18.5t19 -45.5zM416 448v640q0 26 -19 45t-45 19h-288q-26 0 -45 -19t-19 -45v-640q0 -26 19 -45t45 -19h288q26 0 45 19t19 45zM1545 597q55 -61 55 -149q-1 -78 -57.5 -135 t-134.5 -57h-277q4 -14 8 -24t11 -22t10 -18q18 -37 27 -57t19 -58.5t10 -76.5q0 -24 -0.5 -39t-5 -45t-12 -50t-24 -45t-40 -40.5t-60 -26t-82.5 -10.5q-26 0 -45 19q-20 20 -34 50t-19.5 52t-12.5 61q-9 42 -13.5 60.5t-17.5 48.5t-31 48q-33 33 -101 120q-49 64 -101 121 t-76 59q-25 2 -43 20.5t-18 43.5v641q0 26 19 44.5t45 19.5q35 1 158 44q77 26 120.5 39.5t121.5 29t144 15.5h17h76h36q133 -2 197 -78q58 -69 49 -181q39 -37 54 -94q17 -61 0 -117q46 -61 43 -137q0 -32 -15 -76z" />
<glyph unicode="&#xf166;" d="M919 233v157q0 50 -29 50q-17 0 -33 -16v-224q16 -16 33 -16q29 0 29 49zM1103 355h66v34q0 51 -33 51t-33 -51v-34zM532 621v-70h-80v-423h-74v423h-78v70h232zM733 495v-367h-67v40q-39 -45 -76 -45q-33 0 -42 28q-6 16 -6 54v290h66v-270q0 -24 1 -26q1 -15 15 -15 q20 0 42 31v280h67zM985 384v-146q0 -52 -7 -73q-12 -42 -53 -42q-35 0 -68 41v-36h-67v493h67v-161q32 40 68 40q41 0 53 -42q7 -21 7 -74zM1236 255v-9q0 -29 -2 -43q-3 -22 -15 -40q-27 -40 -80 -40q-52 0 -81 38q-21 27 -21 86v129q0 59 20 86q29 38 80 38t78 -38 q21 -28 21 -86v-76h-133v-65q0 -51 34 -51q24 0 30 26q0 1 0.5 7t0.5 16.5v21.5h68zM785 1079v-156q0 -51 -32 -51t-32 51v156q0 52 32 52t32 -52zM1318 366q0 177 -19 260q-10 44 -43 73.5t-76 34.5q-136 15 -412 15q-275 0 -411 -15q-44 -5 -76.5 -34.5t-42.5 -73.5 q-20 -87 -20 -260q0 -176 20 -260q10 -43 42.5 -73t75.5 -35q137 -15 412 -15t412 15q43 5 75.5 35t42.5 73q20 84 20 260zM563 1017l90 296h-75l-51 -195l-53 195h-78l24 -69t23 -69q35 -103 46 -158v-201h74v201zM852 936v130q0 58 -21 87q-29 38 -78 38q-51 0 -78 -38 q-21 -29 -21 -87v-130q0 -58 21 -87q27 -38 78 -38q49 0 78 38q21 27 21 87zM1033 816h67v370h-67v-283q-22 -31 -42 -31q-15 0 -16 16q-1 2 -1 26v272h-67v-293q0 -37 6 -55q11 -27 43 -27q36 0 77 45v-40zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960 q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf167;" d="M971 292v-211q0 -67 -39 -67q-23 0 -45 22v301q22 22 45 22q39 0 39 -67zM1309 291v-46h-90v46q0 68 45 68t45 -68zM343 509h107v94h-312v-94h105v-569h100v569zM631 -60h89v494h-89v-378q-30 -42 -57 -42q-18 0 -21 21q-1 3 -1 35v364h-89v-391q0 -49 8 -73 q12 -37 58 -37q48 0 102 61v-54zM1060 88v197q0 73 -9 99q-17 56 -71 56q-50 0 -93 -54v217h-89v-663h89v48q45 -55 93 -55q54 0 71 55q9 27 9 100zM1398 98v13h-91q0 -51 -2 -61q-7 -36 -40 -36q-46 0 -46 69v87h179v103q0 79 -27 116q-39 51 -106 51q-68 0 -107 -51 q-28 -37 -28 -116v-173q0 -79 29 -116q39 -51 108 -51q72 0 108 53q18 27 21 54q2 9 2 58zM790 1011v210q0 69 -43 69t-43 -69v-210q0 -70 43 -70t43 70zM1509 260q0 -234 -26 -350q-14 -59 -58 -99t-102 -46q-184 -21 -555 -21t-555 21q-58 6 -102.5 46t-57.5 99 q-26 112 -26 350q0 234 26 350q14 59 58 99t103 47q183 20 554 20t555 -20q58 -7 102.5 -47t57.5 -99q26 -112 26 -350zM511 1536h102l-121 -399v-271h-100v271q-14 74 -61 212q-37 103 -65 187h106l71 -263zM881 1203v-175q0 -81 -28 -118q-37 -51 -106 -51q-67 0 -105 51 q-28 38 -28 118v175q0 80 28 117q38 51 105 51q69 0 106 -51q28 -37 28 -117zM1216 1365v-499h-91v55q-53 -62 -103 -62q-46 0 -59 37q-8 24 -8 75v394h91v-367q0 -33 1 -35q3 -22 21 -22q27 0 57 43v381h91z" />
<glyph unicode="&#xf168;" horiz-adv-x="1408" d="M597 869q-10 -18 -257 -456q-27 -46 -65 -46h-239q-21 0 -31 17t0 36l253 448q1 0 0 1l-161 279q-12 22 -1 37q9 15 32 15h239q40 0 66 -45zM1403 1511q11 -16 0 -37l-528 -934v-1l336 -615q11 -20 1 -37q-10 -15 -32 -15h-239q-42 0 -66 45l-339 622q18 32 531 942 q25 45 64 45h241q22 0 31 -15z" />
<glyph unicode="&#xf169;" d="M685 771q0 1 -126 222q-21 34 -52 34h-184q-18 0 -26 -11q-7 -12 1 -29l125 -216v-1l-196 -346q-9 -14 0 -28q8 -13 24 -13h185q31 0 50 36zM1309 1268q-7 12 -24 12h-187q-30 0 -49 -35l-411 -729q1 -2 262 -481q20 -35 52 -35h184q18 0 25 12q8 13 -1 28l-260 476v1 l409 723q8 16 0 28zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf16a;" horiz-adv-x="1792" d="M1280 640q0 37 -30 54l-512 320q-31 20 -65 2q-33 -18 -33 -56v-640q0 -38 33 -56q16 -8 31 -8q20 0 34 10l512 320q30 17 30 54zM1792 640q0 -96 -1 -150t-8.5 -136.5t-22.5 -147.5q-16 -73 -69 -123t-124 -58q-222 -25 -671 -25t-671 25q-71 8 -124.5 58t-69.5 123 q-14 65 -21.5 147.5t-8.5 136.5t-1 150t1 150t8.5 136.5t22.5 147.5q16 73 69 123t124 58q222 25 671 25t671 -25q71 -8 124.5 -58t69.5 -123q14 -65 21.5 -147.5t8.5 -136.5t1 -150z" />
<glyph unicode="&#xf16b;" horiz-adv-x="1792" d="M402 829l494 -305l-342 -285l-490 319zM1388 274v-108l-490 -293v-1l-1 1l-1 -1v1l-489 293v108l147 -96l342 284v2l1 -1l1 1v-2l343 -284zM554 1418l342 -285l-494 -304l-338 270zM1390 829l338 -271l-489 -319l-343 285zM1239 1418l489 -319l-338 -270l-494 304z" />
<glyph unicode="&#xf16c;" horiz-adv-x="1408" d="M928 135v-151l-707 -1v151zM1169 481v-701l-1 -35v-1h-1132l-35 1h-1v736h121v-618h928v618h120zM241 393l704 -65l-13 -150l-705 65zM309 709l683 -183l-39 -146l-683 183zM472 1058l609 -360l-77 -130l-609 360zM832 1389l398 -585l-124 -85l-399 584zM1285 1536 l121 -697l-149 -26l-121 697z" />
<glyph unicode="&#xf16d;" d="M1362 110v648h-135q20 -63 20 -131q0 -126 -64 -232.5t-174 -168.5t-240 -62q-197 0 -337 135.5t-140 327.5q0 68 20 131h-141v-648q0 -26 17.5 -43.5t43.5 -17.5h1069q25 0 43 17.5t18 43.5zM1078 643q0 124 -90.5 211.5t-218.5 87.5q-127 0 -217.5 -87.5t-90.5 -211.5 t90.5 -211.5t217.5 -87.5q128 0 218.5 87.5t90.5 211.5zM1362 1003v165q0 28 -20 48.5t-49 20.5h-174q-29 0 -49 -20.5t-20 -48.5v-165q0 -29 20 -49t49 -20h174q29 0 49 20t20 49zM1536 1211v-1142q0 -81 -58 -139t-139 -58h-1142q-81 0 -139 58t-58 139v1142q0 81 58 139 t139 58h1142q81 0 139 -58t58 -139z" />
<glyph unicode="&#xf16e;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM698 640q0 88 -62 150t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150zM1262 640q0 88 -62 150 t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150z" />
<glyph unicode="&#xf170;" d="M768 914l201 -306h-402zM1133 384h94l-459 691l-459 -691h94l104 160h522zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf171;" horiz-adv-x="1408" d="M815 677q8 -63 -50.5 -101t-111.5 -6q-39 17 -53.5 58t-0.5 82t52 58q36 18 72.5 12t64 -35.5t27.5 -67.5zM926 698q-14 107 -113 164t-197 13q-63 -28 -100.5 -88.5t-34.5 -129.5q4 -91 77.5 -155t165.5 -56q91 8 152 84t50 168zM1165 1240q-20 27 -56 44.5t-58 22 t-71 12.5q-291 47 -566 -2q-43 -7 -66 -12t-55 -22t-50 -43q30 -28 76 -45.5t73.5 -22t87.5 -11.5q228 -29 448 -1q63 8 89.5 12t72.5 21.5t75 46.5zM1222 205q-8 -26 -15.5 -76.5t-14 -84t-28.5 -70t-58 -56.5q-86 -48 -189.5 -71.5t-202 -22t-201.5 18.5q-46 8 -81.5 18 t-76.5 27t-73 43.5t-52 61.5q-25 96 -57 292l6 16l18 9q223 -148 506.5 -148t507.5 148q21 -6 24 -23t-5 -45t-8 -37zM1403 1166q-26 -167 -111 -655q-5 -30 -27 -56t-43.5 -40t-54.5 -31q-252 -126 -610 -88q-248 27 -394 139q-15 12 -25.5 26.5t-17 35t-9 34t-6 39.5 t-5.5 35q-9 50 -26.5 150t-28 161.5t-23.5 147.5t-22 158q3 26 17.5 48.5t31.5 37.5t45 30t46 22.5t48 18.5q125 46 313 64q379 37 676 -50q155 -46 215 -122q16 -20 16.5 -51t-5.5 -54z" />
<glyph unicode="&#xf172;" d="M848 666q0 43 -41 66t-77 1q-43 -20 -42.5 -72.5t43.5 -70.5q39 -23 81 4t36 72zM928 682q8 -66 -36 -121t-110 -61t-119 40t-56 113q-2 49 25.5 93t72.5 64q70 31 141.5 -10t81.5 -118zM1100 1073q-20 -21 -53.5 -34t-53 -16t-63.5 -8q-155 -20 -324 0q-44 6 -63 9.5 t-52.5 16t-54.5 32.5q13 19 36 31t40 15.5t47 8.5q198 35 408 1q33 -5 51 -8.5t43 -16t39 -31.5zM1142 327q0 7 5.5 26.5t3 32t-17.5 16.5q-161 -106 -365 -106t-366 106l-12 -6l-5 -12q26 -154 41 -210q47 -81 204 -108q249 -46 428 53q34 19 49 51.5t22.5 85.5t12.5 71z M1272 1020q9 53 -8 75q-43 55 -155 88q-216 63 -487 36q-132 -12 -226 -46q-38 -15 -59.5 -25t-47 -34t-29.5 -54q8 -68 19 -138t29 -171t24 -137q1 -5 5 -31t7 -36t12 -27t22 -28q105 -80 284 -100q259 -28 440 63q24 13 39.5 23t31 29t19.5 40q48 267 80 473zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf173;" horiz-adv-x="1024" d="M390 1408h219v-388h364v-241h-364v-394q0 -136 14 -172q13 -37 52 -60q50 -31 117 -31q117 0 232 76v-242q-102 -48 -178 -65q-77 -19 -173 -19q-105 0 -186 27q-78 25 -138 75q-58 51 -79 105q-22 54 -22 161v539h-170v217q91 30 155 84q64 55 103 132q39 78 54 196z " />
<glyph unicode="&#xf174;" d="M1123 127v181q-88 -56 -174 -56q-51 0 -88 23q-29 17 -39 45q-11 30 -11 129v295h274v181h-274v291h-164q-11 -90 -40 -147t-78 -99q-48 -40 -116 -63v-163h127v-404q0 -78 17 -121q17 -42 59 -78q43 -37 104 -57q62 -20 140 -20q67 0 129 14q57 13 134 49zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf175;" horiz-adv-x="768" d="M765 237q8 -19 -5 -35l-350 -384q-10 -10 -23 -10q-14 0 -24 10l-355 384q-13 16 -5 35q9 19 29 19h224v1248q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1248h224q21 0 29 -19z" />
<glyph unicode="&#xf176;" horiz-adv-x="768" d="M765 1043q-9 -19 -29 -19h-224v-1248q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1248h-224q-21 0 -29 19t5 35l350 384q10 10 23 10q14 0 24 -10l355 -384q13 -16 5 -35z" />
<glyph unicode="&#xf177;" horiz-adv-x="1792" d="M1792 736v-192q0 -14 -9 -23t-23 -9h-1248v-224q0 -21 -19 -29t-35 5l-384 350q-10 10 -10 23q0 14 10 24l384 354q16 14 35 6q19 -9 19 -29v-224h1248q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf178;" horiz-adv-x="1792" d="M1728 643q0 -14 -10 -24l-384 -354q-16 -14 -35 -6q-19 9 -19 29v224h-1248q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h1248v224q0 21 19 29t35 -5l384 -350q10 -10 10 -23z" />
<glyph unicode="&#xf179;" horiz-adv-x="1408" d="M1393 321q-39 -125 -123 -250q-129 -196 -257 -196q-49 0 -140 32q-86 32 -151 32q-61 0 -142 -33q-81 -34 -132 -34q-152 0 -301 259q-147 261 -147 503q0 228 113 374q112 144 284 144q72 0 177 -30q104 -30 138 -30q45 0 143 34q102 34 173 34q119 0 213 -65 q52 -36 104 -100q-79 -67 -114 -118q-65 -94 -65 -207q0 -124 69 -223t158 -126zM1017 1494q0 -61 -29 -136q-30 -75 -93 -138q-54 -54 -108 -72q-37 -11 -104 -17q3 149 78 257q74 107 250 148q1 -3 2.5 -11t2.5 -11q0 -4 0.5 -10t0.5 -10z" />
<glyph unicode="&#xf17a;" horiz-adv-x="1664" d="M682 530v-651l-682 94v557h682zM682 1273v-659h-682v565zM1664 530v-786l-907 125v661h907zM1664 1408v-794h-907v669z" />
<glyph unicode="&#xf17b;" horiz-adv-x="1408" d="M493 1053q16 0 27.5 11.5t11.5 27.5t-11.5 27.5t-27.5 11.5t-27 -11.5t-11 -27.5t11 -27.5t27 -11.5zM915 1053q16 0 27 11.5t11 27.5t-11 27.5t-27 11.5t-27.5 -11.5t-11.5 -27.5t11.5 -27.5t27.5 -11.5zM103 869q42 0 72 -30t30 -72v-430q0 -43 -29.5 -73t-72.5 -30 t-73 30t-30 73v430q0 42 30 72t73 30zM1163 850v-666q0 -46 -32 -78t-77 -32h-75v-227q0 -43 -30 -73t-73 -30t-73 30t-30 73v227h-138v-227q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73l-1 227h-74q-46 0 -78 32t-32 78v666h918zM931 1255q107 -55 171 -153.5t64 -215.5 h-925q0 117 64 215.5t172 153.5l-71 131q-7 13 5 20q13 6 20 -6l72 -132q95 42 201 42t201 -42l72 132q7 12 20 6q12 -7 5 -20zM1408 767v-430q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73v430q0 43 30 72.5t72 29.5q43 0 73 -29.5t30 -72.5z" />
<glyph unicode="&#xf17c;" d="M663 1125q-11 -1 -15.5 -10.5t-8.5 -9.5q-5 -1 -5 5q0 12 19 15h10zM750 1111q-4 -1 -11.5 6.5t-17.5 4.5q24 11 32 -2q3 -6 -3 -9zM399 684q-4 1 -6 -3t-4.5 -12.5t-5.5 -13.5t-10 -13q-7 -10 -1 -12q4 -1 12.5 7t12.5 18q1 3 2 7t2 6t1.5 4.5t0.5 4v3t-1 2.5t-3 2z M1254 325q0 18 -55 42q4 15 7.5 27.5t5 26t3 21.5t0.5 22.5t-1 19.5t-3.5 22t-4 20.5t-5 25t-5.5 26.5q-10 48 -47 103t-72 75q24 -20 57 -83q87 -162 54 -278q-11 -40 -50 -42q-31 -4 -38.5 18.5t-8 83.5t-11.5 107q-9 39 -19.5 69t-19.5 45.5t-15.5 24.5t-13 15t-7.5 7 q-14 62 -31 103t-29.5 56t-23.5 33t-15 40q-4 21 6 53.5t4.5 49.5t-44.5 25q-15 3 -44.5 18t-35.5 16q-8 1 -11 26t8 51t36 27q37 3 51 -30t4 -58q-11 -19 -2 -26.5t30 -0.5q13 4 13 36v37q-5 30 -13.5 50t-21 30.5t-23.5 15t-27 7.5q-107 -8 -89 -134q0 -15 -1 -15 q-9 9 -29.5 10.5t-33 -0.5t-15.5 5q1 57 -16 90t-45 34q-27 1 -41.5 -27.5t-16.5 -59.5q-1 -15 3.5 -37t13 -37.5t15.5 -13.5q10 3 16 14q4 9 -7 8q-7 0 -15.5 14.5t-9.5 33.5q-1 22 9 37t34 14q17 0 27 -21t9.5 -39t-1.5 -22q-22 -15 -31 -29q-8 -12 -27.5 -23.5 t-20.5 -12.5q-13 -14 -15.5 -27t7.5 -18q14 -8 25 -19.5t16 -19t18.5 -13t35.5 -6.5q47 -2 102 15q2 1 23 7t34.5 10.5t29.5 13t21 17.5q9 14 20 8q5 -3 6.5 -8.5t-3 -12t-16.5 -9.5q-20 -6 -56.5 -21.5t-45.5 -19.5q-44 -19 -70 -23q-25 -5 -79 2q-10 2 -9 -2t17 -19 q25 -23 67 -22q17 1 36 7t36 14t33.5 17.5t30 17t24.5 12t17.5 2.5t8.5 -11q0 -2 -1 -4.5t-4 -5t-6 -4.5t-8.5 -5t-9 -4.5t-10 -5t-9.5 -4.5q-28 -14 -67.5 -44t-66.5 -43t-49 -1q-21 11 -63 73q-22 31 -25 22q-1 -3 -1 -10q0 -25 -15 -56.5t-29.5 -55.5t-21 -58t11.5 -63 q-23 -6 -62.5 -90t-47.5 -141q-2 -18 -1.5 -69t-5.5 -59q-8 -24 -29 -3q-32 31 -36 94q-2 28 4 56q4 19 -1 18l-4 -5q-36 -65 10 -166q5 -12 25 -28t24 -20q20 -23 104 -90.5t93 -76.5q16 -15 17.5 -38t-14 -43t-45.5 -23q8 -15 29 -44.5t28 -54t7 -70.5q46 24 7 92 q-4 8 -10.5 16t-9.5 12t-2 6q3 5 13 9.5t20 -2.5q46 -52 166 -36q133 15 177 87q23 38 34 30q12 -6 10 -52q-1 -25 -23 -92q-9 -23 -6 -37.5t24 -15.5q3 19 14.5 77t13.5 90q2 21 -6.5 73.5t-7.5 97t23 70.5q15 18 51 18q1 37 34.5 53t72.5 10.5t60 -22.5zM626 1152 q3 17 -2.5 30t-11.5 15q-9 2 -9 -7q2 -5 5 -6q10 0 7 -15q-3 -20 8 -20q3 0 3 3zM1045 955q-2 8 -6.5 11.5t-13 5t-14.5 5.5q-5 3 -9.5 8t-7 8t-5.5 6.5t-4 4t-4 -1.5q-14 -16 7 -43.5t39 -31.5q9 -1 14.5 8t3.5 20zM867 1168q0 11 -5 19.5t-11 12.5t-9 3q-14 -1 -7 -7l4 -2 q14 -4 18 -31q0 -3 8 2zM921 1401q0 2 -2.5 5t-9 7t-9.5 6q-15 15 -24 15q-9 -1 -11.5 -7.5t-1 -13t-0.5 -12.5q-1 -4 -6 -10.5t-6 -9t3 -8.5q4 -3 8 0t11 9t15 9q1 1 9 1t15 2t9 7zM1486 60q20 -12 31 -24.5t12 -24t-2.5 -22.5t-15.5 -22t-23.5 -19.5t-30 -18.5 t-31.5 -16.5t-32 -15.5t-27 -13q-38 -19 -85.5 -56t-75.5 -64q-17 -16 -68 -19.5t-89 14.5q-18 9 -29.5 23.5t-16.5 25.5t-22 19.5t-47 9.5q-44 1 -130 1q-19 0 -57 -1.5t-58 -2.5q-44 -1 -79.5 -15t-53.5 -30t-43.5 -28.5t-53.5 -11.5q-29 1 -111 31t-146 43q-19 4 -51 9.5 t-50 9t-39.5 9.5t-33.5 14.5t-17 19.5q-10 23 7 66.5t18 54.5q1 16 -4 40t-10 42.5t-4.5 36.5t10.5 27q14 12 57 14t60 12q30 18 42 35t12 51q21 -73 -32 -106q-32 -20 -83 -15q-34 3 -43 -10q-13 -15 5 -57q2 -6 8 -18t8.5 -18t4.5 -17t1 -22q0 -15 -17 -49t-14 -48 q3 -17 37 -26q20 -6 84.5 -18.5t99.5 -20.5q24 -6 74 -22t82.5 -23t55.5 -4q43 6 64.5 28t23 48t-7.5 58.5t-19 52t-20 36.5q-121 190 -169 242q-68 74 -113 40q-11 -9 -15 15q-3 16 -2 38q1 29 10 52t24 47t22 42q8 21 26.5 72t29.5 78t30 61t39 54q110 143 124 195 q-12 112 -16 310q-2 90 24 151.5t106 104.5q39 21 104 21q53 1 106 -13.5t89 -41.5q57 -42 91.5 -121.5t29.5 -147.5q-5 -95 30 -214q34 -113 133 -218q55 -59 99.5 -163t59.5 -191q8 -49 5 -84.5t-12 -55.5t-20 -22q-10 -2 -23.5 -19t-27 -35.5t-40.5 -33.5t-61 -14 q-18 1 -31.5 5t-22.5 13.5t-13.5 15.5t-11.5 20.5t-9 19.5q-22 37 -41 30t-28 -49t7 -97q20 -70 1 -195q-10 -65 18 -100.5t73 -33t85 35.5q59 49 89.5 66.5t103.5 42.5q53 18 77 36.5t18.5 34.5t-25 28.5t-51.5 23.5q-33 11 -49.5 48t-15 72.5t15.5 47.5q1 -31 8 -56.5 t14.5 -40.5t20.5 -28.5t21 -19t21.5 -13t16.5 -9.5z" />
<glyph unicode="&#xf17d;" d="M1024 36q-42 241 -140 498h-2l-2 -1q-16 -6 -43 -16.5t-101 -49t-137 -82t-131 -114.5t-103 -148l-15 11q184 -150 418 -150q132 0 256 52zM839 643q-21 49 -53 111q-311 -93 -673 -93q-1 -7 -1 -21q0 -124 44 -236.5t124 -201.5q50 89 123.5 166.5t142.5 124.5t130.5 81 t99.5 48l37 13q4 1 13 3.5t13 4.5zM732 855q-120 213 -244 378q-138 -65 -234 -186t-128 -272q302 0 606 80zM1416 536q-210 60 -409 29q87 -239 128 -469q111 75 185 189.5t96 250.5zM611 1277q-1 0 -2 -1q1 1 2 1zM1201 1132q-185 164 -433 164q-76 0 -155 -19 q131 -170 246 -382q69 26 130 60.5t96.5 61.5t65.5 57t37.5 40.5zM1424 647q-3 232 -149 410l-1 -1q-9 -12 -19 -24.5t-43.5 -44.5t-71 -60.5t-100 -65t-131.5 -64.5q25 -53 44 -95q2 -6 6.5 -17.5t7.5 -16.5q36 5 74.5 7t73.5 2t69 -1.5t64 -4t56.5 -5.5t48 -6.5t36.5 -6 t25 -4.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf17e;" d="M1173 473q0 50 -19.5 91.5t-48.5 68.5t-73 49t-82.5 34t-87.5 23l-104 24q-30 7 -44 10.5t-35 11.5t-30 16t-16.5 21t-7.5 30q0 77 144 77q43 0 77 -12t54 -28.5t38 -33.5t40 -29t48 -12q47 0 75.5 32t28.5 77q0 55 -56 99.5t-142 67.5t-182 23q-68 0 -132 -15.5 t-119.5 -47t-89 -87t-33.5 -128.5q0 -61 19 -106.5t56 -75.5t80 -48.5t103 -32.5l146 -36q90 -22 112 -36q32 -20 32 -60q0 -39 -40 -64.5t-105 -25.5q-51 0 -91.5 16t-65 38.5t-45.5 45t-46 38.5t-54 16q-50 0 -75.5 -30t-25.5 -75q0 -92 122 -157.5t291 -65.5 q73 0 140 18.5t122.5 53.5t88.5 93.5t33 131.5zM1536 256q0 -159 -112.5 -271.5t-271.5 -112.5q-130 0 -234 80q-77 -16 -150 -16q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5q0 73 16 150q-80 104 -80 234q0 159 112.5 271.5t271.5 112.5q130 0 234 -80 q77 16 150 16q143 0 273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -73 -16 -150q80 -104 80 -234z" />
<glyph unicode="&#xf180;" horiz-adv-x="1664" d="M1483 512l-587 -587q-52 -53 -127.5 -53t-128.5 53l-587 587q-53 53 -53 128t53 128l587 587q53 53 128 53t128 -53l265 -265l-398 -399l-188 188q-42 42 -99 42q-59 0 -100 -41l-120 -121q-42 -40 -42 -99q0 -58 42 -100l406 -408q30 -28 67 -37l6 -4h28q60 0 99 41 l619 619l2 -3q53 -53 53 -128t-53 -128zM1406 1138l120 -120q14 -15 14 -36t-14 -36l-730 -730q-17 -15 -37 -15v0q-4 0 -6 1q-18 2 -30 14l-407 408q-14 15 -14 36t14 35l121 120q13 15 35 15t36 -15l252 -252l574 575q15 15 36 15t36 -15z" />
<glyph unicode="&#xf181;" d="M704 192v1024q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-1024q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1376 576v640q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-640q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408 q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf182;" horiz-adv-x="1280" d="M1280 480q0 -40 -28 -68t-68 -28q-51 0 -80 43l-227 341h-45v-132l247 -411q9 -15 9 -33q0 -26 -19 -45t-45 -19h-192v-272q0 -46 -33 -79t-79 -33h-160q-46 0 -79 33t-33 79v272h-192q-26 0 -45 19t-19 45q0 18 9 33l247 411v132h-45l-227 -341q-29 -43 -80 -43 q-40 0 -68 28t-28 68q0 29 16 53l256 384q73 107 176 107h384q103 0 176 -107l256 -384q16 -24 16 -53zM864 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
<glyph unicode="&#xf183;" horiz-adv-x="1024" d="M1024 832v-416q0 -40 -28 -68t-68 -28t-68 28t-28 68v352h-64v-912q0 -46 -33 -79t-79 -33t-79 33t-33 79v464h-64v-464q0 -46 -33 -79t-79 -33t-79 33t-33 79v912h-64v-352q0 -40 -28 -68t-68 -28t-68 28t-28 68v416q0 80 56 136t136 56h640q80 0 136 -56t56 -136z M736 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
<glyph unicode="&#xf184;" d="M773 234l350 473q16 22 24.5 59t-6 85t-61.5 79q-40 26 -83 25.5t-73.5 -17.5t-54.5 -45q-36 -40 -96 -40q-59 0 -95 40q-24 28 -54.5 45t-73.5 17.5t-84 -25.5q-46 -31 -60.5 -79t-6 -85t24.5 -59zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf185;" horiz-adv-x="1792" d="M1472 640q0 117 -45.5 223.5t-123 184t-184 123t-223.5 45.5t-223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5t45.5 -223.5t123 -184t184 -123t223.5 -45.5t223.5 45.5t184 123t123 184t45.5 223.5zM1748 363q-4 -15 -20 -20l-292 -96v-306q0 -16 -13 -26q-15 -10 -29 -4 l-292 94l-180 -248q-10 -13 -26 -13t-26 13l-180 248l-292 -94q-14 -6 -29 4q-13 10 -13 26v306l-292 96q-16 5 -20 20q-5 17 4 29l180 248l-180 248q-9 13 -4 29q4 15 20 20l292 96v306q0 16 13 26q15 10 29 4l292 -94l180 248q9 12 26 12t26 -12l180 -248l292 94 q14 6 29 -4q13 -10 13 -26v-306l292 -96q16 -5 20 -20q5 -16 -4 -29l-180 -248l180 -248q9 -12 4 -29z" />
<glyph unicode="&#xf186;" d="M1262 233q-54 -9 -110 -9q-182 0 -337 90t-245 245t-90 337q0 192 104 357q-201 -60 -328.5 -229t-127.5 -384q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51q144 0 273.5 61.5t220.5 171.5zM1465 318q-94 -203 -283.5 -324.5t-413.5 -121.5q-156 0 -298 61 t-245 164t-164 245t-61 298q0 153 57.5 292.5t156 241.5t235.5 164.5t290 68.5q44 2 61 -39q18 -41 -15 -72q-86 -78 -131.5 -181.5t-45.5 -218.5q0 -148 73 -273t198 -198t273 -73q118 0 228 51q41 18 72 -13q14 -14 17.5 -34t-4.5 -38z" />
<glyph unicode="&#xf187;" horiz-adv-x="1792" d="M1088 704q0 26 -19 45t-45 19h-256q-26 0 -45 -19t-19 -45t19 -45t45 -19h256q26 0 45 19t19 45zM1664 896v-960q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v960q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1728 1344v-256q0 -26 -19 -45t-45 -19h-1536 q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1536q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf188;" horiz-adv-x="1664" d="M1632 576q0 -26 -19 -45t-45 -19h-224q0 -171 -67 -290l208 -209q19 -19 19 -45t-19 -45q-18 -19 -45 -19t-45 19l-198 197q-5 -5 -15 -13t-42 -28.5t-65 -36.5t-82 -29t-97 -13v896h-128v-896q-51 0 -101.5 13.5t-87 33t-66 39t-43.5 32.5l-15 14l-183 -207 q-20 -21 -48 -21q-24 0 -43 16q-19 18 -20.5 44.5t15.5 46.5l202 227q-58 114 -58 274h-224q-26 0 -45 19t-19 45t19 45t45 19h224v294l-173 173q-19 19 -19 45t19 45t45 19t45 -19l173 -173h844l173 173q19 19 45 19t45 -19t19 -45t-19 -45l-173 -173v-294h224q26 0 45 -19 t19 -45zM1152 1152h-640q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5z" />
<glyph unicode="&#xf189;" horiz-adv-x="1920" d="M1917 1016q23 -64 -150 -294q-24 -32 -65 -85q-78 -100 -90 -131q-17 -41 14 -81q17 -21 81 -82h1l1 -1l1 -1l2 -2q141 -131 191 -221q3 -5 6.5 -12.5t7 -26.5t-0.5 -34t-25 -27.5t-59 -12.5l-256 -4q-24 -5 -56 5t-52 22l-20 12q-30 21 -70 64t-68.5 77.5t-61 58 t-56.5 15.5q-3 -1 -8 -3.5t-17 -14.5t-21.5 -29.5t-17 -52t-6.5 -77.5q0 -15 -3.5 -27.5t-7.5 -18.5l-4 -5q-18 -19 -53 -22h-115q-71 -4 -146 16.5t-131.5 53t-103 66t-70.5 57.5l-25 24q-10 10 -27.5 30t-71.5 91t-106 151t-122.5 211t-130.5 272q-6 16 -6 27t3 16l4 6 q15 19 57 19l274 2q12 -2 23 -6.5t16 -8.5l5 -3q16 -11 24 -32q20 -50 46 -103.5t41 -81.5l16 -29q29 -60 56 -104t48.5 -68.5t41.5 -38.5t34 -14t27 5q2 1 5 5t12 22t13.5 47t9.5 81t0 125q-2 40 -9 73t-14 46l-6 12q-25 34 -85 43q-13 2 5 24q17 19 38 30q53 26 239 24 q82 -1 135 -13q20 -5 33.5 -13.5t20.5 -24t10.5 -32t3.5 -45.5t-1 -55t-2.5 -70.5t-1.5 -82.5q0 -11 -1 -42t-0.5 -48t3.5 -40.5t11.5 -39t22.5 -24.5q8 -2 17 -4t26 11t38 34.5t52 67t68 107.5q60 104 107 225q4 10 10 17.5t11 10.5l4 3l5 2.5t13 3t20 0.5l288 2 q39 5 64 -2.5t31 -16.5z" />
<glyph unicode="&#xf18a;" horiz-adv-x="1792" d="M675 252q21 34 11 69t-45 50q-34 14 -73 1t-60 -46q-22 -34 -13 -68.5t43 -50.5t74.5 -2.5t62.5 47.5zM769 373q8 13 3.5 26.5t-17.5 18.5q-14 5 -28.5 -0.5t-21.5 -18.5q-17 -31 13 -45q14 -5 29 0.5t22 18.5zM943 266q-45 -102 -158 -150t-224 -12 q-107 34 -147.5 126.5t6.5 187.5q47 93 151.5 139t210.5 19q111 -29 158.5 -119.5t2.5 -190.5zM1255 426q-9 96 -89 170t-208.5 109t-274.5 21q-223 -23 -369.5 -141.5t-132.5 -264.5q9 -96 89 -170t208.5 -109t274.5 -21q223 23 369.5 141.5t132.5 264.5zM1563 422 q0 -68 -37 -139.5t-109 -137t-168.5 -117.5t-226 -83t-270.5 -31t-275 33.5t-240.5 93t-171.5 151t-65 199.5q0 115 69.5 245t197.5 258q169 169 341.5 236t246.5 -7q65 -64 20 -209q-4 -14 -1 -20t10 -7t14.5 0.5t13.5 3.5l6 2q139 59 246 59t153 -61q45 -63 0 -178 q-2 -13 -4.5 -20t4.5 -12.5t12 -7.5t17 -6q57 -18 103 -47t80 -81.5t34 -116.5zM1489 1046q42 -47 54.5 -108.5t-6.5 -117.5q-8 -23 -29.5 -34t-44.5 -4q-23 8 -34 29.5t-4 44.5q20 63 -24 111t-107 35q-24 -5 -45 8t-25 37q-5 24 8 44.5t37 25.5q60 13 119 -5.5t101 -65.5z M1670 1209q87 -96 112.5 -222.5t-13.5 -241.5q-9 -27 -34 -40t-52 -4t-40 34t-5 52q28 82 10 172t-80 158q-62 69 -148 95.5t-173 8.5q-28 -6 -52 9.5t-30 43.5t9.5 51.5t43.5 29.5q123 26 244 -11.5t208 -134.5z" />
<glyph unicode="&#xf18b;" d="M1133 -34q-171 -94 -368 -94q-196 0 -367 94q138 87 235.5 211t131.5 268q35 -144 132.5 -268t235.5 -211zM638 1394v-485q0 -252 -126.5 -459.5t-330.5 -306.5q-181 215 -181 495q0 187 83.5 349.5t229.5 269.5t325 137zM1536 638q0 -280 -181 -495 q-204 99 -330.5 306.5t-126.5 459.5v485q179 -30 325 -137t229.5 -269.5t83.5 -349.5z" />
<glyph unicode="&#xf18c;" horiz-adv-x="1408" d="M1402 433q-32 -80 -76 -138t-91 -88.5t-99 -46.5t-101.5 -14.5t-96.5 8.5t-86.5 22t-69.5 27.5t-46 22.5l-17 10q-113 -228 -289.5 -359.5t-384.5 -132.5q-19 0 -32 13t-13 32t13 31.5t32 12.5q173 1 322.5 107.5t251.5 294.5q-36 -14 -72 -23t-83 -13t-91 2.5t-93 28.5 t-92 59t-84.5 100t-74.5 146q114 47 214 57t167.5 -7.5t124.5 -56.5t88.5 -77t56.5 -82q53 131 79 291q-7 -1 -18 -2.5t-46.5 -2.5t-69.5 0.5t-81.5 10t-88.5 23t-84 42.5t-75 65t-54.5 94.5t-28.5 127.5q70 28 133.5 36.5t112.5 -1t92 -30t73.5 -50t56 -61t42 -63t27.5 -56 t16 -39.5l4 -16q12 122 12 195q-8 6 -21.5 16t-49 44.5t-63.5 71.5t-54 93t-33 112.5t12 127t70 138.5q73 -25 127.5 -61.5t84.5 -76.5t48 -85t20.5 -89t-0.5 -85.5t-13 -76.5t-19 -62t-17 -42l-7 -15q1 -5 1 -50.5t-1 -71.5q3 7 10 18.5t30.5 43t50.5 58t71 55.5t91.5 44.5 t112 14.5t132.5 -24q-2 -78 -21.5 -141.5t-50 -104.5t-69.5 -71.5t-81.5 -45.5t-84.5 -24t-80 -9.5t-67.5 1t-46.5 4.5l-17 3q-23 -147 -73 -283q6 7 18 18.5t49.5 41t77.5 52.5t99.5 42t117.5 20t129 -23.5t137 -77.5z" />
<glyph unicode="&#xf18d;" horiz-adv-x="1280" d="M1259 283v-66q0 -85 -57.5 -144.5t-138.5 -59.5h-57l-260 -269v269h-529q-81 0 -138.5 59.5t-57.5 144.5v66h1238zM1259 609v-255h-1238v255h1238zM1259 937v-255h-1238v255h1238zM1259 1077v-67h-1238v67q0 84 57.5 143.5t138.5 59.5h846q81 0 138.5 -59.5t57.5 -143.5z " />
<glyph unicode="&#xf18e;" d="M1152 640q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198 t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf190;" d="M1152 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-192q0 -14 -9 -23t-23 -9q-12 0 -24 10l-319 319q-9 9 -9 23t9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h352q13 0 22.5 -9.5t9.5 -22.5zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198 t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf191;" d="M1024 960v-640q0 -26 -19 -45t-45 -19q-20 0 -37 12l-448 320q-27 19 -27 52t27 52l448 320q17 12 37 12q26 0 45 -19t19 -45zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5z M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf192;" d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5 t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf193;" horiz-adv-x="1664" d="M1023 349l102 -204q-58 -179 -210 -290t-339 -111q-156 0 -288.5 77.5t-210 210t-77.5 288.5q0 181 104.5 330t274.5 211l17 -131q-122 -54 -195 -165.5t-73 -244.5q0 -185 131.5 -316.5t316.5 -131.5q126 0 232.5 65t165 175.5t49.5 236.5zM1571 249l58 -114l-256 -128 q-13 -7 -29 -7q-40 0 -57 35l-239 477h-472q-24 0 -42.5 16.5t-21.5 40.5l-96 779q-2 16 6 42q14 51 57 82.5t97 31.5q66 0 113 -47t47 -113q0 -69 -52 -117.5t-120 -41.5l37 -289h423v-128h-407l16 -128h455q40 0 57 -35l228 -455z" />
<glyph unicode="&#xf194;" d="M1254 899q16 85 -21 132q-52 65 -187 45q-17 -3 -41 -12.5t-57.5 -30.5t-64.5 -48.5t-59.5 -70t-44.5 -91.5q80 7 113.5 -16t26.5 -99q-5 -52 -52 -143q-43 -78 -71 -99q-44 -32 -87 14q-23 24 -37.5 64.5t-19 73t-10 84t-8.5 71.5q-23 129 -34 164q-12 37 -35.5 69 t-50.5 40q-57 16 -127 -25q-54 -32 -136.5 -106t-122.5 -102v-7q16 -8 25.5 -26t21.5 -20q21 -3 54.5 8.5t58 10.5t41.5 -30q11 -18 18.5 -38.5t15 -48t12.5 -40.5q17 -46 53 -187q36 -146 57 -197q42 -99 103 -125q43 -12 85 -1.5t76 31.5q131 77 250 237 q104 139 172.5 292.5t82.5 226.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf195;" horiz-adv-x="1152" d="M1152 704q0 -191 -94.5 -353t-256.5 -256.5t-353 -94.5h-160q-14 0 -23 9t-9 23v611l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v93l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v250q0 14 9 23t23 9h160 q14 0 23 -9t9 -23v-181l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-93l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-487q188 13 318 151t130 328q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf196;" horiz-adv-x="1792" />
<glyph unicode="&#xf197;" horiz-adv-x="1792" />
<glyph unicode="&#xf198;" horiz-adv-x="1792" />
<glyph unicode="&#xf199;" horiz-adv-x="1792" />
<glyph unicode="&#xf19a;" horiz-adv-x="1792" />
<glyph unicode="&#xf19b;" horiz-adv-x="1792" />
<glyph unicode="&#xf19c;" horiz-adv-x="1792" />
<glyph unicode="&#xf19d;" horiz-adv-x="1792" />
<glyph unicode="&#xf19e;" horiz-adv-x="1792" />
<glyph unicode="&#xf500;" horiz-adv-x="1792" />
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 198 KiB

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

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