Move in new icons

This commit is contained in:
John O'Nolan 2015-05-12 23:49:11 +01:00 committed by Hannah Wolfe
parent 804ca6e980
commit e28fcb3eb6
26 changed files with 271 additions and 839 deletions

View File

@ -6,7 +6,7 @@ var UploadUi,
UploadUi = function ($dropzone, settings) {
var $url = '<div class="js-url"><input class="url js-upload-url" type="url" placeholder="http://"/></div>',
$cancel = '<a class="image-cancel js-cancel" title="Delete"><span class="hidden">Delete</span></a>',
$cancel = '<a class="image-cancel icon-trash js-cancel" title="Delete"><span class="hidden">Delete</span></a>',
$progress = $('<div />', {
class: 'js-upload-progress progress progress-success active',
role: 'progressbar',

View File

@ -70,7 +70,7 @@
</section>
<a class=" btn btn-green" href="/ghost/editor/" title="New Post"><span class="hidden">New Post</span></a>
</header>
<section class="content-list-content">
<div class="nano">
@ -109,7 +109,7 @@
<span class="author">Test User</span>
</small>
<section class="post-controls">
<a class=" btn btn-default post-edit" href="/ghost/editor/34/"> Edit</a>
<a class=" btn btn-default post-edit" href="/ghost/editor/34/"><i class="icon-pen"></i> Edit</a>
</section>
</header>
<section class=" content-preview-content" style="padding: 15px;">
@ -134,7 +134,7 @@
<p>Perspiciatis error ad odit earum excepturi, cumque, mollitia molestias blanditiis impedit consectetur commodi autem architecto nihil, cupiditate nobis laborum vero voluptatibus. Sit repellat autem dicta, mollitia, cum aliquid minima provident, officia quidem molestias est. Esse iusto optio saepe, dolores debitis culpa dolor quis praesentium consectetur. Quae iusto, fugiat labore! Placeat?</p>
</div>
</section>
</div>
</div>
@ -146,7 +146,7 @@
<script src="../../../bower_components/jquery/dist/jquery.js"></script>
<script src="../../../core/shared/lib/nanoscroller/nanoscroller.js"></script>
<script>
function debounce(fn, delay) {
@ -159,7 +159,7 @@
}, delay);
};
}
$(function(){
// Duplicate the post 40 times (for brevity of HTML)
@ -190,9 +190,9 @@
nano.removeClass("nanoShowScrollBar");
}, 850));
});
});
</script>
</body>
</html>

View File

@ -5,7 +5,6 @@
@import "modules/variables";
@import "modules/mixins";
@import "modules/icons";
@import "modules/icons-new";
@import "modules/animations";
@ -52,7 +51,6 @@
// --------------------------------------------------
@import "layouts/main";
@import "layouts/default";
@import "layouts/setup";
@import "layouts/auth";
@import "layouts/content";

View File

@ -194,7 +194,6 @@
}
.image-cancel {
@include icon($i-trash, 11px);
position: absolute;
top: 10px;
right: 10px;

View File

@ -41,16 +41,7 @@
}
.ghost_logo {
position: relative;
left: 3px;
@include icon($i-ghost, 1.7rem, $midgrey) {
position: relative;
top: -6px;
};
@include icon-after($i-ghost-logo, 3.2rem, $darkgrey) {
position: relative;
left: -5px;
};
content: "Ghost";
}
.version {

View File

@ -60,30 +60,6 @@
border: none;
}
.content-filter {
position: relative;
z-index: 300;
> a {
padding: 5px;
margin-left: -5px;
}
.menu-drop {
display: block;
}
}
.btn-green {
@include icon($i-add);
position: absolute;
top: 9px;
right: 20px;
z-index: 700;
padding: 2px 4px 3px 5px;
color: #fff !important; // getting overridden by floatingheader
}
.content-list-content {
position: absolute;
top: 0;
@ -144,15 +120,6 @@
}
}
.featured {
@include icon($i-featured, 11px) {
vertical-align: 7%;
position: absolute;
bottom: 25px;
right: 25px;
};
}
ol {
list-style: none;
padding: 0;
@ -171,13 +138,6 @@
padding: 19px 20px 22px 24px;
color: rgba(0,0,0,0.5);
@include icon-after($i-chevron) {
position: absolute;
top: 50%;
margin-top: -6px;
right: 15px;
}
&:hover {
text-decoration: none;
}
@ -228,14 +188,12 @@
}
.unfeatured {
@include icon($i-unfeatured, 14px);
vertical-align: -6%;
margin: 0 7px 0 -5px;
padding: 3px;
}
.featured {
@include icon($i-featured, 14px);
vertical-align: -6%;
margin: 0 7px 0 -5px;
padding: 3px;
@ -286,10 +244,6 @@
right: -3px;
}
.post-edit {
@include icon($i-edit, 14px);
}
img {
width:100%;
height:auto;

View File

@ -1,154 +0,0 @@
// ------------------------------------------------------------
// Default Styles
//
// Styles for containers and elements used throughout Ghost
//
// * Global Container
// * Main Layout
// * Content Panel
// * The header bar
// ------------------------------------------------------------
//
// Global Container
// --------------------------------------------------
// Absolutely everything goes in here. It helps
// reliably position other elements,
#container {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
overflow: hidden;
}
//
// Main Layout
// --------------------------------------------------
// The <main> content wrapper
.viewport {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
overflow: hidden;
z-index: 500; // Above the .global-nav when collapsed
transition: transform $settings-menu-transition cubic-bezier($settings-menu-bezier);
@media (max-width: 900px) {
transition: transform 0.4s cubic-bezier($settings-menu-bezier);
}
// Compiles to `body.settings-menu-expanded .viewport`
body.global-nav-expanded & {
transform: translate3d(260px, 0px, 0px);
}
// Compiles to `body.settings-menu-expanded .viewport`
body.settings-menu-expanded & {
@media (max-width: 350px) {
transform: translate3d(-100%, 0px, 0px);
}
@media (min-width: 351px) {
transform: translate3d(-350px, 0px, 0px);
&:before {
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
z-index: 1000;
width: 1px;
background: #EDECE4;
}
}
}
}//.viewport
//
// Content Panel
// --------------------------------------------------
// We can't use position:fixed on .page-header because it would
// break the mobile menu. So we create an overflow-auto content
// area which scrolls just underneath the header, making it look
// like the header is position:fixed.
.page-content {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: #fff;
overflow-y: auto;
overflow-x: hidden;
}
//
// The header bar
// --------------------------------------------------
// Visible below 900px, as the nav isn't covering this.
.page-header {
position: relative;
height: 44px;
line-height: 44px;
text-align: center;
color: #fff;
background: $darkgrey;
overflow: hidden;
@media (min-width: 900px) {
height: 60px;
line-height: 60px;
}
}
// Centered page heading
.page-title {
display: block;
height: 44px;
line-height: 44px;
margin: 0;
padding: 0 15%;
color: #fff;
font-size: 1.8rem;
font-weight: normal;
letter-spacing: 0;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
@media (min-width: 900px) {
height: 60px;
line-height: 60px;
}
}
// The burger to expand .global-nav menu
.menu-button {
@include icon($i-menu, 18px) {
position: absolute;
top: 50%;
left: 12px;
transform: translateY(-50%);
}
display: block;
position: absolute;
top: 0;
left: 0;
width: 44px;
height: 44px;
color: #fff;
}

View File

@ -20,7 +20,7 @@
// Post Title
// --------------------------------------------------
.entry-container .entry-title {
.entry-title {
height: 60px;
padding: 0;
position: relative;
@ -291,16 +291,8 @@
// --------------------------------------------------
.markdown-help {
position: relative;
top: -3px;
right: -5px;
@include icon($i-markdown, '16px', lighten($brown, 15%));
float: right;
padding: 5px;
&:hover {
@include icon($i-markdown, '', $brown);
}
}
@ -487,10 +479,6 @@ body.zen {
}
.tag {
@include icon-after($i-x, 8px, #fff) {
margin-left: 3px;
vetical-align: -10%;
}
display: inline;
margin-right: 3px;
padding: 2px 5px;
@ -505,6 +493,10 @@ body.zen {
&:hover {
cursor: pointer;
}
i {
font-size: 0.7rem;
}
}
}//#entry-tags
@ -647,7 +639,6 @@ body.zen {
}
.post-settings {
@include icon($i-settings, 14px);
display: inline-block;
padding: 8px 10px;
color: $midgrey;

View File

@ -1,95 +0,0 @@
// ------------------------------------------------------------
// Icons
// ------------------------------------------------------------
//
// Font-face rule
// --------------------------------------------------
@font-face {
font-family: "ghosticons";
src:url("fonts/ghosticons.eot");
src:url("fonts/ghosticons.eot?#iefix") format("embedded-opentype"),
url("fonts/ghosticons.woff") format("woff"),
url("fonts/ghosticons.ttf") format("truetype"),
url("fonts/ghosticons.svg#ghosticons") format("svg");
font-weight: normal;
font-style: normal;
}
[data-icon]:before {
font-family: "ghosticons" !important;
content: attr(data-icon);
font-style: normal !important;
font-weight: normal !important;
font-variant: normal !important;
text-transform: none !important;
speak: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
[class^="icon-"]:before,
[class*=" icon-"]:before {
font-family: "ghosticons" !important;
font-style: normal !important;
font-weight: normal !important;
font-variant: normal !important;
text-transform: none !important;
speak: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-user:before {
content: "\e000";
}
.icon-search:before {
content: "\e001";
}
.icon-design:before {
content: "\e003";
}
.icon-content:before {
content: "\e004";
}
.icon-x:before {
content: "\e005";
}
.icon-add:before {
content: "\e006";
}
.icon-apps:before {
content: "\e007";
}
.icon-settings:before {
content: "\e008";
}
.icon-front-end:before {
content: "\e00a";
}
.icon-dash:before {
content: "\e00b";
}
.icon-tag:before {
content: "\e009";
}
.icon-compass:before {
content: "\e002";
}
.icon-code:before {
content: "\e00c";
}
.icon-team:before {
content: "\e00d";
}
.icon-idea:before {
content: "\e00e";
}
.icon-arrow:before {
content: "\e00f";
}

View File

@ -1,435 +1,215 @@
// ------------------------------------------------------------
// Icons
//
// Defined the @font-face rule for the icon font, as well as
// the base styles for when using icons.
// Includes the mixins for adding icons directly and the
// variables for each icon.
//
// * Font-face rule
// * Base styled for icons
// * Base styled for icons
// * The Icon (before) Mixin
// * The Icon (after) Mixin
// * Icon Variables
// * Icon Class Styles
// * Icon Classes
// * Div-based Icon Classes
// ------------------------------------------------------------
//
// Font-face rule
// Icon-font is generated by http://icomoon.co
// Pictos, by Drew Wilson - http://pictos.cc/
// --------------------------------------------------
@font-face {
font-family: 'GhostIcons';
src:url('fonts/icons.woff?v=0.1') format('woff'); // Increment the ?v number every time the font files are regenerated
font-weight: normal;
font-style: normal;
font-family: "ghosticons";
src:url("fonts/ghosticons.eot");
src:url("fonts/ghosticons.eot?#iefix") format("embedded-opentype"),
url("fonts/ghosticons.woff") format("woff"),
url("fonts/ghosticons.ttf") format("truetype"),
url("fonts/ghosticons.svg#ghosticons") format("svg");
font-weight: normal;
font-style: normal;
}
//
// Base styled for icons
// --------------------------------------------------
%icon-base {
font-family: "GhostIcons";
font-weight: normal;
font-style: normal;
vertical-align: -3%;
text-transform:none;
speak: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
[data-icon]:before {
font-family: "ghosticons" !important;
content: attr(data-icon);
font-style: normal !important;
font-weight: normal !important;
font-variant: normal !important;
text-transform: none !important;
speak: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
//
// The Icon (before) Mixin
// --------------------------------------------------
@mixin icon($char, $size: '', $color: '') {
&:before {
@extend %icon-base;
content: '#{$char}';
@if $size != '' {
font-size: $size;
}
@if $color != '' {
color: $color;
}
@content;
}
&:hover {
text-decoration:none;
}
[class^="icon-"]:before,
[class*=" icon-"]:before {
font-family: "ghosticons" !important;
font-style: normal !important;
font-weight: normal !important;
font-variant: normal !important;
text-transform: none !important;
speak: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
//
// The Icon (after) Mixin
// --------------------------------------------------
@mixin icon-after($char, $size: '', $color: '') {
&:after {
@extend %icon-base;
content: '#{$char}';
@if $size != '' {
font-size: $size;
}
@if $color != '' {
color: $color;
}
@content;
}
&:hover {
text-decoration:none;
}
}
//
// Icon Variables
// --------------------------------------------------
// For accessibility, icon characters in the icon font are stored in Unicode's
// Private Use Area characters. This means that screen readers won't attempt to
// read them out loud.
//
$i-add: \f632;
$i-app: \f60b;
$i-appearance: \f621;
$i-archive: \f61f;
$i-atom: \f63e;
$i-book: \f642;
$i-calendar: \f61e;
$i-camera: \f62a;
$i-check: \f633;
$i-chevron-down: \f601;
$i-chevron-left: \f643;
$i-chevron: \f61d;
$i-clock: \f628;
$i-close: \f61c;
$i-code: \f63d;
$i-comments: \f61b;
$i-compass: \f63f;
$i-content: \f62d;
$i-edit: \f60f;
$i-error: \f61a;
$i-external: \f619;
$i-featured: \f626;
$i-fullscreen: \f617;
$i-ghost-logo: \f644;
$i-ghost: \f600;
$i-grid: \f616;
$i-home: \f615;
$i-image: \f611;
$i-info: \f614;
$i-lightning: \f63c;
$i-link: \f635;
$i-list: \f613;
$i-lock: \f62c;
$i-mail: \f612;
$i-markdown: \f640;
$i-menu: \f605;
$i-mobile: \f610;
$i-notification: \f631;
$i-pacman: \f60e;
$i-pc: \f60d;
$i-pin: \f60c;
$i-power: \f62b;
$i-preview: \f60a;
$i-question: \f618;
$i-reply: \f624;
$i-repost: \f636;
$i-rss: \f609;
$i-search-left: \f608;
$i-search: \f607;
$i-services: \f620;
$i-settings: \f606;
$i-settings2: \f629;
$i-stats: \f625;
$i-success: \f630;
$i-support: \f62f;
$i-tablet: \f604;
$i-tag: \f603;
$i-trash: \f623;
$i-twitter: \f641;
$i-unfeatured: \f627;
$i-user: \f62e;
$i-users: \f602;
$i-video: \f622;
$i-weather-cloudy: \f63b;
$i-weather-partial: \f639;
$i-weather-rain: \f637;
$i-weather-snow: \f63a;
$i-weather-sun: \f638;
$i-x: \f634;
//
// Icon Class Styles
// --------------------------------------------------
[class*=icon-] {
&:before {
@extend %icon-base;
}
&:hover {
text-decoration: none;
}
}
//
// Icon Classes
// --------------------------------------------------
.icon-add:before {
content: '#{$i-add}';
}
.icon-app:before {
content: '#{$i-app}';
}
.icon-appearance:before {
content: '#{$i-appearance}';
}
.icon-archive:before {
content: '#{$i-archive}';
}
.icon-atom:before {
content: '#{$i-atom}';
}
.icon-book:before {
content: '#{$i-book}';
}
.icon-calendar:before {
content: '#{$i-calendar}';
}
.icon-camera:before {
content: '#{$i-camera}';
}
.icon-check:before {
content: '#{$i-check}';
}
.icon-chevron-down:before {
content: '#{$i-chevron-down}';
}
.icon-chevron-left:before {
content: '#{$i-chevron-left}';
}
.icon-chevron:before {
content: '#{$i-chevron}';
}
.icon-clock:before {
content: '#{$i-clock}';
}
.icon-close:before {
content: '#{$i-close}';
}
.icon-code:before {
content: '#{$i-code}';
}
.icon-comments:before {
content: '#{$i-comments}';
}
.icon-compass:before {
content: '#{$i-compass}';
}
.icon-content:before {
content: '#{$i-content}';
}
.icon-edit:before {
content: '#{$i-edit}';
}
.icon-error:before {
content: '#{$i-error}';
}
.icon-external:before {
content: '#{$i-external}';
}
.icon-featured:before {
content: '#{$i-featured}';
}
.icon-fullscreen:before {
content: '#{$i-fullscreen}';
}
.icon-ghost-logo:before {
content: '#{$i-ghost-logo}';
}
.icon-ghost:before {
content: '#{$i-ghost}';
}
.icon-grid:before {
content: '#{$i-grid}';
}
.icon-home:before {
content: '#{$i-home}';
}
.icon-image:before {
content: '#{$i-image}';
}
.icon-info:before {
content: '#{$i-info}';
}
.icon-lightning:before {
content: '#{$i-lightning}';
}
.icon-link:before {
content: '#{$i-link}';
}
.icon-list:before {
content: '#{$i-list}';
}
.icon-lock:before {
content: '#{$i-lock}';
}
.icon-mail:before {
content: '#{$i-mail}';
}
.icon-markdown:before {
content: '#{$i-markdown}';
}
.icon-menu:before {
content: '#{$i-menu}';
}
.icon-mobile:before {
content: '#{$i-mobile}';
}
.icon-notification:before {
content: '#{$i-notification}';
}
.icon-pacman:before {
content: '#{$i-pacman}';
}
.icon-pc:before {
content: '#{$i-pc}';
}
.icon-pin:before {
content: '#{$i-pin}';
}
.icon-power:before {
content: '#{$i-power}';
}
.icon-preview:before {
content: '#{$i-preview}';
}
.icon-question:before {
content: '#{$i-question}';
}
.icon-reply:before {
content: '#{$i-reply}';
}
.icon-repost:before {
content: '#{$i-repost}';
}
.icon-rss:before {
content: '#{$i-rss}';
}
.icon-search-left:before {
content: '#{$i-search-left}';
.icon-user:before {
content: "\e000";
}
.icon-search:before {
content: '#{$i-search}';
content: "\e001";
}
.icon-services:before {
content: '#{$i-services}';
.icon-design:before {
content: "\e003";
}
.icon-settings:before {
content: '#{$i-settings}';
}
.icon-settings2:before {
content: '#{$i-settings2}';
}
.icon-stats:before {
content: '#{$i-stats}';
}
.icon-success:before {
content: '#{$i-success}';
}
.icon-support:before {
content: '#{$i-support}';
}
.icon-tablet:before {
content: '#{$i-tablet}';
}
.icon-tag:before {
content: '#{$i-tag}';
}
.icon-trash:before {
content: '#{$i-trash}';
}
.icon-twitter:before {
content: '#{$i-twitter}';
}
.icon-unfeatured:before {
content: '#{$i-unfeatured}';
}
.icon-user:before {
content: '#{$i-user}';
}
.icon-users:before {
content: '#{$i-users}';
}
.icon-video:before {
content: '#{$i-video}';
}
.icon-weather-cloudy:before {
content: '#{$i-weather-cloudy}';
}
.icon-weather-partial:before {
content: '#{$i-weather-partial}';
}
.icon-weather-rain:before {
content: '#{$i-weather-rain}';
}
.icon-weather-snow:before {
content: '#{$i-weather-snow}';
}
.icon-weather-sun:before {
content: '#{$i-weather-sun}';
.icon-content:before {
content: "\e004";
}
.icon-x:before {
content: '#{$i-x}';
content: "\e005";
}
.icon-add:before {
content: "\e006";
}
.icon-apps:before {
content: "\e007";
}
.icon-settings:before {
content: "\e008";
}
.icon-front-end:before {
content: "\e00a";
}
.icon-dash:before {
content: "\e00b";
}
.icon-tag:before {
content: "\e009";
}
.icon-compass:before {
content: "\e002";
}
.icon-code:before {
content: "\e00c";
}
.icon-team:before {
content: "\e00d";
}
.icon-idea:before {
content: "\e00e";
}
.icon-arrow:before {
content: "\e00f";
}
.icon-pen:before {
content: "\e010";
}
.icon-clip:before {
content: "\e011";
}
.icon-trash:before {
content: "\e012";
}
.icon-edit:before {
content: "\e013";
}
.icon-new:before {
content: "\e014";
}
.icon-lock-2:before {
content: "\e015";
}
.icon-link:before {
content: "\e016";
}
.icon-chat:before {
content: "\e017";
}
.icon-smiley:before {
content: "\e018";
}
.icon-star:before {
content: "\e019";
}
.icon-rss:before {
content: "\e01b";
}
.icon-hotspot:before {
content: "\e01d";
}
.icon-mail:before {
content: "\e01e";
}
.icon-sound-on:before {
content: "\e01f";
}
.icon-sound-off:before {
content: "\e020";
}
.icon-download:before {
content: "\e021";
}
.icon-upload:before {
content: "\e022";
}
.icon-bell:before {
content: "\e023";
}
.icon-shop:before {
content: "\e01c";
}
.icon-box:before {
content: "\e024";
}
.icon-connections:before {
content: "\e025";
}
.icon-arrow-right:before {
content: "\e01a";
}
.icon-arrow-left:before {
content: "\e026";
}
.icon-arrow-up:before {
content: "\e027";
}
.icon-ghost:before {
content: "\e028";
}
.icon-dice:before {
content: "\e029";
}
.icon-ambulance:before {
content: "\e02a";
}
.icon-calendar:before {
content: "\e02b";
}
.icon-folder:before {
content: "\e02c";
}
.icon-pulse:before {
content: "\e02d";
}
.icon-photos:before {
content: "\e02e";
}
.icon-legal:before {
content: "\e02f";
}
.icon-letter:before {
content: "\e030";
}
.icon-grid:before {
content: "\e031";
}
// Specific icon size adjustments
.icon-list:before {
font-size: 0.9em;
content: "\e032";
}
.icon-blog:before {
content: "\e033";
}
.icon-question:before {
content: "\e034";
}
.icon-error:before {
content: "\e035";
}
.icon-power:before {
content: "\e036";
}
.icon-markdown:before {
font-size: 1.1em;
vertical-align: -7%;
}
.icon-twitter:before {
font-size: 1.1em;
}
//
// Div-based Icon Classes
// --------------------------------------------------
.icon-grab:before {
content: '';
display: inline-block;
width: 7px;
height: 15px;
background-size: 4px 4px;
background-color: $midbrown;
background-position: -1px -1px;
background-image: linear-gradient(#fff 1px, transparent 1px),
linear-gradient(90deg, #fff 1px, transparent 1px),
linear-gradient(#fff 1px, transparent 1px),
linear-gradient(90deg, #fff 1px, transparent 1px);
content: "\e037";
}

View File

@ -309,13 +309,23 @@ textarea {
padding: 0;
border-width: 0;
@include icon-after($i-chevron-down, 0.85em, $midbrown) {
&:after {
font-family: "ghosticons" !important;
font-style: normal !important;
font-weight: normal !important;
font-variant: normal !important;
text-transform: none !important;
speak: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
position: absolute;
top: 50%;
right: 0.8em;
margin-top: -0.5em;
pointer-events: none;
};
content: "\e00f";
}
select {
appearance: none;

View File

@ -30,13 +30,6 @@
// --------------------------------------------------
.nav-list-item {
@include icon($i-chevron, 1.4rem, $midbrown) {
position: absolute;
top: 50%;
right: 10px;
transform: translateY(-50%);
}
position: relative;
display: block;
padding: 8px 40px 8px 12px;
@ -80,4 +73,12 @@
color: $midgrey;
line-height: 1.375;
}
i {
position: absolute;
top: 50%;
right: 10px;
margin-top: -0.9rem;
font-size: 1.4rem;
}
}//.nav-list-item

View File

@ -23,7 +23,7 @@
</section>
<ul class="gh-nav-list gh-nav-main">
{{!<li><i class="icon-dash"></i>Dashboard</li>}}
<li>{{#link-to "editor.new"}}<i class="icon-content"></i>New Post{{/link-to}}</li>
<li>{{#link-to "editor.new"}}<i class="icon-pen"></i>New Post{{/link-to}}</li>
<li>{{#link-to "posts"}}<i class="icon-content"></i>Content{{/link-to}}</li>
{{!<li><a href="#"><i class="icon-user"></i>My Posts</a></li>}}
<li>{{#link-to "settings.users"}}<i class="icon-team"></i>Team{{/link-to}}</li>

View File

@ -4,7 +4,7 @@
<div class="publish-bar-actions">
<button type="button" class="post-settings" {{action "toggleSettingsMenu"}}>
<span class="sr-only">Post settings menu</span>
<i class="icon-settings"></i>
</button>
{{view "editor-save-button" id="entry-actions" classNameBindings="model.isNew:unsaved"}}
</div>

View File

@ -1,8 +1,3 @@
<header class="page-header">
<button class="menu-button js-menu-button" {{action "toggleGlobalMobileNav"}}><span class="sr-only">Menu</span></button>
<h2 class="page-title">Editor</h2>
</header>
<div class="page-content">
<header>
<section class="box entry-title">
@ -14,7 +9,7 @@
<section class="entry-markdown js-entry-markdown {{unless isPreview 'active'}}">
<header {{action "togglePreview" false}} class="floatingheader">
<small>Markdown</small>
<a class="markdown-help" href="" {{action "openModal" "markdown"}}><span class="hidden">What is Markdown?</span></a>
<a class="markdown-help" href="" {{action "openModal" "markdown"}}><i class="icon-markdown"></i></a>
</header>
<section id="entry-markdown-content" class="entry-markdown-content">
{{gh-ed-editor classNames="markdown-editor js-markdown-editor" tabindex="1" spellcheck="true" value=model.scratch

View File

@ -57,6 +57,7 @@
<b>Meta Data</b>
<span>Extra content for SEO and social media.</span>
</button>
<i class="icon-arrow-right"></i>
{{/gh-tab}}
</ul>

View File

@ -6,7 +6,7 @@
<div class="publish-bar-tags">
<div class="tags-wrapper tags">
{{#each tag in controller.tags}}
<span class="tag" {{action "deleteTag" tag target=view}}>{{tag.name}}</span>
<span class="tag" {{action "deleteTag" tag target=view}}>{{tag.name}} <i class="icon-x"></i></span>
{{/each}}
</div>
</div>

View File

@ -1,7 +1,7 @@
<header class="post-preview-header clearfix">
{{#link-to "posts" tagName="button" class="btn btn-default btn-back"}}Back{{/link-to}}
<h2 class="page-title">Preview</h2>
<button type="button" class="{{if model.featured 'featured' 'unfeatured'}}" title="Feature this post" {{action "toggleFeatured"}}>
<button type="button" class="{{if model.featured 'featured icon-star' 'unfeatured icon-star'}}" title="Feature this post" {{action "toggleFeatured"}}>
<span class="sr-only">Star</span>
</button>
<small class="post-published-by">
@ -16,7 +16,7 @@
<span class="author">{{#if model.author.name}}{{model.author.name}}{{else}}{{model.author.email}}{{/if}}</span>
</small>
<section class="post-controls">
{{#link-to "editor.edit" model class="btn btn-default post-edit"}} Edit{{/link-to}}
{{#link-to "editor.edit" model class="btn btn-default post-edit"}}<i class="icon-edit"></i> Edit{{/link-to}}
</section>
</header>

View File

@ -3,7 +3,7 @@ import EditorViewMixin from 'ghost/mixins/editor-base-view';
var EditorView = Ember.View.extend(EditorViewMixin, {
tagName: 'section',
classNames: ['entry-container']
classNames: ['gh-view']
});
export default EditorView;

View File

@ -4,7 +4,7 @@ import EditorViewMixin from 'ghost/mixins/editor-base-view';
var EditorNewView = Ember.View.extend(EditorViewMixin, {
tagName: 'section',
templateName: 'editor/edit',
classNames: ['entry-container']
classNames: ['gh-view']
});
export default EditorNewView;

Binary file not shown.

View File

@ -23,4 +23,44 @@
<glyph unicode="&#57357;" d="M128 277l107 0 0 22c0 16-13 33-29 37l-46 13 0 17c19 14 32 38 32 66 0 44-33 80-75 80-41 0-74-36-74-80 0-28 12-52 32-66l0-17-47-13c-16-4-28-21-28-37l0-22z m-11 214c24 0 45-18 51-42-3-1-7-2-12-1-5 1-14 3-19 12-1 3-4 5-7 6-4 0-7-1-10-3-15-16-39-17-53-12 8 23 27 40 50 40z m-53-61c19-6 43-4 62 10 7-7 16-12 27-13 2-1 5-1 8-1 3 0 6 1 9 1-1-30-25-55-53-55-29 0-52 26-53 58z m-30-114l62 17 0 21c7-2 14-3 21-3 8 0 15 1 22 3l0-21 62-17c6-2 12-10 12-17l-192 0c0 7 6 15 13 17z m450 20l-47 13 0 17c20 14 32 38 32 66 0 44-33 80-74 80-42 0-75-36-75-80 0-28 13-52 32-66l0-17-46-13c-16-4-29-21-29-37l0-22 235 0 0 22c0 16-12 33-28 37z m-89 155c24 0 44-18 51-42-4-1-8-2-13-1-5 1-14 3-18 12-2 3-5 5-8 6-3 0-7-1-9-3-16-16-39-17-54-12 8 23 28 40 51 40z m-54-61c19-6 43-4 63 10 6-7 16-12 26-13 3 0 5-1 8-1 3 0 7 1 10 2-2-31-25-56-53-56-29 0-53 26-54 58z m64-131l-106 0c0 7 6 15 12 17l62 17 0 21c7-2 14-3 22-3 7 0 14 1 21 3l0-21 62-17c7-2 13-10 13-17z m-60-240l-46 13 0 16c19 15 32 39 32 66 0 45-34 81-75 81-41 0-75-36-75-81 0-27 13-51 32-66l0-16-46-13c-16-5-28-21-28-38l0-21 234 0 0 21c0 17-12 33-28 38z m-89 154c24 0 44-17 51-41-4-1-8-2-13-1-5 1-13 3-18 12-2 3-4 5-8 5-3 1-6 0-9-3-15-15-39-17-53-11 7 23 27 39 50 39z m-53-60c19-6 43-4 62 9 7-6 16-11 26-12 2 0 5-1 7-1 4 0 8 1 11 2-1-31-25-56-53-56-29 0-52 26-53 58z m64-132l-107 0c0 7 6 15 13 17l62 18 0 21c6-2 14-3 21-3 7 0 15 1 21 3l0-21 62-18c7-2 13-10 13-17z m-121 163c4 5 4 11 0 16l-53 53c-4 4-11 4-15 0-4-4-4-11 0-15l53-54c2-2 5-3 8-3 2 0 5 1 7 3z m273 69l-53-53c-4-5-4-11 0-16 2-2 5-3 7-3 3 0 6 1 8 3l53 54c4 4 4 11 0 15-4 4-11 4-15 0z"/>
<glyph unicode="&#57358;" d="M256 405c-76 0-139-62-139-138 0-61 39-114 96-132l0-18c0-6 5-10 11-10l64 0c6 0 11 4 11 10l0 18c57 18 96 71 96 132 0 76-63 138-139 138z m29-252c-4-1-8-5-8-10l0-15-42 0 0 15c0 5-4 9-8 10-52 14-88 60-88 114 0 64 52 117 117 117 65 0 117-53 117-117 0-54-36-100-88-114z m-18-110l-22 0c-6 0-10-5-10-11 0-6 4-11 10-11l22 0c6 0 10 5 10 11 0 6-4 11-10 11z m21 42l-64 0c-6 0-11-4-11-10 0-6 5-11 11-11l64 0c6 0 11 5 11 11 0 6-5 10-11 10z m-32 342c6 0 11 4 11 10l0 43c0 6-5 11-11 11-6 0-11-5-11-11l0-43c0-6 5-10 11-10z m213-150l-42 0c-6 0-11-4-11-10 0-6 5-11 11-11l42 0c6 0 11 5 11 11 0 6-5 10-11 10z m-384 0l-42 0c-6 0-11-4-11-10 0-6 5-11 11-11l42 0c6 0 11 5 11 11 0 6-5 10-11 10z m43 103c2-2 5-3 7-3 3 0 6 1 8 3 4 4 4 11 0 15l-45 45c-5 4-11 4-16 0-4-4-4-11 0-15z m249-3c2 0 5 1 7 3l45 45c5 4 5 11 0 15-4 4-10 4-15 0l-45-45c-4-4-4-11 0-15 2-2 5-3 8-3z"/>
<glyph unicode="&#57359;" d="M508 404c-4 4-11 4-15-1l-237-271-237 271c-4 5-11 5-15 1-5-4-5-10-1-15l245-280c2-3 5-4 8-4 3 0 6 1 8 4l245 280c4 5 4 11-1 15z"/>
<glyph unicode="&#57360;" d="M456 395l-61 61c-4 4-11 4-15 0l-8-9c-9 6-19 9-29 9-15 0-28-5-38-15l-121-121c-4-4-4-11 0-15 2-2 5-3 8-3 2 0 5 1 7 3l121 120c9 10 24 12 36 7l-96-97-212-211c0 0 0 0 0-1-1 0-1-1-2-3l-45-105c-2-4-1-9 2-12 2-2 5-3 8-3 1 0 3 0 4 1l105 45c0 0 0 0 0 0l0 0c2 1 3 1 3 2 1 0 1 0 1 0l211 212 121 120c2 2 3 5 3 8 0 3-1 5-3 7z m-425-364l29 67 38-38z m85 40l-45 45 196 196 45-45z m211 211l-45 45 98 99 8 7 45-45z"/>
<glyph unicode="&#57361;" d="M465 421c-24 24-56 38-90 38-35 0-67-14-91-38l-256-256c-37-37-37-98 0-136 19-18 43-28 68-28 25 0 49 10 68 28l245 246c10 10 15 24 15 38 0 14-5 27-15 38-10 10-24 15-38 15-14 0-28-5-38-15l-181-182c-4-4-4-11 0-15 4-4 11-4 15 0l182 181c12 13 33 13 45 0 6-6 9-14 9-22 0-9-3-17-9-23l-245-246c-29-29-77-29-106 0-29 30-29 77 0 106l256 256c20 20 47 31 76 31 28 0 55-11 75-31 42-42 42-109 0-151l-181-181c-4-4-4-11 0-15 4-4 11-4 15 0l181 181c50 50 50 131 0 181z"/>
<glyph unicode="&#57362;" d="M491 448l-139 0 0 53c0 6-5 11-11 11l-170 0c-6 0-11-5-11-11l0-53-139 0c-6 0-10-5-10-11 0-6 4-10 10-10l54 0 0-416c0-6 4-11 10-11l342 0c6 0 10 5 10 11l0 416 54 0c6 0 10 4 10 10 0 6-4 11-10 11z m-310 43l150 0 0-43-150 0z m235-470l-320 0 0 406 320 0z m-245 342c-6 0-11-5-11-11l0-245c0-6 5-11 11-11 6 0 10 5 10 11l0 245c0 6-4 11-10 11z m85 0c-6 0-11-5-11-11l0-245c0-6 5-11 11-11 6 0 11 5 11 11l0 245c0 6-5 11-11 11z m75-11l0-245c0-6 4-11 10-11 6 0 11 5 11 11l0 245c0 6-5 11-11 11-6 0-10-5-10-11z"/>
<glyph unicode="&#57363;" d="M416 288c-6 0-11-5-11-11l0-256-384 0 0 427 331 0c6 0 11 5 11 11 0 6-5 10-11 10l-341 0c-6 0-11-4-11-10l0-448c0-6 5-11 11-11l405 0c6 0 11 5 11 11l0 266c0 6-5 11-11 11z m94 203c-6 13-18 21-31 21-8 0-16-3-22-10l-204-203c0-1-1-2-2-3l-30-60c-2-5-1-10 2-13 2-2 5-3 8-3 1 0 3 0 5 1l60 30c1 1 2 2 3 2l173 174c0 0 0 0 0 0 0 0 0 0 0 0l30 30c10 10 13 22 8 34z m-225-221l-30-15 15 30 164 165 16-16z m202 202l-22-22-15 15 22 22c6 6 15 3 18-4 2-4 1-7-3-11z"/>
<glyph unicode="&#57364;" d="M424 363l-61 61c-2 2-5 3-7 3-3 0-6-1-8-3l-188-189c0 0 0 0 0 0-1 0-1-1-1-1-1-1-1-1-2-2l0-1c0 0 0 0 0 0l-45-105c-2-4-1-9 2-12 2-2 5-3 8-3 1 0 3 0 4 1l105 45c0 0 0 0 0 0l1 0c1 1 2 2 3 3l149 149c0 0 0 0 0 0 0 0 0 0 0 0l40 39c4 4 4 11 0 15z m-197-181l-45 45 135 135 45-46z m-56 27l38-38-67-29z m206 123l-45 45 24 24 45-45z m-121 180c-141 0-256-115-256-256 0-141 115-256 256-256 141 0 256 115 256 256 0 141-115 256-256 256z m0-491c-129 0-235 106-235 235 0 129 106 235 235 235 129 0 235-106 235-235 0-129-106-235-235-235z"/>
<glyph unicode="&#57365;" d="M256 213c-12 0-21-9-21-21 0-8 4-15 10-18l0-57c0-6 5-10 11-10 6 0 11 4 11 10l0 57c6 3 10 10 10 18 0 12-9 21-21 21z m128 107l0 64c0 71-57 128-128 128-71 0-128-57-128-128l0-64-64 0 0-320 384 0 0 320z m-235 64c0 59 48 107 107 107 59 0 107-48 107-107l0-64-214 0z m278-363l-342 0 0 278 342 0z"/>
<glyph unicode="&#57366;" d="M341 205c-14 0-27 6-37 16l-2 2c-4 4-4 11 0 15 4 4 11 4 15 0l2-2c12-12 33-12 45 0l85 85c20 20 20 54 0 75l-38 37c-10 10-23 16-38 16-14 0-27-6-37-16l-85-84c-12-13-12-33 0-45l2-2c4-4 4-11 0-15-4-4-11-4-15 0l-2 2c-21 20-21 54 0 75l85 85c14 14 32 21 52 21 20 0 39-7 53-21l38-38c29-29 29-76 0-106l-85-84c-10-10-23-16-38-16z m-202-193c-20 0-39 7-53 21l-38 38c-29 29-29 76 0 105l85 85c10 10 23 16 38 16 14 0 27-6 37-16l2-2c4-4 4-11 0-15-4-4-11-4-15 0l-2 2c-12 12-33 12-45 0l-85-85c-20-21-20-54 0-75l38-38c10-10 23-15 38-15 14 0 27 5 37 15l85 85c12 12 12 33 0 45l-2 2c-4 4-4 11 0 15 4 4 11 4 15 0l2-2c21-21 21-54 0-75l-85-85c-14-14-32-21-52-21z m34 135c-3 0-5 1-8 3-4 5-4 11 0 15l166 166c5 5 11 5 16 0 4-4 4-10 0-15l-166-166c-3-2-5-3-8-3z"/>
<glyph unicode="&#57367;" d="M124 223l-78-31 27 48c3 5 2 10-2 14-32 25-50 61-50 99 0 76 77 138 171 138 94 0 171-62 171-138l21 0c0 88-86 159-192 159-106 0-192-71-192-159 0-41 18-81 50-110l-38-67c-2-4-2-9 1-12 2-3 5-4 8-4 2 0 3 0 4 1l104 41c9-3 18-5 28-6l3 21c-10 2-20 4-29 7-2 0-5 0-7-1z m348-140c26 23 40 54 40 88 0 75-73 138-160 138-87 0-160-63-160-138 0-77 70-141 153-141 0 0 0 0 0 0 21 0 41 4 61 12l81-31c1 0 2 0 4 0 3 0 6 1 8 3 3 3 3 8 1 12z m-63-20c-1 1-2 1-4 1-1 0-3 0-4-1-18-8-37-12-56-12 0 0 0 0 0 0-71 0-132 55-132 120 0 63 64 117 139 117 75 0 139-54 139-117 0-31-13-57-39-77-4-3-5-9-3-13l20-40z"/>
<glyph unicode="&#57368;" d="M256 512c-141 0-256-115-256-256 0-141 115-256 256-256 141 0 256 115 256 256 0 141-115 256-256 256z m0-491c-129 0-235 106-235 235 0 129 106 235 235 235 129 0 235-106 235-235 0-129-106-235-235-235z m160 224c-6 0-11-4-11-10 0-83-67-150-149-150-82 0-149 67-149 150 0 6-5 10-11 10-6 0-11-4-11-10 0-94 77-171 171-171 94 0 171 77 171 171 0 6-5 10-11 10z m-299 43c6 0 11 5 11 11 0 17 14 32 32 32 18 0 32-15 32-32 0-6 5-11 11-11 6 0 10 5 10 11 0 29-24 53-53 53-29 0-53-24-53-53 0-6 4-11 10-11z m192 0c6 0 11 5 11 11 0 17 14 32 32 32 18 0 32-15 32-32 0-6 5-11 11-11 6 0 10 5 10 11 0 29-24 53-53 53-29 0-53-24-53-53 0-6 4-11 10-11z"/>
<glyph unicode="&#57369;" d="M511 323c-1 5-5 8-10 8l-173 0-62 174c-1 4-5 7-10 7-5 0-9-3-10-7l-62-174-173 0c-5 0-9-3-10-8-2-4 0-9 3-11l144-113-62-185c-2-4 0-9 4-12 3-3 9-3 12 0l154 113 154-113c2-1 4-2 6-2 2 0 4 1 6 2 4 3 6 8 4 12l-62 185 144 113c4 2 5 7 3 11z m-166-112c-3-3-5-7-3-12l53-160-133 98c-2 1-4 2-6 2-2 0-4-1-6-2l-133-98 53 160c2 5 0 9-3 12l-125 98 150 0c5 0 9 3 10 7l54 153 54-153c1-4 5-7 10-7l150 0z"/>
<glyph unicode="&#57371;" d="M0 320l0-21c165 0 299-134 299-299l21 0c0 176-144 320-320 320z m0 192l0-21c271 0 491-220 491-491l21 0c0 282-230 512-512 512z m64-384c-35 0-64-29-64-64 0-35 29-64 64-64 35 0 64 29 64 64 0 35-29 64-64 64z m0-107c-24 0-43 19-43 43 0 24 19 43 43 43 24 0 43-19 43-43 0-24-19-43-43-43z"/>
<glyph unicode="&#57373;" d="M437 469c-4 4-11 4-15 0-4-4-4-11 0-15 44-44 69-103 69-166 0-63-25-122-69-166-4-4-4-11 0-15 2-2 5-3 7-3 3 0 6 1 8 3 48 48 75 113 75 181 0 68-27 133-75 181z m-60-60c-4 4-11 4-15 0-5-5-5-11 0-15 28-29 43-66 43-106 0-40-15-77-43-106-5-4-5-11 0-15 2-2 4-3 7-3 3 0 6 1 8 3 32 33 50 75 50 121 0 46-18 88-50 121z m-356-121c0 63 25 122 69 166 4 4 4 11 0 15-4 4-11 4-15 0-48-48-75-113-75-181 0-68 27-133 75-181 2-2 5-3 8-3 2 0 5 1 7 3 4 4 4 11 0 15-44 44-69 103-69 166z m86 0c0 40 15 77 43 106 5 4 5 11 0 15-4 4-11 4-15 0-32-33-50-75-50-121 0-46 18-88 50-121 2-2 5-3 8-3 3 0 5 1 7 3 5 4 5 11 0 15-28 29-43 66-43 106z m149 75c-41 0-75-34-75-75 0-38 28-69 64-74l0-171c0-6 5-11 11-11 6 0 11 5 11 11l0 171c36 5 64 36 64 74 0 41-34 75-75 75z m0-128c-29 0-53 24-53 53 0 29 24 53 53 53 29 0 53-24 53-53 0-29-24-53-53-53z"/>
<glyph unicode="&#57374;" d="M448 405l-384 0c-24 0-43-19-43-42l0-235c0-24 19-43 43-43l384 0c24 0 43 19 43 43l0 235c0 23-19 42-43 42z m0-21c1 0 3 0 4 0l-196-157-196 157c1 0 3 0 4 0z m21-256c0-12-9-21-21-21l-384 0c-12 0-21 9-21 21l0 235c0 2 0 4 1 6l205-164c2-2 5-2 7-2 2 0 5 0 7 2l205 164c1-2 1-4 1-6z"/>
<glyph unicode="&#57375;" d="M271 490c-4 2-9 1-12-2l-146-147-70 0c-24 0-43-19-43-42l0-64c0-24 19-43 43-43l70 0 146-146c2-2 5-3 8-3 1 0 2 0 4 0 4 2 6 6 6 10l0 427c0 4-2 8-6 10z m-15-411l-131 131c-2 2-5 3-8 3l-74 0c-12 0-22 10-22 22l0 64c0 11 10 21 22 21l74 0c3 0 6 1 8 3l131 131z m124 324c-4 4-11 3-15-2-4-4-3-11 2-15 36-30 60-77 60-119 0-43-24-90-60-120-5-4-6-11-2-15 2-3 5-4 8-4 3 0 5 1 7 2 41 35 68 88 68 137 0 48-27 102-68 136z m-43-53c-5 3-11 2-15-2-3-5-2-12 2-15 18-13 39-35 39-66 0-32-21-54-39-66-4-4-5-11-2-15 2-3 5-5 9-5 2 0 4 1 6 2 30 22 47 52 47 84 0 31-17 61-47 83z"/>
<glyph unicode="&#57376;" d="M117 192c6 0 11 5 11 11 0 6-5 10-11 10l-53 0c-12 0-21 10-21 22l0 64c0 11 9 21 21 21l75 0c2 0 5 1 7 3l131 131 0-91c0-6 5-11 11-11 6 0 11 5 11 11l0 117c0 4-3 8-7 10-4 2-8 1-12-2l-146-147-70 0c-24 0-43-19-43-42l0-64c0-24 19-43 43-43z m235 85c-6 0-11-4-11-10 0-24-19-43-42-43l0 11c0 6-5 10-11 10-6 0-11-4-11-10l0-156-56 57c-4 4-11 4-15 0-4-5-4-11 0-16l74-74c2-2 5-3 8-3 1 0 3 0 4 0 4 2 7 6 7 10l0 150c35 0 64 28 64 64 0 6-5 10-11 10z m136 211c-5 4-11 4-16 0l-426-427c-4-4-4-11 0-15 2-2 5-3 7-3 3 0 6 1 8 3l427 426c4 5 4 11 0 16z"/>
<glyph unicode="&#57377;" d="M456 318c-20 19-47 30-75 31-27 50-79 82-136 82-77 0-141-58-152-133-22 2-43-5-61-19-20-17-32-42-32-68 0-25 8-46 23-61 26-25 64-26 69-26 0 0 0 0 0 0l41 0c6 0 11 5 11 10 0 6-5 11-11 11l-41 0c0 0-33 0-54 20-11 11-17 27-17 46 0 20 9 39 25 51 15 13 35 18 55 13l12-2 1 12c4 70 62 125 131 125 51 0 98-30 120-76l3-7 7 1c25 1 48-8 66-26 18-17 28-40 28-65 0-77-73-91-82-92l-30 0c-6 0-11-5-11-11 0-5 5-10 11-10l31 0 2 0c1 0 101 14 101 113 0 30-13 59-35 81z m-154-225l-46-46 0 188c0 6-5 10-11 10-6 0-10-4-10-10l0-188-46 46c-4 4-11 4-15 0-4-4-4-11 0-15l64-64c1-1 2-2 3-3 2 0 3 0 4 0 2 0 3 0 4 0 2 1 3 2 4 3l64 64c4 4 4 11 0 15-4 4-11 4-15 0z"/>
<glyph unicode="&#57378;" d="M456 318c-20 19-47 30-75 31-27 50-79 82-136 82-77 0-141-58-152-133-22 2-43-5-61-19-20-17-32-42-32-68 0-25 8-46 23-61 26-25 64-26 69-26 0 0 0 0 0 0l61 0c6 0 11 5 11 10 0 6-5 11-11 11l-61 0c0 0-33 0-54 20-11 11-17 27-17 46 0 20 9 39 25 51 15 13 35 18 55 13l12-2 1 12c4 70 62 125 131 125 51 0 98-30 120-76l3-7 7 1c25 1 48-8 66-26 18-17 28-40 28-65 0-77-73-91-82-92l-50 0c-6 0-11-5-11-11 0-5 5-10 11-10l51 0 2 0c1 0 101 14 101 113 0 30-13 59-35 81z m-203-54c-1 1-2 1-4 2-2 1-5 1-8 0-1-1-2-1-3-2l-64-64c-4-5-4-11 0-16 4-4 11-4 15 0l46 46 0-209c0-6 4-10 10-10 6 0 11 4 11 10l0 209 46-46c2-2 5-3 7-3 3 0 6 1 8 3 4 5 4 11 0 16z"/>
<glyph unicode="&#57379;" d="M501 85c-29 0-53 24-53 54l0 117c0 78-48 148-120 178-8 33-37 57-72 57-34 0-65-24-73-57-71-30-119-100-119-178l0-117c0-30-24-54-53-54-6 0-11-4-11-10 0-6 5-11 11-11l171 0c5-36 36-64 74-64 38 0 69 28 74 64l171 0c6 0 11 5 11 11 0 6-5 10-11 10z m-245-64c-26 0-47 19-52 43l104 0c-5-24-26-43-52-43z m-193 64c14 14 22 33 22 54l0 117c0 71 45 135 112 160 3 1 6 4 6 8 4 26 27 45 53 45 26 0 49-19 53-45 0-4 3-7 6-8 67-25 112-89 112-160l0-117c0-21 8-40 22-54z"/>
<glyph unicode="&#57372;" d="M267 213l-171 0c-6 0-11-4-11-10l0-128c0-6 5-11 11-11l171 0c6 0 10 5 10 11l0 128c0 6-4 10-10 10z m-11-128l-149 0 0 107 149 0z m256 267c0 2 0 3-1 4 0 0 0 0 0 0 0 1 0 1 0 1l-43 85c-2 4-5 6-9 6l-406 0c-4 0-7-2-9-6l-43-85c0 0 0-1 0-1 0 0 0 0 0 0-1-1-1-3-1-4 0 0 0 0 0 0l0-21c0-30 17-56 43-68l0-252c0-6 4-11 10-11l406 0c6 0 10 5 10 11l0 252c26 12 43 38 43 68l0 21c0 0 0 0 0 0z m-28 11l-81 0-16 64 65 0z m-100-72c-14-21-40-35-64-35-20 0-39 8-53 23l0 62 117 0z m-256 50l117 0 0-62c-14-15-33-23-53-23-24 0-50 14-64 35z m117 86l0-64-114 0 16 64z m120 0l16-64-114 0 0 64z m-305 0l65 0-16-64-81 0z m-39-96l0 10 86 0 0-48c-12-11-22-16-32-16-30 0-54 24-54 54z m299-310l0 171 85 0 0-171z m128 0l-21 0 0 182c0 6-5 10-11 10l-107 0c-6 0-10-4-10-10l0-182-235 0 0 236c4-1 7-1 11-1 17 0 31 8 41 16 19-23 48-37 76-37 24 0 46 9 64 24 18-15 40-24 64-24 28 0 57 14 76 37 11-8 24-16 41-16 4 0 8 0 11 1z m43 310c0-30-24-54-54-54-10 0-20 5-32 16l0 48 86 0z m-107-235c0-6-5-11-11-11-6 0-10 5-10 11 0 6 4 11 10 11 6 0 11-5 11-11z"/>
<glyph unicode="&#57380;" d="M512 395l0 0c0 1 0 2-1 3 0 0 0 1 0 1 0 1-1 2-2 3 0 0 0 0 0 0-1 1-1 1-2 2 0 0-1 0-1 0 0 0 0 0 0 0l-246 107c-2 1-6 1-8 0l-246-107c0 0 0 0 0 0 0 0-1 0-1 0-1-1-1-1-2-2 0 0 0 0 0 0-1-1-2-2-2-3 0 0 0-1 0-1-1-1-1-2-1-3l0 0c0 0 0 0 0 0l0-278c0-4 3-8 6-9l246-107c0 0 0 0 0 0 1-1 3-1 4-1 1 0 3 0 4 1 0 0 0 0 0 0l246 107c3 1 6 5 6 9l0 278c0 0 0 0 0 0z m-256 95l219-95-99-43-198 104z m0-190l-219 95 116 50 198-104z m-235 78l224-97 0-254-224 97z m470-254l-224-97 0 254 224 97z m-295 131l-117 53c-3 2-7 2-10 0-3-2-5-6-5-9l0-107c0-4 2-8 6-10l118-53c1-1 2-1 4-1 2 0 4 1 6 2 3 2 5 5 5 9l0 106c0 5-3 8-7 10z m-15-100l-96 44 0 83 96-44z"/>
<glyph unicode="&#57381;" d="M469 245c-14 0-28-7-35-19l-58 24c5 12 8 25 8 38 0 23-8 43-21 60l85 85c6-4 13-6 21-6 24 0 43 19 43 42 0 24-19 43-43 43-23 0-42-19-42-43 0-8 2-15 6-21l-85-85c-17 13-37 21-60 21-36 0-67-20-83-49l-120 52c0 2 0 5 0 8 0 23-19 42-42 42-24 0-43-19-43-42 0-24 19-43 43-43 13 0 24 6 32 16l121-52c-3-9-4-18-4-28 0-23 8-44 21-60l-149-149c-6 4-13 6-21 6-24 0-43-19-43-42 0-24 19-43 43-43 23 0 42 19 42 43 0 8-2 15-6 21l149 149c14-11 31-18 49-20l0-109c-18-5-32-22-32-41 0-24 19-43 43-43 24 0 43 19 43 43 0 19-14 36-32 41l0 109c27 3 51 17 66 38l62-25c0-1 0-2 0-3 0-24 19-43 42-43 24 0 43 19 43 43 0 23-19 42-43 42z m-426 128c-12 0-22 10-22 22 0 11 10 21 22 21 11 0 21-10 21-21 0-12-10-22-21-22z m426 118c12 0 22-10 22-22 0-11-10-21-22-21-11 0-21 10-21 21 0 12 10 22 21 22z m-426-470c-12 0-22 10-22 22 0 11 10 21 22 21 11 0 21-10 21-21 0-12-10-22-21-22z m266 22c0-12-9-22-21-22-12 0-21 10-21 22 0 11 9 21 21 21 12 0 21-10 21-21z m-21 170c-41 0-75 34-75 75 0 41 34 75 75 75 41 0 75-34 75-75 0-41-34-75-75-75z m181-32c-11 0-21 10-21 22 0 11 10 21 21 21 12 0 22-10 22-21 0-12-10-22-22-22z"/>
<glyph unicode="&#57370;" d="M403 264l-280 245c-5 4-11 4-15-1-4-4-4-11 1-15l271-237-271-237c-5-4-5-11-1-15 2-3 5-4 8-4 2 0 5 1 7 3l280 245c3 2 4 5 4 8 0 3-1 6-4 8z"/>
<glyph unicode="&#57382;" d="M403 19l-271 237 271 237c5 4 5 11 1 15-4 5-10 5-15 1l-280-245c-3-2-4-5-4-8 0-3 1-6 4-8l280-245c2-2 5-3 7-3 3 0 6 1 8 4 4 4 4 11-1 15z"/>
<glyph unicode="&#57383;" d="M509 123l-245 280c-4 5-12 5-16 0l-245-280c-4-5-4-11 1-15 4-4 11-4 15 1l237 271 237-271c2-3 5-4 8-4 3 0 5 1 7 3 5 4 5 10 1 15z"/>
<glyph unicode="&#57384;" d="M256 512c-106 0-192-86-192-192l0-288c0-18 14-32 32-32l11 0c17 0 32 14 32 32 0 6 4 11 10 11 6 0 11-5 11-11 0-18 14-32 32-32l21 0c18 0 32 14 32 32 0 6 5 11 11 11 6 0 11-5 11-11 0-18 14-32 32-32l21 0c18 0 32 14 32 32 0 6 5 11 11 11 6 0 10-5 10-11 0-18 15-32 32-32l11 0c18 0 32 14 32 32l0 288c0 106-86 192-192 192z m171-480c0-6-5-11-11-11l-11 0c-6 0-10 5-10 11 0 18-15 32-32 32-18 0-32-14-32-32 0-6-5-11-11-11l-21 0c-6 0-11 5-11 11 0 18-14 32-32 32-18 0-32-14-32-32 0-6-5-11-11-11l-21 0c-6 0-11 5-11 11 0 18-14 32-32 32-17 0-32-14-32-32 0-6-4-11-10-11l-11 0c-6 0-11 5-11 11l0 288c0 94 77 171 171 171 94 0 171-77 171-171z m-107 331c-24 0-43-19-43-43l0-64c0-24 19-43 43-43 24 0 43 19 43 43l0 64c0 24-19 43-43 43z m21-107c0-12-9-21-21-21-12 0-21 9-21 21 11 0 21 10 21 21 0 12-10 22-21 22l0 21c0 12 9 21 21 21 12 0 21-9 21-21z m-149 107c-24 0-43-19-43-43l0-64c0-24 19-43 43-43 24 0 43 19 43 43l0 64c0 24-19 43-43 43z m21-107c0-12-9-21-21-21-12 0-21 9-21 21 11 0 21 10 21 21 0 12-10 22-21 22l0 21c0 12 9 21 21 21 12 0 21-9 21-21z"/>
<glyph unicode="&#57385;" d="M181 320c-11 0-21-10-21-21 0-12 10-22 21-22 12 0 22 10 22 22 0 11-10 21-22 21z m107-171c0-11-10-21-21-21-12 0-22 10-22 21 0 12 10 22 22 22 11 0 21-10 21-22z m-139-53c0-12-9-21-21-21-12 0-21 9-21 21 0 12 9 21 21 21 12 0 21-9 21-21z m-64 107c0-12-9-22-21-22-12 0-21 10-21 22 0 11 9 21 21 21 12 0 21-10 21-21z m171-107c0-12-10-21-21-21-12 0-22 9-22 21 0 12 10 21 22 21 11 0 21-9 21-21z m64 107c0-12-10-22-21-22-12 0-22 10-22 22 0 11 10 21 22 21 11 0 21-10 21-21z m107 170c0-11-10-21-22-21-11 0-21 10-21 21 0 12 10 22 21 22 12 0 22-10 22-22z m0-106c0-12-10-22-22-22-11 0-21 10-21 22 0 11 10 21 21 21 12 0 22-10 22-21z m42 182c0 0 0 0 0 0 0 3-1 5-3 7 0 0-1 0-1 0 0 0 0 1 0 1-1 0-2 1-3 1 0 0 0 0 0 0l-171 54c-2 0-4 0-6 0l-171-54c0 0 0 0 0 0-1 0-2-1-3-1 0 0 0-1 0-1-1 0-1 0-1 0-2-2-3-4-3-7 0 0 0 0 0 0 0-1 0-1 0-1l0-108-100-31c0 0 0 0 0 0-1-1-2-1-2-2-1 0-1 0-1 0 0 0 0 0 0 0-2-2-3-4-4-7 0 0 0 0 0-1 0 0 0 0 0 0l0-214c0-4 3-8 6-9l171-75c0 0 0 0 1 0 1-1 2-1 3-1 2 0 3 0 4 1 0 0 0 0 1 0l170 75c4 1 7 5 7 9l0 100 100 40c4 1 6 5 6 10l0 213c0 0 0 0 0 1z m-181 41l138-43-138-52-138 52z m-107-244l-137 52 137 43 138-43z m-53 187l149-56 0-44-92 29c-3 1-5 1-7 0l-50-15z m-107-150l150-56 0-200-150 65z m320-191l-149-65 0 200 149 56z m107 150l-85-34 0 91c0 0 0 0 0 0 0 1 0 1-1 1 0 3-1 5-3 7 0 0 0 0 0 0-1 0-1 0-1 0-1 1-2 1-3 2 0 0 0 0 0 0l-56 17 0 51 149 56z m-160 185c12 0 21 9 21 21 0 12-9 21-21 21-12 0-21-9-21-21 0-12 9-21 21-21z"/>
<glyph unicode="&#57386;" d="M501 363l-202 0 0 10c0 30-24 54-54 54-29 0-53-24-53-54l0-53-85 0c-4 0-8-2-10-5l-52-95-42-42c-2-2-3-5-3-7l0-118c0-6 5-10 11-10l43 0c5-25 27-43 53-43 25 0 47 18 52 43l194 0c5-25 27-43 52-43 26 0 48 18 53 43l43 0c6 0 11 4 11 10l0 299c0 6-5 11-11 11z m-10-256l-278 0 0 234 278 0z m-138-43l-194 0c-2 8-5 15-10 21l214 0c-5-6-8-13-10-21z m-140 309c0 18 15 32 32 32 18 0 32-14 32-32l0-10-64 0z m-152-167c1 0 1 1 2 2l50 91 79 0 0-192-171 0 0 59z m-40-121l43 0c-4-6-8-13-10-21l-33 0z m86-64c-18 0-32 15-32 32 0 18 14 32 32 32 17 0 32-14 32-32 0-17-15-32-32-32z m298 0c-17 0-32 15-32 32 0 18 15 32 32 32 18 0 32-14 32-32 0-17-14-32-32-32z m53 43c-2 8-6 15-10 21l43 0 0-21z m-367 129c2-1 3-1 5-1 4 0 8 2 10 6l29 58 25 0c6 0 11 5 11 11 0 6-5 10-11 10l-32 0c-4 0-8-2-10-6l-32-64c-2-5 0-11 5-14z m186 52l0-42c0-6 5-11 11-11l32 0 0-32c0-6 5-11 11-11l42 0c6 0 11 5 11 11l0 32 32 0c6 0 11 5 11 11l0 42c0 6-5 11-11 11l-32 0 0 32c0 6-5 11-11 11l-42 0c-6 0-11-5-11-11l0-32-32 0c-6 0-11-5-11-11z m22-10l32 0c6 0 10 4 10 10l0 32 22 0 0-32c0-6 4-10 10-10l32 0 0-22-32 0c-6 0-10-4-10-10l0-32-22 0 0 32c0 6-4 10-10 10l-32 0z"/>
<glyph unicode="&#57387;" d="M501 469l-74 0 0 32c0 6-5 11-11 11l-64 0c-6 0-11-5-11-11l0-32-170 0 0 32c0 6-5 11-11 11l-64 0c-6 0-11-5-11-11l0-32-74 0c-6 0-11-4-11-10l0-448c0-6 5-11 11-11l490 0c6 0 11 5 11 11l0 448c0 6-5 10-11 10z m-138 22l42 0 0-64-42 0z m-256 0l42 0 0-64-42 0z m-22-43l0-32c0-6 5-11 11-11l64 0c6 0 11 5 11 11l0 32 170 0 0-32c0-6 5-11 11-11l64 0c6 0 11 5 11 11l0 32 64 0 0-85-470 0 0 85z m-64-427l0 320 470 0 0-320z m438 235c6 0 10 5 10 11 0 6-4 10-10 10l-75 0 0 32c0 6-5 11-11 11-6 0-10-5-10-11l0-32-96 0 0 32c0 6-5 11-11 11-6 0-11-5-11-11l0-32-96 0 0 32c0 6-4 11-10 11-6 0-11-5-11-11l0-32-75 0c-6 0-10-4-10-10 0-6 4-11 10-11l75 0 0-64-75 0c-6 0-10-5-10-11 0-6 4-10 10-10l75 0 0-64-75 0c-6 0-10-5-10-11 0-6 4-11 10-11l75 0 0-32c0-6 5-10 11-10 6 0 10 4 10 10l0 32 96 0 0-32c0-6 5-10 11-10 6 0 11 4 11 10l0 32 96 0 0-32c0-6 4-10 10-10 6 0 11 4 11 10l0 32 75 0c6 0 10 5 10 11 0 6-4 11-10 11l-75 0 0 64 75 0c6 0 10 4 10 10 0 6-4 11-10 11l-75 0 0 64z m-310 0l96 0 0-64-96 0z m0-149l0 64 96 0 0-64z m214 0l-96 0 0 64 96 0z m0 85l-96 0 0 64 96 0z"/>
<glyph unicode="&#57388;" d="M501 384l-53 0 0 32c0 6-5 11-11 11l-266 0 0 32c0 6-5 10-11 10l-149 0c-6 0-11-4-11-10l0-352c0-36 29-64 64-64l373 0c42 0 75 33 75 74l0 256c0 6-5 11-11 11z m-394-11l0-266c0-24-19-43-43-43-24 0-43 19-43 43l0 341 128 0 0-32c0-6 5-11 11-11l267 0 0-21-310 0c-6 0-10-5-10-11z m384-256c0-29-24-53-54-53l-325 0c10 11 16 26 16 43l0 256 363 0z"/>
<glyph unicode="&#57389;" d="M501 235l-120 0-40 100c-2 4-7 7-11 6-5 0-9-4-10-8l-52-243-55 349c-1 5-5 9-10 9-5 0-9-3-11-8l-61-205-120 0c-6 0-11-5-11-11 0-6 5-11 11-11l128 0c4 0 9 3 10 8l50 168 57-359c1-5 5-9 10-9 0 0 1 0 1 0 5 0 9 4 10 9l57 264 29-74c2-4 6-7 10-7l128 0c6 0 11 5 11 11 0 6-5 11-11 11z"/>
<glyph unicode="&#57390;" d="M405 491l-384 0 0-384 384 0z m-21-22l0-277-46 0-61 153c-2 4-6 7-10 7-4 0-8-2-10-6l-46-102-43 51c-2 2-5 4-9 4-3-1-6-3-8-6l-61-101-47 0 0 277z m-69-277l-200 0 46 78 44-53c2-3 6-4 10-4 3 1 7 3 8 7l43 94z m-272-64l0 43 341 0 0-43z m395 237c-5 1-11-4-11-9-1-6 4-12 10-12l31-3-27-297-308 28c-6 0-11-4-11-10-1-6 3-11 9-12l330-30 31 340z m-310-24c24 0 43 19 43 43 0 24-19 43-43 43-24 0-43-19-43-43 0-24 19-43 43-43z m0 64c12 0 21-9 21-21 0-12-9-21-21-21-12 0-21 9-21 21 0 12 9 21 21 21z"/>
<glyph unicode="&#57391;" d="M512 205c-1 1-1 1-1 2 0 0 0 0 0 0l-68 156 16 0c6 0 10 4 10 10 0 6-4 11-10 11l-173 0c-4 18-21 32-41 32-19 0-36-14-41-32l-151 0c-6 0-10-5-10-11 0-6 4-10 10-10l16 0-68-156c0 0 0 0 0 0 0-1 0-1-1-2 0-1 0-2 0-2 0 0 0 0 0 0 0-47 38-86 85-86 47 0 86 39 86 86 0 0 0 0 0 0 0 0-1 1-1 2 0 1 0 1 0 2 0 0 0 0 0 0l-68 156 102 0c4-15 16-27 31-31l0-311-54 0c-6 0-10-4-10-10 0-6 4-11 10-11l150 0c6 0 10 5 10 11 0 6-4 10-10 10l-75 0 0 311c15 4 27 16 30 31l124 0-68-156c0 0 0 0 0 0 0-1 0-1 0-2 0-1-1-2-1-2 0 0 0 0 0 0 0-47 39-86 86-86 47 0 85 39 85 86 0 0 0 0 0 0 0 0 0 1 0 2z m-427 142l59-134-117 0z m0-208c-31 0-58 23-63 53l126 0c-5-30-31-53-63-53z m160 213c-11 0-21 10-21 21 0 12 10 22 21 22 12 0 22-10 22-22 0-11-10-21-22-21z m240-139l-117 0 59 134z m-58-74c-32 0-58 23-63 53l126 0c-5-30-32-53-63-53z"/>
<glyph unicode="&#57392;" d="M507 371c-6 8-16 13-27 13l-256 0c-22 0-46-17-55-39l-60-149c-5-12-4-24 2-33 6-9 16-14 27-14l256 0c22 0 46 17 55 39l60 149c5 13 4 25-2 34z m-18-26l-60-149c-5-14-21-25-35-25l-256 0c-3 0-7 0-9 4-2 3-2 8 0 13l60 149c5 14 21 26 35 26l256 0c3 0 7-1 9-4 2-3 2-8 0-14z m-42-5l-145-81-77 79c-4 4-11 4-15 0-4-4-4-11 0-15l83-85c2-2 5-3 7-3 2 0 4 0 6 1l151 85c5 3 7 10 4 15-3 5-9 7-14 4z m-217-86l-74-53c-5-4-6-10-3-15 2-3 5-5 9-5 2 0 4 1 6 2l75 54c4 3 6 10 2 15-3 4-10 5-15 2z m144-3c-3 5-10 7-15 3-5-3-7-9-4-14l32-53c2-4 6-6 9-6 2 0 4 1 6 2 5 3 7 9 4 14z m-363 112l106 0c6 0 11 4 11 10 0 6-5 11-11 11l-106 0c-6 0-11-5-11-11 0-6 5-10 11-10z m42-171l-42 0c-6 0-11-5-11-11 0-6 5-10 11-10l42 0c6 0 11 4 11 10 0 6-5 11-11 11z m22 107l-64 0c-6 0-11-5-11-11 0-6 5-11 11-11l64 0c6 0 10 5 10 11 0 6-4 11-10 11z"/>
<glyph unicode="&#57393;" d="M309 491l-128 0c-6 0-10-5-10-11l0-128c0-6 4-11 10-11l128 0c6 0 11 5 11 11l0 128c0 6-5 11-11 11z m-10-128l-107 0 0 106 107 0z m-160 128l-128 0c-6 0-11-5-11-11l0-128c0-6 5-11 11-11l128 0c6 0 10 5 10 11l0 128c0 6-4 11-10 11z m-11-128l-107 0 0 106 107 0z m352 128l-128 0c-6 0-11-5-11-11l0-128c0-6 5-11 11-11l128 0c6 0 11 5 11 11l0 128c0 6-5 11-11 11z m-11-128l-106 0 0 106 106 0z m-160-43l-128 0c-6 0-10-5-10-11l0-128c0-6 4-10 10-10l128 0c6 0 11 4 11 10l0 128c0 6-5 11-11 11z m-10-128l-107 0 0 107 107 0z m-160 128l-128 0c-6 0-11-5-11-11l0-128c0-6 5-10 11-10l128 0c6 0 10 4 10 10l0 128c0 6-4 11-10 11z m-11-128l-107 0 0 107 107 0z m352 128l-128 0c-6 0-11-5-11-11l0-128c0-6 5-10 11-10l128 0c6 0 11 4 11 10l0 128c0 6-5 11-11 11z m-11-128l-106 0 0 107 106 0z m-160-43l-128 0c-6 0-10-4-10-10l0-128c0-6 4-11 10-11l128 0c6 0 11 5 11 11l0 128c0 6-5 10-11 10z m-10-128l-107 0 0 107 107 0z m-160 128l-128 0c-6 0-11-4-11-10l0-128c0-6 5-11 11-11l128 0c6 0 10 5 10 11l0 128c0 6-4 10-10 10z m-11-128l-107 0 0 107 107 0z m352 128l-128 0c-6 0-11-4-11-10l0-128c0-6 5-11 11-11l128 0c6 0 11 5 11 11l0 128c0 6-5 10-11 10z m-11-128l-106 0 0 107 106 0z"/>
<glyph unicode="&#57394;" d="M501 491l-490 0c-6 0-11-5-11-11l0-107c0-6 5-10 11-10l490 0c6 0 11 4 11 10l0 107c0 6-5 11-11 11z m-10-107l-470 0 0 85 470 0z m10-64l-490 0c-6 0-11-5-11-11l0-106c0-6 5-11 11-11l490 0c6 0 11 5 11 11l0 106c0 6-5 11-11 11z m-10-107l-470 0 0 86 470 0z m10-64l-490 0c-6 0-11-4-11-10l0-107c0-6 5-11 11-11l490 0c6 0 11 5 11 11l0 107c0 6-5 10-11 10z m-10-106l-470 0 0 85 470 0z"/>
<glyph unicode="&#57395;" d="M501 512l-490 0c-6 0-11-5-11-11l0-490c0-6 5-11 11-11l490 0c6 0 11 5 11 11l0 490c0 6-5 11-11 11z m-10-491l-470 0 0 470 470 0z m-203 342l149 0c6 0 11 4 11 10 0 6-5 11-11 11l-149 0c-6 0-11-5-11-11 0-6 5-10 11-10z m-64-64l213 0c6 0 11 4 11 10 0 6-5 11-11 11l-213 0c-6 0-11-5-11-11 0-6 5-10 11-10z m0-64l213 0c6 0 11 4 11 10 0 6-5 11-11 11l-213 0c-6 0-11-5-11-11 0-6 5-10 11-10z m0-64l213 0c6 0 11 4 11 10 0 6-5 11-11 11l-213 0c-6 0-11-5-11-11 0-6 5-10 11-10z m0-64l149 0c6 0 11 4 11 10 0 6-5 11-11 11l-149 0c-6 0-11-5-11-11 0-6 5-10 11-10z m-149 234l85 0c6 0 11 5 11 11l0 85c0 6-5 11-11 11l-85 0c-6 0-11-5-11-11l0-85c0-6 5-11 11-11z m10 86l64 0 0-64-64 0z m-10-235l85 0c6 0 11 5 11 11l0 106c0 6-5 11-11 11l-85 0c-6 0-11-5-11-11l0-106c0-6 5-11 11-11z m10 107l64 0 0-86-64 0z m-10-235l85 0c6 0 11 5 11 11l0 85c0 6-5 11-11 11l-85 0c-6 0-11-5-11-11l0-85c0-6 5-11 11-11z m10 85l64 0 0-64-64 0z"/>
<glyph unicode="&#57396;" d="M277 128c0-12-9-21-21-21-12 0-21 9-21 21 0 12 9 21 21 21 12 0 21-9 21-21z m-21 384c-141 0-256-115-256-256 0-141 115-256 256-256 141 0 256 115 256 256 0 141-115 256-256 256z m0-491c-129 0-235 106-235 235 0 129 106 235 235 235 129 0 235-106 235-235 0-129-106-235-235-235z m0 363c-41 0-75-33-75-75 0-6 5-10 11-10 6 0 11 4 11 10 0 30 24 54 53 54 29 0 53-24 53-54 0-29-24-53-53-53-6 0-11-5-11-11l0-64c0-6 5-10 11-10 6 0 11 4 11 10l0 54c36 6 64 37 64 74 0 42-34 75-75 75z"/>
<glyph unicode="&#57397;" d="M249 512l-4 0c-137-2-247-114-245-250 2-135 108-241 241-241l5 0c65 1 127 28 174 75 47 47 72 110 71 175-3 135-109 241-242 241z m156-401c-43-43-100-67-160-68l-4 0c-121 0-217 96-220 220-2 123 99 225 225 228l3 0c122 0 218-97 220-220 1-60-22-117-64-160z m-160 113c6 0 11 5 11 11l0 149c0 6-5 11-11 11-6 0-10-5-10-11l0-149c0-6 4-11 10-11z m0-43c0 0 0 0 0 0-12 0-21-10-21-21 0-12 10-21 21-21 0 0 1 0 1 0 11 0 21 10 21 21-1 12-10 21-22 21z"/>
<glyph unicode="&#57398;" d="M324 364c-5 3-11 0-14-5-2-6 1-12 6-14 48-20 79-67 79-119 0-34-14-66-38-90-24-24-56-37-90-37 0 0 0 0-1 0-70 0-127 57-127 128 0 51 31 98 78 118 6 2 8 8 6 14-3 5-9 8-14 5-56-23-92-77-92-137 0-82 67-150 149-150 0 0 1 0 1 0 39 0 77 16 105 44 28 28 44 65 44 105 0 61-36 115-92 138z m-57-116l0 0c6 0 10 5 10 11l1 138c0 6-5 11-11 11 0 0 0 0 0 0-6 0-11-5-11-11l0-138c0-6 5-11 11-11z"/>
<glyph unicode="&#57399;" d="M475 416l-438 0c-20 0-37-17-37-37l0-246c0-20 17-37 37-37l438 0c20 0 37 17 37 37l0 246c0 20-17 37-37 37z m-187-256l-64 0 0 96-48-62-48 62 0-96-64 0 0 192 64 0 48-64 48 64 64 0z m96-16l-80 112 48 0 0 96 64 0 0-96 48 0z"/>
</font></defs></svg>

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

Binary file not shown.

View File

@ -1,79 +0,0 @@
<?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="icons" horiz-adv-x="512">
<font-face units-per-em="512" ascent="480" descent="-32" />
<missing-glyph horiz-adv-x="512" />
<glyph unicode="&#x20;" d="" horiz-adv-x="256" />
<glyph unicode="&#xf600;" d="M0 481.593v-102.4h307.2v102.4h-307.2zM0 276.793v-102.4h512v102.4h-512zM0 71.993v-102.4h204.8v102.4h-204.8zM307.2 71.993v-102.4h204.8v102.4h-204.8zM409.6 481.593v-102.4h102.4v102.4h-102.4z" />
<glyph unicode="&#xf601;" d="M66.099 343.014c-6.938 6.861-18.151 6.861-25.063 0-6.912-6.835-6.912-17.946 0-24.807l202.445-200.448c6.938-6.861 18.125-6.861 25.063 0l202.445 200.448c6.912 6.861 6.938 17.945 0 24.806s-18.176 6.861-25.063 0.026l-189.927-182.81-189.901 182.784z" />
<glyph unicode="&#xf602;" d="M120.412 99.349v0.149c0.092 8.135 3.676 33.657 41.628 56.882 6.948 9.436 12.658 22.308 18.496 37.163 4.032 10.268 3.349 19.036 3.349 31.509 0 9.223 1.735 24.014-0.548 32.149-7.723 27.463-27.214 35.051-50.062 35.051-22.855 0-42.368-7.616-50.069-35.136-2.268-8.1-0.526-22.862-0.526-32.057 0-12.501-0.683-21.291 3.371-31.588 7.012-17.828 13.689-32.775 22.599-42.311-34.695-6.372-58.14-24.469-73.963-31.531-32.74-14.592-32.889-30.578-32.889-30.578v-27.143l118.635 0.021v37.298l0.001 0.122zM465.557 141.312c-21.874 9.721-54.35 34.773-102.414 43.385 12.288 13.17 21.589 33.735 31.168 58.126 5.547 14.123 4.594 26.169 4.594 43.321 0 12.672 2.382 33.003-0.754 44.167-10.61 37.76-37.397 48.171-68.8 48.171-31.417 0-58.24-10.468-68.821-48.284-3.122-11.136-0.732-31.424-0.732-44.053 0-17.195-0.939-29.269 4.629-43.42 9.636-24.505 18.809-45.049 31.054-58.162-47.687-8.761-79.915-33.636-101.653-43.328-44.992-20.060-45.212-42.020-45.212-42.020v-37.319l362.311 0.050v37.269c0.006-0.008-0.214 22.022-45.37 42.097z" />
<glyph unicode="&#xf603;" d="M486.457 193.109l-242.98 243.001c-5.817 5.817-17.237 11.186-25.451 11.925l-131.441 11.961c-8.171 0.754-19.641-3.392-25.458-9.208l-29.995-29.995c-5.803-5.817-9.97-17.266-9.223-25.436l11.705-131.762c0.718-8.192 6.080-19.634 11.883-25.451l242.994-242.987c5.81-5.81 15.317-5.81 21.134 0l176.832 176.818c5.81 5.81 5.81 15.317 0 21.134zM123.527 357.518c-12.665-12.679-33.173-12.665-45.824 0-12.672 12.651-12.679 33.173-0.021 45.852 12.651 12.651 33.18 12.636 45.852-0.021 12.651-12.672 12.637-33.201-0.007-45.831z" />
<glyph unicode="&#xf604;" d="M414.642 478.578h-307.484c-20.871 0-37.817-16.932-37.817-37.824v-436.708c0-20.892 16.939-37.824 37.817-37.824h307.484c20.892 0 37.817 16.939 37.817 37.824v436.708c0 20.885-16.932 37.824-37.817 37.824zM262.116-18.311c-6.99 0-12.665 5.689-12.665 12.665s5.689 12.665 12.665 12.665 12.665-5.689 12.665-12.665-5.668-12.665-12.665-12.665zM395.57 23.111h-269.348v398.578h269.348v-398.578z" />
<glyph unicode="&#xf605;" d="M64 362.667h384q8.834 0 15.084-6.25t6.25-15.083-6.25-15.084-15.084-6.25h-384q-8.834 0-15.084 6.25t-6.25 15.084 6.25 15.083 15.084 6.25zM64 106.667h384q8.834 0 15.084-6.25t6.25-15.084-6.25-15.084-15.084-6.25h-384q-8.834 0-15.084 6.25t-6.25 15.084 6.25 15.084 15.084 6.25zM64 234.667h384q8.834 0 15.084-6.25t6.25-15.084-6.25-15.084-15.084-6.25h-384q-8.834 0-15.084 6.25t-6.25 15.084 6.25 15.084 15.084 6.25z" />
<glyph unicode="&#xf606;" d="M510.244 282.496c-0.967 0-27.236 0-58.382 0-31.154 0-38.606 18.027-16.597 40.050 22.030 22.030 40.612 40.604 41.294 41.287 0.683 0.69 0.683 1.792 0 2.482-0.683 0.683-18.404 18.404-39.388 39.388-20.978 20.971-38.692 38.692-39.388 39.388-0.683 0.683-1.799 0.683-2.482 0-0.683-0.69-19.25-19.264-41.28-41.287s-40.043-14.564-40.043 16.583c0 31.154 0 57.415 0 58.382s-0.789 1.735-1.735 1.735c-0.988 0-26.027 0-55.701 0s-54.734 0-55.701 0c-0.96 0-1.735-0.782-1.735-1.735s0-27.228 0-58.382c0-31.147-18.020-38.606-40.043-16.583s-40.604 40.597-41.287 41.287c-0.683 0.683-1.799 0.683-2.482 0-0.676-0.69-18.404-18.411-39.388-39.388-20.978-20.999-38.692-38.692-39.388-39.388-0.683-0.69-0.683-1.792 0-2.482 0.683-0.683 19.257-19.257 41.287-41.287 22.030-22.023 14.564-40.050-16.583-40.050-31.154 0-57.444 0-58.389 0-0.967 0-1.735-0.782-1.735-1.735 0-0.96 0-26.027 0-55.694 0-29.682 0-54.741 0-55.701 0-0.967 0.782-1.735 1.735-1.735 0.96 0 27.236 0 58.382 0 31.154 0 38.606-18.020 16.597-40.043-22.030-22.030-40.604-40.597-41.287-41.28-0.683-0.69-0.683-1.792 0-2.482 0.683-0.683 18.404-18.404 39.388-39.388 20.999-20.978 38.692-38.692 39.388-39.388 0.683-0.683 1.792-0.683 2.475 0 0.683 0.69 19.264 19.264 41.287 41.287 22.037 22.030 40.050 14.564 40.050-16.583 0-31.154 0-57.422 0-58.389s0.789-1.735 1.735-1.735c0.967 0 26.027 0 55.701 0s54.727 0 55.701 0c0.96 0 1.735 0.782 1.735 1.735s0 27.236 0 58.389c0 31.147 18.020 38.606 40.043 16.59s40.604-40.597 41.287-41.287c0.683-0.683 1.799-0.683 2.482 0 0.676 0.69 18.404 18.411 39.388 39.388s38.692 38.692 39.388 39.388c0.683 0.69 0.683 1.792 0 2.482-0.683 0.683-19.25 19.25-41.28 41.28-22.023 22.023-14.556 40.043 16.59 40.043s57.408 0 58.382 0 1.735 0.746 1.735 1.713c0 0.96 0 26.027 0 55.701 0 29.682 0 54.734 0 55.694 0 0.968-0.782 1.75-1.756 1.75zM260.366 141.042c-47.396 0-85.796 38.4-85.796 85.796 0 47.374 38.407 85.796 85.796 85.796 47.374 0 85.796-38.414 85.796-85.796-0.007-47.396-38.422-85.796-85.796-85.796z" />
<glyph unicode="&#xf607;" d="M79.218-30.948l150.898 150.919c26.944-14.414 57.707-22.62 90.396-22.62 105.991 0 191.908 85.916 191.908 191.9s-85.917 191.922-191.915 191.922c-105.977 0-191.9-85.924-191.9-191.908 0-32.249 7.986-62.613 22.044-89.287l-151.182-151.175 79.751-79.751zM320.505 417.173c70.528 0 127.908-57.38 127.908-127.908s-57.38-127.9-127.908-127.9c-70.528 0-127.9 57.372-127.9 127.9s57.372 127.908 127.9 127.908z" />
<glyph unicode="&#xf608;" d="M512 48.391l-150.919 150.898c14.414 26.944 22.613 57.707 22.613 90.396 0 105.991-85.916 191.908-191.908 191.908-105.984 0-191.908-85.916-191.908-191.908 0-105.97 85.924-191.9 191.908-191.9 32.249 0 62.62 7.986 89.294 22.044l151.175-151.182 79.745 79.744zM63.879 289.678c0 70.528 57.38 127.908 127.908 127.908s127.908-57.38 127.908-127.908c0-70.528-57.372-127.9-127.908-127.9s-127.908 57.372-127.908 127.9z" />
<glyph unicode="&#xf609;" d="M-0.292 305.479v-98.596c64.007 0 124.124-25.003 169.337-70.428 44.679-44.9 69.49-104.455 70.13-167.979l98.603-0.014c-1.366 186.055-152.455 337.017-338.070 337.017zM-0.142 480.242v-98.56c227.15 0 412.082-185.131 413.49-413.198l98.581-0.022c-1.422 282.439-230.542 511.78-512.071 511.78zM-0.363 36.864c0 0 0-0.002 0-0.002 0-37.714 30.573-68.288 68.288-68.288 37.713 0 68.287 30.572 68.288 68.286 0 37.714-30.573 68.288-68.288 68.288s-68.288-30.574-68.288-68.288z" />
<glyph unicode="&#xf60a;" d="M424.533 289.593h-227.556v-197.924h227.556v197.924zM396.089 120.114h-170.667v141.027h170.667v-141.027zM83.2 289.593h73.778v-197.924h-73.778zM-1.401 439.758v-440.96h511.417v440.96h-511.417zM361.742 410.24h104.789v-40.676h-104.789v40.676zM40.54 410.24h284.231v-40.676h-284.231v40.676zM467.349 41.465h-426.083v298.738h426.084l-0.001-298.738z" />
<glyph unicode="&#xf60b;" d="M392.476 434.738h-273.792c0 0-119.524-54.784-119.524-215.417 0-160.64 119.524-214.172 119.524-214.172h273.792c0 0 119.524 52.928 119.524 214.18 0 161.243-119.524 215.409-119.524 215.409zM383.765 40.903h-256.32c-21.198 12.245-92.523 62.123-92.523 178.418 0 116.096 70.884 166.798 92.722 179.655h255.986c21.291-12.43 92.608-62.834 92.608-179.648 0.007-116.587-70.912-166.073-92.473-178.425zM148.231 332.594h42.468v-125.085h-42.468zM320.953 332.594h42.467v-125.085h-42.467zM255.509 168c-40.249 0-42.766-38.706-42.916-43.548-0.014-0.327-0.014-49.415-0.014-49.415h86.5c0 0-0.007 49.052-0.021 49.316-0.192 4.287-2.973 43.647-43.549 43.647z" />
<glyph unicode="&#xf60c;" d="M260.743 481.365c-0.953 0-1.65 0.057-2.588 0.028-0.782 0.014-1.771-0.050-2.56-0.050-77.020 0-139.442-63.26-139.442-139.456 0-76.21 142.059-372.309 142.059-372.309s142.002 296.363 142.002 372.309-62.45 139.478-139.471 139.478zM257.842 290.29c-35.264 0-63.879 28.594-63.879 63.872s28.601 63.886 63.879 63.886c35.285 0 63.886-28.608 63.886-63.886s-28.601-63.872-63.886-63.872z" />
<glyph unicode="&#xf60d;" d="M455.865 396.672c0 15.964-7.524 23.488-23.481 23.488h-354.375c-15.972 0-23.488-7.524-23.488-23.488v-242.887h401.351v242.887zM423.339 186.325h-336.292v201.302h336.292v-201.302zM455.772 132.096h-401.251l-54.222-59.648h509.696l-54.223 59.648zM195.499 90.98l21.689 21.696h75.911l21.696-21.696h-119.296zM16.562 30.421c18.297 0 463.154 0 477.17 0 15.118 0 16.263 21.696 16.263 21.696h-509.696c0 0 0.426-21.696 16.263-21.696z" />
<glyph unicode="&#xf60e;" d="M493.561 356.423c-44.857 74.069-126.208 123.577-219.122 123.577-141.39 0-256-114.61-256-256s114.61-256 256-256c92.188 0 172.964 48.747 218.041 121.863l-221.582 132.957 222.663 133.603zM320.064 411.271c22.585 0 40.889-18.311 40.889-40.889s-18.311-40.889-40.889-40.889-40.889 18.311-40.889 40.889 18.304 40.889 40.889 40.889z" />
<glyph unicode="&#xf60f;" d="M480 341.119l-107.285 107.267-287.908-287.913-51.634-158.882 158.944 51.651 287.883 287.877zM71.546 39.95l34.858 107.285 72.44-72.434-107.298-34.851z" />
<glyph unicode="&#xf610;" d="M373.476 478.578h-237.014c-20.935 0-37.909-16.974-37.909-37.909v-437.717c0-20.935 16.981-37.909 37.909-37.909h236.985c20.935 0 37.909 16.974 37.909 37.909l0.015 437.716c0.021 20.936-16.967 37.91-37.895 37.91zM255.004-9.721c-13.419 0-24.299 10.873-24.299 24.299 0 13.419 10.88 24.299 24.299 24.299s24.299-10.88 24.299-24.299c0.007-13.426-10.873-24.299-24.299-24.299zM382.933 64.597h-255.921v314.425h255.921v-314.425z" />
<glyph unicode="&#xf611;" d="M0.59 417.515v-383.922h511.41v383.922h-511.41zM469.333 76.26h-426.076v298.588h426.076v-298.588zM94.684 111.723h336.064l-45.482 147.683-34.126-11.356-29.561 55.744-95.531-137.913-51.179 32.974zM96.668 286.471c0 0 0 0 0 0 0-22.296 18.075-40.37 40.37-40.37s40.37 18.075 40.37 40.37c0 0 0 0 0 0s0 0 0 0c0 22.296-18.075 40.37-40.37 40.37s-40.37-18.075-40.37-40.37c0 0 0 0 0 0z" />
<glyph unicode="&#xf612;" d="M511.9 70.386c1.052 3.1 1.756 6.357 1.756 9.792l0.001 284.793c0 3.264-0.654 6.357-1.607 9.316l-167.31-143.261 167.16-160.64zM257.188 196.48l66.376 54.002 168.021 143.822c-2.759 0.818-5.618 1.394-8.633 1.394h-451.5c-3.022 0-5.888-0.576-8.654-1.401l168.121-143.893 66.269-53.924zM482.944 49.458c2.887 0 5.632 0.533 8.292 1.294l-168.804 162.14-65.244-53.099-65.145 53.013-168.875-162.061c2.652-0.747 5.397-1.287 8.284-1.287h451.492zM2.34 374.286c-0.953-2.958-1.607-6.052-1.607-9.316v-284.793c0-3.442 0.704-6.699 1.756-9.792l167.246 160.569-167.395 143.332z" />
<glyph unicode="&#xf613;" d="M138.539 437.141h374.158v-82.211h-374.158zM138.539 262.3h374.158v-82.225h-374.158zM138.539 86.507h374.158v-82.219h-374.158zM0.533 396.103c0-22.665 18.373-41.038 41.038-41.038s41.038 18.374 41.038 41.038c0 22.665-18.373 41.038-41.038 41.038s-41.038-18.373-41.038-41.038zM0.533 221.476c0-22.665 18.373-41.038 41.038-41.038s41.038 18.373 41.038 41.038c0 22.665-18.373 41.038-41.038 41.038s-41.038-18.374-41.038-41.038zM0.533 46.073c0-0.001 0-0.002 0-0.003 0-22.665 18.373-41.038 41.038-41.038 22.663 0 41.037 18.372 41.038 41.035 0 22.665-18.373 41.038-41.038 41.038s-41.038-18.373-41.038-41.038z" />
<glyph unicode="&#xf614;" d="M256 481.593c-141.383 0-256-114.61-256-256s114.617-256 256-256 256 114.61 256 256-114.617 256-256 256zM288.853 402.297c10.247 0.050 18.368-3.911 23.58-10.098 5.241-6.165 7.644-14.3 7.644-22.628 0-21.604-17.159-42.048-41.109-42.126-0.199 0-0.412 0-0.612 0-18.78 0-30.514 13.938-30.635 34.219 0.037 17.472 14.082 40.533 41.132 40.633zM319.851 115.321c-35.804-39.097-79.964-62.428-96.768-62.649-0.050 0-0.071 0-0.107 0-5.696 0-11.591 1.508-15.865 6.151-4.295 4.672-6.514 11.797-6.514 21.98 0 7.78 1.287 24.583 4.196 36.743l25.685 110.656c1.244 6.172 1.927 10.517 1.97 12.764-4.444-1.607-23.979-15.922-33.628-23.41l-3.407-2.594-9.998 27.15 1.956 1.82c36.146 33.429 79.58 60.217 99.506 60.466 5.689 0.092 10.645-2.816 13.312-7.516 2.738-4.629 3.812-10.652 3.812-17.892 0-7.9-1.33-24.377-3.804-35.065l-28.181-114.695c-1.337-5.511-1.884-9.543-1.884-12.089-0.014-1.436 0.185-2.375 0.327-2.816 3.008 0.363 23.012 14.080 35.961 25.998l3.065 2.78 10.688-23.452 1.5-2.297-1.822-2.033z" />
<glyph unicode="&#xf615;" d="M413.696 206.386h98.361l-97.685 92.288v149.312h-78.884v-74.781l-79.367 74.98-256.178-241.799h95.189v-206.571h113.65v146.020h94.898v-146.020h110.016z" />
<glyph unicode="&#xf616;" d="M-1.408 481.593h210.553v-210.553h-210.553zM300.203 481.593h210.553v-210.553h-210.553zM-1.408 179.982h210.553v-210.553h-210.553zM300.203 179.982h210.553v-210.553h-210.553z" />
<glyph unicode="&#xf617;" d="M263.808 311.836l78.13-78.165 84.338 84.288 85.404-85.803v249.394l-249.031 0.206 85.795-85.269zM163.499 55.054l84.65 84.651-78.129 78.158-84.345-84.281-85.391 85.81v-249.422l249.017-0.178z" />
<glyph unicode="&#xf618;" d="M27.572 318.286q-0.715 4.286 1.572 8 45.715 76 132.571 76 22.857 0 46-8.857t41.714-23.715 30.286-36.428 11.714-45.285q0-15.428-4.428-28.857t-10-21.857-15.714-17-16.428-12.428-17.428-10.143q-11.714-6.572-19.572-18.572t-7.857-19.143q0-4.857-3.429-9.286t-8-4.428h-68.572q-4.285 0-7.285 5.286t-3 10.714v12.857q0 23.714 18.571 44.714t40.857 31q16.857 7.714 24 16t7.143 21.714q0 12-13.286 21.143t-30.714 9.143q-18.572 0-30.857-8.286-10-7.143-30.572-32.857-3.715-4.571-8.857-4.571-3.428 0-7.143 2.286l-46.857 35.714q-3.715 2.857-4.428 7.143zM109.715 48v68.572q0 4.572 3.428 8t8 3.428h68.571q4.572 0 8-3.428t3.429-8v-68.572q0-4.572-3.429-8t-8-3.428h-68.572q-4.572 0-8 3.428t-3.428 8z" horiz-adv-x="293" />
<glyph unicode="&#xf619;" d="M346.19 40.327c0-8.953-7.559-16.519-16.519-16.519l-257.18 0.007c-8.96 0-16.519 7.559-16.519 16.519v257.181c0 8.967 7.559 16.526 16.519 16.526h135.488l55.801 55.815-191.289-0.014c-39.787 0-72.334-32.562-72.334-72.341v-257.173c-0.001-39.773 32.561-72.328 72.334-72.328h257.173c39.787 0 72.334 32.562 72.334 72.313v191.324l-55.815-55.801v-135.509zM253.141 461.148l82.539-82.552-151.211-151.218 75.065-75.065 151.218 151.211 82.553-82.568 18.851 259.037z" />
<glyph unicode="&#xf61a;" d="M499.918 85.383l-189.589 327.189c-29.504 50.923-77.838 50.951-107.406 0.071l-190.251-327.338c-29.568-50.88-5.611-92.508 53.234-92.508h380.658c58.851-0.001 82.858 41.663 53.354 92.586zM258.361 50.418c-18.226 0-32.74 14.492-32.74 32.74 0 18.226 14.5 32.74 32.74 32.74 18.219 0 32.74-14.5 32.74-32.74-0.015-18.248-14.514-32.74-32.74-32.74zM281.557 136.59h-46.386l-15.609 188.885h77.639l-15.644-188.885z" />
<glyph unicode="&#xf61b;" d="M511.751 262.073c9.87 84.188-67.932 162.027-173.767 173.86-64.818 7.253-125.084-11.975-164.352-47.275 8.811 0.846 17.671 1.351 26.432 1.351 52.58 0 102.99-15.431 141.945-43.456 41.266-29.696 66.965-71.41 72.356-117.454 4.807-40.96-7.076-82.695-33.429-118.201 54.322-40.683 104.071-29.76 92.516-21.042-32.277 24.341-39.14 48.107-37.106 66.752 41.499 23.588 70.193 60.956 75.405 105.465zM382.443 225.351c-9.010 76.921-88.085 132.523-182.379 132.523-8.917 0-17.956-0.498-27.1-1.515-105.828-11.84-183.631-89.678-173.768-173.859 5.22-44.516 33.906-81.877 75.413-105.465 2.041-18.645-4.821-42.418-37.106-66.759-5.156-3.883 1.877-8.206 16.050-8.206 22.123 0 61.668 10.524 99.556 49.664 9.358-1.145 18.951-1.735 28.693-1.735 8.846 0 17.82 0.484 26.873 1.5 105.842 11.833 183.631 89.671 173.768 173.852z" />
<glyph unicode="&#xf61c;" d="M256 481.593c-141.383 0-256-114.617-256-256s114.617-256 256-256 256 114.617 256 256c0 141.383-114.617 256-256 256zM417.244 136.37l-70.535-70.535-89.429 89.429-89.415-89.415-70.535 70.535 89.408 89.415-89.408 89.415 70.535 70.535 89.415-89.415 89.415 89.422 70.542-70.535-89.415-89.429 89.422-89.422z" />
<glyph unicode="&#xf61d;" d="M143.352 40.499c-6.861-6.938-6.861-18.125 0-25.063s17.946-6.938 24.806 0l200.448 202.419c6.861 6.938 6.861 18.151 0 25.063l-200.448 202.445c-6.861 6.938-17.946 6.938-24.806 0s-6.861-18.125 0-25.063l182.784-189.901-182.784-189.901z" />
<glyph unicode="&#xf61e;" d="M423.858 404.174v27.485c0 27.058-17.067 43.214-45.668 43.214s-45.668-16.156-45.668-43.214v-27.477l-30.94-0.008v27.485c0 27.058-17.067 43.214-45.653 43.214-28.594 0-45.668-16.156-45.668-43.214v-27.477h-30.94v27.477c0 27.058-17.067 43.214-45.668 43.214-28.594 0-45.668-16.156-45.668-43.214v-27.477l-52.429-0.008v-440.164h440.164l-0.001 440.164h-51.861zM356.985 431.659c0 13.355 6.108 18.766 21.205 18.766s21.205-5.412 21.205-18.766v-73.5c0-13.348-6.108-18.766-21.205-18.766s-21.205 5.419-21.205 18.766v73.5zM234.709 431.659c0 13.355 6.116 18.766 21.212 18.766 15.090 0 21.212-5.412 21.212-18.766v-73.5c0-13.348-6.123-18.766-21.212-18.766-15.097 0-21.212 5.419-21.212 18.766v73.5zM112.441 431.659c0 13.355 6.116 18.766 21.212 18.766 15.090 0 21.205-5.412 21.205-18.766v-73.5c0-13.348-6.116-18.766-21.205-18.766-15.097 0-21.212 5.419-21.212 18.766v73.5zM439.040 0.69h-366.798v305.671h366.798v-305.671zM256.676 118.336c0 23.317-15.723 36.224-43.221 44.089l-0.001 0.562c24.704 8.42 38.165 21.902 38.165 42.958 0 21.34-21.056 38.18-57.266 38.18-17.124 0-35.1-2.24-50.254-9.273l4.203-30.876c11.52 5.618 23.872 9.259 36.516 9.259 19.648 0 24.981-6.734 24.981-16.832 0-14.613-14.044-21.077-37.902-22.741v-30.891c34.532-1.963 45.76-9.266 45.76-26.944 0-12.914-12.352-22.741-31.438-22.741-15.737 0-28.082 2.24-42.958 7.865l-4.21-30.891c12.068-4.779 28.068-7.858 43.243-7.858 41.82-0.008 74.382 19.37 74.382 56.134zM320.932 195.548v-130.545h37.624v176.305h-18.808l-53.917-26.659 4.21-30.884z" />
<glyph unicode="&#xf61f;" d="M31.104 8.156h450.105v276.985h-450.105v-276.985zM180.366 211.57h151.566v-64.917l-151.566-0.001v64.918zM401.579 437.483h-290.852l-110.791-62.315v-55.403h512.434v55.403z" />
<glyph unicode="&#xf620;" d="M213.447 319.204c6.82 0 13.419 0.939 19.74 2.524l-27.712 22.692c-9.671 7.9-15.673 19.1-16.917 31.531-1.252 12.43 2.453 24.597 10.347 34.219 8.896 10.901 22.080 17.152 36.16 17.152 10.795 0 21.298-3.769 29.611-10.588l29.454-24.121c0.235 2.51 0.391 5.070 0.391 7.666 0 44.779-36.302 81.088-81.067 81.088-44.793 0-81.088-36.309-81.088-81.088-0.014-44.78 36.288-81.075 81.081-81.075zM397.461 354.574c-15.957 0-31.019-3.691-44.551-10.098-8.533-4.039-16.441-9.173-23.509-15.268l-81.643 66.866c-3.705 3.065-8.213 4.551-12.686 4.551-5.781 0-11.541-2.51-15.488-7.339-7.026-8.555-5.774-21.184 2.802-28.174l82.261-67.392c-4.281-8.348-7.531-17.308-9.436-26.788-1.017-5.028-1.55-10.226-1.806-15.488l49.372 27.342c8.903 4.928 18.951 7.545 29.106 7.545 21.852 0 42.012-11.883 52.594-31.012 16.043-28.985 5.497-65.614-23.474-81.65l-43.172-23.893c12.231-5.020 25.6-7.844 39.623-7.844 57.621 0 104.32 46.706 104.32 104.327s-46.706 104.315-104.313 104.315zM277.312 139.705l110.763 61.326c16.135 8.924 21.959 29.227 13.035 45.369-6.080 11.001-17.479 17.223-29.22 17.223-5.483 0-11.022-1.344-16.142-4.181l-109.81-60.8c-6.329 6.99-13.34 13.326-20.985 18.908-22.656 16.526-50.475 26.404-80.676 26.404-75.754 0-137.166-61.419-137.166-137.181 0-75.769 61.412-137.18 137.159-137.18 75.762 0 137.188 61.419 137.188 137.18 0 1.543-0.185 3.044-0.235 4.572-0.32 9.75-1.657 19.222-3.911 28.36z" />
<glyph unicode="&#xf621;" d="M425.7 8.967c16.171 4.359 38.386-13.973 52.388-43.108l28.096 11.918c-11.086 29.888-9.067 58.276 4.764 67.314l-28.359 46.236-77.953-0.006 21.064-82.354zM462.201 42.347c6.471 2.752 13.938-0.277 16.683-6.727 2.752-6.478-0.277-13.959-6.748-16.711-6.457-2.731-13.938 0.292-16.683 6.748-2.745 6.478 0.277 13.945 6.748 16.69zM332.494 443.506c-8.142 19.179-30.265 28.11-49.429 19.975-19.164-8.128-28.103-30.265-19.968-49.422l59.129-139.349h81.913l-71.645 168.796zM512.078 119.104v127.822h-280.028l-5.291-16.142c5.092-14.585 5.305-30.478 0.377-45.554l-15.402-46.933c1.671-6.364 2.816-12.772 3.556-19.179l296.788-0.007zM458.816 227.406v-37.291h-21.305v37.291h21.305zM267.079 159.922h-21.305v67.484h21.305v-67.484zM330.994 190.116h-21.312v37.291h21.312v-37.291zM394.887 159.922h-21.291v67.484h21.291v-67.484zM74.652 190.116h-20.629v37.291h21.319v-36.807c1.586 1.131 3.164 2.219 4.715 3.243l1.351 4.124 10.375 31.652c2.041 6.215 4.907 12.004 8.427 17.301l-99.435-0.001v-127.822h18.987c9.401 30.99 33.699 55.815 54.89 71.019zM176.768 138.66l0.398 1.216c-15.9 21.845-36.117 28.956-55.758 30.727-5.248 0.42-10.432 0.363-15.388 0.007-14.372-7.836-68.466-45.248-54.656-93.717 19.563-68.622-28.686-75.25-38.372-80.142-4.864-2.46 14.841-28.942 52.117-24.363 5.703 0.697 11.812 2.126 18.325 4.48 48.52 17.571 121.281 82.531 93.334 161.792zM146.617 243.022c-10.567-3.804-19.378-12.274-23.132-23.765l-10.389-31.68c3.136 0.014 6.343-0.071 9.614-0.32 20.174-1.372 42.581-9.237 60.622-28.58l12.11 36.935c3.797 11.52 1.721 23.524-4.53 32.875l68.402 208.469c4.011 12.245-2.631 25.408-14.876 29.419-3.371 1.102-6.791 1.401-10.105 1.003-8.683-1.060-16.398-7.004-19.314-15.879l-68.402-208.477z" />
<glyph unicode="&#xf622;" d="M192 337.593c0-44.183 35.817-80 80-80s80 35.817 80 80c0 44.183-35.817 80-80 80s-80-35.817-80-80zM0 337.593c0-44.183 35.817-80 80-80s80 35.817 80 80c0 44.183-35.817 80-80 80s-80-35.817-80-80zM384 177.593v48c0 17.6-14.4 32-32 32h-320c-17.6 0-32-14.4-32-32v-160c0-17.6 14.4-32 32-32h320c17.6 0 32 14.4 32 32v48l128-80v224l-128-80zM320 97.593h-256v96h256v-96z" />
<glyph unicode="&#xf623;" d="M96-30.407h320l32 352h-384zM320 417.593v64h-128v-64h-160v-96l32 32h384l32-32v96h-160zM288 417.593h-64v32h64v-32z" />
<glyph unicode="&#xf624;" d="M380.931-30.407c56.863 103.016 66.444 260.153-156.931 254.912v-126.912l-192 192 192 192v-124.186c267.481 6.971 297.285-236.107 156.931-387.814z" />
<glyph unicode="&#xf625;" d="M123.86 125.804c13.063-10.613 32.271-8.631 42.898 4.433v0.051l31.079 38.261 49.466-66.992c6.576-8.887 17.503-13.546 28.526-12.076 10.986 1.427 20.312 8.748 24.364 19.098l47.016 119.962 68.184-160.6c4.791-11.323 15.835-18.564 28.065-18.564 0.563 0 1.119 0.015 1.704 0.029 12.866 0.754 23.83 9.443 27.494 21.76l64.915 218.39 28.613-58.784c7.336-15.141 25.578-21.431 40.726-14.073 15.133 7.351 21.453 25.607 14.080 40.718l-62.881 129.266c-5.522 11.33-17.371 18.051-29.893 17.042-12.566-1.039-23.128-9.596-26.734-21.694l-63.115-212.253-64.197 151.34c-4.857 11.432-16.048 18.761-28.511 18.571-12.398-0.176-23.406-7.79-27.934-19.369l-54.155-138.174-40.089 54.287c-5.64 7.592-14.366 12.112-23.823 12.361-9.479 0.212-18.395-3.906-24.357-11.271l-55.859-68.791c-10.627-13.1-8.623-32.307 4.418-42.928v0z" horiz-adv-x="746" />
<glyph unicode="&#xf626;" d="M395.743-25.655c-0.545 0-1.096 0.014-1.615 0.040-14.67 0.794-22.416 6.544-28.068 10.752l-2.067 1.549-104.993 85.51-101.547-86.317c-5.711-4.412-13.528-10.444-28.541-11.271-0.479-0.033-1.083-0.053-1.7-0.053-11.861 0-24.602 6.847-30.982 16.654-6.144 8.894-7.004 17.598-7.103 23.342 0.046 7.305 1.412 12.832 2.744 17.322l40.547 132.89-103.844 68.431c-3.63 2.429-8.265 5.816-12.722 11.048-4.352 5.317-9.859 13.509-10.122 26.295-0.17 8.869 3.138 18.163 8.862 24.891 3.886 4.746 8.835 8.488 14.946 11.212 8.967 3.787 16.109 4.188 22.128 4.267l128.801 0.072 37.336 134.111c1.412 5.015 3.42 10.942 7.713 17.349 7.451 11.041 19.194 17.506 32.25 17.789l0.374 0.006 0.367-0.006c13.201-0.315 24.622-6.597 32.171-17.697 4.247-6.295 6.229-11.993 7.739-17.218l37.389-134.328 128.571-0.072c4.064-0.013 9.479-0.243 15.774-1.93 6.485-1.916 14.388-5.080 21.609-13.653 5.658-6.728 8.934-15.99 8.77-24.779-0.25-12.702-5.724-20.907-9.82-25.975-4.779-5.605-9.413-8.986-12.951-11.349l-102.623-67.715 45.246-132.726c1.634-4.969 3.249-10.884 3.308-18.4-0.079-6.157-0.958-14.953-7.627-24.293-6.19-9.138-18.747-15.748-30.32-15.748v0z" />
<glyph unicode="&#xf627;" d="M395.743-25.655c-0.545 0-1.096 0.014-1.615 0.040-14.67 0.794-22.416 6.544-28.068 10.752l-2.067 1.549-104.993 85.51-101.547-86.317c-5.711-4.412-13.528-10.444-28.541-11.271-0.479-0.033-1.083-0.053-1.7-0.053-11.861 0-24.602 6.847-30.982 16.654-6.144 8.894-7.004 17.598-7.103 23.342 0.046 7.305 1.412 12.832 2.744 17.322l40.547 132.89-103.844 68.431c-3.63 2.429-8.265 5.816-12.722 11.048-4.352 5.317-9.859 13.509-10.122 26.295-0.17 8.869 3.138 18.163 8.862 24.891 3.886 4.746 8.835 8.488 14.946 11.212 8.967 3.787 16.109 4.188 22.128 4.267l128.801 0.072 37.336 134.111c1.412 5.015 3.42 10.942 7.713 17.349 7.451 11.041 19.194 17.506 32.25 17.789l0.374 0.006 0.367-0.006c13.201-0.315 24.622-6.597 32.171-17.697 4.247-6.295 6.229-11.993 7.739-17.218l37.389-134.328 128.571-0.072c4.064-0.013 9.479-0.243 15.774-1.93 6.485-1.916 14.388-5.080 21.609-13.653 5.658-6.728 8.934-15.99 8.77-24.779-0.25-12.702-5.724-20.907-9.82-25.975-4.779-5.605-9.413-8.986-12.951-11.349l-102.623-67.715 45.246-132.726c1.634-4.969 3.249-10.884 3.308-18.4-0.079-6.157-0.958-14.953-7.627-24.293-6.19-9.138-18.747-15.748-30.32-15.748v0zM384.414 12.378l1.227-0.906c4.037-3 5.422-4.030 10.056-4.3 1.018 0.125 2.921 1.064 3.453 1.727 1.457 2.048 1.687 3.341 1.713 5.586-0.020 2.173-0.44 4.326-1.608 7.89l-46.651 136.868c-0.748 2.101-1.182 4.601-1.228 7.26-0.315 8.474 4.398 19.43 12.315 24.195l105.925 69.888c2.665 1.779 4.325 3.184 5.848 4.963 1.464 1.818 2.199 3.131 2.245 5.651 0.020 0.775-0.558 2.396-1.057 3-1.614 1.923-2.954 2.475-5.409 3.203-1.706 0.447-3.826 0.683-6.931 0.696l-132.713 0.079c-5.337 0-11.638 2.343-16.443 6.124-4.667 3.446-8.56 8.921-9.938 14.172l-38.381 137.899c-0.906 3.144-1.733 5.382-3.341 7.772-1.962 2.888-4.129 3.223-5.395 3.282-1.195-0.053-3.407-0.394-5.357-3.289-1.621-2.415-2.429-4.634-3.341-7.87l-38.347-137.754c-1.372-5.258-5.278-10.752-10.339-14.5-4.411-3.479-10.706-5.829-16.036-5.829l-132.779-0.073c-3.951-0.052-6.308-0.295-9.294-1.549-1.129-0.512-2.002-1.148-2.83-2.153-0.643-0.774-1.247-2.363-1.234-3.19 0.053-2.527 0.782-3.82 2.501-5.921 1.28-1.496 2.934-2.895 5.691-4.739l106.378-70.098c8.146-4.923 13.102-16.502 12.761-25.173-0.046-2.423-0.401-4.72-1.064-6.821l-41.504-136.034c-0.827-2.809-1.339-5.022-1.359-7.706 0.039-2.048 0.262-3.368 1.549-5.232 0.761-0.978 2.816-2.008 3.84-2.094 4.601 0.269 5.973 1.326 10.056 4.484l1.182 0.905 104.060 88.616c4.103 3.61 10.122 5.75 16.22 5.75 6.066 0 12.032-2.087 16.076-5.586l109.483-89.193z" />
<glyph unicode="&#xf628;" d="M253.426 475.779c-139.446 0-252.493-113.040-252.493-252.494s113.047-252.493 252.493-252.493 252.493 113.040 252.493 252.493c0 139.454-113.047 252.494-252.493 252.494v0zM253.426 33.916c-104.42 0-189.37 84.943-189.37 189.369 0 104.42 84.95 189.37 189.37 189.37s189.37-84.95 189.37-189.37c0-104.426-84.95-189.369-189.37-189.369v0zM375.934 166.699l-99.875 67.465v116.126c0 2.777-1.129 5.484-3.079 7.448-1.957 1.957-4.671 3.079-7.448 3.079h-27.62c-2.778 0-5.478-1.122-7.442-3.079-1.957-1.964-3.079-4.678-3.079-7.448v-137.132c0-2.778 1.122-5.485 3.079-7.449 0.793-0.792 1.711-1.452 2.714-1.95l116.372-77.95c1.753-1.157 3.78-1.774 5.835-1.774 0.744 0 1.494 0.084 2.23 0.238 2.785 0.589 5.191 2.287 6.713 4.713l14.644 23.426c2.995 4.79 1.648 11.117-3.044 14.287v0z" />
<glyph unicode="&#xf629;" d="M378.599 202.16h-43.253c-23.082 0-28.609 13.354-12.288 29.668 16.314 16.314 30.082 30.082 30.58 30.573 0.498 0.519 0.498 1.325 0 1.837s-13.635 13.642-29.177 29.191c-15.543 15.536-28.672 28.672-29.177 29.177-0.498 0.491-1.326 0.491-1.838 0-0.498-0.505-14.266-14.272-30.58-30.586s-29.661-10.794-29.661 12.288v43.246c0 0.716-0.589 1.305-1.304 1.305h-82.53c-0.716 0-1.305-0.589-1.305-1.305v-43.246c0-23.082-13.347-28.602-29.661-12.288s-30.074 30.081-30.572 30.586c-0.512 0.491-1.333 0.491-1.845 0-0.491-0.505-13.635-13.641-29.177-29.177-15.542-15.549-28.672-28.686-29.177-29.191-0.498-0.505-0.498-1.318 0-1.837 0.505-0.491 14.266-14.259 30.587-30.573 16.314-16.314 10.787-29.668-12.295-29.668h-43.254c-0.722 0-1.304-0.589-1.304-1.304v-82.523c0-0.73 0.582-1.305 1.304-1.305h43.247c23.075 0 28.609-13.354 12.288-29.668l-30.573-30.573c-0.498-0.519-0.498-1.325 0-1.837 0.505-0.505 13.635-13.642 29.177-29.177 15.542-15.55 28.672-28.672 29.177-29.191 0.498-0.491 1.326-0.491 1.838 0 0.498 0.519 14.265 14.273 30.579 30.586 16.314 16.314 29.661 10.795 29.661-12.288v-43.246c0-0.729 0.589-1.305 1.305-1.305h82.53c0.715 0 1.304 0.576 1.304 1.305v43.246c0 23.083 13.348 28.602 29.661 12.302 16.314-16.327 30.089-30.081 30.594-30.586 0.498-0.505 1.319-0.505 1.824 0s13.634 13.627 29.184 29.177c15.549 15.535 28.679 28.672 29.177 29.177s0.498 1.318 0 1.837c-0.498 0.505-14.266 14.259-30.58 30.573-16.307 16.314-10.787 29.668 12.288 29.668h43.246c0.723 0 1.305 0.575 1.305 1.305v82.523c0 0.715-0.582 1.304-1.305 1.304v0zM193.48 97.355c-35.097 0-63.558 28.454-63.558 63.558 0 35.096 28.461 63.551 63.558 63.551 35.103 0 63.558-28.455 63.558-63.551-0.007-35.111-28.455-63.558-63.558-63.558v0zM505.681 401.995h-21.617c-11.523 0-14.286 6.656-6.13 14.819 8.15 8.15 15.031 15.017 15.276 15.276 0.246 0.246 0.246 0.66 0 0.919-0.245 0.246-6.81 6.81-14.574 14.561-7.764 7.778-14.329 14.329-14.575 14.588-0.252 0.246-0.673 0.246-0.918 0-0.26-0.245-7.133-7.126-15.283-15.276s-14.813-5.4-14.813 6.123c0 11.538 0 21.259 0.007 21.616-0.007 0.358-0.302 0.646-0.652 0.646h-41.227c-0.358 0-0.645-0.288-0.645-0.646v-21.616c0-11.523-6.67-14.287-14.82-6.137-8.157 8.164-15.031 15.031-15.283 15.29-0.26 0.246-0.673 0.246-0.919 0-0.252-0.245-6.817-6.81-14.581-14.574-7.757-7.765-14.322-14.329-14.568-14.575-0.252-0.245-0.252-0.673 0-0.919 0.253-0.259 7.126-7.126 15.283-15.276 8.143-8.149 5.387-14.819-6.144-14.819h-21.595c-0.365-0.014-0.652-0.302-0.659-0.66 0.007-0.357 0-9.63 0-20.613v-20.606c0-0.358 0.294-0.646 0.652-0.646s10.086-0.014 21.602-0.014c11.538 0.014 14.287-6.656 6.144-14.805-8.157-8.15-15.037-15.031-15.283-15.276-0.252-0.26-0.252-0.674 0-0.919 0.253-0.26 6.818-6.824 14.575-14.589 7.764-7.75 14.322-14.315 14.574-14.574 0.253-0.246 0.666-0.246 0.926 0 0.245 0.259 7.119 7.126 15.276 15.29 8.15 8.136 14.82 5.386 14.82-6.137 0-11.538 0.007-21.259 0-21.616 0-0.358 0.287-0.646 0.645-0.646h41.22c0.35 0 0.645 0.288 0.652 0.66 0.007 0.343 0 10.071 0 21.588 0 11.537 6.663 14.301 14.813 6.151s15.030-15.031 15.283-15.29c0.252-0.246 0.666-0.246 0.918 0 0.246 0.259 6.811 6.824 14.575 14.574l14.574 14.575c0.246 0.259 0.246 0.673 0 0.933-0.245 0.245-7.126 7.126-15.283 15.276-8.156 8.149-5.393 14.819 6.137 14.819h21.617c0.35 0 0.645 0.288 0.645 0.646v20.613c0 10.969 0 20.249 0.007 20.613-0.014 0.351-0.309 0.653-0.652 0.653v0zM435.691 357.738c-12.4-12.4-32.502-12.4-44.895 0s-12.4 32.509 0 44.902c12.4 12.393 32.502 12.4 44.895 0 12.407-12.393 12.4-32.509 0-44.902v0z" />
<glyph unicode="&#xf62a;" d="M653.814 398.002h-126.338c-0.097 0.183-0.126 0.377-0.222 0.56l-18.113 36.207c-4.666 9.313-17.003 16.935-27.426 16.935h-243.181c-10.424 0-22.76-7.622-27.426-16.935l-18.113-36.207c-0.097-0.183-0.145-0.377-0.232-0.56h-132.241c-10.404 0-18.934-8.54-18.934-18.954v-359.723c0-10.424 8.53-18.954 18.934-18.954h593.312c10.423 0 18.944 8.53 18.944 18.954v359.723c-0.010 10.424-8.55 18.954-18.964 18.954v0zM357.54 54.923c-82.152 0-148.77 66.599-148.77 148.78 0 82.132 66.618 148.731 148.77 148.731s148.77-66.599 148.77-148.731c0-82.181-66.618-148.78-148.77-148.78v0zM357.54 299.814c-53.006 0-96.13-43.115-96.13-96.111 0-53.017 43.124-96.15 96.13-96.15 53.016 0 96.15 43.133 96.15 96.15 0 52.996-43.134 96.111-96.15 96.111v0z" horiz-adv-x="705" />
<glyph unicode="&#xf62b;" d="M384.919 375.307c-15.318 13.67-38.821 12.345-52.491-2.987-13.669-15.318-12.33-38.814 2.995-52.484 31.688-28.349 51.509-69.148 51.523-114.94-0.148-85.063-68.973-153.888-154.028-154.028-85.055 0.14-153.888 68.965-154.028 154.028 0.014 46.002 20.017 86.948 51.958 115.312 15.374 13.606 16.79 37.116 3.177 52.469-13.621 15.367-37.11 16.798-52.47 3.17l-0.014 0.022c-47.139-41.711-77.031-103.018-77.017-170.98 0.021-126.156 102.246-228.38 228.394-228.395 126.141 0.022 228.373 102.239 228.387 228.395 0.007 67.668-29.605 128.736-76.386 170.418v0zM233.57 167.204c20.543 0 37.187 16.643 37.187 37.166v239.258c0 20.543-16.644 37.193-37.187 37.193s-37.186-16.65-37.186-37.193v-239.258c0-20.523 16.643-37.166 37.186-37.166v0z" horiz-adv-x="462" />
<glyph unicode="&#xf62c;" d="M333.404 258.090v84.011c0 77.013-62.442 139.456-139.456 139.456-0.96 0-1.649 0.056-2.595 0.028-0.775 0.014-1.764-0.043-2.553-0.043-77.028 0-139.442-62.442-139.442-139.456v-83.996h-49.358v-288.448h384.071v288.448h-50.667zM119.111 342.086c0 38.415 31.261 69.668 69.682 69.668 1.095 0 3.406 0.057 3.406 0.057s1.166-0.043 1.749-0.043c38.415 0 69.682-31.253 69.682-69.667v-84.011h-144.512v83.996h-0.007z" horiz-adv-x="391" />
<glyph unicode="&#xf62d;" d="M368.475 286.215h117.867v-23.766h-117.867zM183.8 116.042h302.542v-23.751h-302.542zM183.8 189.241h302.542v-23.742h-302.542zM368.475 359.423h117.867v-23.767h-117.867zM183.8 379.201h141.452v-142.476h-141.452zM544.529 451.748h-414.985c-14.517 0-18.457-3.947-18.457-18.597v-60.556h-58.169c-14.518 0-18.457-3.948-18.457-18.589v-307.109c0-21.892 25.55-50.267 49.887-50.267h460.172c14.534 0 18.457 3.947 18.457 18.597v417.924c0.008 14.65-3.906 18.597-18.448 18.597v0zM531.547 28.308h-447.183c-5.59 0-17.854 12.453-18.456 18.597v294.037h45.188v-284.259h31.43v284.259h0.008v79.153h389.013v-391.787z" horiz-adv-x="594" />
<glyph unicode="&#xf62e;" d="M511.911 98.528c-35.345 15.709-87.788 56.173-165.433 70.079 19.854 21.252 34.889 54.491 50.346 93.874 8.964 22.821 7.42 42.269 7.42 69.966 0 20.463 3.861 53.296-1.219 71.338-17.123 60.985-60.408 77.808-111.112 77.808-50.745 0-94.070-16.904-111.169-77.995-5.039-17.993-1.178-50.753-1.178-71.16 0-27.761-1.512-47.274 7.477-70.135 15.579-39.579 30.386-72.769 50.176-93.94-77.036-14.157-129.081-54.329-164.198-69.982-72.663-32.402-73.021-67.884-73.021-67.884v-60.262l585.2 0.073v60.189c0 0.016-0.342 35.612-73.289 68.031v0z" horiz-adv-x="593" />
<glyph unicode="&#xf62f;" d="M256 481.593c-141.385 0-256-114.615-256-256s114.615-256 256-256 256 114.615 256 256-114.615 256-256 256zM160 225.593c0 53.020 42.98 96 96 96s96-42.98 96-96-42.98-96-96-96-96 42.98-96 96zM462.99 139.855v0l-88.71 36.745c6.259 15.092 9.72 31.638 9.72 48.993s-3.461 33.901-9.72 48.993l88.71 36.745c10.954-26.411 17.010-55.365 17.010-85.738s-6.057-59.327-17.010-85.738v0zM341.739 432.583v0 0l-36.745-88.71c-15.092 6.259-31.638 9.72-48.994 9.72s-33.901-3.461-48.993-9.72l-36.745 88.711c26.411 10.952 55.366 17.009 85.738 17.009 30.373 0 59.327-6.057 85.739-17.010zM49.010 311.331l88.711-36.745c-6.259-15.092-9.721-31.638-9.721-48.993s3.461-33.901 9.72-48.993l-88.71-36.745c-10.953 26.411-17.010 55.365-17.010 85.738s6.057 59.327 17.010 85.738zM170.262 18.603l36.745 88.71c15.092-6.259 31.638-9.72 48.993-9.72s33.901 3.461 48.993 9.72l36.745-88.71c-26.411-10.952-55.365-17.010-85.738-17.010s-59.327 6.057-85.738 17.010z" />
<glyph unicode="&#xf630;" d="M256 481.593c-141.383 0-256-114.61-256-256s114.617-256 256-256c141.383 0 256 114.61 256 256s-114.617 256-256 256v0zM419.527 293.021l-179.726-180.139c-5.177-5.191-15.403-9.437-22.727-9.437h-15.524c-7.324 0-17.55 4.26-22.72 9.437l-84.636 85.027c-5.17 5.192-5.163 13.682 0.021 18.859l33.309 33.309c5.184 5.191 13.66 5.191 18.851 0.014l54.073-53.959c5.191-5.184 13.668-5.177 18.844 0.014l148.203 148.551c5.177 5.184 13.661 5.212 18.859 0.050l33.13-32.903c5.192-5.17 5.213-13.625 0.043-18.823v0z" />
<glyph unicode="&#xf631;" d="M252.493 476.15c-139.446 0-252.493-113.046-252.493-252.493 0-139.453 113.047-252.493 252.493-252.493 139.447 0 252.493 113.040 252.493 252.493 0 139.447-113.046 252.493-252.493 252.493v0zM252.493 34.287c-104.42 0-189.37 84.943-189.37 189.37 0 104.42 84.95 189.37 189.37 189.37s189.37-84.95 189.37-189.37c0-104.427-84.95-189.37-189.37-189.37v0zM257.171 99.746c69.724 0 126.247 56.523 126.247 126.247s-56.523 126.246-126.247 126.246c-69.724 0-126.246-56.522-126.246-126.246s56.522-126.247 126.246-126.247z" horiz-adv-x="504" />
<glyph unicode="&#xf632;" d="M322.361 291.975v168.285h-132.757v-168.285h-168.271v-132.743h168.271v-168.27h132.757v168.27l168.263-0.007v132.75h-168.263z" />
<glyph unicode="&#xf633;" d="M132.144 188.874c-6.859 6.868-6.839 18.132 0.029 24.991l44.139 44.148c6.868 6.869 18.113 6.869 24.991 0.010l71.68-71.526c6.868-6.858 18.113-6.849 24.972 0.020l196.453 196.917c6.859 6.878 18.104 6.907 25.002 0.058l43.916-43.607c6.887-6.849 6.916-18.065 0.058-24.943l-238.225-238.795c-6.869-6.878-20.422-12.501-30.141-12.501h-20.576c-9.719 0-23.263 5.642-30.121 12.511l-112.177 112.717z" horiz-adv-x="695" />
<glyph unicode="&#xf634;" d="M241.861 230.4l-158.56 158.56c-3.656 3.656-3.656 9.571-0.005 13.22 3.641 3.642 9.568 3.646 13.22-0.006l158.56-158.56 158.56 158.56c3.656 3.657 9.572 3.656 13.22 0.005 3.642-3.642 3.646-9.568-0.005-13.22l-158.56-158.559 158.56-158.56c3.656-3.656 3.656-9.571 0.005-13.22-3.642-3.642-9.568-3.646-13.22 0.005l-158.56 158.56-158.56-158.56c-3.656-3.656-9.571-3.656-13.22-0.005-3.641 3.642-3.646 9.568 0.005 13.22l158.56 158.56z" horiz-adv-x="510" />
<glyph unicode="&#xf635;" d="M562.904 189.737c-0.168 0.28-0.344 0.552-0.496 0.84-5.512 10.136-12.344 19.304-20.28 27.248l-108.44 108.424c-0.44 0.456-0.856 0.832-1.232 1.168-13.816 13.4-30.608 23.224-48.872 28.648 21.048-22.032 34.984-49.552 40.392-79.832 1.608-9.080 2.44-18.36 2.44-27.592 0-3.68-0.16-7.56-0.488-11.84l67.576-67.592c5.872-5.872 10.232-13.28 12.576-21.416 1.36-4.672 2.032-9.528 2.032-14.456 0-5.456-0.832-10.832-2.472-15.992-2.488-7.776-6.56-14.536-12.144-20.112l-44.064-44.064c-9.44-9.44-22.216-14.64-35.984-14.64s-26.544 5.2-35.984 14.64l-108.416 108.416c-3.904 3.904-7.144 8.512-9.608 13.72-3.264 6.84-4.984 14.544-4.984 22.248 0 5.2 0.768 10.344 2.264 15.28 0.144 0.44 0.296 0.872 0.472 1.312l0.264 0.72c0.64 1.816 1.232 3.28 1.856 4.624 0.36 0.784 0.752 1.544 1.16 2.312 0.736 1.392 1.56 2.768 2.528 4.232l0.408 0.608c0.296 0.44 0.576 0.888 0.888 1.312 1.608 2.184 3.16 4.016 4.752 5.592l16.8 16.8c-0.184 2-0.64 3.784-1.376 5.296-0.704 1.488-1.56 2.752-2.576 3.768l-42.12 42.12-19.344-19.36c-1.872-1.872-3.752-3.888-5.736-6.184-0.296-0.328-0.576-0.688-0.856-1.032l-0.624-0.768c-1.328-1.576-2.592-3.168-3.816-4.8-0.424-0.544-0.816-1.112-1.216-1.656l-0.232-0.328c-1.2-1.688-2.36-3.392-3.472-5.128l-0.296-0.456c-0.264-0.408-0.528-0.832-0.8-1.232-1.296-2.128-2.544-4.28-3.672-6.392l-0.168-0.312-0.16-0.296c-3.936-7.488-7.096-15.456-9.376-23.72-0.816-2.936-1.456-5.656-1.984-8.28-1.608-8.016-2.424-16.112-2.424-24.16 0-7.080 0.64-14.184 1.856-21.096 4.312-24.216 15.72-46.144 32.952-63.392l108.432-108.416c46.656-46.656 122.56-46.656 169.216 0l44.064 44.064c15.080 15.088 25.84 34.152 31.128 55.152 2.496 9.984 3.784 19.896 3.784 29.464 0 18.904-4.544 37.792-13.128 54.608-0.096 0.192-0.2 0.4-0.28 0.608-0.080 0.16-0.144 0.32-0.232 0.48-0.144 0.304-0.312 0.56-0.488 0.84v0zM358 334.521l-108.416 108.432c-46.656 46.64-122.56 46.64-169.216-0.016l-44.064-44.064c-15.096-15.080-25.84-34.16-31.128-55.144-2.496-9.984-3.784-19.888-3.784-29.472 0-18.904 4.544-37.784 13.128-54.608 0.112-0.184 0.2-0.408 0.28-0.608 0.080-0.16 0.144-0.328 0.232-0.488 0.144-0.264 0.296-0.528 0.472-0.816s0.344-0.56 0.496-0.856c5.528-10.144 12.36-19.296 20.296-27.232l108.424-108.424c0.456-0.472 0.856-0.84 1.248-1.168 13.816-13.392 30.592-23.216 48.856-28.64-21.032 22.032-34.968 49.544-40.36 79.832-1.624 9.048-2.456 18.344-2.456 27.592 0 3.656 0.16 7.528 0.488 11.84l-67.576 67.592c-5.872 5.872-10.232 13.28-12.576 21.424-1.36 4.672-2.048 9.512-2.048 14.44 0 5.456 0.84 10.84 2.488 16 2.488 7.784 6.56 14.544 12.144 20.112l44.064 44.064c19.512 19.512 52.472 19.512 71.968 0l108.416-108.416c3.904-3.904 7.144-8.512 9.608-13.72 3.248-6.84 4.984-14.528 4.984-22.248 0-5.2-0.768-10.344-2.264-15.28-0.144-0.456-0.296-0.888-0.472-1.344l-0.264-0.688c-0.64-1.816-1.232-3.28-1.856-4.624-0.36-0.784-0.768-1.544-1.168-2.312-0.736-1.408-1.576-2.832-2.512-4.232l-0.376-0.56c-0.296-0.472-0.592-0.92-0.92-1.36-1.608-2.184-3.16-4.016-4.736-5.592l-16.816-16.8c0.184-2 0.64-3.784 1.376-5.312 0.704-1.488 1.56-2.752 2.576-3.752l42.12-42.12 19.344 19.36c1.84 1.84 3.72 3.872 5.752 6.184 0.296 0.344 0.592 0.704 0.872 1.064l0.592 0.72c1.328 1.592 2.592 3.184 3.816 4.824 0.496 0.648 0.968 1.304 1.44 1.976 1.232 1.688 2.376 3.392 3.504 5.128l0.36 0.568 0.704 1.128c1.312 2.112 2.544 4.256 3.688 6.392l0.16 0.288 0.168 0.32c3.936 7.464 7.096 15.44 9.392 23.712 0.784 2.848 1.424 5.576 1.968 8.296 1.608 8 2.424 16.096 2.424 24.144 0 7.096-0.64 14.192-1.856 21.104-4.344 24.192-15.736 46.112-32.984 63.36v0z" horiz-adv-x="584" />
<glyph unicode="&#xf636;" d="M160 161.593v96h96l-128 128-128-128h96v-160h192l-64 64zM416 193.593v160h-192l64-64h64v-96h-96l128-128 128 128z" />
<glyph unicode="&#xf637;" d="M400 417.593c-5.312 0-10.562-0.375-15.792-1.125-29.874 40.708-77.020 65.125-128.208 65.125s-98.312-24.417-128.208-65.125c-5.23 0.75-10.48 1.125-15.792 1.125-61.75 0-112-50.25-112-112s50.25-112 112-112c13.688 0 27.084 2.5 39.709 7.333 28.957-25.25 65.791-39.333 104.291-39.333 38.542 0 75.333 14.083 104.291 39.333 12.625-4.833 26.021-7.333 39.709-7.333 61.75 0 112 50.25 112 112s-50.25 112-112 112zM400 225.593c-17.125 0-32.916 5.5-45.938 14.667-23.478-28.292-58.438-46.667-98.062-46.667s-74.584 18.375-98.062 46.667c-13-9.167-28.813-14.667-45.938-14.667-44.188 0-80 35.812-80 80s35.812 80 80 80c10.812 0 21.062-2.208 30.438-6.083 21.229 41.416 63.853 70.083 113.562 70.083s92.334-28.667 113.541-70.083c9.397 3.875 19.668 6.083 30.459 6.083 44.188 0 80-35.812 80-80s-35.812-80-80-80zM225 1.593c0-17.688 14.312-32 32-32s32 14.312 32 32-32 64-32 64-32-46.312-32-64zM352 33.593c0-17.688 14.312-32 32-32s32 14.312 32 32-32 64-32 64-32-46.312-32-64zM96 97.593c0-17.688 14.312-32 32-32s32 14.312 32 32-32 64-32 64-32-46.312-32-64z" />
<glyph unicode="&#xf638;" d="M256 337.593c-61.75 0-112-50.25-112-112s50.25-112 112-112 112 50.25 112 112c0 61.75-50.25 112-112 112zM256 145.593c-44.188 0-80 35.812-80 80s35.812 80 80 80 80-35.812 80-80-35.812-80-80-80zM256 369.593c8.833 0 16 7.167 16 16v32c0 8.833-7.167 16-16 16s-16-7.167-16-16v-32c0-8.833 7.167-16 16-16zM256 81.593c-8.833 0-16-7.167-16-16v-32c0-8.833 7.167-16 16-16s16 7.167 16 16v32c0 8.833-7.167 16-16 16zM380.438 327.426l22.625 22.625c6.25 6.25 6.25 16.375 0 22.625s-16.375 6.25-22.625 0l-22.625-22.625c-6.25-6.25-6.25-16.375 0-22.625s16.375-6.25 22.625 0zM131.562 123.759l-22.625-22.625c-6.25-6.249-6.25-16.374 0-22.624s16.375-6.25 22.625 0l22.625 22.624c6.25 6.271 6.25 16.376 0 22.625-6.249 6.251-16.375 6.272-22.625 0zM112 225.593c0 8.833-7.167 16-16 16h-32c-8.833 0-16-7.167-16-16s7.167-16 16-16h32c8.833 0 16 7.167 16 16zM448 241.593h-32c-8.833 0-16-7.167-16-16s7.167-16 16-16h32c8.833 0 16 7.167 16 16s-7.167 16-16 16zM131.541 327.426c6.251-6.25 16.376-6.25 22.625 0 6.251 6.25 6.251 16.375 0 22.625l-22.625 22.625c-6.25 6.25-16.374 6.25-22.625 0-6.25-6.25-6.25-16.375 0-22.625l22.625-22.625zM380.459 123.781c-6.271 6.25-16.376 6.25-22.625 0-6.251-6.25-6.271-16.375 0-22.625l22.625-22.625c6.249-6.25 16.374-6.25 22.624 0s6.25 16.374 0 22.625l-22.624 22.625z" />
<glyph unicode="&#xf639;" d="M208 417.593c8.833 0 16 7.167 16 16v32c0 8.833-7.167 16-16 16s-16-7.167-16-16v-32c0-8.833 7.167-16 16-16zM332.438 375.426l22.625 22.625c6.249 6.25 6.249 16.375 0 22.625s-16.375 6.25-22.625 0l-22.625-22.625c-6.25-6.25-6.25-16.375 0-22.625s16.375-6.25 22.625 0zM16 257.593h32c8.833 0 16 7.167 16 16s-7.167 16-16 16h-32c-8.833 0-16-7.167-16-16s7.167-16 16-16zM352 273.593c0-8.833 7.167-16 16-16h32c8.833 0 16 7.167 16 16s-7.167 16-16 16h-32c-8.833 0-16-7.167-16-16zM83.541 375.426c6.251-6.25 16.376-6.25 22.625 0 6.251 6.25 6.251 16.375 0 22.625l-22.625 22.625c-6.25 6.25-16.374 6.25-22.625 0-6.25-6.25-6.25-16.375 0-22.625l22.625-22.625zM400 225.593c-5.312 0-10.562-0.375-15.792-1.125-16.771 22.875-39.124 40.333-64.458 51.5-1.291 60.625-50.812 109.625-111.75 109.625-61.75 0-112-50.25-112-112 0-17.438 4.334-33.75 11.5-48.438-59.625-2.437-107.5-51.374-107.5-111.562 0-61.75 50.25-112 112-112 13.688 0 27.084 2.5 39.709 7.333 28.957-25.25 65.791-39.333 104.291-39.333 38.542 0 75.333 14.083 104.291 39.333 12.625-4.833 26.021-7.333 39.709-7.333 61.75 0 112 50.25 112 112s-50.25 112-112 112zM208 353.593c39.812 0 72.562-29.167 78.708-67.25-10.021 2-20.249 3.25-30.708 3.25-45.938 0-88.5-19.812-118.375-53.25-5.937 11.167-9.625 23.708-9.625 37.25 0 44.188 35.812 80 80 80zM400 33.593c-17.125 0-32.916 5.5-45.938 14.667-23.478-28.292-58.438-46.667-98.062-46.667s-74.584 18.375-98.062 46.667c-13-9.167-28.813-14.667-45.938-14.667-44.188 0-80 35.812-80 80s35.812 80 80 80c7.75 0 15.062-1.458 22.125-3.541 2.812-0.792 5.667-1.417 8.312-2.521 4.375 8.562 9.875 16.396 15.979 23.75 23.376 28.124 58.146 46.312 97.584 46.312 10.125 0 19.834-1.458 29.25-3.709 10.562-2.499 20.542-6.291 29.834-11.291 23.291-12.375 42.416-31.542 54.457-55.063 9.397 3.875 19.668 6.063 30.459 6.063 44.188 0 80-35.812 80-80s-35.812-80-80-80z" />
<glyph unicode="&#xf63a;" d="M326.042 37.905l-18 10.376c0.542 3.124 0.958 6.311 0.958 9.624 0 3.312-0.416 6.5-1 9.625l18.042 10.396c8.417 4.917 11.291 15.729 6.458 24.104-4.876 8.479-15.667 11.375-24.125 6.5l-18.188-10.5c-4.876 4.146-10.375 7.396-16.5 9.604v20.896c0 9.771-7.938 17.688-17.688 17.688s-17.666-7.917-17.666-17.688v-20.875c-6.126-2.188-11.646-5.479-16.521-9.625l-18.146 10.5c-8.479 4.875-19.292 2-24.167-6.479-4.875-8.417-1.938-19.25 6.5-24.126l17.959-10.375c-0.584-3.146-0.959-6.334-0.959-9.646s0.375-6.5 0.959-9.624l-17.958-10.375c-8.459-4.875-11.375-15.75-6.5-24.188s15.688-11.312 24.125-6.438l18.167 10.438c4.874-4.125 10.396-7.375 16.542-9.562v-20.938c0-9.749 7.916-17.624 17.666-17.624s17.688 7.875 17.688 17.624v20.938c6.125 2.188 11.688 5.438 16.521 9.625l18.167-10.5c8.458-4.875 19.249-2 24.125 6.438 4.874 8.437 1.999 19.25-6.459 24.187zM256 40.218c-9.75 0-17.688 7.938-17.688 17.688s7.938 17.646 17.688 17.646 17.667-7.896 17.667-17.646-7.917-17.688-17.667-17.688zM474.166 85.343l-12.083 3.208c-0.291 3.833-1.208 7.479-2.896 10.979l8.771 8.771c4.125 4.125 4.104 10.792 0 14.854-4.083 4.104-10.708 4.125-14.833 0l-8.791-8.75c-3.459 1.625-7.146 2.562-10.959 2.875l-3.209 12.062c-1.499 5.583-7.25 8.938-12.874 7.438-5.604-1.521-8.875-7.271-7.417-12.875l3.209-11.896c-1.584-1.084-3.084-2.292-4.5-3.667-1.375-1.417-2.542-2.916-3.626-4.459l-11.896 3.209c-5.604 1.499-11.396-1.876-12.896-7.438-1.499-5.625 1.876-11.354 7.417-12.875l12-3.229c0.334-3.771 1.292-7.458 2.979-10.959l-8.812-8.812c-4.083-4.104-4.062-10.729 0.042-14.812 4.083-4.083 10.708-4.125 14.792-0.042l8.832 8.833c3.459-1.707 7.168-2.666 11.001-2.957l3.166-12.021c1.542-5.604 7.25-8.938 12.876-7.438 5.583 1.5 8.957 7.249 7.458 12.917l-3.209 11.896c1.5 1.062 3.042 2.25 4.459 3.625 1.375 1.396 2.542 2.938 3.624 4.479l11.917-3.209c5.604-1.5 11.375 1.854 12.854 7.417 1.5 5.585-1.812 11.334-7.396 12.876zM438.312 78.655c-4.125-4.125-10.771-4.104-14.875 0-4.062 4.062-4.104 10.729 0 14.854 4.104 4.083 10.771 4.083 14.875 0 4.063-4.104 4.063-10.791 0-14.854zM118.938 139.093l-11.875-3.188c-1.104 1.5-2.25 3.021-3.646 4.438-1.416 1.375-2.916 2.562-4.479 3.625l3.188 11.938c1.5 5.604-1.834 11.375-7.375 12.854-5.625 1.5-11.375-1.834-12.875-7.417l-3.25-12.062c-3.812-0.312-7.458-1.25-10.938-2.896l-8.812 8.771c-4.125 4.125-10.75 4.104-14.834 0-4.104-4.104-4.104-10.75 0-14.854l8.771-8.771c-1.646-3.5-2.604-7.188-2.896-10.979l-12.042-3.208c-5.625-1.542-8.959-7.25-7.458-12.875 1.521-5.583 7.271-8.875 12.896-7.417l11.875 3.23c1.062-1.604 2.25-3.105 3.688-4.501 1.375-1.375 2.875-2.604 4.438-3.625l-3.188-11.896c-1.5-5.625 1.834-11.417 7.416-12.917 5.626-1.5 11.334 1.833 12.834 7.438l3.25 12c3.812 0.312 7.5 1.271 11 2.938l8.791-8.792c4.084-4.124 10.709-4.041 14.834 0.042 4.062 4.062 4.125 10.708 0 14.812l-8.812 8.812c1.688 3.46 2.688 7.188 2.938 11.001l12.062 3.188c5.562 1.521 8.896 7.25 7.396 12.875-1.501 5.56-7.251 8.894-12.897 7.436zM88.562 110.635c-4.104-4.104-10.75-4.104-14.875 0-4.062 4.083-4.062 10.771 0 14.833 4.125 4.083 10.771 4.083 14.875 0s4.063-10.75 0-14.833zM512 305.593c0 61.75-50.25 112-112 112-5.312 0-10.562-0.375-15.792-1.125-29.874 40.708-77.020 65.125-128.208 65.125s-98.312-24.417-128.208-65.125c-5.23 0.75-10.48 1.125-15.792 1.125-61.75 0-112-50.25-112-112s50.25-112 112-112c13.688 0 27.084 2.5 39.709 7.333 28.957-25.25 65.791-39.333 104.291-39.333 38.542 0 75.333 14.083 104.291 39.333 12.625-4.833 26.021-7.333 39.709-7.333 61.75 0 112 50.25 112 112zM354.062 240.26c-23.478-28.292-58.438-46.667-98.062-46.667s-74.584 18.375-98.062 46.667c-13-9.167-28.813-14.667-45.938-14.667-44.188 0-80 35.812-80 80s35.812 80 80 80c10.812 0 21.062-2.208 30.438-6.083 21.229 41.416 63.853 70.083 113.562 70.083s92.334-28.667 113.541-70.083c9.397 3.875 19.668 6.083 30.459 6.083 44.188 0 80-35.812 80-80s-35.812-80-80-80c-17.125 0-32.916 5.5-45.938 14.667z" />
<glyph unicode="&#xf63b;" d="M512 241.592c0 49.167-40 89.146-89.167 89.146-2.396 0-4.771-0.104-7.146-0.291-23.125 28.854-57.979 45.978-95.688 45.978-37.688 0-72.562-17.124-95.688-45.979-2.375 0.188-4.771 0.291-7.188 0.291-49.123 0.001-89.123-39.978-89.123-89.145 0-5.146 0.688-10.104 1.5-15.042-0.542-0.708-1.188-1.354-1.708-2.083-5.229 0.75-10.479 1.125-15.792 1.125-61.75 0-112-50.249-112-111.999s50.25-112 112-112c13.688 0 27.084 2.5 39.709 7.333 28.957-25.25 65.791-39.333 104.291-39.333 38.542 0 75.333 14.083 104.291 39.333 12.625-4.833 26.021-7.333 39.709-7.333 61.75 0 112 50.249 112 112 0 25.688-9.042 49.083-23.666 67.999 14.582 15.896 23.666 36.833 23.666 60zM400 33.593c-17.125 0-32.916 5.499-45.938 14.666-23.479-28.291-58.438-46.666-98.062-46.666s-74.584 18.375-98.062 46.666c-13-9.167-28.812-14.666-45.938-14.666-44.188 0-80 35.812-80 80s35.812 79.999 80 79.999c10.812 0 21.062-2.188 30.438-6.062 0.562 1.062 1.25 2 1.812 3.021 5.625 10.271 12.562 19.688 20.666 28.042 23.084 23.916 55.167 39 91.084 39 49.709 0 92.334-28.666 113.541-70.062 5.646 2.312 11.668 3.813 17.875 4.812l12.584 1.25c12.334 0 23.875-3.042 34.312-8 11.312-5.416 21.021-13.374 28.646-23.188 10.5-13.521 17.042-30.354 17.042-48.812 0-44.188-35.812-80-80-80zM465.562 203.968c-18.479 13.458-41 21.624-65.562 21.624-5.312 0-10.562-0.375-15.792-1.125-29.874 40.708-77.021 65.125-128.208 65.125-34.125 0-66.312-11.042-92.938-30.334 7.479 22.854 28.729 39.479 54.062 39.479 7.75 0 15.062-1.562 21.75-4.332 15.188 29.562 45.625 50.020 81.125 50.020s65.958-20.457 81.084-50.020c6.729 2.77 14.083 4.332 21.749 4.332 31.584 0 57.167-25.583 57.167-57.146 0.001-14.478-5.561-27.54-14.437-37.623z" />
<glyph unicode="&#xf63c;" d="M206.933 148.615l58.596 164.622 0.064 0.036h-0.057l0.057 0.185-154.759-0.128c0.739 2.524 37.682 103.587 56.59 168.263h-86.82l-80.54-227.065-0.064-0.035h0.050l-0.050-0.185 154.759 0.121c-0.526-1.785-19.392-53.071-36.956-105.821h-72.491l67.42-179.499 171.080 179.499-76.879 0.007z" horiz-adv-x="284" />
<glyph unicode="&#xf63d;" d="M201.497 327.805l-49.946 40.108-147.561-140.715 148.97-140.709 49.953 40.108-107.2 100.601 105.782 100.607zM376.533 367.913l-49.945-40.101 107.192-100.6-105.782-100.607 49.945-40.116 147.561 140.723-148.97 140.701z" horiz-adv-x="527" />
<glyph unicode="&#xf63e;" d="M450.252 353.683c-12.127 20.971-39.34 31.134-75.468 31.134-16.973 0-35.91-2.238-56.18-6.656-19.779 61.791-51.411 101.769-87.040 101.769s-67.262-39.978-87.040-101.769c-20.2 4.418-39.136 6.656-56.109 6.656-18.096 0-33.876-2.518-46.711-7.715-12.828-5.19-22.718-12.905-28.756-23.426-17.815-30.86 0.982-78.273 44.537-126.246-43.555-47.974-62.352-95.387-44.537-126.247 12.133-21.041 39.347-31.134 75.468-31.134 16.973 0 35.91 2.238 56.109 6.656 19.779-61.791 51.411-101.769 87.040-101.769s67.262 39.978 87.040 101.769c20.269-4.418 39.207-6.656 56.109-6.656 36.19 0 63.404 10.163 75.538 31.134 17.815 30.861-0.982 78.273-44.601 126.246 43.625 47.98 62.415 95.393 44.601 126.254v0zM88.415 98.111c-26.224 0-44.88 6.242-51.2 17.106-8.136 14.168 0.982 41.942 23.846 72.592 4.902 6.522 10.31 13.046 16.131 19.575 14.519-13.887 31.001-27.571 49.096-40.757 2.384-22.233 5.961-43.344 10.731-62.842-17.387-3.717-33.799-5.674-48.605-5.674v0zM123.561 203.948c-9.538 7.715-18.523 15.57-26.862 23.496 8.34 7.925 17.324 15.781 26.862 23.496-0.281-7.778-0.491-15.571-0.491-23.496s0.21-15.788 0.491-23.496v0zM126.296 288.245c-18.096-13.186-34.578-26.933-49.096-40.757-5.822 6.53-11.229 13.053-16.132 19.575-22.871 30.643-31.989 58.424-23.846 72.592 6.313 10.871 24.976 17.106 51.2 17.106 14.799 0 31.211-1.957 48.612-5.681-4.784-19.491-8.353-40.603-10.738-62.836v0zM305.916 309.216c-6.53 4.138-13.193 8.206-20.058 12.204-6.873 3.928-13.676 7.645-20.55 11.222 11.433 4.418 22.717 8.276 33.736 11.51 2.595-10.949 4.98-22.521 6.873-34.935v0zM231.571 451.875c19.007 0 42.994-29.38 59.827-80.728-19.288-5.688-39.347-13.046-59.827-22.093-20.41 9.125-40.538 16.412-59.757 22.093 16.826 51.348 40.75 80.728 59.757 80.728v0zM164.162 344.222c11.012-3.303 22.31-7.161 33.743-11.572-6.874-3.577-13.747-7.294-20.55-11.222-6.874-3.998-13.543-8.066-20.13-12.204 1.957 12.407 4.272 23.98 6.936 34.998v0zM157.226 145.657c6.586-4.138 13.256-8.206 20.13-12.204 6.803-3.928 13.669-7.645 20.55-11.222-11.433-4.418-22.725-8.276-33.743-11.572-2.665 10.942-4.98 22.591-6.936 34.998v0zM231.571 2.998c-19.007 0-42.924 29.38-59.756 80.728 19.21 5.688 39.276 12.976 59.757 22.093 20.48-9.125 40.538-16.412 59.827-22.093-16.841-51.341-40.819-80.728-59.827-80.728v0zM299.043 110.659c-11.012 3.303-22.303 7.161-33.736 11.572 6.866 3.577 13.669 7.294 20.55 11.222 6.866 3.998 13.536 8.066 20.058 12.204-1.894-12.407-4.279-23.987-6.873-34.998v0zM310.195 182.058c-12.204-8.409-25.039-16.546-38.365-24.26s-26.792-14.729-40.258-21.041c-13.396 6.313-26.863 13.326-40.181 21.041-13.396 7.715-26.231 15.851-38.372 24.26-1.192 14.455-1.893 29.534-1.893 45.386s0.702 30.931 1.893 45.386c12.204 8.41 24.976 16.546 38.372 24.261 13.319 7.715 26.786 14.729 40.181 21.041 13.466-6.313 26.932-13.326 40.258-21.041 13.319-7.715 26.154-15.851 38.365-24.261 1.192-14.455 1.824-29.535 1.824-45.386s-0.638-30.938-1.824-45.386v0zM374.791 356.769c26.231 0 44.887-6.242 51.13-17.106 8.206-14.168-0.912-41.942-23.839-72.592-4.839-6.522-10.24-13.046-16.062-19.575-14.519 13.824-31 27.571-49.096 40.757-2.392 22.233-6.032 43.344-10.731 62.843 17.38 3.71 33.799 5.674 48.598 5.674v0zM339.582 250.933c9.531-7.715 18.516-15.571 26.863-23.496-8.346-7.926-17.331-15.78-26.863-23.496 0.351 7.715 0.484 15.57 0.484 23.496s-0.134 15.78-0.484 23.496v0zM425.984 115.217c-6.305-10.871-24.969-17.106-51.27-17.106-14.729 0-31.14 1.957-48.535 5.681 4.7 19.498 8.339 40.609 10.731 62.843 18.096 13.186 34.577 26.863 49.096 40.757 5.822-6.53 11.222-13.053 16.062-19.575 22.942-30.65 32.053-58.431 23.916-72.599v0zM267.755 227.436c0-19.972-16.19-36.162-36.162-36.162s-36.162 16.19-36.162 36.162c0 19.972 16.19 36.162 36.162 36.162s36.162-16.19 36.162-36.162z" horiz-adv-x="463" />
<glyph unicode="&#xf63f;" d="M253.749 473.772c-139.453 0-252.493-113.040-252.493-252.493s113.047-252.493 252.493-252.493c139.439 0 252.486 113.040 252.486 252.493s-113.040 252.493-252.486 252.493v0zM253.749 24.895c-108.285 0-196.383 88.099-196.383 196.384s88.099 196.384 196.383 196.384c108.278 0 196.376-88.099 196.376-196.384s-88.092-196.384-196.376-196.384v0zM214.837 261.558l-0.014-0.028-0.028-0.014 0.014-0.021-83.035-161.799 161.988 82.93 1.375 2.413 81.647 159.415-161.946-82.895zM229.706 246.605l49.089-49.089-97.771-48.633 48.682 97.722z" />
<glyph unicode="&#xf640;" d="M475.077 384h-438.154c-20.36 0-36.923-16.563-36.923-36.923v-246.154c0-20.361 16.564-36.923 36.923-36.923h438.154c20.361 0 36.923 16.563 36.923 36.923v246.154c0 20.36-16.563 36.923-36.923 36.923zM288 128.063l-64-0.063v96l-48-61.538-48 61.538v-96h-64v192h64l48-64 48 64 64 0.063v-192zM383.546 112.063l-79.546 111.938h48v96h64v-96h48l-80.454-111.938z" />
<glyph unicode="&#xf641;" d="M12.572 78q10-1.143 22.285-1.143 64.285 0 114.571 39.428-30 0.572-53.715 18.428t-32.572 45.572q9.428-1.428 17.428-1.428 12.285 0 24.285 3.143-32 6.572-53 31.857t-21 58.714v1.143q19.428-10.857 41.715-11.714-18.857 12.572-30 32.857t-11.143 44q0 25.143 12.572 46.572 34.572-42.572 84.143-68.143t106.143-28.428q-2.286 10.857-2.286 21.143 0 38.286 27 65.286t65.286 27q40 0 67.428-29.143 31.143 6 58.572 22.286-10.572-32.857-40.572-50.857 26.572 2.857 53.143 14.286-19.143-28-46.286-47.715 0.286-4 0.286-12 0-37.143-10.857-74.143t-33-71-52.714-60.143-73.714-41.714-92.286-15.572q-77.428 0-141.714 41.428z" horiz-adv-x="476" />
<glyph unicode="&#xf642;" d="M2.857 89.143q0 1.143 0.857 7.714t1.143 10.572q0.285 2.286-0.857 6.143t-0.857 5.572q0.571 3.143 2.285 6t4.715 6.714 4.715 6.714q6.572 10.857 12.857 26.143t8.572 26.143q0.857 2.857 0.143 8.572t-0.143 8q0.857 3.143 4.857 8t4.857 6.572q6 10.286 12 26.286t7.143 25.714q0.285 2.571-0.715 9.143t0.143 8q1.143 3.714 6.285 8.714t6.285 6.429q5.428 7.428 12.143 24.143t7.857 27.572q0.285 2.286-0.857 7.286t-0.572 7.571q0.572 2.286 2.572 5.143t5.143 6.572 4.857 6q2.285 3.428 4.715 8.714t4.285 10 4.572 10.286 5.572 9.143 7.572 6.714 10.286 3.286 13.572-1.571l-0.286-0.857q10.857 2.572 14.572 2.572h217.428q21.143 0 32.572-16t5.143-37.143l-78.286-258.857q-10.286-34-20.428-43.857t-36.714-9.857h-248.286q-7.715 0-10.857-4.286-3.143-4.572-0.285-12.286 6.857-20 41.143-20h263.714q8.286 0 16 4.428t10 11.857l85.714 282q2 6.286 1.428 16.285 10.857-4.285 16.857-12.285 11.428-16.286 5.143-36.857l-78.572-258.857q-5.428-18.286-21.857-30.714t-35-12.428h-263.714q-22 0-42.428 15.286t-28.428 37.572q-6.857 19.143-0.571 36.286zM140.571 265.143q-1.143-3.714 0.571-6.428t5.714-2.714h173.714q3.714 0 7.286 2.714t4.714 6.428l6 18.286q1.143 3.714-0.572 6.428t-5.714 2.714h-173.714q-3.714 0-7.286-2.714t-4.714-6.428zM164.286 338.286q-1.143-3.714 0.571-6.428t5.714-2.714h173.714q3.714 0 7.286 2.714t4.714 6.428l6 18.285q1.143 3.715-0.572 6.429t-5.714 2.714h-173.714q-3.714 0-7.286-2.714t-4.714-6.429z" horiz-adv-x="476" />
<glyph unicode="&#xf643;" d="M368.615 40.499c6.861-6.938 6.861-18.125 0-25.063s-17.945-6.938-24.807 0l-200.448 202.419c-6.861 6.938-6.861 18.151 0 25.063l200.448 202.445c6.861 6.938 17.945 6.938 24.807 0s6.861-18.125 0-25.063l-182.784-189.901 182.784-189.901z" />
<glyph unicode="&#xf644;" d="M743.538 230.236v0c-0.062-49.405-16.655-89.42-66.414-89.42-49.755 0-66.355 40.016-66.407 89.42v0.245c0.052 49.404 16.652 89.416 66.41 89.416 49.755 0 66.348-40.012 66.41-89.416v-0.245zM677.124 369.593c-87.786 0-133.124-62.281-133.124-139.112s44.221-139.115 133.124-139.115c88.904 0 133.128 62.284 133.128 139.115s-45.345 139.112-133.128 139.112v0zM288 89.17v384.616c0 0 50.565 7.206 54.486 7.736 4.442 0.602 10.338-2.57 10.338-8.842v-142.582c10.497 10.008 22.048 18.075 34.642 24.226 12.603 6.14 27.386 9.216 44.362 9.216 14.7 0 27.724-2.501 39.096-7.511 11.383-4.995 20.876-12.022 28.486-21.058 7.611-9.046 13.383-19.84 17.324-32.391 3.934-12.551 5.904-26.371 5.904-41.472v-171.938h-64.827v171.938c0 16.498-3.803 29.271-11.417 38.317-7.614 9.036-19.031 13.558-34.258 13.558-11.197 0-21.69-2.542-31.483-7.642-9.807-5.089-19.079-12.018-27.827-20.798v-195.373h-64.824zM1162.845 78.954c-44.607 0-72.565 26.050-72.565 74.642v144.007h-50.28c0 0 10.686 37.078 11.531 40.001 0.849 2.917 3.059 6.047 7.496 6.667s31.186 4.363 31.186 4.363l12.355 78.858c0 0 36.3 5.134 42.055 5.995 5.435 0.817 10.362-3.113 10.362-9.050v-75.803h63.59v-51.031h-63.59v-142.070c0-19.397 11.773-26.811 23.055-26.811 6.897 0 16.341 3.678 23.389 6.954 4.355 2.021 11.103 0.522 12.845-5.577 1.545-5.404 9.742-34.086 9.742-34.086-7.072-4.58-29.428-17.058-61.172-17.058zM996.193 309.323c-12.635 4.117-36.38 10.707-58.969 10.707-23.017 0-41.128-7.978-41.128-27.178 0-23.981 39.031-30.966 65.749-40.739 17.862-6.535 65.766-19.276 65.766-70.961 0-62.786-51.972-89.627-107.41-89.627-55.445 0-88.2 20.691-88.2 20.691s8.6 30.474 10.341 36.494c1.576 5.414 7.851 7.313 11.845 5.774 14.265-5.518 40.034-13.191 69.155-13.191 29.486 0 43.755 9.033 43.755 28.288 0 25.627-39.817 33.46-66.152 41.793-18.138 5.736-66.155 19.113-66.155 75.952 0 55.995 49.010 82.266 101.389 82.266 44.338 0 66.086-9.303 82.331-17.605 0 0-9.052-31.65-10.396-36.366-1.593-5.597-6.176-8.168-11.92-6.299zM134.203 225.292c-29.176 0-51.934 15.547-51.934 49.457 0 33.916 22.783 49.464 51.934 49.464 29.159 0 51.941-15.505 51.941-49.464 0-33.954-22.755-49.457-51.941-49.457v0zM99.566 94.639c0 0 32.342-1.228 64.658-2.729 36.307-1.685 47.62-9.534 47.62-28.395 0-23.043-31.552-45.457-75.645-45.457-41.855 0-62.762 14.61-62.762 38.933 0 13.956 7.345 29.568 26.127 37.649v0zM269.286 360.073c0 6.058-5.159 9.52-10.079 8.957-21.755-2.501-37.276-12.773-47.317-22.331-19.717 15.499-47.086 22.894-77.807 22.894-61.586 0-109.704-29.817-109.704-94.844 0-37.324 15.834-63.045 40.986-78.187-18.68-8.873-31.12-27.693-31.12-46.197 0-30.955 24.376-40.649 24.376-40.649s-42.62-20.753-42.62-62.274c0-53.151 48.755-74.642 108.331-74.642 85.873 0 144.955 35.584 144.955 100.923 0 40.213-30.669 62.412-97.514 65.052-39.666 1.57-65.359 3.003-71.721 5.116-8.41 2.802-12.545 9.558-12.545 17.017 0 8.233 6.742 16.076 17.365 21.455 9.269-1.643 19.052-2.459 29.21-2.459 61.638 0 109.71 29.734 109.71 94.844 0 15.793-2.841 29.499-8.007 41.206 9.055 4.846 20.196 8.257 33.5 8.257v35.861z" horiz-adv-x="1232" />
</font></defs></svg>

Before

Width:  |  Height:  |  Size: 59 KiB

Binary file not shown.