Version Description
Download this release
Release Info
Developer | ataurr |
Plugin | Metform Elementor Contact Form Builder – Flexible and Design-Friendly Contact Form builder plugin for WordPress |
Version | 1.2.2 |
Comparing to | |
See all releases |
Code changes from version 1.2.1 to 1.2.2
- base/common.php +33 -25
- base/shortcode.php +18 -12
- controls/assets/css/form-picker-inspactor.css +103 -2
- controls/assets/js/form-picker-editor.js +6 -0
- controls/form-editor-modal.php +1 -0
- controls/form-picker-modal.php +29 -2
- controls/form-picker-utils.php +6 -4
- core/admin/images/banner.png +0 -0
- core/admin/images/metform_logo.png +0 -0
- core/admin/views/settings.php +544 -134
- core/entries/action.php +56 -34
- core/entries/export.php +1 -0
- core/entries/form-data.php +35 -36
- core/entries/hooks.php +62 -59
- core/entries/map-el.php +1 -0
- core/entries/metform-shortcode.php +61 -0
- core/forms/action.php +14 -1
- core/forms/builder.php +1 -1
- core/forms/cpt.php +3 -0
- core/forms/views/modal-editor.php +10 -2
- core/integrations/Mail_Adapter.php +18 -0
- core/integrations/Mail_Adapter_Contract.php +13 -0
- core/integrations/google-recaptcha.php +10 -9
- core/integrations/mail-chimp.php +2 -1
- core/integrations/provider/aweber/test +0 -0
- core/integrations/slack.php +2 -1
- metform.php +1 -1
- plugin.php +1 -2
- public/assets/css/admin-style.css +1 -1
- public/assets/css/style.css +17 -6
- public/assets/js/admin-entry-script.js +1 -1
- public/assets/js/admin-script.js +1 -1
- public/assets/js/inputs.js +1 -1
- public/assets/js/submission.js +1 -1
- readme.txt +24 -10
- templates/1/content.json +1 -1
- templates/1/preview-thumb.svg +273 -226
- templates/10/preview-thumb.svg +300 -0
- templates/11/preview-thumb.svg +526 -0
- templates/12/preview-thumb.svg +885 -0
- templates/13/preview-thumb.svg +258 -0
- templates/14/preview-thumb.svg +320 -0
- templates/15/preview-thumb.svg +265 -0
- templates/16/preview-thumb.svg +365 -0
- templates/17/preview-thumb.svg +414 -0
- templates/18/preview-thumb.svg +383 -0
- templates/19/preview-thumb.svg +376 -0
- templates/2/content.json +1 -1
- templates/2/preview-thumb.svg +331 -331
- templates/20/preview-thumb.svg +302 -0
- templates/21/preview-thumb.svg +337 -0
- templates/22/preview-thumb.svg +463 -0
- templates/23/preview-thumb.svg +19 -0
- templates/24/preview-thumb.svg +19 -0
- templates/25/preview-thumb.svg +69 -0
- templates/26/preview-thumb.svg +30 -0
- templates/27/preview-thumb.svg +35 -0
- templates/28/preview-thumb.svg +150 -0
- templates/29/preview-thumb.svg +33 -0
- templates/3/content.json +1 -1
- templates/3/preview-thumb.svg +225 -295
- templates/30/preview-thumb.svg +26 -0
base/common.php
CHANGED
@@ -1,29 +1,37 @@
|
|
1 |
<?php
|
2 |
namespace MetForm\Base;
|
3 |
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
}
|
1 |
<?php
|
2 |
namespace MetForm\Base;
|
3 |
|
4 |
+
defined('ABSPATH') || exit;
|
5 |
+
|
6 |
+
abstract class Common {
|
7 |
+
|
8 |
+
public function get_name() {
|
9 |
+
return null;
|
10 |
+
}
|
11 |
+
|
12 |
+
|
13 |
+
public function get_title() {
|
14 |
+
return $this->get_name();
|
15 |
+
}
|
16 |
+
|
17 |
+
|
18 |
+
public function get_dir() {
|
19 |
+
return dirname(__FILE__);
|
20 |
+
}
|
21 |
+
|
22 |
+
|
23 |
+
public function get_base() {
|
24 |
+
return str_replace(\MetForm\Plugin::instance()->plugin_dir(), '', $this->get_dir());
|
25 |
+
|
26 |
+
return $this->get_dir();
|
27 |
+
}
|
28 |
+
|
29 |
+
|
30 |
+
public function get_url() {
|
31 |
+
return \MetForm\Plugin::instance()->plugin_url() . $this->get_base();
|
32 |
+
}
|
33 |
+
|
34 |
+
|
35 |
+
public abstract function init();
|
36 |
+
|
37 |
}
|
base/shortcode.php
CHANGED
@@ -1,19 +1,25 @@
|
|
1 |
<?php
|
|
|
2 |
namespace MetForm\Base;
|
3 |
|
|
|
|
|
4 |
Class Shortcode {
|
5 |
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
|
|
|
|
|
|
18 |
|
19 |
}
|
1 |
<?php
|
2 |
+
|
3 |
namespace MetForm\Base;
|
4 |
|
5 |
+
defined('ABSPATH') || exit;
|
6 |
+
|
7 |
Class Shortcode {
|
8 |
|
9 |
+
use \MetForm\Traits\Singleton;
|
10 |
+
|
11 |
+
|
12 |
+
public function __construct() {
|
13 |
+
add_shortcode('metform', [$this, 'render_shortcode']);
|
14 |
+
}
|
15 |
+
|
16 |
+
|
17 |
+
public function render_shortcode($atts) {
|
18 |
+
$attributes = shortcode_atts(array(
|
19 |
+
'form_id' => 'test',
|
20 |
+
), $atts);
|
21 |
+
|
22 |
+
return '<div class="mf-form-shortcode">' . \MetForm\Utils\Util::render_form_content($attributes['form_id'], $attributes['form_id']) . '</div>';
|
23 |
+
}
|
24 |
|
25 |
}
|
controls/assets/css/form-picker-inspactor.css
CHANGED
@@ -99,6 +99,12 @@
|
|
99 |
border-radius: 5px;
|
100 |
text-align: center;
|
101 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
102 |
#metform-open-content-editor .metform-close-editor-modals {
|
103 |
color: #FF433C;
|
104 |
border: 2px solid #FF433C;
|
@@ -115,8 +121,9 @@
|
|
115 |
cursor: pointer;
|
116 |
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
|
117 |
}
|
118 |
-
.metform-open-content-editor-
|
119 |
-
|
|
|
120 |
}
|
121 |
.metform-editor-input{
|
122 |
height: 56px;
|
@@ -238,10 +245,96 @@
|
|
238 |
box-shadow: 0 15px 25px rgba(0, 0, 0, 0.07);
|
239 |
cursor: pointer;
|
240 |
height: 100%;
|
|
|
|
|
241 |
}
|
242 |
.metform-templates-list li input:checked + .metform-template-radio-data {
|
243 |
border: 1px solid #4285F4;
|
244 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
245 |
.metform-templates-list img {
|
246 |
max-width: 100%;
|
247 |
padding: 5px;
|
@@ -259,11 +352,19 @@
|
|
259 |
.metform-form-edit-btn:hover{
|
260 |
color: #4285F4;
|
261 |
}
|
|
|
|
|
|
|
|
|
262 |
.metform-form-edit-btn i{
|
263 |
margin-right: 5px;
|
264 |
font-size: 18px;
|
265 |
margin-top: -4px;
|
266 |
}
|
|
|
|
|
|
|
|
|
267 |
.metform-open-content-editor-templates {
|
268 |
-webkit-appearance: none;
|
269 |
-moz-appearance: none;
|
99 |
border-radius: 5px;
|
100 |
text-align: center;
|
101 |
}
|
102 |
+
.rtl .metform-open-content-inner {
|
103 |
+
direction: ltr;
|
104 |
+
left: auto;
|
105 |
+
right: 50%;
|
106 |
+
transform: translateX(50%);
|
107 |
+
}
|
108 |
#metform-open-content-editor .metform-close-editor-modals {
|
109 |
color: #FF433C;
|
110 |
border: 2px solid #FF433C;
|
121 |
cursor: pointer;
|
122 |
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
|
123 |
}
|
124 |
+
.rtl #metform-open-content-editor .metform-close-editor-modals {
|
125 |
+
left: -10px;
|
126 |
+
right: auto;
|
127 |
}
|
128 |
.metform-editor-input{
|
129 |
height: 56px;
|
245 |
box-shadow: 0 15px 25px rgba(0, 0, 0, 0.07);
|
246 |
cursor: pointer;
|
247 |
height: 100%;
|
248 |
+
position: relative;
|
249 |
+
flex-direction: column;
|
250 |
}
|
251 |
.metform-templates-list li input:checked + .metform-template-radio-data {
|
252 |
border: 1px solid #4285F4;
|
253 |
}
|
254 |
+
.metform-template-radio-data--pro_tag {
|
255 |
+
background: linear-gradient(45deg, rgba(255,107,17,1) 0%, rgba(255,50,77,1) 100%);
|
256 |
+
color: #fff;
|
257 |
+
padding: 3px 5px;
|
258 |
+
display: inline-block;
|
259 |
+
position: absolute;
|
260 |
+
right: 2px;
|
261 |
+
top: 2px;
|
262 |
+
text-transform: uppercase;
|
263 |
+
font-size: 10px;
|
264 |
+
border-radius: 3px;
|
265 |
+
text-align: center;
|
266 |
+
}
|
267 |
+
.metform-template-radio-data--demo_link {
|
268 |
+
position: absolute;
|
269 |
+
left: 0;
|
270 |
+
top: 0;
|
271 |
+
background-color: #4285F4;
|
272 |
+
color: #fff;
|
273 |
+
font-size: 12px;
|
274 |
+
border-bottom-right-radius: 5px;
|
275 |
+
padding: 5px 8px;
|
276 |
+
opacity: 0;
|
277 |
+
visibility: hidden;
|
278 |
+
transition: all .4s;
|
279 |
+
}
|
280 |
+
.metform-template-radio-data--demo_link:hover{
|
281 |
+
color: #fff;
|
282 |
+
}
|
283 |
+
.metform-template-radio-data:hover .metform-template-radio-data--demo_link{
|
284 |
+
opacity: 1;
|
285 |
+
visibility: visible;
|
286 |
+
}
|
287 |
+
.metform-template-item--go_pro .metform-template-radio-data{
|
288 |
+
cursor: default;
|
289 |
+
}
|
290 |
+
.metform-template-footer-content {
|
291 |
+
align-self: normal;
|
292 |
+
padding: 10px;
|
293 |
+
min-height: 50px;
|
294 |
+
border-top: 1px solid rgba(204, 204, 204, .5);
|
295 |
+
justify-self: auto;
|
296 |
+
display: flex;
|
297 |
+
align-items: center;
|
298 |
+
}
|
299 |
+
.metform-template-footer-links a {
|
300 |
+
color: #4285F4;
|
301 |
+
font-size: 13px;
|
302 |
+
line-height: 15px;
|
303 |
+
}
|
304 |
+
.metform-template-footer-links--icon {
|
305 |
+
margin-right: 5px;
|
306 |
+
}
|
307 |
+
.metform-template-footer-title{
|
308 |
+
position: static;
|
309 |
+
opacity: 1;
|
310 |
+
visibility: visible;
|
311 |
+
transition: opacity 1s;
|
312 |
+
}
|
313 |
+
.metform-template-footer-title h2{
|
314 |
+
font-size: 13px;
|
315 |
+
text-align: left;
|
316 |
+
font-weight: 500;
|
317 |
+
color: #6d7882;
|
318 |
+
}
|
319 |
+
.metform-template-footer-links {
|
320 |
+
display: flex;
|
321 |
+
width: 100%;
|
322 |
+
justify-content: space-between;
|
323 |
+
opacity: 0;
|
324 |
+
visibility: hidden;
|
325 |
+
position: absolute;
|
326 |
+
transition: opacity .4s;;
|
327 |
+
}
|
328 |
+
.metform-template-radio-data:hover .metform-template-footer-links{
|
329 |
+
opacity: 1;
|
330 |
+
visibility: visible;
|
331 |
+
position: static;
|
332 |
+
}
|
333 |
+
.metform-template-radio-data:hover .metform-template-footer-title{
|
334 |
+
opacity: 0;
|
335 |
+
visibility: hidden;
|
336 |
+
position: absolute;
|
337 |
+
}
|
338 |
.metform-templates-list img {
|
339 |
max-width: 100%;
|
340 |
padding: 5px;
|
352 |
.metform-form-edit-btn:hover{
|
353 |
color: #4285F4;
|
354 |
}
|
355 |
+
.rtl .metform-form-edit-btn {
|
356 |
+
left: 60px;
|
357 |
+
right: auto;
|
358 |
+
}
|
359 |
.metform-form-edit-btn i{
|
360 |
margin-right: 5px;
|
361 |
font-size: 18px;
|
362 |
margin-top: -4px;
|
363 |
}
|
364 |
+
.rtl .metform-form-edit-btn > i {
|
365 |
+
margin-left: 5px;
|
366 |
+
margin-right: 0;
|
367 |
+
}
|
368 |
.metform-open-content-editor-templates {
|
369 |
-webkit-appearance: none;
|
370 |
-moz-appearance: none;
|
controls/assets/js/form-picker-editor.js
CHANGED
@@ -4,6 +4,12 @@
|
|
4 |
var ElementsKit_WidgetArea = {
|
5 |
init: function () {
|
6 |
elementor.hooks.addAction('frontend/element_ready/metform.default', function (scope) {
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
|
8 |
if(typeof window.parent.jQuery === 'undefined'){
|
9 |
return;
|
4 |
var ElementsKit_WidgetArea = {
|
5 |
init: function () {
|
6 |
elementor.hooks.addAction('frontend/element_ready/metform.default', function (scope) {
|
7 |
+
/*
|
8 |
+
* Checks if in the editor, if not stop the rest from executing
|
9 |
+
*/
|
10 |
+
if ( !elementor.config.environmentMode.edit ) {
|
11 |
+
return;
|
12 |
+
}
|
13 |
|
14 |
if(typeof window.parent.jQuery === 'undefined'){
|
15 |
return;
|
controls/form-editor-modal.php
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
<?php defined( 'ABSPATH' ) || exit; ?>
|
|
|
2 |
<div class="dialog-widget dialog-lightbox-widget dialog-type-buttons dialog-type-lightbox elementor-templates-modal metform-dynamic-content-modal column-title" id="elementor-template-form-picker-modal-container" style="display: none;">
|
3 |
<div class="dialog-widget-content dialog-lightbox-widget-content">
|
4 |
<div class="dialog-header dialog-lightbox-header">
|
1 |
<?php defined( 'ABSPATH' ) || exit; ?>
|
2 |
+
|
3 |
<div class="dialog-widget dialog-lightbox-widget dialog-type-buttons dialog-type-lightbox elementor-templates-modal metform-dynamic-content-modal column-title" id="elementor-template-form-picker-modal-container" style="display: none;">
|
4 |
<div class="dialog-widget-content dialog-lightbox-widget-content">
|
5 |
<div class="dialog-header dialog-lightbox-header">
|
controls/form-picker-modal.php
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
<div id="metform-open-content-editor" style="display:none;">
|
2 |
<div class="metform-open-content-inner">
|
3 |
<div class="metform-content">
|
@@ -44,11 +46,36 @@
|
|
44 |
</li>
|
45 |
|
46 |
<?php foreach(\MetForm\Templates\Base::instance()->get_templates() as $template): ?>
|
47 |
-
<li>
|
48 |
<label>
|
49 |
-
<input class="metform-template-radio" name="metform-editor-template" type="radio" value="<?php echo esc_attr($template['id']); ?>"
|
50 |
<div class="metform-template-radio-data">
|
51 |
<img src="<?php echo esc_url($template['preview-thumb']); ?>" alt="<?php echo esc_attr($template['title']) ?>">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
</div>
|
53 |
</label>
|
54 |
</li>
|
1 |
+
<?php defined('ABSPATH') || exit; ?>
|
2 |
+
|
3 |
<div id="metform-open-content-editor" style="display:none;">
|
4 |
<div class="metform-open-content-inner">
|
5 |
<div class="metform-content">
|
46 |
</li>
|
47 |
|
48 |
<?php foreach(\MetForm\Templates\Base::instance()->get_templates() as $template): ?>
|
49 |
+
<li class="metform-template-item<?php echo isset($template['package']) ? ' metform-template-item--' . esc_attr($template['package']) : ''; ?> <?php echo (isset($template['package']) && $template['file'] === '') ? ' metform-template-item--go_pro' : ''; ?>">
|
50 |
<label>
|
51 |
+
<input class="metform-template-radio" name="metform-editor-template" type="radio" value="<?php echo ($template['file'] != '') ? esc_attr($template['id']) : ''; ?>" <?php echo $template['file'] === '' ? 'disabled=disabled' : '' ?>>
|
52 |
<div class="metform-template-radio-data">
|
53 |
<img src="<?php echo esc_url($template['preview-thumb']); ?>" alt="<?php echo esc_attr($template['title']) ?>">
|
54 |
+
|
55 |
+
<?php if(isset($template['package']) && $template['package'] === 'pro') : ?>
|
56 |
+
<div class="metform-template-radio-data--tag">
|
57 |
+
<span class="metform-template-radio-data--pro_tag"><?php echo esc_html(ucfirst($template['package'])); ?></span>
|
58 |
+
</div>
|
59 |
+
<?php endif; ?>
|
60 |
+
|
61 |
+
<div class="metform-template-footer-content">
|
62 |
+
<?php if(isset($template['title']) && $template['title'] != '') : ?>
|
63 |
+
<div class="metform-template-footer-title">
|
64 |
+
<h2><?php echo esc_html($template['title']); ?></h2>
|
65 |
+
</div>
|
66 |
+
<?php endif; ?>
|
67 |
+
|
68 |
+
<div class="metform-template-footer-links">
|
69 |
+
<?php if(isset($template['package']) && $template['package'] === 'pro' && isset($template['file']) && $template['file'] == '') : ?>
|
70 |
+
<a target="_blank" href="https://products.wpmet.com/metform/pricing/" class="metform-template-footer-links--pro_tag"><i class="metform-template-footer-links--icon fas fa-external-link-square-alt"></i><?php echo esc_html__('Buy Pro'); ?></a>
|
71 |
+
<?php endif; ?>
|
72 |
+
|
73 |
+
<?php if(isset($template['demo-url']) && $template['demo-url'] != '') : ?>
|
74 |
+
<a target="_blank" class="metform-template-footer-links--demo_link" href="<?php echo esc_attr(ucfirst($template['demo-url'])); ?>"><i class="metform-template-footer-links--icon far fa-eye"></i><?php echo esc_html__('Demo', 'metform'); ?></a>
|
75 |
+
<?php endif; ?>
|
76 |
+
</div>
|
77 |
+
|
78 |
+
</div>
|
79 |
</div>
|
80 |
</label>
|
81 |
</li>
|
controls/form-picker-utils.php
CHANGED
@@ -27,10 +27,12 @@ class Form_Picker_Utils{
|
|
27 |
ob_start(); ?>
|
28 |
|
29 |
<div class="formpicker_warper formpicker_warper_editable" data-metform-formpicker-key="<?php echo esc_attr($extract_key); ?>" >
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
|
|
|
|
34 |
|
35 |
<div class="elementor-widget-container">
|
36 |
<?php
|
27 |
ob_start(); ?>
|
28 |
|
29 |
<div class="formpicker_warper formpicker_warper_editable" data-metform-formpicker-key="<?php echo esc_attr($extract_key); ?>" >
|
30 |
+
<?php if(\Elementor\Plugin::$instance->editor->is_edit_mode() == true) : ?>
|
31 |
+
<div class="formpicker_warper_edit" data-metform-formpicker-key="<?php echo esc_attr($extract_key); ?>" data-nonce="<?php echo wp_create_nonce('wp_rest');?>" resturl="<?php echo get_rest_url() ?>metform/v1/forms/templates/" >
|
32 |
+
<i class="metform-builder-edit" aria-hidden="true"></i>
|
33 |
+
<a href="#" class="elementor-screen-only" title="<?php esc_html_e('Edit Form Content', 'metform'); ?>"><?php esc_html_e('Edit', 'metform'); ?></a>
|
34 |
+
</div>
|
35 |
+
<?php endif; ?>
|
36 |
|
37 |
<div class="elementor-widget-container">
|
38 |
<?php
|
core/admin/images/banner.png
ADDED
Binary file
|
core/admin/images/metform_logo.png
ADDED
Binary file
|
core/admin/views/settings.php
CHANGED
@@ -1,162 +1,572 @@
|
|
1 |
<?php
|
|
|
|
|
2 |
$settings = \MetForm\Core\Admin\Base::instance()->get_settings_option();
|
3 |
?>
|
4 |
-
<div class="wrap">
|
5 |
-
<
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
<
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
<!-- General Tab -->
|
20 |
-
<div class="mf-settings-section" id="mf-general_options">
|
21 |
-
<div class="mf-settings-single-section">
|
22 |
-
<h3 class="mf-settings-single-section--title"><?php esc_html_e('reCaptcha', 'metform');?></h3>
|
23 |
-
<div class="attr-form-group">
|
24 |
-
<label class="mf-setting-label" for="captcha-method"><?php esc_html_e('Select version:', 'metform');?></label>
|
25 |
-
<select name="mf_recaptcha_version" class="mf-setting-input attr-form-control mf-recaptcha-version" id="captcha-method">
|
26 |
-
<option <?php echo esc_attr((isset($settings['mf_recaptcha_version']) && ($settings['mf_recaptcha_version'] == 'recaptcha-v2')) ? 'Selected' : ''); ?> value="recaptcha-v2"><?php esc_html_e('reCAPTCHA V2', 'metform');?></option>
|
27 |
-
<option <?php echo esc_attr((isset($settings['mf_recaptcha_version']) && ($settings['mf_recaptcha_version'] == 'recaptcha-v3')) ? 'Selected' : ''); ?> value="recaptcha-v3"><?php esc_html_e('reCAPTCHA V3', 'metform');?></option>
|
28 |
-
</select>
|
29 |
-
<p class="description"><?php esc_html_e('Select google reCaptcha version which one want to use.', 'metform');?></p>
|
30 |
</div>
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
</div>
|
44 |
</div>
|
45 |
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
</div>
|
52 |
-
|
53 |
-
|
54 |
-
<
|
55 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
56 |
</div>
|
|
|
|
|
57 |
</div>
|
58 |
</div>
|
59 |
|
60 |
</div>
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
<
|
68 |
-
|
69 |
-
|
70 |
-
<?php endif; ?>
|
71 |
-
</div>
|
72 |
-
<!-- ./End General Tab -->
|
73 |
-
|
74 |
-
<!-- Payment Tab -->
|
75 |
-
<div class="mf-settings-section" id="mf-payment_options">
|
76 |
-
<div class="mf-settings-single-section">
|
77 |
-
<?php if (class_exists('\MetForm_Pro\Core\Integrations\Payment\Paypal')): ?>
|
78 |
-
<h3 class="mf-settings-single-section--title"><?php esc_html_e('Paypal', 'metform');?></h3>
|
79 |
-
<div class="attr-form-group">
|
80 |
-
<label class="mf-setting-label"><?php esc_html_e('Paypal email:', 'metform');?></label>
|
81 |
-
<input type="email" name="mf_paypal_email" value="<?php echo esc_attr((isset($settings['mf_paypal_email'])) ? $settings['mf_paypal_email'] : ''); ?>" class="mf-setting-input mf-paypal-email attr-form-control" placeholder="<?php esc_html_e('Paypal email', 'metform');?>">
|
82 |
-
<p class="description"><?php esc_html_e('Enter here your paypal email. ', 'metform');?><a target="__blank" href="<?php echo esc_url('https://www.paypal.com/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform');?></a></p>
|
83 |
</div>
|
84 |
-
|
85 |
-
|
86 |
-
<
|
87 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
</div>
|
|
|
89 |
<div class="attr-form-group">
|
90 |
-
<
|
91 |
-
<
|
92 |
-
|
93 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
</div>
|
95 |
-
|
|
|
96 |
</div>
|
|
|
97 |
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
<
|
104 |
-
<
|
105 |
-
</div>
|
106 |
-
<div class="attr-form-group">
|
107 |
-
<label for="attr-input-label" class="mf-setting-label attr-input-label"><?php esc_html_e('Live publishiable key:', 'metform');?></label>
|
108 |
-
<input type="text" name="mf_stripe_live_publishiable_key" value="<?php echo esc_attr((isset($settings['mf_stripe_live_publishiable_key'])) ? $settings['mf_stripe_live_publishiable_key'] : ''); ?>" class="mf-setting-input mf-stripe-live-publishiable-key attr-form-control" placeholder="<?php esc_html_e('Stripe live publishiable key', 'metform');?>">
|
109 |
-
<p class="description"><?php esc_html_e('Enter here your stripe live publishiable key. ', 'metform');?><a target="__blank" href="<?php echo esc_url('https://stripe.com/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform');?></a></p>
|
110 |
</div>
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
115 |
</div>
|
116 |
<div class="attr-form-group">
|
117 |
-
<
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
</div>
|
134 |
</div>
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
<!-- ./End Payment Tab -->
|
139 |
-
|
140 |
-
<!-- Mail Integration Tab -->
|
141 |
-
<div class="mf-settings-section" id="mf-mail_integration">
|
142 |
-
<div class="mf-settings-single-section">
|
143 |
-
<h3 class="mf-settings-single-section--title"><?php esc_html_e('Campaign', 'metform');?></h3>
|
144 |
-
<?php if (class_exists('\MetForm\Core\Integrations\Mail_Chimp')): ?>
|
145 |
-
<div class="attr-form-group">
|
146 |
-
<label for="attr-input-label" class="mf-setting-label mf-setting-label attr-input-label"><?php esc_html_e('MailChimp API Key:', 'metform');?></label>
|
147 |
-
<input type="text" name="mf_mailchimp_api_key" value="<?php echo esc_attr((isset($settings['mf_mailchimp_api_key'])) ? $settings['mf_mailchimp_api_key'] : ''); ?>" class="mf-setting-input mf-mailchimp-api-key attr-form-control" placeholder="<?php esc_html_e('Mailchimp api key', 'metform');?>">
|
148 |
-
<p class="description"><?php esc_html_e('Enter here your Mailchimp api key. ', 'metform');?><a target="__blank" href="<?php echo esc_url('https://admin.mailchimp.com/'); ?>"><?php esc_html_e('Get API.', 'metform'); ?></a></p>
|
149 |
-
</div>
|
150 |
-
<?php endif;?>
|
151 |
</div>
|
152 |
-
|
153 |
-
<!-- ./End Mail Integration Tab -->
|
154 |
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
</form>
|
160 |
</div>
|
161 |
</div>
|
162 |
-
</div>
|
|
1 |
<?php
|
2 |
+
defined('ABSPATH') || exit;
|
3 |
+
|
4 |
$settings = \MetForm\Core\Admin\Base::instance()->get_settings_option();
|
5 |
?>
|
6 |
+
<div class="wrap mf-settings-dashboard">
|
7 |
+
<div class="attr-row">
|
8 |
+
<div class="attr-col-lg-3 attr-col-md-4">
|
9 |
+
<div class="mf_setting_logo">
|
10 |
+
<img src="<?php echo plugin_dir_url( __FILE__ ). '../images/metform_logo.png'; ?>">
|
11 |
+
</div>
|
12 |
+
<div class="mf-settings-tab">
|
13 |
+
<ul class="nav-tab-wrapper">
|
14 |
+
<li><a href="#" class="mf-setting-nav-link mf-setting-nav-hidden"></a></li>
|
15 |
+
|
16 |
+
<li>
|
17 |
+
<a href="#mf-dashboard_options" class="mf-setting-nav-link">
|
18 |
+
<div class="mf-setting-tab-content">
|
19 |
+
<span class="mf-setting-title"><?php echo esc_html__('Dashboard', 'metform'); ?></span>
|
20 |
+
<span class="mf-setting-subtitle"><?php echo esc_html__('All dashboard info here', 'metform'); ?></span>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
</div>
|
22 |
+
</a>
|
23 |
+
</li>
|
24 |
+
|
25 |
+
<li>
|
26 |
+
<a href="#mf-general_options" class="mf-setting-nav-link">
|
27 |
+
<div class="mf-setting-tab-content">
|
28 |
+
<span class="mf-setting-title"><?php echo esc_html__('General', 'metform'); ?></span>
|
29 |
+
<span class="mf-setting-subtitle"><?php echo esc_html__('All General info here', 'metform'); ?></span>
|
30 |
+
</div>
|
31 |
+
</a>
|
32 |
+
</li>
|
33 |
+
|
34 |
+
<?php if(class_exists('\MetForm_Pro\Core\Integrations\Payment\Paypal') || class_exists('\MetForm_Pro\Core\Integrations\Payment\Stripe')): ?>
|
35 |
+
<li>
|
36 |
+
<a href="#mf-payment_options" class="mf-setting-nav-link">
|
37 |
+
<div class="mf-setting-tab-content">
|
38 |
+
<span class="mf-setting-title"><?php echo esc_html__('Payment', 'metform'); ?></span>
|
39 |
+
<span class="mf-setting-subtitle"><?php echo esc_html__('All payment info here', 'metform'); ?></span>
|
40 |
+
</div>
|
41 |
+
</a>
|
42 |
+
</li>
|
43 |
+
<?php endif; ?>
|
44 |
+
<li>
|
45 |
+
<a href="#mf-newsletter_integration" class="mf-setting-nav-link">
|
46 |
+
<div class="mf-setting-tab-content">
|
47 |
+
<span class="mf-setting-title"><?php echo esc_html__('Newsletter Integration', 'metform'); ?></span>
|
48 |
+
<span class="mf-setting-subtitle"><?php echo esc_html__('All newsletter integration info here', 'metform'); ?></span>
|
49 |
+
</div>
|
50 |
+
</a>
|
51 |
+
</li>
|
52 |
+
<li><a href="#" class="mf-setting-nav-link mf-setting-nav-hidden"></a></li>
|
53 |
+
</ul>
|
54 |
+
</div>
|
55 |
+
</div>
|
56 |
+
|
57 |
+
<div class="attr-col-lg-9 attr-col-md-8">
|
58 |
+
<div class="metform-admin-container stuffbox">
|
59 |
+
<div class="attr-card-body metform-admin-container--body">
|
60 |
+
<form action="" method="post"
|
61 |
+
class="form-group mf-admin-input-text mf-admin-input-text--metform-license-key">
|
62 |
+
|
63 |
+
<!-- Dashboard Tab -->
|
64 |
+
<div class="mf-settings-section" id="mf-dashboard_options">
|
65 |
+
<div class="mf-settings-single-section">
|
66 |
+
<div class="mf-setting-header">
|
67 |
+
<h3 class="mf-settings-single-section--title"><?php esc_html_e('Dashboard', 'metform');?></h3>
|
68 |
+
<button type="submit" name="submit" id="submit" class="button button-primary"><span class="mf-admin-save-icon dashicons dashicons-yes-alt"></span><?php esc_attr_e('Save Changes', 'metform');?></button>
|
69 |
+
</div>
|
70 |
+
|
71 |
+
<div class="mf-setting-dashboard-banner">
|
72 |
+
<img src="<?php echo plugin_dir_url( __FILE__ ). '../images/banner.png'; ?>" class="ekit-admin-dashboard-banner">
|
73 |
+
<div class="mf-setting-dashboard-banner--content">
|
74 |
+
<h3><?php esc_html_e('Documentation', 'metform') ?></h3>
|
75 |
+
<p><?php esc_html_e('Get started by spending some time with the documentation to get familiar with ElementsKit. Build awesome websites for you or your clients with ease.', 'metform'); ?></p>
|
76 |
+
<a href="https://help.wpmet.com/docs-cat/metform/" class="mf-setting-btn-link" target="_blank"><?php esc_html_e('Documentation', 'metform'); ?></a>
|
77 |
</div>
|
78 |
</div>
|
79 |
|
80 |
+
</div>
|
81 |
+
</div>
|
82 |
+
|
83 |
+
<!-- General Tab -->
|
84 |
+
<div class="mf-settings-section" id="mf-general_options">
|
85 |
+
<div class="mf-settings-single-section">
|
86 |
+
<div class="mf-setting-header">
|
87 |
+
<h3 class="mf-settings-single-section--title"><?php esc_html_e('General', 'metform');?></h3>
|
88 |
+
<button type="submit" name="submit" id="submit" class="button button-primary"><span class="mf-admin-save-icon dashicons dashicons-yes-alt"></span><?php esc_attr_e('Save Changes', 'metform');?></button>
|
89 |
+
</div>
|
90 |
+
<div class="attr-form-group">
|
91 |
+
<div class="mf-setting-tab-nav">
|
92 |
+
<ul class="attr-nav attr-nav-tabs" id="nav-tab" role="attr-tablist">
|
93 |
+
<li class="attr-active attr-in">
|
94 |
+
<a class="attr-nav-item attr-nav-link" data-toggle="tab" href="#mf-recaptcha-tab" role="tab"><?php esc_attr_e('reCaptcha', 'metform'); ?></a>
|
95 |
+
</li>
|
96 |
+
|
97 |
+
<?php if (class_exists('\MetForm_Pro\Base\Package')): ?>
|
98 |
+
<li>
|
99 |
+
<a class="attr-nav-item attr-nav-link" data-toggle="tab" href="#mf-map-tab" role="tab" aria-controls="nav-profile" aria-selected="false"><?php esc_html_e('Map', 'metform'); ?></a>
|
100 |
+
</li>
|
101 |
+
<?php endif; ?>
|
102 |
+
</ul>
|
103 |
</div>
|
104 |
+
|
105 |
+
<div class="attr-tab-content" id="nav-tabContent">
|
106 |
+
<div class="attr-tab-pane attr-fade attr-active attr-in" id="mf-recaptcha-tab" role="tabpanel" aria-labelledby="nav-home-tab">
|
107 |
+
<div class="attr-row">
|
108 |
+
<div class="attr-col-lg-6">
|
109 |
+
<div class="mf-setting-input-group">
|
110 |
+
<label class="mf-setting-label"
|
111 |
+
for="captcha-method"><?php esc_html_e('Select version:', 'metform');?></label>
|
112 |
+
<div class="mf-setting-select-container">
|
113 |
+
<select name="mf_recaptcha_version"
|
114 |
+
class="mf-setting-input attr-form-control mf-recaptcha-version" id="captcha-method">
|
115 |
+
<option
|
116 |
+
<?php echo esc_attr((isset($settings['mf_recaptcha_version']) && ($settings['mf_recaptcha_version'] == 'recaptcha-v2')) ? 'Selected' : ''); ?>
|
117 |
+
value="recaptcha-v2"><?php esc_html_e('reCAPTCHA V2', 'metform');?></option>
|
118 |
+
<option
|
119 |
+
<?php echo esc_attr((isset($settings['mf_recaptcha_version']) && ($settings['mf_recaptcha_version'] == 'recaptcha-v3')) ? 'Selected' : ''); ?>
|
120 |
+
value="recaptcha-v3"><?php esc_html_e('reCAPTCHA V3', 'metform');?></option>
|
121 |
+
</select>
|
122 |
+
</div>
|
123 |
+
<p class="description">
|
124 |
+
<?php esc_html_e('Select google reCaptcha version which one want to use.', 'metform');?>
|
125 |
+
</p>
|
126 |
+
</div>
|
127 |
+
|
128 |
+
<div class="mf-recaptcha-settings-wrapper">
|
129 |
+
<div class="mf-recaptcha-settings" id="mf-recaptcha-v2">
|
130 |
+
<div class="mf-setting-input-group">
|
131 |
+
<label class="mf-setting-label"><?php esc_html_e('Site key:', 'metform');?> </label>
|
132 |
+
<input type="text" name="mf_recaptcha_site_key"
|
133 |
+
value="<?php echo esc_attr((isset($settings['mf_recaptcha_site_key'])) ? $settings['mf_recaptcha_site_key'] : ''); ?>"
|
134 |
+
class="mf-setting-input attr-form-control mf-recaptcha-site-key"
|
135 |
+
placeholder="<?php esc_html_e('Insert site key', 'metform');?>">
|
136 |
+
<p class="description">
|
137 |
+
<?php esc_html_e('Create google reCaptcha site key from reCaptcha admin panel. ', 'metform');?><a
|
138 |
+
target="__blank"
|
139 |
+
class="mf-setting-btn-link"
|
140 |
+
href="<?php echo esc_url('https://www.google.com/recaptcha/admin/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform');?></a>
|
141 |
+
</p>
|
142 |
+
</div>
|
143 |
+
<div class="mf-setting-input-group">
|
144 |
+
<label class="mf-setting-label"><?php esc_html_e('Secret key:', 'metform');?>
|
145 |
+
</label>
|
146 |
+
<input type="text" name="mf_recaptcha_secret_key"
|
147 |
+
value="<?php echo esc_attr((isset($settings['mf_recaptcha_secret_key'])) ? $settings['mf_recaptcha_secret_key'] : ''); ?>"
|
148 |
+
class="mf-setting-input attr-form-control mf-recaptcha-secret-key"
|
149 |
+
placeholder="<?php esc_html_e('Insert secret key', 'metform');?>">
|
150 |
+
<p class="description">
|
151 |
+
<?php esc_html_e('Create google reCaptcha secret key from reCaptcha admin panel. ', 'metform');?><a
|
152 |
+
target="__blank"
|
153 |
+
class="mf-setting-btn-link"
|
154 |
+
href="<?php echo esc_url('https://www.google.com/recaptcha/admin/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform');?></a>
|
155 |
+
</p>
|
156 |
+
</div>
|
157 |
+
</div>
|
158 |
+
|
159 |
+
<div class="mf-recaptcha-settings" id="mf-recaptcha-v3">
|
160 |
+
<div class="mf-setting-input-group">
|
161 |
+
<label class="mf-setting-label"><?php esc_html_e('Site key:', 'metform');?> </label>
|
162 |
+
<input type="text" name="mf_recaptcha_site_key_v3"
|
163 |
+
value="<?php echo esc_attr((isset($settings['mf_recaptcha_site_key_v3'])) ? $settings['mf_recaptcha_site_key_v3'] : ''); ?>"
|
164 |
+
class="mf-setting-input attr-form-control mf-recaptcha-site-key"
|
165 |
+
placeholder="<?php esc_html_e('Insert site key', 'metform');?>">
|
166 |
+
<p class="description">
|
167 |
+
<?php esc_html_e('Create google reCaptcha site key from reCaptcha admin panel. ', 'metform');?><a
|
168 |
+
target="__blank"
|
169 |
+
class="mf-setting-btn-link"
|
170 |
+
href="<?php echo esc_url('https://www.google.com/recaptcha/admin/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform');?></a>
|
171 |
+
</p>
|
172 |
+
</div>
|
173 |
+
<div class="mf-setting-input-group">
|
174 |
+
<label class="mf-setting-label"><?php esc_html_e('Secret key:', 'metform');?>
|
175 |
+
</label>
|
176 |
+
<input type="text" name="mf_recaptcha_secret_key_v3"
|
177 |
+
value="<?php echo esc_attr((isset($settings['mf_recaptcha_secret_key_v3'])) ? $settings['mf_recaptcha_secret_key_v3'] : ''); ?>"
|
178 |
+
class="mf-setting-input attr-form-control mf-recaptcha-secret-key"
|
179 |
+
placeholder="<?php esc_html_e('Insert secret key', 'metform');?>">
|
180 |
+
<p class="description">
|
181 |
+
<?php esc_html_e('Create google reCaptcha secret key from reCaptcha admin panel. ', 'metform');?><a
|
182 |
+
target="__blank"
|
183 |
+
class="mf-setting-btn-link"
|
184 |
+
href="<?php echo esc_url('https://www.google.com/recaptcha/admin/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform');?></a>
|
185 |
+
</p>
|
186 |
+
</div>
|
187 |
+
</div>
|
188 |
+
</div>
|
189 |
+
</div>
|
190 |
+
</div>
|
191 |
+
</div>
|
192 |
+
|
193 |
+
<?php if (class_exists('\MetForm_Pro\Base\Package')): ?>
|
194 |
+
<div class="attr-tab-pane attr-fade" id="mf-map-tab" role="tabpanel" aria-labelledby="nav-home-tab">
|
195 |
+
<div class="attr-row">
|
196 |
+
<div class="attr-col-lg-6">
|
197 |
+
<div class="mf-setting-input-group">
|
198 |
+
<label class="mf-setting-label"><?php esc_html_e('API:', 'metform');?> </label>
|
199 |
+
<input type="text" name="mf_google_map_api_key"
|
200 |
+
value="<?php echo esc_attr((isset($settings['mf_google_map_api_key'])) ? $settings['mf_google_map_api_key'] : ''); ?>"
|
201 |
+
class="mf-setting-input attr-form-control mf-google-map-api-key"
|
202 |
+
placeholder="<?php esc_html_e('Insert map api key', 'metform');?>">
|
203 |
+
<p class="description">
|
204 |
+
<?php esc_html_e('Create google map api key from google developer console. ', 'metform');?><a
|
205 |
+
target="__blank"
|
206 |
+
class="mf-setting-btn-link"
|
207 |
+
href="<?php echo esc_url('https://console.cloud.google.com/google/maps-apis/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform');?></a>
|
208 |
+
</p>
|
209 |
+
</div>
|
210 |
+
</div>
|
211 |
+
</div>
|
212 |
+
</div>
|
213 |
+
<?php endif; ?>
|
214 |
</div>
|
215 |
+
|
216 |
+
|
217 |
</div>
|
218 |
</div>
|
219 |
|
220 |
</div>
|
221 |
+
<!-- ./End General Tab -->
|
222 |
+
|
223 |
+
<!-- Payment Tab -->
|
224 |
+
<div class="mf-settings-section" id="mf-payment_options">
|
225 |
+
<div class="mf-settings-single-section">
|
226 |
+
<?php if (class_exists('\MetForm_Pro\Core\Integrations\Payment\Paypal')): ?>
|
227 |
+
<div class="mf-setting-header">
|
228 |
+
<h3 class="mf-settings-single-section--title"><?php esc_html_e('Payment', 'metform');?></h3>
|
229 |
+
<button type="submit" name="submit" id="submit" class="button button-primary"><span class="mf-admin-save-icon dashicons dashicons-yes-alt"></span><?php esc_attr_e('Save Changes', 'metform');?></button>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
230 |
</div>
|
231 |
+
|
232 |
+
<div class="mf-setting-tab-nav">
|
233 |
+
<ul class="attr-nav attr-nav-tabs" id="nav-tab" role="attr-tablist">
|
234 |
+
<li class="attr-active attr-in">
|
235 |
+
<a class="attr-nav-item attr-nav-link" data-toggle="tab" href="#mf-paypal-tab" role="tab"><?php esc_attr_e('Paypal', 'metform'); ?></a>
|
236 |
+
</li>
|
237 |
+
|
238 |
+
<?php if (class_exists('\MetForm_Pro\Core\Integrations\Payment\Stripe')): ?>
|
239 |
+
<li>
|
240 |
+
<a class="attr-nav-item attr-nav-link" data-toggle="tab" href="#attr-stripe-tab" role="tab" aria-controls="nav-profile" aria-selected="false"><?php esc_html_e('Stripe', 'metform'); ?></a>
|
241 |
+
</li>
|
242 |
+
<?php endif; ?>
|
243 |
+
</ul>
|
244 |
</div>
|
245 |
+
|
246 |
<div class="attr-form-group">
|
247 |
+
<div class="attr-tab-content" id="nav-tabContent">
|
248 |
+
<div class="attr-tab-pane attr-fade attr-active attr-in" id="mf-paypal-tab" role="tabpanel" aria-labelledby="nav-home-tab">
|
249 |
+
<div class="attr-row">
|
250 |
+
<div class="attr-col-lg-6">
|
251 |
+
<div class="mf-setting-input-group">
|
252 |
+
<label class="mf-setting-label"><?php esc_html_e('Paypal email:', 'metform');?></label>
|
253 |
+
<input type="email" name="mf_paypal_email"
|
254 |
+
value="<?php echo esc_attr((isset($settings['mf_paypal_email'])) ? $settings['mf_paypal_email'] : ''); ?>"
|
255 |
+
class="mf-setting-input mf-paypal-email attr-form-control"
|
256 |
+
placeholder="<?php esc_html_e('Paypal email', 'metform');?>">
|
257 |
+
<p class="description"><?php esc_html_e('Enter here your paypal email. ', 'metform');?><a class="mf-setting-btn-link"
|
258 |
+
target="__blank"
|
259 |
+
href="<?php echo esc_url('https://www.paypal.com/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform');?></a>
|
260 |
+
</p>
|
261 |
+
</div>
|
262 |
+
|
263 |
+
<div class="mf-setting-input-group">
|
264 |
+
<label class="mf-setting-label"><?php esc_html_e('Paypal token:', 'metform');?></label>
|
265 |
+
<input type="text" name="mf_paypal_token"
|
266 |
+
value="<?php echo esc_attr((isset($settings['mf_paypal_token'])) ? $settings['mf_paypal_token'] : ''); ?>"
|
267 |
+
class="mf-setting-input mf-paypal-token attr-form-control"
|
268 |
+
placeholder="<?php esc_html_e('Paypal token', 'metform');?>">
|
269 |
+
<p class="description">
|
270 |
+
<?php esc_html_e('Enter here your paypal token. This is optional. ', 'metform');?><a class="mf-setting-btn-link"
|
271 |
+
target="__blank"
|
272 |
+
href="<?php echo esc_url('https://www.paypal.com/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform');?></a>
|
273 |
+
</p>
|
274 |
+
</div>
|
275 |
+
|
276 |
+
<div class="mf-setting-input-group">
|
277 |
+
<label class="mf-setting-label"><?php esc_html_e('Enable sandbox mode:', 'metform');?>
|
278 |
+
<input type="checkbox" value="1" name="mf_paypal_sandbox"
|
279 |
+
<?php echo esc_attr((isset($settings['mf_paypal_sandbox'])) ? 'Checked' : ''); ?>
|
280 |
+
class="mf-admin-control-input mf-form-modalinput-paypal_sandbox">
|
281 |
+
<p class="description">
|
282 |
+
<?php esc_html_e('Enable this for testing payment method. ', 'metform');?></p>
|
283 |
+
</label>
|
284 |
+
</div>
|
285 |
+
</div>
|
286 |
+
</div>
|
287 |
+
</div>
|
288 |
+
|
289 |
+
<?php if (class_exists('\MetForm_Pro\Core\Integrations\Payment\Stripe')): ?>
|
290 |
+
<div class="attr-tab-pane attr-fade" id="attr-stripe-tab" role="tabpanel" aria-labelledby="nav-profile-tab">
|
291 |
+
<div class="attr-row">
|
292 |
+
<div class="attr-col-lg-6">
|
293 |
+
<div class="mf-setting-input-group">
|
294 |
+
<label for="attr-input-label"
|
295 |
+
class="mf-setting-label attr-input-label"><?php esc_html_e('Image url:', 'metform');?></label>
|
296 |
+
<input type="text" name="mf_stripe_image_url"
|
297 |
+
value="<?php echo esc_attr((isset($settings['mf_stripe_image_url'])) ? $settings['mf_stripe_image_url'] : ''); ?>"
|
298 |
+
class="mf-setting-input mf-stripe-image-url attr-form-control"
|
299 |
+
placeholder="<?php esc_html_e('Stripe image url', 'metform');?>">
|
300 |
+
<p class="description">
|
301 |
+
<?php esc_html_e('Enter here your stripe image url. This image will show on stripe payment pop up modal. ', 'metform');?>
|
302 |
+
</p>
|
303 |
+
</div>
|
304 |
+
|
305 |
+
<div class="mf-setting-input-group">
|
306 |
+
<label for="attr-input-label"
|
307 |
+
class="mf-setting-label attr-input-label"><?php esc_html_e('Live publishiable key:', 'metform');?></label>
|
308 |
+
<input type="text" name="mf_stripe_live_publishiable_key"
|
309 |
+
value="<?php echo esc_attr((isset($settings['mf_stripe_live_publishiable_key'])) ? $settings['mf_stripe_live_publishiable_key'] : ''); ?>"
|
310 |
+
class="mf-setting-input mf-stripe-live-publishiable-key attr-form-control"
|
311 |
+
placeholder="<?php esc_html_e('Stripe live publishiable key', 'metform');?>">
|
312 |
+
<p class="description">
|
313 |
+
<?php esc_html_e('Enter here your stripe live publishiable key. ', 'metform');?><a class="mf-setting-btn-link"
|
314 |
+
target="__blank"
|
315 |
+
href="<?php echo esc_url('https://stripe.com/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform');?></a>
|
316 |
+
</p>
|
317 |
+
</div>
|
318 |
+
|
319 |
+
<div class="mf-setting-input-group">
|
320 |
+
<label for="attr-input-label"
|
321 |
+
class="mf-setting-label attr-input-label"><?php esc_html_e('Live secret key:', 'metform');?></label>
|
322 |
+
<input type="text" name="mf_stripe_live_secret_key"
|
323 |
+
value="<?php echo esc_attr((isset($settings['mf_stripe_live_secret_key'])) ? $settings['mf_stripe_live_secret_key'] : ''); ?>"
|
324 |
+
class="mf-setting-input mf-stripe-live-secret-key attr-form-control"
|
325 |
+
placeholder="<?php esc_html_e('Stripe live secret key', 'metform');?>">
|
326 |
+
<p class="description">
|
327 |
+
<?php esc_html_e('Enter here your stripe live secret key. ', 'metform');?><a
|
328 |
+
target="__blank"
|
329 |
+
class="mf-setting-btn-link"
|
330 |
+
href="<?php echo esc_url('https://stripe.com/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform');?></a>
|
331 |
+
</p>
|
332 |
+
</div>
|
333 |
+
|
334 |
+
<div class="mf-setting-input-group">
|
335 |
+
<label class="mf-setting-label attr-input-label">
|
336 |
+
<?php esc_html_e('Enable sandbox mode:', 'metform');?>
|
337 |
+
<input type="checkbox" value="1" name="mf_stripe_sandbox"
|
338 |
+
<?php echo esc_attr((isset($settings['mf_stripe_sandbox'])) ? 'Checked' : ''); ?>
|
339 |
+
class="mf-admin-control-input mf-form-modalinput-stripe_sandbox">
|
340 |
+
<p class="description">
|
341 |
+
<?php esc_html_e('Enable this for testing your payment system. ', 'metform');?></p>
|
342 |
+
</label>
|
343 |
+
</div>
|
344 |
+
|
345 |
+
<div class="mf-form-modalinput-stripe_sandbox_keys">
|
346 |
+
<div class="mf-setting-input-group">
|
347 |
+
<label for="attr-input-label"
|
348 |
+
class="mf-setting-label attr-input-label"><?php esc_html_e('Test publishiable key:', 'metform');?></label>
|
349 |
+
<input type="text" name="mf_stripe_test_publishiable_key"
|
350 |
+
value="<?php echo esc_attr((isset($settings['mf_stripe_test_publishiable_key'])) ? $settings['mf_stripe_test_publishiable_key'] : ''); ?>"
|
351 |
+
class="mf-setting-input mf-stripe-test-publishiable-key attr-form-control"
|
352 |
+
placeholder="<?php esc_html_e('Stripe test publishiable key', 'metform');?>">
|
353 |
+
<p class="description">
|
354 |
+
<?php esc_html_e('Enter here your test publishiable key. ', 'metform');?><a class="mf-setting-btn-link"
|
355 |
+
target="__blank"
|
356 |
+
href="<?php echo esc_url('https://stripe.com/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform');?></a>
|
357 |
+
</p>
|
358 |
+
</div>
|
359 |
+
<div class="mf-setting-input-group">
|
360 |
+
<label for="attr-input-label"
|
361 |
+
class="mf-setting-label attr-input-label"><?php esc_html_e('Test secret key:', 'metform');?></label>
|
362 |
+
<input type="text" name="mf_stripe_test_secret_key"
|
363 |
+
value="<?php echo esc_attr((isset($settings['mf_stripe_test_secret_key'])) ? $settings['mf_stripe_test_secret_key'] : ''); ?>"
|
364 |
+
class="mf-setting-input mf-stripe-test-secret-key attr-form-control"
|
365 |
+
placeholder="<?php esc_html_e('Stripe test secret key', 'metform');?>">
|
366 |
+
<p class="description">
|
367 |
+
<?php esc_html_e('Enter here your test secret key. ', 'metform');?><a
|
368 |
+
target="__blank"
|
369 |
+
class="mf-setting-btn-link"
|
370 |
+
href="<?php echo esc_url('https://stripe.com/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform');?></a>
|
371 |
+
</p>
|
372 |
+
</div>
|
373 |
+
</div>
|
374 |
+
|
375 |
+
</div>
|
376 |
+
</div>
|
377 |
+
</div>
|
378 |
+
<?php endif; ?>
|
379 |
+
</div>
|
380 |
+
|
381 |
+
|
382 |
</div>
|
383 |
+
<?php endif;?>
|
384 |
+
</div>
|
385 |
</div>
|
386 |
+
<!-- ./End Payment Tab -->
|
387 |
|
388 |
+
<!-- newsletter Integration Tab -->
|
389 |
+
<div class="mf-settings-section" id="mf-newsletter_integration">
|
390 |
+
<div class="mf-settings-single-section">
|
391 |
+
<?php if (class_exists('\MetForm\Core\Integrations\Mail_Chimp')): ?>
|
392 |
+
<div class="mf-setting-header">
|
393 |
+
<h3 class="mf-settings-single-section--title"><?php esc_html_e('Newsletter Integration', 'metform');?></h3>
|
394 |
+
<button type="submit" name="submit" id="submit" class="button button-primary"><span class="mf-admin-save-icon dashicons dashicons-yes-alt"></span><?php esc_attr_e('Save Changes', 'metform');?></button>
|
|
|
|
|
|
|
|
|
|
|
395 |
</div>
|
396 |
+
|
397 |
+
|
398 |
+
<div class="mf-setting-tab-nav">
|
399 |
+
<ul class="attr-nav attr-nav-tabs" id="nav-tab" role="attr-tablist">
|
400 |
+
<li class="attr-active attr-in">
|
401 |
+
<a class="attr-nav-item attr-nav-link" data-toggle="tab" href="#mf-mailchimp-tab" role="tab"><?php esc_attr_e('MailChimp', 'metform'); ?></a>
|
402 |
+
</li>
|
403 |
+
|
404 |
+
<?php if(false) : ?>
|
405 |
+
<li>
|
406 |
+
<a class="attr-nav-item attr-nav-link" data-toggle="tab" href="#attr-aweber-tab" role="tab" aria-controls="nav-profile" aria-selected="false"><?php esc_html_e('Aweber', 'metform'); ?></a>
|
407 |
+
</li>
|
408 |
+
|
409 |
+
<li>
|
410 |
+
<a class="attr-nav-item attr-nav-link" data-toggle="tab" href="#attr-activeCampaign-tab" role="tab" aria-controls="nav-contact" aria-selected="false"><?php esc_html_e('ActiveCampaign', 'metform'); ?></a>
|
411 |
+
</li>
|
412 |
+
|
413 |
+
<li>
|
414 |
+
<a class="attr-nav-item attr-nav-link" data-toggle="tab" href="#attr-getresponse-tab" role="tab" aria-controls="nav-contact" aria-selected="false"><?php esc_html_e('Get Response', 'metform'); ?></a>
|
415 |
+
</li>
|
416 |
+
<?php endif; ?>
|
417 |
+
</ul>
|
418 |
</div>
|
419 |
<div class="attr-form-group">
|
420 |
+
<div class="attr-tab-content" id="nav-tabContent">
|
421 |
+
<div class="attr-tab-pane attr-fade attr-active attr-in" id="mf-mailchimp-tab" role="tabpanel" aria-labelledby="nav-home-tab">
|
422 |
+
<div class="attr-row">
|
423 |
+
<div class="attr-col-lg-6">
|
424 |
+
<div class="mf-setting-input-group">
|
425 |
+
<label for="attr-input-label"
|
426 |
+
class="mf-setting-label mf-setting-label attr-input-label"><?php esc_html_e('API Key:', 'metform');?></label>
|
427 |
+
<input type="text" name="mf_mailchimp_api_key"
|
428 |
+
value="<?php echo esc_attr((isset($settings['mf_mailchimp_api_key'])) ? $settings['mf_mailchimp_api_key'] : ''); ?>"
|
429 |
+
class="mf-setting-input mf-mailchimp-api-key attr-form-control"
|
430 |
+
placeholder="<?php esc_html_e('Mailchimp api key', 'metform');?>">
|
431 |
+
<p class="description">
|
432 |
+
<?php esc_html_e('Enter here your Mailchimp api key. ', 'metform');?><a target="__blank"
|
433 |
+
class="mf-setting-btn-link"
|
434 |
+
href="<?php echo esc_url('https://admin.mailchimp.com/'); ?>" ><?php esc_html_e('Get API.', 'metform'); ?></a>
|
435 |
+
</p>
|
436 |
+
</div>
|
437 |
+
</div>
|
438 |
+
<?php if(false) : ?>
|
439 |
+
<div class="attr-col-lg-6">
|
440 |
+
<div class="mf-setting-input-desc">
|
441 |
+
<div class="mf-setting-input-desc-data">
|
442 |
+
<h2 class="mf-setting-input-desc--title"><?php esc_html_e('How To', 'metfrom') ?></h2>
|
443 |
+
<p><?php esc_html_e('Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.', 'metform') ?></p>
|
444 |
+
<ol>
|
445 |
+
<li><?php esc_html_e('Item 1', 'metform') ?></li>
|
446 |
+
<li><?php esc_html_e('Item 2', 'metform') ?></li>
|
447 |
+
<li><?php esc_html_e('Item 3', 'metform') ?></li>
|
448 |
+
</ol>
|
449 |
+
</div>
|
450 |
+
<a href="https://help.wpmet.com/docs-cat/metform/" class="mf-setting-btn-link" target="_blank"><?php esc_html_e('View Documentation', 'metform'); ?></a>
|
451 |
+
</div>
|
452 |
+
</div>
|
453 |
+
<?php endif; ?>
|
454 |
+
</div>
|
455 |
+
</div>
|
456 |
+
|
457 |
+
<?php if(false) : ?>
|
458 |
+
<div class="attr-tab-pane attr-fade" id="attr-aweber-tab" role="tabpanel" aria-labelledby="nav-profile-tab">
|
459 |
+
<div class="attr-row">
|
460 |
+
<div class="attr-col-lg-6">
|
461 |
+
<div class="mf-setting-input-group">
|
462 |
+
<label for="attr-input-label"
|
463 |
+
class="mf-setting-label mf-setting-label attr-input-label"><?php esc_html_e('API Key:', 'metform');?></label>
|
464 |
+
<input type="text" name="mf_mailchimp_api_key"
|
465 |
+
value="<?php echo esc_attr((isset($settings['mf_mailchimp_api_key'])) ? $settings['mf_mailchimp_api_key'] : ''); ?>"
|
466 |
+
class="mf-setting-input mf-mailchimp-api-key attr-form-control"
|
467 |
+
placeholder="<?php esc_html_e('Mailchimp api key', 'metform');?>">
|
468 |
+
<p class="description">
|
469 |
+
<?php esc_html_e('Enter here your Mailchimp api key. ', 'metform');?><a target="__blank"
|
470 |
+
href="<?php echo esc_url('https://admin.mailchimp.com/'); ?>"><?php esc_html_e('Get API.', 'metform'); ?></a>
|
471 |
+
</p>
|
472 |
+
</div>
|
473 |
+
</div>
|
474 |
+
<div class="attr-col-lg-6">
|
475 |
+
<div class="mf-setting-input-desc">
|
476 |
+
<div class="mf-setting-input-desc-data">
|
477 |
+
<h2 class="mf-setting-input-desc--title"><?php esc_html_e('How To', 'metfrom') ?></h2>
|
478 |
+
<p><?php esc_html_e('Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.', 'metform') ?></p>
|
479 |
+
<ol>
|
480 |
+
<li><?php esc_html_e('Item 1', 'metform') ?></li>
|
481 |
+
<li><?php esc_html_e('Item 2', 'metform') ?></li>
|
482 |
+
<li><?php esc_html_e('Item 3', 'metform') ?></li>
|
483 |
+
</ol>
|
484 |
+
</div>
|
485 |
+
<a href="https://help.wpmet.com/docs-cat/metform/" class="mf-setting-btn-link" target="_blank"><?php esc_html_e('View Documentation', 'metform'); ?></a>
|
486 |
+
</div>
|
487 |
+
</div>
|
488 |
+
</div>
|
489 |
+
</div>
|
490 |
+
|
491 |
+
<div class="attr-tab-pane attr-fade" id="attr-activeCampaign-tab" role="tabpanel" aria-labelledby="nav-contact-tab">
|
492 |
+
<div class="attr-row">
|
493 |
+
<div class="attr-col-lg-6">
|
494 |
+
<div class="mf-setting-input-group">
|
495 |
+
<label for="attr-input-label"
|
496 |
+
class="mf-setting-label mf-setting-label attr-input-label"><?php esc_html_e('API Key:', 'metform');?></label>
|
497 |
+
<input type="text" name="mf_mailchimp_api_key"
|
498 |
+
value="<?php echo esc_attr((isset($settings['mf_mailchimp_api_key'])) ? $settings['mf_mailchimp_api_key'] : ''); ?>"
|
499 |
+
class="mf-setting-input mf-mailchimp-api-key attr-form-control"
|
500 |
+
placeholder="<?php esc_html_e('Mailchimp api key', 'metform');?>">
|
501 |
+
<p class="description">
|
502 |
+
<?php esc_html_e('Enter here your Mailchimp api key. ', 'metform');?><a target="__blank"
|
503 |
+
href="<?php echo esc_url('https://admin.mailchimp.com/'); ?>"><?php esc_html_e('Get API.', 'metform'); ?></a>
|
504 |
+
</p>
|
505 |
+
</div>
|
506 |
+
</div>
|
507 |
+
<div class="attr-col-lg-6">
|
508 |
+
<div class="mf-setting-input-desc">
|
509 |
+
<div class="mf-setting-input-desc-data">
|
510 |
+
<h2 class="mf-setting-input-desc--title"><?php esc_html_e('How To', 'metfrom') ?></h2>
|
511 |
+
<p><?php esc_html_e('Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.', 'metform') ?></p>
|
512 |
+
<ol>
|
513 |
+
<li><?php esc_html_e('Item 1', 'metform') ?></li>
|
514 |
+
<li><?php esc_html_e('Item 2', 'metform') ?></li>
|
515 |
+
<li><?php esc_html_e('Item 3', 'metform') ?></li>
|
516 |
+
</ol>
|
517 |
+
</div>
|
518 |
+
<a href="https://help.wpmet.com/docs-cat/metform/" class="mf-setting-btn-link" target="_blank"><?php esc_html_e('View Documentation', 'metform'); ?></a>
|
519 |
+
</div>
|
520 |
+
</div>
|
521 |
+
</div>
|
522 |
+
</div>
|
523 |
+
|
524 |
+
<div class="attr-tab-pane attr-fade" id="attr-getresponse-tab" role="tabpanel" aria-labelledby="nav-contact-tab">
|
525 |
+
<div class="attr-row">
|
526 |
+
<div class="attr-col-lg-6">
|
527 |
+
<div class="mf-setting-input-group">
|
528 |
+
<label for="attr-input-label"
|
529 |
+
class="mf-setting-label mf-setting-label attr-input-label"><?php esc_html_e('API Key:', 'metform');?></label>
|
530 |
+
<input type="text" name="mf_mailchimp_api_key"
|
531 |
+
value="<?php echo esc_attr((isset($settings['mf_mailchimp_api_key'])) ? $settings['mf_mailchimp_api_key'] : ''); ?>"
|
532 |
+
class="mf-setting-input mf-mailchimp-api-key attr-form-control"
|
533 |
+
placeholder="<?php esc_html_e('Mailchimp api key', 'metform');?>">
|
534 |
+
<p class="description">
|
535 |
+
<?php esc_html_e('Enter here your Mailchimp api key. ', 'metform');?><a target="__blank"
|
536 |
+
href="<?php echo esc_url('https://admin.mailchimp.com/'); ?>"><?php esc_html_e('Get API.', 'metform'); ?></a>
|
537 |
+
</p>
|
538 |
+
</div>
|
539 |
+
</div>
|
540 |
+
<div class="attr-col-lg-6">
|
541 |
+
<div class="mf-setting-input-desc">
|
542 |
+
<div class="mf-setting-input-desc-data">
|
543 |
+
<h2 class="mf-setting-input-desc--title"><?php esc_html_e('How To', 'metfrom') ?></h2>
|
544 |
+
<p><?php esc_html_e('Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.', 'metform') ?></p>
|
545 |
+
<ol>
|
546 |
+
<li><?php esc_html_e('Item 1', 'metform') ?></li>
|
547 |
+
<li><?php esc_html_e('Item 2', 'metform') ?></li>
|
548 |
+
<li><?php esc_html_e('Item 3', 'metform') ?></li>
|
549 |
+
</ol>
|
550 |
+
</div>
|
551 |
+
<a href="https://help.wpmet.com/docs-cat/metform/" class="mf-setting-btn-link" target="_blank"><?php esc_html_e('View Documentation', 'metform'); ?></a>
|
552 |
+
</div>
|
553 |
+
</div>
|
554 |
+
</div>
|
555 |
+
</div>
|
556 |
+
<?php endif; ?>
|
557 |
</div>
|
558 |
</div>
|
559 |
+
<!-- <hr class="mf-setting-separator"> -->
|
560 |
+
<?php endif;?>
|
561 |
+
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
562 |
</div>
|
563 |
+
<!-- ./End Mail Integration Tab -->
|
|
|
564 |
|
565 |
+
<input type="hidden" name="mf_settings_page_action" value="save">
|
566 |
+
<?php wp_nonce_field('metform-settings-page', 'metform-settings-page');?>
|
567 |
+
</form>
|
568 |
+
</div>
|
|
|
569 |
</div>
|
570 |
</div>
|
571 |
+
</div>
|
572 |
+
</div>
|
core/entries/action.php
CHANGED
@@ -57,6 +57,7 @@ class Action
|
|
57 |
{
|
58 |
|
59 |
$this->form_id = $form_id;
|
|
|
60 |
//$this->form_settings = $this->get_form_settings($form_id);
|
61 |
$this->form_settings = \MetForm\Core\Forms\Action::instance()->get_all_data($form_id);
|
62 |
$this->fields = $this->get_fields($form_id);
|
@@ -64,6 +65,7 @@ class Action
|
|
64 |
$this->response->data['redirect_to'] = (!isset($this->form_settings['redirect_to'])) ? '' : $this->form_settings['redirect_to'];
|
65 |
$this->response->data['hide_form'] = (!isset($this->form_settings['hide_form_after_submission']) ? '' : $this->form_settings['hide_form_after_submission']);
|
66 |
$this->response->data['form_data'] = $form_data;
|
|
|
67 |
//$this->response->data['map_data'] = $this->fields;
|
68 |
|
69 |
$email_name = $this->get_input_name_by_widget_type('mf-email');
|
@@ -84,24 +86,24 @@ class Action
|
|
84 |
}
|
85 |
|
86 |
// google recaptcha condition and action
|
87 |
-
if ( (
|
88 |
-
if (isset($form_data['g-recaptcha-response'])
|
89 |
$this->response->status = 0;
|
90 |
$this->response->error[] = esc_html__('Please solve the recaptcha.', 'metform');
|
91 |
return $this->response;
|
92 |
}
|
93 |
|
94 |
-
if (isset($form_data['g-recaptcha-response-v3'])
|
95 |
$this->response->status = 0;
|
96 |
$this->response->error[] = esc_html__('Google captcha token not found.', 'metform');
|
97 |
return $this->response;
|
98 |
}
|
99 |
|
100 |
-
if (isset($form_data['g-recaptcha-response'])) {
|
101 |
$response = \MetForm\Core\Integrations\Google_Recaptcha::instance()->verify_captcha_v2($form_data, $this->form_settings);
|
102 |
}
|
103 |
|
104 |
-
if (isset($form_data['g-recaptcha-response-v3'])) {
|
105 |
$response = \MetForm\Core\Integrations\Google_Recaptcha::instance()->verify_captcha_v3($form_data, $this->form_settings);
|
106 |
}
|
107 |
|
@@ -255,8 +257,30 @@ class Action
|
|
255 |
$this->upload_file($file_data, $file_input_names);
|
256 |
}
|
257 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
258 |
// Store data in database
|
259 |
-
$this->store($form_id, $form_data);
|
260 |
|
261 |
// data submit to a rest api check and action
|
262 |
if (class_exists('\MetForm_Pro\Core\Integrations\Rest_Api') && isset($this->form_settings['mf_rest_api']) && ($this->form_settings['mf_rest_api_url'] != '')) {
|
@@ -381,19 +405,13 @@ class Action
|
|
381 |
return (($errors > 0) ? false : true);
|
382 |
}
|
383 |
|
384 |
-
public function store($form_id, $form_data
|
385 |
{
|
386 |
-
|
387 |
$this->form_id = $form_id;
|
388 |
-
|
389 |
-
$this->entry_id = $entry_id;
|
390 |
|
391 |
if (isset($this->form_settings['store_entries']) && $this->form_settings['store_entries'] == 1) {
|
392 |
-
|
393 |
-
$this->insert();
|
394 |
-
} else {
|
395 |
-
$this->update();
|
396 |
-
}
|
397 |
}
|
398 |
}
|
399 |
|
@@ -403,25 +421,18 @@ class Action
|
|
403 |
$form_settings = $this->form_settings;
|
404 |
$form_id = $this->form_id;
|
405 |
|
406 |
-
$this->
|
407 |
|
408 |
-
$
|
409 |
-
'
|
|
|
410 |
'post_status' => 'publish',
|
411 |
'post_content' => '',
|
412 |
-
'post_type' => $this->post_type,
|
413 |
);
|
414 |
|
415 |
-
$this->entry_id = wp_insert_post($defaults);
|
416 |
-
|
417 |
-
$update = [
|
418 |
-
'ID' => $this->entry_id,
|
419 |
-
'post_title' => 'Entry # ' . $this->entry_id,
|
420 |
-
];
|
421 |
wp_update_post($update);
|
422 |
|
423 |
$this->response->data['form_id'] = $form_id;
|
424 |
-
//$this->response->data['form_settings'] = $form_settings;
|
425 |
|
426 |
$entry_count = $this->get_entry_count();
|
427 |
$entry_count++;
|
@@ -457,9 +468,14 @@ class Action
|
|
457 |
$subject = isset($this->form_settings['user_email_subject']) ? $this->form_settings['user_email_subject'] : get_bloginfo('name');
|
458 |
$from = isset($this->form_settings['user_email_from']) ? $this->form_settings['user_email_from'] : null;
|
459 |
$reply_to = isset($this->form_settings['user_email_reply_to']) ? $this->form_settings['user_email_reply_to'] : null;
|
460 |
-
$body = isset($this->form_settings['user_email_body']) ? $this->form_settings['user_email_body'] : null;
|
461 |
$user_email_attached_submision_copy = isset($this->form_settings['user_email_attach_submission_copy']) ? $this->form_settings['user_email_attach_submission_copy'] : null;
|
462 |
|
|
|
|
|
|
|
|
|
|
|
463 |
$body = "<html><body><h2 style='text-align: center;'>".get_the_title($this->form_id)."</h2><h4 style='text-align: center;'>" . $body . "</h4>";
|
464 |
$form_html = \MetForm\Core\Entries\Form_Data::format_data_for_mail($this->form_id, $form_data, $file_info);
|
465 |
$body .= $form_html . "</body></html>";
|
@@ -486,12 +502,23 @@ class Action
|
|
486 |
$subject = isset($this->form_settings['admin_email_subject']) ? $this->form_settings['admin_email_subject'] : null;
|
487 |
$from = isset($this->form_settings['admin_email_from']) ? $this->form_settings['admin_email_from'] : null;
|
488 |
$reply_to = isset($this->form_settings['admin_email_reply_to']) ? $this->form_settings['admin_email_reply_to'] : null;
|
489 |
-
$body = isset($this->form_settings['admin_email_body']) ? $this->form_settings['admin_email_body'] : null;
|
490 |
$admin_email_attached_submision_copy = isset($this->form_settings['admin_email_attach_submission_copy']) ? $this->form_settings['admin_email_attach_submission_copy'] : null;
|
491 |
|
|
|
|
|
|
|
|
|
|
|
|
|
492 |
$body = "<html><body><h2 style='text-align: center;'>".get_the_title($this->form_id)."</h2><h4 style='text-align: center;'>" . $body . "</h4>";
|
493 |
$form_html = \MetForm\Core\Entries\Form_Data::format_data_for_mail($this->form_id, $form_data, $file_info);
|
494 |
-
|
|
|
|
|
|
|
|
|
|
|
495 |
|
496 |
$headers = 'MIME-Version: 1.0' . "\r\n";
|
497 |
$headers .= 'Content-type: text/html; charset=UTF-8' . "\r\n";
|
@@ -578,7 +605,6 @@ class Action
|
|
578 |
}
|
579 |
}
|
580 |
|
581 |
-
//$this->response->data['file_upload_info'] = $this->file_upload_info;
|
582 |
}
|
583 |
|
584 |
public function covert_base64_to_png($input, $b64string)
|
@@ -651,10 +677,6 @@ class Action
|
|
651 |
];
|
652 |
}
|
653 |
|
654 |
-
// public function get_form_settings($form_id){
|
655 |
-
// return get_post_meta($form_id, $this->key_form_settings, true);
|
656 |
-
// }
|
657 |
-
|
658 |
public function get_input_name_by_widget_type($widget_type, $fields = null)
|
659 |
{
|
660 |
global $w;
|
57 |
{
|
58 |
|
59 |
$this->form_id = $form_id;
|
60 |
+
$this->title = get_the_title($this->form_id);
|
61 |
//$this->form_settings = $this->get_form_settings($form_id);
|
62 |
$this->form_settings = \MetForm\Core\Forms\Action::instance()->get_all_data($form_id);
|
63 |
$this->fields = $this->get_fields($form_id);
|
65 |
$this->response->data['redirect_to'] = (!isset($this->form_settings['redirect_to'])) ? '' : $this->form_settings['redirect_to'];
|
66 |
$this->response->data['hide_form'] = (!isset($this->form_settings['hide_form_after_submission']) ? '' : $this->form_settings['hide_form_after_submission']);
|
67 |
$this->response->data['form_data'] = $form_data;
|
68 |
+
//$this->response->data['form_setting'] = $this->form_settings;
|
69 |
//$this->response->data['map_data'] = $this->fields;
|
70 |
|
71 |
$email_name = $this->get_input_name_by_widget_type('mf-email');
|
86 |
}
|
87 |
|
88 |
// google recaptcha condition and action
|
89 |
+
if ( array_key_exists('mf-recaptcha', $this->fields) && ( ($this->form_settings['mf_recaptcha_site_key'] != '') || ($this->form_settings['mf_recaptcha_site_key_v3'] != '') ) ) {
|
90 |
+
if ( (isset($this->form_settings['mf_recaptcha_version']) && ($this->form_settings['mf_recaptcha_version'] == 'recaptcha-v2') ) && ( !isset($form_data['g-recaptcha-response']) || ($form_data['g-recaptcha-response'] == "") ) ) {
|
91 |
$this->response->status = 0;
|
92 |
$this->response->error[] = esc_html__('Please solve the recaptcha.', 'metform');
|
93 |
return $this->response;
|
94 |
}
|
95 |
|
96 |
+
if ( (isset($this->form_settings['mf_recaptcha_version']) && ($this->form_settings['mf_recaptcha_version'] == 'recaptcha-v3') ) && ( !isset($form_data['g-recaptcha-response-v3']) || ($form_data['g-recaptcha-response-v3'] == "") ) ) {
|
97 |
$this->response->status = 0;
|
98 |
$this->response->error[] = esc_html__('Google captcha token not found.', 'metform');
|
99 |
return $this->response;
|
100 |
}
|
101 |
|
102 |
+
if ( (isset($this->form_settings['mf_recaptcha_version']) && ($this->form_settings['mf_recaptcha_version'] == 'recaptcha-v2') ) && isset($form_data['g-recaptcha-response'])) {
|
103 |
$response = \MetForm\Core\Integrations\Google_Recaptcha::instance()->verify_captcha_v2($form_data, $this->form_settings);
|
104 |
}
|
105 |
|
106 |
+
if ( (isset($this->form_settings['mf_recaptcha_version']) && ($this->form_settings['mf_recaptcha_version'] == 'recaptcha-v3') ) && isset($form_data['g-recaptcha-response-v3'])) {
|
107 |
$response = \MetForm\Core\Integrations\Google_Recaptcha::instance()->verify_captcha_v3($form_data, $this->form_settings);
|
108 |
}
|
109 |
|
257 |
$this->upload_file($file_data, $file_input_names);
|
258 |
}
|
259 |
|
260 |
+
// sanitize form submitted data
|
261 |
+
$this->sanitize($form_data);
|
262 |
+
|
263 |
+
//set submitted data array and key to a class
|
264 |
+
$all_data = !empty($this->form_data) && is_array($this->form_data) ? $this->form_data : [];
|
265 |
+
|
266 |
+
if(isset($this->form_settings['store_entries']) && $this->form_settings['store_entries'] == 1){
|
267 |
+
|
268 |
+
$defaults = [
|
269 |
+
'post_title' => '',
|
270 |
+
'post_status' => 'draft',
|
271 |
+
'post_content' => '',
|
272 |
+
'post_type' => $this->post_type,
|
273 |
+
];
|
274 |
+
|
275 |
+
$this->entry_id = wp_insert_post($defaults);
|
276 |
+
|
277 |
+
$all_data = array_merge($all_data, [ 'mf_id' => $this->entry_id, 'mf_form_name' => $this->title]);
|
278 |
+
}
|
279 |
+
|
280 |
+
Metform_Shortcode::instance()->set_values($all_data);
|
281 |
+
|
282 |
// Store data in database
|
283 |
+
$this->store($form_id, $this->form_data);
|
284 |
|
285 |
// data submit to a rest api check and action
|
286 |
if (class_exists('\MetForm_Pro\Core\Integrations\Rest_Api') && isset($this->form_settings['mf_rest_api']) && ($this->form_settings['mf_rest_api_url'] != '')) {
|
405 |
return (($errors > 0) ? false : true);
|
406 |
}
|
407 |
|
408 |
+
public function store($form_id, $form_data)
|
409 |
{
|
|
|
410 |
$this->form_id = $form_id;
|
411 |
+
//$this->sanitize($form_data);
|
|
|
412 |
|
413 |
if (isset($this->form_settings['store_entries']) && $this->form_settings['store_entries'] == 1) {
|
414 |
+
$this->insert();
|
|
|
|
|
|
|
|
|
415 |
}
|
416 |
}
|
417 |
|
421 |
$form_settings = $this->form_settings;
|
422 |
$form_id = $this->form_id;
|
423 |
|
424 |
+
$this->form_settings['entry_title'] = ( isset($this->form_settings['entry_title']) ? $this->form_settings['entry_title'] : 'Entry # [mf_id]');
|
425 |
|
426 |
+
$update = array(
|
427 |
+
'ID' => $this->entry_id,
|
428 |
+
'post_title' => Metform_Shortcode::instance()->get_process_shortcode($this->form_settings['entry_title']),
|
429 |
'post_status' => 'publish',
|
430 |
'post_content' => '',
|
|
|
431 |
);
|
432 |
|
|
|
|
|
|
|
|
|
|
|
|
|
433 |
wp_update_post($update);
|
434 |
|
435 |
$this->response->data['form_id'] = $form_id;
|
|
|
436 |
|
437 |
$entry_count = $this->get_entry_count();
|
438 |
$entry_count++;
|
468 |
$subject = isset($this->form_settings['user_email_subject']) ? $this->form_settings['user_email_subject'] : get_bloginfo('name');
|
469 |
$from = isset($this->form_settings['user_email_from']) ? $this->form_settings['user_email_from'] : null;
|
470 |
$reply_to = isset($this->form_settings['user_email_reply_to']) ? $this->form_settings['user_email_reply_to'] : null;
|
471 |
+
$body = nl2br(isset($this->form_settings['user_email_body']) ? $this->form_settings['user_email_body'] : null);
|
472 |
$user_email_attached_submision_copy = isset($this->form_settings['user_email_attach_submission_copy']) ? $this->form_settings['user_email_attach_submission_copy'] : null;
|
473 |
|
474 |
+
//replace data from shortcode
|
475 |
+
$body = Metform_Shortcode::instance()->get_process_shortcode($body);
|
476 |
+
$reply_to = Metform_Shortcode::instance()->get_process_shortcode($reply_to);
|
477 |
+
$subject = Metform_Shortcode::instance()->get_process_shortcode($subject);
|
478 |
+
|
479 |
$body = "<html><body><h2 style='text-align: center;'>".get_the_title($this->form_id)."</h2><h4 style='text-align: center;'>" . $body . "</h4>";
|
480 |
$form_html = \MetForm\Core\Entries\Form_Data::format_data_for_mail($this->form_id, $form_data, $file_info);
|
481 |
$body .= $form_html . "</body></html>";
|
502 |
$subject = isset($this->form_settings['admin_email_subject']) ? $this->form_settings['admin_email_subject'] : null;
|
503 |
$from = isset($this->form_settings['admin_email_from']) ? $this->form_settings['admin_email_from'] : null;
|
504 |
$reply_to = isset($this->form_settings['admin_email_reply_to']) ? $this->form_settings['admin_email_reply_to'] : null;
|
505 |
+
$body = nl2br(isset($this->form_settings['admin_email_body']) ? $this->form_settings['admin_email_body'] : null);
|
506 |
$admin_email_attached_submision_copy = isset($this->form_settings['admin_email_attach_submission_copy']) ? $this->form_settings['admin_email_attach_submission_copy'] : null;
|
507 |
|
508 |
+
//replace data from shortcode
|
509 |
+
$body = Metform_Shortcode::instance()->get_process_shortcode($body);
|
510 |
+
$from = Metform_Shortcode::instance()->get_process_shortcode($from);
|
511 |
+
$reply_to = Metform_Shortcode::instance()->get_process_shortcode($reply_to);
|
512 |
+
$subject = Metform_Shortcode::instance()->get_process_shortcode($subject);
|
513 |
+
|
514 |
$body = "<html><body><h2 style='text-align: center;'>".get_the_title($this->form_id)."</h2><h4 style='text-align: center;'>" . $body . "</h4>";
|
515 |
$form_html = \MetForm\Core\Entries\Form_Data::format_data_for_mail($this->form_id, $form_data, $file_info);
|
516 |
+
$body .= $form_html;
|
517 |
+
if(isset($this->form_settings['store_entries']) && $this->form_settings['store_entries'] == 1){
|
518 |
+
$edit_link = get_edit_post_link($this->entry_id);
|
519 |
+
$body .= '<a href="'.$edit_link.'">'.$edit_link.'</a>';
|
520 |
+
}
|
521 |
+
$body .= "</body></html>";
|
522 |
|
523 |
$headers = 'MIME-Version: 1.0' . "\r\n";
|
524 |
$headers .= 'Content-type: text/html; charset=UTF-8' . "\r\n";
|
605 |
}
|
606 |
}
|
607 |
|
|
|
608 |
}
|
609 |
|
610 |
public function covert_base64_to_png($input, $b64string)
|
677 |
];
|
678 |
}
|
679 |
|
|
|
|
|
|
|
|
|
680 |
public function get_input_name_by_widget_type($widget_type, $fields = null)
|
681 |
{
|
682 |
global $w;
|
core/entries/export.php
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
<?php
|
2 |
namespace MetForm\Core\Entries;
|
|
|
3 |
defined( 'ABSPATH' ) || exit;
|
4 |
|
5 |
Class Export{
|
1 |
<?php
|
2 |
namespace MetForm\Core\Entries;
|
3 |
+
|
4 |
defined( 'ABSPATH' ) || exit;
|
5 |
|
6 |
Class Export{
|
core/entries/form-data.php
CHANGED
@@ -17,48 +17,47 @@ class Form_Data
|
|
17 |
<table class='mf-entry-data' cellpadding="5" cellspacing="0">
|
18 |
<tbody>
|
19 |
<?php
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
}
|
25 |
-
|
26 |
-
echo "<tr class='mf-data-label'>";
|
27 |
-
echo "<td colspan='2'><strong>" . esc_html(($map_data[$key]['mf_input_label'] != '') ? $map_data[$key]['mf_input_label'] : $key) . "</strong></td>";
|
28 |
-
echo "</tr>";
|
29 |
-
echo "<tr class='mf-data-value'>";
|
30 |
-
echo "<td class='mf-value-space'> </td>";
|
31 |
-
|
32 |
-
if (!in_array($value['widgetType'], ['mf-file-upload', 'mf-simple-repeater', 'mf-signature', 'mf-like-dislike'])) {
|
33 |
-
echo "<td>" . esc_html((array_key_exists($key, $form_data) ? ((is_array($form_data[$key])) ? implode(', ', $form_data[$key]) : $form_data[$key]) : ' ')) . "</td>";
|
34 |
-
}
|
35 |
|
36 |
-
|
37 |
-
|
38 |
-
|
|
|
|
|
39 |
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
foreach ($repeater_data as $key => $value) {
|
44 |
-
echo "<strong>" . esc_html($key) . ": </strong>";
|
45 |
-
echo "<span>" . esc_html($value) . "</span>";
|
46 |
-
echo "<br>";
|
47 |
-
}
|
48 |
-
echo "</td>";
|
49 |
-
}
|
50 |
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
|
|
|
|
|
|
|
|
|
|
57 |
}
|
|
|
|
|
58 |
|
59 |
-
|
|
|
|
|
|
|
|
|
|
|
60 |
}
|
61 |
-
|
|
|
|
|
|
|
62 |
</tbody>
|
63 |
</table>
|
64 |
</div>
|
17 |
<table class='mf-entry-data' cellpadding="5" cellspacing="0">
|
18 |
<tbody>
|
19 |
<?php
|
20 |
+
foreach ($map_data as $key => $value) {
|
21 |
+
if (in_array($value['widgetType'], ['mf-simple-captcha', 'mf-recaptcha'])) {
|
22 |
+
continue;
|
23 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
|
25 |
+
echo "<tr class='mf-data-label'>";
|
26 |
+
echo "<td colspan='2'><strong>" . esc_html(($map_data[$key]['mf_input_label'] != '') ? $map_data[$key]['mf_input_label'] : $key) . "</strong></td>";
|
27 |
+
echo "</tr>";
|
28 |
+
echo "<tr class='mf-data-value'>";
|
29 |
+
echo "<td class='mf-value-space'> </td>";
|
30 |
|
31 |
+
if (!in_array($value['widgetType'], ['mf-file-upload', 'mf-simple-repeater', 'mf-signature', 'mf-like-dislike'])) {
|
32 |
+
echo "<td>" . esc_html((array_key_exists($key, $form_data) ? ((is_array($form_data[$key])) ? implode(', ', $form_data[$key]) : $form_data[$key]) : ' ')) . "</td>";
|
33 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
|
35 |
+
if ($value['widgetType'] == 'mf-signature') {
|
36 |
+
echo "<td><img class='signature-img' src='" . (isset($form_data[$key]) ? $form_data[$key] : '') . "'></td>";
|
37 |
+
}
|
38 |
+
|
39 |
+
if ($value['widgetType'] == 'mf-simple-repeater') {
|
40 |
+
echo "<td>";
|
41 |
+
$repeater_data = ((array_key_exists($key, $form_data)) ? $form_data[$key] : []);
|
42 |
+
foreach ($repeater_data as $k => $v) {
|
43 |
+
echo "<strong>" . esc_html($k) . ": </strong>";
|
44 |
+
echo "<span>" . esc_html($v) . "</span>";
|
45 |
+
echo "<br>";
|
46 |
}
|
47 |
+
echo "</td>";
|
48 |
+
}
|
49 |
|
50 |
+
if ($value['widgetType'] == 'mf-like-dislike') {
|
51 |
+
$like_dislike = (isset($form_data[$key]) ? $form_data[$key] : '');
|
52 |
+
echo "<td>";
|
53 |
+
echo (($like_dislike == '1') ? "<span class='dashicons dashicons-thumbs-up'></span>" : "");
|
54 |
+
echo (($like_dislike == '0') ? "<span class='dashicons dashicons-thumbs-down'></span>" : "");
|
55 |
+
echo "</td>";
|
56 |
}
|
57 |
+
|
58 |
+
echo "</tr>";
|
59 |
+
}
|
60 |
+
?>
|
61 |
</tbody>
|
62 |
</table>
|
63 |
</div>
|
core/entries/hooks.php
CHANGED
@@ -1,71 +1,74 @@
|
|
1 |
<?php
|
2 |
namespace MetForm\Core\Entries;
|
3 |
|
4 |
-
defined(
|
5 |
|
6 |
Class Hooks {
|
7 |
-
|
8 |
|
9 |
-
public function __construct(){
|
10 |
-
|
11 |
-
add_filter( 'manage_metform-entry_posts_columns', [ $this, 'set_columns' ] );
|
12 |
-
add_action( 'manage_metform-entry_posts_custom_column', [ $this, 'render_column' ], 10, 2 );
|
13 |
-
add_filter( 'parse_query', [ $this, 'query_filter' ] );
|
14 |
-
add_filter( 'wp_mail_from_name', [$this, 'wp_mail_from'] );
|
15 |
-
|
16 |
-
}
|
17 |
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
|
20 |
$date_column = $columns['date'];
|
21 |
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
$columns['date']
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
|
|
70 |
|
71 |
}
|
1 |
<?php
|
2 |
namespace MetForm\Core\Entries;
|
3 |
|
4 |
+
defined('ABSPATH') || exit;
|
5 |
|
6 |
Class Hooks {
|
7 |
+
use \MetForm\Traits\Singleton;
|
8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
|
10 |
+
public function __construct() {
|
11 |
+
|
12 |
+
add_filter('manage_metform-entry_posts_columns', [$this, 'set_columns']);
|
13 |
+
add_action('manage_metform-entry_posts_custom_column', [$this, 'render_column'], 10, 2);
|
14 |
+
add_filter('parse_query', [$this, 'query_filter']);
|
15 |
+
add_filter('wp_mail_from_name', [$this, 'wp_mail_from']);
|
16 |
+
|
17 |
+
}
|
18 |
+
|
19 |
+
|
20 |
+
public function set_columns($columns) {
|
21 |
|
22 |
$date_column = $columns['date'];
|
23 |
|
24 |
+
unset($columns['date']);
|
25 |
+
|
26 |
+
$columns['form_name'] = esc_html__('Form Name', 'metform');
|
27 |
+
|
28 |
+
$columns['date'] = esc_html($date_column);
|
29 |
+
|
30 |
+
return $columns;
|
31 |
+
}
|
32 |
+
|
33 |
+
|
34 |
+
public function render_column($column, $post_id) {
|
35 |
+
switch($column) {
|
36 |
+
case 'form_name':
|
37 |
+
$form_id = get_post_meta($post_id, 'metform_entries__form_id', true);
|
38 |
+
$form_name = get_post((int) $form_id);
|
39 |
+
$post_title = (isset($form_name->post_title) ? $form_name->post_title : '');
|
40 |
+
|
41 |
+
global $wp;
|
42 |
+
$current_url = add_query_arg($wp->query_string . "&form_id=" . $form_id, '', home_url($wp->request));
|
43 |
+
|
44 |
+
echo "<a data-metform-form-id=" . esc_attr($form_id) . " class='mf-entry-filter' href=" . esc_url($current_url) . ">" . esc_html($post_title) . "</a>";
|
45 |
+
break;
|
46 |
+
}
|
47 |
+
}
|
48 |
+
|
49 |
+
|
50 |
+
public function query_filter($query) {
|
51 |
+
global $pagenow;
|
52 |
+
$current_page = isset($_GET['post_type']) ? sanitize_key($_GET['post_type']) : '';
|
53 |
+
|
54 |
+
if(
|
55 |
+
is_admin()
|
56 |
+
&& 'metform-entry' == $current_page
|
57 |
+
&& 'edit.php' == $pagenow
|
58 |
+
&& $query->query_vars['post_type'] == 'metform-entry'
|
59 |
+
&& isset($_GET['form_id'])
|
60 |
+
&& $_GET['form_id'] != 'all'
|
61 |
+
) {
|
62 |
+
$form_id = sanitize_key($_GET['form_id']);
|
63 |
+
$query->query_vars['meta_key'] = 'metform_entries__form_id';
|
64 |
+
$query->query_vars['meta_value'] = $form_id;
|
65 |
+
$query->query_vars['meta_compare'] = '=';
|
66 |
+
}
|
67 |
+
}
|
68 |
+
|
69 |
+
|
70 |
+
public function wp_mail_from($name) {
|
71 |
+
return get_bloginfo('name');
|
72 |
+
}
|
73 |
|
74 |
}
|
core/entries/map-el.php
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
<?php
|
2 |
namespace MetForm\Core\Entries;
|
|
|
3 |
defined( 'ABSPATH' ) || exit;
|
4 |
|
5 |
Class Map_El{
|
1 |
<?php
|
2 |
namespace MetForm\Core\Entries;
|
3 |
+
|
4 |
defined( 'ABSPATH' ) || exit;
|
5 |
|
6 |
Class Map_El{
|
core/entries/metform-shortcode.php
ADDED
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
namespace MetForm\Core\Entries;
|
3 |
+
defined( 'ABSPATH' ) || exit;
|
4 |
+
|
5 |
+
Class Metform_Shortcode{
|
6 |
+
use \MetForm\Traits\Singleton;
|
7 |
+
|
8 |
+
private $all_keys;
|
9 |
+
private $all_values;
|
10 |
+
private $main_data;
|
11 |
+
|
12 |
+
public function get_process_shortcode($string){
|
13 |
+
$replace = str_replace($this->all_keys, $this->all_values, $string);
|
14 |
+
return $replace;
|
15 |
+
|
16 |
+
}
|
17 |
+
|
18 |
+
public function set_values($main_data){
|
19 |
+
$this->main_data = $main_data;
|
20 |
+
$this->formate_keys();
|
21 |
+
$this->formate_values();
|
22 |
+
return $this;
|
23 |
+
}
|
24 |
+
|
25 |
+
public function get_all_keys(){
|
26 |
+
return $this->all_keys;
|
27 |
+
}
|
28 |
+
|
29 |
+
public function get_all_values(){
|
30 |
+
return $this->all_values;
|
31 |
+
}
|
32 |
+
|
33 |
+
public function set_all_keys($main_data){
|
34 |
+
$this->main_data = $main_data;
|
35 |
+
$this->formate_keys();
|
36 |
+
return $this;
|
37 |
+
}
|
38 |
+
|
39 |
+
public function set_all_values($main_data){
|
40 |
+
$this->main_data = $main_data;
|
41 |
+
$this->formate_values();
|
42 |
+
return $this;
|
43 |
+
}
|
44 |
+
|
45 |
+
public function formate_keys(){
|
46 |
+
|
47 |
+
$this->all_keys = array_map(function($v){
|
48 |
+
return "[".$v."]";
|
49 |
+
}, array_keys($this->main_data) );
|
50 |
+
|
51 |
+
}
|
52 |
+
|
53 |
+
public function formate_values(){
|
54 |
+
|
55 |
+
$this->all_values = array_map(function($value){
|
56 |
+
return (is_array($value) ? implode(', ', $value) : $value);
|
57 |
+
}, $this->main_data);
|
58 |
+
|
59 |
+
}
|
60 |
+
|
61 |
+
}
|
core/forms/action.php
CHANGED
@@ -174,25 +174,38 @@ Class Action{
|
|
174 |
|
175 |
$post = get_post( $post_id );
|
176 |
|
|
|
|
|
|
|
|
|
177 |
if( ! property_exists($post, 'ID')){
|
178 |
return null;
|
179 |
}
|
180 |
|
181 |
$settings = get_post_meta( $post->ID, $this->key_form_settings, true );
|
182 |
$settings = (is_array($settings) ? $settings : []);
|
|
|
183 |
|
184 |
$global_settings = \MetForm\Core\Admin\Base::instance()->get_settings_option();
|
185 |
$global_settings = (is_array($global_settings) ? $global_settings : []);
|
186 |
|
187 |
if(empty($global_settings)){
|
188 |
$all_settings = $settings;
|
|
|
189 |
}else{
|
190 |
$all_settings = array_merge( $settings, $global_settings );
|
191 |
}
|
192 |
|
193 |
$all_settings['form_title'] = get_the_title($post_id);
|
194 |
|
195 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
196 |
|
197 |
}
|
198 |
|
174 |
|
175 |
$post = get_post( $post_id );
|
176 |
|
177 |
+
if(!is_object($post)){
|
178 |
+
return null;
|
179 |
+
}
|
180 |
+
|
181 |
if( ! property_exists($post, 'ID')){
|
182 |
return null;
|
183 |
}
|
184 |
|
185 |
$settings = get_post_meta( $post->ID, $this->key_form_settings, true );
|
186 |
$settings = (is_array($settings) ? $settings : []);
|
187 |
+
$settings['entry_title'] = (!isset($settings['entry_title']) ? 'Entry # [mf_id]' :$settings['entry_title']);
|
188 |
|
189 |
$global_settings = \MetForm\Core\Admin\Base::instance()->get_settings_option();
|
190 |
$global_settings = (is_array($global_settings) ? $global_settings : []);
|
191 |
|
192 |
if(empty($global_settings)){
|
193 |
$all_settings = $settings;
|
194 |
+
$all_settings['mf_recaptcha_version'] = 'recaptcha-v2';
|
195 |
}else{
|
196 |
$all_settings = array_merge( $settings, $global_settings );
|
197 |
}
|
198 |
|
199 |
$all_settings['form_title'] = get_the_title($post_id);
|
200 |
|
201 |
+
$map_data = \MetForm\Core\Entries\Action::instance()->get_fields($post_id);
|
202 |
+
|
203 |
+
\MetForm\Core\Entries\Metform_Shortcode::instance()->set_all_keys($map_data);
|
204 |
+
$formated_keys = \MetForm\Core\Entries\Metform_Shortcode::instance()->get_all_keys();
|
205 |
+
|
206 |
+
$all_settings['input_names'] = (!empty($formated_keys) ? implode(' ', $formated_keys) : 'Example: [mf-inputname]');
|
207 |
+
|
208 |
+
return $all_settings;
|
209 |
|
210 |
}
|
211 |
|
core/forms/builder.php
CHANGED
@@ -16,7 +16,7 @@ Class Builder{
|
|
16 |
}
|
17 |
|
18 |
public function create_form($title, $template_id = 0, $data = []){
|
19 |
-
$template_id = ($template_id == '') ? 0 : $template_id;
|
20 |
$title = ($title == '' ? 'New Form # ' . time() : $title);
|
21 |
$template_content = \MetForm\Templates\Base::instance()->get_template_contents($template_id);
|
22 |
|
16 |
}
|
17 |
|
18 |
public function create_form($title, $template_id = 0, $data = []){
|
19 |
+
$template_id = 'template-' . (($template_id == '') ? 0 : $template_id);
|
20 |
$title = ($title == '' ? 'New Form # ' . time() : $title);
|
21 |
$template_content = \MetForm\Templates\Base::instance()->get_template_contents($template_id);
|
22 |
|
core/forms/cpt.php
CHANGED
@@ -26,6 +26,9 @@ Class Cpt extends \MetForm\Base\Cpt{
|
|
26 |
'store_entries' => [
|
27 |
'name' => 'store_entries',
|
28 |
],
|
|
|
|
|
|
|
29 |
'hide_form_after_submission' => [
|
30 |
'name' => 'hide_form_after_submission',
|
31 |
],
|
26 |
'store_entries' => [
|
27 |
'name' => 'store_entries',
|
28 |
],
|
29 |
+
'entry_title' => [
|
30 |
+
'name' => 'entry_title',
|
31 |
+
],
|
32 |
'hide_form_after_submission' => [
|
33 |
'name' => 'hide_form_after_submission',
|
34 |
],
|
core/forms/views/modal-editor.php
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
<div class="attr-modal attr-fade" id="metform_form_modal" tabindex="-1" role="dialog"
|
2 |
aria-labelledby="metform_form_modalLabel" style="display:none;">
|
3 |
<div class="attr-modal-dialog attr-modal-dialog-centered" id="metform-form-modalinput-form" role="document">
|
@@ -72,6 +74,12 @@
|
|
72 |
<span class='mf-input-help'><?php esc_html_e('Save submitted form data to database.','metform'); ?></span>
|
73 |
</div>
|
74 |
<br>
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
<div class="mf-input-group">
|
76 |
<div class="mf-input-group-inner">
|
77 |
<label class="attr-input-label">
|
@@ -173,13 +181,13 @@
|
|
173 |
<br>
|
174 |
<div class="mf-input-group mf-form-admin-notification">
|
175 |
<label for="attr-input-label" class="attr-input-label"><?php esc_html_e('Email From:', 'metform'); ?></label>
|
176 |
-
<input type="
|
177 |
<span class='mf-input-help'><?php esc_html_e('Enter the email by which you want to send email to admin.','metform'); ?></span>
|
178 |
</div>
|
179 |
<br>
|
180 |
<div class="mf-input-group mf-form-admin-notification">
|
181 |
<label for="attr-input-label" class="attr-input-label"><?php esc_html_e('Email Reply To:', 'metform'); ?></label>
|
182 |
-
<input type="
|
183 |
<span class='mf-input-help'><?php esc_html_e('Enter email where admin can reply/ you want to get reply.','metform'); ?></span>
|
184 |
</div>
|
185 |
<br>
|
1 |
+
<?php defined('ABSPATH') || exit; ?>
|
2 |
+
|
3 |
<div class="attr-modal attr-fade" id="metform_form_modal" tabindex="-1" role="dialog"
|
4 |
aria-labelledby="metform_form_modalLabel" style="display:none;">
|
5 |
<div class="attr-modal-dialog attr-modal-dialog-centered" id="metform-form-modalinput-form" role="document">
|
74 |
<span class='mf-input-help'><?php esc_html_e('Save submitted form data to database.','metform'); ?></span>
|
75 |
</div>
|
76 |
<br>
|
77 |
+
<div class="mf-input-group mf-entry-title">
|
78 |
+
<label for="attr-input-label" class="attr-input-label"><?php esc_html_e('Entry Title', 'metform'); ?></label>
|
79 |
+
<input type="text" name="entry_title" class="mf-entry-title-input attr-form-control" placeholder="Entry Title">
|
80 |
+
<span class="mf-input-help"><?php esc_html_e('Enter here title of this form entries.', 'metform'); ?></span>
|
81 |
+
</div>
|
82 |
+
<br>
|
83 |
<div class="mf-input-group">
|
84 |
<div class="mf-input-group-inner">
|
85 |
<label class="attr-input-label">
|
181 |
<br>
|
182 |
<div class="mf-input-group mf-form-admin-notification">
|
183 |
<label for="attr-input-label" class="attr-input-label"><?php esc_html_e('Email From:', 'metform'); ?></label>
|
184 |
+
<input type="text" name="admin_email_from" class="mf-form-admin-email-from attr-form-control" placeholder="<?php esc_html_e('Email from', 'metform');?>">
|
185 |
<span class='mf-input-help'><?php esc_html_e('Enter the email by which you want to send email to admin.','metform'); ?></span>
|
186 |
</div>
|
187 |
<br>
|
188 |
<div class="mf-input-group mf-form-admin-notification">
|
189 |
<label for="attr-input-label" class="attr-input-label"><?php esc_html_e('Email Reply To:', 'metform'); ?></label>
|
190 |
+
<input type="text" name="admin_email_reply_to" class="mf-form-admin-reply-to attr-form-control" placeholder="<?php esc_html_e('Email reply to', 'metform');?>">
|
191 |
<span class='mf-input-help'><?php esc_html_e('Enter email where admin can reply/ you want to get reply.','metform'); ?></span>
|
192 |
</div>
|
193 |
<br>
|
core/integrations/Mail_Adapter.php
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace MetForm\Core\Integrations;
|
4 |
+
|
5 |
+
|
6 |
+
class Mail_Adapter implements Mail_Adapter_Contract {
|
7 |
+
|
8 |
+
|
9 |
+
|
10 |
+
public function get_token() {
|
11 |
+
|
12 |
+
}
|
13 |
+
|
14 |
+
|
15 |
+
public function get_adapter(){
|
16 |
+
|
17 |
+
}
|
18 |
+
}
|
core/integrations/Mail_Adapter_Contract.php
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace MetForm\Core\Integrations;
|
4 |
+
|
5 |
+
|
6 |
+
interface Mail_Adapter_Contract {
|
7 |
+
|
8 |
+
|
9 |
+
public function get_token();
|
10 |
+
|
11 |
+
public function get_adapter();
|
12 |
+
|
13 |
+
}
|
core/integrations/google-recaptcha.php
CHANGED
@@ -2,7 +2,8 @@
|
|
2 |
namespace MetForm\Core\Integrations;
|
3 |
defined( 'ABSPATH' ) || exit;
|
4 |
|
5 |
-
|
|
|
6 |
use \MetForm\Traits\Singleton;
|
7 |
|
8 |
private $return;
|
@@ -21,10 +22,10 @@ Class Google_Recaptcha{
|
|
21 |
);
|
22 |
|
23 |
$curlConfig = array(
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
);
|
29 |
|
30 |
$ch = curl_init();
|
@@ -58,10 +59,10 @@ Class Google_Recaptcha{
|
|
58 |
);
|
59 |
|
60 |
$curlConfig = array(
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
);
|
66 |
|
67 |
$ch = curl_init();
|
2 |
namespace MetForm\Core\Integrations;
|
3 |
defined( 'ABSPATH' ) || exit;
|
4 |
|
5 |
+
class Google_Recaptcha {
|
6 |
+
|
7 |
use \MetForm\Traits\Singleton;
|
8 |
|
9 |
private $return;
|
22 |
);
|
23 |
|
24 |
$curlConfig = array(
|
25 |
+
CURLOPT_URL => $url,
|
26 |
+
CURLOPT_POST => true,
|
27 |
+
CURLOPT_RETURNTRANSFER => true,
|
28 |
+
CURLOPT_POSTFIELDS => $data
|
29 |
);
|
30 |
|
31 |
$ch = curl_init();
|
59 |
);
|
60 |
|
61 |
$curlConfig = array(
|
62 |
+
CURLOPT_URL => $url,
|
63 |
+
CURLOPT_POST => true,
|
64 |
+
CURLOPT_POSTFIELDS => $data,
|
65 |
+
CURLOPT_RETURNTRANSFER => true,
|
66 |
);
|
67 |
|
68 |
$ch = curl_init();
|
core/integrations/mail-chimp.php
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
<?php
|
2 |
namespace MetForm\Core\Integrations;
|
|
|
3 |
defined( 'ABSPATH' ) || exit;
|
4 |
|
5 |
-
|
6 |
|
7 |
public function call_api( $form_data, $settings ){
|
8 |
$return = [];
|
1 |
<?php
|
2 |
namespace MetForm\Core\Integrations;
|
3 |
+
|
4 |
defined( 'ABSPATH' ) || exit;
|
5 |
|
6 |
+
class Mail_Chimp {
|
7 |
|
8 |
public function call_api( $form_data, $settings ){
|
9 |
$return = [];
|
core/integrations/provider/aweber/test
ADDED
File without changes
|
core/integrations/slack.php
CHANGED
@@ -2,7 +2,8 @@
|
|
2 |
namespace MetForm\Core\Integrations;
|
3 |
defined( 'ABSPATH' ) || exit;
|
4 |
|
5 |
-
|
|
|
6 |
public function call_webhook( $form_data, $settings ){
|
7 |
$msg = [];
|
8 |
$data = [
|
2 |
namespace MetForm\Core\Integrations;
|
3 |
defined( 'ABSPATH' ) || exit;
|
4 |
|
5 |
+
class Slack {
|
6 |
+
|
7 |
public function call_webhook( $form_data, $settings ){
|
8 |
$msg = [];
|
9 |
$data = [
|
metform.php
CHANGED
@@ -5,7 +5,7 @@ defined( 'ABSPATH' ) || exit;
|
|
5 |
* Plugin Name: MetForm
|
6 |
* Plugin URI: http://products.wpmet.com/metform/
|
7 |
* Description: Most flexible and design friendly form builder for Elementor
|
8 |
-
* Version: 1.2.
|
9 |
* Author: Wpmet
|
10 |
* Author URI: https://wpmet.com
|
11 |
* Text Domain: metform
|
5 |
* Plugin Name: MetForm
|
6 |
* Plugin URI: http://products.wpmet.com/metform/
|
7 |
* Description: Most flexible and design friendly form builder for Elementor
|
8 |
+
* Version: 1.2.2
|
9 |
* Author: Wpmet
|
10 |
* Author URI: https://wpmet.com
|
11 |
* Text Domain: metform
|
plugin.php
CHANGED
@@ -14,7 +14,7 @@ final class Plugin{
|
|
14 |
}
|
15 |
|
16 |
public function version(){
|
17 |
-
return '1.2.
|
18 |
}
|
19 |
|
20 |
public function package_type(){
|
@@ -132,7 +132,6 @@ final class Plugin{
|
|
132 |
wp_enqueue_style('select2', $this->public_url().'assets/css/select2.min.css', false, $this->version());
|
133 |
wp_enqueue_style('flatpickr', $this->public_url().'assets/css/flatpickr.min.css', false, $this->version());
|
134 |
wp_enqueue_style('metform-ui', $this->public_url().'assets/css/metform-ui.css', false, $this->version());
|
135 |
-
wp_enqueue_style('font-awesome', $this->public_url().'assets/css/font-awesome.min.css', false, $this->version());
|
136 |
wp_enqueue_style('metform-style', $this->public_url().'assets/css/style.css', false, $this->version());
|
137 |
|
138 |
wp_enqueue_script('validate', $this->public_url().'assets/js/jquery.validate.min.js', array(), $this->version(), true);
|
14 |
}
|
15 |
|
16 |
public function version(){
|
17 |
+
return '1.2.2';
|
18 |
}
|
19 |
|
20 |
public function package_type(){
|
132 |
wp_enqueue_style('select2', $this->public_url().'assets/css/select2.min.css', false, $this->version());
|
133 |
wp_enqueue_style('flatpickr', $this->public_url().'assets/css/flatpickr.min.css', false, $this->version());
|
134 |
wp_enqueue_style('metform-ui', $this->public_url().'assets/css/metform-ui.css', false, $this->version());
|
|
|
135 |
wp_enqueue_style('metform-style', $this->public_url().'assets/css/style.css', false, $this->version());
|
136 |
|
137 |
wp_enqueue_script('validate', $this->public_url().'assets/js/jquery.validate.min.js', array(), $this->version(), true);
|
public/assets/css/admin-style.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.mf-settings-tab{margin-bottom:25px}.mf-settings-tab .nav-tab{outline:none}.mf-settings-tab .nav-tab:focus{outline:none;-webkit-box-shadow:none;box-shadow:none}.mf-settings-section{opacity:0;visibility:hidden;-webkit-transition:opacity .4s;-o-transition:opacity .4s;transition:opacity .4s;position:absolute;top:-9999px}.mf-settings-section.active{opacity:1;position:static;visibility:visible}.metform-admin-container{padding:30px}.metform-admin-container--body{max-width:50%}.metform-admin-container--body .mf-settings-single-section{margin-bottom:30px}.metform-admin-container--body .mf-settings-single-section--title{margin:0;margin-bottom:15px}.metform-admin-container--body .mf-setting-input{width:100%;max-width:100%;margin:0;-webkit-box-sizing:border-box;box-sizing:border-box}.metform-admin-container--body .mf-setting-label{display:block;margin-bottom:5px;font-weight:600}.metform-admin-container--body .mf-setting-label .description{font-weight:normal}.metform-admin-container--body .mf-admin-control-input{margin:0}.mf-recaptcha-settings{display:none}.loading .attr-modal-content:before{opacity:.8;position:absolute;content:"";top:0;left:0;height:100%;width:100%;background-color:#fff;-webkit-transition:opaicty .5s ease;-o-transition:opaicty .5s ease;transition:opaicty .5s ease;z-index:5;border-radius:inherit}.loading .mf-spinner{display:block}.elementor-editor-active .metform-form-save-btn-editor{display:none!important}.attr-modal-dialog-centered{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-top:30px;width:565px}.attr-modal-dialog-centered .attr-modal-header{padding:36px 50px;border-bottom:none}.attr-modal-dialog-centered .attr-modal-header .attr-modal-title{font-size:20px;font-weight:bold;color:#111111;text-transform:capitalize;margin-bottom:38px;line-height:1}.attr-modal-dialog-centered .attr-modal-header .attr-nav-tabs{border:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap}.attr-modal-dialog-centered .attr-modal-header .attr-nav-tabs li{margin:0;float:none}.attr-modal-dialog-centered .attr-modal-header .attr-nav-tabs a{text-decoration:none;text-align:center;color:#111111;font-size:14px;text-transform:capitalize;font-weight:600;padding:8px 14px;border:none;margin-right:0;border:none}.attr-modal-dialog-centered .attr-modal-header .attr-nav-tabs a:hover{border:none;background-color:transparent}.attr-modal-dialog-centered .attr-modal-header .attr-nav-tabs a:focus{outline:none;-webkit-box-shadow:none;box-shadow:none;border:none}.attr-modal-dialog-centered .attr-modal-header .attr-nav-tabs li.attr-active a{border:none;color:#ffffff;background-color:#1F55F8;border-radius:4px}.attr-modal-dialog-centered .attr-modal-header button.attr-close{opacity:.8;font-size:inherit;outline:none;margin-top:-15px;margin-right:-25px}.attr-modal-dialog-centered .attr-modal-header button.attr-close span{color:#e81123;font-size:35px;font-weight:100;background-color:#FCE7E9;height:36px;width:36px;display:inline-block;line-height:36px;border-radius:100px;outline:none;margin-top:5px;font-family:initial}.attr-modal-dialog-centered .attr-tab-content .attr-modal-body{padding:40px 50px;padding-top:0}.attr-modal-dialog-centered .attr-tab-content div#limit_status.hide_input{display:none}.attr-modal-dialog-centered .attr-tab-content .mf-input-group label.attr-input-label{color:#111111;font-size:16px;margin-bottom:7px;display:block;font-weight:500}.attr-modal-dialog-centered .attr-tab-content .mf-input-group{margin-bottom:14px}.attr-modal-dialog-centered .attr-tab-content .mf-input-group .attr-form-control,.attr-modal-dialog-centered .attr-tab-content .mf-input-group input{color:#555;font-size:14px;height:48px;padding:0 22px;border-color:#ededed;-webkit-box-shadow:0px 2px 5px rgba(153, 153, 153, 0.2);box-shadow:0px 2px 5px rgba(153, 153, 153, 0.2);margin-top:12px;max-width:100%}.attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox]{display:none}.attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox]+span{position:relative;display:block}.attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox]+span:before{content:"No";width:55px;height:25px;background-color:#EDEDED;left:0;border-radius:15px;text-align:right;color:#fff;text-transform:uppercase;font-weight:bold;font-size:10px;padding:3px;-webkit-box-sizing:border-box;box-sizing:border-box;padding-right:10px;-webkit-transition:all .4s;-o-transition:all .4s;transition:all .4s;float:right;line-height:18px;cursor:pointer}.attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox]+span:after{content:"";width:20px;height:20px;background-color:#fff;border-radius:100px;display:inline-block;position:absolute;right:31px;top:2px;-webkit-transition:all .4s;-o-transition:all .4s;transition:all .4s}.attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox]:checked+span:before{content:"Yes";width:55px;height:25px;background-color:#1F55F8;left:0;border-radius:15px;display:inline-block;text-align:left;color:#fff;text-transform:uppercase;font-weight:bold;font-size:10px;padding:3px;-webkit-box-sizing:border-box;box-sizing:border-box;padding-left:10px}.attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox]:checked+span:after{content:"";width:20px;height:20px;background-color:#fff;border-radius:100px;display:inline-block;position:absolute;right:2px;top:2px}.attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-rest-api-method{padding:0 18px;margin:0}.attr-modal-dialog-centered .attr-tab-content .mf-input-group span.mf-input-help{color:#b7b7b7;font-style:italic;font-size:12px}.attr-modal-dialog-centered .attr-tab-content .mf-input-group span.mf-input-help strong{color:red}.attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-input-group-inner label.attr-input-label{display:inline-block}.attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-input-group-inner #limit_status{width:100px;margin:0;position:relative;margin-left:15px;float:right;margin-top:-2px}.attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-input-group-inner input{margin:0}.attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-input-group-inner input[type=checkbox]+span:before{position:relative;top:-2px;left:5px}.attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-input-group-inner input[type=checkbox]+span:after{right:28px;top:0px}.attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-input-group-inner input[type=checkbox]:checked+span:after{right:-2px;top:0}.attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=number]+span,.attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=text]+span{display:block;margin-top:5px}.attr-modal-dialog-centered .attr-tab-content #limit_status.show_input{margin-top:32px}.attr-modal-dialog-centered .attr-modal-footer{padding:30px 50px}.attr-modal-dialog-centered .attr-modal-footer button{color:#fff;background-color:#1F55F8;font-size:16px;font-weight:bold;-webkit-box-sizing:border-box;box-sizing:border-box;padding:12px 20px;-webkit-box-shadow:none;box-shadow:none;border:1px solid transparent;-webkit-transition:all .4s;-o-transition:all .4s;transition:all .4s;outline:none}.attr-modal-dialog-centered .attr-modal-footer button:focus{border:none;outline:none}.attr-modal-dialog-centered .attr-modal-footer button.metform-form-save-btn-editor{background-color:#d8d8d8;color:#111111}.attr-modal-dialog-centered>form{width:100%}.modal-backdrop{position:fixed;top:0;left:0;width:100vw;height:100vh;background-color:rgba(0, 0, 0, 0.5)}.modal-backdrop{z-index:9999}.attr-modal{z-index:10000}.mf_multipile_ajax_search_filed .select2-container--default .select2-selection--multiple .select2-selection__choice{line-height:1.5;font-size:.9em;border:none;border-radius:0;color:#6d7882}.mf-headerfooter-status{display:inline-block;margin-left:5px;padding:2px 5px 3px;color:#FFFFFF;background-color:#9a9a9a;border-radius:3px;font-size:10px;line-height:1;font-weight:700}.mf-headerfooter-status-active{background-color:#00cd00}.irs--round .irs-max,.irs--round .irs-min{display:none}.irs--round .irs-handle{cursor:pointer}.mf-success-msg{position:fixed;z-index:9;text-align:center;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);-webkit-box-shadow:0px 2px 5px rgba(153, 153, 153, 0.2);box-shadow:0px 2px 5px rgba(153, 153, 153, 0.2);min-width:300px}textarea.attr-form-control{height:auto!important}.post-type-metform-form .row-actions .inline{display:none!important}div.metform-entry-browser-data table tbody,div.metform-entry-browser-data table thead,div.metform-entry-data table tbody,div.metform-entry-data table thead{text-align:left}img.form-editor-icon{height:20px;width:20px;margin-right:5px;vertical-align:middle}div.mf-file-show button.attr-btn.attr-btn-primary{margin-left:10px}.mf-file-show a{text-decoration:none}.mf-modal-container{margin-top:50px}.mf-modal-container .attr-modal-body img{margin:0 auto}.mf-entry-input,.mf-entry-label{-webkit-box-sizing:border-box;box-sizing:border-box}.mf-entry-filter{margin-right:10px}.mf-entry-filter{min-width:15%}.mf-entry-export-csv{min-width:20%}.metform_open_content_editor_modal .attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox]+span:before{line-height:20px}.mf-image-select-input,.mf-toggle-select-input{position:absolute;opacity:0;width:0;height:0}.mf-image-select-input+img,.mf-toggle-select-input+p{cursor:pointer}.mf-input-rest-api-group .mf-rest-api-key{width:100px;display:inline-block;position:relative;top:-1px}.mf-input-rest-api-group .mf-rest-api{width:calc(100% - 110px);vertical-align:middle;display:inline-block!important}.metform_open_content_editor_modal .mf-rest-api-key{top:0}.metform-entry-data table.mf-entry-data{width:100%;background-color:#FFFFFF;border:1px solid #EAF2FA}.metform-entry-data table.mf-entry-data tbody tr.mf-data-label{background-color:#EAF2FA}.metform-entry-data table.mf-entry-data tbody tr.mf-data-value{background-color:#FFFFFF}.metform-entry-data table.mf-entry-data tbody tr.mf-data-value td.mf-value-space{width:20px}.metform-entry-data table.mf-entry-data tbody tr.mf-data-value .signature-img{height:100px;width:200px}
|
1 |
+
.mf-settings-dashboard{margin-top:40px}.mf-settings-dashboard .attr-row>div{-webkit-box-sizing:border-box;box-sizing:border-box}.mf-settings-dashboard>.attr-row{margin:0}.nav-tab-wrapper{border:none;padding:0}.mf-settings-tab{margin-bottom:40px}.mf-settings-tab li{-webkit-box-shadow:none;box-shadow:none;border:none;margin:0;background-color:#fff}.mf-settings-tab li:focus,.mf-settings-tab li:hover{outline:none;-webkit-box-shadow:none;box-shadow:none;border:none}.mf-settings-tab li.nav-tab-active{background-color:#FFFFFF;border-left-color:#FF324D;border-radius:10px}.mf-settings-tab li.nav-tab-active .mf-setting-title{color:#FF324D}.mf-settings-tab li.nav-tab-active .mf-setting-nav-link{background-color:#fff;border-top-left-radius:10px;border-bottom-left-radius:10px}.mf-settings-tab li.nav-tab-active .mf-setting-nav-link:before{content:"";background-color:#FF324D;height:10px;width:10px;position:absolute;left:17px;border-radius:100px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.mf-settings-tab .mf-setting-nav-link{outline:none;float:none;display:-webkit-box;display:-ms-flexbox;display:flex;padding:16px 44px 18px 20px;color:#121116;border:none;-webkit-transition:all 100ms ease-out;-o-transition:all 100ms ease-out;transition:all 100ms ease-out;background-color:#f1f1f1;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:0px;-webkit-box-shadow:none;box-shadow:none;position:relative;padding:23px 40px;text-decoration:none;-webkit-transition:all .4s;-o-transition:all .4s;transition:all .4s}.mf-settings-tab .mf-setting-nav-link:focus,.mf-settings-tab .mf-setting-nav-link:hover{outline:none;-webkit-box-shadow:none;box-shadow:none;border:none}.mf-settings-tab .mf-setting-nav-link.mf-setting-nav-link.top{border-bottom-right-radius:20px}.mf-settings-tab .mf-setting-nav-link.mf-setting-nav-link.bottom{border-top-right-radius:20px}.mf-settings-tab .mf-setting-nav-link.mf-setting-nav-hidden{background-color:#F1F1F1;cursor:default;padding:15px}.mf-settings-tab.nav-tab-active.mf-setting-nav-link{border-radius:10px;background-color:#fff}.mf-settings-tab .mf-setting-tab-content .mf-setting-title{font-size:.8125rem;font-weight:bold;color:#333;display:block;margin-bottom:2px;line-height:1;text-transform:uppercase}.mf-settings-tab .mf-setting-tab-content .mf-setting-subtitle{color:#72777C;font-size:.8125rem;-webkit-transition:all 150ms ease-out;-o-transition:all 150ms ease-out;transition:all 150ms ease-out}.mf-settings-section{opacity:0;visibility:hidden;-webkit-transition:opacity .4s;-o-transition:opacity .4s;transition:opacity .4s;position:absolute;top:-9999px}.mf-settings-section.active{opacity:1;position:static;visibility:visible}.metform-admin-container{padding:30px;min-height:400px}.metform-admin-container--body .mf-settings-single-section{margin-bottom:30px}.metform-admin-container--body .mf-settings-single-section--title{margin:0;margin-top:0px;color:#FF324D;font-size:24px;line-height:28px;font-weight:bold;vertical-align:middle;position:relative}.metform-admin-container--body .mf-setting-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;border-bottom:1px solid #E0E4E9;margin-bottom:40px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-bottom:17px;position:relative}.metform-admin-container--body .mf-setting-header:before{content:'';position:absolute;display:block;width:48px;height:2px;bottom:-1px;left:0;background:#FF324D}.metform-admin-container--body .mf-setting-input{width:100%;max-width:100%;margin:0;-webkit-box-sizing:border-box;box-sizing:border-box}.metform-admin-container--body .mf-setting-label{display:block;margin-bottom:8px;color:#101010;font-size:16px;line-height:19px;font-weight:500}.metform-admin-container--body .mf-admin-control-input{margin:0}.metform-admin-container--body .mf-admin-control-input[type=checkbox]{position:relative;-webkit-box-shadow:none;box-shadow:none;height:16px;width:16px;border:2px solid #FF5D20}.metform-admin-container--body .mf-admin-control-input[type=checkbox]:checked:before{content:"";position:absolute;background-color:#FF3747;width:8px;height:9px;-webkit-box-sizing:border-box;box-sizing:border-box;left:2px;border-radius:2px;text-align:center;margin:0;top:1.6px}.metform-admin-container .mf-setting-input{border-radius:3px;padding:5px 15px;height:40px;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:14px;line-height:17px;display:inline-block;color:#555555;-webkit-box-shadow:none;box-shadow:none;color:#121116;border:1px solid #DEE3EA;font-weight:normal}.metform-admin-container .mf-setting-input:active,.metform-admin-container .mf-setting-input:focus{border-color:#FF324D;-webkit-box-shadow:none;box-shadow:none;outline:none}.metform-admin-container .mf-admin-save-icon{color:#fff;font-size:14px;margin-right:6px;height:14px;width:14px}.metform-admin-container .button-primary{text-decoration:none;text-shadow:none;background-color:#FF324D;border-radius:4px;-webkit-box-shadow:0 7px 15px rgba(242, 41, 91, 0.3);box-shadow:0 7px 15px rgba(242, 41, 91, 0.3);font-size:14px;line-height:16px;text-transform:uppercase;color:#fff;font-weight:500;border:none;padding:12px 23px;-webkit-transition:all .4s;-o-transition:all .4s;transition:all .4s;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-image:-webkit-linear-gradient(45deg, #FF324D, #FF6B11);background-image:-o-linear-gradient(45deg, #FF324D, #FF6B11);background-image:linear-gradient(45deg, #FF324D, #FF6B11);position:relative;z-index:9}.metform-admin-container .button-primary:focus,.metform-admin-container .button-primary:hover{border:none;outline:none;-webkit-box-shadow:0 7px 15px rgba(242, 41, 91, 0.3);box-shadow:0 7px 15px rgba(242, 41, 91, 0.3)}.metform-admin-container .button-primary:before{border-radius:inherit;background-image:-webkit-linear-gradient(45deg, #FF6B11, #FF324D);background-image:-o-linear-gradient(45deg, #FF6B11, #FF324D);background-image:linear-gradient(45deg, #FF6B11, #FF324D);content:'';display:block;height:100%;position:absolute;top:0;left:0;opacity:0;width:100%;z-index:-1;-webkit-transition:opacity .7s ease-in-out;-o-transition:opacity .7s ease-in-out;transition:opacity .7s ease-in-out}.metform-admin-container .button-primary:hover{background-color:#dc0420}.metform-admin-container .button-primary:hover:before{opacity:1}.mf-recaptcha-settings{display:none}.metform-admin-container{background-color:#FFFFFF;padding:30px;border-radius:20px;border:none}.mf_setting_logo{padding-top:25px}.mf_setting_logo img{max-width:200px}.mf-setting-dashboard-banner{-webkit-box-shadow:0px 6px 20px 0px rgba(194, 204, 222, 0.3);box-shadow:0px 6px 20px 0px rgba(194, 204, 222, 0.3);border-radius:20px}.mf-setting-dashboard-banner img{width:100%}.mf-setting-dashboard-banner--content{padding:30px}.mf-setting-dashboard-banner--content h3{margin:0;margin-bottom:15px}.mf-setting-btn{text-decoration:none;background-color:#FF324D;padding:8px 15px;border:none;-webkit-box-shadow:none;box-shadow:none;background-image:-webkit-linear-gradient(45deg, #FF324D, #FF6B11);background-image:-o-linear-gradient(45deg, #FF324D, #FF6B11);background-image:linear-gradient(45deg, #FF324D, #FF6B11);font-weight:500}.mf-setting-btn-link{background-image:none;color:#1F55F8;border-radius:0;background-color:transparent;border:none;padding:0;text-decoration:none;border-bottom:1px solid #1F55F8;font-weight:600;font-size:14px;display:inline-block;line-height:18px;-webkit-transition:all .4s;-o-transition:all .4s;transition:all .4s}.mf-setting-btn-link:hover{color:#507bff}.mf-setting-separator{margin:50px 0}.mf-setting-input-group{margin-bottom:30px}.mf-setting-input-group:last-child{margin-bottom:0}.mf-setting-input-group .description{font-weight:normal;font-size:13px;line-height:15px;color:#999999;font-style:normal;margin:0;margin-top:8px}.mf-setting-input-desc{padding-right:100px}.mf-setting-input-desc .mf-setting-btn-link{margin-top:15px}.mf-setting-input-desc--title{margin-top:0;margin-bottom:8px}.mf-setting-input-desc li,.mf-setting-input-desc p{font-size:14px;line-height:18px;color:#111111}.mf-setting-tab-nav{margin-bottom:30px}.mf-setting-tab-nav li{margin-right:15px;cursor:pointer}.mf-setting-tab-nav li:last-child{margin-right:0}.mf-setting-tab-nav .attr-nav-tabs{border:none}.mf-setting-tab-nav .attr-nav-item{border:none;border-radius:4px;text-decoration:none;text-align:center;color:#111111;font-size:14px;text-transform:capitalize;font-weight:600;padding:8px 14px;border:none;margin-right:0;border:none;display:inline-block;-webkit-box-shadow:none;box-shadow:none;z-index:2}.mf-setting-tab-nav .attr-nav-item:before{border-radius:inherit;background-image:-webkit-linear-gradient(45deg, #FF6B11, #FF324D);background-image:-o-linear-gradient(45deg, #FF6B11, #FF324D);background-image:linear-gradient(45deg, #FF6B11, #FF324D);content:'';display:block;height:100%;position:absolute;top:0;left:0;opacity:0;width:100%;z-index:-1;-webkit-transition:opacity .4s ease-in-out;-o-transition:opacity .4s ease-in-out;transition:opacity .4s ease-in-out}.mf-setting-tab-nav .attr-nav-item:hover{color:#fff;background-color:#dc0420}.mf-setting-tab-nav .attr-nav-item:hover:before{opacity:1}.mf-setting-tab-nav .attr-active .attr-nav-item{color:#ffffff;background-color:#1F55F8;background-image:-webkit-linear-gradient(45deg, #FF324D, #FF6B11);background-image:-o-linear-gradient(45deg, #FF324D, #FF6B11);background-image:linear-gradient(45deg, #FF324D, #FF6B11);border:none}.mf-setting-tab-nav .attr-active .attr-nav-item:active,.mf-setting-tab-nav .attr-active .attr-nav-item:focus,.mf-setting-tab-nav .attr-active .attr-nav-item:hover{border:none;-webkit-box-shadow:none;box-shadow:none;outline:none;color:#fff}.mf-setting-input-desc-data{display:none}.mf-setting-select-container{position:relative}.mf-setting-select-container .mf-setting-input{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:none}.mf-setting-select-container:before{content:"";width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #111;position:absolute;right:15px;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);top:50%}.mf-setting-refresh-btn{margin:0 10px;font-size:18px;line-height:24px}@media (min-width:768px){.mf-setting-input-desc-data{display:block}.mf-settings-dashboard>.attr-row>div:last-of-type{padding-left:0}.mf-settings-dashboard>.attr-row>div:first-of-type{padding-right:0}}.loading .attr-modal-content:before{opacity:.8;position:absolute;content:"";top:0;left:0;height:100%;width:100%;background-color:#fff;-webkit-transition:opaicty .5s ease;-o-transition:opaicty .5s ease;transition:opaicty .5s ease;z-index:5;border-radius:inherit}.loading .mf-spinner{display:block}.elementor-editor-active .metform-form-save-btn-editor{display:none!important}.attr-modal-dialog-centered{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-top:30px;width:565px}.attr-modal-dialog-centered .attr-modal-header{padding:36px 50px;border-bottom:none}.attr-modal-dialog-centered .attr-modal-header .attr-modal-title{font-size:20px;font-weight:bold;color:#111111;text-transform:capitalize;margin-bottom:38px;line-height:1}.attr-modal-dialog-centered .attr-modal-header .attr-nav-tabs{border:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap}.attr-modal-dialog-centered .attr-modal-header .attr-nav-tabs li{margin:0;float:none}.attr-modal-dialog-centered .attr-modal-header .attr-nav-tabs a{text-decoration:none;text-align:center;color:#111111;font-size:14px;text-transform:capitalize;font-weight:600;padding:8px 14px;border:none;margin-right:0;border:none}.attr-modal-dialog-centered .attr-modal-header .attr-nav-tabs a:hover{border:none;background-color:transparent}.attr-modal-dialog-centered .attr-modal-header .attr-nav-tabs a:focus{outline:none;-webkit-box-shadow:none;box-shadow:none;border:none}.attr-modal-dialog-centered .attr-modal-header .attr-nav-tabs li.attr-active a{border:none;color:#ffffff;background-color:#1F55F8;border-radius:4px}.attr-modal-dialog-centered .attr-modal-header button.attr-close{opacity:.8;font-size:inherit;outline:none;margin-top:-15px;margin-right:-25px}.attr-modal-dialog-centered .attr-modal-header button.attr-close span{color:#e81123;font-size:35px;font-weight:100;background-color:#FCE7E9;height:36px;width:36px;display:inline-block;line-height:36px;border-radius:100px;outline:none;margin-top:5px;font-family:initial}.attr-modal-dialog-centered .attr-tab-content .attr-modal-body{padding:40px 50px;padding-top:0}.attr-modal-dialog-centered .attr-tab-content div#limit_status.hide_input{display:none}.attr-modal-dialog-centered .attr-tab-content .mf-input-group label.attr-input-label{color:#111111;font-size:16px;margin-bottom:7px;display:block;font-weight:500}.attr-modal-dialog-centered .attr-tab-content .mf-input-group{margin-bottom:14px}.attr-modal-dialog-centered .attr-tab-content .mf-input-group .attr-form-control,.attr-modal-dialog-centered .attr-tab-content .mf-input-group input{color:#555;font-size:14px;height:48px;padding:0 22px;border-color:#ededed;-webkit-box-shadow:0px 2px 5px rgba(153, 153, 153, 0.2);box-shadow:0px 2px 5px rgba(153, 153, 153, 0.2);margin-top:12px;max-width:100%}.attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox]{display:none}.attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox]+span{position:relative;display:block}.attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox]+span:before{content:"No";width:55px;height:25px;background-color:#EDEDED;left:0;border-radius:15px;text-align:right;color:#fff;text-transform:uppercase;font-weight:bold;font-size:10px;padding:3px;-webkit-box-sizing:border-box;box-sizing:border-box;padding-right:10px;-webkit-transition:all .4s;-o-transition:all .4s;transition:all .4s;float:right;line-height:18px;cursor:pointer}.attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox]+span:after{content:"";width:20px;height:20px;background-color:#fff;border-radius:100px;display:inline-block;position:absolute;right:31px;top:2px;-webkit-transition:all .4s;-o-transition:all .4s;transition:all .4s}.attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox]:checked+span:before{content:"Yes";width:55px;height:25px;background-color:#1F55F8;left:0;border-radius:15px;display:inline-block;text-align:left;color:#fff;text-transform:uppercase;font-weight:bold;font-size:10px;padding:3px;-webkit-box-sizing:border-box;box-sizing:border-box;padding-left:10px}.attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox]:checked+span:after{content:"";width:20px;height:20px;background-color:#fff;border-radius:100px;display:inline-block;position:absolute;right:2px;top:2px}.attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-rest-api-method{padding:0 18px;margin:0}.attr-modal-dialog-centered .attr-tab-content .mf-input-group span.mf-input-help{color:#b7b7b7;font-style:italic;font-size:12px}.attr-modal-dialog-centered .attr-tab-content .mf-input-group span.mf-input-help strong{color:red}.attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-input-group-inner label.attr-input-label{display:inline-block}.attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-input-group-inner #limit_status{width:100px;margin:0;position:relative;margin-left:15px;float:right;margin-top:-2px}.attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-input-group-inner input{margin:0}.attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-input-group-inner input[type=checkbox]+span:before{position:relative;top:-2px;left:5px}.attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-input-group-inner input[type=checkbox]+span:after{right:28px;top:0px}.attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-input-group-inner input[type=checkbox]:checked+span:after{right:-2px;top:0}.attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=number]+span,.attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=text]+span{display:block;margin-top:5px}.attr-modal-dialog-centered .attr-tab-content #limit_status.show_input{margin-top:32px}.attr-modal-dialog-centered .attr-modal-footer{padding:30px 50px}.attr-modal-dialog-centered .attr-modal-footer button{color:#fff;background-color:#1F55F8;font-size:16px;font-weight:bold;-webkit-box-sizing:border-box;box-sizing:border-box;padding:12px 20px;-webkit-box-shadow:none;box-shadow:none;border:1px solid transparent;-webkit-transition:all .4s;-o-transition:all .4s;transition:all .4s;outline:none}.attr-modal-dialog-centered .attr-modal-footer button:focus{border:none;outline:none}.attr-modal-dialog-centered .attr-modal-footer button.metform-form-save-btn-editor{background-color:#d8d8d8;color:#111111}.attr-modal-dialog-centered>form{width:100%}.modal-backdrop{position:fixed;top:0;left:0;width:100vw;height:100vh;background-color:rgba(0, 0, 0, 0.5)}.modal-backdrop{z-index:9999}.attr-modal{z-index:10000}.mf_multipile_ajax_search_filed .select2-container--default .select2-selection--multiple .select2-selection__choice{line-height:1.5;font-size:.9em;border:none;border-radius:0;color:#6d7882}.mf-headerfooter-status{display:inline-block;margin-left:5px;padding:2px 5px 3px;color:#FFFFFF;background-color:#9a9a9a;border-radius:3px;font-size:10px;line-height:1;font-weight:700}.mf-headerfooter-status-active{background-color:#00cd00}.irs--round .irs-max,.irs--round .irs-min{display:none}.irs--round .irs-handle{cursor:pointer}.mf-success-msg{position:fixed;z-index:9;text-align:center;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);-webkit-box-shadow:0px 2px 5px rgba(153, 153, 153, 0.2);box-shadow:0px 2px 5px rgba(153, 153, 153, 0.2);min-width:300px}textarea.attr-form-control{height:auto!important}.post-type-metform-form .row-actions .inline{display:none!important}div.metform-entry-browser-data table tbody,div.metform-entry-browser-data table thead,div.metform-entry-data table tbody,div.metform-entry-data table thead{text-align:left}img.form-editor-icon{height:20px;width:20px;margin-right:5px;vertical-align:middle}div.mf-file-show button.attr-btn.attr-btn-primary{margin-left:10px}.mf-file-show a{text-decoration:none}.mf-modal-container{margin-top:50px}.mf-modal-container .attr-modal-body img{margin:0 auto}.mf-entry-input,.mf-entry-label{-webkit-box-sizing:border-box;box-sizing:border-box}.mf-entry-filter{margin-right:10px}.mf-entry-filter{min-width:15%}.mf-entry-export-csv{min-width:20%}.metform_open_content_editor_modal .attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox]+span:before{line-height:20px}.mf-image-select-input,.mf-toggle-select-input{position:absolute;opacity:0;width:0;height:0}.mf-image-select-input+img,.mf-toggle-select-input+p{cursor:pointer}.mf-input-rest-api-group .mf-rest-api-key{width:100px;display:inline-block;position:relative;top:-1px}.mf-input-rest-api-group .mf-rest-api{width:calc(100% - 110px);vertical-align:middle;display:inline-block!important}.metform_open_content_editor_modal .mf-rest-api-key{top:0}.metform-entry-data table.mf-entry-data{width:100%;background-color:#FFFFFF;border:1px solid #EAF2FA}.metform-entry-data table.mf-entry-data tbody tr.mf-data-label{background-color:#EAF2FA}.metform-entry-data table.mf-entry-data tbody tr.mf-data-value{background-color:#FFFFFF}.metform-entry-data table.mf-entry-data tbody tr.mf-data-value td.mf-value-space{width:20px}.metform-entry-data table.mf-entry-data tbody tr.mf-data-value .signature-img{height:100px;width:200px}
|
public/assets/css/style.css
CHANGED
@@ -7,6 +7,12 @@
|
|
7 |
padding: 10px;
|
8 |
}
|
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
.mf-input-switch-control {
|
11 |
position: relative;
|
12 |
display: inline-block;
|
@@ -180,8 +186,8 @@ div.mf-input-wrapper > textarea.mf-input {
|
|
180 |
display: none;
|
181 |
}
|
182 |
.mf-checkbox-option input[type="checkbox"] + span:before {
|
183 |
-
content: "\
|
184 |
-
font-family:
|
185 |
display: inline-block;
|
186 |
border: none;
|
187 |
font-size: 18px;
|
@@ -191,6 +197,7 @@ div.mf-input-wrapper > textarea.mf-input {
|
|
191 |
line-height: 1;
|
192 |
top: 2px;
|
193 |
position: relative;
|
|
|
194 |
}
|
195 |
.mf-checkbox-option input[type="checkbox"] + span{
|
196 |
font-weight: 400;
|
@@ -199,7 +206,7 @@ div.mf-input-wrapper > textarea.mf-input {
|
|
199 |
}
|
200 |
.mf-checkbox-option input[type="checkbox"]:checked + span:before {
|
201 |
content: "\f14a";
|
202 |
-
font-family:
|
203 |
display: inline-block;
|
204 |
border: none;
|
205 |
font-size: 18px;
|
@@ -215,8 +222,8 @@ div.mf-input-wrapper > textarea.mf-input {
|
|
215 |
}
|
216 |
|
217 |
.mf-radio-option input[type="radio"] + span:before {
|
218 |
-
content: "\
|
219 |
-
font-family:
|
220 |
display: inline-block;
|
221 |
border: none;
|
222 |
font-size: 18px;
|
@@ -226,6 +233,7 @@ div.mf-input-wrapper > textarea.mf-input {
|
|
226 |
line-height: 1;
|
227 |
top: 2px;
|
228 |
position: relative;
|
|
|
229 |
}
|
230 |
.mf-radio-option input[type="radio"] + span{
|
231 |
font-weight: 400;
|
@@ -234,7 +242,7 @@ div.mf-input-wrapper > textarea.mf-input {
|
|
234 |
}
|
235 |
.mf-radio-option input[type="radio"]:checked + span:before {
|
236 |
content: "\f058";
|
237 |
-
font-family:
|
238 |
display: inline-block;
|
239 |
border: none;
|
240 |
font-size: 18px;
|
@@ -520,6 +528,9 @@ ul.mf-input.mf-input-rating{
|
|
520 |
.mf-input-wrapper .select2 {
|
521 |
width: 100% !important;
|
522 |
}
|
|
|
|
|
|
|
523 |
|
524 |
/* summary table css */
|
525 |
td.mf-value-space {
|
7 |
padding: 10px;
|
8 |
}
|
9 |
|
10 |
+
.mf-form-wrapper section,
|
11 |
+
.single-metform-form section {
|
12 |
+
padding-top: 0;
|
13 |
+
padding-bottom: 0;
|
14 |
+
}
|
15 |
+
|
16 |
.mf-input-switch-control {
|
17 |
position: relative;
|
18 |
display: inline-block;
|
186 |
display: none;
|
187 |
}
|
188 |
.mf-checkbox-option input[type="checkbox"] + span:before {
|
189 |
+
content: "\f0c8";
|
190 |
+
font-family: "Font Awesome 5 Free" !important;
|
191 |
display: inline-block;
|
192 |
border: none;
|
193 |
font-size: 18px;
|
197 |
line-height: 1;
|
198 |
top: 2px;
|
199 |
position: relative;
|
200 |
+
font-weight: 500 !important;
|
201 |
}
|
202 |
.mf-checkbox-option input[type="checkbox"] + span{
|
203 |
font-weight: 400;
|
206 |
}
|
207 |
.mf-checkbox-option input[type="checkbox"]:checked + span:before {
|
208 |
content: "\f14a";
|
209 |
+
font-family: "Font Awesome 5 Free" !important;
|
210 |
display: inline-block;
|
211 |
border: none;
|
212 |
font-size: 18px;
|
222 |
}
|
223 |
|
224 |
.mf-radio-option input[type="radio"] + span:before {
|
225 |
+
content: "\f111";
|
226 |
+
font-family: "Font Awesome 5 Free" !important;
|
227 |
display: inline-block;
|
228 |
border: none;
|
229 |
font-size: 18px;
|
233 |
line-height: 1;
|
234 |
top: 2px;
|
235 |
position: relative;
|
236 |
+
font-weight: 500 !important;
|
237 |
}
|
238 |
.mf-radio-option input[type="radio"] + span{
|
239 |
font-weight: 400;
|
242 |
}
|
243 |
.mf-radio-option input[type="radio"]:checked + span:before {
|
244 |
content: "\f058";
|
245 |
+
font-family: "Font Awesome 5 Free" !important;
|
246 |
display: inline-block;
|
247 |
border: none;
|
248 |
font-size: 18px;
|
528 |
.mf-input-wrapper .select2 {
|
529 |
width: 100% !important;
|
530 |
}
|
531 |
+
.mf-input-wrapper #-error{
|
532 |
+
display: none !important;
|
533 |
+
}
|
534 |
|
535 |
/* summary table css */
|
536 |
td.mf-value-space {
|
public/assets/js/admin-entry-script.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
jQuery(document).ready(function(e){var t=e("#metform-formlist");e("#post-query-submit").before(t.html()),t.remove(),e(".row-actions .edit a, .page-title-action").html("
|
1 |
+
jQuery(document).ready(function(e){var t=e("#metform-formlist");e("#post-query-submit").before(t.html()),t.remove(),e(".row-actions .edit a, .page-title-action").html("View")});
|
public/assets/js/admin-script.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
jQuery(document).ready(function(e){"use strict";function t(t){if(e(".mf-form-user-confirmation").hide(),e(".mf-form-admin-notification").hide(),e(".mf-input-rest-api-group").hide(),e(".mf-mailchimp").hide(),e(".mf-zapier").hide(),e(".mf-slack").hide(),e(".mf-paypal").hide(),e(".mf-stripe").hide(),e(".mf-recaptcha").hide(),""!=t.form_title){e(".mf-form-modalinput-title").val(t.form_title),e(".mf-form-modalinput-success_message").val(t.success_message),e(".mf-form-modalinput-redirect_to").val(t.redirect_to),e(".mf-form-modalinput-success_url").val(t.success_url),e(".mf-form-modalinput-failed_cancel_url").val(t.failed_cancel_url),e(".mf-form-modalinput-limit_total_entries").val(t.limit_total_entries);var i=e(".mf-form-modalinput-store_entries");"1"==t.store_entries?i.attr("checked",!0):i.removeAttr("checked");var a=e(".mf-form-modalinput-hide_form_after_submission");"1"==t.hide_form_after_submission?a.attr("checked",!0):a.removeAttr("checked");var m=e(".mf-form-modalinput-require_login");"1"==t.require_login?m.attr("checked",!0):m.removeAttr("checked");var r=e(".mf-form-modalinput-limit_status");"1"==t.limit_total_entries_status?r.attr("checked",!0):r.removeAttr("checked");var o=e(".mf-form-modalinput-count_views");"1"==t.count_views?o.attr("checked",!0):o.removeAttr("checked");var s=e(".mf-form-modalinput-multiple_submission");"1"==t.multiple_submission?s.attr("checked",!0):s.removeAttr("checked");var n=e(".mf-form-modalinput-enable_recaptcha");"1"==t.enable_recaptcha?n.attr("checked",!0):n.removeAttr("checked");var c=e(".mf-form-modalinput-capture_user_browser_data");"1"==t.capture_user_browser_data?(c.attr("checked",!0),e("#multiple_submission").removeClass("hide_input"),e("#multiple_submission").addClass("show_input")):c.removeAttr("checked"),e(".mf-form-user-email-subject").val(t.user_email_subject),e(".mf-form-user-email-from").val(t.user_email_from),e(".mf-form-user-reply-to").val(t.user_email_reply_to),e(".mf-form-user-email-body").val(t.user_email_body);var f=e(".mf-form-user-enable");"1"==t.enable_user_notification?(f.attr("checked",!0),e(".mf-form-user-confirmation").show()):(f.removeAttr("checked"),e(".mf-form-user-confirmation").hide());var d=e(".mf-form-user-submission-copy");"1"==t.user_email_attach_submission_copy?d.attr("checked",!0):d.removeAttr("checked"),e(".mf-form-admin-email-subject").val(t.admin_email_subject),e(".mf-form-admin-email-from").val(t.admin_email_from),e(".mf-form-admin-email-to").val(t.admin_email_to),e(".mf-form-admin-reply-to").val(t.admin_email_reply_to),e(".mf-form-admin-email-body").val(t.admin_email_body);var l=e(".mf-form-admin-enable");"1"==t.enable_admin_notification?(l.attr("checked",!0),e(".mf-form-admin-notification").show()):(l.removeAttr("checked"),e(".mf-form-admin-notification").hide());var p=e(".mf-form-admin-submission-copy");"1"==t.admin_email_attach_submission_copy?p.attr("checked",!0):p.removeAttr("checked");var h=e(".mf-form-modalinput-rest_api");"1"==t.mf_rest_api?(h.attr("checked",!0),e(".mf-rest-api").show()):(h.removeAttr("checked"),e(".mf-rest-api").hide());var u=e(".mf-form-modalinput-mail_chimp");"1"==t.mf_mail_chimp?(u.attr("checked",!0),e(".mf-mailchimp").show()):(u.removeAttr("checked"),e(".mf-mailchimp").hide());var _=e(".mf-form-modalinput-zapier");"1"==t.mf_zapier?(_.attr("checked",!0),e(".mf-zapier").show()):(_.removeAttr("checked",!0),e(".mf-zapier").hide());var v=e(".mf-form-modalinput-slack");"1"==t.mf_slack?(v.attr("checked",!0),e(".mf-slack").show()):(v.removeAttr("checked",!0),e(".mf-slack").hide());var k=e(".mf-form-modalinput-paypal");"1"==t.mf_paypal?(k.attr("checked",!0),e(".mf-paypal").show()):(k.removeAttr("checked",!0),e(".mf-paypal").hide());var b=e(".mf-form-modalinput-stripe");"1"==t.mf_stripe?(b.attr("checked",!0),e(".mf-stripe").show()):(b.removeAttr("checked",!0),e(".mf-stripe").hide());b=e(".mf-form-modalinput-stripe");"1"==t.mf_stripe?(b.attr("checked",!0),e(".mf-stripe").show()):(b.removeAttr("checked",!0),e(".mf-stripe").hide());var g=e(".mf-form-modalinput-paypal_sandbox");"1"==t.mf_paypal_sandbox?g.attr("checked",!0):g.removeAttr("checked",!0);var y=e(".mf-form-modalinput-stripe_sandbox");"1"==t.mf_stripe_sandbox?y.attr("checked",!0):y.removeAttr("checked",!0);var w=e(".mf-form-modalinput-recaptcha");"1"==t.mf_recaptcha?(w.attr("checked",!0),e(".mf-recaptcha").show()):w.removeAttr("checked");var A=t.mf_rest_api_method&&t.mf_rest_api_method.length?t.mf_rest_api_method:"POST";e('.mf-rest-api-method option[value="'+A+'"]').prop("selected",!0),e(".mf-rest-api-url").val(t.mf_rest_api_url),e(".mf-mailchimp-api-key").val(t.mf_mailchimp_api_key),e(".mf-mailchimp-list-id").val(t.mf_mailchimp_list_id),e(".mf-zapier-web-hook").val(t.mf_zapier_webhook),e(".mf-slack-web-hook").val(t.mf_slack_webhook),e(".mf-paypal-email").val(t.mf_paypal_email),e(".mf-paypal-token").val(t.mf_paypal_token),e(".mf-stripe-image-url").val(t.mf_stripe_image_url),e(".mf-stripe-live-publishiable-key").val(t.mf_stripe_live_publishiable_key),e(".mf-stripe-live-secret-key").val(t.mf_stripe_live_secret_key),e(".mf-stripe-test-publishiable-key").val(t.mf_stripe_test_publishiable_key),e(".mf-stripe-test-secret-key").val(t.mf_stripe_test_secret_key),e(".mf-recaptcha-site-key").val(t.mf_recaptcha_site_key),e(".mf-recaptcha-secret-key").val(t.mf_recaptcha_secret_key),e("input.mf-form-modalinput-limit_status, .mf-form-modalinput-rest_api").trigger("change")}}e(".row-actions .edit a, .page-title-action, .metform-form-edit-btn, body.post-type-metform-form a.row-title").on("click",function(i){i.preventDefault();var a=0,m=e("#metform_form_modal"),r=e(this).parents(".column-title"),o=e("body").attr("data-metform-template-key");if(m.addClass("loading"),m.modal("show"),r.length>0){a=e(this).attr("data-metform-form-id"),"undefined"!==o&&(a=o),a=void 0!==a?a:r.find(".hidden").attr("id").split("_")[1];var s=e("#metform-form-modalinput-settings").attr("data-nonce");e.ajax({url:window.metform_api.resturl+"metform/v1/forms/get/"+a,type:"get",headers:{"X-WP-Nonce":s},dataType:"json",success:function(e){t(e),m.removeClass("loading")}})}else{t({form_title:e(".mf-form-modalinput-title").attr("data-default-value"),admin_email_body:"",admin_email_from:"",admin_email_reply_to:"",admin_email_subject:"",capture_user_browser_data:"",enable_admin_notification:"",limit_total_entries_status:"",limit_total_entries:"0",redirect_to:"",success_url:"",failed_cancel_url:"",require_login:"",store_entries:"1",success_message:e(".mf-form-modalinput-success_message").attr("data-default-value"),user_email_body:"",user_email_from:"",user_email_reply_to:"",user_email_subject:""}),m.removeClass("loading")}m.find("form").attr("data-mf-id",a)}),e(".metform-form-save-btn-editor").on("click",function(){e(".metform-form-save-btn-editor").attr("disabled",!0);var t=e("#metform-form-modalinput-settings");t.attr("data-open-editor","1"),t.trigger("submit")}),e("#metform-form-modalinput-settings").on("submit",function(t){t.preventDefault();var i=e("#metform-form-modal");i.addClass("loading"),e(".metform-form-save-btn-editor").attr("disabled",!0),e(".metform-form-save-btn").attr("disabled",!0);var a=e(this).serialize(),m=e(this).attr("data-mf-id"),r=e(this).attr("data-open-editor"),o=e(this).attr("data-editor-url"),s=e(this).attr("data-nonce");e.ajax({url:window.metform_api.resturl+"metform/v1/forms/update/"+m,type:"post",data:a,headers:{"X-WP-Nonce":s},dataType:"json",success:function(t){e("#message").css("display","block"),1==t.saved?(e("#post-"+t.data.id).find(".row-title").html(t.data.title),e("#message").removeClass("attr-alert-warning").addClass("attr-alert-success").html(t.status)):e("#message").removeClass("attr-alert-success").addClass("attr-alert-warning").html(t.status),setTimeout(function(){e("#message").css("display","none")},5e3),i.removeClass("loading"),"1"==r&&1==t.saved?setTimeout(function(){window.location.href=o+"?post="+t.data.id+"&action=elementor"},1500):"0"!=m?(e(".metform-form-save-btn-editor").removeAttr("disabled"),e(".metform-form-save-btn").removeAttr("disabled")):"0"==m&&setTimeout(function(){location.reload()},1500)}})}),e("input.mf-form-modalinput-limit_status").on("change",function(){e(this).is(":checked")?e("#limit_status").find("input").removeAttr("disabled"):e(this).is(":not(:checked)")&&e("#limit_status").find("input").attr("disabled","disabled")}),e("input.mf-form-user-enable").on("change",function(){e(this).is(":checked")?e(".mf-form-user-confirmation").show():e(this).is(":not(:checked)")&&e(".mf-form-user-confirmation").hide()}),e("input.mf-form-admin-enable").on("change",function(){e(this).is(":checked")?e(".mf-form-admin-notification").show():e(this).is(":not(:checked)")&&e(".mf-form-admin-notification").hide()}),e("input.mf-form-modalinput-rest_api").on("change",function(){e(this).is(":checked")?e(".mf-input-rest-api-group").show():e(this).is(":not(:checked)")&&e(".mf-input-rest-api-group").hide()}),e("input.mf-form-modalinput-mail_chimp").on("change",function(){e(this).is(":checked")?e(".mf-mailchimp").show():e(this).is(":not(:checked)")&&e(".mf-mailchimp").hide()}),e("input.mf-form-modalinput-zapier").on("change",function(){e(this).is(":checked")?e(".mf-zapier").show():e(this).is(":not(:checked)")&&e(".mf-zapier").hide()}),e("input.mf-form-modalinput-slack").on("change",function(){e(this).is(":checked")?e(".mf-slack").show():e(this).is(":not(:checked)")&&e(".mf-slack").hide()}),e("input.mf-form-modalinput-paypal").on("change",function(){e(this).is(":checked")?e(".mf-paypal").show():e(this).is(":not(:checked)")&&e(".mf-paypal").hide()}),e("input.mf-form-modalinput-stripe").on("change",function(){e(this).is(":checked")?e(".mf-stripe").show():e(this).is(":not(:checked)")&&e(".mf-stripe").hide()}),e("input.mf-form-modalinput-stripe_sandbox").on("change",function(){e(this).is(":checked")?e(".mf_stripe_sandbox").show():e(this).is(":not(:checked)")&&e(".mf_stripe_sandbox").hide()}),e("input.mf-form-modalinput-recaptcha").on("change",function(){e(this).is(":checked")?e(".mf-recaptcha").show():e(this).is(":not(:checked)")&&e(".mf-recaptcha").hide()}),e("input.mf-form-modalinput-capture_user_browser_data").click(function(){e(this).is(":checked")?(e("#multiple_submission").removeClass("hide_input"),e("#multiple_submission").addClass("show_input")):e(this).is(":not(:checked)")&&(e("#multiple_submission").removeClass("show_input"),e("#multiple_submission").addClass("hide_input"))}),e(".mf-settings-tab .nav-tab").on("click",function(t){t.preventDefault();var i=e(this).attr("href");e(this).addClass("nav-tab-active").siblings().removeClass("nav-tab-active"),e(i).addClass("active").siblings().removeClass("active")}),e(".mf-settings-tab .nav-tab").first().trigger("click"),e(".mf-recaptcha-version").on("change",function(){var t=e(this).val();e("#mf-"+t).fadeIn().siblings().hide()}),e(".mf-recaptcha-version").trigger("change"),e(".mf-form-modalinput-stripe_sandbox").on("change",function(){var t=e(this).parents(".attr-form-group").eq(0).next(".mf-form-modalinput-stripe_sandbox_keys");e(this).is(":checked")?t.fadeIn():t.fadeOut()}),e(".mf-form-modalinput-stripe_sandbox").trigger("change")});
|
1 |
+
jQuery(document).ready(function(e){"use strict";e(".row-actions .edit a, .page-title-action, .metform-form-edit-btn, body.post-type-metform-form a.row-title").on("click",function(t){t.preventDefault();var i=0,a=e("#metform_form_modal"),m=e(this).parents(".column-title"),s=e("body").attr("data-metform-template-key");if(a.addClass("loading"),a.modal("show"),m.length>0){i=e(this).attr("data-metform-form-id"),"undefined"!==s&&(i=s),i=void 0!==i?i:m.find(".hidden").attr("id").split("_")[1];var r=e("#metform-form-modalinput-settings").attr("data-nonce");e.ajax({url:window.metform_api.resturl+"metform/v1/forms/get/"+i,type:"get",headers:{"X-WP-Nonce":r},dataType:"json",success:function(e){l(e),a.removeClass("loading")}})}else{l({form_title:e(".mf-form-modalinput-title").attr("data-default-value"),admin_email_body:"",admin_email_from:"",admin_email_reply_to:"",admin_email_subject:"",capture_user_browser_data:"",enable_admin_notification:"",limit_total_entries_status:"",limit_total_entries:"0",redirect_to:"",success_url:"",failed_cancel_url:"",require_login:"",store_entries:"1",entry_title:"",success_message:e(".mf-form-modalinput-success_message").attr("data-default-value"),user_email_body:"",user_email_from:"",user_email_reply_to:"",user_email_subject:"",input_names:"Example: [mf-inputname]"}),a.removeClass("loading")}a.find("form").attr("data-mf-id",i)}),e(".metform-form-save-btn-editor").on("click",function(){e(".metform-form-save-btn-editor").attr("disabled",!0);var t=e("#metform-form-modalinput-settings");t.attr("data-open-editor","1"),t.trigger("submit")}),e("#metform-form-modalinput-settings").on("submit",function(t){t.preventDefault();var i=e("#metform-form-modal");i.addClass("loading"),e(".metform-form-save-btn-editor").attr("disabled",!0),e(".metform-form-save-btn").attr("disabled",!0);var a=e(this).serialize(),m=e(this).attr("data-mf-id"),s=e(this).attr("data-open-editor"),r=e(this).attr("data-editor-url"),o=e(this).attr("data-nonce");e.ajax({url:window.metform_api.resturl+"metform/v1/forms/update/"+m,type:"post",data:a,headers:{"X-WP-Nonce":o},dataType:"json",success:function(t){e("#message").css("display","block"),1==t.saved?(e("#post-"+t.data.id).find(".row-title").html(t.data.title),e("#message").removeClass("attr-alert-warning").addClass("attr-alert-success").html(t.status)):e("#message").removeClass("attr-alert-success").addClass("attr-alert-warning").html(t.status),setTimeout(function(){e("#message").css("display","none")},5e3),i.removeClass("loading"),"1"==s&&1==t.saved?setTimeout(function(){window.location.href=r+"?post="+t.data.id+"&action=elementor"},1500):"0"!=m?(e(".metform-form-save-btn-editor").removeAttr("disabled"),e(".metform-form-save-btn").removeAttr("disabled")):"0"==m&&setTimeout(function(){location.reload()},1500)}})});var t=e(".mf-entry-title"),i=e(".mf-form-user-confirmation"),a=e(".mf-form-admin-notification"),m=e(".mf-input-rest-api-group"),s=e(".mf-mailchimp"),r=e(".mf-zapier"),o=e(".mf-slack"),n=e(".mf-paypal"),d=e(".mf-stripe");function l(l){if(t.hide(),i.hide(),a.hide(),m.hide(),s.hide(),r.hide(),o.hide(),n.hide(),d.hide(),""!=l.form_title){e(".mf-form-modalinput-title").val(l.form_title),e(".mf-form-modalinput-success_message").val(l.success_message),e(".mf-entry-title-input").val(void 0!==l.entry_title&&""!=l.entry_title?l.entry_title:void 0===l.entry_title||""==l.entry_title?"Entry # [mf_id]":""),e(".mf-form-modalinput-redirect_to").val(l.redirect_to),e(".mf-form-modalinput-success_url").val(l.success_url),e(".mf-form-modalinput-failed_cancel_url").val(l.failed_cancel_url),e(".mf-form-modalinput-limit_total_entries").val(l.limit_total_entries);var c=e(".mf-form-modalinput-store_entries");"1"==l.store_entries?(c.attr("checked",!0),t.show()):(c.removeAttr("checked"),t.hide());var f=e(".mf-form-modalinput-hide_form_after_submission");"1"==l.hide_form_after_submission?f.attr("checked",!0):f.removeAttr("checked");var h=e(".mf-form-modalinput-require_login");"1"==l.require_login?h.attr("checked",!0):h.removeAttr("checked");var _=e(".mf-form-modalinput-limit_status");"1"==l.limit_total_entries_status?_.attr("checked",!0):_.removeAttr("checked");var p=e(".mf-form-modalinput-count_views");"1"==l.count_views?p.attr("checked",!0):p.removeAttr("checked");var u=e(".mf-form-modalinput-multiple_submission");"1"==l.multiple_submission?u.attr("checked",!0):u.removeAttr("checked");var v=e(".mf-form-modalinput-enable_recaptcha");"1"==l.enable_recaptcha?v.attr("checked",!0):v.removeAttr("checked");var k=e(".mf-form-modalinput-capture_user_browser_data");"1"==l.capture_user_browser_data?(k.attr("checked",!0),e("#multiple_submission").removeClass("hide_input"),e("#multiple_submission").addClass("show_input")):k.removeAttr("checked"),e(".mf-form-user-email-subject").val(l.user_email_subject),e(".mf-form-user-email-from").val(l.user_email_from),e(".mf-form-user-reply-to").val(l.user_email_reply_to),e(".mf-form-user-email-body").val(l.user_email_body);var b=e(".mf-form-user-enable");"1"==l.enable_user_notification?(b.attr("checked",!0),i.show()):(b.removeAttr("checked"),i.hide());var g=e(".mf-form-user-submission-copy");"1"==l.user_email_attach_submission_copy?g.attr("checked",!0):g.removeAttr("checked"),e(".mf-form-admin-email-subject").val(l.admin_email_subject),e(".mf-form-admin-email-from").val(l.admin_email_from),e(".mf-form-admin-email-to").val(l.admin_email_to),e(".mf-form-admin-reply-to").val(l.admin_email_reply_to),e(".mf-form-admin-email-body").val(l.admin_email_body);var y=e(".mf-form-admin-enable");"1"==l.enable_admin_notification?(y.attr("checked",!0),a.show()):(y.removeAttr("checked"),a.hide());var w=e(".mf-form-admin-submission-copy");"1"==l.admin_email_attach_submission_copy?w.attr("checked",!0):w.removeAttr("checked");var C=e(".mf-form-modalinput-rest_api");"1"==l.mf_rest_api?(C.attr("checked",!0),e(".mf-rest-api").show()):(C.removeAttr("checked"),e(".mf-rest-api").hide());var A=e(".mf-form-modalinput-mail_chimp");"1"==l.mf_mail_chimp?(A.attr("checked",!0),s.show()):(A.removeAttr("checked"),s.hide());var x=e(".mf-form-modalinput-zapier");"1"==l.mf_zapier?(x.attr("checked",!0),r.show()):(x.removeAttr("checked",!0),r.hide());var j=e(".mf-form-modalinput-slack");"1"==l.mf_slack?(j.attr("checked",!0),o.show()):(j.removeAttr("checked",!0),o.hide());var z=e(".mf-form-modalinput-paypal");"1"==l.mf_paypal?(z.attr("checked",!0),n.show()):(z.removeAttr("checked",!0),n.hide());var T=e(".mf-form-modalinput-stripe");"1"==l.mf_stripe?(T.attr("checked",!0),d.show()):(T.removeAttr("checked",!0),d.hide());T=e(".mf-form-modalinput-stripe");"1"==l.mf_stripe?(T.attr("checked",!0),d.show()):(T.removeAttr("checked",!0),d.hide());var q=e(".mf-form-modalinput-paypal_sandbox");"1"==l.mf_paypal_sandbox?q.attr("checked",!0):q.removeAttr("checked",!0);var D=e(".mf-form-modalinput-stripe_sandbox");"1"==l.mf_stripe_sandbox?D.attr("checked",!0):D.removeAttr("checked",!0);var P=l.mf_rest_api_method&&l.mf_rest_api_method.length?l.mf_rest_api_method:"POST";e('.mf-rest-api-method option[value="'+P+'"]').prop("selected",!0),e(".mf-rest-api-url").val(l.mf_rest_api_url),e(".mf-mailchimp-api-key").val(l.mf_mailchimp_api_key),e(".mf-mailchimp-list-id").val(l.mf_mailchimp_list_id),e(".mf-zapier-web-hook").val(l.mf_zapier_webhook),e(".mf-slack-web-hook").val(l.mf_slack_webhook),e(".mf-paypal-email").val(l.mf_paypal_email),e(".mf-paypal-token").val(l.mf_paypal_token),e(".mf-stripe-image-url").val(l.mf_stripe_image_url),e(".mf-stripe-live-publishiable-key").val(l.mf_stripe_live_publishiable_key),e(".mf-stripe-live-secret-key").val(l.mf_stripe_live_secret_key),e(".mf-stripe-test-publishiable-key").val(l.mf_stripe_test_publishiable_key),e(".mf-stripe-test-secret-key").val(l.mf_stripe_test_secret_key),e(".mf-recaptcha-site-key").val(l.mf_recaptcha_site_key),e(".mf-recaptcha-secret-key").val(l.mf_recaptcha_secret_key),e("input.mf-form-modalinput-limit_status, .mf-form-modalinput-rest_api").trigger("change")}}e("input.mf-form-modalinput-store_entries").on("change",function(){e(this).is(":checked")?t.show():e(this).is(":not(:checked)")&&t.hide()}),e("input.mf-form-modalinput-limit_status").on("change",function(){e(this).is(":checked")?e("#limit_status").find("input").removeAttr("disabled"):e(this).is(":not(:checked)")&&e("#limit_status").find("input").attr("disabled","disabled")}),e("input.mf-form-user-enable").on("change",function(){e(this).is(":checked")?i.show():e(this).is(":not(:checked)")&&i.hide()}),e("input.mf-form-admin-enable").on("change",function(){e(this).is(":checked")?a.show():e(this).is(":not(:checked)")&&a.hide()}),e("input.mf-form-modalinput-rest_api").on("change",function(){e(this).is(":checked")?m.show():e(this).is(":not(:checked)")&&m.hide()}),e("input.mf-form-modalinput-mail_chimp").on("change",function(){e(this).is(":checked")?s.show():e(this).is(":not(:checked)")&&s.hide()}),e("input.mf-form-modalinput-zapier").on("change",function(){e(this).is(":checked")?r.show():e(this).is(":not(:checked)")&&r.hide()}),e("input.mf-form-modalinput-slack").on("change",function(){e(this).is(":checked")?o.show():e(this).is(":not(:checked)")&&o.hide()}),e("input.mf-form-modalinput-paypal").on("change",function(){e(this).is(":checked")?n.show():e(this).is(":not(:checked)")&&n.hide()}),e("input.mf-form-modalinput-stripe").on("change",function(){e(this).is(":checked")?stripe.show():e(this).is(":not(:checked)")&&stripe.hide()}),e("input.mf-form-modalinput-stripe_sandbox").on("change",function(){e(this).is(":checked")?e(".mf_stripe_sandbox").show():e(this).is(":not(:checked)")&&e(".mf_stripe_sandbox").hide()}),e("input.mf-form-modalinput-capture_user_browser_data").click(function(){e(this).is(":checked")?(e("#multiple_submission").removeClass("hide_input"),e("#multiple_submission").addClass("show_input")):e(this).is(":not(:checked)")&&(e("#multiple_submission").removeClass("show_input"),e("#multiple_submission").addClass("hide_input"))}),e(".mf-settings-tab .mf-setting-nav-link").on("click",function(t){if(!e(this).hasClass("mf-setting-nav-hidden")){t.preventDefault();var i=e(this).attr("href");window.location.hash=i,e(this).parent().addClass("nav-tab-active").siblings().removeClass("nav-tab-active"),e(i).addClass("active").siblings().removeClass("active")}}),e(".mf-setting-nav-link").on("click",function(t){e(this).hasClass("mf-setting-nav-hidden")?t.preventDefault():(e(this).parents(".nav-tab-wrapper").find("a").removeClass("top").removeClass("bottom"),e(this).parents("li").prev().find("a").addClass("top"),e(this).parents("li").next().find("a").addClass("bottom"))});var c=e(".mf-settings-tab .mf-setting-nav-link").eq(1).attr("href");window.location.hash&&(c=window.location.hash),e('.mf-settings-tab .mf-setting-nav-link[href="'+c+'"]').trigger("click"),e(".mf-recaptcha-version").on("change",function(){var t=e(this).val();e("#mf-"+t).fadeIn().siblings().hide()}),e(".mf-recaptcha-version").trigger("change"),e(".mf-form-modalinput-stripe_sandbox").on("change",function(){var t=e(this).parents(".attr-form-group").eq(0).next(".mf-form-modalinput-stripe_sandbox_keys");e(this).is(":checked")?t.fadeIn():t.fadeOut()}),e(".mf-form-modalinput-stripe_sandbox").trigger("change")});
|
public/assets/js/inputs.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(t,e){"use strict";var
|
1 |
+
!function(t,e){"use strict";var n={init:function(){var a={"mf-range.default":n.RangeInput,"mf-date.default":n.DateInput,"mf-time.default":n.TimeInput,"mf-select.default":n.SelectInput,"mf-multi-select.default":n.MultiSelectInput,"mf-rating.default":n.Rating,"mf-file-upload.default":n.fileUpload,"metform.default":n.Metform};t.each(a,function(t,n){e.hooks.addAction("frontend/element_ready/"+t,n)})},RangeInput:function(e){var n=e.find(".mf-rs-range"),a=n.attr("min"),i=n.attr("max"),r=n.attr("step"),f=n.attr("range"),l={step:r,min:a,max:i};"true"==f&&(l.range=Boolean(f)),n.asRange(l),n.on("asRange::change",function(e){var n=t(this).asRange("get");Array.isArray(n)&&(n=Number(n[1])-Number(n[0])),t(this).val(n).trigger("change").valid()})},DateInput:function(e){var n=e.find(".mf-date-input"),a=n.attr("data-mfMinDate"),i=n.attr("data-mfMaxDate"),r=n.attr("data-mfRangeDate"),f=n.attr("data-mfDateFormat"),l=n.attr("data-mfEnableTime"),o=n.attr("data-mfDisableDates"),m={appendTo:e.find(".mf-input-wrapper").get(0),onReady:function(e,n,a){a.isMobile&&t(a.mobileInput).attr("step",null)}};"yes"==l&&(m.enableTime=!0,f+=" H:i"),""!=o&&(m.disable=JSON.parse(o)),""!=a&&(m.minDate=a),""!=i&&(m.maxDate=i),"yes"==r&&(m.mode="range"),m.dateFormat=f,n.flatpickr(m)},TimeInput:function(e){var n=e.find(".mf-input-time"),a=n.attr("data-mftime24h"),i={appendTo:e.find(".mf-input-wrapper").get(0),dateFormat:"h:i K",enableTime:!0,noCalendar:!0,onReady:function(e,n,a){a.isMobile&&t(a.mobileInput).attr("step",null)}};"yes"==a&&(i.dateFormat="H:i",i.time_24hr=!0),n.flatpickr(i)},SelectInput:function(t){t.find("select.mf-input-select").select2({dropdownParent:t.find(".mf-input-wrapper")})},MultiSelectInput:function(e){var n=e.find("select.mf-input-multiselect");n.select2({dropdownParent:e.find(".mf-input-wrapper")}),n.on("change",function(){t(this).valid()})},Rating:function(e){var n=e.find(".mf-input-rating li");n.on("mouseover",function(){var e=parseInt(t(this).data("value"),10);t(this).parent().children("li.star-li").each(function(n){n<e?t(this).addClass("hover"):t(this).removeClass("hover")})}).on("mouseout",function(){t(this).parent().children("li.star-li").each(function(e){t(this).removeClass("hover")})}),n.on("click",function(){var e=parseInt(t(this).data("value"),10),n=t(this).parent().children("li.star-li");for(let e=0;e<n.length;e++)t(n[e]).removeClass("selected");for(let a=0;a<e;a++)t(n[a]).addClass("selected");var a=t(this).parents().find("input.mf-input-hidden");a.val(e).trigger("change"),a.valid()})},fileUpload:function(e){e.find(".mf-input-file-upload").on("change",function(){var n=null!=t(this).val().match(/\\([^\\]+)$/)?t(this).val().match(/\\([^\\]+)$/)[1]:"";""!=n&&e.find(".mf-file-name span").html(n)})},Metform:function(t){var e=t.find(".metform-form-content");"undefined"!=typeof metformSubmision&&metformSubmision(e)}};t(window).on("elementor/frontend/init",n.init)}(jQuery,window.elementorFrontend);
|
public/assets/js/submission.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
var onloadMetFormCallback=function(){jQuery(".recaptcha_site_key").each(function(e){var t=jQuery(this),a=t.parents(".metform-form-content");void 0!==a.data("site-key")&&""!=a.data("site-key")&&(t.attr("id",t.attr("id")+"_"+e),grecaptcha.render("recaptcha_site_key_"+e,{sitekey:a.data("site-key")}))})};function metformSubmision(e){var t
|
1 |
+
var onloadMetFormCallback=function(){jQuery(".recaptcha_site_key").each(function(e){var t=jQuery(this),a=t.parents(".metform-form-content");void 0!==a.data("site-key")&&""!=a.data("site-key")&&(t.attr("id",t.attr("id")+"_"+e),grecaptcha.render("recaptcha_site_key_"+e,{sitekey:a.data("site-key")}))})};function metformSubmision(e){var t;(t=jQuery).validator.addMethod("regx",function(e,t,a){return new RegExp(a).test(e)},t.validator.format("Please match the expression {0}")),t.validator.addMethod("wordLength",function(e,t,a){var n=e.trim().split(/\s+/),i=a.min,r=a.max;return!i&&r&&(i=1),n.filter(()=>n.length>=i&&(!r||n.length<=r)).length},t.validator.format("Please match word length.")),jQuery.validator.addMethod("ratingValidate",function(e,a,n){return!t(a).prop("required")||t(a).parents(".mf-input-wrapper").find(".mf-input-rating li.selected").length},t.validator.format(mf_submission.default_required_message)),t.validator.addClassRules(".mf-input",{required:!0}),t(document).on("validation.mfForm",function(e,a){t(a).validate({ignore:[],rules:{"mf-rating":{ratingValidate:!0}},errorPlacement:function(e,t){t.parents(".mf-input-wrapper").append(e)},highlight:function(e){t(e).parents(".mf-input-wrapper").addClass("mf-field-error")},unhighlight:function(e){t(e).parents(".mf-input-wrapper").removeClass("mf-field-error")}}),t(a).find(".mf-input-do-validate").each(function(){var e=t(this).data("validation"),a=t(this).attr("min"),n=t(this).attr("max"),i={messages:{required:mf_submission.default_required_message,email:mf_submission.default_required_message,url:mf_submission.default_required_message,range:mf_submission.default_required_message,max:mf_submission.default_required_message,min:mf_submission.default_required_message}};void 0!==e&&""!=e&&("none"!==e.validation_type&&(i.required=!0,i.messages.required=e.warning_message),"by_character_length"===e.validation_type?(e.min_length&&(i.minlength=e.min_length,i.messages.minlength=e.warning_message),e.max_length&&(i.maxlength=e.max_length,i.messages.maxlength=e.warning_message),i.messages.email=e.warning_message):"by_word_length"===e.validation_type?(i.wordLength={},i.messages.wordLength=e.warning_message,e.min_length&&(i.wordLength.min=e.min_length),e.max_length&&(i.wordLength.max=e.max_length),i.messages.email=e.warning_message):"by_expresssion_based"===e.validation_type&&(i.messages.regx=e.warning_message,e.expression&&t(this).rules("add",{regx:e.expression}),i.messages.email=e.warning_message)),(a||n)&&(i.range=[a,n]),i.required=!0,t(this).rules("add",i)})}),t(document).on("submit",".metform-form-content",async function(e){if(e.preventDefault(),t(document).trigger("validation.mfForm",t(this)),t(this).valid()){var a=t(this),n="";a.find('.mf-input[type="tel"]').each(function(){var e,a=t(this),n=a.val();e=a.siblings(".iti__flag-container").find(".iti__selected-dial-code").text(),a.val(e+n)}),a.find(".g-recaptcha-response-v3").length&&(n="undefined"!=grecaptcha?await grecaptcha.execute(a.data("site-key"),{action:"mf_recaptcha_v3"}):"",a.find(".g-recaptcha-response-v3").val(n));var i=a.parent().find(".metform-msg"),r=a.attr("action"),s=new FormData(this),o=a.attr("data-nonce");i.length>1&&a.parent().find(".metform-inx").remove(),t.ajax({url:r,type:"POST",dataType:"JSON",data:s,processData:!1,contentType:!1,headers:{"X-WP-Nonce":o},success:function(e){var n=Number(e.status),r="";if(t.each(e.error,function(e,t){r+=t+"<br>"}),r.replace(/<br>+$/,""),1==n?(i.css("display","block"),i.removeClass("attr-alert-warning"),i.addClass("attr-alert-success"),i.html(e.data.message),setTimeout(function(){i.css("display","none")},8e3),a.trigger("reset"),a.find(".metform-step-item").removeClass("active prev next").first().addClass("active").next().addClass("next"),a.find(".elementor-top-section").first().addClass("active").find(".metform-btn").attr("type","submit").end().siblings().removeClass("active"),a.find(".elementor-section-wrap").css({transform:"translateX(0)"}),a.find(".mf-input-select, .mf-input-multiselect").trigger("change"),a.find(".mf-input-rating > li").removeClass("selected").first().addClass("selected"),a.find(".mf-input-rating").next().val("").trigger("change"),a.find(".mf-input-file-upload").val("").parent().find(".mf-file-name span").html("No file chosen."),a.find(".mf-input-like-dislike").val("").trigger("change"),a.find(".mf-parent-like-dislike a").removeClass("green").removeClass("red"),a.find(".asRange > .asRange-pointer").css("left","0%"),a.find(".asRange > .asRange-selected").css({left:"0%",width:"0%"}),a.find(".mf-refresh-captcha").trigger("click")):(i.css("display","block"),i.removeClass("attr-alert-success"),i.addClass("attr-alert-warning"),i.html(r),setTimeout(function(){i.css("display","none")},8e3)),1==n&&""!=e.data.hide_form&&setTimeout(function(){a.css("display","none")},2e3),"stripe"==e.data.payment_method){if(res=e.data.payment_data,!res.keys||""==res.keys)return void alert("Please set your Stripe Keys in form settings.");var s=StripeCheckout.configure({key:res.keys,image:res.image_url,locale:"auto",token:function(t){if(t.id){res.stripe_token=t.id;var a={sandbox:res.sandbox};jQuery.ajax({data:a,type:"get",url:e.data.ajax_stripe+"&token="+t.id,headers:{"X-WP-Nonce":o},success:function(e){e.status?window.location.href=e.redirect_url:alert(e)}})}else alert("Sorry!! Payment token invalid")}});return s.open({name:String(res.name_post),description:" Form No.: "+String(res.description),amount:100*Number(res.amount),currency:res.currency_code}),void window.addEventListener("popstate",function(){s.close()})}1==n&&""!=e.data.redirect_to&&setTimeout(function(){window.location.href=e.data.redirect_to},1500)}})}})}jQuery(document).ready(function(e){(e("body").hasClass("single-metform-form")||e(".mf-form-shortcode").length)&&void 0!==metformSubmision&&metformSubmision()});
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: ataurr, wpmet, emrnco, sayedulsayem
|
|
3 |
Tags: Form builder, Elementor form builder, contact form, custom form, forms, drag & drop form builder
|
4 |
Requires at least: 4.8
|
5 |
Tested up to: 5.3
|
6 |
-
Stable tag: 1.2.
|
7 |
Requires PHP: 5.6
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
@@ -22,7 +22,8 @@ MetForm is not only a contact form plugin, but it is also a complete drag & drop
|
|
22 |
Metform builder contact form gives you full flexibility to build any form on the fly with metform. Want to make any complex from? complex style? no problem you can build any types of from with metform. Like you want to use an image or video under a form and want to show the user, you can do so... use any elementor addons inside metform builder form without any restrictions.
|
23 |
Metform built with elementor. Every field is an elementor widget.
|
24 |
|
25 |
-
|
|
|
26 |
|
27 |
|
28 |
Metform allows you to create any beautiful contact forms, feedback form, subscription forms, and other types of forms for your site in minutes, not hours! Full flexibility on your own hand.
|
@@ -139,6 +140,7 @@ You can use MailChimp in your contact form also create MailChimp signup forms wi
|
|
139 |
- Enable/Disable icon inside button
|
140 |
- Add/Remove button text and button icon
|
141 |
- Styleable Repeater label, Field label, Field input and Button
|
|
|
142 |
- **Google Map Location Input Field:** Do you want to show your location to the user so they can easily get you? Use our premium Google Map Location to pinpoint the exact location which displays on your form with customizable content and styles.
|
143 |
- **Color Picker Input Field:** Easily select any color from drop down color palette to design your form in an eye-catching way. You just have to click on the choosable color and the color will appear accordingly.
|
144 |
- Show/Hide label
|
@@ -185,39 +187,51 @@ Drag & Drop form builder
|
|
185 |
- Select your validation type by character length, by word length, or by expression based.
|
186 |
- Select your position, level, help text at your choice
|
187 |
- Editable warning message section
|
188 |
-
- **Conditional
|
189 |
- Enable or Disable Conditional Logic area
|
190 |
- Select condition match criteria And/OR
|
191 |
- Select action: Show /Hide your field
|
|
|
192 |
|
193 |
-
|
194 |
-
- **Calculation Fields List:** Do you want to perform calculations among Form Fields to display automatic calculated value? Our premium calculation Field will help you to perform your calculations and display the results within seconds.
|
195 |
- Store Entries: Save and Calculate submitted form data
|
196 |
- Calculate the form views
|
|
|
197 |
|
198 |
-
|
199 |
-
**REST API Support:** If you want to get data in different third party apps that users give input to fill out your form, use our most premium features Rest API Support. You can get form submission data and submission notification to Third Party API URL or Webhook by integrating our Rest API very easily.
|
200 |
- Enable/Disable Rest API
|
201 |
- Give Rest API URL/Webhook
|
202 |
- Select “Get” from the drop-down for requesting data from specified URL
|
203 |
- Select “Post” from the drop-down for sending data from specified URL
|
204 |
|
205 |
-
**Zapier Integration:** Introducing our most powerful and awesome features called “Zapier”. With this amazing feature you can integrate your form with thousands of popular apps or webhook without any coding.
|
206 |
Connect with Gmail, Slack, Mailchimp, and many more.
|
207 |
- Clickable Enable/Disable Toggle
|
208 |
- Enter desired Zapier Webhook
|
209 |
-
|
|
|
210 |
- Redirect to successful URL If passed
|
211 |
- Redirect to Failure/Cancel URL If failed
|
212 |
- Integrate Paypal with Yes/No toggle
|
213 |
|
|
|
214 |
|
215 |
|
216 |
|
217 |
|
218 |
|
219 |
== Changelog ==
|
220 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
221 |
New: GDPR consent input field
|
222 |
Tweak: Email template included uploaded file
|
223 |
Tweak: Email template design improvement
|
3 |
Tags: Form builder, Elementor form builder, contact form, custom form, forms, drag & drop form builder
|
4 |
Requires at least: 4.8
|
5 |
Tested up to: 5.3
|
6 |
+
Stable tag: 1.2.2
|
7 |
Requires PHP: 5.6
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
22 |
Metform builder contact form gives you full flexibility to build any form on the fly with metform. Want to make any complex from? complex style? no problem you can build any types of from with metform. Like you want to use an image or video under a form and want to show the user, you can do so... use any elementor addons inside metform builder form without any restrictions.
|
23 |
Metform built with elementor. Every field is an elementor widget.
|
24 |
|
25 |
+
|
26 |
+
[ **Check our Live Demos** ](https://products.wpmet.com/metform/#demo) - [ **Buy Pro** ](https://products.wpmet.com/metform/pricing/)
|
27 |
|
28 |
|
29 |
Metform allows you to create any beautiful contact forms, feedback form, subscription forms, and other types of forms for your site in minutes, not hours! Full flexibility on your own hand.
|
140 |
- Enable/Disable icon inside button
|
141 |
- Add/Remove button text and button icon
|
142 |
- Styleable Repeater label, Field label, Field input and Button
|
143 |
+
|
144 |
- **Google Map Location Input Field:** Do you want to show your location to the user so they can easily get you? Use our premium Google Map Location to pinpoint the exact location which displays on your form with customizable content and styles.
|
145 |
- **Color Picker Input Field:** Easily select any color from drop down color palette to design your form in an eye-catching way. You just have to click on the choosable color and the color will appear accordingly.
|
146 |
- Show/Hide label
|
187 |
- Select your validation type by character length, by word length, or by expression based.
|
188 |
- Select your position, level, help text at your choice
|
189 |
- Editable warning message section
|
190 |
+
- **Conditional logic:** Give your questions in category wise. Conditional Logic allows a user to select one category and the given question will appear only for that section otherwise it will remain invisible. Here comes our most unique field is “Conditional Logic”.
|
191 |
- Enable or Disable Conditional Logic area
|
192 |
- Select condition match criteria And/OR
|
193 |
- Select action: Show /Hide your field
|
194 |
+
[ **Conditional logic** ](https://www.youtube.com/watch?v=UDQOCwO7lhI) - [ **Conditional logic demo 1** ](https://products.wpmet.com/metform/pro-demos/conditional-form-1/) - [ **Conditional logic demo 2** ](https://products.wpmet.com/metform/pro-demos/conditional-form-2/) - [ **Conditional logic demo 3** ](https://products.wpmet.com/metform/pro-demos/conditional-form-3/) - [ **Conditional logic demo 4** ](https://products.wpmet.com/metform/pro-demos/conditional-form-4/)
|
195 |
|
196 |
+
- **Calculation :** Do you want to perform calculations among Form Fields to display automatic calculated value? Our premium calculation Field will help you to perform your calculations and display the results within seconds.
|
|
|
197 |
- Store Entries: Save and Calculate submitted form data
|
198 |
- Calculate the form views
|
199 |
+
[ **Calculation video** ](https://www.youtube.com/watch?v=20nsox2cZYc) - [ **Calculation demo 1** ](https://products.wpmet.com/metform/pro-demos/calculation-form-1/) - [ **Calculation demo 2** ](https://products.wpmet.com/metform/pro-demos/calculation-form-2/)
|
200 |
|
201 |
+
- **REST API Support:** If you want to get data in different third party apps that users give input to fill out your form, use our most premium features Rest API Support. You can get form submission data and submission notification to Third Party API URL or Webhook by integrating our Rest API very easily.
|
|
|
202 |
- Enable/Disable Rest API
|
203 |
- Give Rest API URL/Webhook
|
204 |
- Select “Get” from the drop-down for requesting data from specified URL
|
205 |
- Select “Post” from the drop-down for sending data from specified URL
|
206 |
|
207 |
+
- **Zapier Integration:** Introducing our most powerful and awesome features called “Zapier”. With this amazing feature you can integrate your form with thousands of popular apps or webhook without any coding.
|
208 |
Connect with Gmail, Slack, Mailchimp, and many more.
|
209 |
- Clickable Enable/Disable Toggle
|
210 |
- Enter desired Zapier Webhook
|
211 |
+
|
212 |
+
- **Payment Method:** Get payments from your form. With our Payment Method features you can choose your payment gateway like Paypal.
|
213 |
- Redirect to successful URL If passed
|
214 |
- Redirect to Failure/Cancel URL If failed
|
215 |
- Integrate Paypal with Yes/No toggle
|
216 |
|
217 |
+
- **Webhook**: [ **Webhook video** ](https://www.youtube.com/watch?v=2NpbK_dybWg)
|
218 |
|
219 |
|
220 |
|
221 |
|
222 |
|
223 |
== Changelog ==
|
224 |
+
Version v1.2.2
|
225 |
+
New: Setting dashboard design
|
226 |
+
New: Added new default template preview
|
227 |
+
Tweak: added admin pro notice
|
228 |
+
Fix: Date and time widget issues fixed on iPhone
|
229 |
+
Fix: iframe error fixed
|
230 |
+
Fix: Fontawesome icon missing issues
|
231 |
+
Tweak: JS improvement
|
232 |
+
Tweak: CSS Improvement
|
233 |
+
|
234 |
+
Version 1.2.1
|
235 |
New: GDPR consent input field
|
236 |
Tweak: Email template included uploaded file
|
237 |
Tweak: Email template design improvement
|
templates/1/content.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"version":"0.4","title":"Contact Form Simple 1","type":"section","content":[{"id":"280b","settings":{"gap":"no"},"elements":[{"id":"bda","settings":{"_column_size":100},"elements":[{"id":"78f6","settings":{"gap":"extended","structure":"20"},"elements":[{"id":"21b","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"442a","settings":{"mf_input_label":"First Name","mf_input_name":"mf-first-name","mf_input_placeholder":"Anderson","mf_input_help_text":"Enter your first name here","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_min_length":1,"mf_input_label_color":"#101010","mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_input_required":"yes","mf_input_required_indicator_color":"#101010"},"elements":[],"isInner":false,"widgetType":"mf-text","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"3191","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"4fb8","settings":{"mf_input_label":"Last Name","mf_input_name":"mf-last-name","mf_input_placeholder":"Mikoo","mf_input_help_text":"Enter your last name here","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_input_required":"yes","mf_input_required_indicator_color":"#101010"},"elements":[],"isInner":false,"widgetType":"mf-text","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"1993","settings":{"gap":"extended","structure":"20"},"elements":[{"id":"2f64","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"24f7","settings":{"mf_input_label":"Email Address","mf_input_name":"mf-email","mf_input_placeholder":"","mf_input_help_text":"Example: user@website.com","mf_input_required":"yes","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-email","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"2e82","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"55cd","settings":{"mf_input_label":"Subject","mf_input_name":"mf-subject","mf_input_placeholder":"","mf_input_help_text":"How can we help you?","mf_input_required":"yes","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-text","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"7185","settings":{"gap":"extended"},"elements":[{"id":"6fc","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0,"margin":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"5dd0","settings":{"mf_input_label":"Comments \/ Questions","mf_input_name":"mf-comment","mf_input_placeholder":"","mf_input_required":"yes","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_textarea_field_height":{"unit":"px","size":140,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"mf-textarea","elType":"widget"},{"id":"1c9","settings":{"_margin":{"unit":"px","top":"40","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-recaptcha","elType":"widget"},{"id":"30ce","settings":{"mf_btn_text":"Send Message","mf_btn_align":"left","mf_btn_text_padding":{"unit":"px","top":"15","right":"20","bottom":"15","left":"20","isLinked":false},"mf_btn_typography_typography":"custom","mf_btn_typography_font_family":"Helvetica","mf_btn_typography_font_size":{"unit":"px","size":16,"sizes":[]},"mf_btn_typography_font_weight":"500","mf_btn_typography_line_height":{"unit":"px","size":18,"sizes":[]},"mf_btn_bg_color_background":"classic","mf_btn_bg_color_color":"#4285f4","mf_btn_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"mf_btn_box_shadow_group_box_shadow_type":"yes","mf_btn_box_shadow_group_box_shadow":{"horizontal":0,"vertical":7,"blur":15,"spread":0,"color":"rgba(66,133,244,0.3)"},"_margin":{"unit":"px","top":"40","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-button","elType":"widget"},{"id":"3bef","settings":{"_padding":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false},"_margin":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-response","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}]}
|
1 |
+
{"version":"0.4","title":"Simple Contact Form 1","type":"page","content":[{"id":"6f47c977","settings":{"gap":"no","background_background":"classic","background_color":"#ffffff","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":30,"vertical":30,"blur":80,"spread":0,"color":"rgba(0,0,0,0.1)"},"padding":{"unit":"px","top":"32","right":"35","bottom":"15","left":"35","isLinked":false},"padding_tablet":{"unit":"px","top":"35","right":"15","bottom":"35","left":"15","isLinked":false}},"elements":[{"id":"491e114e","settings":{"_column_size":100},"elements":[{"id":"32e5cf2b","settings":{"gap":"extended","structure":"20"},"elements":[{"id":"1d7d72ee","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"489b13f8","settings":{"mf_input_label":"First Name","mf_input_name":"mf-first-name","mf_input_placeholder":"Anderson","mf_input_help_text":"Enter your first name here","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_min_length":1,"mf_input_label_color":"#101010","mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_input_required":"yes","mf_input_required_indicator_color":"#101010","mf_input_validation_warning_message":"Something went wrong."},"elements":[],"isInner":false,"widgetType":"mf-text","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"6ee9d04d","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"20d2c657","settings":{"mf_input_label":"Last Name","mf_input_name":"mf-last-name","mf_input_placeholder":"Mikoo","mf_input_help_text":"Enter your last name here","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_input_required":"yes","mf_input_required_indicator_color":"#101010","mf_input_validation_warning_message":"Something went wrong."},"elements":[],"isInner":false,"widgetType":"mf-text","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"6500652b","settings":{"gap":"extended","structure":"20"},"elements":[{"id":"4b4a901a","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"3f9e2ff8","settings":{"mf_input_label":"Email Address","mf_input_name":"mf-email","mf_input_placeholder":"","mf_input_help_text":"Example: user@website.com","mf_input_required":"yes","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_input_validation_warning_message":"Something went wrong."},"elements":[],"isInner":false,"widgetType":"mf-email","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"76dec3d0","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"4bb51640","settings":{"mf_input_label":"Subject","mf_input_name":"mf-subject","mf_input_placeholder":"","mf_input_help_text":"How can we help you?","mf_input_required":"yes","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_input_validation_warning_message":"Something went wrong."},"elements":[],"isInner":false,"widgetType":"mf-text","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"1f9128e6","settings":{"gap":"extended"},"elements":[{"id":"20c49643","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0,"margin":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"46fd3e83","settings":{"mf_input_label":"Comments \/ Questions","mf_input_name":"mf-comment","mf_input_placeholder":"","mf_input_required":"yes","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_textarea_field_height":{"unit":"px","size":140,"sizes":[]},"mf_input_validation_warning_message":"Something went wrong."},"elements":[],"isInner":false,"widgetType":"mf-textarea","elType":"widget"},{"id":"382ffc7","settings":{"_margin":{"unit":"px","top":"40","right":"0","bottom":"0","left":"0","isLinked":false},"mf_recaptcha_type":"recaptcha-v2","mf_input_label":"reCAPTCHA","mf_input_placeholder":"reCAPTCHA"},"elements":[],"isInner":false,"widgetType":"mf-recaptcha","elType":"widget"},{"id":"52c73697","settings":{"mf_btn_text":"Send Message","mf_btn_align":"left","mf_btn_text_padding":{"unit":"px","top":"15","right":"20","bottom":"15","left":"20","isLinked":false},"mf_btn_typography_typography":"custom","mf_btn_typography_font_family":"Helvetica","mf_btn_typography_font_size":{"unit":"px","size":16,"sizes":[]},"mf_btn_typography_font_weight":"500","mf_btn_typography_line_height":{"unit":"px","size":18,"sizes":[]},"mf_btn_bg_color_background":"classic","mf_btn_bg_color_color":"#4285f4","mf_btn_box_shadow_group_box_shadow_type":"yes","mf_btn_box_shadow_group_box_shadow":{"horizontal":0,"vertical":7,"blur":15,"spread":0,"color":"rgba(66,133,244,0.3)"},"_margin":{"unit":"px","top":"40","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-button","elType":"widget"},{"id":"df7b1f6","settings":{"_padding":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false},"_margin":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false},"mf_response_padding":{"unit":"px","top":"12","right":"30","bottom":"12","left":"30","isLinked":false},"mf_response_typography_typography":"custom","mf_response_typography_font_family":"Helvetica","mf_response_typography_font_size":{"unit":"px","size":16,"sizes":[]},"mf_response_typography_font_weight":"500","mf_response_typography_line_height":{"unit":"px","size":21,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"mf-response","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}]}
|
templates/1/preview-thumb.svg
CHANGED
@@ -1,186 +1,282 @@
|
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
2 |
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
-
viewBox="0 0
|
5 |
<g>
|
6 |
-
<path id="
|
7 |
/>
|
8 |
-
<path id="
|
9 |
-
c-1.4,0-2.5-1.1-2.5-2.5l0,
|
10 |
-
<path id="
|
11 |
-
c-1.4,0-2.5-1.1-2.5-2.5l0,
|
12 |
-
<path id="
|
13 |
-
|
14 |
-
<path id="
|
15 |
-
c-1.4,0-2.5-1.1-2.5-2.5l0,
|
|
|
|
|
16 |
<g enable-background="new ">
|
17 |
-
<path fill="#565656" d="
|
18 |
-
<path fill="#565656" d="
|
19 |
-
<path fill="#565656" d="
|
20 |
-
c-0.
|
21 |
-
<path fill="#565656" d="
|
22 |
-
c0.
|
23 |
-
c-0.
|
24 |
-
c0.1-0.2,0.3-0.
|
25 |
-
|
26 |
-
c-0.
|
27 |
-
c0.2,0.1,0.3,0.
|
28 |
-
|
29 |
-
c-0.3,0-0.
|
30 |
-
|
31 |
-
<path fill="#565656" d="
|
32 |
-
|
33 |
-
|
34 |
-
<path fill="#565656" d="
|
35 |
-
|
36 |
-
c-0.
|
37 |
-
c0-0.
|
38 |
-
|
39 |
-
|
40 |
-
c0.1
|
41 |
-
|
42 |
-
c-0.1,0.1-0.2,0.
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
c0.
|
47 |
-
|
48 |
-
c-0.
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
c0.3
|
54 |
-
c0
|
55 |
-
|
56 |
-
|
57 |
-
C62.6,23.7,62.5,23.5,62.4,23.3z"/>
|
58 |
</g>
|
59 |
<g enable-background="new ">
|
60 |
-
<path fill="#565656" d="
|
61 |
-
<path fill="#565656" d="
|
62 |
-
c0.2-0.3,0.
|
63 |
-
|
64 |
-
c-0.
|
65 |
-
c-0.1-0.1-0.3-0.1-0.
|
66 |
-
|
67 |
-
<path fill="#565656" d="
|
68 |
-
c-0.3,0.
|
69 |
-
|
70 |
-
c0.
|
71 |
-
c-0.1-0.1-0.
|
72 |
-
c0.
|
73 |
-
c0.
|
74 |
-
|
75 |
-
c-0.1,0.1-0.
|
76 |
-
c0.
|
77 |
-
<path fill="#565656" d="
|
78 |
-
<path fill="#565656" d="
|
79 |
-
<path fill="#565656" d="M46,55.9l2.8,7.1h-1.1L47,60.8h-3L43.1,63h-1l2.8-7.1H46z M46.7,60l-1.2-3.3h0L44.2,60H46.7z"/>
|
80 |
-
<path fill="#565656" d="M53.1,63v-0.7h0c-0.1,0.3-0.4,0.5-0.7,0.6s-0.6,0.2-1,0.2c-0.4,0-0.7-0.1-1-0.2c-0.3-0.1-0.5-0.3-0.7-0.6
|
81 |
-
c-0.2-0.2-0.3-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1c0-0.4,0-0.7,0.1-1c0.1-0.3,0.2-0.6,0.4-0.9s0.4-0.4,0.7-0.6
|
82 |
-
c0.3-0.1,0.6-0.2,1-0.2c0.1,0,0.3,0,0.4,0s0.3,0.1,0.5,0.1s0.3,0.1,0.4,0.2s0.3,0.2,0.3,0.4h0v-2.7H54V63H53.1z M50.1,61.2
|
83 |
-
c0.1,0.2,0.2,0.4,0.3,0.6c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.2,0.7,0.2c0.3,0,0.5-0.1,0.7-0.2c0.2-0.1,0.4-0.3,0.5-0.4
|
84 |
-
c0.1-0.2,0.2-0.4,0.3-0.6s0.1-0.5,0.1-0.7c0-0.3,0-0.5-0.1-0.7c-0.1-0.2-0.2-0.4-0.3-0.6c-0.1-0.2-0.3-0.3-0.5-0.4
|
85 |
-
s-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.4,0.3-0.5,0.5s-0.2,0.4-0.3,0.6C50,60,50,60.2,50,60.5
|
86 |
-
C50,60.7,50,60.9,50.1,61.2z"/>
|
87 |
-
<path fill="#565656" d="M59,63v-0.7h0c-0.1,0.3-0.4,0.5-0.7,0.6s-0.6,0.2-1,0.2c-0.4,0-0.7-0.1-1-0.2c-0.3-0.1-0.5-0.3-0.7-0.6
|
88 |
-
c-0.2-0.2-0.3-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1c0-0.4,0-0.7,0.1-1c0.1-0.3,0.2-0.6,0.4-0.9s0.4-0.4,0.7-0.6
|
89 |
-
c0.3-0.1,0.6-0.2,1-0.2c0.1,0,0.3,0,0.4,0s0.3,0.1,0.5,0.1s0.3,0.1,0.4,0.2s0.3,0.2,0.3,0.4h0v-2.7h0.8V63H59z M56,61.2
|
90 |
-
c0.1,0.2,0.2,0.4,0.3,0.6c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.2,0.7,0.2c0.3,0,0.5-0.1,0.7-0.2c0.2-0.1,0.4-0.3,0.5-0.4
|
91 |
-
c0.1-0.2,0.2-0.4,0.3-0.6s0.1-0.5,0.1-0.7c0-0.3,0-0.5-0.1-0.7c-0.1-0.2-0.2-0.4-0.3-0.6c-0.1-0.2-0.3-0.3-0.5-0.4
|
92 |
-
s-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.4,0.3-0.5,0.5S56,59.5,56,59.7c-0.1,0.2-0.1,0.5-0.1,0.7
|
93 |
-
C55.9,60.7,55.9,60.9,56,61.2z"/>
|
94 |
-
<path fill="#565656" d="M62,57.8v1.1h0c0.2-0.4,0.5-0.7,0.8-0.9c0.3-0.2,0.7-0.3,1.1-0.3v0.9c-0.3,0-0.6,0-0.9,0.1
|
95 |
-
c-0.2,0.1-0.4,0.2-0.6,0.4s-0.3,0.4-0.3,0.7c-0.1,0.3-0.1,0.6-0.1,0.9V63h-0.9v-5.2H62z"/>
|
96 |
-
<path fill="#565656" d="M68,62.7c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
97 |
-
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.8,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6
|
98 |
-
c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.4,1c0.1,0.3,0.1,0.7,0.1,1H65
|
99 |
-
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.1,0.7,0.1c0.4,0,0.7-0.1,0.9-0.2
|
100 |
-
s0.4-0.4,0.5-0.8h0.8C68.7,61.9,68.4,62.4,68,62.7z M67.8,59.3c-0.1-0.2-0.2-0.3-0.3-0.5c-0.1-0.1-0.3-0.2-0.5-0.3
|
101 |
-
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5C65,59.5,65,59.7,65,59.9h3
|
102 |
-
C67.9,59.7,67.9,59.5,67.8,59.3z"/>
|
103 |
-
<path fill="#565656" d="M70.4,61.8c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.3,0.1,0.4,0.2s0.3,0,0.5,0c0.1,0,0.3,0,0.4,0
|
104 |
-
c0.1,0,0.3-0.1,0.4-0.1c0.1-0.1,0.2-0.1,0.3-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2-0.1-0.4-0.2-0.5c-0.2-0.1-0.4-0.2-0.6-0.3
|
105 |
-
c-0.2-0.1-0.5-0.1-0.8-0.2s-0.6-0.1-0.8-0.2c-0.2-0.1-0.5-0.2-0.6-0.4s-0.2-0.4-0.2-0.8c0-0.3,0.1-0.5,0.2-0.7
|
106 |
-
c0.1-0.2,0.3-0.3,0.4-0.5c0.2-0.1,0.4-0.2,0.6-0.3s0.5-0.1,0.7-0.1c0.3,0,0.6,0,0.8,0.1c0.2,0,0.5,0.1,0.7,0.3s0.3,0.3,0.5,0.5
|
107 |
-
s0.2,0.5,0.2,0.8h-0.9c0-0.2-0.1-0.3-0.1-0.4c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.1s-0.3,0-0.4,0c-0.1,0-0.3,0-0.4,0
|
108 |
-
c-0.1,0-0.2,0.1-0.4,0.1c-0.1,0-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.1,0.1,0.3,0.2,0.4c0.1,0.1,0.2,0.2,0.4,0.2
|
109 |
-
c0.2,0.1,0.3,0.1,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.2,0.5,0.3s0.3,0.2,0.4,0.4
|
110 |
-
c0.1,0.2,0.1,0.4,0.1,0.6c0,0.3-0.1,0.6-0.2,0.8c-0.1,0.2-0.3,0.4-0.5,0.5c-0.2,0.1-0.4,0.2-0.7,0.3c-0.3,0-0.5,0.1-0.8,0.1
|
111 |
-
c-0.3,0-0.6,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.4-0.3-0.5-0.5c-0.1-0.2-0.2-0.5-0.2-0.8h0.9
|
112 |
-
C70.3,61.6,70.3,61.7,70.4,61.8z"/>
|
113 |
-
<path fill="#565656" d="M75.4,61.8c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.3,0.1,0.4,0.2s0.3,0,0.5,0c0.1,0,0.3,0,0.4,0
|
114 |
-
c0.1,0,0.3-0.1,0.4-0.1c0.1-0.1,0.2-0.1,0.3-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2-0.1-0.4-0.2-0.5c-0.2-0.1-0.4-0.2-0.6-0.3
|
115 |
-
c-0.2-0.1-0.5-0.1-0.8-0.2s-0.6-0.1-0.8-0.2c-0.2-0.1-0.5-0.2-0.6-0.4s-0.2-0.4-0.2-0.8c0-0.3,0.1-0.5,0.2-0.7
|
116 |
-
c0.1-0.2,0.3-0.3,0.4-0.5c0.2-0.1,0.4-0.2,0.6-0.3s0.5-0.1,0.7-0.1c0.3,0,0.6,0,0.8,0.1c0.2,0,0.5,0.1,0.7,0.3s0.3,0.3,0.5,0.5
|
117 |
-
s0.2,0.5,0.2,0.8h-0.9c0-0.2-0.1-0.3-0.1-0.4c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.1s-0.3,0-0.4,0c-0.1,0-0.3,0-0.4,0
|
118 |
-
c-0.1,0-0.2,0.1-0.4,0.1c-0.1,0-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.1,0.1,0.3,0.2,0.4c0.1,0.1,0.2,0.2,0.4,0.2
|
119 |
-
c0.2,0.1,0.3,0.1,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.2,0.5,0.3s0.3,0.2,0.4,0.4
|
120 |
-
c0.1,0.2,0.1,0.4,0.1,0.6c0,0.3-0.1,0.6-0.2,0.8c-0.1,0.2-0.3,0.4-0.5,0.5c-0.2,0.1-0.4,0.2-0.7,0.3c-0.3,0-0.5,0.1-0.8,0.1
|
121 |
-
c-0.3,0-0.6,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.4-0.3-0.5-0.5c-0.1-0.2-0.2-0.5-0.2-0.8h0.9
|
122 |
-
C75.3,61.6,75.3,61.7,75.4,61.8z"/>
|
123 |
</g>
|
124 |
<g enable-background="new ">
|
125 |
-
<path fill="#565656" d="
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
c-0.
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
c0.
|
141 |
-
c-0.
|
142 |
-
|
143 |
-
|
144 |
-
c0.
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
c0.
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
c0.
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
c-0.2-0.1-0.4-0.3-0.5-0.5S45,99.8,45,99.6h0.9c0,0.2,0.1,0.3,0.1,0.4c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.3,0.1,0.4,0.1
|
165 |
-
c0.2,0,0.3,0,0.4,0c0.3,0,0.5,0,0.7-0.1s0.4-0.2,0.5-0.4s0.2-0.4,0.3-0.6s0.1-0.5,0.1-0.8v-0.3h0c-0.1,0.3-0.4,0.6-0.7,0.7
|
166 |
-
C47.8,99,47.5,99,47.1,99c-0.4,0-0.7-0.1-1-0.2c-0.3-0.1-0.5-0.3-0.7-0.6c-0.2-0.2-0.3-0.5-0.4-0.8s-0.1-0.7-0.1-1
|
167 |
-
c0-0.3,0-0.6,0.1-0.9s0.2-0.6,0.4-0.9s0.4-0.5,0.7-0.7s0.7-0.3,1.1-0.3c0.3,0,0.6,0.1,0.9,0.2s0.5,0.4,0.6,0.6h0v-0.7h0.8v4.7
|
168 |
-
C49.5,99.4,49.4,100,49,100.5z M47.9,98.1c0.2-0.1,0.4-0.3,0.5-0.5c0.1-0.2,0.2-0.4,0.3-0.6c0.1-0.2,0.1-0.5,0.1-0.7
|
169 |
-
c0-0.2,0-0.4-0.1-0.7c-0.1-0.2-0.1-0.4-0.3-0.6s-0.3-0.3-0.5-0.4c-0.2-0.1-0.4-0.2-0.7-0.2c-0.3,0-0.5,0.1-0.7,0.2
|
170 |
-
s-0.4,0.2-0.5,0.4c-0.1,0.2-0.2,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.7c0,0.2,0,0.5,0.1,0.7c0,0.2,0.1,0.4,0.2,0.6
|
171 |
-
c0.1,0.2,0.3,0.3,0.5,0.5c0.2,0.1,0.4,0.2,0.7,0.2C47.4,98.3,47.7,98.3,47.9,98.1z"/>
|
172 |
-
<path fill="#565656" d="M54.5,98.7c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
173 |
-
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.8,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6
|
174 |
-
c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.4,1c0.1,0.3,0.1,0.7,0.1,1h-3.9
|
175 |
-
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.1,0.7,0.1c0.4,0,0.7-0.1,0.9-0.2
|
176 |
-
s0.4-0.4,0.5-0.8h0.8C55.1,97.9,54.9,98.4,54.5,98.7z M54.3,95.3c-0.1-0.2-0.2-0.3-0.3-0.5c-0.1-0.1-0.3-0.2-0.5-0.3
|
177 |
-
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6h3
|
178 |
-
C54.4,95.7,54.4,95.5,54.3,95.3z"/>
|
179 |
</g>
|
180 |
-
<path id="Rectangle_593" fill="#377DFF" d="M52,145h60c5.5,0,10,4.5,10,10l0,0c0,5.5-4.5,10-10,10H52c-5.5,0-10-4.5-10-10l0,0
|
181 |
-
C42,149.5,46.5,145,52,145z"/>
|
182 |
<g enable-background="new ">
|
183 |
-
<path fill="#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
184 |
c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.4-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.3-0.3s0.1-0.3,0.1-0.4c0-0.3-0.1-0.5-0.2-0.6
|
185 |
c-0.1-0.1-0.3-0.2-0.4-0.3c-0.3-0.1-0.5-0.2-0.9-0.3c-0.3-0.1-0.8-0.2-1.2-0.3c-0.3-0.1-0.6-0.2-0.8-0.3c-0.2-0.1-0.4-0.3-0.5-0.4
|
186 |
c-0.1-0.2-0.2-0.3-0.3-0.5c0-0.2-0.1-0.4-0.1-0.5c0-0.4,0.1-0.7,0.2-0.9c0.1-0.3,0.3-0.5,0.6-0.7c0.2-0.2,0.5-0.3,0.8-0.4
|
@@ -189,62 +285,13 @@
|
|
189 |
c0,0.3,0.1,0.5,0.2,0.6s0.4,0.3,0.6,0.3c0,0,0.1,0,0.3,0.1c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.1,0.7,0.2s0.4,0.1,0.5,0.1
|
190 |
c0.2,0.1,0.4,0.2,0.6,0.3s0.3,0.3,0.4,0.4c0.1,0.2,0.2,0.3,0.3,0.5s0.1,0.4,0.1,0.6c0,0.4-0.1,0.7-0.2,1c-0.2,0.3-0.4,0.5-0.6,0.7
|
191 |
c-0.3,0.2-0.6,0.3-0.9,0.4c-0.3,0.1-0.7,0.1-1,0.1c-0.4,0-0.8,0-1.1-0.2c-0.4-0.1-0.7-0.3-0.9-0.5c-0.3-0.2-0.5-0.5-0.6-0.8
|
192 |
-
c-0.2-0.3-0.2-0.7-0.2-1.
|
193 |
-
<path fill="#FFFFFF" d="
|
194 |
-
<path fill="#FFFFFF" d="
|
195 |
-
<path fill="#FFFFFF" d="
|
196 |
-
c0,0.5-0.1,1-0.2,1.4s-0.3,0.8-0.6,1.1c-0.3,0.3-0.6,0.6-1,0.8c-0.4,0.2-0.9,0.3-1.4,0.3h-
|
197 |
c0.5,0,0.9-0.1,1.2-0.2c0.3-0.1,0.6-0.3,0.7-0.5c0.2-0.2,0.3-0.5,0.4-0.8c0.1-0.3,0.1-0.6,0.1-1c0-0.4,0-0.7-0.1-1
|
198 |
-
c-0.1-0.3-0.2-0.6-0.4-0.8c-0.2-0.2-0.4-0.4-0.7-0.5c-0.3-0.1-0.7-0.2-1.2-0.2h-1.
|
199 |
-
</g>
|
200 |
-
<g enable-background="new ">
|
201 |
-
<path fill="#565656" d="M90.7,19.9v6.3h3.8V27h-4.7v-7.1H90.7z"/>
|
202 |
-
<path fill="#565656" d="M99.8,27c-0.1,0.1-0.4,0.1-0.6,0.1c-0.2,0-0.4-0.1-0.5-0.2c-0.1-0.1-0.2-0.3-0.2-0.6
|
203 |
-
c-0.2,0.3-0.5,0.5-0.8,0.6c-0.3,0.1-0.6,0.2-1,0.2c-0.2,0-0.5,0-0.7-0.1c-0.2-0.1-0.4-0.1-0.5-0.2s-0.3-0.3-0.4-0.4
|
204 |
-
s-0.1-0.4-0.1-0.7c0-0.3,0.1-0.5,0.2-0.7s0.2-0.3,0.4-0.5c0.2-0.1,0.3-0.2,0.6-0.3c0.2-0.1,0.4-0.1,0.6-0.2c0.2,0,0.5-0.1,0.7-0.1
|
205 |
-
c0.2,0,0.4-0.1,0.6-0.1s0.3-0.1,0.4-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2,0-0.3-0.1-0.5s-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.1
|
206 |
-
c-0.1,0-0.3,0-0.4,0c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.4-0.4,0.8h-0.9c0-0.3,0.1-0.6,0.2-0.8c0.1-0.2,0.3-0.4,0.5-0.5
|
207 |
-
c0.2-0.1,0.4-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.2,0,0.5,0,0.7,0s0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.2,0.5,0.4s0.2,0.4,0.2,0.7
|
208 |
-
v2.7c0,0.2,0,0.3,0,0.4c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3-0.1V27z M98.4,24.3c-0.1,0.1-0.2,0.1-0.4,0.2
|
209 |
-
c-0.2,0-0.4,0.1-0.5,0.1c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.5,0.1c-0.2,0.1-0.3,0.2-0.4,0.3c-0.1,0.1-0.1,0.3-0.1,0.5
|
210 |
-
c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.1,0.2,0.2,0.2c0.1,0.1,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.4,0c0.3,0,0.5,0,0.7-0.1
|
211 |
-
c0.2-0.1,0.4-0.2,0.5-0.3c0.1-0.1,0.2-0.2,0.3-0.4c0.1-0.1,0.1-0.3,0.1-0.4V24.3z"/>
|
212 |
-
<path fill="#565656" d="M101.2,25.8c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.3,0.1,0.4,0.2s0.3,0,0.5,0c0.1,0,0.3,0,0.4,0
|
213 |
-
c0.1,0,0.3-0.1,0.4-0.1c0.1-0.1,0.2-0.1,0.3-0.2s0.1-0.2,0.1-0.4c0-0.2-0.1-0.4-0.2-0.5c-0.2-0.1-0.4-0.2-0.6-0.3
|
214 |
-
c-0.2-0.1-0.5-0.1-0.8-0.2c-0.3-0.1-0.6-0.1-0.8-0.2c-0.2-0.1-0.5-0.2-0.6-0.4s-0.2-0.4-0.2-0.8c0-0.3,0.1-0.5,0.2-0.7
|
215 |
-
c0.1-0.2,0.3-0.3,0.4-0.5c0.2-0.1,0.4-0.2,0.6-0.3s0.5-0.1,0.7-0.1c0.3,0,0.6,0,0.8,0.1c0.2,0,0.5,0.1,0.7,0.3
|
216 |
-
c0.2,0.1,0.3,0.3,0.5,0.5s0.2,0.5,0.2,0.8h-0.9c0-0.2-0.1-0.3-0.1-0.4c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.1
|
217 |
-
s-0.3,0-0.4,0c-0.1,0-0.3,0-0.4,0c-0.1,0-0.2,0.1-0.4,0.1c-0.1,0-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.1,0.1,0.3,0.2,0.4
|
218 |
-
s0.2,0.2,0.4,0.2c0.2,0.1,0.3,0.1,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.2,0.5,0.3s0.3,0.2,0.4,0.4
|
219 |
-
c0.1,0.2,0.1,0.4,0.1,0.6c0,0.3-0.1,0.6-0.2,0.8c-0.1,0.2-0.3,0.4-0.5,0.5c-0.2,0.1-0.4,0.2-0.7,0.3s-0.5,0.1-0.8,0.1
|
220 |
-
c-0.3,0-0.6,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.4-0.3-0.5-0.5c-0.1-0.2-0.2-0.5-0.2-0.8h0.8
|
221 |
-
C101.1,25.6,101.1,25.7,101.2,25.8z"/>
|
222 |
-
<path fill="#565656" d="M107.8,21.8v0.8h-1v3.2c0,0.1,0,0.2,0,0.2c0,0.1,0,0.1,0.1,0.1s0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3,0h0.4V27
|
223 |
-
h-0.6c-0.2,0-0.4,0-0.6,0s-0.3-0.1-0.4-0.2s-0.2-0.2-0.2-0.3c0-0.1-0.1-0.3-0.1-0.6v-3.3H105v-0.8h0.9v-1.5h0.8v1.5H107.8z"/>
|
224 |
-
<path fill="#565656" d="M112.6,19.9l3.8,5.8h0v-5.8h0.9V27h-1l-3.7-5.7h0V27h-0.9v-7.1H112.6z"/>
|
225 |
-
<path fill="#565656" d="M123.3,27c-0.1,0.1-0.4,0.1-0.6,0.1c-0.2,0-0.4-0.1-0.5-0.2c-0.1-0.1-0.2-0.3-0.2-0.6
|
226 |
-
c-0.2,0.3-0.5,0.5-0.8,0.6c-0.3,0.1-0.6,0.2-1,0.2c-0.2,0-0.5,0-0.7-0.1c-0.2-0.1-0.4-0.1-0.5-0.2s-0.3-0.3-0.4-0.4
|
227 |
-
s-0.1-0.4-0.1-0.7c0-0.3,0.1-0.5,0.2-0.7s0.2-0.3,0.4-0.5c0.2-0.1,0.3-0.2,0.6-0.3c0.2-0.1,0.4-0.1,0.6-0.2c0.2,0,0.5-0.1,0.7-0.1
|
228 |
-
c0.2,0,0.4-0.1,0.6-0.1s0.3-0.1,0.4-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2,0-0.3-0.1-0.5s-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.1
|
229 |
-
c-0.1,0-0.3,0-0.4,0c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.4-0.4,0.8h-0.9c0-0.3,0.1-0.6,0.2-0.8c0.1-0.2,0.3-0.4,0.5-0.5
|
230 |
-
c0.2-0.1,0.4-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.2,0,0.5,0,0.7,0s0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.2,0.5,0.4s0.2,0.4,0.2,0.7
|
231 |
-
v2.7c0,0.2,0,0.3,0,0.4c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3-0.1V27z M121.9,24.3c-0.1,0.1-0.2,0.1-0.4,0.2
|
232 |
-
c-0.2,0-0.4,0.1-0.5,0.1c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.5,0.1c-0.2,0.1-0.3,0.2-0.4,0.3c-0.1,0.1-0.1,0.3-0.1,0.5
|
233 |
-
c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.1,0.2,0.2,0.2c0.1,0.1,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.4,0c0.3,0,0.5,0,0.7-0.1
|
234 |
-
c0.2-0.1,0.4-0.2,0.5-0.3c0.1-0.1,0.2-0.2,0.3-0.4c0.1-0.1,0.1-0.3,0.1-0.4V24.3z"/>
|
235 |
-
<path fill="#565656" d="M124.9,21.8v0.8h0c0.4-0.6,0.9-0.9,1.7-0.9c0.3,0,0.6,0.1,0.9,0.2c0.3,0.1,0.4,0.4,0.5,0.7
|
236 |
-
c0.2-0.3,0.4-0.5,0.7-0.6s0.6-0.2,0.9-0.2c0.3,0,0.5,0,0.7,0.1s0.4,0.1,0.5,0.3c0.1,0.1,0.3,0.3,0.4,0.5c0.1,0.2,0.1,0.4,0.1,0.7
|
237 |
-
V27h-0.9v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.3-0.2c-0.1-0.1-0.3-0.1-0.5-0.1c-0.4,0-0.8,0.1-1,0.4
|
238 |
-
c-0.2,0.2-0.4,0.6-0.4,1V27h-0.8v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.3-0.2
|
239 |
-
c-0.1-0.1-0.3-0.1-0.5-0.1c-0.2,0-0.5,0-0.6,0.2c-0.2,0.1-0.3,0.2-0.4,0.4c-0.1,0.1-0.2,0.3-0.2,0.4c0,0.1-0.1,0.3-0.1,0.4V27
|
240 |
-
h-0.8v-5.2H124.9z"/>
|
241 |
-
<path fill="#565656" d="M136.3,26.7c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
242 |
-
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.8,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6
|
243 |
-
c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.4,1c0.1,0.3,0.1,0.7,0.1,1h-3.9
|
244 |
-
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.5,0.1,0.7,0.1c0.4,0,0.7-0.1,0.9-0.2
|
245 |
-
s0.4-0.4,0.5-0.8h0.8C136.9,25.9,136.7,26.4,136.3,26.7z M136.1,23.3c-0.1-0.2-0.2-0.3-0.3-0.5s-0.3-0.2-0.5-0.3
|
246 |
-
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6h3
|
247 |
-
C136.2,23.7,136.2,23.5,136.1,23.3z"/>
|
248 |
</g>
|
249 |
</g>
|
250 |
</svg>
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
2 |
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 265 300" enable-background="new 0 0 265 300" xml:space="preserve">
|
5 |
<g>
|
6 |
+
<path id="Rectangle_713" fill="#FFFFFF" d="M5,0h255c2.8,0,5,2.2,5,5v290c0,2.8-2.2,5-5,5H5c-2.8,0-5-2.2-5-5V5C0,2.2,2.2,0,5,0z"
|
7 |
/>
|
8 |
+
<path id="Rectangle_716" fill="#E5E9EA" d="M42.5,59h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
9 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,60.1,41.1,59,42.5,59z"/>
|
10 |
+
<path id="Rectangle_727" fill="#E5E9EA" d="M42.5,108h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
11 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,109.1,41.1,108,42.5,108z"/>
|
12 |
+
<path id="Rectangle_766" fill="#E5E9EA" d="M142.5,108h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
13 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C140,109.1,141.1,108,142.5,108z"/>
|
14 |
+
<path id="Rectangle_728" fill="#E5E9EA" d="M142.5,59h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
15 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C140,60.1,141.1,59,142.5,59z"/>
|
16 |
+
<path id="Rectangle_736" fill="#E5E9EA" d="M45,157h175c2.8,0,5,2.2,5,5v46c0,2.8-2.2,5-5,5H45c-2.8,0-5-2.2-5-5v-46
|
17 |
+
C40,159.2,42.2,157,45,157z"/>
|
18 |
<g enable-background="new ">
|
19 |
+
<path fill="#565656" d="M46.6,42.4v1h-4.5v2.7H46v1h-3.9V51h-1.1v-8.6H46.6z"/>
|
20 |
+
<path fill="#565656" d="M47.7,43.7v-1.2h1v1.2H47.7z M48.7,44.8V51h-1v-6.2H48.7z"/>
|
21 |
+
<path fill="#565656" d="M51.2,44.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
22 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1V51h-1v-6.2H51.2z"/>
|
23 |
+
<path fill="#565656" d="M55.1,49.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
24 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
25 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
26 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
27 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
28 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
29 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
30 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
31 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
32 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C54.9,49.3,55,49.5,55.1,49.6z"/>
|
33 |
+
<path fill="#565656" d="M63,44.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0H63V51h-0.8
|
34 |
+
c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9H63z"/>
|
35 |
+
<path fill="#565656" d="M68.8,42.4l4.5,6.9h0v-6.9h1.1V51h-1.2l-4.5-6.9h0V51h-1.1v-8.6H68.8z"/>
|
36 |
+
<path fill="#565656" d="M81.6,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
37 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
38 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
39 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
40 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2S77,46.3,77,46.7h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
41 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
42 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51z M79.9,47.8
|
43 |
+
c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
44 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
45 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V47.8z"/>
|
46 |
+
<path fill="#565656" d="M83.5,44.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
47 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
48 |
+
c0.1,0.2,0.1,0.5,0.1,0.8V51h-1v-4.1c0-0.2,0-0.4,0-0.5S90.1,46.1,90,46c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
49 |
+
c-0.5,0-0.9,0.1-1.2,0.4s-0.4,0.7-0.4,1.2V51h-1v-4.1c0-0.2,0-0.4-0.1-0.6c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3
|
50 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4s-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5V51h-1
|
51 |
+
v-6.2H83.5z"/>
|
52 |
+
<path fill="#565656" d="M97.2,50.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
53 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
54 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
55 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
56 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C97.9,49.7,97.6,50.3,97.2,50.6z M96.9,46.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
57 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
58 |
+
C97.1,47.1,97,46.8,96.9,46.6z"/>
|
|
|
59 |
</g>
|
60 |
<g enable-background="new ">
|
61 |
+
<path fill="#565656" d="M46.9,91.4v1h-4.8v2.7h4.5v1h-4.5v3h4.8v1h-6v-8.6H46.9z"/>
|
62 |
+
<path fill="#565656" d="M49.1,93.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
63 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
64 |
+
c0.1,0.2,0.1,0.5,0.1,0.8v4.5h-1v-4.1c0-0.2,0-0.4,0-0.5s-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
65 |
+
c-0.5,0-0.9,0.1-1.2,0.4S53,95.7,53,96.1v3.9h-1v-4.1c0-0.2,0-0.4-0.1-0.6c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3
|
66 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4s-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5v3.9h-1
|
67 |
+
v-6.2H49.1z"/>
|
68 |
+
<path fill="#565656" d="M63.8,100c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
69 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
70 |
+
C58.1,99,58,98.7,58,98.4c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
71 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
72 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
73 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
74 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V100z M62.2,96.8
|
75 |
+
C62,96.9,61.9,97,61.7,97s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
76 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
77 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V96.8z"/>
|
78 |
+
<path fill="#565656" d="M64.8,92.7v-1.2h1v1.2H64.8z M65.9,93.8v6.2h-1v-6.2H65.9z"/>
|
79 |
+
<path fill="#565656" d="M68.5,91.4v8.6h-1v-8.6H68.5z"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
</g>
|
81 |
<g enable-background="new ">
|
82 |
+
<path fill="#565656" d="M145.2,92.6c-0.4-0.3-0.9-0.4-1.5-0.4c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.4,0.1-0.6,0.2
|
83 |
+
c-0.2,0.1-0.3,0.3-0.4,0.5c-0.1,0.2-0.2,0.4-0.2,0.7c0,0.3,0.1,0.5,0.2,0.6s0.4,0.3,0.6,0.4c0.3,0.1,0.6,0.2,0.9,0.3
|
84 |
+
s0.7,0.1,1,0.2s0.7,0.2,1,0.3s0.6,0.3,0.9,0.4c0.3,0.2,0.5,0.4,0.6,0.7c0.2,0.3,0.2,0.6,0.2,1.1c0,0.5-0.1,0.8-0.3,1.2
|
85 |
+
c-0.2,0.3-0.5,0.6-0.8,0.8s-0.7,0.4-1.1,0.4s-0.8,0.1-1.2,0.1c-0.5,0-0.9-0.1-1.4-0.2c-0.4-0.1-0.8-0.3-1.1-0.5s-0.6-0.6-0.8-0.9
|
86 |
+
c-0.2-0.4-0.3-0.8-0.3-1.4h1.1c0,0.4,0.1,0.7,0.2,0.9c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.3,0.8,0.4c0.3,0.1,0.6,0.1,0.9,0.1
|
87 |
+
c0.3,0,0.5,0,0.8-0.1s0.5-0.1,0.7-0.2c0.2-0.1,0.4-0.3,0.5-0.5s0.2-0.5,0.2-0.8c0-0.3-0.1-0.5-0.2-0.7c-0.2-0.2-0.4-0.3-0.6-0.5
|
88 |
+
c-0.3-0.1-0.6-0.2-0.9-0.3c-0.3-0.1-0.7-0.1-1-0.2c-0.3-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.2-0.9-0.4c-0.3-0.2-0.5-0.4-0.6-0.6
|
89 |
+
c-0.2-0.3-0.2-0.6-0.2-1c0-0.4,0.1-0.8,0.3-1.1c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.4,1-0.5c0.4-0.1,0.8-0.2,1.1-0.2
|
90 |
+
c0.4,0,0.8,0.1,1.2,0.2c0.4,0.1,0.7,0.3,1,0.5c0.3,0.2,0.5,0.5,0.7,0.8c0.2,0.3,0.3,0.7,0.3,1.2h-1.1
|
91 |
+
C145.8,93.3,145.6,92.9,145.2,92.6z"/>
|
92 |
+
<path fill="#565656" d="M152.7,100v-1h0c-0.2,0.4-0.5,0.7-0.8,0.8c-0.3,0.2-0.7,0.3-1.2,0.3c-0.4,0-0.7-0.1-1-0.2
|
93 |
+
c-0.3-0.1-0.5-0.3-0.7-0.5c-0.2-0.2-0.3-0.4-0.4-0.7c-0.1-0.3-0.1-0.6-0.1-0.9v-4.1h1V98c0,0.4,0.1,0.7,0.3,0.9
|
94 |
+
c0.2,0.2,0.5,0.3,0.9,0.3c0.3,0,0.6,0,0.8-0.1c0.2-0.1,0.4-0.2,0.6-0.4c0.2-0.2,0.3-0.4,0.3-0.6c0.1-0.2,0.1-0.5,0.1-0.8v-3.5h1
|
95 |
+
v6.2H152.7z"/>
|
96 |
+
<path fill="#565656" d="M156.3,91.4v3.2h0c0.2-0.3,0.4-0.6,0.8-0.8c0.4-0.2,0.8-0.2,1.2-0.2c0.5,0,0.9,0.1,1.3,0.3
|
97 |
+
c0.4,0.2,0.7,0.4,0.9,0.7s0.4,0.6,0.5,1c0.1,0.4,0.2,0.8,0.2,1.2c0,0.4-0.1,0.9-0.2,1.2c-0.1,0.4-0.3,0.7-0.5,1s-0.5,0.5-0.9,0.7
|
98 |
+
c-0.4,0.2-0.8,0.3-1.2,0.3c-0.2,0-0.3,0-0.5,0c-0.2,0-0.4-0.1-0.6-0.2c-0.2-0.1-0.4-0.2-0.5-0.3c-0.2-0.1-0.3-0.3-0.4-0.5h0v0.8
|
99 |
+
h-1v-8.6H156.3z M159.9,96c-0.1-0.3-0.2-0.5-0.3-0.7s-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2
|
100 |
+
c-0.2,0.1-0.4,0.3-0.6,0.5s-0.3,0.5-0.3,0.8s-0.1,0.6-0.1,0.9c0,0.3,0,0.6,0.1,0.9c0.1,0.3,0.2,0.5,0.3,0.8
|
101 |
+
c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2s0.6-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5s0.2-0.5,0.3-0.8
|
102 |
+
c0.1-0.3,0.1-0.6,0.1-0.9C160.1,96.6,160,96.3,159.9,96z"/>
|
103 |
+
<path fill="#565656" d="M163,102c-0.3,0.3-0.6,0.4-1.1,0.4c-0.2,0-0.4,0-0.5,0v-0.9c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0h0.2
|
104 |
+
c0.2,0,0.4-0.1,0.5-0.2s0.1-0.3,0.1-0.7v-6.8h1v7C163.4,101.3,163.3,101.7,163,102z M162.4,92.7v-1.2h1v1.2H162.4z"/>
|
105 |
+
<path fill="#565656" d="M169.4,99.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
106 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.7-0.2,1.2-0.2
|
107 |
+
c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6c0,0.3,0,0.5,0.1,0.8
|
108 |
+
c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3s0.5-0.5,0.5-0.9h1
|
109 |
+
C170.2,98.7,169.9,99.3,169.4,99.6z M169.1,95.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1
|
110 |
+
c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4c-0.2,0.2-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6C169.3,96.1,169.2,95.8,169.1,95.6
|
111 |
+
z"/>
|
112 |
+
<path fill="#565656" d="M175.1,94.9c-0.3-0.2-0.6-0.3-1-0.3c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
113 |
+
c-0.1,0.2-0.3,0.5-0.3,0.8s-0.1,0.6-0.1,0.9c0,0.3,0,0.6,0.1,0.8c0.1,0.3,0.2,0.5,0.3,0.7s0.3,0.4,0.6,0.5
|
114 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.5,0,0.9-0.1,1.2-0.4c0.3-0.3,0.5-0.6,0.5-1.1h1c-0.1,0.8-0.4,1.4-0.9,1.8c-0.5,0.4-1.1,0.6-1.9,0.6
|
115 |
+
c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.6s-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3
|
116 |
+
c0.1-0.4,0.3-0.8,0.5-1.1c0.2-0.3,0.5-0.5,0.9-0.7c0.4-0.2,0.8-0.3,1.3-0.3c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.4
|
117 |
+
c0.2,0.2,0.4,0.4,0.6,0.7c0.2,0.3,0.2,0.6,0.3,1h-1.1C175.6,95.4,175.4,95.1,175.1,94.9z"/>
|
118 |
+
<path fill="#565656" d="M180.5,93.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.4,0h0.5
|
119 |
+
v0.9h-0.8c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1
|
120 |
+
v1.9H180.5z"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
</g>
|
|
|
|
|
122 |
<g enable-background="new ">
|
123 |
+
<path fill="#565656" d="M142.1,42.4V50h4.5v1h-5.7v-8.6H142.1z"/>
|
124 |
+
<path fill="#565656" d="M152.9,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
125 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
126 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
127 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
128 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
129 |
+
s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1s0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5c0.1,0.2,0.2,0.5,0.2,0.9
|
130 |
+
v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51z M151.3,47.8c-0.1,0.1-0.3,0.2-0.5,0.2
|
131 |
+
c-0.2,0-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.4-0.2,0.6
|
132 |
+
c0,0.2,0,0.3,0.1,0.4c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
133 |
+
c0.2-0.1,0.4-0.2,0.6-0.3s0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V47.8z"/>
|
134 |
+
<path fill="#565656" d="M154.7,49.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
135 |
+
s0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3c0.1-0.1,0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
136 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
137 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.6-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
138 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3s-0.3-0.1-0.5-0.2
|
139 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
140 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
141 |
+
s0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9s-0.4,0.4-0.6,0.6
|
142 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
143 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C154.5,49.3,154.6,49.5,154.7,49.6z"/>
|
144 |
+
<path fill="#565656" d="M162.5,44.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3c0,0.1,0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0h0.5
|
145 |
+
V51h-0.8c-0.3,0-0.5,0-0.7-0.1c-0.2,0-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1
|
146 |
+
v-1.9h1v1.9H162.5z"/>
|
147 |
+
<path fill="#565656" d="M168.4,42.4l4.5,6.9h0v-6.9h1.1V51h-1.2l-4.5-6.9h0V51h-1.1v-8.6H168.4z"/>
|
148 |
+
<path fill="#565656" d="M181.2,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
149 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
150 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5s0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
151 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
152 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
153 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
154 |
+
s0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51z M179.5,47.8c-0.1,0.1-0.3,0.2-0.5,0.2
|
155 |
+
c-0.2,0-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2s-0.3,0.2-0.4,0.3c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4
|
156 |
+
c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1c0.2-0.1,0.4-0.2,0.6-0.3
|
157 |
+
c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V47.8z"/>
|
158 |
+
<path fill="#565656" d="M183.1,44.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
159 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
160 |
+
c0.1,0.2,0.1,0.5,0.1,0.8V51h-1v-4.1c0-0.2,0-0.4,0-0.5s-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
161 |
+
c-0.5,0-0.9,0.1-1.2,0.4s-0.4,0.7-0.4,1.2V51h-1v-4.1c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4s-0.2-0.2-0.4-0.3
|
162 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4c-0.1,0.2-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5
|
163 |
+
V51h-1v-6.2H183.1z"/>
|
164 |
+
<path fill="#565656" d="M196.7,50.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
165 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.7-0.2,1.2-0.2
|
166 |
+
c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6c0,0.3,0,0.5,0.1,0.8
|
167 |
+
c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3s0.5-0.5,0.5-0.9h1
|
168 |
+
C197.5,49.7,197.2,50.3,196.7,50.6z M196.5,46.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1
|
169 |
+
c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4c-0.2,0.2-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6C196.6,47.1,196.6,46.8,196.5,46.6
|
170 |
+
z"/>
|
171 |
+
</g>
|
172 |
+
<g enable-background="new ">
|
173 |
+
<path fill="#565656" d="M46.1,141.6c-0.4-0.3-1-0.5-1.6-0.5c-0.5,0-1,0.1-1.3,0.3c-0.4,0.2-0.7,0.5-0.9,0.8
|
174 |
+
c-0.2,0.3-0.4,0.7-0.5,1.1c-0.1,0.4-0.2,0.8-0.2,1.3c0,0.5,0.1,1,0.2,1.4c0.1,0.4,0.3,0.8,0.5,1.1c0.2,0.3,0.5,0.6,0.9,0.8
|
175 |
+
s0.8,0.3,1.3,0.3c0.4,0,0.7-0.1,1-0.2c0.3-0.1,0.5-0.3,0.8-0.5s0.4-0.5,0.5-0.8c0.1-0.3,0.2-0.6,0.2-1h1.1
|
176 |
+
c-0.1,1.1-0.5,1.9-1.1,2.5s-1.5,0.9-2.6,0.9c-0.7,0-1.2-0.1-1.7-0.3c-0.5-0.2-0.9-0.5-1.2-0.9s-0.6-0.9-0.7-1.4
|
177 |
+
c-0.2-0.5-0.2-1.1-0.2-1.8s0.1-1.2,0.3-1.8c0.2-0.5,0.4-1,0.8-1.4c0.3-0.4,0.8-0.7,1.3-1c0.5-0.2,1.1-0.4,1.7-0.4
|
178 |
+
c0.4,0,0.9,0.1,1.3,0.2c0.4,0.1,0.8,0.3,1.1,0.5c0.3,0.2,0.6,0.5,0.8,0.9c0.2,0.3,0.3,0.8,0.4,1.2H47
|
179 |
+
C46.8,142.4,46.5,141.9,46.1,141.6z"/>
|
180 |
+
<path fill="#565656" d="M49.3,144.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7s0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
181 |
+
s0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
182 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1
|
183 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S49.2,145,49.3,144.6z M50.3,146.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
184 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.3,0,0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7s0.1-0.6,0.1-1s0-0.7-0.1-1
|
185 |
+
s-0.2-0.5-0.4-0.7c-0.2-0.2-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
186 |
+
c-0.2,0.2-0.3,0.4-0.4,0.7c-0.1,0.3-0.1,0.6-0.1,1S50.2,146.6,50.3,146.9z"/>
|
187 |
+
<path fill="#565656" d="M57.3,142.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
188 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
189 |
+
c0.1,0.2,0.1,0.5,0.1,0.8v4.5h-1v-4.1c0-0.2,0-0.4,0-0.5s-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
190 |
+
c-0.5,0-0.9,0.1-1.2,0.4s-0.4,0.7-0.4,1.2v3.9h-1v-4.1c0-0.2,0-0.4-0.1-0.6c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3
|
191 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4s-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5v3.9h-1
|
192 |
+
v-6.2H57.3z"/>
|
193 |
+
<path fill="#565656" d="M67.5,142.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
194 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
195 |
+
c0.1,0.2,0.1,0.5,0.1,0.8v4.5h-1v-4.1c0-0.2,0-0.4,0-0.5s-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
196 |
+
c-0.5,0-0.9,0.1-1.2,0.4s-0.4,0.7-0.4,1.2v3.9h-1v-4.1c0-0.2,0-0.4-0.1-0.6c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3
|
197 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4s-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5v3.9h-1
|
198 |
+
v-6.2H67.5z"/>
|
199 |
+
<path fill="#565656" d="M81.2,148.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
200 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
201 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
202 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
203 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C81.9,147.7,81.6,148.3,81.2,148.6z M80.9,144.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
204 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
205 |
+
C81.1,145.1,81,144.8,80.9,144.6z"/>
|
206 |
+
<path fill="#565656" d="M84.2,142.8v1h0c0.4-0.8,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5
|
207 |
+
c0.2,0.2,0.3,0.4,0.4,0.7c0.1,0.3,0.1,0.6,0.1,0.9v4.1h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.3-0.9-0.3
|
208 |
+
c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8v3.5h-1v-6.2H84.2z"/>
|
209 |
+
<path fill="#565656" d="M92.6,142.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0h0.5v0.9
|
210 |
+
h-0.8c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9
|
211 |
+
H92.6z"/>
|
212 |
+
<path fill="#565656" d="M94.5,147.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
213 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
214 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
215 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
216 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
217 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
218 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
219 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
220 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
221 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C94.3,147.3,94.4,147.5,94.5,147.6z"/>
|
222 |
+
<path fill="#565656" d="M103.1,140.2l-3.6,9h-0.9l3.5-9H103.1z"/>
|
223 |
+
<path fill="#565656" d="M109.5,148.7c-0.6,0.3-1.3,0.5-2.1,0.5c-0.7,0-1.3-0.1-1.8-0.4c-0.5-0.2-0.9-0.6-1.3-1
|
224 |
+
c-0.3-0.4-0.6-0.9-0.8-1.4s-0.3-1.1-0.3-1.7s0.1-1.1,0.3-1.7s0.4-1,0.8-1.4c0.3-0.4,0.8-0.7,1.3-1c0.5-0.2,1.1-0.4,1.8-0.4
|
225 |
+
c0.7,0,1.3,0.1,1.8,0.4c0.5,0.2,0.9,0.6,1.3,1c0.3,0.4,0.6,0.9,0.8,1.4c0.2,0.5,0.3,1.1,0.3,1.7c0,0.7-0.1,1.3-0.3,1.9
|
226 |
+
c-0.2,0.6-0.5,1.1-1,1.5l1.1,0.9l-0.6,0.7L109.5,148.7z M109.5,147.5c0.3-0.3,0.6-0.7,0.7-1.2c0.2-0.5,0.2-1,0.2-1.5
|
227 |
+
c0-0.4-0.1-0.9-0.2-1.3c-0.1-0.4-0.3-0.8-0.5-1.1c-0.2-0.3-0.5-0.6-0.9-0.8s-0.8-0.3-1.3-0.3s-1,0.1-1.3,0.3s-0.7,0.5-0.9,0.8
|
228 |
+
s-0.4,0.7-0.5,1.1c-0.1,0.4-0.2,0.8-0.2,1.3c0,0.4,0.1,0.9,0.2,1.3c0.1,0.4,0.3,0.8,0.5,1.1s0.5,0.6,0.9,0.8
|
229 |
+
c0.4,0.2,0.8,0.3,1.3,0.3c0.4,0,0.8-0.1,1.2-0.2l-0.9-0.8l0.6-0.7L109.5,147.5z"/>
|
230 |
+
<path fill="#565656" d="M117,149v-1h0c-0.2,0.4-0.5,0.7-0.8,0.8c-0.3,0.2-0.7,0.3-1.2,0.3c-0.4,0-0.7-0.1-1-0.2
|
231 |
+
c-0.3-0.1-0.5-0.3-0.7-0.5c-0.2-0.2-0.3-0.4-0.4-0.7c-0.1-0.3-0.1-0.6-0.1-0.9v-4.1h1v4.2c0,0.4,0.1,0.7,0.3,0.9
|
232 |
+
c0.2,0.2,0.5,0.3,0.9,0.3c0.3,0,0.6,0,0.8-0.1c0.2-0.1,0.4-0.2,0.6-0.4c0.2-0.2,0.3-0.4,0.3-0.6c0.1-0.2,0.1-0.5,0.1-0.8v-3.5h1
|
233 |
+
v6.2H117z"/>
|
234 |
+
<path fill="#565656" d="M123.9,148.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
235 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
236 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
237 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
238 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C124.6,147.7,124.3,148.3,123.9,148.6z M123.6,144.6c-0.1-0.2-0.2-0.4-0.4-0.6
|
239 |
+
c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6
|
240 |
+
s-0.1,0.4-0.2,0.7h3.6C123.8,145.1,123.7,144.8,123.6,144.6z"/>
|
241 |
+
<path fill="#565656" d="M126.7,147.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
242 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
243 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
244 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
245 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
246 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
247 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
248 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
249 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
250 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C126.6,147.3,126.6,147.5,126.7,147.6z"/>
|
251 |
+
<path fill="#565656" d="M134.6,142.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0h0.5v0.9
|
252 |
+
h-0.8c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9
|
253 |
+
H134.6z"/>
|
254 |
+
<path fill="#565656" d="M135.8,141.7v-1.2h1v1.2H135.8z M136.8,142.8v6.2h-1v-6.2H136.8z"/>
|
255 |
+
<path fill="#565656" d="M138.2,144.6c0.1-0.4,0.3-0.7,0.6-1s0.6-0.5,0.9-0.7c0.4-0.2,0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
256 |
+
s0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
257 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
258 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S138.1,145,138.2,144.6z M139.3,146.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
259 |
+
c0.2,0.1,0.5,0.2,0.8,0.2s0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7c0.1-0.3,0.2-0.6,0.2-1s0-0.7-0.2-1
|
260 |
+
c-0.1-0.3-0.2-0.5-0.4-0.7s-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2s-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
261 |
+
c-0.2,0.2-0.3,0.4-0.4,0.7c-0.1,0.3-0.1,0.6-0.1,1S139.2,146.6,139.3,146.9z"/>
|
262 |
+
<path fill="#565656" d="M146.2,142.8v1h0c0.4-0.8,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5
|
263 |
+
c0.2,0.2,0.3,0.4,0.4,0.7c0.1,0.3,0.1,0.6,0.1,0.9v4.1h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.3-0.9-0.3
|
264 |
+
c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8v3.5h-1v-6.2H146.2z"/>
|
265 |
+
<path fill="#565656" d="M152.7,147.6c0.1,0.2,0.2,0.3,0.4,0.4s0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
266 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
267 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
268 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
269 |
+
c0.2,0.1,0.4,0.3,0.5,0.6s0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.4-0.2
|
270 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
271 |
+
c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
272 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5s0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9s-0.4,0.4-0.6,0.6c-0.3,0.2-0.5,0.3-0.9,0.3
|
273 |
+
c-0.3,0.1-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6c-0.1-0.3-0.2-0.6-0.2-1h1
|
274 |
+
C152.6,147.3,152.6,147.5,152.7,147.6z"/>
|
275 |
+
</g>
|
276 |
+
<path id="Rectangle_737" fill="#377DFF" d="M85,238h95c2.8,0,5,2.2,5,5v17c0,2.8-2.2,5-5,5H85c-2.8,0-5-2.2-5-5v-17
|
277 |
+
C80,240.2,82.2,238,85,238z"/>
|
278 |
+
<g enable-background="new ">
|
279 |
+
<path fill="#FFFFFF" d="M121,253.6c0,0.3,0,0.5,0.1,0.7c0.1,0.2,0.2,0.4,0.4,0.5s0.4,0.2,0.6,0.3c0.2,0.1,0.5,0.1,0.7,0.1
|
280 |
c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.4-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.3-0.3s0.1-0.3,0.1-0.4c0-0.3-0.1-0.5-0.2-0.6
|
281 |
c-0.1-0.1-0.3-0.2-0.4-0.3c-0.3-0.1-0.5-0.2-0.9-0.3c-0.3-0.1-0.8-0.2-1.2-0.3c-0.3-0.1-0.6-0.2-0.8-0.3c-0.2-0.1-0.4-0.3-0.5-0.4
|
282 |
c-0.1-0.2-0.2-0.3-0.3-0.5c0-0.2-0.1-0.4-0.1-0.5c0-0.4,0.1-0.7,0.2-0.9c0.1-0.3,0.3-0.5,0.6-0.7c0.2-0.2,0.5-0.3,0.8-0.4
|
285 |
c0,0.3,0.1,0.5,0.2,0.6s0.4,0.3,0.6,0.3c0,0,0.1,0,0.3,0.1c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.1,0.7,0.2s0.4,0.1,0.5,0.1
|
286 |
c0.2,0.1,0.4,0.2,0.6,0.3s0.3,0.3,0.4,0.4c0.1,0.2,0.2,0.3,0.3,0.5s0.1,0.4,0.1,0.6c0,0.4-0.1,0.7-0.2,1c-0.2,0.3-0.4,0.5-0.6,0.7
|
287 |
c-0.3,0.2-0.6,0.3-0.9,0.4c-0.3,0.1-0.7,0.1-1,0.1c-0.4,0-0.8,0-1.1-0.2c-0.4-0.1-0.7-0.3-0.9-0.5c-0.3-0.2-0.5-0.5-0.6-0.8
|
288 |
+
c-0.2-0.3-0.2-0.7-0.2-1.1H121z"/>
|
289 |
+
<path fill="#FFFFFF" d="M126.6,248.9h5.1v1.1h-3.9v1.9h3.6v1h-3.6v2.1h4v1.1h-5.2V248.9z"/>
|
290 |
+
<path fill="#FFFFFF" d="M132.9,248.9h1.3l3.3,5.3h0v-5.3h1.2v7.1h-1.3l-3.2-5.2h0v5.2h-1.2V248.9z"/>
|
291 |
+
<path fill="#FFFFFF" d="M140.1,248.9h3c0.5,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.4,1,0.8c0.3,0.3,0.4,0.7,0.6,1.1s0.2,0.9,0.2,1.4
|
292 |
+
c0,0.5-0.1,1-0.2,1.4s-0.3,0.8-0.6,1.1c-0.3,0.3-0.6,0.6-1,0.8c-0.4,0.2-0.9,0.3-1.4,0.3h-3V248.9z M141.4,255h1.2
|
293 |
c0.5,0,0.9-0.1,1.2-0.2c0.3-0.1,0.6-0.3,0.7-0.5c0.2-0.2,0.3-0.5,0.4-0.8c0.1-0.3,0.1-0.6,0.1-1c0-0.4,0-0.7-0.1-1
|
294 |
+
c-0.1-0.3-0.2-0.6-0.4-0.8c-0.2-0.2-0.4-0.4-0.7-0.5c-0.3-0.1-0.7-0.2-1.2-0.2h-1.2V255z"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
295 |
</g>
|
296 |
</g>
|
297 |
</svg>
|
templates/10/preview-thumb.svg
ADDED
@@ -0,0 +1,300 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 265 300" enable-background="new 0 0 265 300" xml:space="preserve">
|
5 |
+
<g>
|
6 |
+
<path id="Rectangle_787" fill="#FFFFFF" d="M5,0h255c2.8,0,5,2.2,5,5v290c0,2.8-2.2,5-5,5H5c-2.8,0-5-2.2-5-5V5C0,2.2,2.2,0,5,0z"
|
7 |
+
/>
|
8 |
+
<path id="Rectangle_788" fill="#E5E9EA" d="M42.5,59h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
9 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,60.1,41.1,59,42.5,59z"/>
|
10 |
+
<path id="Rectangle_789" fill="#E5E9EA" d="M42.5,108h180c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-180
|
11 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,109.1,41.1,108,42.5,108z"/>
|
12 |
+
<path id="Rectangle_794" fill="#E5E9EA" d="M142.5,59h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
13 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C140,60.1,141.1,59,142.5,59z"/>
|
14 |
+
<path id="Rectangle_790" fill="#E5E9EA" d="M42.5,162h15c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-15
|
15 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,163.1,41.1,162,42.5,162z"/>
|
16 |
+
<path id="Rectangle_803" fill="#E5E9EA" d="M42.5,179h15c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-15
|
17 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,180.1,41.1,179,42.5,179z"/>
|
18 |
+
<path id="Rectangle_792" fill="#E5E9EA" d="M67.5,162h65c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-65
|
19 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C65,163.1,66.1,162,67.5,162z"/>
|
20 |
+
<path id="Rectangle_802" fill="#E5E9EA" d="M67.5,179h125c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-125
|
21 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C65,180.1,66.1,179,67.5,179z"/>
|
22 |
+
<g enable-background="new ">
|
23 |
+
<path fill="#565656" d="M46.6,42.4v1h-4.5v2.7H46v1h-3.9V51h-1.1v-8.6H46.6z"/>
|
24 |
+
<path fill="#565656" d="M47.7,43.7v-1.2h1v1.2H47.7z M48.7,44.8V51h-1v-6.2H48.7z"/>
|
25 |
+
<path fill="#565656" d="M51.2,44.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
26 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1V51h-1v-6.2H51.2z"/>
|
27 |
+
<path fill="#565656" d="M55.1,49.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
28 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
29 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
30 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
31 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
32 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
33 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
34 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
35 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
36 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C54.9,49.3,55,49.5,55.1,49.6z"/>
|
37 |
+
<path fill="#565656" d="M63,44.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0H63V51h-0.8
|
38 |
+
c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9H63z"/>
|
39 |
+
<path fill="#565656" d="M68.8,42.4l4.5,6.9h0v-6.9h1.1V51h-1.2l-4.5-6.9h0V51h-1.1v-8.6H68.8z"/>
|
40 |
+
<path fill="#565656" d="M81.6,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
41 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
42 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
43 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
44 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2S77,46.3,77,46.7h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
45 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
46 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51z M79.9,47.8
|
47 |
+
c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
48 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
49 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V47.8z"/>
|
50 |
+
<path fill="#565656" d="M83.5,44.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
51 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
52 |
+
c0.1,0.2,0.1,0.5,0.1,0.8V51h-1v-4.1c0-0.2,0-0.4,0-0.5S90.1,46.1,90,46c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
53 |
+
c-0.5,0-0.9,0.1-1.2,0.4s-0.4,0.7-0.4,1.2V51h-1v-4.1c0-0.2,0-0.4-0.1-0.6c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3
|
54 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4s-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5V51h-1
|
55 |
+
v-6.2H83.5z"/>
|
56 |
+
<path fill="#565656" d="M97.2,50.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
57 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
58 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
59 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
60 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C97.9,49.7,97.6,50.3,97.2,50.6z M96.9,46.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
61 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
62 |
+
C97.1,47.1,97,46.8,96.9,46.6z"/>
|
63 |
+
</g>
|
64 |
+
<g enable-background="new ">
|
65 |
+
<path fill="#565656" d="M46.9,91.4v1h-4.8v2.7h4.5v1h-4.5v3h4.8v1h-6v-8.6H46.9z"/>
|
66 |
+
<path fill="#565656" d="M49.1,93.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
67 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
68 |
+
c0.1,0.2,0.1,0.5,0.1,0.8v4.5h-1v-4.1c0-0.2,0-0.4,0-0.5s-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
69 |
+
c-0.5,0-0.9,0.1-1.2,0.4S53,95.7,53,96.1v3.9h-1v-4.1c0-0.2,0-0.4-0.1-0.6c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3
|
70 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4s-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5v3.9h-1
|
71 |
+
v-6.2H49.1z"/>
|
72 |
+
<path fill="#565656" d="M63.8,100c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
73 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
74 |
+
C58.1,99,58,98.7,58,98.4c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
75 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
76 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
77 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
78 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V100z M62.2,96.8
|
79 |
+
C62,96.9,61.9,97,61.7,97s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
80 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
81 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V96.8z"/>
|
82 |
+
<path fill="#565656" d="M64.8,92.7v-1.2h1v1.2H64.8z M65.9,93.8v6.2h-1v-6.2H65.9z"/>
|
83 |
+
<path fill="#565656" d="M68.5,91.4v8.6h-1v-8.6H68.5z"/>
|
84 |
+
<path fill="#565656" d="M77.2,91.4l3.3,8.6h-1.3l-0.9-2.6h-3.6l-1,2.6h-1.2l3.3-8.6H77.2z M78,96.5l-1.4-4h0l-1.5,4H78z"/>
|
85 |
+
<path fill="#565656" d="M85.7,100v-0.8h0c-0.2,0.3-0.4,0.6-0.8,0.7c-0.4,0.2-0.8,0.2-1.2,0.2c-0.5,0-0.9-0.1-1.3-0.3
|
86 |
+
c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.5-1c-0.1-0.4-0.2-0.8-0.2-1.2c0-0.4,0.1-0.9,0.2-1.2c0.1-0.4,0.3-0.7,0.5-1
|
87 |
+
c0.2-0.3,0.5-0.5,0.9-0.7s0.8-0.3,1.2-0.3c0.2,0,0.3,0,0.5,0s0.4,0.1,0.6,0.2s0.4,0.2,0.5,0.3s0.3,0.3,0.4,0.5h0v-3.2h1v8.6H85.7z
|
88 |
+
M82.1,97.8c0.1,0.3,0.2,0.5,0.3,0.7c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2c0.3,0,0.6-0.1,0.9-0.2
|
89 |
+
c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.5,0.3-0.8c0.1-0.3,0.1-0.6,0.1-0.9c0-0.3,0-0.6-0.1-0.9c-0.1-0.3-0.2-0.5-0.3-0.8
|
90 |
+
c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5c-0.1,0.2-0.2,0.5-0.3,0.8
|
91 |
+
C82,96.4,82,96.6,82,97C82,97.2,82,97.5,82.1,97.8z"/>
|
92 |
+
<path fill="#565656" d="M92.9,100v-0.8h0c-0.2,0.3-0.4,0.6-0.8,0.7c-0.4,0.2-0.8,0.2-1.2,0.2c-0.5,0-0.9-0.1-1.3-0.3
|
93 |
+
c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.5-1c-0.1-0.4-0.2-0.8-0.2-1.2c0-0.4,0.1-0.9,0.2-1.2c0.1-0.4,0.3-0.7,0.5-1
|
94 |
+
c0.2-0.3,0.5-0.5,0.9-0.7s0.8-0.3,1.2-0.3c0.2,0,0.3,0,0.5,0s0.4,0.1,0.6,0.2s0.4,0.2,0.5,0.3s0.3,0.3,0.4,0.5h0v-3.2h1v8.6H92.9z
|
95 |
+
M89.2,97.8c0.1,0.3,0.2,0.5,0.3,0.7c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2c0.3,0,0.6-0.1,0.9-0.2
|
96 |
+
c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.5,0.3-0.8c0.1-0.3,0.1-0.6,0.1-0.9c0-0.3,0-0.6-0.1-0.9c-0.1-0.3-0.2-0.5-0.3-0.8
|
97 |
+
c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5c-0.1,0.2-0.2,0.5-0.3,0.8
|
98 |
+
c-0.1,0.3-0.1,0.6-0.1,0.9C89.1,97.2,89.1,97.5,89.2,97.8z"/>
|
99 |
+
<path fill="#565656" d="M96.4,93.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
100 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1v2.8h-1v-6.2H96.4z"/>
|
101 |
+
<path fill="#565656" d="M103.6,99.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
102 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
103 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2H100
|
104 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
105 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C104.4,98.7,104.1,99.3,103.6,99.6z M103.4,95.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
106 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
107 |
+
C103.5,96.1,103.5,95.8,103.4,95.6z"/>
|
108 |
+
<path fill="#565656" d="M106.5,98.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
109 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
110 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
111 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
112 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
113 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
114 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
115 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
116 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
117 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C106.3,98.3,106.4,98.5,106.5,98.6z"/>
|
118 |
+
<path fill="#565656" d="M112.5,98.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
119 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
120 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
121 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
122 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
123 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
124 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
125 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
126 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
127 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C112.3,98.3,112.4,98.5,112.5,98.6z"/>
|
128 |
+
</g>
|
129 |
+
<g enable-background="new ">
|
130 |
+
<path fill="#565656" d="M40.7,143c0.2-0.5,0.4-1,0.8-1.4c0.3-0.4,0.8-0.7,1.3-1c0.5-0.2,1.1-0.4,1.8-0.4c0.7,0,1.3,0.1,1.8,0.4
|
131 |
+
c0.5,0.2,0.9,0.6,1.3,1c0.3,0.4,0.6,0.9,0.8,1.4c0.2,0.5,0.3,1.1,0.3,1.7s-0.1,1.1-0.3,1.7c-0.2,0.5-0.4,1-0.8,1.4
|
132 |
+
c-0.3,0.4-0.8,0.7-1.3,1c-0.5,0.2-1.1,0.4-1.8,0.4c-0.7,0-1.3-0.1-1.8-0.4c-0.5-0.2-0.9-0.6-1.3-1c-0.3-0.4-0.6-0.9-0.8-1.4
|
133 |
+
s-0.3-1.1-0.3-1.7S40.5,143.6,40.7,143z M41.8,146c0.1,0.4,0.3,0.8,0.5,1.1s0.5,0.6,0.9,0.8c0.4,0.2,0.8,0.3,1.3,0.3
|
134 |
+
s1-0.1,1.3-0.3c0.4-0.2,0.7-0.5,0.9-0.8c0.2-0.3,0.4-0.7,0.5-1.1c0.1-0.4,0.2-0.8,0.2-1.3c0-0.4-0.1-0.9-0.2-1.3
|
135 |
+
c-0.1-0.4-0.3-0.8-0.5-1.1c-0.2-0.3-0.5-0.6-0.9-0.8s-0.8-0.3-1.3-0.3s-1,0.1-1.3,0.3s-0.7,0.5-0.9,0.8s-0.4,0.7-0.5,1.1
|
136 |
+
c-0.1,0.4-0.2,0.8-0.2,1.3C41.6,145.1,41.7,145.6,41.8,146z"/>
|
137 |
+
<path fill="#565656" d="M50.9,142.8v0.8h0c0.2-0.3,0.4-0.6,0.8-0.8c0.4-0.2,0.8-0.2,1.2-0.2c0.5,0,0.9,0.1,1.3,0.3
|
138 |
+
s0.7,0.4,0.9,0.7c0.2,0.3,0.4,0.6,0.5,1c0.1,0.4,0.2,0.8,0.2,1.2c0,0.4-0.1,0.9-0.2,1.2c-0.1,0.4-0.3,0.7-0.5,1s-0.5,0.5-0.9,0.7
|
139 |
+
c-0.4,0.2-0.8,0.3-1.2,0.3c-0.2,0-0.3,0-0.5,0s-0.4-0.1-0.6-0.2c-0.2-0.1-0.4-0.2-0.5-0.3c-0.2-0.1-0.3-0.3-0.4-0.5h0v3.2h-1v-8.6
|
140 |
+
H50.9z M54.6,145c-0.1-0.3-0.2-0.5-0.3-0.7c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2
|
141 |
+
c-0.2,0.1-0.4,0.3-0.6,0.5c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,0.9c0,0.3,0,0.6,0.1,0.9c0.1,0.3,0.2,0.5,0.3,0.8
|
142 |
+
c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2c0.4,0,0.6-0.1,0.9-0.2s0.4-0.3,0.6-0.5s0.2-0.5,0.3-0.8
|
143 |
+
c0.1-0.3,0.1-0.6,0.1-0.9C54.7,145.6,54.7,145.3,54.6,145z"/>
|
144 |
+
<path fill="#565656" d="M59.7,142.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0h0.5v0.9
|
145 |
+
h-0.8c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9
|
146 |
+
H59.7z"/>
|
147 |
+
<path fill="#565656" d="M60.8,141.7v-1.2h1v1.2H60.8z M61.9,142.8v6.2h-1v-6.2H61.9z"/>
|
148 |
+
<path fill="#565656" d="M63.3,144.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7s0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
149 |
+
s0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
150 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1
|
151 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S63.2,145,63.3,144.6z M64.3,146.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
152 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.3,0,0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7s0.1-0.6,0.1-1s0-0.7-0.1-1
|
153 |
+
s-0.2-0.5-0.4-0.7c-0.2-0.2-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
154 |
+
c-0.2,0.2-0.3,0.4-0.4,0.7c-0.1,0.3-0.1,0.6-0.1,1S64.2,146.6,64.3,146.9z"/>
|
155 |
+
<path fill="#565656" d="M71.3,142.8v1h0c0.4-0.8,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5
|
156 |
+
c0.2,0.2,0.3,0.4,0.4,0.7c0.1,0.3,0.1,0.6,0.1,0.9v4.1h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.3-0.9-0.3
|
157 |
+
c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8v3.5h-1v-6.2H71.3z"/>
|
158 |
+
<path fill="#565656" d="M80.4,141.7v-1.2h1v1.2H80.4z M81.4,142.8v6.2h-1v-6.2H81.4z"/>
|
159 |
+
<path fill="#565656" d="M84,142.8v1h0c0.4-0.8,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5
|
160 |
+
c0.2,0.2,0.3,0.4,0.4,0.7c0.1,0.3,0.1,0.6,0.1,0.9v4.1h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.3-0.9-0.3
|
161 |
+
c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8v3.5h-1v-6.2H84z"/>
|
162 |
+
<path fill="#565656" d="M93.9,150c-0.2-0.4-0.4-0.9-0.6-1.4c-0.2-0.5-0.3-0.9-0.4-1.4c-0.1-0.5-0.1-1-0.1-1.5
|
163 |
+
c0-0.9,0.2-1.9,0.5-2.9c0.3-1,0.8-1.9,1.4-2.7h0.8c-0.6,0.9-1,1.8-1.2,2.7c-0.2,0.9-0.4,1.8-0.4,2.8c0,1,0.1,2,0.4,2.9
|
164 |
+
c0.2,0.9,0.6,1.8,1.2,2.7h-0.8C94.4,150.9,94.1,150.5,93.9,150z"/>
|
165 |
+
<path fill="#565656" d="M97.4,140.4v7.6h4.5v1h-5.7v-8.6H97.4z"/>
|
166 |
+
<path fill="#565656" d="M102.9,141.7v-1.2h1v1.2H102.9z M103.9,142.8v6.2h-1v-6.2H103.9z"/>
|
167 |
+
<path fill="#565656" d="M106.2,147.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
168 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
169 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
170 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
171 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
172 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
173 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
174 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
175 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
176 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C106.1,147.3,106.1,147.5,106.2,147.6z"/>
|
177 |
+
<path fill="#565656" d="M114.1,142.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0h0.5v0.9
|
178 |
+
h-0.8c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9
|
179 |
+
H114.1z"/>
|
180 |
+
<path fill="#565656" d="M115.3,141.7v-1.2h1v1.2H115.3z M116.3,142.8v6.2h-1v-6.2H116.3z"/>
|
181 |
+
<path fill="#565656" d="M118.9,142.8v1h0c0.4-0.8,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5s0.3,0.4,0.4,0.7
|
182 |
+
c0.1,0.3,0.1,0.6,0.1,0.9v4.1h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.3-0.9-0.3c-0.3,0-0.6,0-0.8,0.1
|
183 |
+
c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8v3.5h-1v-6.2H118.9z"/>
|
184 |
+
<path fill="#565656" d="M129.2,150.8c-0.5,0.5-1.2,0.8-2.2,0.8c-0.3,0-0.6,0-0.9-0.1c-0.3-0.1-0.6-0.2-0.8-0.3
|
185 |
+
c-0.2-0.1-0.4-0.3-0.6-0.6c-0.2-0.2-0.2-0.5-0.3-0.9h1c0,0.2,0.1,0.3,0.2,0.5s0.2,0.2,0.4,0.3s0.3,0.1,0.5,0.2
|
186 |
+
c0.2,0,0.4,0.1,0.5,0.1c0.3,0,0.6-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.5,0.3-0.7c0.1-0.3,0.1-0.6,0.1-0.9v-0.4h0
|
187 |
+
c-0.2,0.4-0.4,0.7-0.8,0.8s-0.7,0.3-1.1,0.3c-0.5,0-0.9-0.1-1.2-0.3s-0.6-0.4-0.9-0.7s-0.4-0.6-0.5-1c-0.1-0.4-0.2-0.8-0.2-1.2
|
188 |
+
c0-0.4,0-0.7,0.1-1.1s0.3-0.7,0.5-1.1c0.2-0.3,0.5-0.6,0.9-0.8c0.4-0.2,0.8-0.3,1.4-0.3c0.4,0,0.8,0.1,1.1,0.3s0.6,0.4,0.8,0.8h0
|
189 |
+
v-0.9h1v5.7C129.9,149.5,129.7,150.2,129.2,150.8z M127.9,148c0.2-0.1,0.4-0.3,0.6-0.6c0.1-0.2,0.2-0.5,0.3-0.8s0.1-0.6,0.1-0.9
|
190 |
+
c0-0.3,0-0.5-0.1-0.8c-0.1-0.3-0.2-0.5-0.3-0.7s-0.3-0.4-0.5-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.6,0.1-0.8,0.2
|
191 |
+
s-0.4,0.3-0.6,0.5c-0.1,0.2-0.3,0.4-0.3,0.7c-0.1,0.3-0.1,0.6-0.1,0.9c0,0.3,0,0.6,0.1,0.8c0.1,0.3,0.2,0.5,0.3,0.8
|
192 |
+
c0.1,0.2,0.3,0.4,0.5,0.6c0.2,0.1,0.5,0.2,0.8,0.2S127.7,148.1,127.9,148z"/>
|
193 |
+
<path fill="#565656" d="M131.8,148.7c0.2-0.9,0.4-1.8,0.4-2.8c0-1-0.1-2-0.4-2.9c-0.2-0.9-0.6-1.8-1.2-2.7h0.8
|
194 |
+
c0.3,0.4,0.5,0.9,0.8,1.3c0.2,0.4,0.4,0.9,0.6,1.4s0.3,0.9,0.4,1.4c0.1,0.5,0.1,1,0.1,1.5c0,0.9-0.2,1.9-0.5,2.9
|
195 |
+
c-0.3,1-0.8,1.8-1.4,2.7h-0.8C131.2,150.5,131.6,149.6,131.8,148.7z"/>
|
196 |
+
</g>
|
197 |
+
<g enable-background="new ">
|
198 |
+
<path fill="#565656" d="M142.1,42.4V50h4.5v1h-5.7v-8.6H142.1z"/>
|
199 |
+
<path fill="#565656" d="M152.9,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
200 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
201 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
202 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
203 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
204 |
+
s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1s0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5c0.1,0.2,0.2,0.5,0.2,0.9
|
205 |
+
v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51z M151.3,47.8c-0.1,0.1-0.3,0.2-0.5,0.2
|
206 |
+
c-0.2,0-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.4-0.2,0.6
|
207 |
+
c0,0.2,0,0.3,0.1,0.4c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
208 |
+
c0.2-0.1,0.4-0.2,0.6-0.3s0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V47.8z"/>
|
209 |
+
<path fill="#565656" d="M154.7,49.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
210 |
+
s0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3c0.1-0.1,0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
211 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
212 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.6-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
213 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3s-0.3-0.1-0.5-0.2
|
214 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
215 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
216 |
+
s0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9s-0.4,0.4-0.6,0.6
|
217 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
218 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C154.5,49.3,154.6,49.5,154.7,49.6z"/>
|
219 |
+
<path fill="#565656" d="M162.5,44.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3c0,0.1,0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0h0.5
|
220 |
+
V51h-0.8c-0.3,0-0.5,0-0.7-0.1c-0.2,0-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1
|
221 |
+
v-1.9h1v1.9H162.5z"/>
|
222 |
+
<path fill="#565656" d="M168.4,42.4l4.5,6.9h0v-6.9h1.1V51h-1.2l-4.5-6.9h0V51h-1.1v-8.6H168.4z"/>
|
223 |
+
<path fill="#565656" d="M181.2,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
224 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
225 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5s0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
226 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
227 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
228 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
229 |
+
s0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51z M179.5,47.8c-0.1,0.1-0.3,0.2-0.5,0.2
|
230 |
+
c-0.2,0-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2s-0.3,0.2-0.4,0.3c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4
|
231 |
+
c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1c0.2-0.1,0.4-0.2,0.6-0.3
|
232 |
+
c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V47.8z"/>
|
233 |
+
<path fill="#565656" d="M183.1,44.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
234 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
235 |
+
c0.1,0.2,0.1,0.5,0.1,0.8V51h-1v-4.1c0-0.2,0-0.4,0-0.5s-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
236 |
+
c-0.5,0-0.9,0.1-1.2,0.4s-0.4,0.7-0.4,1.2V51h-1v-4.1c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4s-0.2-0.2-0.4-0.3
|
237 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4c-0.1,0.2-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5
|
238 |
+
V51h-1v-6.2H183.1z"/>
|
239 |
+
<path fill="#565656" d="M196.7,50.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
240 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.7-0.2,1.2-0.2
|
241 |
+
c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6c0,0.3,0,0.5,0.1,0.8
|
242 |
+
c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3s0.5-0.5,0.5-0.9h1
|
243 |
+
C197.5,49.7,197.2,50.3,196.7,50.6z M196.5,46.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1
|
244 |
+
c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4c-0.2,0.2-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6C196.6,47.1,196.6,46.8,196.5,46.6
|
245 |
+
z"/>
|
246 |
+
</g>
|
247 |
+
<path id="Rectangle_801" fill="#377DFF" d="M85,238h95c2.8,0,5,2.2,5,5v17c0,2.8-2.2,5-5,5H85c-2.8,0-5-2.2-5-5v-17
|
248 |
+
C80,240.2,82.2,238,85,238z"/>
|
249 |
+
<g enable-background="new ">
|
250 |
+
<path fill="#FFFFFF" d="M105.8,253.6c0,0.3,0,0.5,0.1,0.7c0.1,0.2,0.2,0.4,0.4,0.5s0.4,0.2,0.6,0.3c0.2,0.1,0.5,0.1,0.7,0.1
|
251 |
+
c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.4-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.3-0.3s0.1-0.3,0.1-0.4c0-0.3-0.1-0.5-0.2-0.6
|
252 |
+
c-0.1-0.1-0.3-0.2-0.4-0.3c-0.3-0.1-0.5-0.2-0.9-0.3c-0.3-0.1-0.8-0.2-1.2-0.3c-0.3-0.1-0.6-0.2-0.8-0.3c-0.2-0.1-0.4-0.3-0.5-0.4
|
253 |
+
c-0.1-0.2-0.2-0.3-0.3-0.5c0-0.2-0.1-0.4-0.1-0.5c0-0.4,0.1-0.7,0.2-0.9c0.1-0.3,0.3-0.5,0.6-0.7c0.2-0.2,0.5-0.3,0.8-0.4
|
254 |
+
c0.3-0.1,0.6-0.1,1-0.1c0.4,0,0.7,0,1.1,0.1s0.6,0.2,0.9,0.4c0.2,0.2,0.4,0.4,0.6,0.7s0.2,0.6,0.2,1h-1.2c0-0.5-0.2-0.8-0.5-1
|
255 |
+
c-0.3-0.2-0.6-0.3-1.1-0.3c-0.1,0-0.3,0-0.5,0s-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.2-0.3,0.3c-0.1,0.1-0.1,0.3-0.1,0.4
|
256 |
+
c0,0.3,0.1,0.5,0.2,0.6s0.4,0.3,0.6,0.3c0,0,0.1,0,0.3,0.1c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.1,0.7,0.2s0.4,0.1,0.5,0.1
|
257 |
+
c0.2,0.1,0.4,0.2,0.6,0.3s0.3,0.3,0.4,0.4c0.1,0.2,0.2,0.3,0.3,0.5s0.1,0.4,0.1,0.6c0,0.4-0.1,0.7-0.2,1c-0.2,0.3-0.4,0.5-0.6,0.7
|
258 |
+
c-0.3,0.2-0.6,0.3-0.9,0.4c-0.3,0.1-0.7,0.1-1,0.1c-0.4,0-0.8,0-1.1-0.2c-0.4-0.1-0.7-0.3-0.9-0.5c-0.3-0.2-0.5-0.5-0.6-0.8
|
259 |
+
c-0.2-0.3-0.2-0.7-0.2-1.1H105.8z"/>
|
260 |
+
<path fill="#FFFFFF" d="M111.4,248.9h1.2v4.2c0,0.2,0,0.5,0,0.7c0,0.2,0.1,0.5,0.2,0.7s0.3,0.4,0.5,0.5c0.2,0.1,0.5,0.2,0.9,0.2
|
261 |
+
s0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.5-0.5c0.1-0.2,0.2-0.4,0.2-0.7c0-0.2,0-0.5,0-0.7v-4.2h1.2v4.6c0,0.5-0.1,0.9-0.2,1.2
|
262 |
+
s-0.3,0.6-0.6,0.9c-0.3,0.2-0.6,0.4-0.9,0.5s-0.8,0.2-1.2,0.2s-0.8-0.1-1.2-0.2c-0.4-0.1-0.7-0.3-0.9-0.5
|
263 |
+
c-0.3-0.2-0.5-0.5-0.6-0.9c-0.1-0.3-0.2-0.7-0.2-1.2V248.9z"/>
|
264 |
+
<path fill="#FFFFFF" d="M118.7,248.9h3.5c0.6,0,1.2,0.1,1.5,0.4c0.4,0.3,0.6,0.7,0.6,1.3c0,0.4-0.1,0.7-0.3,0.9
|
265 |
+
c-0.2,0.3-0.4,0.5-0.8,0.6v0c0.4,0.1,0.8,0.3,1,0.6s0.3,0.7,0.3,1.2c0,0.3,0,0.5-0.1,0.8c-0.1,0.2-0.3,0.5-0.5,0.6
|
266 |
+
c-0.2,0.2-0.5,0.3-0.8,0.4c-0.3,0.1-0.7,0.2-1.2,0.2h-3.3V248.9z M119.9,251.8h2c0.3,0,0.6-0.1,0.8-0.3c0.2-0.2,0.3-0.4,0.3-0.7
|
267 |
+
c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.1-0.4-0.2-0.8-0.2h-2V251.8z M119.9,255h2.2c0.4,0,0.7-0.1,0.9-0.3c0.2-0.2,0.3-0.5,0.3-0.8
|
268 |
+
c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.2-0.5-0.3-0.9-0.3h-2.2V255z"/>
|
269 |
+
<path fill="#FFFFFF" d="M126.5,253.6c0,0.3,0,0.5,0.1,0.7c0.1,0.2,0.2,0.4,0.4,0.5c0.2,0.1,0.4,0.2,0.6,0.3
|
270 |
+
c0.2,0.1,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.4-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.1-0.3,0.1-0.4
|
271 |
+
c0-0.3-0.1-0.5-0.2-0.6c-0.1-0.1-0.3-0.2-0.4-0.3c-0.3-0.1-0.5-0.2-0.9-0.3c-0.3-0.1-0.8-0.2-1.2-0.3c-0.3-0.1-0.6-0.2-0.8-0.3
|
272 |
+
s-0.4-0.3-0.5-0.4c-0.1-0.2-0.2-0.3-0.3-0.5c0-0.2-0.1-0.4-0.1-0.5c0-0.4,0.1-0.7,0.2-0.9c0.2-0.3,0.3-0.5,0.6-0.7
|
273 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.4,0,0.7,0,1.1,0.1s0.6,0.2,0.9,0.4c0.2,0.2,0.4,0.4,0.6,0.7s0.2,0.6,0.2,1h-1.2
|
274 |
+
c0-0.5-0.2-0.8-0.5-1c-0.3-0.2-0.6-0.3-1.1-0.3c-0.1,0-0.3,0-0.5,0s-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.2-0.3,0.3
|
275 |
+
c-0.1,0.1-0.1,0.3-0.1,0.4c0,0.3,0.1,0.5,0.2,0.6c0.2,0.1,0.4,0.3,0.6,0.3c0,0,0.1,0,0.3,0.1c0.2,0.1,0.4,0.1,0.6,0.2
|
276 |
+
c0.2,0.1,0.4,0.1,0.7,0.2s0.4,0.1,0.5,0.1c0.2,0.1,0.4,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.4c0.1,0.2,0.2,0.3,0.3,0.5
|
277 |
+
s0.1,0.4,0.1,0.6c0,0.4-0.1,0.7-0.2,1s-0.4,0.5-0.6,0.7c-0.3,0.2-0.6,0.3-0.9,0.4c-0.3,0.1-0.7,0.1-1,0.1c-0.4,0-0.8,0-1.2-0.2
|
278 |
+
c-0.4-0.1-0.7-0.3-0.9-0.5c-0.3-0.2-0.5-0.5-0.6-0.8c-0.2-0.3-0.2-0.7-0.2-1.1H126.5z"/>
|
279 |
+
<path fill="#FFFFFF" d="M137,251.1c-0.1-0.2-0.1-0.4-0.2-0.6c-0.1-0.2-0.2-0.3-0.4-0.4c-0.1-0.1-0.3-0.2-0.5-0.3
|
280 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.4,0-0.7,0.1-1,0.2c-0.3,0.2-0.5,0.4-0.7,0.6c-0.2,0.3-0.3,0.5-0.4,0.9c-0.1,0.3-0.1,0.7-0.1,1
|
281 |
+
s0,0.7,0.1,1c0.1,0.3,0.2,0.6,0.4,0.9c0.2,0.3,0.4,0.5,0.7,0.6c0.3,0.2,0.6,0.2,1,0.2c0.3,0,0.5,0,0.7-0.1
|
282 |
+
c0.2-0.1,0.4-0.2,0.5-0.4c0.2-0.2,0.3-0.4,0.4-0.6c0.1-0.2,0.1-0.5,0.2-0.7h1.2c0,0.4-0.1,0.8-0.3,1.2c-0.2,0.4-0.4,0.7-0.6,0.9
|
283 |
+
s-0.6,0.5-0.9,0.6c-0.4,0.1-0.8,0.2-1.2,0.2c-0.5,0-1-0.1-1.4-0.3c-0.4-0.2-0.8-0.5-1.1-0.8c-0.3-0.3-0.5-0.7-0.7-1.2
|
284 |
+
c-0.2-0.5-0.2-0.9-0.2-1.5c0-0.5,0.1-1,0.2-1.4c0.2-0.5,0.4-0.9,0.7-1.2c0.3-0.3,0.7-0.6,1.1-0.8c0.4-0.2,0.9-0.3,1.4-0.3
|
285 |
+
c0.4,0,0.8,0.1,1.1,0.2c0.4,0.1,0.7,0.3,0.9,0.5c0.3,0.2,0.5,0.5,0.7,0.8c0.2,0.3,0.3,0.6,0.3,1H137z"/>
|
286 |
+
<path fill="#FFFFFF" d="M139.4,248.9h3.4c0.8,0,1.4,0.2,1.8,0.5s0.6,0.8,0.6,1.4c0,0.3,0,0.6-0.1,0.8c-0.1,0.2-0.2,0.4-0.4,0.5
|
287 |
+
c-0.1,0.1-0.3,0.2-0.4,0.3c-0.1,0.1-0.2,0.1-0.3,0.1v0c0.1,0,0.2,0,0.3,0.1c0.1,0.1,0.2,0.1,0.3,0.3c0.1,0.1,0.2,0.3,0.3,0.5
|
288 |
+
s0.1,0.4,0.1,0.7c0,0.4,0,0.8,0.1,1.1c0.1,0.3,0.2,0.6,0.3,0.7h-1.3c-0.1-0.2-0.1-0.3-0.2-0.5s0-0.4,0-0.5c0-0.3,0-0.6-0.1-0.8
|
289 |
+
c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.2-0.3-0.3-0.4-0.3s-0.4-0.1-0.7-0.1h-1.8v2.9h-1.2V248.9z M140.6,252.1h2c0.4,0,0.7-0.1,0.9-0.3
|
290 |
+
c0.2-0.2,0.3-0.5,0.3-0.9c0-0.2,0-0.4-0.1-0.6s-0.2-0.3-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.2c-0.2,0-0.3,0-0.5,0h-2V252.1z"/>
|
291 |
+
<path fill="#FFFFFF" d="M146.4,248.9h1.2v7.1h-1.2V248.9z"/>
|
292 |
+
<path fill="#FFFFFF" d="M149.2,248.9h3.5c0.6,0,1.2,0.1,1.5,0.4c0.4,0.3,0.6,0.7,0.6,1.3c0,0.4-0.1,0.7-0.3,0.9
|
293 |
+
c-0.2,0.3-0.4,0.5-0.8,0.6v0c0.4,0.1,0.8,0.3,1,0.6s0.3,0.7,0.3,1.2c0,0.3,0,0.5-0.1,0.8c-0.1,0.2-0.3,0.5-0.5,0.6
|
294 |
+
c-0.2,0.2-0.5,0.3-0.8,0.4c-0.3,0.1-0.7,0.2-1.2,0.2h-3.3V248.9z M150.5,251.8h2c0.3,0,0.6-0.1,0.8-0.3c0.2-0.2,0.3-0.4,0.3-0.7
|
295 |
+
c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.1-0.4-0.2-0.8-0.2h-2V251.8z M150.5,255h2.2c0.4,0,0.7-0.1,0.9-0.3c0.2-0.2,0.3-0.5,0.3-0.8
|
296 |
+
c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.2-0.5-0.3-0.9-0.3h-2.2V255z"/>
|
297 |
+
<path fill="#FFFFFF" d="M156.3,248.9h5.1v1.1h-3.9v1.9h3.6v1h-3.6v2.1h4v1.1h-5.2V248.9z"/>
|
298 |
+
</g>
|
299 |
+
</g>
|
300 |
+
</svg>
|
templates/11/preview-thumb.svg
ADDED
@@ -0,0 +1,526 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 265 300" enable-background="new 0 0 265 300" xml:space="preserve">
|
5 |
+
<g>
|
6 |
+
<path id="Rectangle_804" fill="#FFFFFF" d="M5,0h255c2.8,0,5,2.2,5,5v290c0,2.8-2.2,5-5,5H5c-2.8,0-5-2.2-5-5V5C0,2.2,2.2,0,5,0z"
|
7 |
+
/>
|
8 |
+
<path id="Rectangle_809" fill="#E5E9EA" d="M42.5,62L42.5,62c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5l0,0
|
9 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,63.1,41.1,62,42.5,62z"/>
|
10 |
+
<path id="Rectangle_815" fill="#E5E9EA" d="M42.5,129L42.5,129c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5l0,0
|
11 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,130.1,41.1,129,42.5,129z"/>
|
12 |
+
<path id="Rectangle_819" fill="#E5E9EA" d="M42.5,196L42.5,196c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5l0,0
|
13 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,197.1,41.1,196,42.5,196z"/>
|
14 |
+
<path id="Rectangle_814" fill="#E5E9EA" d="M42.5,77L42.5,77c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5l0,0
|
15 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,78.1,41.1,77,42.5,77z"/>
|
16 |
+
<path id="Rectangle_816" fill="#E5E9EA" d="M42.5,144L42.5,144c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5l0,0
|
17 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,145.1,41.1,144,42.5,144z"/>
|
18 |
+
<path id="Rectangle_820" fill="#E5E9EA" d="M42.5,211L42.5,211c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5l0,0
|
19 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,212.1,41.1,211,42.5,211z"/>
|
20 |
+
<path id="Rectangle_811" fill="#E5E9EA" d="M52.5,62h35c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-35
|
21 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C50,63.1,51.1,62,52.5,62z"/>
|
22 |
+
<path id="Rectangle_817" fill="#E5E9EA" d="M52.5,129h35c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-35
|
23 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C50,130.1,51.1,129,52.5,129z"/>
|
24 |
+
<path id="Rectangle_821" fill="#E5E9EA" d="M52.5,196h35c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-35
|
25 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C50,197.1,51.1,196,52.5,196z"/>
|
26 |
+
<path id="Rectangle_813" fill="#E5E9EA" d="M52.5,77h55c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-55
|
27 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C50,78.1,51.1,77,52.5,77z"/>
|
28 |
+
<path id="Rectangle_818" fill="#E5E9EA" d="M52.5,144h55c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-55
|
29 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C50,145.1,51.1,144,52.5,144z"/>
|
30 |
+
<path id="Rectangle_822" fill="#E5E9EA" d="M52.5,211h55c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-55
|
31 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C50,212.1,51.1,211,52.5,211z"/>
|
32 |
+
<g enable-background="new ">
|
33 |
+
<path fill="#565656" d="M42.1,42.4v3.7h4.5v-3.7h1.1V51h-1.1v-3.9h-4.5V51h-1.1v-8.6H42.1z"/>
|
34 |
+
<path fill="#565656" d="M54.9,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
35 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
36 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
37 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
38 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
39 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
40 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51z M53.3,47.8
|
41 |
+
C53.1,47.9,53,48,52.8,48s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
42 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
43 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V47.8z"/>
|
44 |
+
<path fill="#565656" d="M57.6,51l-2.3-6.2h1.1l1.7,5.2h0l1.7-5.2h1.1L58.7,51H57.6z"/>
|
45 |
+
<path fill="#565656" d="M66.3,50.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
46 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
47 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
48 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
49 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C67,49.7,66.7,50.3,66.3,50.6z M66,46.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
50 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
51 |
+
C66.2,47.1,66.1,46.8,66,46.6z"/>
|
52 |
+
<path fill="#565656" d="M74.1,51.8c-0.1,0.3-0.2,0.6-0.4,0.8c-0.1,0.2-0.2,0.4-0.4,0.5c-0.1,0.1-0.3,0.2-0.5,0.3
|
53 |
+
c-0.2,0.1-0.4,0.1-0.6,0.1c-0.1,0-0.2,0-0.4,0s-0.2,0-0.3-0.1v-0.9c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3,0c0.2,0,0.4,0,0.5-0.2
|
54 |
+
c0.1-0.1,0.2-0.2,0.3-0.4l0.4-1L71,44.8h1.2l1.8,5.1h0l1.7-5.1h1.1L74.1,51.8z"/>
|
55 |
+
<path fill="#565656" d="M77.5,46.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7s0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
56 |
+
s0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
57 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1
|
58 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S77.4,47,77.5,46.6z M78.5,48.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
59 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.3,0,0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7s0.1-0.6,0.1-1s0-0.7-0.1-1
|
60 |
+
s-0.2-0.5-0.4-0.7c-0.2-0.2-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
61 |
+
c-0.2,0.2-0.3,0.4-0.4,0.7c-0.1,0.3-0.1,0.6-0.1,1S78.4,48.6,78.5,48.9z"/>
|
62 |
+
<path fill="#565656" d="M88.7,51v-1h0c-0.2,0.4-0.5,0.7-0.8,0.8c-0.3,0.2-0.7,0.3-1.2,0.3c-0.4,0-0.7-0.1-1-0.2
|
63 |
+
c-0.3-0.1-0.5-0.3-0.7-0.5c-0.2-0.2-0.3-0.4-0.4-0.7c-0.1-0.3-0.1-0.6-0.1-0.9v-4.1h1V49c0,0.4,0.1,0.7,0.3,0.9
|
64 |
+
c0.2,0.2,0.5,0.3,0.9,0.3c0.3,0,0.6,0,0.8-0.1c0.2-0.1,0.4-0.2,0.6-0.4c0.2-0.2,0.3-0.4,0.3-0.6c0.1-0.2,0.1-0.5,0.1-0.8v-3.5h1
|
65 |
+
V51H88.7z"/>
|
66 |
+
<path fill="#565656" d="M98.9,50.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
67 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
68 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
69 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
70 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C99.7,49.7,99.4,50.3,98.9,50.6z M98.7,46.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
71 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
72 |
+
C98.8,47.1,98.8,46.8,98.7,46.6z"/>
|
73 |
+
<path fill="#565656" d="M102.7,51l-2.3-6.2h1.1l1.7,5.2h0l1.7-5.2h1.1l-2.3,6.2H102.7z"/>
|
74 |
+
<path fill="#565656" d="M111.4,50.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
75 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
76 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
77 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
78 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C112.2,49.7,111.9,50.3,111.4,50.6z M111.1,46.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
79 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
80 |
+
C111.3,47.1,111.2,46.8,111.1,46.6z"/>
|
81 |
+
<path fill="#565656" d="M114.4,44.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
82 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1V51h-1v-6.2H114.4z"/>
|
83 |
+
<path fill="#565656" d="M121.8,42.4v3.3h0c0.1-0.2,0.2-0.4,0.3-0.5c0.1-0.1,0.3-0.2,0.5-0.3s0.4-0.1,0.6-0.2
|
84 |
+
c0.2,0,0.4-0.1,0.6-0.1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5s0.3,0.4,0.4,0.7s0.1,0.6,0.1,0.9V51h-1v-4.2
|
85 |
+
c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.3-0.9-0.3c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6
|
86 |
+
c-0.1,0.2-0.1,0.5-0.1,0.8V51h-1v-8.6H121.8z"/>
|
87 |
+
<path fill="#565656" d="M132.9,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
88 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
89 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5s0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
90 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
91 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
92 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
93 |
+
s0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51z M131.3,47.8c-0.1,0.1-0.3,0.2-0.5,0.2
|
94 |
+
c-0.2,0-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2s-0.3,0.2-0.4,0.3c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4
|
95 |
+
c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1c0.2-0.1,0.4-0.2,0.6-0.3
|
96 |
+
c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V47.8z"/>
|
97 |
+
<path fill="#565656" d="M138.4,51v-0.8h0c-0.2,0.3-0.4,0.6-0.8,0.7c-0.4,0.2-0.8,0.2-1.2,0.2c-0.5,0-0.9-0.1-1.3-0.3
|
98 |
+
s-0.7-0.4-0.9-0.7s-0.4-0.6-0.5-1c-0.1-0.4-0.2-0.8-0.2-1.2c0-0.4,0.1-0.9,0.2-1.2c0.1-0.4,0.3-0.7,0.5-1c0.2-0.3,0.5-0.5,0.9-0.7
|
99 |
+
s0.8-0.3,1.2-0.3c0.2,0,0.3,0,0.5,0s0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.2,0.5,0.3s0.3,0.3,0.4,0.5h0v-3.2h1V51H138.4z M134.7,48.8
|
100 |
+
c0.1,0.3,0.2,0.5,0.3,0.7c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2c0.3,0,0.6-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
|
101 |
+
c0.2-0.2,0.3-0.5,0.3-0.8c0.1-0.3,0.1-0.6,0.1-0.9c0-0.3,0-0.6-0.1-0.9c-0.1-0.3-0.2-0.5-0.3-0.8c-0.2-0.2-0.4-0.4-0.6-0.5
|
102 |
+
s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5c-0.1,0.2-0.2,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,0.9
|
103 |
+
C134.6,48.2,134.7,48.5,134.7,48.8z"/>
|
104 |
+
<path fill="#565656" d="M145.1,49.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
105 |
+
s0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3c0.1-0.1,0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
106 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
107 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.6-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
108 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3s-0.3-0.1-0.5-0.2
|
109 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
110 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
111 |
+
s0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9s-0.4,0.4-0.6,0.6
|
112 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
113 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C145,49.3,145,49.5,145.1,49.6z"/>
|
114 |
+
<path fill="#565656" d="M154.7,50.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
115 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
116 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
117 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
118 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C155.5,49.7,155.2,50.3,154.7,50.6z M154.5,46.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
119 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
120 |
+
C154.6,47.1,154.6,46.8,154.5,46.6z"/>
|
121 |
+
<path fill="#565656" d="M157.7,44.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
122 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1V51h-1v-6.2H157.7z"/>
|
123 |
+
<path fill="#565656" d="M160.8,43.7v-1.2h1v1.2H160.8z M161.9,44.8V51h-1v-6.2H161.9z"/>
|
124 |
+
<path fill="#565656" d="M163.3,46.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7s0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
125 |
+
c0.4,0.2,0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
126 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7c-0.4,0.2-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1
|
127 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S163.2,47,163.3,46.6z M164.3,48.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
128 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.3,0,0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7s0.2-0.6,0.2-1s-0.1-0.7-0.2-1
|
129 |
+
s-0.2-0.5-0.4-0.7s-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5s-0.3,0.4-0.4,0.7
|
130 |
+
s-0.1,0.6-0.1,1S164.2,48.6,164.3,48.9z"/>
|
131 |
+
<path fill="#565656" d="M174.5,51v-1h0c-0.2,0.4-0.5,0.7-0.8,0.8c-0.3,0.2-0.7,0.3-1.2,0.3c-0.4,0-0.7-0.1-1-0.2
|
132 |
+
c-0.3-0.1-0.5-0.3-0.7-0.5c-0.2-0.2-0.3-0.4-0.4-0.7s-0.1-0.6-0.1-0.9v-4.1h1V49c0,0.4,0.1,0.7,0.3,0.9c0.2,0.2,0.5,0.3,0.9,0.3
|
133 |
+
c0.3,0,0.6,0,0.8-0.1c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.4,0.3-0.6s0.1-0.5,0.1-0.8v-3.5h1V51H174.5z"/>
|
134 |
+
<path fill="#565656" d="M177.8,49.6c0.1,0.2,0.2,0.3,0.4,0.4s0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
135 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
136 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
137 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
138 |
+
c0.2,0.1,0.4,0.3,0.5,0.6s0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.4-0.2
|
139 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
140 |
+
c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
141 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5s0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9s-0.4,0.4-0.6,0.6c-0.3,0.2-0.5,0.3-0.9,0.3
|
142 |
+
c-0.3,0.1-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6c-0.1-0.3-0.2-0.6-0.2-1h1
|
143 |
+
C177.6,49.3,177.7,49.5,177.8,49.6z"/>
|
144 |
+
<path fill="#565656" d="M187.4,44.8v0.8h0c0.2-0.3,0.4-0.6,0.8-0.8c0.4-0.2,0.8-0.2,1.2-0.2c0.5,0,0.9,0.1,1.3,0.3
|
145 |
+
s0.7,0.4,0.9,0.7c0.2,0.3,0.4,0.6,0.5,1c0.1,0.4,0.2,0.8,0.2,1.2c0,0.4-0.1,0.9-0.2,1.2c-0.1,0.4-0.3,0.7-0.5,1
|
146 |
+
c-0.2,0.3-0.5,0.5-0.9,0.7s-0.8,0.3-1.2,0.3c-0.2,0-0.3,0-0.5,0s-0.4-0.1-0.6-0.2c-0.2-0.1-0.4-0.2-0.5-0.3s-0.3-0.3-0.4-0.5h0
|
147 |
+
v3.2h-1v-8.6H187.4z M191.1,47c-0.1-0.3-0.2-0.5-0.3-0.7c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2
|
148 |
+
c-0.2,0.1-0.4,0.3-0.6,0.5c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,0.9c0,0.3,0,0.6,0.1,0.9c0.1,0.3,0.2,0.5,0.3,0.8
|
149 |
+
c0.2,0.2,0.4,0.4,0.6,0.5s0.5,0.2,0.9,0.2s0.6-0.1,0.9-0.2s0.4-0.3,0.6-0.5c0.1-0.2,0.2-0.5,0.3-0.8c0.1-0.3,0.1-0.6,0.1-0.9
|
150 |
+
C191.2,47.6,191.1,47.3,191.1,47z"/>
|
151 |
+
<path fill="#565656" d="M194.4,44.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
152 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1V51h-1v-6.2H194.4z"/>
|
153 |
+
<path fill="#565656" d="M197.1,46.6c0.1-0.4,0.3-0.7,0.6-1s0.6-0.5,0.9-0.7c0.4-0.2,0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
154 |
+
s0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
155 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
156 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S197,47,197.1,46.6z M198.1,48.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
157 |
+
c0.2,0.1,0.5,0.2,0.8,0.2s0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7c0.1-0.3,0.2-0.6,0.2-1s0-0.7-0.2-1
|
158 |
+
c-0.1-0.3-0.2-0.5-0.4-0.7s-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2s-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
159 |
+
c-0.2,0.2-0.3,0.4-0.4,0.7c-0.1,0.3-0.1,0.6-0.1,1S198,48.6,198.1,48.9z"/>
|
160 |
+
<path fill="#565656" d="M205.2,42.4v3.2h0c0.2-0.3,0.4-0.6,0.8-0.8c0.4-0.2,0.8-0.2,1.2-0.2c0.5,0,0.9,0.1,1.3,0.3
|
161 |
+
c0.4,0.2,0.7,0.4,0.9,0.7s0.4,0.6,0.5,1c0.1,0.4,0.2,0.8,0.2,1.2c0,0.4-0.1,0.9-0.2,1.2c-0.1,0.4-0.3,0.7-0.5,1s-0.5,0.5-0.9,0.7
|
162 |
+
c-0.4,0.2-0.8,0.3-1.2,0.3c-0.2,0-0.3,0-0.5,0c-0.2,0-0.4-0.1-0.6-0.2c-0.2-0.1-0.4-0.2-0.5-0.3c-0.2-0.1-0.3-0.3-0.4-0.5h0V51h-1
|
163 |
+
v-8.6H205.2z M208.8,47c-0.1-0.3-0.2-0.5-0.3-0.7s-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2
|
164 |
+
c-0.2,0.1-0.4,0.3-0.6,0.5s-0.3,0.5-0.3,0.8s-0.1,0.6-0.1,0.9c0,0.3,0,0.6,0.1,0.9c0.1,0.3,0.2,0.5,0.3,0.8
|
165 |
+
c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2s0.6-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5s0.2-0.5,0.3-0.8
|
166 |
+
c0.1-0.3,0.1-0.6,0.1-0.9C209,47.6,208.9,47.3,208.8,47z"/>
|
167 |
+
<path fill="#565656" d="M212.3,42.4V51h-1v-8.6H212.3z"/>
|
168 |
+
<path fill="#565656" d="M218.3,50.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
169 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.7-0.2,1.2-0.2
|
170 |
+
c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6c0,0.3,0,0.5,0.1,0.8
|
171 |
+
c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3s0.5-0.5,0.5-0.9h1
|
172 |
+
C219.1,49.7,218.8,50.3,218.3,50.6z M218,46.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1
|
173 |
+
c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4c-0.2,0.2-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6C218.2,47.1,218.1,46.8,218,46.6z"
|
174 |
+
/>
|
175 |
+
<path fill="#565656" d="M221.3,44.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
176 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
177 |
+
c0.1,0.2,0.2,0.5,0.2,0.8V51h-1v-4.1c0-0.2,0-0.4,0-0.5c0-0.2-0.1-0.3-0.2-0.4s-0.2-0.2-0.4-0.3c-0.2-0.1-0.4-0.1-0.6-0.1
|
178 |
+
c-0.5,0-0.9,0.1-1.2,0.4c-0.3,0.3-0.4,0.7-0.4,1.2V51h-1v-4.1c0-0.2,0-0.4-0.1-0.6c0-0.2-0.1-0.3-0.2-0.4s-0.2-0.2-0.4-0.3
|
179 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.6,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4s-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5V51h-1
|
180 |
+
v-6.2H221.3z"/>
|
181 |
+
<path fill="#565656" d="M230.6,44c0.1-0.4,0.3-0.7,0.5-0.9c0.2-0.3,0.5-0.5,0.9-0.6c0.3-0.1,0.7-0.2,1.1-0.2c0.4,0,0.7,0.1,1,0.2
|
182 |
+
c0.3,0.1,0.6,0.3,0.8,0.5c0.2,0.2,0.4,0.5,0.5,0.8c0.1,0.3,0.2,0.6,0.2,1c0,0.2,0,0.5-0.1,0.7s-0.1,0.4-0.2,0.5s-0.2,0.3-0.3,0.4
|
183 |
+
c-0.1,0.1-0.2,0.3-0.4,0.4c-0.1,0.1-0.3,0.2-0.4,0.4s-0.2,0.3-0.3,0.4c-0.1,0.1-0.2,0.3-0.2,0.5c-0.1,0.2-0.1,0.4-0.1,0.6v0.5h-1
|
184 |
+
v-0.6c0-0.3,0.1-0.6,0.2-0.9c0.1-0.2,0.2-0.4,0.4-0.6c0.2-0.2,0.3-0.4,0.5-0.5c0.2-0.2,0.3-0.3,0.5-0.5s0.3-0.4,0.4-0.6
|
185 |
+
s0.1-0.5,0.1-0.8c0-0.4-0.2-0.8-0.4-1s-0.6-0.4-1-0.4c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.4,0.2-0.5,0.4s-0.2,0.4-0.3,0.6
|
186 |
+
c-0.1,0.2-0.1,0.5-0.1,0.8h-1C230.5,44.7,230.5,44.3,230.6,44z M233.8,49.7V51h-1.3v-1.3H233.8z"/>
|
187 |
+
</g>
|
188 |
+
<g enable-background="new ">
|
189 |
+
<path fill="#565656" d="M46.9,117.4c-0.6,0.5-1.4,0.8-2.5,0.8c-1.1,0-2-0.3-2.6-0.8c-0.6-0.5-0.9-1.4-0.9-2.5v-5.5H42v5.5
|
190 |
+
c0,0.8,0.2,1.3,0.6,1.7c0.4,0.4,1,0.6,1.8,0.6c0.7,0,1.3-0.2,1.7-0.6c0.4-0.4,0.6-1,0.6-1.7v-5.5h1.1v5.5
|
191 |
+
C47.8,116,47.5,116.8,46.9,117.4z"/>
|
192 |
+
<path fill="#565656" d="M50.4,111.8v1h0c0.4-0.8,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5
|
193 |
+
c0.2,0.2,0.3,0.4,0.4,0.7c0.1,0.3,0.1,0.6,0.1,0.9v4.1h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.3-0.9-0.3
|
194 |
+
c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8v3.5h-1v-6.2H50.4z"/>
|
195 |
+
<path fill="#565656" d="M55.5,112.7v-0.9h1v-0.9c0-0.5,0.1-0.9,0.4-1.1c0.3-0.3,0.7-0.4,1.3-0.4c0.1,0,0.2,0,0.3,0
|
196 |
+
c0.1,0,0.2,0,0.3,0.1v0.9c-0.1,0-0.2-0.1-0.3-0.1s-0.2,0-0.3,0c-0.2,0-0.4,0-0.6,0.1c-0.1,0.1-0.2,0.3-0.2,0.6v0.9h1.2v0.9h-1.2
|
197 |
+
v5.3h-1v-5.3H55.5z"/>
|
198 |
+
<path fill="#565656" d="M65.2,118c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
199 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
200 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
201 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
202 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
203 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
204 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V118z M63.5,114.8
|
205 |
+
c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
206 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
207 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V114.8z"/>
|
208 |
+
<path fill="#565656" d="M67.8,118l-2.3-6.2h1.1l1.7,5.2h0l1.7-5.2h1.1l-2.3,6.2H67.8z"/>
|
209 |
+
<path fill="#565656" d="M72,113.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7s0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
210 |
+
s0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
211 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1
|
212 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S71.8,114,72,113.6z M73,115.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
213 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.3,0,0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7s0.1-0.6,0.1-1s0-0.7-0.1-1
|
214 |
+
s-0.2-0.5-0.4-0.7c-0.2-0.2-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
215 |
+
c-0.2,0.2-0.3,0.4-0.4,0.7c-0.1,0.3-0.1,0.6-0.1,1S72.9,115.6,73,115.9z"/>
|
216 |
+
<path fill="#565656" d="M83.2,118v-1h0c-0.2,0.4-0.5,0.7-0.8,0.8c-0.3,0.2-0.7,0.3-1.2,0.3c-0.4,0-0.7-0.1-1-0.2
|
217 |
+
c-0.3-0.1-0.5-0.3-0.7-0.5c-0.2-0.2-0.3-0.4-0.4-0.7c-0.1-0.3-0.1-0.6-0.1-0.9v-4.1h1v4.2c0,0.4,0.1,0.7,0.3,0.9
|
218 |
+
c0.2,0.2,0.5,0.3,0.9,0.3c0.3,0,0.6,0,0.8-0.1c0.2-0.1,0.4-0.2,0.6-0.4c0.2-0.2,0.3-0.4,0.3-0.6c0.1-0.2,0.1-0.5,0.1-0.8v-3.5h1
|
219 |
+
v6.2H83.2z"/>
|
220 |
+
<path fill="#565656" d="M86.6,111.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
221 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1v2.8h-1v-6.2H86.6z"/>
|
222 |
+
<path fill="#565656" d="M95.2,118c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
223 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
224 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
225 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
226 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
227 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
228 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V118z M93.5,114.8
|
229 |
+
c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
230 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
231 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V114.8z"/>
|
232 |
+
<path fill="#565656" d="M97.2,109.4v3.2h0c0.2-0.3,0.4-0.6,0.8-0.8c0.4-0.2,0.8-0.2,1.2-0.2c0.5,0,0.9,0.1,1.3,0.3
|
233 |
+
s0.7,0.4,0.9,0.7c0.2,0.3,0.4,0.6,0.5,1c0.1,0.4,0.2,0.8,0.2,1.2c0,0.4-0.1,0.9-0.2,1.2c-0.1,0.4-0.3,0.7-0.5,1s-0.5,0.5-0.9,0.7
|
234 |
+
c-0.4,0.2-0.8,0.3-1.2,0.3c-0.2,0-0.3,0-0.5,0s-0.4-0.1-0.6-0.2c-0.2-0.1-0.4-0.2-0.5-0.3c-0.2-0.1-0.3-0.3-0.4-0.5h0v0.8h-1v-8.6
|
235 |
+
H97.2z M100.8,114c-0.1-0.3-0.2-0.5-0.3-0.7c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2
|
236 |
+
c-0.2,0.1-0.4,0.3-0.6,0.5c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,0.9c0,0.3,0,0.6,0.1,0.9c0.1,0.3,0.2,0.5,0.3,0.8
|
237 |
+
c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2c0.4,0,0.6-0.1,0.9-0.2s0.4-0.3,0.6-0.5s0.2-0.5,0.3-0.8
|
238 |
+
c0.1-0.3,0.1-0.6,0.1-0.9C100.9,114.6,100.9,114.3,100.8,114z"/>
|
239 |
+
<path fill="#565656" d="M104.3,109.4v8.6h-1v-8.6H104.3z"/>
|
240 |
+
<path fill="#565656" d="M110.3,117.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
241 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
242 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
243 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
244 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C111,116.7,110.7,117.3,110.3,117.6z M110,113.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
245 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
246 |
+
C110.2,114.1,110.1,113.8,110,113.6z"/>
|
247 |
+
<path fill="#565656" d="M118.8,109.4c1.3,0,2.3,0.3,3,1c0.7,0.7,1.1,1.7,1.1,3.1c0,0.7-0.1,1.4-0.2,1.9c-0.2,0.6-0.4,1-0.7,1.4
|
248 |
+
s-0.8,0.7-1.3,0.9s-1.1,0.3-1.8,0.3h-2.9v-8.6H118.8z M118.9,117c0.1,0,0.3,0,0.5,0c0.2,0,0.4-0.1,0.6-0.1s0.4-0.2,0.6-0.3
|
249 |
+
c0.2-0.1,0.4-0.3,0.6-0.6c0.2-0.2,0.3-0.6,0.4-0.9c0.1-0.4,0.2-0.8,0.2-1.3c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.3-0.7-0.5-1
|
250 |
+
c-0.2-0.3-0.5-0.5-0.9-0.6c-0.4-0.1-0.8-0.2-1.3-0.2H117v6.6H118.9z"/>
|
251 |
+
<path fill="#565656" d="M128.5,117.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
252 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.7-0.2,1.2-0.2
|
253 |
+
c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6c0,0.3,0,0.5,0.1,0.8
|
254 |
+
c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3s0.5-0.5,0.5-0.9h1
|
255 |
+
C129.3,116.7,129,117.3,128.5,117.6z M128.3,113.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1
|
256 |
+
c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4c-0.2,0.2-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
257 |
+
C128.4,114.1,128.3,113.8,128.3,113.6z"/>
|
258 |
+
<path fill="#565656" d="M131.5,111.8v1h0c0.4-0.8,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5s0.3,0.4,0.4,0.7
|
259 |
+
s0.1,0.6,0.1,0.9v4.1h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.3-0.9-0.3c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4
|
260 |
+
c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8v3.5h-1v-6.2H131.5z"/>
|
261 |
+
<path fill="#565656" d="M139.9,111.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3c0,0.1,0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0
|
262 |
+
h0.5v0.9h-0.8c-0.3,0-0.5,0-0.7-0.1c-0.2,0-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9
|
263 |
+
h1.1v-1.9h1v1.9H139.9z"/>
|
264 |
+
<path fill="#565656" d="M146.5,118c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
265 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
266 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
267 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
268 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
269 |
+
s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1s0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5c0.1,0.2,0.2,0.5,0.2,0.9
|
270 |
+
v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V118z M144.8,114.8c-0.1,0.1-0.3,0.2-0.5,0.2
|
271 |
+
c-0.2,0-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.4-0.2,0.6
|
272 |
+
c0,0.2,0,0.3,0.1,0.4c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
273 |
+
c0.2-0.1,0.4-0.2,0.6-0.3s0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V114.8z"/>
|
274 |
+
<path fill="#565656" d="M148.5,109.4v8.6h-1v-8.6H148.5z"/>
|
275 |
+
<path fill="#565656" d="M157.8,117.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
276 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
277 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
278 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
279 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C158.6,116.7,158.3,117.3,157.8,117.6z M157.6,113.6c-0.1-0.2-0.2-0.4-0.4-0.6
|
280 |
+
c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4c-0.2,0.2-0.3,0.3-0.4,0.6
|
281 |
+
s-0.1,0.4-0.2,0.7h3.6C157.7,114.1,157.7,113.8,157.6,113.6z"/>
|
282 |
+
<path fill="#565656" d="M159.4,111.8h1.3l1.5,2.2l1.5-2.2h1.2l-2.1,2.9l2.4,3.3h-1.3l-1.7-2.6l-1.7,2.6h-1.2l2.3-3.3L159.4,111.8z
|
283 |
+
"/>
|
284 |
+
<path fill="#565656" d="M167.2,111.8v0.8h0c0.2-0.3,0.4-0.6,0.8-0.8c0.4-0.2,0.8-0.2,1.2-0.2c0.5,0,0.9,0.1,1.3,0.3
|
285 |
+
s0.7,0.4,0.9,0.7c0.2,0.3,0.4,0.6,0.5,1c0.1,0.4,0.2,0.8,0.2,1.2c0,0.4-0.1,0.9-0.2,1.2c-0.1,0.4-0.3,0.7-0.5,1
|
286 |
+
c-0.2,0.3-0.5,0.5-0.9,0.7s-0.8,0.3-1.2,0.3c-0.2,0-0.3,0-0.5,0s-0.4-0.1-0.6-0.2c-0.2-0.1-0.4-0.2-0.5-0.3s-0.3-0.3-0.4-0.5h0
|
287 |
+
v3.2h-1v-8.6H167.2z M170.8,114c-0.1-0.3-0.2-0.5-0.3-0.7c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2
|
288 |
+
c-0.2,0.1-0.4,0.3-0.6,0.5c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,0.9c0,0.3,0,0.6,0.1,0.9c0.1,0.3,0.2,0.5,0.3,0.8
|
289 |
+
c0.2,0.2,0.4,0.4,0.6,0.5s0.5,0.2,0.9,0.2s0.6-0.1,0.9-0.2s0.4-0.3,0.6-0.5c0.1-0.2,0.2-0.5,0.3-0.8c0.1-0.3,0.1-0.6,0.1-0.9
|
290 |
+
C170.9,114.6,170.9,114.3,170.8,114z"/>
|
291 |
+
<path fill="#565656" d="M177.6,117.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
292 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
293 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2H174
|
294 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
295 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C178.4,116.7,178.1,117.3,177.6,117.6z M177.4,113.6c-0.1-0.2-0.2-0.4-0.4-0.6
|
296 |
+
c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6
|
297 |
+
s-0.1,0.4-0.2,0.7h3.6C177.5,114.1,177.5,113.8,177.4,113.6z"/>
|
298 |
+
<path fill="#565656" d="M180.6,111.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
299 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1v2.8h-1v-6.2H180.6z"/>
|
300 |
+
<path fill="#565656" d="M183.7,110.7v-1.2h1v1.2H183.7z M184.7,111.8v6.2h-1v-6.2H184.7z"/>
|
301 |
+
<path fill="#565656" d="M190.7,117.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
302 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
303 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
304 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
305 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C191.5,116.7,191.2,117.3,190.7,117.6z M190.5,113.6c-0.1-0.2-0.2-0.4-0.4-0.6
|
306 |
+
c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6
|
307 |
+
s-0.1,0.4-0.2,0.7h3.6C190.6,114.1,190.6,113.8,190.5,113.6z"/>
|
308 |
+
<path fill="#565656" d="M193.7,111.8v1h0c0.4-0.8,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5s0.3,0.4,0.4,0.7
|
309 |
+
s0.1,0.6,0.1,0.9v4.1h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.3-0.9-0.3c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4
|
310 |
+
c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8v3.5h-1v-6.2H193.7z"/>
|
311 |
+
<path fill="#565656" d="M203.1,112.9c-0.3-0.2-0.6-0.3-1-0.3c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
312 |
+
c-0.1,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,0.9c0,0.3,0,0.6,0.1,0.8c0.1,0.3,0.2,0.5,0.3,0.7c0.1,0.2,0.3,0.4,0.6,0.5
|
313 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.5,0,0.9-0.1,1.2-0.4c0.3-0.3,0.5-0.6,0.5-1.1h1c-0.1,0.8-0.4,1.4-0.9,1.8s-1.1,0.6-1.9,0.6
|
314 |
+
c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.6s-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3
|
315 |
+
c0.1-0.4,0.3-0.8,0.5-1.1c0.2-0.3,0.5-0.5,0.9-0.7s0.8-0.3,1.3-0.3c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.4s0.4,0.4,0.6,0.7
|
316 |
+
c0.2,0.3,0.2,0.6,0.3,1h-1.1C203.6,113.4,203.4,113.1,203.1,112.9z"/>
|
317 |
+
<path fill="#565656" d="M210.3,117.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
318 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.7-0.2,1.2-0.2
|
319 |
+
c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6c0,0.3,0,0.5,0.1,0.8
|
320 |
+
c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3c0.3-0.2,0.5-0.5,0.5-0.9h1
|
321 |
+
C211,116.7,210.7,117.3,210.3,117.6z M210,113.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1
|
322 |
+
c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6C210.2,114.1,210.1,113.8,210,113.6z"/>
|
323 |
+
<path fill="#565656" d="M213.1,116.6c0.1,0.2,0.2,0.3,0.4,0.4s0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
324 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
325 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
326 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
327 |
+
c0.2,0.1,0.4,0.3,0.5,0.6s0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.4-0.2
|
328 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
329 |
+
c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
330 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5s0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9s-0.4,0.4-0.6,0.6c-0.3,0.2-0.5,0.3-0.9,0.3
|
331 |
+
c-0.3,0.1-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6c-0.1-0.3-0.2-0.6-0.2-1h1
|
332 |
+
C213,116.3,213,116.5,213.1,116.6z"/>
|
333 |
+
<path fill="#565656" d="M218.4,111c0.1-0.4,0.3-0.7,0.5-0.9c0.2-0.3,0.5-0.5,0.9-0.6c0.3-0.1,0.7-0.2,1.1-0.2c0.4,0,0.7,0.1,1,0.2
|
334 |
+
c0.3,0.1,0.6,0.3,0.8,0.5c0.2,0.2,0.4,0.5,0.5,0.8c0.1,0.3,0.2,0.6,0.2,1c0,0.2,0,0.5-0.1,0.7s-0.1,0.4-0.2,0.5
|
335 |
+
c-0.1,0.2-0.2,0.3-0.3,0.4c-0.1,0.1-0.2,0.3-0.4,0.4c-0.1,0.1-0.3,0.2-0.4,0.4c-0.1,0.1-0.2,0.3-0.3,0.4c-0.1,0.1-0.2,0.3-0.2,0.5
|
336 |
+
c-0.1,0.2-0.1,0.4-0.1,0.6v0.5h-1v-0.6c0-0.3,0.1-0.6,0.2-0.9c0.1-0.2,0.2-0.4,0.4-0.6c0.2-0.2,0.3-0.4,0.5-0.5
|
337 |
+
c0.2-0.2,0.3-0.3,0.5-0.5s0.3-0.4,0.4-0.6s0.1-0.5,0.1-0.8c0-0.4-0.2-0.8-0.4-1s-0.6-0.4-1-0.4c-0.3,0-0.5,0.1-0.7,0.2
|
338 |
+
c-0.2,0.1-0.4,0.2-0.5,0.4c-0.1,0.2-0.2,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8h-1C218.2,111.7,218.3,111.3,218.4,111z
|
339 |
+
M221.5,116.7v1.3h-1.3v-1.3H221.5z"/>
|
340 |
+
</g>
|
341 |
+
<g enable-background="new ">
|
342 |
+
<path fill="#565656" d="M44.5,176.4l3.3,8.6h-1.3l-0.9-2.6h-3.6l-1,2.6h-1.2l3.3-8.6H44.5z M45.3,181.5l-1.4-4h0l-1.5,4H45.3z"/>
|
343 |
+
<path fill="#565656" d="M49.6,178.8v0.8h0c0.2-0.3,0.4-0.6,0.8-0.8c0.4-0.2,0.8-0.2,1.2-0.2c0.5,0,0.9,0.1,1.3,0.3
|
344 |
+
s0.7,0.4,0.9,0.7c0.2,0.3,0.4,0.6,0.5,1c0.1,0.4,0.2,0.8,0.2,1.2c0,0.4-0.1,0.9-0.2,1.2c-0.1,0.4-0.3,0.7-0.5,1s-0.5,0.5-0.9,0.7
|
345 |
+
c-0.4,0.2-0.8,0.3-1.2,0.3c-0.2,0-0.3,0-0.5,0s-0.4-0.1-0.6-0.2c-0.2-0.1-0.4-0.2-0.5-0.3c-0.2-0.1-0.3-0.3-0.4-0.5h0v3.2h-1v-8.6
|
346 |
+
H49.6z M53.3,181c-0.1-0.3-0.2-0.5-0.3-0.7c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2
|
347 |
+
c-0.2,0.1-0.4,0.3-0.6,0.5c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,0.9c0,0.3,0,0.6,0.1,0.9c0.1,0.3,0.2,0.5,0.3,0.8
|
348 |
+
c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2c0.4,0,0.6-0.1,0.9-0.2s0.4-0.3,0.6-0.5s0.2-0.5,0.3-0.8
|
349 |
+
c0.1-0.3,0.1-0.6,0.1-0.9C53.4,181.6,53.3,181.3,53.3,181z"/>
|
350 |
+
<path fill="#565656" d="M56.7,178.8v0.8h0c0.2-0.3,0.4-0.6,0.8-0.8c0.4-0.2,0.8-0.2,1.2-0.2c0.5,0,0.9,0.1,1.3,0.3
|
351 |
+
s0.7,0.4,0.9,0.7c0.2,0.3,0.4,0.6,0.5,1c0.1,0.4,0.2,0.8,0.2,1.2c0,0.4-0.1,0.9-0.2,1.2c-0.1,0.4-0.3,0.7-0.5,1s-0.5,0.5-0.9,0.7
|
352 |
+
c-0.4,0.2-0.8,0.3-1.2,0.3c-0.2,0-0.3,0-0.5,0s-0.4-0.1-0.6-0.2c-0.2-0.1-0.4-0.2-0.5-0.3c-0.2-0.1-0.3-0.3-0.4-0.5h0v3.2h-1v-8.6
|
353 |
+
H56.7z M60.4,181c-0.1-0.3-0.2-0.5-0.3-0.7c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2
|
354 |
+
c-0.2,0.1-0.4,0.3-0.6,0.5c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,0.9c0,0.3,0,0.6,0.1,0.9c0.1,0.3,0.2,0.5,0.3,0.8
|
355 |
+
c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2c0.4,0,0.6-0.1,0.9-0.2s0.4-0.3,0.6-0.5s0.2-0.5,0.3-0.8
|
356 |
+
c0.1-0.3,0.1-0.6,0.1-0.9C60.5,181.6,60.5,181.3,60.4,181z"/>
|
357 |
+
<path fill="#565656" d="M63.7,178.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
358 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1v2.8h-1v-6.2H63.7z"/>
|
359 |
+
<path fill="#565656" d="M70.9,184.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
360 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
361 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
362 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
363 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C71.7,183.7,71.4,184.3,70.9,184.6z M70.7,180.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
364 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
365 |
+
C70.8,181.1,70.8,180.8,70.7,180.6z"/>
|
366 |
+
<path fill="#565656" d="M74,176.4v3.3h0c0.1-0.2,0.2-0.4,0.3-0.5s0.3-0.2,0.5-0.3c0.2-0.1,0.4-0.1,0.6-0.2c0.2,0,0.4-0.1,0.6-0.1
|
367 |
+
c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5c0.2,0.2,0.3,0.4,0.4,0.7c0.1,0.3,0.1,0.6,0.1,0.9v4.1h-1v-4.2
|
368 |
+
c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.3-0.9-0.3c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6
|
369 |
+
c-0.1,0.2-0.1,0.5-0.1,0.8v3.5h-1v-8.6H74z"/>
|
370 |
+
<path fill="#565656" d="M84.1,184.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
371 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
372 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
373 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
374 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C84.8,183.7,84.5,184.3,84.1,184.6z M83.8,180.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
375 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7H84
|
376 |
+
C84,181.1,83.9,180.8,83.8,180.6z"/>
|
377 |
+
<path fill="#565656" d="M87.1,178.8v1h0c0.4-0.8,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5
|
378 |
+
c0.2,0.2,0.3,0.4,0.4,0.7c0.1,0.3,0.1,0.6,0.1,0.9v4.1h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.3-0.9-0.3
|
379 |
+
c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8v3.5h-1v-6.2H87.1z"/>
|
380 |
+
<path fill="#565656" d="M93.6,183.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
381 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
382 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
383 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
384 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
385 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
386 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
387 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
388 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
389 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C93.4,183.3,93.5,183.5,93.6,183.6z"/>
|
390 |
+
<path fill="#565656" d="M98.8,177.7v-1.2h1v1.2H98.8z M99.9,178.8v6.2h-1v-6.2H99.9z"/>
|
391 |
+
<path fill="#565656" d="M103.2,185l-2.3-6.2h1.1l1.7,5.2h0l1.7-5.2h1.1l-2.3,6.2H103.2z"/>
|
392 |
+
<path fill="#565656" d="M111.8,184.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
393 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
394 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
395 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
396 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C112.6,183.7,112.3,184.3,111.8,184.6z M111.6,180.6c-0.1-0.2-0.2-0.4-0.4-0.6
|
397 |
+
c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6
|
398 |
+
s-0.1,0.4-0.2,0.7h3.6C111.7,181.1,111.7,180.8,111.6,180.6z"/>
|
399 |
+
<path fill="#565656" d="M122.7,185c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
400 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
401 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
402 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
403 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
404 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
405 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V185z M121.1,181.8
|
406 |
+
c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
407 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
408 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5c0.1-0.2,0.1-0.3,0.1-0.5V181.8z"/>
|
409 |
+
<path fill="#565656" d="M124.7,176.4v3.2h0c0.2-0.3,0.4-0.6,0.8-0.8c0.4-0.2,0.8-0.2,1.2-0.2c0.5,0,0.9,0.1,1.3,0.3
|
410 |
+
c0.4,0.2,0.7,0.4,0.9,0.7s0.4,0.6,0.5,1c0.1,0.4,0.2,0.8,0.2,1.2c0,0.4-0.1,0.9-0.2,1.2c-0.1,0.4-0.3,0.7-0.5,1s-0.5,0.5-0.9,0.7
|
411 |
+
c-0.4,0.2-0.8,0.3-1.2,0.3c-0.2,0-0.3,0-0.5,0c-0.2,0-0.4-0.1-0.6-0.2c-0.2-0.1-0.4-0.2-0.5-0.3c-0.2-0.1-0.3-0.3-0.4-0.5h0v0.8
|
412 |
+
h-1v-8.6H124.7z M128.4,181c-0.1-0.3-0.2-0.5-0.3-0.7s-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2
|
413 |
+
c-0.2,0.1-0.4,0.3-0.6,0.5s-0.3,0.5-0.3,0.8s-0.1,0.6-0.1,0.9c0,0.3,0,0.6,0.1,0.9c0.1,0.3,0.2,0.5,0.3,0.8
|
414 |
+
c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2s0.6-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5s0.2-0.5,0.3-0.8
|
415 |
+
c0.1-0.3,0.1-0.6,0.1-0.9C128.5,181.6,128.5,181.3,128.4,181z"/>
|
416 |
+
<path fill="#565656" d="M130.6,180.6c0.1-0.4,0.3-0.7,0.6-1s0.6-0.5,0.9-0.7c0.4-0.2,0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
417 |
+
s0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
418 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
419 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S130.5,181,130.6,180.6z M131.7,182.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
420 |
+
c0.2,0.1,0.5,0.2,0.8,0.2s0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7c0.1-0.3,0.2-0.6,0.2-1s0-0.7-0.2-1
|
421 |
+
c-0.1-0.3-0.2-0.5-0.4-0.7s-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2s-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
422 |
+
c-0.2,0.2-0.3,0.4-0.4,0.7c-0.1,0.3-0.1,0.6-0.1,1S131.6,182.6,131.7,182.9z"/>
|
423 |
+
<path fill="#565656" d="M141.9,185v-1h0c-0.2,0.4-0.5,0.7-0.8,0.8c-0.3,0.2-0.7,0.3-1.2,0.3c-0.4,0-0.7-0.1-1-0.2
|
424 |
+
c-0.3-0.1-0.5-0.3-0.7-0.5c-0.2-0.2-0.3-0.4-0.4-0.7c-0.1-0.3-0.1-0.6-0.1-0.9v-4.1h1v4.2c0,0.4,0.1,0.7,0.3,0.9
|
425 |
+
c0.2,0.2,0.5,0.3,0.9,0.3c0.3,0,0.6,0,0.8-0.1c0.2-0.1,0.4-0.2,0.6-0.4c0.2-0.2,0.3-0.4,0.3-0.6c0.1-0.2,0.1-0.5,0.1-0.8v-3.5h1
|
426 |
+
v6.2H141.9z"/>
|
427 |
+
<path fill="#565656" d="M147,178.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3c0,0.1,0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0h0.5
|
428 |
+
v0.9h-0.8c-0.3,0-0.5,0-0.7-0.1c-0.2,0-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1
|
429 |
+
v-1.9h1v1.9H147z"/>
|
430 |
+
<path fill="#565656" d="M154.1,178.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2s0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.4,0h0.5v0.9
|
431 |
+
h-0.8c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2s-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9H154.1z"/>
|
432 |
+
<path fill="#565656" d="M156.2,178.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
433 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1v2.8h-1v-6.2H156.2z"/>
|
434 |
+
<path fill="#565656" d="M163.4,184.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
435 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
436 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
437 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
438 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C164.2,183.7,163.9,184.3,163.4,184.6z M163.2,180.6c-0.1-0.2-0.2-0.4-0.4-0.6
|
439 |
+
c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6
|
440 |
+
s-0.1,0.4-0.2,0.7h3.6C163.3,181.1,163.3,180.8,163.2,180.6z"/>
|
441 |
+
<path fill="#565656" d="M171,185c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
442 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
443 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5s0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
444 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
445 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
446 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
447 |
+
s0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V185z M169.3,181.8c-0.1,0.1-0.3,0.2-0.5,0.2
|
448 |
+
c-0.2,0-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2s-0.3,0.2-0.4,0.3c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4
|
449 |
+
c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1c0.2-0.1,0.4-0.2,0.6-0.3
|
450 |
+
c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V181.8z"/>
|
451 |
+
<path fill="#565656" d="M174.6,178.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3c0,0.1,0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0
|
452 |
+
h0.5v0.9h-0.8c-0.3,0-0.5,0-0.7-0.1c-0.2,0-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9
|
453 |
+
h1.1v-1.9h1v1.9H174.6z"/>
|
454 |
+
<path fill="#565656" d="M176.7,178.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
455 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
456 |
+
c0.1,0.2,0.1,0.5,0.1,0.8v4.5h-1v-4.1c0-0.2,0-0.4,0-0.5c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3
|
457 |
+
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.5,0-0.9,0.1-1.2,0.4c-0.3,0.3-0.4,0.7-0.4,1.2v3.9h-1v-4.1c0-0.2,0-0.4-0.1-0.6
|
458 |
+
c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4
|
459 |
+
s-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5v3.9h-1v-6.2H176.7z"/>
|
460 |
+
<path fill="#565656" d="M190.3,184.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
461 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.7-0.2,1.2-0.2
|
462 |
+
c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6c0,0.3,0,0.5,0.1,0.8
|
463 |
+
c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3c0.3-0.2,0.5-0.5,0.5-0.9h1
|
464 |
+
C191.1,183.7,190.8,184.3,190.3,184.6z M190.1,180.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1
|
465 |
+
c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6C190.2,181.1,190.2,180.8,190.1,180.6z"/>
|
466 |
+
<path fill="#565656" d="M193.3,178.8v1h0c0.4-0.8,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5
|
467 |
+
c0.2,0.2,0.3,0.4,0.4,0.7c0.1,0.3,0.1,0.6,0.1,0.9v4.1h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.3-0.9-0.3
|
468 |
+
c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8v3.5h-1v-6.2H193.3z"/>
|
469 |
+
<path fill="#565656" d="M201.7,178.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3c0,0.1,0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0
|
470 |
+
h0.5v0.9h-0.8c-0.3,0-0.5,0-0.7-0.1c-0.2,0-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9
|
471 |
+
h1.1v-1.9h1v1.9H201.7z"/>
|
472 |
+
<path fill="#565656" d="M202.9,178c0.1-0.4,0.3-0.7,0.5-0.9c0.2-0.3,0.5-0.5,0.9-0.6c0.3-0.1,0.7-0.2,1.1-0.2c0.4,0,0.7,0.1,1,0.2
|
473 |
+
c0.3,0.1,0.6,0.3,0.8,0.5c0.2,0.2,0.4,0.5,0.5,0.8c0.1,0.3,0.2,0.6,0.2,1c0,0.2,0,0.5-0.1,0.7s-0.1,0.4-0.2,0.5s-0.2,0.3-0.3,0.4
|
474 |
+
c-0.1,0.1-0.2,0.3-0.4,0.4c-0.1,0.1-0.3,0.2-0.4,0.4s-0.2,0.3-0.3,0.4c-0.1,0.1-0.2,0.3-0.2,0.5c-0.1,0.2-0.1,0.4-0.1,0.6v0.5h-1
|
475 |
+
v-0.6c0-0.3,0.1-0.6,0.2-0.9c0.1-0.2,0.2-0.4,0.4-0.6c0.2-0.2,0.3-0.4,0.5-0.5c0.2-0.2,0.3-0.3,0.5-0.5s0.3-0.4,0.4-0.6
|
476 |
+
s0.1-0.5,0.1-0.8c0-0.4-0.2-0.8-0.4-1s-0.6-0.4-1-0.4c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.4,0.2-0.5,0.4s-0.2,0.4-0.3,0.6
|
477 |
+
c-0.1,0.2-0.1,0.5-0.1,0.8h-1C202.7,178.7,202.8,178.3,202.9,178z M206,183.7v1.3h-1.3v-1.3H206z"/>
|
478 |
+
</g>
|
479 |
+
<path id="Rectangle_812" fill="#02CAA7" d="M85,238h95c2.8,0,5,2.2,5,5v17c0,2.8-2.2,5-5,5H85c-2.8,0-5-2.2-5-5v-17
|
480 |
+
C80,240.2,82.2,238,85,238z"/>
|
481 |
+
<g enable-background="new ">
|
482 |
+
<path fill="#FFFFFF" d="M96.9,253.6c0,0.3,0,0.5,0.1,0.7c0.1,0.2,0.2,0.4,0.4,0.5s0.4,0.2,0.6,0.3c0.2,0.1,0.5,0.1,0.7,0.1
|
483 |
+
c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.4-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.3-0.3s0.1-0.3,0.1-0.4c0-0.3-0.1-0.5-0.2-0.6
|
484 |
+
c-0.1-0.1-0.3-0.2-0.4-0.3c-0.3-0.1-0.5-0.2-0.9-0.3c-0.3-0.1-0.8-0.2-1.2-0.3c-0.3-0.1-0.6-0.2-0.8-0.3c-0.2-0.1-0.4-0.3-0.5-0.4
|
485 |
+
c-0.1-0.2-0.2-0.3-0.3-0.5c0-0.2-0.1-0.4-0.1-0.5c0-0.4,0.1-0.7,0.2-0.9c0.1-0.3,0.3-0.5,0.6-0.7c0.2-0.2,0.5-0.3,0.8-0.4
|
486 |
+
c0.3-0.1,0.6-0.1,1-0.1c0.4,0,0.7,0,1.1,0.1s0.6,0.2,0.9,0.4c0.2,0.2,0.4,0.4,0.6,0.7s0.2,0.6,0.2,1H100c0-0.5-0.2-0.8-0.5-1
|
487 |
+
c-0.3-0.2-0.6-0.3-1.1-0.3c-0.1,0-0.3,0-0.5,0s-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.2-0.3,0.3c-0.1,0.1-0.1,0.3-0.1,0.4
|
488 |
+
c0,0.3,0.1,0.5,0.2,0.6s0.4,0.3,0.6,0.3c0,0,0.1,0,0.3,0.1c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.1,0.7,0.2s0.4,0.1,0.5,0.1
|
489 |
+
c0.2,0.1,0.4,0.2,0.6,0.3s0.3,0.3,0.4,0.4c0.1,0.2,0.2,0.3,0.3,0.5s0.1,0.4,0.1,0.6c0,0.4-0.1,0.7-0.2,1c-0.2,0.3-0.4,0.5-0.6,0.7
|
490 |
+
c-0.3,0.2-0.6,0.3-0.9,0.4c-0.3,0.1-0.7,0.1-1,0.1c-0.4,0-0.8,0-1.1-0.2c-0.4-0.1-0.7-0.3-0.9-0.5c-0.3-0.2-0.5-0.5-0.6-0.8
|
491 |
+
c-0.2-0.3-0.2-0.7-0.2-1.1H96.9z"/>
|
492 |
+
<path fill="#FFFFFF" d="M102.5,248.9h1.2v4.2c0,0.2,0,0.5,0,0.7c0,0.2,0.1,0.5,0.2,0.7s0.3,0.4,0.5,0.5c0.2,0.1,0.5,0.2,0.9,0.2
|
493 |
+
s0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.5-0.5c0.1-0.2,0.2-0.4,0.2-0.7c0-0.2,0-0.5,0-0.7v-4.2h1.2v4.6c0,0.5-0.1,0.9-0.2,1.2
|
494 |
+
s-0.3,0.6-0.6,0.9c-0.3,0.2-0.6,0.4-0.9,0.5s-0.8,0.2-1.2,0.2s-0.8-0.1-1.2-0.2c-0.4-0.1-0.7-0.3-0.9-0.5
|
495 |
+
c-0.3-0.2-0.5-0.5-0.6-0.9c-0.1-0.3-0.2-0.7-0.2-1.2V248.9z"/>
|
496 |
+
<path fill="#FFFFFF" d="M109.8,248.9h3.5c0.6,0,1.2,0.1,1.5,0.4c0.4,0.3,0.6,0.7,0.6,1.3c0,0.4-0.1,0.7-0.3,0.9
|
497 |
+
c-0.2,0.3-0.4,0.5-0.8,0.6v0c0.4,0.1,0.8,0.3,1,0.6s0.3,0.7,0.3,1.2c0,0.3,0,0.5-0.1,0.8s-0.3,0.5-0.5,0.6s-0.5,0.3-0.8,0.4
|
498 |
+
c-0.3,0.1-0.7,0.2-1.2,0.2h-3.3V248.9z M111,251.8h2c0.3,0,0.6-0.1,0.8-0.3c0.2-0.2,0.3-0.4,0.3-0.7c0-0.4-0.1-0.6-0.3-0.8
|
499 |
+
c-0.2-0.1-0.4-0.2-0.8-0.2h-2V251.8z M111,255h2.2c0.4,0,0.7-0.1,0.9-0.3c0.2-0.2,0.3-0.5,0.3-0.8c0-0.4-0.1-0.6-0.3-0.8
|
500 |
+
c-0.2-0.2-0.5-0.3-0.9-0.3H111V255z"/>
|
501 |
+
<path fill="#FFFFFF" d="M116.8,248.9h1.8l2,5.6h0l1.9-5.6h1.7v7.1H123v-5.5h0l-2,5.5h-1l-2-5.5h0v5.5h-1.2V248.9z"/>
|
502 |
+
<path fill="#FFFFFF" d="M125.7,248.9h1.2v7.1h-1.2V248.9z"/>
|
503 |
+
<path fill="#FFFFFF" d="M127.8,248.9h5.8v1.1h-2.3v6.1h-1.2v-6.1h-2.3V248.9z"/>
|
504 |
+
<path fill="#FFFFFF" d="M143.6,256l-0.6,0.7l-1-0.9c-0.3,0.2-0.5,0.3-0.8,0.3c-0.3,0.1-0.6,0.1-0.8,0.1c-0.5,0-1-0.1-1.4-0.3
|
505 |
+
c-0.4-0.2-0.8-0.5-1.1-0.8c-0.3-0.3-0.5-0.7-0.7-1.2c-0.2-0.5-0.2-0.9-0.2-1.5c0-0.5,0.1-1,0.2-1.4c0.2-0.5,0.4-0.9,0.7-1.2
|
506 |
+
c0.3-0.3,0.7-0.6,1.1-0.8c0.4-0.2,0.9-0.3,1.4-0.3s1,0.1,1.4,0.3c0.4,0.2,0.8,0.5,1.1,0.8c0.3,0.3,0.5,0.7,0.7,1.2
|
507 |
+
c0.2,0.5,0.2,0.9,0.2,1.4c0,0.2,0,0.5-0.1,0.7s-0.1,0.5-0.2,0.7s-0.2,0.5-0.3,0.7c-0.1,0.2-0.3,0.4-0.5,0.6L143.6,256z
|
508 |
+
M140.3,254.3l0.6-0.7l0.9,0.8c0.2-0.3,0.4-0.6,0.5-0.9c0.1-0.3,0.1-0.7,0.1-1.1c0-0.3,0-0.7-0.1-1c-0.1-0.3-0.2-0.6-0.4-0.9
|
509 |
+
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.2-0.6-0.2-1-0.2s-0.7,0.1-1,0.2c-0.3,0.2-0.5,0.4-0.7,0.6c-0.2,0.3-0.3,0.5-0.4,0.9
|
510 |
+
c-0.1,0.3-0.1,0.7-0.1,1s0,0.7,0.1,1c0.1,0.3,0.2,0.6,0.4,0.9c0.2,0.3,0.4,0.5,0.7,0.6c0.3,0.2,0.6,0.2,1,0.2c0.1,0,0.3,0,0.4,0
|
511 |
+
c0.1,0,0.3-0.1,0.4-0.1L140.3,254.3z"/>
|
512 |
+
<path fill="#FFFFFF" d="M144.7,248.9h1.2v4.2c0,0.2,0,0.5,0,0.7c0,0.2,0.1,0.5,0.2,0.7c0.1,0.2,0.3,0.4,0.5,0.5
|
513 |
+
c0.2,0.1,0.5,0.2,0.9,0.2c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.5-0.5c0.1-0.2,0.2-0.4,0.2-0.7c0-0.2,0-0.5,0-0.7v-4.2h1.2v4.6
|
514 |
+
c0,0.5-0.1,0.9-0.2,1.2c-0.1,0.3-0.3,0.6-0.6,0.9c-0.3,0.2-0.6,0.4-0.9,0.5c-0.4,0.1-0.8,0.2-1.2,0.2c-0.4,0-0.8-0.1-1.2-0.2
|
515 |
+
s-0.7-0.3-0.9-0.5c-0.3-0.2-0.5-0.5-0.6-0.9c-0.1-0.3-0.2-0.7-0.2-1.2V248.9z"/>
|
516 |
+
<path fill="#FFFFFF" d="M152,248.9h5.1v1.1h-3.9v1.9h3.6v1h-3.6v2.1h4v1.1H152V248.9z"/>
|
517 |
+
<path fill="#FFFFFF" d="M158.3,248.9h3.4c0.8,0,1.4,0.2,1.8,0.5s0.6,0.8,0.6,1.4c0,0.3,0,0.6-0.2,0.8c-0.1,0.2-0.2,0.4-0.3,0.5
|
518 |
+
c-0.1,0.1-0.3,0.2-0.4,0.3c-0.1,0.1-0.2,0.1-0.3,0.1v0c0.1,0,0.2,0,0.3,0.1s0.2,0.1,0.3,0.3c0.1,0.1,0.2,0.3,0.3,0.5
|
519 |
+
c0.1,0.2,0.1,0.4,0.1,0.7c0,0.4,0,0.8,0.1,1.1c0.1,0.3,0.2,0.6,0.3,0.7H163c-0.1-0.2-0.1-0.3-0.2-0.5s0-0.4,0-0.5
|
520 |
+
c0-0.3,0-0.6-0.1-0.8c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.2-0.3-0.3-0.4-0.3c-0.2-0.1-0.4-0.1-0.7-0.1h-1.8v2.9h-1.2V248.9z
|
521 |
+
M159.6,252.1h2.1c0.4,0,0.7-0.1,0.9-0.3c0.2-0.2,0.3-0.5,0.3-0.9c0-0.2,0-0.4-0.1-0.6c-0.1-0.1-0.2-0.3-0.3-0.3
|
522 |
+
c-0.1-0.1-0.2-0.1-0.4-0.2c-0.1,0-0.3,0-0.5,0h-2V252.1z"/>
|
523 |
+
<path fill="#FFFFFF" d="M166.8,253.2l-2.7-4.3h1.5l1.9,3.2l1.9-3.2h1.4l-2.7,4.3v2.8h-1.2V253.2z"/>
|
524 |
+
</g>
|
525 |
+
</g>
|
526 |
+
</svg>
|
templates/12/preview-thumb.svg
ADDED
@@ -0,0 +1,885 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 265 300" enable-background="new 0 0 265 300" xml:space="preserve">
|
5 |
+
<g>
|
6 |
+
<path id="Rectangle_823" fill="#FFFFFF" d="M5,0h255c2.8,0,5,2.2,5,5v290c0,2.8-2.2,5-5,5H5c-2.8,0-5-2.2-5-5V5C0,2.2,2.2,0,5,0z"
|
7 |
+
/>
|
8 |
+
<path id="Rectangle_825" fill="#E5E9EA" d="M42.5,209h180c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-180
|
9 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,210.1,41.1,209,42.5,209z"/>
|
10 |
+
<g enable-background="new ">
|
11 |
+
<path fill="#565656" d="M46.9,192.4v1h-4.8v2.7h4.5v1h-4.5v3h4.8v1h-6v-8.6H46.9z"/>
|
12 |
+
<path fill="#565656" d="M49.1,194.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
13 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
14 |
+
c0.1,0.2,0.1,0.5,0.1,0.8v4.5h-1v-4.1c0-0.2,0-0.4,0-0.5s-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
15 |
+
c-0.5,0-0.9,0.1-1.2,0.4s-0.4,0.7-0.4,1.2v3.9h-1v-4.1c0-0.2,0-0.4-0.1-0.6c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3
|
16 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4s-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5v3.9h-1
|
17 |
+
v-6.2H49.1z"/>
|
18 |
+
<path fill="#565656" d="M63.8,201c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
19 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
20 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
21 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
22 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
23 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
24 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V201z M62.2,197.8
|
25 |
+
c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
26 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
27 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V197.8z"/>
|
28 |
+
<path fill="#565656" d="M64.8,193.7v-1.2h1v1.2H64.8z M65.9,194.8v6.2h-1v-6.2H65.9z"/>
|
29 |
+
<path fill="#565656" d="M68.5,192.4v8.6h-1v-8.6H68.5z"/>
|
30 |
+
<path fill="#565656" d="M77.2,192.4l3.3,8.6h-1.3l-0.9-2.6h-3.6l-1,2.6h-1.2l3.3-8.6H77.2z M78,197.5l-1.4-4h0l-1.5,4H78z"/>
|
31 |
+
<path fill="#565656" d="M85.7,201v-0.8h0c-0.2,0.3-0.4,0.6-0.8,0.7c-0.4,0.2-0.8,0.2-1.2,0.2c-0.5,0-0.9-0.1-1.3-0.3
|
32 |
+
c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.5-1c-0.1-0.4-0.2-0.8-0.2-1.2c0-0.4,0.1-0.9,0.2-1.2c0.1-0.4,0.3-0.7,0.5-1
|
33 |
+
c0.2-0.3,0.5-0.5,0.9-0.7s0.8-0.3,1.2-0.3c0.2,0,0.3,0,0.5,0s0.4,0.1,0.6,0.2s0.4,0.2,0.5,0.3s0.3,0.3,0.4,0.5h0v-3.2h1v8.6H85.7z
|
34 |
+
M82.1,198.8c0.1,0.3,0.2,0.5,0.3,0.7c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2c0.3,0,0.6-0.1,0.9-0.2
|
35 |
+
c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.5,0.3-0.8c0.1-0.3,0.1-0.6,0.1-0.9c0-0.3,0-0.6-0.1-0.9c-0.1-0.3-0.2-0.5-0.3-0.8
|
36 |
+
c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5c-0.1,0.2-0.2,0.5-0.3,0.8
|
37 |
+
c-0.1,0.3-0.1,0.6-0.1,0.9C82,198.2,82,198.5,82.1,198.8z"/>
|
38 |
+
<path fill="#565656" d="M92.9,201v-0.8h0c-0.2,0.3-0.4,0.6-0.8,0.7c-0.4,0.2-0.8,0.2-1.2,0.2c-0.5,0-0.9-0.1-1.3-0.3
|
39 |
+
c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.5-1c-0.1-0.4-0.2-0.8-0.2-1.2c0-0.4,0.1-0.9,0.2-1.2c0.1-0.4,0.3-0.7,0.5-1
|
40 |
+
c0.2-0.3,0.5-0.5,0.9-0.7s0.8-0.3,1.2-0.3c0.2,0,0.3,0,0.5,0s0.4,0.1,0.6,0.2s0.4,0.2,0.5,0.3s0.3,0.3,0.4,0.5h0v-3.2h1v8.6H92.9z
|
41 |
+
M89.2,198.8c0.1,0.3,0.2,0.5,0.3,0.7c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2c0.3,0,0.6-0.1,0.9-0.2
|
42 |
+
c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.5,0.3-0.8c0.1-0.3,0.1-0.6,0.1-0.9c0-0.3,0-0.6-0.1-0.9c-0.1-0.3-0.2-0.5-0.3-0.8
|
43 |
+
c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5c-0.1,0.2-0.2,0.5-0.3,0.8
|
44 |
+
c-0.1,0.3-0.1,0.6-0.1,0.9C89.1,198.2,89.1,198.5,89.2,198.8z"/>
|
45 |
+
<path fill="#565656" d="M96.4,194.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
46 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1v2.8h-1v-6.2H96.4z"/>
|
47 |
+
<path fill="#565656" d="M103.6,200.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
48 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
49 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2H100
|
50 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
51 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C104.4,199.7,104.1,200.3,103.6,200.6z M103.4,196.6c-0.1-0.2-0.2-0.4-0.4-0.6
|
52 |
+
c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6
|
53 |
+
s-0.1,0.4-0.2,0.7h3.6C103.5,197.1,103.5,196.8,103.4,196.6z"/>
|
54 |
+
<path fill="#565656" d="M106.5,199.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
55 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
56 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
57 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
58 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
59 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
60 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
61 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
62 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
63 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C106.3,199.3,106.4,199.5,106.5,199.6z"/>
|
64 |
+
<path fill="#565656" d="M112.5,199.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
65 |
+
s0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3c0.1-0.1,0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
66 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
67 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.6-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
68 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3s-0.3-0.1-0.5-0.2
|
69 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
70 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
71 |
+
s0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9s-0.4,0.4-0.6,0.6
|
72 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
73 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C112.3,199.3,112.4,199.5,112.5,199.6z"/>
|
74 |
+
</g>
|
75 |
+
<path id="Rectangle_831" fill="#DE4437" d="M85,238h95c2.8,0,5,2.2,5,5v17c0,2.8-2.2,5-5,5H85c-2.8,0-5-2.2-5-5v-17
|
76 |
+
C80,240.2,82.2,238,85,238z"/>
|
77 |
+
<g enable-background="new ">
|
78 |
+
<path fill="#FFFFFF" d="M115.4,253.6c0,0.3,0,0.5,0.1,0.7s0.2,0.4,0.4,0.5c0.2,0.1,0.4,0.2,0.6,0.3s0.5,0.1,0.7,0.1
|
79 |
+
c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.1-0.3,0.1-0.4c0-0.3-0.1-0.5-0.2-0.6
|
80 |
+
s-0.3-0.2-0.4-0.3c-0.3-0.1-0.5-0.2-0.9-0.3c-0.3-0.1-0.8-0.2-1.2-0.3c-0.3-0.1-0.6-0.2-0.8-0.3c-0.2-0.1-0.4-0.3-0.5-0.4
|
81 |
+
c-0.1-0.2-0.2-0.3-0.3-0.5s-0.1-0.4-0.1-0.5c0-0.4,0.1-0.7,0.2-0.9c0.1-0.3,0.3-0.5,0.6-0.7c0.2-0.2,0.5-0.3,0.8-0.4
|
82 |
+
c0.3-0.1,0.6-0.1,1-0.1c0.4,0,0.7,0,1.1,0.1s0.6,0.2,0.9,0.4c0.2,0.2,0.4,0.4,0.6,0.7s0.2,0.6,0.2,1h-1.2c0-0.5-0.2-0.8-0.5-1
|
83 |
+
c-0.3-0.2-0.6-0.3-1.1-0.3c-0.1,0-0.3,0-0.5,0s-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.2-0.3,0.3c-0.1,0.1-0.1,0.3-0.1,0.4
|
84 |
+
c0,0.3,0.1,0.5,0.2,0.6c0.2,0.1,0.4,0.3,0.6,0.3c0,0,0.1,0,0.3,0.1c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.1,0.7,0.2
|
85 |
+
s0.4,0.1,0.5,0.1c0.2,0.1,0.4,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.4c0.1,0.2,0.2,0.3,0.3,0.5s0.1,0.4,0.1,0.6c0,0.4-0.1,0.7-0.2,1
|
86 |
+
c-0.2,0.3-0.4,0.5-0.6,0.7c-0.3,0.2-0.6,0.3-0.9,0.4s-0.7,0.1-1,0.1c-0.4,0-0.8,0-1.1-0.2c-0.4-0.1-0.7-0.3-0.9-0.5
|
87 |
+
c-0.3-0.2-0.5-0.5-0.6-0.8c-0.2-0.3-0.2-0.7-0.2-1.1H115.4z"/>
|
88 |
+
<path fill="#FFFFFF" d="M121,248.9h1.2v4.2c0,0.2,0,0.5,0,0.7c0,0.2,0.1,0.5,0.2,0.7c0.1,0.2,0.3,0.4,0.5,0.5
|
89 |
+
c0.2,0.1,0.5,0.2,0.9,0.2c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.5-0.5c0.1-0.2,0.2-0.4,0.2-0.7c0-0.2,0-0.5,0-0.7v-4.2h1.2v4.6
|
90 |
+
c0,0.5-0.1,0.9-0.2,1.2c-0.1,0.3-0.3,0.6-0.6,0.9c-0.3,0.2-0.6,0.4-0.9,0.5c-0.4,0.1-0.8,0.2-1.2,0.2c-0.4,0-0.8-0.1-1.2-0.2
|
91 |
+
s-0.7-0.3-0.9-0.5c-0.3-0.2-0.5-0.5-0.6-0.9c-0.1-0.3-0.2-0.7-0.2-1.2V248.9z"/>
|
92 |
+
<path fill="#FFFFFF" d="M128.3,248.9h3.5c0.6,0,1.2,0.1,1.5,0.4c0.4,0.3,0.6,0.7,0.6,1.3c0,0.4-0.1,0.7-0.3,0.9
|
93 |
+
c-0.2,0.3-0.4,0.5-0.8,0.6v0c0.4,0.1,0.8,0.3,1,0.6s0.3,0.7,0.3,1.2c0,0.3,0,0.5-0.1,0.8c-0.1,0.2-0.3,0.5-0.5,0.6
|
94 |
+
c-0.2,0.2-0.5,0.3-0.8,0.4c-0.3,0.1-0.7,0.2-1.2,0.2h-3.3V248.9z M129.5,251.8h2c0.3,0,0.6-0.1,0.8-0.3c0.2-0.2,0.3-0.4,0.3-0.7
|
95 |
+
c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.1-0.4-0.2-0.8-0.2h-2V251.8z M129.5,255h2.2c0.4,0,0.7-0.1,0.9-0.3c0.2-0.2,0.3-0.5,0.3-0.8
|
96 |
+
c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.2-0.5-0.3-0.9-0.3h-2.2V255z"/>
|
97 |
+
<path fill="#FFFFFF" d="M135.3,248.9h1.8l2,5.6h0l1.9-5.6h1.7v7.1h-1.2v-5.5h0l-2,5.5h-1l-2-5.5h0v5.5h-1.2V248.9z"/>
|
98 |
+
<path fill="#FFFFFF" d="M144.2,248.9h1.2v7.1h-1.2V248.9z"/>
|
99 |
+
<path fill="#FFFFFF" d="M146.3,248.9h5.8v1.1h-2.3v6.1h-1.2v-6.1h-2.3V248.9z"/>
|
100 |
+
</g>
|
101 |
+
<g enable-background="new ">
|
102 |
+
<path fill="#565656" d="M42.1,42.4V51H41v-8.6H42.1z"/>
|
103 |
+
<path fill="#565656" d="M43.3,45.7v-0.9h1v-0.9c0-0.5,0.1-0.9,0.4-1.1c0.3-0.3,0.7-0.4,1.3-0.4c0.1,0,0.2,0,0.3,0
|
104 |
+
c0.1,0,0.2,0,0.3,0.1v0.9c-0.1,0-0.2-0.1-0.3-0.1s-0.2,0-0.3,0c-0.2,0-0.4,0-0.6,0.1c-0.1,0.1-0.2,0.3-0.2,0.6v0.9h1.2v0.9h-1.2
|
105 |
+
V51h-1v-5.3H43.3z"/>
|
106 |
+
<path fill="#565656" d="M53.2,51.8c-0.1,0.3-0.2,0.6-0.4,0.8c-0.1,0.2-0.2,0.4-0.4,0.5c-0.1,0.1-0.3,0.2-0.5,0.3
|
107 |
+
c-0.2,0.1-0.4,0.1-0.6,0.1c-0.1,0-0.2,0-0.4,0s-0.2,0-0.3-0.1v-0.9c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3,0c0.2,0,0.4,0,0.5-0.2
|
108 |
+
c0.1-0.1,0.2-0.2,0.3-0.4l0.4-1l-2.5-6.2h1.2l1.8,5.1h0l1.7-5.1h1.1L53.2,51.8z"/>
|
109 |
+
<path fill="#565656" d="M56.6,46.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7s0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
110 |
+
s0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
111 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1
|
112 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S56.5,47,56.6,46.6z M57.7,48.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
113 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.3,0,0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7s0.1-0.6,0.1-1s0-0.7-0.1-1
|
114 |
+
s-0.2-0.5-0.4-0.7c-0.2-0.2-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
115 |
+
c-0.2,0.2-0.3,0.4-0.4,0.7c-0.1,0.3-0.1,0.6-0.1,1S57.6,48.6,57.7,48.9z"/>
|
116 |
+
<path fill="#565656" d="M67.8,51v-1h0c-0.2,0.4-0.5,0.7-0.8,0.8c-0.3,0.2-0.7,0.3-1.2,0.3c-0.4,0-0.7-0.1-1-0.2
|
117 |
+
c-0.3-0.1-0.5-0.3-0.7-0.5c-0.2-0.2-0.3-0.4-0.4-0.7c-0.1-0.3-0.1-0.6-0.1-0.9v-4.1h1V49c0,0.4,0.1,0.7,0.3,0.9
|
118 |
+
c0.2,0.2,0.5,0.3,0.9,0.3c0.3,0,0.6,0,0.8-0.1c0.2-0.1,0.4-0.2,0.6-0.4c0.2-0.2,0.3-0.4,0.3-0.6c0.1-0.2,0.1-0.5,0.1-0.8v-3.5h1
|
119 |
+
V51H67.8z"/>
|
120 |
+
<path fill="#565656" d="M74.7,42.4v3.3h0c0.1-0.2,0.2-0.4,0.3-0.5s0.3-0.2,0.5-0.3c0.2-0.1,0.4-0.1,0.6-0.2c0.2,0,0.4-0.1,0.6-0.1
|
121 |
+
c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5c0.2,0.2,0.3,0.4,0.4,0.7c0.1,0.3,0.1,0.6,0.1,0.9V51h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9
|
122 |
+
c-0.2-0.2-0.5-0.3-0.9-0.3c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8V51
|
123 |
+
h-1v-8.6H74.7z"/>
|
124 |
+
<path fill="#565656" d="M85.8,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
125 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
126 |
+
C80,50,80,49.7,80,49.4c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
127 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
128 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
129 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
130 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51z M84.2,47.8
|
131 |
+
C84,47.9,83.9,48,83.7,48s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
132 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
133 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V47.8z"/>
|
134 |
+
<path fill="#565656" d="M88.5,51l-2.3-6.2h1.1l1.7,5.2h0l1.7-5.2h1.1L89.6,51H88.5z"/>
|
135 |
+
<path fill="#565656" d="M97.2,50.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
136 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
137 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
138 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
139 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C97.9,49.7,97.6,50.3,97.2,50.6z M96.9,46.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
140 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
141 |
+
C97.1,47.1,97,46.8,96.9,46.6z"/>
|
142 |
+
<path fill="#565656" d="M108.1,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
143 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
144 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
145 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
146 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
147 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
148 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51z M106.4,47.8
|
149 |
+
c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
150 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
151 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V47.8z"/>
|
152 |
+
<path fill="#565656" d="M110,44.8v1h0c0.4-0.8,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5
|
153 |
+
c0.2,0.2,0.3,0.4,0.4,0.7s0.1,0.6,0.1,0.9V51h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.3-0.9-0.3c-0.3,0-0.6,0-0.8,0.1
|
154 |
+
c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8V51h-1v-6.2H110z"/>
|
155 |
+
<path fill="#565656" d="M124.5,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
156 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
157 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5s0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
158 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
159 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
160 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
161 |
+
s0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51z M122.8,47.8c-0.1,0.1-0.3,0.2-0.5,0.2
|
162 |
+
c-0.2,0-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2s-0.3,0.2-0.4,0.3c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4
|
163 |
+
c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1c0.2-0.1,0.4-0.2,0.6-0.3
|
164 |
+
c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V47.8z"/>
|
165 |
+
<path fill="#565656" d="M129.2,45.9c-0.3-0.2-0.6-0.3-1-0.3c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
166 |
+
c-0.1,0.2-0.3,0.5-0.3,0.8s-0.1,0.6-0.1,0.9c0,0.3,0,0.6,0.1,0.8c0.1,0.3,0.2,0.5,0.3,0.7s0.3,0.4,0.6,0.5
|
167 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.5,0,0.9-0.1,1.2-0.4c0.3-0.3,0.5-0.6,0.5-1.1h1c-0.1,0.8-0.4,1.4-0.9,1.8c-0.5,0.4-1.1,0.6-1.9,0.6
|
168 |
+
c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.6s-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3
|
169 |
+
c0.1-0.4,0.3-0.8,0.5-1.1c0.2-0.3,0.5-0.5,0.9-0.7c0.4-0.2,0.8-0.3,1.3-0.3c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.4
|
170 |
+
c0.2,0.2,0.4,0.4,0.6,0.7c0.2,0.3,0.2,0.6,0.3,1h-1.1C129.6,46.4,129.4,46.1,129.2,45.9z"/>
|
171 |
+
<path fill="#565656" d="M135.6,45.9c-0.3-0.2-0.6-0.3-1-0.3c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
172 |
+
c-0.1,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,0.9c0,0.3,0,0.6,0.1,0.8c0.1,0.3,0.2,0.5,0.3,0.7c0.1,0.2,0.3,0.4,0.6,0.5
|
173 |
+
s0.5,0.2,0.8,0.2c0.5,0,0.9-0.1,1.2-0.4c0.3-0.3,0.5-0.6,0.5-1.1h1c-0.1,0.8-0.4,1.4-0.9,1.8s-1.1,0.6-1.9,0.6
|
174 |
+
c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.6s-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3
|
175 |
+
c0.1-0.4,0.3-0.8,0.5-1.1s0.5-0.5,0.9-0.7c0.4-0.2,0.8-0.3,1.3-0.3c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.4s0.4,0.4,0.6,0.7
|
176 |
+
c0.2,0.3,0.2,0.6,0.3,1h-1.1C136,46.4,135.9,46.1,135.6,45.9z"/>
|
177 |
+
<path fill="#565656" d="M138.2,46.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7s0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
178 |
+
c0.4,0.2,0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
179 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7c-0.4,0.2-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1
|
180 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S138.1,47,138.2,46.6z M139.2,48.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
181 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.3,0,0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7s0.2-0.6,0.2-1s-0.1-0.7-0.2-1
|
182 |
+
s-0.2-0.5-0.4-0.7s-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5s-0.3,0.4-0.4,0.7
|
183 |
+
s-0.1,0.6-0.1,1S139.1,48.6,139.2,48.9z"/>
|
184 |
+
<path fill="#565656" d="M149.4,51v-1h0c-0.2,0.4-0.5,0.7-0.8,0.8c-0.3,0.2-0.7,0.3-1.2,0.3c-0.4,0-0.7-0.1-1-0.2
|
185 |
+
c-0.3-0.1-0.5-0.3-0.7-0.5c-0.2-0.2-0.3-0.4-0.4-0.7s-0.1-0.6-0.1-0.9v-4.1h1V49c0,0.4,0.1,0.7,0.3,0.9c0.2,0.2,0.5,0.3,0.9,0.3
|
186 |
+
c0.3,0,0.6,0,0.8-0.1c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.4,0.3-0.6s0.1-0.5,0.1-0.8v-3.5h1V51H149.4z"/>
|
187 |
+
<path fill="#565656" d="M152.9,44.8v1h0c0.4-0.8,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5s0.3,0.4,0.4,0.7
|
188 |
+
c0.1,0.3,0.1,0.6,0.1,0.9V51h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.3-0.9-0.3c-0.3,0-0.6,0-0.8,0.1
|
189 |
+
c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8V51h-1v-6.2H152.9z"/>
|
190 |
+
<path fill="#565656" d="M161.2,44.8v0.9H160v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.4,0h0.5
|
191 |
+
V51h-0.8c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1
|
192 |
+
v1.9H161.2z"/>
|
193 |
+
<path fill="#565656" d="M165.5,46.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7s0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
194 |
+
c0.4,0.2,0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
195 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7c-0.4,0.2-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1
|
196 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S165.4,47,165.5,46.6z M166.6,48.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
197 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.3,0,0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7s0.2-0.6,0.2-1s-0.1-0.7-0.2-1
|
198 |
+
s-0.2-0.5-0.4-0.7s-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5s-0.3,0.4-0.4,0.7
|
199 |
+
s-0.1,0.6-0.1,1S166.5,48.6,166.6,48.9z"/>
|
200 |
+
<path fill="#565656" d="M173.5,44.8v1h0c0.4-0.8,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5s0.3,0.4,0.4,0.7
|
201 |
+
c0.1,0.3,0.1,0.6,0.1,0.9V51h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.3-0.9-0.3c-0.3,0-0.6,0-0.8,0.1
|
202 |
+
c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8V51h-1v-6.2H173.5z"/>
|
203 |
+
<path fill="#565656" d="M185.2,44.8v0.9H184v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.4,0h0.5
|
204 |
+
V51h-0.8c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1
|
205 |
+
v1.9H185.2z"/>
|
206 |
+
<path fill="#565656" d="M187.4,42.4v3.3h0c0.1-0.2,0.2-0.4,0.3-0.5s0.3-0.2,0.5-0.3s0.4-0.1,0.6-0.2c0.2,0,0.4-0.1,0.6-0.1
|
207 |
+
c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5c0.2,0.2,0.3,0.4,0.4,0.7s0.1,0.6,0.1,0.9V51h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9
|
208 |
+
c-0.2-0.2-0.5-0.3-0.9-0.3c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8V51
|
209 |
+
h-1v-8.6H187.4z"/>
|
210 |
+
<path fill="#565656" d="M193.1,43.7v-1.2h1v1.2H193.1z M194.1,44.8V51h-1v-6.2H194.1z"/>
|
211 |
+
<path fill="#565656" d="M196.5,49.6c0.1,0.2,0.2,0.3,0.4,0.4s0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
212 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
213 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
214 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
215 |
+
c0.2,0.1,0.4,0.3,0.5,0.6s0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.4-0.2
|
216 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
217 |
+
c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
218 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5s0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9s-0.4,0.4-0.6,0.6c-0.3,0.2-0.5,0.3-0.9,0.3
|
219 |
+
c-0.3,0.1-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6c-0.1-0.3-0.2-0.6-0.2-1h1
|
220 |
+
C196.3,49.3,196.4,49.5,196.5,49.6z"/>
|
221 |
+
<path fill="#565656" d="M205.8,49.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
222 |
+
s0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3c0.1-0.1,0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
223 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
224 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.6-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
225 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3s-0.3-0.1-0.5-0.2
|
226 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
227 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
228 |
+
s0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9s-0.4,0.4-0.6,0.6
|
229 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
230 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C205.7,49.3,205.7,49.5,205.8,49.6z"/>
|
231 |
+
<path fill="#565656" d="M211.1,43.7v-1.2h1v1.2H211.1z M212.1,44.8V51h-1v-6.2H212.1z"/>
|
232 |
+
<path fill="#565656" d="M216.3,44.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.4,0h0.5
|
233 |
+
V51h-0.8c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9H213v-0.9h1.1v-1.9h1v1.9
|
234 |
+
H216.3z"/>
|
235 |
+
<path fill="#565656" d="M221.9,50.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
236 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
237 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
238 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
239 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C222.6,49.7,222.3,50.3,221.9,50.6z M221.6,46.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
240 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
241 |
+
C221.8,47.1,221.7,46.8,221.6,46.6z"/>
|
242 |
+
</g>
|
243 |
+
<g enable-background="new ">
|
244 |
+
<path fill="#565656" d="M40.6,64.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7s0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
245 |
+
s0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
246 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1
|
247 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S40.5,65,40.6,64.6z M41.7,66.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
248 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.3,0,0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7s0.1-0.6,0.1-1s0-0.7-0.1-1
|
249 |
+
s-0.2-0.5-0.4-0.7c-0.2-0.2-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
250 |
+
c-0.2,0.2-0.3,0.4-0.4,0.7c-0.1,0.3-0.1,0.6-0.1,1S41.6,66.6,41.7,66.9z"/>
|
251 |
+
<path fill="#565656" d="M48.6,62.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
252 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1V69h-1v-6.2H48.6z"/>
|
253 |
+
<path fill="#565656" d="M56,60.4v3.3h0c0.1-0.2,0.2-0.4,0.3-0.5s0.3-0.2,0.5-0.3c0.2-0.1,0.4-0.1,0.6-0.2c0.2,0,0.4-0.1,0.6-0.1
|
254 |
+
c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5c0.2,0.2,0.3,0.4,0.4,0.7c0.1,0.3,0.1,0.6,0.1,0.9V69h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9
|
255 |
+
c-0.2-0.2-0.5-0.3-0.9-0.3c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6C56,65,56,65.2,56,65.5V69h-1
|
256 |
+
v-8.6H56z"/>
|
257 |
+
<path fill="#565656" d="M67.2,69c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
258 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
259 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
260 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
261 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
262 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
263 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V69z M65.5,65.8
|
264 |
+
C65.4,65.9,65.2,66,65,66s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
265 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
266 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V65.8z"/>
|
267 |
+
<path fill="#565656" d="M69.8,69l-2.3-6.2h1.1l1.7,5.2h0l1.7-5.2h1.1L70.9,69H69.8z"/>
|
268 |
+
<path fill="#565656" d="M78.5,68.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
269 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
270 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
271 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
272 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C79.3,67.7,79,68.3,78.5,68.6z M78.2,64.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
273 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
274 |
+
C78.4,65.1,78.3,64.8,78.2,64.6z"/>
|
275 |
+
<path fill="#565656" d="M85,60.4V69h-1v-8.6H85z"/>
|
276 |
+
<path fill="#565656" d="M90.9,68.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
277 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
278 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
279 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
280 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C91.7,67.7,91.4,68.3,90.9,68.6z M90.7,64.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
281 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
282 |
+
C90.8,65.1,90.8,64.8,90.7,64.6z"/>
|
283 |
+
<path fill="#565656" d="M92.4,63.7v-0.9h1v-0.9c0-0.5,0.1-0.9,0.4-1.1c0.3-0.3,0.7-0.4,1.3-0.4c0.1,0,0.2,0,0.3,0
|
284 |
+
c0.1,0,0.2,0,0.3,0.1v0.9c-0.1,0-0.2-0.1-0.3-0.1s-0.2,0-0.3,0c-0.2,0-0.4,0-0.6,0.1c-0.1,0.1-0.2,0.3-0.2,0.6v0.9h1.2v0.9h-1.2
|
285 |
+
V69h-1v-5.3H92.4z"/>
|
286 |
+
<path fill="#565656" d="M99.2,62.8v0.9H98v3.9c0,0.1,0,0.2,0,0.3S98,68,98.1,68c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0h0.5V69h-0.8
|
287 |
+
c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9H99.2z"
|
288 |
+
/>
|
289 |
+
<path fill="#565656" d="M107.4,63.9c-0.3-0.2-0.6-0.3-1-0.3c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
290 |
+
c-0.1,0.2-0.3,0.5-0.3,0.8s-0.1,0.6-0.1,0.9c0,0.3,0,0.6,0.1,0.8c0.1,0.3,0.2,0.5,0.3,0.7s0.3,0.4,0.6,0.5
|
291 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.5,0,0.9-0.1,1.2-0.4c0.3-0.3,0.5-0.6,0.5-1.1h1c-0.1,0.8-0.4,1.4-0.9,1.8s-1.1,0.6-1.9,0.6
|
292 |
+
c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.6s-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3
|
293 |
+
c0.1-0.4,0.3-0.8,0.5-1.1c0.2-0.3,0.5-0.5,0.9-0.7c0.4-0.2,0.8-0.3,1.3-0.3c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.4
|
294 |
+
s0.4,0.4,0.6,0.7c0.2,0.3,0.2,0.6,0.3,1h-1.1C107.8,64.4,107.6,64.1,107.4,63.9z"/>
|
295 |
+
<path fill="#565656" d="M110,64.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
296 |
+
s0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
297 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1
|
298 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S109.8,65,110,64.6z M111,66.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
299 |
+
c0.2,0.1,0.5,0.2,0.8,0.2s0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7c0.1-0.3,0.2-0.6,0.2-1s0-0.7-0.2-1
|
300 |
+
c-0.1-0.3-0.2-0.5-0.4-0.7s-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2s-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
301 |
+
c-0.2,0.2-0.3,0.4-0.4,0.7c-0.1,0.3-0.1,0.6-0.1,1S110.9,66.6,111,66.9z"/>
|
302 |
+
<path fill="#565656" d="M118,62.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
303 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
304 |
+
c0.1,0.2,0.1,0.5,0.1,0.8V69h-1v-4.1c0-0.2,0-0.4,0-0.5c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3c-0.2-0.1-0.4-0.1-0.6-0.1
|
305 |
+
c-0.5,0-0.9,0.1-1.2,0.4c-0.3,0.3-0.4,0.7-0.4,1.2V69h-1v-4.1c0-0.2,0-0.4-0.1-0.6c0-0.2-0.1-0.3-0.2-0.4
|
306 |
+
c-0.1-0.1-0.2-0.2-0.4-0.3c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4s-0.2,0.3-0.3,0.5
|
307 |
+
c-0.1,0.2-0.1,0.3-0.1,0.5V69h-1v-6.2H118z"/>
|
308 |
+
<path fill="#565656" d="M128.2,62.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
309 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
310 |
+
c0.1,0.2,0.1,0.5,0.1,0.8V69h-1v-4.1c0-0.2,0-0.4,0-0.5s-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
311 |
+
c-0.5,0-0.9,0.1-1.2,0.4s-0.4,0.7-0.4,1.2V69h-1v-4.1c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4s-0.2-0.2-0.4-0.3
|
312 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4c-0.1,0.2-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5
|
313 |
+
V69h-1v-6.2H128.2z"/>
|
314 |
+
<path fill="#565656" d="M141.9,68.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
315 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.7-0.2,1.2-0.2
|
316 |
+
c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6c0,0.3,0,0.5,0.1,0.8
|
317 |
+
c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3s0.5-0.5,0.5-0.9h1
|
318 |
+
C142.6,67.7,142.3,68.3,141.9,68.6z M141.6,64.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1
|
319 |
+
c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4c-0.2,0.2-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6C141.8,65.1,141.7,64.8,141.6,64.6
|
320 |
+
z"/>
|
321 |
+
<path fill="#565656" d="M144.9,62.8v1h0c0.4-0.8,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5s0.3,0.4,0.4,0.7
|
322 |
+
c0.1,0.3,0.1,0.6,0.1,0.9V69h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.3-0.9-0.3c-0.3,0-0.6,0-0.8,0.1
|
323 |
+
c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8V69h-1v-6.2H144.9z"/>
|
324 |
+
<path fill="#565656" d="M153.2,62.8v0.9H152v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.4,0h0.5
|
325 |
+
V69h-0.8c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1
|
326 |
+
v1.9H153.2z"/>
|
327 |
+
<path fill="#565656" d="M155.1,67.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
328 |
+
s0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3c0.1-0.1,0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
329 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
330 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.6-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
331 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3s-0.3-0.1-0.5-0.2
|
332 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
333 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
334 |
+
s0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9s-0.4,0.4-0.6,0.6
|
335 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
336 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C155,67.3,155,67.5,155.1,67.6z"/>
|
337 |
+
<path fill="#565656" d="M166.1,69.8c-0.1,0.3-0.2,0.6-0.4,0.8s-0.2,0.4-0.4,0.5c-0.1,0.1-0.3,0.2-0.5,0.3
|
338 |
+
c-0.2,0.1-0.4,0.1-0.6,0.1c-0.1,0-0.2,0-0.4,0c-0.1,0-0.2,0-0.3-0.1v-0.9c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3,0
|
339 |
+
c0.2,0,0.4,0,0.5-0.2c0.1-0.1,0.2-0.2,0.3-0.4l0.4-1l-2.5-6.2h1.2l1.8,5.1h0l1.7-5.1h1.1L166.1,69.8z"/>
|
340 |
+
<path fill="#565656" d="M169.6,64.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7s0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
341 |
+
c0.4,0.2,0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
342 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7c-0.4,0.2-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1
|
343 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S169.4,65,169.6,64.6z M170.6,66.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
344 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.3,0,0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7s0.2-0.6,0.2-1s-0.1-0.7-0.2-1
|
345 |
+
s-0.2-0.5-0.4-0.7s-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5s-0.3,0.4-0.4,0.7
|
346 |
+
s-0.1,0.6-0.1,1S170.5,66.6,170.6,66.9z"/>
|
347 |
+
<path fill="#565656" d="M180.8,69v-1h0c-0.2,0.4-0.5,0.7-0.8,0.8c-0.3,0.2-0.7,0.3-1.2,0.3c-0.4,0-0.7-0.1-1-0.2
|
348 |
+
c-0.3-0.1-0.5-0.3-0.7-0.5c-0.2-0.2-0.3-0.4-0.4-0.7s-0.1-0.6-0.1-0.9v-4.1h1V67c0,0.4,0.1,0.7,0.3,0.9c0.2,0.2,0.5,0.3,0.9,0.3
|
349 |
+
c0.3,0,0.6,0,0.8-0.1c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.4,0.3-0.6s0.1-0.5,0.1-0.8v-3.5h1V69H180.8z"/>
|
350 |
+
<path fill="#565656" d="M190.3,63.9c-0.3-0.2-0.6-0.3-1-0.3c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
351 |
+
c-0.1,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,0.9c0,0.3,0,0.6,0.1,0.8c0.1,0.3,0.2,0.5,0.3,0.7c0.1,0.2,0.3,0.4,0.6,0.5
|
352 |
+
s0.5,0.2,0.8,0.2c0.5,0,0.9-0.1,1.2-0.4c0.3-0.3,0.5-0.6,0.5-1.1h1c-0.1,0.8-0.4,1.4-0.9,1.8s-1.1,0.6-1.9,0.6
|
353 |
+
c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.6s-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3
|
354 |
+
c0.1-0.4,0.3-0.8,0.5-1.1s0.5-0.5,0.9-0.7c0.4-0.2,0.8-0.3,1.3-0.3c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.4s0.4,0.4,0.6,0.7
|
355 |
+
c0.2,0.3,0.2,0.6,0.3,1h-1.1C190.7,64.4,190.6,64.1,190.3,63.9z"/>
|
356 |
+
<path fill="#565656" d="M198.5,69c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
357 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
358 |
+
s-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9s0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2c0.3-0.1,0.5-0.1,0.8-0.1
|
359 |
+
s0.5-0.1,0.7-0.1c0.2-0.1,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
360 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2c-0.3,0.2-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1
|
361 |
+
c0.1-0.3,0.3-0.5,0.6-0.6s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2
|
362 |
+
c0.2,0.1,0.4,0.3,0.5,0.5c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V69z
|
363 |
+
M196.9,65.8c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1c-0.2,0-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
364 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
365 |
+
c0.2-0.1,0.4-0.2,0.6-0.3s0.3-0.3,0.3-0.5c0.1-0.2,0.1-0.3,0.1-0.5V65.8z"/>
|
366 |
+
<path fill="#565656" d="M200.4,62.8v1h0c0.4-0.8,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5s0.3,0.4,0.4,0.7
|
367 |
+
s0.1,0.6,0.1,0.9V69h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.3-0.9-0.3c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4
|
368 |
+
c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8V69h-1v-6.2H200.4z"/>
|
369 |
+
</g>
|
370 |
+
<g enable-background="new ">
|
371 |
+
<path fill="#565656" d="M41.7,80.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
372 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1V87h-1v-6.2H41.7z"/>
|
373 |
+
<path fill="#565656" d="M48.9,86.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
374 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
375 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
376 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
377 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C49.7,85.7,49.4,86.3,48.9,86.6z M48.7,82.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
378 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
379 |
+
C48.8,83.1,48.8,82.8,48.7,82.6z"/>
|
380 |
+
<path fill="#565656" d="M55.5,89.4v-3.2h0c-0.2,0.3-0.4,0.6-0.8,0.7c-0.4,0.2-0.8,0.2-1.2,0.2c-0.5,0-0.9-0.1-1.3-0.3
|
381 |
+
c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.5-1c-0.1-0.4-0.2-0.8-0.2-1.2c0-0.4,0.1-0.9,0.2-1.2c0.1-0.4,0.3-0.7,0.5-1
|
382 |
+
c0.2-0.3,0.5-0.5,0.9-0.7s0.8-0.3,1.2-0.3c0.2,0,0.3,0,0.5,0s0.4,0.1,0.6,0.2s0.4,0.2,0.5,0.3s0.3,0.3,0.4,0.5h0v-0.8h1v8.6H55.5z
|
383 |
+
M51.8,84.8c0.1,0.3,0.2,0.5,0.3,0.7c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2c0.3,0,0.6-0.1,0.9-0.2
|
384 |
+
c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.5,0.3-0.8c0.1-0.3,0.1-0.6,0.1-0.9c0-0.3,0-0.6-0.1-0.9c-0.1-0.3-0.2-0.5-0.3-0.8
|
385 |
+
c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5c-0.1,0.2-0.2,0.5-0.3,0.8
|
386 |
+
c-0.1,0.3-0.1,0.6-0.1,0.9C51.7,84.2,51.8,84.5,51.8,84.8z"/>
|
387 |
+
<path fill="#565656" d="M62.3,87v-1h0c-0.2,0.4-0.5,0.7-0.8,0.8c-0.3,0.2-0.7,0.3-1.2,0.3c-0.4,0-0.7-0.1-1-0.2
|
388 |
+
c-0.3-0.1-0.5-0.3-0.7-0.5c-0.2-0.2-0.3-0.4-0.4-0.7c-0.1-0.3-0.1-0.6-0.1-0.9v-4.1h1V85c0,0.4,0.1,0.7,0.3,0.9
|
389 |
+
c0.2,0.2,0.5,0.3,0.9,0.3c0.3,0,0.6,0,0.8-0.1c0.2-0.1,0.4-0.2,0.6-0.4c0.2-0.2,0.3-0.4,0.3-0.6c0.1-0.2,0.1-0.5,0.1-0.8v-3.5h1
|
390 |
+
V87H62.3z"/>
|
391 |
+
<path fill="#565656" d="M69.2,86.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
392 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
393 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
394 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
395 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C69.9,85.7,69.6,86.3,69.2,86.6z M68.9,82.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
396 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
397 |
+
C69.1,83.1,69,82.8,68.9,82.6z"/>
|
398 |
+
<path fill="#565656" d="M72,85.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
399 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
400 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
401 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
402 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
403 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
404 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
405 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
406 |
+
C75,86.9,74.7,87,74.4,87s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
407 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C71.9,85.3,71.9,85.5,72,85.6z"/>
|
408 |
+
<path fill="#565656" d="M79.9,80.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0h0.5V87
|
409 |
+
h-0.8c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9
|
410 |
+
H79.9z"/>
|
411 |
+
<path fill="#565656" d="M87,80.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0H87V87h-0.8
|
412 |
+
c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9H87z"/>
|
413 |
+
<path fill="#565656" d="M88,82.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7s0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
414 |
+
s0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
415 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1
|
416 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S87.8,83,88,82.6z M89,84.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5c0.2,0.1,0.5,0.2,0.8,0.2
|
417 |
+
c0.3,0,0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7s0.1-0.6,0.1-1s0-0.7-0.1-1s-0.2-0.5-0.4-0.7
|
418 |
+
c-0.2-0.2-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5c-0.2,0.2-0.3,0.4-0.4,0.7
|
419 |
+
c-0.1,0.3-0.1,0.6-0.1,1S88.9,84.6,89,84.9z"/>
|
420 |
+
<path fill="#565656" d="M102.7,86.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
421 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
422 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
423 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
424 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C103.5,85.7,103.2,86.3,102.7,86.6z M102.5,82.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
425 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
426 |
+
C102.6,83.1,102.6,82.8,102.5,82.6z"/>
|
427 |
+
<path fill="#565656" d="M105.7,80.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
428 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1V87h-1v-6.2H105.7z"/>
|
429 |
+
<path fill="#565656" d="M114.3,87c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
430 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
431 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
432 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
433 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
434 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
435 |
+
s0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V87z M112.6,83.8c-0.1,0.1-0.3,0.2-0.5,0.2
|
436 |
+
c-0.2,0-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1c-0.2,0-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.4-0.2,0.6
|
437 |
+
c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1c0.2-0.1,0.4-0.2,0.6-0.3
|
438 |
+
c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V83.8z"/>
|
439 |
+
<path fill="#565656" d="M116,85.6c0.1,0.2,0.2,0.3,0.4,0.4s0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
440 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
441 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
442 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
443 |
+
c0.2,0.1,0.4,0.3,0.5,0.6s0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.4-0.2
|
444 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
445 |
+
c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
446 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5s0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9s-0.4,0.4-0.6,0.6c-0.3,0.2-0.5,0.3-0.9,0.3
|
447 |
+
c-0.3,0.1-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6c-0.1-0.3-0.2-0.6-0.2-1h1
|
448 |
+
C115.9,85.3,115.9,85.5,116,85.6z"/>
|
449 |
+
<path fill="#565656" d="M125.6,86.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
450 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
451 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2H122
|
452 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
453 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C126.4,85.7,126.1,86.3,125.6,86.6z M125.4,82.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
454 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4c-0.2,0.2-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
455 |
+
C125.5,83.1,125.5,82.8,125.4,82.6z"/>
|
456 |
+
<path fill="#565656" d="M136.5,87c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
457 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
458 |
+
s-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9s0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2c0.3-0.1,0.5-0.1,0.8-0.1
|
459 |
+
s0.5-0.1,0.7-0.1c0.2-0.1,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
460 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2c-0.3,0.2-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1
|
461 |
+
c0.1-0.3,0.3-0.5,0.6-0.6s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2
|
462 |
+
c0.2,0.1,0.4,0.3,0.5,0.5c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V87z
|
463 |
+
M134.8,83.8c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1c-0.2,0-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
464 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
465 |
+
c0.2-0.1,0.4-0.2,0.6-0.3s0.3-0.3,0.3-0.5c0.1-0.2,0.1-0.3,0.1-0.5V83.8z"/>
|
466 |
+
<path fill="#565656" d="M138.4,80.8v1h0c0.4-0.8,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5s0.3,0.4,0.4,0.7
|
467 |
+
s0.1,0.6,0.1,0.9V87h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.3-0.9-0.3c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4
|
468 |
+
c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8V87h-1v-6.2H138.4z"/>
|
469 |
+
<path fill="#565656" d="M146.6,87.8c-0.1,0.3-0.2,0.6-0.4,0.8c-0.1,0.2-0.2,0.4-0.4,0.5c-0.1,0.1-0.3,0.2-0.5,0.3
|
470 |
+
c-0.2,0.1-0.4,0.1-0.6,0.1c-0.1,0-0.2,0-0.4,0s-0.2,0-0.3-0.1v-0.9c0.1,0,0.2,0.1,0.3,0.1s0.2,0,0.3,0c0.2,0,0.4,0,0.5-0.2
|
471 |
+
c0.1-0.1,0.2-0.2,0.3-0.4l0.4-1l-2.5-6.2h1.2l1.8,5.1h0l1.7-5.1h1.1L146.6,87.8z"/>
|
472 |
+
<path fill="#565656" d="M154.5,80.8v0.8h0c0.2-0.3,0.4-0.6,0.8-0.8c0.4-0.2,0.8-0.2,1.2-0.2c0.5,0,0.9,0.1,1.3,0.3
|
473 |
+
s0.7,0.4,0.9,0.7s0.4,0.6,0.5,1c0.1,0.4,0.2,0.8,0.2,1.2c0,0.4-0.1,0.9-0.2,1.2s-0.3,0.7-0.5,1c-0.2,0.3-0.5,0.5-0.9,0.7
|
474 |
+
c-0.4,0.2-0.8,0.3-1.2,0.3c-0.2,0-0.3,0-0.5,0s-0.4-0.1-0.6-0.2c-0.2-0.1-0.4-0.2-0.5-0.3c-0.2-0.1-0.3-0.3-0.4-0.5h0v3.2h-1v-8.6
|
475 |
+
H154.5z M158.2,83c-0.1-0.3-0.2-0.5-0.3-0.7s-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
476 |
+
s-0.3,0.5-0.3,0.8s-0.1,0.6-0.1,0.9c0,0.3,0,0.6,0.1,0.9c0.1,0.3,0.2,0.5,0.3,0.8c0.2,0.2,0.4,0.4,0.6,0.5
|
477 |
+
c0.2,0.1,0.5,0.2,0.9,0.2c0.4,0,0.6-0.1,0.9-0.2s0.4-0.3,0.6-0.5c0.1-0.2,0.2-0.5,0.3-0.8c0.1-0.3,0.1-0.6,0.1-0.9
|
478 |
+
C158.3,83.6,158.3,83.3,158.2,83z"/>
|
479 |
+
<path fill="#565656" d="M165,86.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
480 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.7-0.2,1.2-0.2
|
481 |
+
c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6c0,0.3,0,0.5,0.1,0.8
|
482 |
+
c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3c0.3-0.2,0.5-0.5,0.5-0.9h1
|
483 |
+
C165.7,85.7,165.4,86.3,165,86.6z M164.7,82.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1
|
484 |
+
c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6C164.9,83.1,164.8,82.8,164.7,82.6z"/>
|
485 |
+
<path fill="#565656" d="M167.9,80.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
486 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1V87h-1v-6.2H167.9z"/>
|
487 |
+
<path fill="#565656" d="M171.8,85.6c0.1,0.2,0.2,0.3,0.4,0.4s0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
488 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
489 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
490 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
491 |
+
c0.2,0.1,0.4,0.3,0.5,0.6s0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.4-0.2
|
492 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
493 |
+
c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
494 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5s0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9s-0.4,0.4-0.6,0.6c-0.3,0.2-0.5,0.3-0.9,0.3
|
495 |
+
c-0.3,0.1-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6c-0.1-0.3-0.2-0.6-0.2-1h1
|
496 |
+
C171.6,85.3,171.7,85.5,171.8,85.6z"/>
|
497 |
+
<path fill="#565656" d="M176.9,82.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.8-0.3,1.3-0.3
|
498 |
+
c0.5,0,0.9,0.1,1.3,0.3s0.7,0.4,0.9,0.7s0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
499 |
+
s-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1
|
500 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S176.7,83,176.9,82.6z M177.9,84.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
501 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.3,0,0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7c0.1-0.3,0.1-0.6,0.1-1
|
502 |
+
s0-0.7-0.1-1c-0.1-0.3-0.2-0.5-0.4-0.7c-0.2-0.2-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.8,0.2
|
503 |
+
c-0.2,0.1-0.4,0.3-0.6,0.5s-0.3,0.4-0.4,0.7s-0.2,0.6-0.2,1S177.8,84.6,177.9,84.9z"/>
|
504 |
+
<path fill="#565656" d="M184.9,80.8v1h0c0.4-0.8,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5s0.3,0.4,0.4,0.7
|
505 |
+
s0.1,0.6,0.1,0.9V87h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.3-0.9-0.3c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4
|
506 |
+
c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8V87h-1v-6.2H184.9z"/>
|
507 |
+
<path fill="#565656" d="M196.1,87c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
508 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
509 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5s0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
510 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
511 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
512 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
513 |
+
s0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V87z M194.4,83.8c-0.1,0.1-0.3,0.2-0.5,0.2
|
514 |
+
c-0.2,0-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2s-0.3,0.2-0.4,0.3c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4
|
515 |
+
c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1c0.2-0.1,0.4-0.2,0.6-0.3
|
516 |
+
c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V83.8z"/>
|
517 |
+
<path fill="#565656" d="M198.1,78.4V87h-1v-8.6H198.1z"/>
|
518 |
+
</g>
|
519 |
+
<g enable-background="new ">
|
520 |
+
<path fill="#565656" d="M45.3,105v-0.8h0c-0.2,0.3-0.4,0.6-0.8,0.7c-0.4,0.2-0.8,0.2-1.2,0.2c-0.5,0-0.9-0.1-1.3-0.3
|
521 |
+
c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.5-1c-0.1-0.4-0.2-0.8-0.2-1.2c0-0.4,0.1-0.9,0.2-1.2c0.1-0.4,0.3-0.7,0.5-1
|
522 |
+
c0.2-0.3,0.5-0.5,0.9-0.7s0.8-0.3,1.2-0.3c0.2,0,0.3,0,0.5,0s0.4,0.1,0.6,0.2s0.4,0.2,0.5,0.3s0.3,0.3,0.4,0.5h0v-3.2h1v8.6H45.3z
|
523 |
+
M41.6,102.8c0.1,0.3,0.2,0.5,0.3,0.7c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2c0.3,0,0.6-0.1,0.9-0.2
|
524 |
+
c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.5,0.3-0.8c0.1-0.3,0.1-0.6,0.1-0.9c0-0.3,0-0.6-0.1-0.9c-0.1-0.3-0.2-0.5-0.3-0.8
|
525 |
+
c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5c-0.1,0.2-0.2,0.5-0.3,0.8
|
526 |
+
c-0.1,0.3-0.1,0.6-0.1,0.9C41.5,102.2,41.5,102.5,41.6,102.8z"/>
|
527 |
+
<path fill="#565656" d="M53.4,105c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
528 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
529 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
530 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
531 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
532 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
533 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V105z M51.7,101.8
|
534 |
+
c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
535 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
536 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V101.8z"/>
|
537 |
+
<path fill="#565656" d="M57,98.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0H57v0.9h-0.8
|
538 |
+
c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9H57z"/>
|
539 |
+
<path fill="#565656" d="M63.6,105c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
540 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
541 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
542 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
543 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
544 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
545 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V105z M61.9,101.8
|
546 |
+
c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
547 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
548 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V101.8z"/>
|
549 |
+
<path fill="#565656" d="M73,105l-1.3-4.9h0l-1.2,4.9h-1.1l-2-6.2h1.1l1.4,5.1h0l1.2-5.1h1.1l1.3,5.1h0l1.4-5.1H76l-2,6.2H73z"/>
|
550 |
+
<path fill="#565656" d="M81.4,104.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
551 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
552 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
553 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
554 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C82.1,103.7,81.8,104.3,81.4,104.6z M81.1,100.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
555 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
556 |
+
C81.3,101.1,81.2,100.8,81.1,100.6z"/>
|
557 |
+
<path fill="#565656" d="M87.8,96.4v3.3h0c0.1-0.2,0.2-0.4,0.3-0.5s0.3-0.2,0.5-0.3c0.2-0.1,0.4-0.1,0.6-0.2c0.2,0,0.4-0.1,0.6-0.1
|
558 |
+
c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5c0.2,0.2,0.3,0.4,0.4,0.7c0.1,0.3,0.1,0.6,0.1,0.9v4.1h-1v-4.2
|
559 |
+
c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.3-0.9-0.3c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6
|
560 |
+
c-0.1,0.2-0.1,0.5-0.1,0.8v3.5h-1v-8.6H87.8z"/>
|
561 |
+
<path fill="#565656" d="M93.3,100.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7s0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
562 |
+
s0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
563 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1
|
564 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S93.2,101,93.3,100.6z M94.3,102.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
565 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.3,0,0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7s0.1-0.6,0.1-1s0-0.7-0.1-1
|
566 |
+
s-0.2-0.5-0.4-0.7c-0.2-0.2-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
567 |
+
c-0.2,0.2-0.3,0.4-0.4,0.7c-0.1,0.3-0.1,0.6-0.1,1S94.2,102.6,94.3,102.9z"/>
|
568 |
+
<path fill="#565656" d="M101.4,96.4v8.6h-1v-8.6H101.4z"/>
|
569 |
+
<path fill="#565656" d="M107.5,105v-0.8h0c-0.2,0.3-0.4,0.6-0.8,0.7c-0.4,0.2-0.8,0.2-1.2,0.2c-0.5,0-0.9-0.1-1.3-0.3
|
570 |
+
c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.5-1c-0.1-0.4-0.2-0.8-0.2-1.2c0-0.4,0.1-0.9,0.2-1.2c0.1-0.4,0.3-0.7,0.5-1
|
571 |
+
c0.2-0.3,0.5-0.5,0.9-0.7s0.8-0.3,1.2-0.3c0.2,0,0.3,0,0.5,0s0.4,0.1,0.6,0.2s0.4,0.2,0.5,0.3s0.3,0.3,0.4,0.5h0v-3.2h1v8.6H107.5
|
572 |
+
z M103.8,102.8c0.1,0.3,0.2,0.5,0.3,0.7c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2c0.3,0,0.6-0.1,0.9-0.2
|
573 |
+
c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.5,0.3-0.8c0.1-0.3,0.1-0.6,0.1-0.9c0-0.3,0-0.6-0.1-0.9c-0.1-0.3-0.2-0.5-0.3-0.8
|
574 |
+
c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5c-0.1,0.2-0.2,0.5-0.3,0.8
|
575 |
+
c-0.1,0.3-0.1,0.6-0.1,0.9C103.7,102.2,103.8,102.5,103.8,102.8z"/>
|
576 |
+
<path fill="#565656" d="M118.9,105c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
577 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
578 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5s0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
579 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
580 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
581 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
582 |
+
s0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V105z M117.3,101.8c-0.1,0.1-0.3,0.2-0.5,0.2
|
583 |
+
c-0.2,0-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2s-0.3,0.2-0.4,0.3c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4
|
584 |
+
c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1c0.2-0.1,0.4-0.2,0.6-0.3
|
585 |
+
c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V101.8z"/>
|
586 |
+
<path fill="#565656" d="M120.9,96.4v3.2h0c0.2-0.3,0.4-0.6,0.8-0.8c0.4-0.2,0.8-0.2,1.2-0.2c0.5,0,0.9,0.1,1.3,0.3
|
587 |
+
c0.4,0.2,0.7,0.4,0.9,0.7c0.2,0.3,0.4,0.6,0.5,1c0.1,0.4,0.2,0.8,0.2,1.2c0,0.4-0.1,0.9-0.2,1.2c-0.1,0.4-0.3,0.7-0.5,1
|
588 |
+
s-0.5,0.5-0.9,0.7c-0.4,0.2-0.8,0.3-1.2,0.3c-0.2,0-0.3,0-0.5,0c-0.2,0-0.4-0.1-0.6-0.2c-0.2-0.1-0.4-0.2-0.5-0.3
|
589 |
+
s-0.3-0.3-0.4-0.5h0v0.8h-1v-8.6H120.9z M124.6,101c-0.1-0.3-0.2-0.5-0.3-0.7c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2
|
590 |
+
c-0.3,0-0.6,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,0.9c0,0.3,0,0.6,0.1,0.9
|
591 |
+
c0.1,0.3,0.2,0.5,0.3,0.8c0.2,0.2,0.4,0.4,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.6-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
|
592 |
+
s0.2-0.5,0.3-0.8c0.1-0.3,0.1-0.6,0.1-0.9C124.7,101.6,124.7,101.3,124.6,101z"/>
|
593 |
+
<path fill="#565656" d="M126.9,100.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.8-0.3,1.3-0.3
|
594 |
+
c0.5,0,0.9,0.1,1.3,0.3s0.7,0.4,0.9,0.7s0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
595 |
+
s-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1
|
596 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S126.7,101,126.9,100.6z M127.9,102.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
597 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.3,0,0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7c0.1-0.3,0.1-0.6,0.1-1
|
598 |
+
s0-0.7-0.1-1c-0.1-0.3-0.2-0.5-0.4-0.7c-0.2-0.2-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.8,0.2
|
599 |
+
c-0.2,0.1-0.4,0.3-0.6,0.5s-0.3,0.4-0.4,0.7s-0.2,0.6-0.2,1S127.8,102.6,127.9,102.9z"/>
|
600 |
+
<path fill="#565656" d="M138.1,105v-1h0c-0.2,0.4-0.5,0.7-0.8,0.8c-0.3,0.2-0.7,0.3-1.2,0.3c-0.4,0-0.7-0.1-1-0.2
|
601 |
+
c-0.3-0.1-0.5-0.3-0.7-0.5c-0.2-0.2-0.3-0.4-0.4-0.7s-0.1-0.6-0.1-0.9v-4.1h1v4.2c0,0.4,0.1,0.7,0.3,0.9c0.2,0.2,0.5,0.3,0.9,0.3
|
602 |
+
c0.3,0,0.6,0,0.8-0.1c0.2-0.1,0.4-0.2,0.6-0.4c0.2-0.2,0.3-0.4,0.3-0.6c0.1-0.2,0.1-0.5,0.1-0.8v-3.5h1v6.2H138.1z"/>
|
603 |
+
<path fill="#565656" d="M143.2,98.8v0.9H142v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2s0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.4,0h0.5v0.9
|
604 |
+
h-0.8c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2s-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9H143.2z"/>
|
605 |
+
<path fill="#565656" d="M150.1,105.8c-0.1,0.3-0.2,0.6-0.4,0.8c-0.1,0.2-0.2,0.4-0.4,0.5c-0.1,0.1-0.3,0.2-0.5,0.3
|
606 |
+
c-0.2,0.1-0.4,0.1-0.6,0.1c-0.1,0-0.2,0-0.4,0s-0.2,0-0.3-0.1v-0.9c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3,0c0.2,0,0.4,0,0.5-0.2
|
607 |
+
c0.1-0.1,0.2-0.2,0.3-0.4l0.4-1l-2.5-6.2h1.2l1.8,5.1h0l1.7-5.1h1.1L150.1,105.8z"/>
|
608 |
+
<path fill="#565656" d="M153.5,100.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.8-0.3,1.3-0.3
|
609 |
+
c0.5,0,0.9,0.1,1.3,0.3s0.7,0.4,0.9,0.7s0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
610 |
+
s-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1
|
611 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S153.4,101,153.5,100.6z M154.6,102.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
612 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.3,0,0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7c0.1-0.3,0.1-0.6,0.1-1
|
613 |
+
s0-0.7-0.1-1c-0.1-0.3-0.2-0.5-0.4-0.7c-0.2-0.2-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.8,0.2
|
614 |
+
c-0.2,0.1-0.4,0.3-0.6,0.5s-0.3,0.4-0.4,0.7s-0.2,0.6-0.2,1S154.5,102.6,154.6,102.9z"/>
|
615 |
+
<path fill="#565656" d="M164.7,105v-1h0c-0.2,0.4-0.5,0.7-0.8,0.8c-0.3,0.2-0.7,0.3-1.2,0.3c-0.4,0-0.7-0.1-1-0.2
|
616 |
+
c-0.3-0.1-0.5-0.3-0.7-0.5c-0.2-0.2-0.3-0.4-0.4-0.7s-0.1-0.6-0.1-0.9v-4.1h1v4.2c0,0.4,0.1,0.7,0.3,0.9c0.2,0.2,0.5,0.3,0.9,0.3
|
617 |
+
c0.3,0,0.6,0,0.8-0.1c0.2-0.1,0.4-0.2,0.6-0.4c0.2-0.2,0.3-0.4,0.3-0.6c0.1-0.2,0.1-0.5,0.1-0.8v-3.5h1v6.2H164.7z"/>
|
618 |
+
<path fill="#565656" d="M168.8,103.7v1.3h-1.3v-1.3H168.8z"/>
|
619 |
+
</g>
|
620 |
+
<g enable-background="new ">
|
621 |
+
<path fill="#565656" d="M44.7,135.4c0.9,0,1.5,0.2,2,0.7c0.4,0.4,0.7,1.1,0.7,1.9s-0.2,1.4-0.7,1.9c-0.4,0.4-1.1,0.7-2,0.7h-2.6
|
622 |
+
v3.5h-1.1v-8.6H44.7z M44.3,139.5c0.6,0,1.1-0.1,1.4-0.4c0.3-0.3,0.5-0.7,0.5-1.2s-0.2-0.9-0.5-1.2c-0.3-0.3-0.8-0.4-1.4-0.4h-2.2
|
623 |
+
v3.1H44.3z"/>
|
624 |
+
<path fill="#565656" d="M49.6,135.4v8.6h-1v-8.6H49.6z"/>
|
625 |
+
<path fill="#565656" d="M55.6,143.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
626 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
627 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2H52
|
628 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
629 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C56.4,142.7,56.1,143.3,55.6,143.6z M55.4,139.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
630 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
631 |
+
C55.5,140.1,55.4,139.8,55.4,139.6z"/>
|
632 |
+
<path fill="#565656" d="M63.1,144c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
633 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
634 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
635 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
636 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
637 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
638 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V144z M61.5,140.8
|
639 |
+
c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
640 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
641 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V140.8z"/>
|
642 |
+
<path fill="#565656" d="M64.9,142.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
643 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
644 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
645 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
646 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
647 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
648 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
649 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
650 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
651 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C64.7,142.3,64.8,142.5,64.9,142.6z"/>
|
652 |
+
<path fill="#565656" d="M74.5,143.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
653 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
654 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
655 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
656 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C75.3,142.7,75,143.3,74.5,143.6z M74.2,139.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
657 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
658 |
+
C74.4,140.1,74.3,139.8,74.2,139.6z"/>
|
659 |
+
<path fill="#565656" d="M84.1,144v-1h0c-0.2,0.4-0.5,0.7-0.8,0.8c-0.3,0.2-0.7,0.3-1.2,0.3c-0.4,0-0.7-0.1-1-0.2
|
660 |
+
c-0.3-0.1-0.5-0.3-0.7-0.5c-0.2-0.2-0.3-0.4-0.4-0.7c-0.1-0.3-0.1-0.6-0.1-0.9v-4.1h1v4.2c0,0.4,0.1,0.7,0.3,0.9
|
661 |
+
c0.2,0.2,0.5,0.3,0.9,0.3c0.3,0,0.6,0,0.8-0.1c0.2-0.1,0.4-0.2,0.6-0.4c0.2-0.2,0.3-0.4,0.3-0.6c0.1-0.2,0.1-0.5,0.1-0.8v-3.5h1
|
662 |
+
v6.2H84.1z"/>
|
663 |
+
<path fill="#565656" d="M87.3,142.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
664 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
665 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
666 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
667 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
668 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
669 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
670 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
671 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
672 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C87.2,142.3,87.2,142.5,87.3,142.6z"/>
|
673 |
+
<path fill="#565656" d="M96.9,143.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
674 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
675 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
676 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
677 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C97.7,142.7,97.4,143.3,96.9,143.6z M96.7,139.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
678 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
679 |
+
C96.8,140.1,96.8,139.8,96.7,139.6z"/>
|
680 |
+
<path fill="#565656" d="M105,137.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0h0.5v0.9
|
681 |
+
h-0.8c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9
|
682 |
+
H105z"/>
|
683 |
+
<path fill="#565656" d="M107.1,135.4v3.3h0c0.1-0.2,0.2-0.4,0.3-0.5s0.3-0.2,0.5-0.3c0.2-0.1,0.4-0.1,0.6-0.2
|
684 |
+
c0.2,0,0.4-0.1,0.6-0.1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5c0.2,0.2,0.3,0.4,0.4,0.7s0.1,0.6,0.1,0.9v4.1h-1v-4.2
|
685 |
+
c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.3-0.9-0.3c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6
|
686 |
+
c-0.1,0.2-0.1,0.5-0.1,0.8v3.5h-1v-8.6H107.1z"/>
|
687 |
+
<path fill="#565656" d="M112.8,136.7v-1.2h1v1.2H112.8z M113.9,137.8v6.2h-1v-6.2H113.9z"/>
|
688 |
+
<path fill="#565656" d="M116.2,142.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
689 |
+
s0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.5-0.2-0.8-0.3s-0.6-0.2-1-0.2
|
690 |
+
c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.5-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8c0.1-0.2,0.3-0.4,0.5-0.5
|
691 |
+
c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3c0.2,0.1,0.4,0.3,0.5,0.6
|
692 |
+
c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2c-0.2,0-0.3-0.1-0.5-0.1
|
693 |
+
c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2s-0.1,0.2-0.1,0.4c0,0.2,0.1,0.3,0.2,0.4
|
694 |
+
c0.1,0.1,0.3,0.2,0.5,0.3s0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5
|
695 |
+
c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6c-0.3,0.2-0.5,0.3-0.9,0.3c-0.3,0.1-0.6,0.1-0.9,0.1
|
696 |
+
c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4s-0.4-0.4-0.6-0.6c-0.1-0.3-0.2-0.6-0.2-1h1C116.1,142.3,116.1,142.5,116.2,142.6z"
|
697 |
+
/>
|
698 |
+
<path fill="#565656" d="M124.2,138.7v-0.9h1v-0.9c0-0.5,0.1-0.9,0.4-1.1c0.3-0.3,0.7-0.4,1.3-0.4c0.1,0,0.2,0,0.3,0
|
699 |
+
c0.1,0,0.2,0,0.3,0.1v0.9c-0.1,0-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0c-0.2,0-0.4,0-0.6,0.1s-0.2,0.3-0.2,0.6v0.9h1.2v0.9h-1.2v5.3
|
700 |
+
h-1v-5.3H124.2z"/>
|
701 |
+
<path fill="#565656" d="M128.2,139.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.8-0.3,1.3-0.3
|
702 |
+
c0.5,0,0.9,0.1,1.3,0.3s0.7,0.4,0.9,0.7s0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
703 |
+
s-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1
|
704 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S128.1,140,128.2,139.6z M129.2,141.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
705 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.3,0,0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7c0.1-0.3,0.1-0.6,0.1-1
|
706 |
+
s0-0.7-0.1-1c-0.1-0.3-0.2-0.5-0.4-0.7c-0.2-0.2-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.8,0.2
|
707 |
+
c-0.2,0.1-0.4,0.3-0.6,0.5s-0.3,0.4-0.4,0.7s-0.2,0.6-0.2,1S129.1,141.6,129.2,141.9z"/>
|
708 |
+
<path fill="#565656" d="M136.1,137.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
709 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1v2.8h-1v-6.2H136.1z"/>
|
710 |
+
<path fill="#565656" d="M140.2,137.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
711 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
712 |
+
c0.1,0.2,0.2,0.5,0.2,0.8v4.5h-1v-4.1c0-0.2,0-0.4,0-0.5c0-0.2-0.1-0.3-0.2-0.4s-0.2-0.2-0.4-0.3c-0.2-0.1-0.4-0.1-0.6-0.1
|
713 |
+
c-0.5,0-0.9,0.1-1.2,0.4c-0.3,0.3-0.4,0.7-0.4,1.2v3.9h-1v-4.1c0-0.2,0-0.4-0.1-0.6c0-0.2-0.1-0.3-0.2-0.4s-0.2-0.2-0.4-0.3
|
714 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.6,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4s-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5v3.9h-1
|
715 |
+
v-6.2H140.2z"/>
|
716 |
+
<path fill="#565656" d="M155.4,137.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2s0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.4,0h0.5v0.9
|
717 |
+
h-0.8c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2s-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9H155.4z"/>
|
718 |
+
<path fill="#565656" d="M156.4,139.6c0.1-0.4,0.3-0.7,0.6-1s0.6-0.5,0.9-0.7s0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
719 |
+
c0.4,0.2,0.7,0.4,0.9,0.7s0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1s-0.6,0.5-0.9,0.7
|
720 |
+
c-0.4,0.2-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3
|
721 |
+
S156.3,140,156.4,139.6z M157.5,141.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5c0.2,0.1,0.5,0.2,0.8,0.2s0.5-0.1,0.8-0.2
|
722 |
+
c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7s0.1-0.6,0.1-1s0-0.7-0.1-1s-0.2-0.5-0.4-0.7c-0.2-0.2-0.4-0.4-0.6-0.5
|
723 |
+
c-0.2-0.1-0.5-0.2-0.8-0.2s-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5c-0.2,0.2-0.3,0.4-0.4,0.7c-0.1,0.3-0.2,0.6-0.2,1
|
724 |
+
S157.4,141.6,157.5,141.9z"/>
|
725 |
+
<path fill="#565656" d="M167.7,137.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
726 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1v2.8h-1v-6.2H167.7z"/>
|
727 |
+
<path fill="#565656" d="M175,143.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
728 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.7-0.2,1.2-0.2
|
729 |
+
c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6c0,0.3,0,0.5,0.1,0.8
|
730 |
+
c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3c0.3-0.2,0.5-0.5,0.5-0.9h1
|
731 |
+
C175.7,142.7,175.4,143.3,175,143.6z M174.7,139.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1
|
732 |
+
c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6C174.9,140.1,174.8,139.8,174.7,139.6z"/>
|
733 |
+
<path fill="#565656" d="M181.5,146.4v-3.2h0c-0.2,0.3-0.4,0.6-0.8,0.7c-0.4,0.2-0.8,0.2-1.2,0.2c-0.5,0-0.9-0.1-1.3-0.3
|
734 |
+
c-0.4-0.2-0.7-0.4-0.9-0.7c-0.2-0.3-0.4-0.6-0.5-1c-0.1-0.4-0.2-0.8-0.2-1.2c0-0.4,0.1-0.9,0.2-1.2c0.1-0.4,0.3-0.7,0.5-1
|
735 |
+
c0.2-0.3,0.5-0.5,0.9-0.7c0.4-0.2,0.8-0.3,1.2-0.3c0.2,0,0.3,0,0.5,0c0.2,0,0.4,0.1,0.6,0.2s0.4,0.2,0.5,0.3s0.3,0.3,0.4,0.5h0
|
736 |
+
v-0.8h1v8.6H181.5z M177.9,141.8c0.1,0.3,0.2,0.5,0.3,0.7c0.2,0.2,0.4,0.4,0.6,0.5s0.5,0.2,0.9,0.2c0.3,0,0.6-0.1,0.9-0.2
|
737 |
+
c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.5,0.3-0.8c0.1-0.3,0.1-0.6,0.1-0.9c0-0.3,0-0.6-0.1-0.9c-0.1-0.3-0.2-0.5-0.3-0.8
|
738 |
+
c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5c-0.1,0.2-0.2,0.5-0.3,0.8
|
739 |
+
c-0.1,0.3-0.1,0.6-0.1,0.9C177.8,141.2,177.8,141.5,177.9,141.8z"/>
|
740 |
+
<path fill="#565656" d="M188.3,144v-1h0c-0.2,0.4-0.5,0.7-0.8,0.8c-0.3,0.2-0.7,0.3-1.2,0.3c-0.4,0-0.7-0.1-1-0.2
|
741 |
+
c-0.3-0.1-0.5-0.3-0.7-0.5c-0.2-0.2-0.3-0.4-0.4-0.7c-0.1-0.3-0.1-0.6-0.1-0.9v-4.1h1v4.2c0,0.4,0.1,0.7,0.3,0.9
|
742 |
+
c0.2,0.2,0.5,0.3,0.9,0.3c0.3,0,0.6,0,0.8-0.1c0.2-0.1,0.4-0.2,0.6-0.4c0.2-0.2,0.3-0.4,0.3-0.6c0.1-0.2,0.1-0.5,0.1-0.8v-3.5h1
|
743 |
+
v6.2H188.3z"/>
|
744 |
+
<path fill="#565656" d="M195.2,143.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
745 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
746 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
747 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
748 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C196,142.7,195.7,143.3,195.2,143.6z M194.9,139.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
749 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
750 |
+
C195.1,140.1,195,139.8,194.9,139.6z"/>
|
751 |
+
<path fill="#565656" d="M198,142.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
752 |
+
s0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.5-0.2-0.8-0.3s-0.6-0.2-1-0.2
|
753 |
+
c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.5-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8c0.1-0.2,0.3-0.4,0.5-0.5
|
754 |
+
c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3c0.2,0.1,0.4,0.3,0.5,0.6
|
755 |
+
c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2c-0.2,0-0.3-0.1-0.5-0.1
|
756 |
+
c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2s-0.1,0.2-0.1,0.4c0,0.2,0.1,0.3,0.2,0.4
|
757 |
+
c0.1,0.1,0.3,0.2,0.5,0.3s0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5
|
758 |
+
c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6c-0.3,0.2-0.5,0.3-0.9,0.3c-0.3,0.1-0.6,0.1-0.9,0.1
|
759 |
+
c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4s-0.4-0.4-0.6-0.6c-0.1-0.3-0.2-0.6-0.2-1h1C197.9,142.3,197.9,142.5,198,142.6z"/>
|
760 |
+
<path fill="#565656" d="M205.9,137.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2s0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.4,0h0.5v0.9
|
761 |
+
h-0.8c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2s-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9H205.9z"/>
|
762 |
+
</g>
|
763 |
+
<g enable-background="new ">
|
764 |
+
<path fill="#565656" d="M41.8,155.8v0.8h0c0.2-0.3,0.4-0.6,0.8-0.8c0.4-0.2,0.8-0.2,1.2-0.2c0.5,0,0.9,0.1,1.3,0.3
|
765 |
+
s0.7,0.4,0.9,0.7c0.2,0.3,0.4,0.6,0.5,1c0.1,0.4,0.2,0.8,0.2,1.2c0,0.4-0.1,0.9-0.2,1.2c-0.1,0.4-0.3,0.7-0.5,1s-0.5,0.5-0.9,0.7
|
766 |
+
c-0.4,0.2-0.8,0.3-1.2,0.3c-0.2,0-0.3,0-0.5,0s-0.4-0.1-0.6-0.2c-0.2-0.1-0.4-0.2-0.5-0.3c-0.2-0.1-0.3-0.3-0.4-0.5h0v3.2h-1v-8.6
|
767 |
+
H41.8z M45.5,158c-0.1-0.3-0.2-0.5-0.3-0.7c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2
|
768 |
+
c-0.2,0.1-0.4,0.3-0.6,0.5c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,0.9c0,0.3,0,0.6,0.1,0.9c0.1,0.3,0.2,0.5,0.3,0.8
|
769 |
+
c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2c0.4,0,0.6-0.1,0.9-0.2s0.4-0.3,0.6-0.5s0.2-0.5,0.3-0.8
|
770 |
+
c0.1-0.3,0.1-0.6,0.1-0.9C45.6,158.6,45.6,158.3,45.5,158z"/>
|
771 |
+
<path fill="#565656" d="M52.3,161.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
772 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
773 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
774 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
775 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C53,160.7,52.7,161.3,52.3,161.6z M52,157.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
776 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
777 |
+
C52.2,158.1,52.1,157.8,52,157.6z"/>
|
778 |
+
<path fill="#565656" d="M55.3,155.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
779 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1v2.8h-1v-6.2H55.3z"/>
|
780 |
+
<path fill="#565656" d="M59.1,160.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
781 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
782 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
783 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
784 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
785 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
786 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
787 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
788 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
789 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C59,160.3,59,160.5,59.1,160.6z"/>
|
790 |
+
<path fill="#565656" d="M64.2,157.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7s0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
791 |
+
s0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
792 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1
|
793 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S64.1,158,64.2,157.6z M65.2,159.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
794 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.3,0,0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7s0.1-0.6,0.1-1s0-0.7-0.1-1
|
795 |
+
s-0.2-0.5-0.4-0.7c-0.2-0.2-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
796 |
+
c-0.2,0.2-0.3,0.4-0.4,0.7c-0.1,0.3-0.1,0.6-0.1,1S65.1,159.6,65.2,159.9z"/>
|
797 |
+
<path fill="#565656" d="M72.2,155.8v1h0c0.4-0.8,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5
|
798 |
+
c0.2,0.2,0.3,0.4,0.4,0.7c0.1,0.3,0.1,0.6,0.1,0.9v4.1h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.3-0.9-0.3
|
799 |
+
c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8v3.5h-1v-6.2H72.2z"/>
|
800 |
+
<path fill="#565656" d="M83.4,162c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
801 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
802 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
803 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
804 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
805 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
806 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V162z M81.7,158.8
|
807 |
+
c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
808 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
809 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V158.8z"/>
|
810 |
+
<path fill="#565656" d="M85.4,153.4v8.6h-1v-8.6H85.4z"/>
|
811 |
+
<path fill="#565656" d="M94.9,162v-0.8h0c-0.2,0.3-0.4,0.6-0.8,0.7c-0.4,0.2-0.8,0.2-1.2,0.2c-0.5,0-0.9-0.1-1.3-0.3
|
812 |
+
c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.5-1c-0.1-0.4-0.2-0.8-0.2-1.2c0-0.4,0.1-0.9,0.2-1.2c0.1-0.4,0.3-0.7,0.5-1
|
813 |
+
c0.2-0.3,0.5-0.5,0.9-0.7s0.8-0.3,1.2-0.3c0.2,0,0.3,0,0.5,0s0.4,0.1,0.6,0.2s0.4,0.2,0.5,0.3s0.3,0.3,0.4,0.5h0v-3.2h1v8.6H94.9z
|
814 |
+
M91.2,159.8c0.1,0.3,0.2,0.5,0.3,0.7c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2c0.3,0,0.6-0.1,0.9-0.2
|
815 |
+
c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.5,0.3-0.8c0.1-0.3,0.1-0.6,0.1-0.9c0-0.3,0-0.6-0.1-0.9c-0.1-0.3-0.2-0.5-0.3-0.8
|
816 |
+
c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5c-0.1,0.2-0.2,0.5-0.3,0.8
|
817 |
+
c-0.1,0.3-0.1,0.6-0.1,0.9C91.1,159.2,91.1,159.5,91.2,159.8z"/>
|
818 |
+
<path fill="#565656" d="M102.9,162c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
819 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
820 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
821 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
822 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
823 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
824 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V162z M101.3,158.8
|
825 |
+
c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
826 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
827 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V158.8z"/>
|
828 |
+
<path fill="#565656" d="M106.5,155.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0h0.5v0.9
|
829 |
+
h-0.8c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9
|
830 |
+
H106.5z"/>
|
831 |
+
<path fill="#565656" d="M113.2,162c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
832 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
833 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
834 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1c0.2-0.1,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
835 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
836 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
837 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V162z M111.5,158.8
|
838 |
+
c-0.1,0.1-0.3,0.2-0.5,0.2c-0.2,0-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
839 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
840 |
+
c0.2-0.1,0.4-0.2,0.6-0.3s0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V158.8z"/>
|
841 |
+
<path fill="#565656" d="M121.8,161.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
842 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.7-0.2,1.2-0.2
|
843 |
+
c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6c0,0.3,0,0.5,0.1,0.8
|
844 |
+
c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3s0.5-0.5,0.5-0.9h1
|
845 |
+
C122.6,160.7,122.3,161.3,121.8,161.6z M121.6,157.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1
|
846 |
+
c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4c-0.2,0.2-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
847 |
+
C121.7,158.1,121.7,157.8,121.6,157.6z"/>
|
848 |
+
<path fill="#565656" d="M124.8,155.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
849 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1v2.8h-1v-6.2H124.8z"/>
|
850 |
+
<path fill="#565656" d="M133.4,162c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
851 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
852 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5s0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
853 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
854 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
855 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
856 |
+
s0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V162z M131.7,158.8c-0.1,0.1-0.3,0.2-0.5,0.2
|
857 |
+
c-0.2,0-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2s-0.3,0.2-0.4,0.3c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4
|
858 |
+
c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1c0.2-0.1,0.4-0.2,0.6-0.3
|
859 |
+
c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V158.8z"/>
|
860 |
+
<path fill="#565656" d="M135.1,160.6c0.1,0.2,0.2,0.3,0.4,0.4s0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
861 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3c0.1-0.1,0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.5-0.2-0.8-0.3
|
862 |
+
c-0.3-0.1-0.6-0.2-1-0.2s-0.7-0.2-1-0.3s-0.5-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
863 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
864 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
865 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2s-0.1,0.2-0.1,0.4
|
866 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
867 |
+
s0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
868 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4s-0.4-0.4-0.6-0.6
|
869 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C135,160.3,135,160.5,135.1,160.6z"/>
|
870 |
+
<path fill="#565656" d="M144.5,162v-1h0c-0.2,0.4-0.5,0.7-0.8,0.8c-0.3,0.2-0.7,0.3-1.2,0.3c-0.4,0-0.7-0.1-1-0.2
|
871 |
+
c-0.3-0.1-0.5-0.3-0.7-0.5c-0.2-0.2-0.3-0.4-0.4-0.7s-0.1-0.6-0.1-0.9v-4.1h1v4.2c0,0.4,0.1,0.7,0.3,0.9c0.2,0.2,0.5,0.3,0.9,0.3
|
872 |
+
c0.3,0,0.6,0,0.8-0.1c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.4,0.3-0.6s0.1-0.5,0.1-0.8v-3.5h1v6.2H144.5z"/>
|
873 |
+
<path fill="#565656" d="M147.9,155.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
874 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1v2.8h-1v-6.2H147.9z"/>
|
875 |
+
<path fill="#565656" d="M155.2,161.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
876 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
877 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
878 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
879 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C155.9,160.7,155.6,161.3,155.2,161.6z M154.9,157.6c-0.1-0.2-0.2-0.4-0.4-0.6
|
880 |
+
c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6
|
881 |
+
s-0.1,0.4-0.2,0.7h3.6C155.1,158.1,155,157.8,154.9,157.6z"/>
|
882 |
+
<path fill="#565656" d="M158.8,160.7v1.3h-1.3v-1.3H158.8z"/>
|
883 |
+
</g>
|
884 |
+
</g>
|
885 |
+
</svg>
|
templates/13/preview-thumb.svg
ADDED
@@ -0,0 +1,258 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 265 300" enable-background="new 0 0 265 300" xml:space="preserve">
|
5 |
+
<g>
|
6 |
+
<path id="Rectangle_832" fill="#FFFFFF" d="M5,0h255c2.8,0,5,2.2,5,5v290c0,2.8-2.2,5-5,5H5c-2.8,0-5-2.2-5-5V5C0,2.2,2.2,0,5,0z"
|
7 |
+
/>
|
8 |
+
<path id="Rectangle_833" fill="#E5E9EA" d="M42.5,59h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
9 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,60.1,41.1,59,42.5,59z"/>
|
10 |
+
<path id="Rectangle_834" fill="#E5E9EA" d="M42.5,108h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
11 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,109.1,41.1,108,42.5,108z"/>
|
12 |
+
<path id="Rectangle_841" fill="#E5E9EA" d="M142.5,108h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
13 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C140,109.1,141.1,108,142.5,108z"/>
|
14 |
+
<path id="Rectangle_835" fill="#E5E9EA" d="M142.5,59h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
15 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C140,60.1,141.1,59,142.5,59z"/>
|
16 |
+
<path id="Rectangle_836" fill="#E5E9EA" d="M42.5,162h15c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-15
|
17 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,163.1,41.1,162,42.5,162z"/>
|
18 |
+
<path id="Rectangle_837" fill="#E5E9EA" d="M42.5,179h15c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-15
|
19 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,180.1,41.1,179,42.5,179z"/>
|
20 |
+
<path id="Rectangle_838" fill="#E5E9EA" d="M67.5,162h65c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-65
|
21 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C65,163.1,66.1,162,67.5,162z"/>
|
22 |
+
<path id="Rectangle_839" fill="#E5E9EA" d="M67.5,179h125c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-125
|
23 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C65,180.1,66.1,179,67.5,179z"/>
|
24 |
+
<g enable-background="new ">
|
25 |
+
<path fill="#565656" d="M46.6,42.4v1h-4.5v2.7H46v1h-3.9V51h-1.1v-8.6H46.6z"/>
|
26 |
+
<path fill="#565656" d="M47.7,43.7v-1.2h1v1.2H47.7z M48.7,44.8V51h-1v-6.2H48.7z"/>
|
27 |
+
<path fill="#565656" d="M51.2,44.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
28 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1V51h-1v-6.2H51.2z"/>
|
29 |
+
<path fill="#565656" d="M55.1,49.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
30 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
31 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
32 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
33 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
34 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
35 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
36 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
37 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
38 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C54.9,49.3,55,49.5,55.1,49.6z"/>
|
39 |
+
<path fill="#565656" d="M63,44.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0H63V51h-0.8
|
40 |
+
c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9H63z"/>
|
41 |
+
<path fill="#565656" d="M68.8,42.4l4.5,6.9h0v-6.9h1.1V51h-1.2l-4.5-6.9h0V51h-1.1v-8.6H68.8z"/>
|
42 |
+
<path fill="#565656" d="M81.6,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
43 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
44 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
45 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
46 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2S77,46.3,77,46.7h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
47 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
48 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51z M79.9,47.8
|
49 |
+
c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
50 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
51 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V47.8z"/>
|
52 |
+
<path fill="#565656" d="M83.5,44.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
53 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
54 |
+
c0.1,0.2,0.1,0.5,0.1,0.8V51h-1v-4.1c0-0.2,0-0.4,0-0.5S90.1,46.1,90,46c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
55 |
+
c-0.5,0-0.9,0.1-1.2,0.4s-0.4,0.7-0.4,1.2V51h-1v-4.1c0-0.2,0-0.4-0.1-0.6c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3
|
56 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4s-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5V51h-1
|
57 |
+
v-6.2H83.5z"/>
|
58 |
+
<path fill="#565656" d="M97.2,50.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
59 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
60 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
61 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
62 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C97.9,49.7,97.6,50.3,97.2,50.6z M96.9,46.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
63 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
64 |
+
C97.1,47.1,97,46.8,96.9,46.6z"/>
|
65 |
+
</g>
|
66 |
+
<g enable-background="new ">
|
67 |
+
<path fill="#565656" d="M46.9,91.4v1h-4.8v2.7h4.5v1h-4.5v3h4.8v1h-6v-8.6H46.9z"/>
|
68 |
+
<path fill="#565656" d="M49.1,93.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
69 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
70 |
+
c0.1,0.2,0.1,0.5,0.1,0.8v4.5h-1v-4.1c0-0.2,0-0.4,0-0.5s-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
71 |
+
c-0.5,0-0.9,0.1-1.2,0.4S53,95.7,53,96.1v3.9h-1v-4.1c0-0.2,0-0.4-0.1-0.6c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3
|
72 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4s-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5v3.9h-1
|
73 |
+
v-6.2H49.1z"/>
|
74 |
+
<path fill="#565656" d="M63.8,100c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
75 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
76 |
+
C58.1,99,58,98.7,58,98.4c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
77 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
78 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
79 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
80 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V100z M62.2,96.8
|
81 |
+
C62,96.9,61.9,97,61.7,97s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
82 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
83 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V96.8z"/>
|
84 |
+
<path fill="#565656" d="M64.8,92.7v-1.2h1v1.2H64.8z M65.9,93.8v6.2h-1v-6.2H65.9z"/>
|
85 |
+
<path fill="#565656" d="M68.5,91.4v8.6h-1v-8.6H68.5z"/>
|
86 |
+
</g>
|
87 |
+
<g enable-background="new ">
|
88 |
+
<path fill="#565656" d="M144.7,91.4c0.9,0,1.5,0.2,2,0.7c0.4,0.4,0.7,1.1,0.7,1.9s-0.2,1.4-0.7,1.9c-0.4,0.4-1.1,0.7-2,0.7h-2.6
|
89 |
+
v3.5h-1.1v-8.6H144.7z M144.3,95.5c0.6,0,1.1-0.1,1.4-0.4c0.3-0.3,0.4-0.7,0.4-1.2s-0.2-0.9-0.4-1.2c-0.3-0.3-0.8-0.4-1.4-0.4
|
90 |
+
h-2.2v3.1H144.3z"/>
|
91 |
+
<path fill="#565656" d="M149.6,91.4v3.3h0c0.1-0.2,0.2-0.4,0.3-0.5s0.3-0.2,0.5-0.3s0.4-0.1,0.6-0.2c0.2,0,0.4-0.1,0.6-0.1
|
92 |
+
c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5c0.2,0.2,0.3,0.4,0.4,0.7s0.1,0.6,0.1,0.9v4.1h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9
|
93 |
+
c-0.2-0.2-0.5-0.3-0.9-0.3c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8v3.5
|
94 |
+
h-1v-8.6H149.6z"/>
|
95 |
+
<path fill="#565656" d="M155.1,95.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7s0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
96 |
+
c0.4,0.2,0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
97 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7c-0.4,0.2-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1
|
98 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S154.9,96,155.1,95.6z M156.1,97.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
99 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.3,0,0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7s0.2-0.6,0.2-1s-0.1-0.7-0.2-1
|
100 |
+
s-0.2-0.5-0.4-0.7s-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5s-0.3,0.4-0.4,0.7
|
101 |
+
s-0.1,0.6-0.1,1S156,97.6,156.1,97.9z"/>
|
102 |
+
<path fill="#565656" d="M163.1,93.8v1h0c0.4-0.8,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5
|
103 |
+
c0.2,0.2,0.3,0.4,0.4,0.7c0.1,0.3,0.1,0.6,0.1,0.9v4.1h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.3-0.9-0.3
|
104 |
+
c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8v3.5h-1v-6.2H163.1z"/>
|
105 |
+
<path fill="#565656" d="M173.2,99.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
106 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
107 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
108 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
109 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C173.9,98.7,173.6,99.3,173.2,99.6z M172.9,95.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
110 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4c-0.2,0.2-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
111 |
+
C173.1,96.1,173,95.8,172.9,95.6z"/>
|
112 |
+
</g>
|
113 |
+
<g enable-background="new ">
|
114 |
+
<path fill="#565656" d="M44,140.4c0.2,0,0.4,0,0.6,0c0.2,0,0.4,0,0.6,0c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0.1,0.5,0.2
|
115 |
+
c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.7,0.3,1.1c0,0.5-0.1,0.8-0.3,1.2c-0.2,0.3-0.5,0.6-0.9,0.7v0c0.5,0.1,0.9,0.4,1.2,0.7
|
116 |
+
c0.3,0.4,0.4,0.8,0.4,1.3c0,0.3-0.1,0.6-0.2,0.9c-0.1,0.3-0.3,0.6-0.5,0.8c-0.2,0.2-0.5,0.4-0.8,0.6c-0.3,0.1-0.7,0.2-1.1,0.2
|
117 |
+
h-4.1v-8.6H44z M44.4,144.1c0.6,0,1.1-0.1,1.4-0.3c0.3-0.2,0.4-0.6,0.4-1c0-0.3,0-0.5-0.1-0.7c-0.1-0.2-0.2-0.3-0.4-0.4
|
118 |
+
s-0.4-0.2-0.6-0.2c-0.2,0-0.5,0-0.7,0h-2.3v2.7H44.4z M44.9,148c0.5,0,0.9-0.1,1.2-0.4c0.3-0.3,0.4-0.6,0.4-1.1
|
119 |
+
c0-0.3-0.1-0.5-0.2-0.7c-0.1-0.2-0.2-0.3-0.4-0.4c-0.2-0.1-0.4-0.2-0.6-0.2c-0.2,0-0.5-0.1-0.7-0.1h-2.6v3H44.9z"/>
|
120 |
+
<path fill="#565656" d="M49,141.7v-1.2h1v1.2H49z M50.1,142.8v6.2h-1v-6.2H50.1z"/>
|
121 |
+
<path fill="#565656" d="M52.7,140.4v8.6h-1v-8.6H52.7z"/>
|
122 |
+
<path fill="#565656" d="M55.4,140.4v8.6h-1v-8.6H55.4z"/>
|
123 |
+
<path fill="#565656" d="M57,141.7v-1.2h1v1.2H57z M58.1,142.8v6.2h-1v-6.2H58.1z"/>
|
124 |
+
<path fill="#565656" d="M60.6,142.8v1h0c0.4-0.8,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5
|
125 |
+
c0.2,0.2,0.3,0.4,0.4,0.7c0.1,0.3,0.1,0.6,0.1,0.9v4.1h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.3-0.9-0.3
|
126 |
+
c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8v3.5h-1v-6.2H60.6z"/>
|
127 |
+
<path fill="#565656" d="M71,150.8c-0.5,0.5-1.2,0.8-2.2,0.8c-0.3,0-0.6,0-0.9-0.1c-0.3-0.1-0.6-0.2-0.8-0.3
|
128 |
+
c-0.2-0.1-0.4-0.3-0.6-0.6c-0.2-0.2-0.2-0.5-0.3-0.9h1c0,0.2,0.1,0.3,0.2,0.5c0.1,0.1,0.2,0.2,0.4,0.3c0.2,0.1,0.3,0.1,0.5,0.2
|
129 |
+
s0.4,0.1,0.5,0.1c0.3,0,0.6-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5s0.3-0.5,0.3-0.7c0.1-0.3,0.1-0.6,0.1-0.9v-0.4h0
|
130 |
+
c-0.2,0.4-0.4,0.7-0.8,0.8s-0.7,0.3-1.1,0.3c-0.5,0-0.9-0.1-1.2-0.3c-0.3-0.2-0.6-0.4-0.9-0.7s-0.4-0.6-0.5-1
|
131 |
+
c-0.1-0.4-0.2-0.8-0.2-1.2c0-0.4,0-0.7,0.1-1.1c0.1-0.4,0.3-0.7,0.5-1.1c0.2-0.3,0.5-0.6,0.9-0.8c0.4-0.2,0.8-0.3,1.4-0.3
|
132 |
+
c0.4,0,0.8,0.1,1.1,0.3s0.6,0.4,0.8,0.8h0v-0.9h1v5.7C71.7,149.5,71.4,150.2,71,150.8z M69.7,148c0.2-0.1,0.4-0.3,0.6-0.6
|
133 |
+
c0.1-0.2,0.2-0.5,0.3-0.8s0.1-0.6,0.1-0.9c0-0.3,0-0.5-0.1-0.8c-0.1-0.3-0.2-0.5-0.3-0.7s-0.3-0.4-0.5-0.5
|
134 |
+
c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.6,0.5s-0.3,0.4-0.3,0.7c-0.1,0.3-0.1,0.6-0.1,0.9
|
135 |
+
c0,0.3,0,0.6,0.1,0.8c0.1,0.3,0.2,0.5,0.3,0.8c0.1,0.2,0.3,0.4,0.5,0.6c0.2,0.1,0.5,0.2,0.8,0.2S69.4,148.1,69.7,148z"/>
|
136 |
+
<path fill="#565656" d="M80.3,140.4l3.3,8.6h-1.3l-0.9-2.6h-3.6l-1,2.6h-1.2l3.3-8.6H80.3z M81.1,145.5l-1.4-4h0l-1.5,4H81.1z"/>
|
137 |
+
<path fill="#565656" d="M88.8,149v-0.8h0c-0.2,0.3-0.4,0.6-0.8,0.7c-0.4,0.2-0.8,0.2-1.2,0.2c-0.5,0-0.9-0.1-1.3-0.3
|
138 |
+
c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.5-1c-0.1-0.4-0.2-0.8-0.2-1.2c0-0.4,0.1-0.9,0.2-1.2c0.1-0.4,0.3-0.7,0.5-1
|
139 |
+
c0.2-0.3,0.5-0.5,0.9-0.7s0.8-0.3,1.2-0.3c0.2,0,0.3,0,0.5,0s0.4,0.1,0.6,0.2s0.4,0.2,0.5,0.3s0.3,0.3,0.4,0.5h0v-3.2h1v8.6H88.8z
|
140 |
+
M85.2,146.8c0.1,0.3,0.2,0.5,0.3,0.7c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2c0.3,0,0.6-0.1,0.9-0.2
|
141 |
+
c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.5,0.3-0.8c0.1-0.3,0.1-0.6,0.1-0.9c0-0.3,0-0.6-0.1-0.9c-0.1-0.3-0.2-0.5-0.3-0.8
|
142 |
+
c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5c-0.1,0.2-0.2,0.5-0.3,0.8
|
143 |
+
c-0.1,0.3-0.1,0.6-0.1,0.9C85.1,146.2,85.1,146.5,85.2,146.8z"/>
|
144 |
+
<path fill="#565656" d="M96,149v-0.8h0c-0.2,0.3-0.4,0.6-0.8,0.7c-0.4,0.2-0.8,0.2-1.2,0.2c-0.5,0-0.9-0.1-1.3-0.3
|
145 |
+
c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.5-1c-0.1-0.4-0.2-0.8-0.2-1.2c0-0.4,0.1-0.9,0.2-1.2c0.1-0.4,0.3-0.7,0.5-1
|
146 |
+
c0.2-0.3,0.5-0.5,0.9-0.7s0.8-0.3,1.2-0.3c0.2,0,0.3,0,0.5,0s0.4,0.1,0.6,0.2s0.4,0.2,0.5,0.3s0.3,0.3,0.4,0.5h0v-3.2h1v8.6H96z
|
147 |
+
M92.3,146.8c0.1,0.3,0.2,0.5,0.3,0.7c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2c0.3,0,0.6-0.1,0.9-0.2
|
148 |
+
c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.5,0.3-0.8c0.1-0.3,0.1-0.6,0.1-0.9c0-0.3,0-0.6-0.1-0.9c-0.1-0.3-0.2-0.5-0.3-0.8
|
149 |
+
c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5c-0.1,0.2-0.2,0.5-0.3,0.8
|
150 |
+
c-0.1,0.3-0.1,0.6-0.1,0.9C92.2,146.2,92.2,146.5,92.3,146.8z"/>
|
151 |
+
<path fill="#565656" d="M99.5,142.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
152 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1v2.8h-1v-6.2H99.5z"/>
|
153 |
+
<path fill="#565656" d="M106.7,148.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
154 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
155 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
156 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
157 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C107.5,147.7,107.2,148.3,106.7,148.6z M106.5,144.6c-0.1-0.2-0.2-0.4-0.4-0.6
|
158 |
+
c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6
|
159 |
+
s-0.1,0.4-0.2,0.7h3.6C106.6,145.1,106.6,144.8,106.5,144.6z"/>
|
160 |
+
<path fill="#565656" d="M109.6,147.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
161 |
+
s0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3c0.1-0.1,0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
162 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
163 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.6-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
164 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3s-0.3-0.1-0.5-0.2
|
165 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
166 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
167 |
+
s0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9s-0.4,0.4-0.6,0.6
|
168 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
169 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C109.4,147.3,109.5,147.5,109.6,147.6z"/>
|
170 |
+
<path fill="#565656" d="M115.6,147.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
171 |
+
s0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3c0.1-0.1,0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
172 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
173 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.6-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
174 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3s-0.3-0.1-0.5-0.2
|
175 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
176 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
177 |
+
s0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9s-0.4,0.4-0.6,0.6
|
178 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
179 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C115.4,147.3,115.5,147.5,115.6,147.6z"/>
|
180 |
+
</g>
|
181 |
+
<g enable-background="new ">
|
182 |
+
<path fill="#565656" d="M142.1,42.4V50h4.5v1h-5.7v-8.6H142.1z"/>
|
183 |
+
<path fill="#565656" d="M152.9,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
184 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
185 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
186 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
187 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
188 |
+
s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1s0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5c0.1,0.2,0.2,0.5,0.2,0.9
|
189 |
+
v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51z M151.3,47.8c-0.1,0.1-0.3,0.2-0.5,0.2
|
190 |
+
c-0.2,0-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.4-0.2,0.6
|
191 |
+
c0,0.2,0,0.3,0.1,0.4c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
192 |
+
c0.2-0.1,0.4-0.2,0.6-0.3s0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V47.8z"/>
|
193 |
+
<path fill="#565656" d="M154.7,49.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
194 |
+
s0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3c0.1-0.1,0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
195 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
196 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.6-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
197 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3s-0.3-0.1-0.5-0.2
|
198 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
199 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
200 |
+
s0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9s-0.4,0.4-0.6,0.6
|
201 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
202 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C154.5,49.3,154.6,49.5,154.7,49.6z"/>
|
203 |
+
<path fill="#565656" d="M162.5,44.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3c0,0.1,0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0h0.5
|
204 |
+
V51h-0.8c-0.3,0-0.5,0-0.7-0.1c-0.2,0-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1
|
205 |
+
v-1.9h1v1.9H162.5z"/>
|
206 |
+
<path fill="#565656" d="M168.4,42.4l4.5,6.9h0v-6.9h1.1V51h-1.2l-4.5-6.9h0V51h-1.1v-8.6H168.4z"/>
|
207 |
+
<path fill="#565656" d="M181.2,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
208 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
209 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5s0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
210 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
211 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
212 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
213 |
+
s0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51z M179.5,47.8c-0.1,0.1-0.3,0.2-0.5,0.2
|
214 |
+
c-0.2,0-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2s-0.3,0.2-0.4,0.3c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4
|
215 |
+
c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1c0.2-0.1,0.4-0.2,0.6-0.3
|
216 |
+
c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V47.8z"/>
|
217 |
+
<path fill="#565656" d="M183.1,44.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
218 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
219 |
+
c0.1,0.2,0.1,0.5,0.1,0.8V51h-1v-4.1c0-0.2,0-0.4,0-0.5s-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
220 |
+
c-0.5,0-0.9,0.1-1.2,0.4s-0.4,0.7-0.4,1.2V51h-1v-4.1c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4s-0.2-0.2-0.4-0.3
|
221 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4c-0.1,0.2-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5
|
222 |
+
V51h-1v-6.2H183.1z"/>
|
223 |
+
<path fill="#565656" d="M196.7,50.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
224 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.7-0.2,1.2-0.2
|
225 |
+
c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6c0,0.3,0,0.5,0.1,0.8
|
226 |
+
c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3s0.5-0.5,0.5-0.9h1
|
227 |
+
C197.5,49.7,197.2,50.3,196.7,50.6z M196.5,46.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1
|
228 |
+
c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4c-0.2,0.2-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6C196.6,47.1,196.6,46.8,196.5,46.6
|
229 |
+
z"/>
|
230 |
+
</g>
|
231 |
+
<path id="Rectangle_840" fill="#31A651" d="M85,238h95c2.8,0,5,2.2,5,5v17c0,2.8-2.2,5-5,5H85c-2.8,0-5-2.2-5-5v-17
|
232 |
+
C80,240.2,82.2,238,85,238z"/>
|
233 |
+
<g enable-background="new ">
|
234 |
+
<path fill="#FFFFFF" d="M115.4,253.6c0,0.3,0,0.5,0.1,0.7s0.2,0.4,0.4,0.5c0.2,0.1,0.4,0.2,0.6,0.3s0.5,0.1,0.7,0.1
|
235 |
+
c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.1-0.3,0.1-0.4c0-0.3-0.1-0.5-0.2-0.6
|
236 |
+
s-0.3-0.2-0.4-0.3c-0.3-0.1-0.5-0.2-0.9-0.3c-0.3-0.1-0.8-0.2-1.2-0.3c-0.3-0.1-0.6-0.2-0.8-0.3c-0.2-0.1-0.4-0.3-0.5-0.4
|
237 |
+
c-0.1-0.2-0.2-0.3-0.3-0.5s-0.1-0.4-0.1-0.5c0-0.4,0.1-0.7,0.2-0.9c0.1-0.3,0.3-0.5,0.6-0.7c0.2-0.2,0.5-0.3,0.8-0.4
|
238 |
+
c0.3-0.1,0.6-0.1,1-0.1c0.4,0,0.7,0,1.1,0.1s0.6,0.2,0.9,0.4c0.2,0.2,0.4,0.4,0.6,0.7s0.2,0.6,0.2,1h-1.2c0-0.5-0.2-0.8-0.5-1
|
239 |
+
c-0.3-0.2-0.6-0.3-1.1-0.3c-0.1,0-0.3,0-0.5,0s-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.2-0.3,0.3c-0.1,0.1-0.1,0.3-0.1,0.4
|
240 |
+
c0,0.3,0.1,0.5,0.2,0.6c0.2,0.1,0.4,0.3,0.6,0.3c0,0,0.1,0,0.3,0.1c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.1,0.7,0.2
|
241 |
+
s0.4,0.1,0.5,0.1c0.2,0.1,0.4,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.4c0.1,0.2,0.2,0.3,0.3,0.5s0.1,0.4,0.1,0.6c0,0.4-0.1,0.7-0.2,1
|
242 |
+
c-0.2,0.3-0.4,0.5-0.6,0.7c-0.3,0.2-0.6,0.3-0.9,0.4s-0.7,0.1-1,0.1c-0.4,0-0.8,0-1.1-0.2c-0.4-0.1-0.7-0.3-0.9-0.5
|
243 |
+
c-0.3-0.2-0.5-0.5-0.6-0.8c-0.2-0.3-0.2-0.7-0.2-1.1H115.4z"/>
|
244 |
+
<path fill="#FFFFFF" d="M121,248.9h1.2v4.2c0,0.2,0,0.5,0,0.7c0,0.2,0.1,0.5,0.2,0.7c0.1,0.2,0.3,0.4,0.5,0.5
|
245 |
+
c0.2,0.1,0.5,0.2,0.9,0.2c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.5-0.5c0.1-0.2,0.2-0.4,0.2-0.7c0-0.2,0-0.5,0-0.7v-4.2h1.2v4.6
|
246 |
+
c0,0.5-0.1,0.9-0.2,1.2c-0.1,0.3-0.3,0.6-0.6,0.9c-0.3,0.2-0.6,0.4-0.9,0.5c-0.4,0.1-0.8,0.2-1.2,0.2c-0.4,0-0.8-0.1-1.2-0.2
|
247 |
+
s-0.7-0.3-0.9-0.5c-0.3-0.2-0.5-0.5-0.6-0.9c-0.1-0.3-0.2-0.7-0.2-1.2V248.9z"/>
|
248 |
+
<path fill="#FFFFFF" d="M128.3,248.9h3.5c0.6,0,1.2,0.1,1.5,0.4c0.4,0.3,0.6,0.7,0.6,1.3c0,0.4-0.1,0.7-0.3,0.9
|
249 |
+
c-0.2,0.3-0.4,0.5-0.8,0.6v0c0.4,0.1,0.8,0.3,1,0.6s0.3,0.7,0.3,1.2c0,0.3,0,0.5-0.1,0.8c-0.1,0.2-0.3,0.5-0.5,0.6
|
250 |
+
c-0.2,0.2-0.5,0.3-0.8,0.4c-0.3,0.1-0.7,0.2-1.2,0.2h-3.3V248.9z M129.5,251.8h2c0.3,0,0.6-0.1,0.8-0.3c0.2-0.2,0.3-0.4,0.3-0.7
|
251 |
+
c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.1-0.4-0.2-0.8-0.2h-2V251.8z M129.5,255h2.2c0.4,0,0.7-0.1,0.9-0.3c0.2-0.2,0.3-0.5,0.3-0.8
|
252 |
+
c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.2-0.5-0.3-0.9-0.3h-2.2V255z"/>
|
253 |
+
<path fill="#FFFFFF" d="M135.3,248.9h1.8l2,5.6h0l1.9-5.6h1.7v7.1h-1.2v-5.5h0l-2,5.5h-1l-2-5.5h0v5.5h-1.2V248.9z"/>
|
254 |
+
<path fill="#FFFFFF" d="M144.2,248.9h1.2v7.1h-1.2V248.9z"/>
|
255 |
+
<path fill="#FFFFFF" d="M146.3,248.9h5.8v1.1h-2.3v6.1h-1.2v-6.1h-2.3V248.9z"/>
|
256 |
+
</g>
|
257 |
+
</g>
|
258 |
+
</svg>
|
templates/14/preview-thumb.svg
ADDED
@@ -0,0 +1,320 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 265 300" enable-background="new 0 0 265 300" xml:space="preserve">
|
5 |
+
<g>
|
6 |
+
<path id="Rectangle_842" fill="#FFFFFF" d="M5,0h255c2.8,0,5,2.2,5,5v290c0,2.8-2.2,5-5,5H5c-2.8,0-5-2.2-5-5V5C0,2.2,2.2,0,5,0z"
|
7 |
+
/>
|
8 |
+
<path id="Rectangle_843" fill="#E5E9EA" d="M42.5,59h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
9 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,60.1,41.1,59,42.5,59z"/>
|
10 |
+
<path id="Rectangle_844" fill="#E5E9EA" d="M42.5,108h180c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-180
|
11 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,109.1,41.1,108,42.5,108z"/>
|
12 |
+
<path id="Rectangle_846" fill="#E5E9EA" d="M142.5,59h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
13 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C140,60.1,141.1,59,142.5,59z"/>
|
14 |
+
<g enable-background="new ">
|
15 |
+
<path fill="#565656" d="M46.6,42.4v1h-4.5v2.7H46v1h-3.9V51h-1.1v-8.6H46.6z"/>
|
16 |
+
<path fill="#565656" d="M47.7,43.7v-1.2h1v1.2H47.7z M48.7,44.8V51h-1v-6.2H48.7z"/>
|
17 |
+
<path fill="#565656" d="M51.2,44.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
18 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1V51h-1v-6.2H51.2z"/>
|
19 |
+
<path fill="#565656" d="M55.1,49.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
20 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
21 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
22 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
23 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
24 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
25 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
26 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
27 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
28 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C54.9,49.3,55,49.5,55.1,49.6z"/>
|
29 |
+
<path fill="#565656" d="M63,44.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0H63V51h-0.8
|
30 |
+
c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9H63z"/>
|
31 |
+
<path fill="#565656" d="M68.8,42.4l4.5,6.9h0v-6.9h1.1V51h-1.2l-4.5-6.9h0V51h-1.1v-8.6H68.8z"/>
|
32 |
+
<path fill="#565656" d="M81.6,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
33 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
34 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
35 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
36 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2S77,46.3,77,46.7h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
37 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
38 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51z M79.9,47.8
|
39 |
+
c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
40 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
41 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V47.8z"/>
|
42 |
+
<path fill="#565656" d="M83.5,44.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
43 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
44 |
+
c0.1,0.2,0.1,0.5,0.1,0.8V51h-1v-4.1c0-0.2,0-0.4,0-0.5S90.1,46.1,90,46c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
45 |
+
c-0.5,0-0.9,0.1-1.2,0.4s-0.4,0.7-0.4,1.2V51h-1v-4.1c0-0.2,0-0.4-0.1-0.6c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3
|
46 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4s-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5V51h-1
|
47 |
+
v-6.2H83.5z"/>
|
48 |
+
<path fill="#565656" d="M97.2,50.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
49 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
50 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
51 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
52 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C97.9,49.7,97.6,50.3,97.2,50.6z M96.9,46.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
53 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
54 |
+
C97.1,47.1,97,46.8,96.9,46.6z"/>
|
55 |
+
</g>
|
56 |
+
<g enable-background="new ">
|
57 |
+
<path fill="#565656" d="M46.9,91.4v1h-4.8v2.7h4.5v1h-4.5v3h4.8v1h-6v-8.6H46.9z"/>
|
58 |
+
<path fill="#565656" d="M49.1,93.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
59 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
60 |
+
c0.1,0.2,0.1,0.5,0.1,0.8v4.5h-1v-4.1c0-0.2,0-0.4,0-0.5s-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
61 |
+
c-0.5,0-0.9,0.1-1.2,0.4S53,95.7,53,96.1v3.9h-1v-4.1c0-0.2,0-0.4-0.1-0.6c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3
|
62 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4s-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5v3.9h-1
|
63 |
+
v-6.2H49.1z"/>
|
64 |
+
<path fill="#565656" d="M63.8,100c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
65 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
66 |
+
C58.1,99,58,98.7,58,98.4c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
67 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
68 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
69 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
70 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V100z M62.2,96.8
|
71 |
+
C62,96.9,61.9,97,61.7,97s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
72 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
73 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V96.8z"/>
|
74 |
+
<path fill="#565656" d="M64.8,92.7v-1.2h1v1.2H64.8z M65.9,93.8v6.2h-1v-6.2H65.9z"/>
|
75 |
+
<path fill="#565656" d="M68.5,91.4v8.6h-1v-8.6H68.5z"/>
|
76 |
+
</g>
|
77 |
+
<g enable-background="new ">
|
78 |
+
<path fill="#565656" d="M42.1,140.4v3.7h4.5v-3.7h1.1v8.6h-1.1v-3.9h-4.5v3.9h-1.1v-8.6H42.1z"/>
|
79 |
+
<path fill="#565656" d="M49.3,144.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7s0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
80 |
+
s0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
81 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1
|
82 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S49.2,145,49.3,144.6z M50.3,146.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
83 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.3,0,0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7s0.1-0.6,0.1-1s0-0.7-0.1-1
|
84 |
+
s-0.2-0.5-0.4-0.7c-0.2-0.2-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
85 |
+
c-0.2,0.2-0.3,0.4-0.4,0.7c-0.1,0.3-0.1,0.6-0.1,1S50.2,146.6,50.3,146.9z"/>
|
86 |
+
<path fill="#565656" d="M61.4,149l-1.3-4.9h0l-1.2,4.9h-1.1l-2-6.2h1.1l1.4,5.1h0l1.2-5.1h1.1l1.3,5.1h0l1.4-5.1h1.1l-2,6.2H61.4z
|
87 |
+
"/>
|
88 |
+
<path fill="#565656" d="M73.8,149l-1.3-4.9h0l-1.2,4.9h-1.1l-2-6.2h1.1l1.4,5.1h0l1.2-5.1h1.1l1.3,5.1h0l1.4-5.1h1.1l-2,6.2H73.8z
|
89 |
+
"/>
|
90 |
+
<path fill="#565656" d="M77.7,144.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7s0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
91 |
+
s0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
92 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1
|
93 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S77.6,145,77.7,144.6z M78.7,146.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
94 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.3,0,0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7s0.1-0.6,0.1-1s0-0.7-0.1-1
|
95 |
+
s-0.2-0.5-0.4-0.7c-0.2-0.2-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
96 |
+
c-0.2,0.2-0.3,0.4-0.4,0.7c-0.1,0.3-0.1,0.6-0.1,1S78.6,146.6,78.7,146.9z"/>
|
97 |
+
<path fill="#565656" d="M88.9,149v-1h0c-0.2,0.4-0.5,0.7-0.8,0.8c-0.3,0.2-0.7,0.3-1.2,0.3c-0.4,0-0.7-0.1-1-0.2
|
98 |
+
c-0.3-0.1-0.5-0.3-0.7-0.5c-0.2-0.2-0.3-0.4-0.4-0.7c-0.1-0.3-0.1-0.6-0.1-0.9v-4.1h1v4.2c0,0.4,0.1,0.7,0.3,0.9
|
99 |
+
c0.2,0.2,0.5,0.3,0.9,0.3c0.3,0,0.6,0,0.8-0.1c0.2-0.1,0.4-0.2,0.6-0.4c0.2-0.2,0.3-0.4,0.3-0.6c0.1-0.2,0.1-0.5,0.1-0.8v-3.5h1
|
100 |
+
v6.2H88.9z"/>
|
101 |
+
<path fill="#565656" d="M92.5,140.4v8.6h-1v-8.6H92.5z"/>
|
102 |
+
<path fill="#565656" d="M98.6,149v-0.8h0c-0.2,0.3-0.4,0.6-0.8,0.7c-0.4,0.2-0.8,0.2-1.2,0.2c-0.5,0-0.9-0.1-1.3-0.3
|
103 |
+
c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.5-1c-0.1-0.4-0.2-0.8-0.2-1.2c0-0.4,0.1-0.9,0.2-1.2c0.1-0.4,0.3-0.7,0.5-1
|
104 |
+
c0.2-0.3,0.5-0.5,0.9-0.7s0.8-0.3,1.2-0.3c0.2,0,0.3,0,0.5,0s0.4,0.1,0.6,0.2s0.4,0.2,0.5,0.3s0.3,0.3,0.4,0.5h0v-3.2h1v8.6H98.6z
|
105 |
+
M94.9,146.8c0.1,0.3,0.2,0.5,0.3,0.7c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2c0.3,0,0.6-0.1,0.9-0.2
|
106 |
+
c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.5,0.3-0.8c0.1-0.3,0.1-0.6,0.1-0.9c0-0.3,0-0.6-0.1-0.9c-0.1-0.3-0.2-0.5-0.3-0.8
|
107 |
+
c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5c-0.1,0.2-0.2,0.5-0.3,0.8
|
108 |
+
c-0.1,0.3-0.1,0.6-0.1,0.9C94.8,146.2,94.9,146.5,94.9,146.8z"/>
|
109 |
+
<path fill="#565656" d="M107,149.8c-0.1,0.3-0.2,0.6-0.4,0.8c-0.1,0.2-0.2,0.4-0.4,0.5c-0.1,0.1-0.3,0.2-0.5,0.3
|
110 |
+
c-0.2,0.1-0.4,0.1-0.6,0.1c-0.1,0-0.2,0-0.4,0s-0.2,0-0.3-0.1v-0.9c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3,0c0.2,0,0.4,0,0.5-0.2
|
111 |
+
c0.1-0.1,0.2-0.2,0.3-0.4l0.4-1l-2.5-6.2h1.2l1.8,5.1h0l1.7-5.1h1.1L107,149.8z"/>
|
112 |
+
<path fill="#565656" d="M110.4,144.6c0.1-0.4,0.3-0.7,0.6-1s0.6-0.5,0.9-0.7c0.4-0.2,0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
113 |
+
s0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
114 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
115 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S110.3,145,110.4,144.6z M111.4,146.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
116 |
+
c0.2,0.1,0.5,0.2,0.8,0.2s0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7c0.1-0.3,0.2-0.6,0.2-1s0-0.7-0.2-1
|
117 |
+
c-0.1-0.3-0.2-0.5-0.4-0.7s-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2s-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
118 |
+
c-0.2,0.2-0.3,0.4-0.4,0.7c-0.1,0.3-0.1,0.6-0.1,1S111.3,146.6,111.4,146.9z"/>
|
119 |
+
<path fill="#565656" d="M121.6,149v-1h0c-0.2,0.4-0.5,0.7-0.8,0.8c-0.3,0.2-0.7,0.3-1.2,0.3c-0.4,0-0.7-0.1-1-0.2
|
120 |
+
c-0.3-0.1-0.5-0.3-0.7-0.5c-0.2-0.2-0.3-0.4-0.4-0.7c-0.1-0.3-0.1-0.6-0.1-0.9v-4.1h1v4.2c0,0.4,0.1,0.7,0.3,0.9
|
121 |
+
c0.2,0.2,0.5,0.3,0.9,0.3c0.3,0,0.6,0,0.8-0.1c0.2-0.1,0.4-0.2,0.6-0.4c0.2-0.2,0.3-0.4,0.3-0.6c0.1-0.2,0.1-0.5,0.1-0.8v-3.5h1
|
122 |
+
v6.2H121.6z"/>
|
123 |
+
<path fill="#565656" d="M128.3,142.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
124 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1v2.8h-1v-6.2H128.3z"/>
|
125 |
+
<path fill="#565656" d="M136.9,149c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
126 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
127 |
+
s-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9s0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2c0.3-0.1,0.5-0.1,0.8-0.1
|
128 |
+
s0.5-0.1,0.7-0.1c0.2-0.1,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
129 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2c-0.3,0.2-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1
|
130 |
+
c0.1-0.3,0.3-0.5,0.6-0.6s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2
|
131 |
+
c0.2,0.1,0.4,0.3,0.5,0.5c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V149z
|
132 |
+
M135.3,145.8c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1c-0.2,0-0.4,0.1-0.6,0.2
|
133 |
+
c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2
|
134 |
+
c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1c0.2-0.1,0.4-0.2,0.6-0.3s0.3-0.3,0.3-0.5c0.1-0.2,0.1-0.3,0.1-0.5V145.8z"/>
|
135 |
+
<path fill="#565656" d="M140.5,142.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2s0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.4,0h0.5v0.9
|
136 |
+
h-0.8c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2s-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9H140.5z"/>
|
137 |
+
<path fill="#565656" d="M146,148.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
138 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.7-0.2,1.2-0.2
|
139 |
+
c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6c0,0.3,0,0.5,0.1,0.8
|
140 |
+
c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3c0.3-0.2,0.5-0.5,0.5-0.9h1
|
141 |
+
C146.8,147.7,146.5,148.3,146,148.6z M145.8,144.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1
|
142 |
+
c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6C145.9,145.1,145.9,144.8,145.8,144.6z"/>
|
143 |
+
<path fill="#565656" d="M153.9,149.8c-0.1,0.3-0.2,0.6-0.4,0.8c-0.1,0.2-0.2,0.4-0.4,0.5c-0.1,0.1-0.3,0.2-0.5,0.3
|
144 |
+
c-0.2,0.1-0.4,0.1-0.6,0.1c-0.1,0-0.2,0-0.4,0s-0.2,0-0.3-0.1v-0.9c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3,0c0.2,0,0.4,0,0.5-0.2
|
145 |
+
c0.1-0.1,0.2-0.2,0.3-0.4l0.4-1l-2.5-6.2h1.2l1.8,5.1h0l1.7-5.1h1.1L153.9,149.8z"/>
|
146 |
+
<path fill="#565656" d="M157.3,144.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.8-0.3,1.3-0.3
|
147 |
+
c0.5,0,0.9,0.1,1.3,0.3s0.7,0.4,0.9,0.7s0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
148 |
+
s-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1
|
149 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S157.1,145,157.3,144.6z M158.3,146.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
150 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.3,0,0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7c0.1-0.3,0.1-0.6,0.1-1
|
151 |
+
s0-0.7-0.1-1c-0.1-0.3-0.2-0.5-0.4-0.7c-0.2-0.2-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.8,0.2
|
152 |
+
c-0.2,0.1-0.4,0.3-0.6,0.5s-0.3,0.4-0.4,0.7s-0.2,0.6-0.2,1S158.2,146.6,158.3,146.9z"/>
|
153 |
+
<path fill="#565656" d="M168.5,149v-1h0c-0.2,0.4-0.5,0.7-0.8,0.8c-0.3,0.2-0.7,0.3-1.2,0.3c-0.4,0-0.7-0.1-1-0.2
|
154 |
+
c-0.3-0.1-0.5-0.3-0.7-0.5c-0.2-0.2-0.3-0.4-0.4-0.7s-0.1-0.6-0.1-0.9v-4.1h1v4.2c0,0.4,0.1,0.7,0.3,0.9c0.2,0.2,0.5,0.3,0.9,0.3
|
155 |
+
c0.3,0,0.6,0,0.8-0.1c0.2-0.1,0.4-0.2,0.6-0.4c0.2-0.2,0.3-0.4,0.3-0.6c0.1-0.2,0.1-0.5,0.1-0.8v-3.5h1v6.2H168.5z"/>
|
156 |
+
<path fill="#565656" d="M171.9,142.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
157 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1v2.8h-1v-6.2H171.9z"/>
|
158 |
+
</g>
|
159 |
+
<g enable-background="new ">
|
160 |
+
<path fill="#565656" d="M46.9,157.4v1h-4.8v2.7h4.5v1h-4.5v3h4.8v1h-6v-8.6H46.9z"/>
|
161 |
+
<path fill="#565656" d="M47.6,159.8h1.3l1.5,2.2l1.5-2.2h1.2l-2.1,2.9l2.4,3.3h-1.3l-1.7-2.6l-1.7,2.6h-1.2l2.3-3.3L47.6,159.8z"
|
162 |
+
/>
|
163 |
+
<path fill="#565656" d="M55.4,159.8v0.8h0c0.2-0.3,0.4-0.6,0.8-0.8c0.4-0.2,0.8-0.2,1.2-0.2c0.5,0,0.9,0.1,1.3,0.3
|
164 |
+
s0.7,0.4,0.9,0.7c0.2,0.3,0.4,0.6,0.5,1c0.1,0.4,0.2,0.8,0.2,1.2c0,0.4-0.1,0.9-0.2,1.2c-0.1,0.4-0.3,0.7-0.5,1s-0.5,0.5-0.9,0.7
|
165 |
+
c-0.4,0.2-0.8,0.3-1.2,0.3c-0.2,0-0.3,0-0.5,0s-0.4-0.1-0.6-0.2c-0.2-0.1-0.4-0.2-0.5-0.3c-0.2-0.1-0.3-0.3-0.4-0.5h0v3.2h-1v-8.6
|
166 |
+
H55.4z M59,162c-0.1-0.3-0.2-0.5-0.3-0.7c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2
|
167 |
+
c-0.2,0.1-0.4,0.3-0.6,0.5c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,0.9c0,0.3,0,0.6,0.1,0.9c0.1,0.3,0.2,0.5,0.3,0.8
|
168 |
+
c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2c0.4,0,0.6-0.1,0.9-0.2s0.4-0.3,0.6-0.5s0.2-0.5,0.3-0.8
|
169 |
+
c0.1-0.3,0.1-0.6,0.1-0.9C59.2,162.6,59.1,162.3,59,162z"/>
|
170 |
+
<path fill="#565656" d="M65.8,165.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
171 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
172 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
173 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
174 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C66.6,164.7,66.3,165.3,65.8,165.6z M65.6,161.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
175 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
176 |
+
C65.7,162.1,65.7,161.8,65.6,161.6z"/>
|
177 |
+
<path fill="#565656" d="M68.8,159.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
178 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1v2.8h-1v-6.2H68.8z"/>
|
179 |
+
<path fill="#565656" d="M71.9,158.7v-1.2h1v1.2H71.9z M73,159.8v6.2h-1v-6.2H73z"/>
|
180 |
+
<path fill="#565656" d="M78.9,165.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
181 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
182 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
183 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
184 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C79.7,164.7,79.4,165.3,78.9,165.6z M78.7,161.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
185 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
186 |
+
C78.8,162.1,78.8,161.8,78.7,161.6z"/>
|
187 |
+
<path fill="#565656" d="M81.9,159.8v1h0c0.4-0.8,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5
|
188 |
+
c0.2,0.2,0.3,0.4,0.4,0.7c0.1,0.3,0.1,0.6,0.1,0.9v4.1h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.3-0.9-0.3
|
189 |
+
c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8v3.5h-1v-6.2H81.9z"/>
|
190 |
+
<path fill="#565656" d="M91.4,160.9c-0.3-0.2-0.6-0.3-1-0.3c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
191 |
+
c-0.1,0.2-0.3,0.5-0.3,0.8s-0.1,0.6-0.1,0.9c0,0.3,0,0.6,0.1,0.8c0.1,0.3,0.2,0.5,0.3,0.7s0.3,0.4,0.6,0.5
|
192 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.5,0,0.9-0.1,1.2-0.4c0.3-0.3,0.5-0.6,0.5-1.1h1c-0.1,0.8-0.4,1.4-0.9,1.8s-1.1,0.6-1.9,0.6
|
193 |
+
c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.6s-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3
|
194 |
+
c0.1-0.4,0.3-0.8,0.5-1.1c0.2-0.3,0.5-0.5,0.9-0.7c0.4-0.2,0.8-0.3,1.3-0.3c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.4
|
195 |
+
s0.4,0.4,0.6,0.7c0.2,0.3,0.2,0.6,0.3,1h-1.1C91.8,161.4,91.6,161.1,91.4,160.9z"/>
|
196 |
+
<path fill="#565656" d="M98.5,165.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
197 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
198 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
199 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
200 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C99.3,164.7,99,165.3,98.5,165.6z M98.2,161.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
201 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
202 |
+
C98.4,162.1,98.3,161.8,98.2,161.6z"/>
|
203 |
+
<path fill="#565656" d="M100.6,159c0.1-0.4,0.3-0.7,0.5-0.9c0.2-0.3,0.5-0.5,0.9-0.6c0.3-0.1,0.7-0.2,1.1-0.2c0.4,0,0.7,0.1,1,0.2
|
204 |
+
c0.3,0.1,0.6,0.3,0.8,0.5c0.2,0.2,0.4,0.5,0.5,0.8s0.2,0.6,0.2,1c0,0.2,0,0.5-0.1,0.7s-0.1,0.4-0.2,0.5c-0.1,0.2-0.2,0.3-0.3,0.4
|
205 |
+
c-0.1,0.1-0.2,0.3-0.4,0.4c-0.1,0.1-0.3,0.2-0.4,0.4c-0.1,0.1-0.2,0.3-0.3,0.4c-0.1,0.1-0.2,0.3-0.2,0.5s-0.1,0.4-0.1,0.6v0.5h-1
|
206 |
+
v-0.6c0-0.3,0.1-0.6,0.2-0.9c0.1-0.2,0.2-0.4,0.4-0.6c0.2-0.2,0.3-0.4,0.5-0.5c0.2-0.2,0.3-0.3,0.5-0.5s0.3-0.4,0.4-0.6
|
207 |
+
s0.1-0.5,0.1-0.8c0-0.4-0.2-0.8-0.4-1s-0.6-0.4-1-0.4c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.4,0.2-0.5,0.4c-0.1,0.2-0.2,0.4-0.3,0.6
|
208 |
+
s-0.1,0.5-0.1,0.8h-1C100.4,159.7,100.5,159.3,100.6,159z M103.7,164.7v1.3h-1.3v-1.3H103.7z"/>
|
209 |
+
</g>
|
210 |
+
<g enable-background="new ">
|
211 |
+
<path fill="#565656" d="M142.1,42.4V50h4.5v1h-5.7v-8.6H142.1z"/>
|
212 |
+
<path fill="#565656" d="M152.9,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
213 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
214 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
215 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
216 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
217 |
+
s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1s0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5c0.1,0.2,0.2,0.5,0.2,0.9
|
218 |
+
v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51z M151.3,47.8c-0.1,0.1-0.3,0.2-0.5,0.2
|
219 |
+
c-0.2,0-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.4-0.2,0.6
|
220 |
+
c0,0.2,0,0.3,0.1,0.4c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
221 |
+
c0.2-0.1,0.4-0.2,0.6-0.3s0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V47.8z"/>
|
222 |
+
<path fill="#565656" d="M154.7,49.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
223 |
+
s0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3c0.1-0.1,0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
224 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
225 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.6-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
226 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3s-0.3-0.1-0.5-0.2
|
227 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
228 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
229 |
+
s0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9s-0.4,0.4-0.6,0.6
|
230 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
231 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C154.5,49.3,154.6,49.5,154.7,49.6z"/>
|
232 |
+
<path fill="#565656" d="M162.5,44.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3c0,0.1,0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0h0.5
|
233 |
+
V51h-0.8c-0.3,0-0.5,0-0.7-0.1c-0.2,0-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1
|
234 |
+
v-1.9h1v1.9H162.5z"/>
|
235 |
+
<path fill="#565656" d="M168.4,42.4l4.5,6.9h0v-6.9h1.1V51h-1.2l-4.5-6.9h0V51h-1.1v-8.6H168.4z"/>
|
236 |
+
<path fill="#565656" d="M181.2,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
237 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
238 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5s0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
239 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
240 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
241 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
242 |
+
s0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51z M179.5,47.8c-0.1,0.1-0.3,0.2-0.5,0.2
|
243 |
+
c-0.2,0-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2s-0.3,0.2-0.4,0.3c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4
|
244 |
+
c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1c0.2-0.1,0.4-0.2,0.6-0.3
|
245 |
+
c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V47.8z"/>
|
246 |
+
<path fill="#565656" d="M183.1,44.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
247 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
248 |
+
c0.1,0.2,0.1,0.5,0.1,0.8V51h-1v-4.1c0-0.2,0-0.4,0-0.5s-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
249 |
+
c-0.5,0-0.9,0.1-1.2,0.4s-0.4,0.7-0.4,1.2V51h-1v-4.1c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4s-0.2-0.2-0.4-0.3
|
250 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4c-0.1,0.2-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5
|
251 |
+
V51h-1v-6.2H183.1z"/>
|
252 |
+
<path fill="#565656" d="M196.7,50.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
253 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.7-0.2,1.2-0.2
|
254 |
+
c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6c0,0.3,0,0.5,0.1,0.8
|
255 |
+
c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3s0.5-0.5,0.5-0.9h1
|
256 |
+
C197.5,49.7,197.2,50.3,196.7,50.6z M196.5,46.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1
|
257 |
+
c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4c-0.2,0.2-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6C196.6,47.1,196.6,46.8,196.5,46.6
|
258 |
+
z"/>
|
259 |
+
</g>
|
260 |
+
<path id="Rectangle_851" fill="#FEC42D" d="M85,238h95c2.8,0,5,2.2,5,5v17c0,2.8-2.2,5-5,5H85c-2.8,0-5-2.2-5-5v-17
|
261 |
+
C80,240.2,82.2,238,85,238z"/>
|
262 |
+
<g enable-background="new ">
|
263 |
+
<path fill="#FFFFFF" d="M115.4,253.6c0,0.3,0,0.5,0.1,0.7s0.2,0.4,0.4,0.5c0.2,0.1,0.4,0.2,0.6,0.3s0.5,0.1,0.7,0.1
|
264 |
+
c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.1-0.3,0.1-0.4c0-0.3-0.1-0.5-0.2-0.6
|
265 |
+
s-0.3-0.2-0.4-0.3c-0.3-0.1-0.5-0.2-0.9-0.3c-0.3-0.1-0.8-0.2-1.2-0.3c-0.3-0.1-0.6-0.2-0.8-0.3c-0.2-0.1-0.4-0.3-0.5-0.4
|
266 |
+
c-0.1-0.2-0.2-0.3-0.3-0.5s-0.1-0.4-0.1-0.5c0-0.4,0.1-0.7,0.2-0.9c0.1-0.3,0.3-0.5,0.6-0.7c0.2-0.2,0.5-0.3,0.8-0.4
|
267 |
+
c0.3-0.1,0.6-0.1,1-0.1c0.4,0,0.7,0,1.1,0.1s0.6,0.2,0.9,0.4c0.2,0.2,0.4,0.4,0.6,0.7s0.2,0.6,0.2,1h-1.2c0-0.5-0.2-0.8-0.5-1
|
268 |
+
c-0.3-0.2-0.6-0.3-1.1-0.3c-0.1,0-0.3,0-0.5,0s-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.2-0.3,0.3c-0.1,0.1-0.1,0.3-0.1,0.4
|
269 |
+
c0,0.3,0.1,0.5,0.2,0.6c0.2,0.1,0.4,0.3,0.6,0.3c0,0,0.1,0,0.3,0.1c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.1,0.7,0.2
|
270 |
+
s0.4,0.1,0.5,0.1c0.2,0.1,0.4,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.4c0.1,0.2,0.2,0.3,0.3,0.5s0.1,0.4,0.1,0.6c0,0.4-0.1,0.7-0.2,1
|
271 |
+
c-0.2,0.3-0.4,0.5-0.6,0.7c-0.3,0.2-0.6,0.3-0.9,0.4s-0.7,0.1-1,0.1c-0.4,0-0.8,0-1.1-0.2c-0.4-0.1-0.7-0.3-0.9-0.5
|
272 |
+
c-0.3-0.2-0.5-0.5-0.6-0.8c-0.2-0.3-0.2-0.7-0.2-1.1H115.4z"/>
|
273 |
+
<path fill="#FFFFFF" d="M121,248.9h1.2v4.2c0,0.2,0,0.5,0,0.7c0,0.2,0.1,0.5,0.2,0.7c0.1,0.2,0.3,0.4,0.5,0.5
|
274 |
+
c0.2,0.1,0.5,0.2,0.9,0.2c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.5-0.5c0.1-0.2,0.2-0.4,0.2-0.7c0-0.2,0-0.5,0-0.7v-4.2h1.2v4.6
|
275 |
+
c0,0.5-0.1,0.9-0.2,1.2c-0.1,0.3-0.3,0.6-0.6,0.9c-0.3,0.2-0.6,0.4-0.9,0.5c-0.4,0.1-0.8,0.2-1.2,0.2c-0.4,0-0.8-0.1-1.2-0.2
|
276 |
+
s-0.7-0.3-0.9-0.5c-0.3-0.2-0.5-0.5-0.6-0.9c-0.1-0.3-0.2-0.7-0.2-1.2V248.9z"/>
|
277 |
+
<path fill="#FFFFFF" d="M128.3,248.9h3.5c0.6,0,1.2,0.1,1.5,0.4c0.4,0.3,0.6,0.7,0.6,1.3c0,0.4-0.1,0.7-0.3,0.9
|
278 |
+
c-0.2,0.3-0.4,0.5-0.8,0.6v0c0.4,0.1,0.8,0.3,1,0.6s0.3,0.7,0.3,1.2c0,0.3,0,0.5-0.1,0.8c-0.1,0.2-0.3,0.5-0.5,0.6
|
279 |
+
c-0.2,0.2-0.5,0.3-0.8,0.4c-0.3,0.1-0.7,0.2-1.2,0.2h-3.3V248.9z M129.5,251.8h2c0.3,0,0.6-0.1,0.8-0.3c0.2-0.2,0.3-0.4,0.3-0.7
|
280 |
+
c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.1-0.4-0.2-0.8-0.2h-2V251.8z M129.5,255h2.2c0.4,0,0.7-0.1,0.9-0.3c0.2-0.2,0.3-0.5,0.3-0.8
|
281 |
+
c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.2-0.5-0.3-0.9-0.3h-2.2V255z"/>
|
282 |
+
<path fill="#FFFFFF" d="M135.3,248.9h1.8l2,5.6h0l1.9-5.6h1.7v7.1h-1.2v-5.5h0l-2,5.5h-1l-2-5.5h0v5.5h-1.2V248.9z"/>
|
283 |
+
<path fill="#FFFFFF" d="M144.2,248.9h1.2v7.1h-1.2V248.9z"/>
|
284 |
+
<path fill="#FFFFFF" d="M146.3,248.9h5.8v1.1h-2.3v6.1h-1.2v-6.1h-2.3V248.9z"/>
|
285 |
+
</g>
|
286 |
+
<g enable-background="new ">
|
287 |
+
<path fill="#FEC42D" d="M55,187c0,0.1,0,0.1-0.1,0.2s-0.1,0.1-0.2,0.2l-3.3,3.2l0.8,4.5c0,0,0,0,0,0.1s0,0.1,0,0.1
|
288 |
+
c0,0.1,0,0.1,0,0.2c0,0.1,0,0.1-0.1,0.1c0,0-0.1,0.1-0.1,0.1s-0.1,0-0.2,0s-0.1,0-0.2,0s-0.1,0-0.2-0.1l-4-2.1l-4,2.1
|
289 |
+
c-0.1,0-0.1,0.1-0.2,0.1s-0.1,0-0.2,0s-0.1,0-0.2,0s-0.1-0.1-0.1-0.1c0,0-0.1-0.1-0.1-0.1c0-0.1,0-0.1,0-0.2c0,0,0,0,0-0.1
|
290 |
+
s0-0.1,0-0.1l0.8-4.5l-3.3-3.2c-0.1-0.1-0.1-0.2-0.2-0.2c0-0.1-0.1-0.1-0.1-0.2c0-0.1,0-0.2,0.1-0.3c0.1-0.1,0.2-0.1,0.4-0.1
|
291 |
+
l4.5-0.7l2-4.1c0.1-0.1,0.1-0.2,0.2-0.3s0.2-0.1,0.2-0.1s0.2,0,0.2,0.1s0.1,0.2,0.2,0.3l2,4.1l4.5,0.7c0.2,0,0.3,0.1,0.4,0.1
|
292 |
+
C55,186.8,55,186.9,55,187z"/>
|
293 |
+
<path fill="#FEC42D" d="M77.5,186.9l-3.4,3.8l0.5,5.1l-4.6-2.1l-4.6,2.1l0.5-5.1l-3.4-3.8l5-1.1l2.5-4.4l2.5,4.4L77.5,186.9z
|
294 |
+
M70,192.7l3.5,1.6l-0.4-3.8l2.6-2.9l-3.8-0.8l-1.9-3.4V192.7z"/>
|
295 |
+
<path fill="#FEC42D" d="M100,186.9c0,0.1,0,0.2,0,0.2s-0.1,0.1-0.1,0.2l-3.4,3.3l0.8,4.6c0,0,0,0,0,0s0,0,0,0c0,0.1,0,0.2-0.1,0.3
|
296 |
+
s-0.2,0.1-0.3,0.1c0,0-0.1,0-0.1,0s-0.1,0-0.1,0l-4.2-2.2l-4.2,2.2c0,0-0.1,0-0.1,0s-0.1,0-0.1,0c0,0-0.1,0-0.1,0
|
297 |
+
c0,0-0.1,0-0.1-0.1c-0.1,0-0.1-0.1-0.1-0.2c0-0.1,0-0.1,0-0.2l0.8-4.7l-3.4-3.3c-0.1-0.1-0.1-0.1-0.1-0.2s0-0.2,0-0.2
|
298 |
+
c0-0.1,0.1-0.1,0.1-0.2s0.1-0.1,0.2-0.1l4.7-0.7l2.1-4.2c0-0.1,0.1-0.1,0.1-0.2c0.1,0,0.1-0.1,0.2-0.1s0.2,0,0.2,0.1
|
299 |
+
s0.1,0.1,0.1,0.2l2.1,4.2l4.7,0.7c0.1,0,0.1,0,0.2,0.1S100,186.8,100,186.9z M95.8,190.2l2.9-2.9l-4.1-0.6c-0.1,0-0.1,0-0.2-0.1
|
300 |
+
s-0.1-0.1-0.1-0.2l-1.8-3.7l-1.8,3.7c0,0.1-0.1,0.1-0.1,0.1s-0.1,0.1-0.2,0.1l-4.1,0.6l2.9,2.9c0,0,0.1,0.1,0.1,0.2
|
301 |
+
c0,0.1,0,0.1,0,0.2l-0.7,4l3.6-1.9c0.1,0,0.1,0,0.2,0s0.1,0,0.2,0l3.6,1.9l-0.7-4c0-0.1,0-0.1,0-0.2S95.7,190.2,95.8,190.2z"/>
|
302 |
+
<path fill="#FEC42D" d="M122.5,186.9c0,0.1,0,0.2,0,0.2s-0.1,0.1-0.1,0.2l-3.4,3.3l0.8,4.6c0,0,0,0,0,0c0,0,0,0,0,0
|
303 |
+
c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1c0,0-0.1,0-0.1,0s-0.1,0-0.1,0l-4.2-2.2l-4.2,2.2c0,0-0.1,0-0.1,0c0,0-0.1,0-0.1,0
|
304 |
+
c0,0-0.1,0-0.1,0c0,0-0.1,0-0.1-0.1c-0.1,0-0.1-0.1-0.1-0.2c0-0.1,0-0.1,0-0.2l0.8-4.7l-3.4-3.3c-0.1-0.1-0.1-0.1-0.1-0.2
|
305 |
+
s0-0.2,0-0.2c0-0.1,0.1-0.1,0.1-0.2s0.1-0.1,0.2-0.1l4.7-0.7l2.1-4.2c0-0.1,0.1-0.1,0.1-0.2c0.1,0,0.1-0.1,0.2-0.1s0.2,0,0.2,0.1
|
306 |
+
s0.1,0.1,0.1,0.2l2.1,4.2l4.7,0.7c0.1,0,0.1,0,0.2,0.1S122.5,186.8,122.5,186.9z M118.3,190.2l2.9-2.9l-4.1-0.6
|
307 |
+
c-0.1,0-0.1,0-0.2-0.1s-0.1-0.1-0.1-0.2l-1.8-3.7l-1.8,3.7c0,0.1-0.1,0.1-0.1,0.1c-0.1,0-0.1,0.1-0.2,0.1l-4.1,0.6l2.9,2.9
|
308 |
+
c0,0,0.1,0.1,0.1,0.2c0,0.1,0,0.1,0,0.2l-0.7,4l3.6-1.9c0.1,0,0.1,0,0.2,0s0.1,0,0.2,0l3.6,1.9l-0.7-4c0-0.1,0-0.1,0-0.2
|
309 |
+
C118.2,190.3,118.2,190.2,118.3,190.2z"/>
|
310 |
+
<path fill="#FEC42D" d="M145,186.9c0,0.1,0,0.2,0,0.2s-0.1,0.1-0.1,0.2l-3.4,3.3l0.8,4.6c0,0,0,0,0,0c0,0,0,0,0,0
|
311 |
+
c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1c0,0-0.1,0-0.1,0s-0.1,0-0.1,0l-4.2-2.2l-4.2,2.2c0,0-0.1,0-0.1,0c0,0-0.1,0-0.1,0
|
312 |
+
c0,0-0.1,0-0.1,0c0,0-0.1,0-0.1-0.1c-0.1,0-0.1-0.1-0.1-0.2c0-0.1,0-0.1,0-0.2l0.8-4.7l-3.4-3.3c-0.1-0.1-0.1-0.1-0.1-0.2
|
313 |
+
s0-0.2,0-0.2c0-0.1,0.1-0.1,0.1-0.2s0.1-0.1,0.2-0.1l4.7-0.7l2.1-4.2c0-0.1,0.1-0.1,0.1-0.2c0.1,0,0.1-0.1,0.2-0.1s0.2,0,0.2,0.1
|
314 |
+
s0.1,0.1,0.1,0.2l2.1,4.2l4.7,0.7c0.1,0,0.1,0,0.2,0.1S145,186.8,145,186.9z M140.8,190.2l2.9-2.9l-4.1-0.6c-0.1,0-0.1,0-0.2-0.1
|
315 |
+
s-0.1-0.1-0.1-0.2l-1.8-3.7l-1.8,3.7c0,0.1-0.1,0.1-0.1,0.1c-0.1,0-0.1,0.1-0.2,0.1l-4.1,0.6l2.9,2.9c0,0,0.1,0.1,0.1,0.2
|
316 |
+
c0,0.1,0,0.1,0,0.2l-0.7,4l3.6-1.9c0.1,0,0.1,0,0.2,0s0.1,0,0.2,0l3.6,1.9l-0.7-4c0-0.1,0-0.1,0-0.2
|
317 |
+
C140.7,190.3,140.7,190.2,140.8,190.2z"/>
|
318 |
+
</g>
|
319 |
+
</g>
|
320 |
+
</svg>
|
templates/15/preview-thumb.svg
ADDED
@@ -0,0 +1,265 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 265 300" enable-background="new 0 0 265 300" xml:space="preserve">
|
5 |
+
<g>
|
6 |
+
<path id="Rectangle_852" fill="#FFFFFF" d="M5,0h255c2.8,0,5,2.2,5,5v290c0,2.8-2.2,5-5,5H5c-2.8,0-5-2.2-5-5V5C0,2.2,2.2,0,5,0z"
|
7 |
+
/>
|
8 |
+
<path id="Rectangle_853" fill="#E5E9EA" d="M42.5,59h180c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-180
|
9 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,60.1,41.1,59,42.5,59z"/>
|
10 |
+
<path id="Rectangle_854" fill="#E5E9EA" d="M42.5,108h180c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-180
|
11 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,109.1,41.1,108,42.5,108z"/>
|
12 |
+
<path id="Rectangle_860" fill="#E5E9EA" d="M42.5,157h180c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-180
|
13 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,158.1,41.1,157,42.5,157z"/>
|
14 |
+
<path id="Rectangle_861" fill="#E5E9EA" d="M42.5,206h150c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-150
|
15 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,207.1,41.1,206,42.5,206z"/>
|
16 |
+
<path id="Rectangle_862" fill="#E5E9EA" d="M207.5,206h15c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-15
|
17 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C205,207.1,206.1,206,207.5,206z"/>
|
18 |
+
<g enable-background="new ">
|
19 |
+
<path fill="#565656" d="M46.6,42.4v1h-4.5v2.7H46v1h-3.9V51h-1.1v-8.6H46.6z"/>
|
20 |
+
<path fill="#565656" d="M51.8,51v-1h0c-0.2,0.4-0.5,0.7-0.8,0.8c-0.3,0.2-0.7,0.3-1.2,0.3c-0.4,0-0.7-0.1-1-0.2
|
21 |
+
c-0.3-0.1-0.5-0.3-0.7-0.5c-0.2-0.2-0.3-0.4-0.4-0.7c-0.1-0.3-0.1-0.6-0.1-0.9v-4.1h1V49c0,0.4,0.1,0.7,0.3,0.9
|
22 |
+
c0.2,0.2,0.5,0.3,0.9,0.3c0.3,0,0.6,0,0.8-0.1c0.2-0.1,0.4-0.2,0.6-0.4c0.2-0.2,0.3-0.4,0.3-0.6c0.1-0.2,0.1-0.5,0.1-0.8v-3.5h1
|
23 |
+
V51H51.8z"/>
|
24 |
+
<path fill="#565656" d="M55.4,42.4V51h-1v-8.6H55.4z"/>
|
25 |
+
<path fill="#565656" d="M58.1,42.4V51h-1v-8.6H58.1z"/>
|
26 |
+
<path fill="#565656" d="M64.4,42.4l4.5,6.9h0v-6.9H70V51h-1.2l-4.5-6.9h0V51h-1.1v-8.6H64.4z"/>
|
27 |
+
<path fill="#565656" d="M77.2,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
28 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
29 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
30 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
31 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
32 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
33 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51z M75.5,47.8
|
34 |
+
C75.4,47.9,75.2,48,75,48s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
35 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
36 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V47.8z"/>
|
37 |
+
<path fill="#565656" d="M79.1,44.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
38 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
39 |
+
c0.1,0.2,0.1,0.5,0.1,0.8V51h-1v-4.1c0-0.2,0-0.4,0-0.5s-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
40 |
+
c-0.5,0-0.9,0.1-1.2,0.4S83,46.7,83,47.1V51h-1v-4.1c0-0.2,0-0.4-0.1-0.6c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3
|
41 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4s-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5V51h-1
|
42 |
+
v-6.2H79.1z"/>
|
43 |
+
<path fill="#565656" d="M92.7,50.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
44 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
45 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
46 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
47 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C93.5,49.7,93.2,50.3,92.7,50.6z M92.5,46.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
48 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
49 |
+
C92.6,47.1,92.6,46.8,92.5,46.6z"/>
|
50 |
+
</g>
|
51 |
+
<g enable-background="new ">
|
52 |
+
<path fill="#565656" d="M46.9,91.4v1h-4.8v2.7h4.5v1h-4.5v3h4.8v1h-6v-8.6H46.9z"/>
|
53 |
+
<path fill="#565656" d="M49.1,93.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
54 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
55 |
+
c0.1,0.2,0.1,0.5,0.1,0.8v4.5h-1v-4.1c0-0.2,0-0.4,0-0.5s-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
56 |
+
c-0.5,0-0.9,0.1-1.2,0.4S53,95.7,53,96.1v3.9h-1v-4.1c0-0.2,0-0.4-0.1-0.6c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3
|
57 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4s-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5v3.9h-1
|
58 |
+
v-6.2H49.1z"/>
|
59 |
+
<path fill="#565656" d="M63.8,100c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
60 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
61 |
+
C58.1,99,58,98.7,58,98.4c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
62 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
63 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
64 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
65 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V100z M62.2,96.8
|
66 |
+
C62,96.9,61.9,97,61.7,97s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
67 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
68 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V96.8z"/>
|
69 |
+
<path fill="#565656" d="M64.8,92.7v-1.2h1v1.2H64.8z M65.9,93.8v6.2h-1v-6.2H65.9z"/>
|
70 |
+
<path fill="#565656" d="M68.5,91.4v8.6h-1v-8.6H68.5z"/>
|
71 |
+
<path fill="#565656" d="M77.2,91.4l3.3,8.6h-1.3l-0.9-2.6h-3.6l-1,2.6h-1.2l3.3-8.6H77.2z M78,96.5l-1.4-4h0l-1.5,4H78z"/>
|
72 |
+
<path fill="#565656" d="M85.7,100v-0.8h0c-0.2,0.3-0.4,0.6-0.8,0.7c-0.4,0.2-0.8,0.2-1.2,0.2c-0.5,0-0.9-0.1-1.3-0.3
|
73 |
+
c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.5-1c-0.1-0.4-0.2-0.8-0.2-1.2c0-0.4,0.1-0.9,0.2-1.2c0.1-0.4,0.3-0.7,0.5-1
|
74 |
+
c0.2-0.3,0.5-0.5,0.9-0.7s0.8-0.3,1.2-0.3c0.2,0,0.3,0,0.5,0s0.4,0.1,0.6,0.2s0.4,0.2,0.5,0.3s0.3,0.3,0.4,0.5h0v-3.2h1v8.6H85.7z
|
75 |
+
M82.1,97.8c0.1,0.3,0.2,0.5,0.3,0.7c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2c0.3,0,0.6-0.1,0.9-0.2
|
76 |
+
c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.5,0.3-0.8c0.1-0.3,0.1-0.6,0.1-0.9c0-0.3,0-0.6-0.1-0.9c-0.1-0.3-0.2-0.5-0.3-0.8
|
77 |
+
c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5c-0.1,0.2-0.2,0.5-0.3,0.8
|
78 |
+
C82,96.4,82,96.6,82,97C82,97.2,82,97.5,82.1,97.8z"/>
|
79 |
+
<path fill="#565656" d="M92.9,100v-0.8h0c-0.2,0.3-0.4,0.6-0.8,0.7c-0.4,0.2-0.8,0.2-1.2,0.2c-0.5,0-0.9-0.1-1.3-0.3
|
80 |
+
c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.5-1c-0.1-0.4-0.2-0.8-0.2-1.2c0-0.4,0.1-0.9,0.2-1.2c0.1-0.4,0.3-0.7,0.5-1
|
81 |
+
c0.2-0.3,0.5-0.5,0.9-0.7s0.8-0.3,1.2-0.3c0.2,0,0.3,0,0.5,0s0.4,0.1,0.6,0.2s0.4,0.2,0.5,0.3s0.3,0.3,0.4,0.5h0v-3.2h1v8.6H92.9z
|
82 |
+
M89.2,97.8c0.1,0.3,0.2,0.5,0.3,0.7c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2c0.3,0,0.6-0.1,0.9-0.2
|
83 |
+
c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.5,0.3-0.8c0.1-0.3,0.1-0.6,0.1-0.9c0-0.3,0-0.6-0.1-0.9c-0.1-0.3-0.2-0.5-0.3-0.8
|
84 |
+
c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5c-0.1,0.2-0.2,0.5-0.3,0.8
|
85 |
+
c-0.1,0.3-0.1,0.6-0.1,0.9C89.1,97.2,89.1,97.5,89.2,97.8z"/>
|
86 |
+
<path fill="#565656" d="M96.4,93.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
87 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1v2.8h-1v-6.2H96.4z"/>
|
88 |
+
<path fill="#565656" d="M103.6,99.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
89 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
90 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2H100
|
91 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
92 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C104.4,98.7,104.1,99.3,103.6,99.6z M103.4,95.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
93 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
94 |
+
C103.5,96.1,103.5,95.8,103.4,95.6z"/>
|
95 |
+
<path fill="#565656" d="M106.5,98.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
96 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3c0.1-0.1,0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.7-0.3
|
97 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
98 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
99 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
100 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
101 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
102 |
+
s0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9s-0.4,0.4-0.6,0.6
|
103 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3c-0.3,0.1-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
104 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C106.3,98.3,106.4,98.5,106.5,98.6z"/>
|
105 |
+
<path fill="#565656" d="M112.5,98.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
106 |
+
s0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3c0.1-0.1,0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
107 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
108 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.6-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
109 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3s-0.3-0.1-0.5-0.2
|
110 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
111 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
112 |
+
s0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9s-0.4,0.4-0.6,0.6
|
113 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
114 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C112.3,98.3,112.4,98.5,112.5,98.6z"/>
|
115 |
+
</g>
|
116 |
+
<g enable-background="new ">
|
117 |
+
<path fill="#565656" d="M44.7,140.4c0.9,0,1.5,0.2,2,0.7c0.4,0.4,0.7,1.1,0.7,1.9s-0.2,1.4-0.7,1.9c-0.4,0.4-1.1,0.7-2,0.7h-2.6
|
118 |
+
v3.5h-1.1v-8.6H44.7z M44.3,144.5c0.6,0,1.1-0.1,1.4-0.4c0.3-0.3,0.5-0.7,0.5-1.2s-0.2-0.9-0.5-1.2c-0.3-0.3-0.8-0.4-1.4-0.4h-2.2
|
119 |
+
v3.1H44.3z"/>
|
120 |
+
<path fill="#565656" d="M49.5,142.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
121 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1v2.8h-1v-6.2H49.5z"/>
|
122 |
+
<path fill="#565656" d="M52.2,144.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7s0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
123 |
+
s0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
124 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1
|
125 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S52.1,145,52.2,144.6z M53.2,146.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
126 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.3,0,0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7s0.1-0.6,0.1-1s0-0.7-0.1-1
|
127 |
+
s-0.2-0.5-0.4-0.7c-0.2-0.2-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
128 |
+
c-0.2,0.2-0.3,0.4-0.4,0.7c-0.1,0.3-0.1,0.6-0.1,1S53.1,146.6,53.2,146.9z"/>
|
129 |
+
<path fill="#565656" d="M60.3,140.4v3.2h0c0.2-0.3,0.4-0.6,0.8-0.8c0.4-0.2,0.8-0.2,1.2-0.2c0.5,0,0.9,0.1,1.3,0.3
|
130 |
+
s0.7,0.4,0.9,0.7c0.2,0.3,0.4,0.6,0.5,1c0.1,0.4,0.2,0.8,0.2,1.2c0,0.4-0.1,0.9-0.2,1.2c-0.1,0.4-0.3,0.7-0.5,1s-0.5,0.5-0.9,0.7
|
131 |
+
c-0.4,0.2-0.8,0.3-1.2,0.3c-0.2,0-0.3,0-0.5,0s-0.4-0.1-0.6-0.2c-0.2-0.1-0.4-0.2-0.5-0.3c-0.2-0.1-0.3-0.3-0.4-0.5h0v0.8h-1v-8.6
|
132 |
+
H60.3z M63.9,145c-0.1-0.3-0.2-0.5-0.3-0.7c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2
|
133 |
+
c-0.2,0.1-0.4,0.3-0.6,0.5c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,0.9c0,0.3,0,0.6,0.1,0.9c0.1,0.3,0.2,0.5,0.3,0.8
|
134 |
+
c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2c0.4,0,0.6-0.1,0.9-0.2s0.4-0.3,0.6-0.5s0.2-0.5,0.3-0.8
|
135 |
+
c0.1-0.3,0.1-0.6,0.1-0.9C64,145.6,64,145.3,63.9,145z"/>
|
136 |
+
<path fill="#565656" d="M67.4,140.4v8.6h-1v-8.6H67.4z"/>
|
137 |
+
<path fill="#565656" d="M73.4,148.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
138 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
139 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
140 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
141 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C74.1,147.7,73.8,148.3,73.4,148.6z M73.1,144.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
142 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
143 |
+
C73.3,145.1,73.2,144.8,73.1,144.6z"/>
|
144 |
+
<path fill="#565656" d="M76.4,142.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
145 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
146 |
+
c0.1,0.2,0.1,0.5,0.1,0.8v4.5h-1v-4.1c0-0.2,0-0.4,0-0.5s-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
147 |
+
c-0.5,0-0.9,0.1-1.2,0.4s-0.4,0.7-0.4,1.2v3.9h-1v-4.1c0-0.2,0-0.4-0.1-0.6c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3
|
148 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4s-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5v3.9h-1
|
149 |
+
v-6.2H76.4z"/>
|
150 |
+
<path fill="#565656" d="M88.3,141.4v-1h6.9v1h-2.9v7.6h-1.1v-7.6H88.3z"/>
|
151 |
+
<path fill="#565656" d="M96,141.7v-1.2h1v1.2H96z M97,142.8v6.2h-1v-6.2H97z"/>
|
152 |
+
<path fill="#565656" d="M101.2,142.8v0.9H100v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0h0.5v0.9
|
153 |
+
h-0.8c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9H99v-1.9h1v1.9
|
154 |
+
H101.2z"/>
|
155 |
+
<path fill="#565656" d="M103.4,140.4v8.6h-1v-8.6H103.4z"/>
|
156 |
+
<path fill="#565656" d="M109.4,148.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
157 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
158 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
159 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
160 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C110.2,147.7,109.9,148.3,109.4,148.6z M109.1,144.6c-0.1-0.2-0.2-0.4-0.4-0.6
|
161 |
+
c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6
|
162 |
+
s-0.1,0.4-0.2,0.7h3.6C109.3,145.1,109.2,144.8,109.1,144.6z"/>
|
163 |
+
</g>
|
164 |
+
<g enable-background="new ">
|
165 |
+
<path fill="#565656" d="M44.7,189.4c0.9,0,1.5,0.2,2,0.7c0.4,0.4,0.7,1.1,0.7,1.9s-0.2,1.4-0.7,1.9c-0.4,0.4-1.1,0.7-2,0.7h-2.6
|
166 |
+
v3.5h-1.1v-8.6H44.7z M44.3,193.5c0.6,0,1.1-0.1,1.4-0.4c0.3-0.3,0.5-0.7,0.5-1.2s-0.2-0.9-0.5-1.2c-0.3-0.3-0.8-0.4-1.4-0.4h-2.2
|
167 |
+
v3.1H44.3z"/>
|
168 |
+
<path fill="#565656" d="M49.5,191.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
169 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1v2.8h-1v-6.2H49.5z"/>
|
170 |
+
<path fill="#565656" d="M52.2,193.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7s0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
171 |
+
s0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
172 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1
|
173 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S52.1,194,52.2,193.6z M53.2,195.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
174 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.3,0,0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7s0.1-0.6,0.1-1s0-0.7-0.1-1
|
175 |
+
s-0.2-0.5-0.4-0.7c-0.2-0.2-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
176 |
+
c-0.2,0.2-0.3,0.4-0.4,0.7c-0.1,0.3-0.1,0.6-0.1,1S53.1,195.6,53.2,195.9z"/>
|
177 |
+
<path fill="#565656" d="M60.3,189.4v3.2h0c0.2-0.3,0.4-0.6,0.8-0.8c0.4-0.2,0.8-0.2,1.2-0.2c0.5,0,0.9,0.1,1.3,0.3
|
178 |
+
s0.7,0.4,0.9,0.7c0.2,0.3,0.4,0.6,0.5,1c0.1,0.4,0.2,0.8,0.2,1.2c0,0.4-0.1,0.9-0.2,1.2c-0.1,0.4-0.3,0.7-0.5,1s-0.5,0.5-0.9,0.7
|
179 |
+
c-0.4,0.2-0.8,0.3-1.2,0.3c-0.2,0-0.3,0-0.5,0s-0.4-0.1-0.6-0.2c-0.2-0.1-0.4-0.2-0.5-0.3c-0.2-0.1-0.3-0.3-0.4-0.5h0v0.8h-1v-8.6
|
180 |
+
H60.3z M63.9,194c-0.1-0.3-0.2-0.5-0.3-0.7c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2
|
181 |
+
c-0.2,0.1-0.4,0.3-0.6,0.5c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,0.9c0,0.3,0,0.6,0.1,0.9c0.1,0.3,0.2,0.5,0.3,0.8
|
182 |
+
c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2c0.4,0,0.6-0.1,0.9-0.2s0.4-0.3,0.6-0.5s0.2-0.5,0.3-0.8
|
183 |
+
c0.1-0.3,0.1-0.6,0.1-0.9C64,194.6,64,194.3,63.9,194z"/>
|
184 |
+
<path fill="#565656" d="M67.4,189.4v8.6h-1v-8.6H67.4z"/>
|
185 |
+
<path fill="#565656" d="M73.4,197.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
186 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
187 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
188 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
189 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C74.1,196.7,73.8,197.3,73.4,197.6z M73.1,193.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
190 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
191 |
+
C73.3,194.1,73.2,193.8,73.1,193.6z"/>
|
192 |
+
<path fill="#565656" d="M76.4,191.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
193 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
194 |
+
c0.1,0.2,0.1,0.5,0.1,0.8v4.5h-1v-4.1c0-0.2,0-0.4,0-0.5s-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
195 |
+
c-0.5,0-0.9,0.1-1.2,0.4s-0.4,0.7-0.4,1.2v3.9h-1v-4.1c0-0.2,0-0.4-0.1-0.6c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3
|
196 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4s-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5v3.9h-1
|
197 |
+
v-6.2H76.4z"/>
|
198 |
+
<path fill="#565656" d="M93.5,190.6c-0.4-0.3-0.9-0.4-1.5-0.4c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.4,0.1-0.6,0.2
|
199 |
+
c-0.2,0.1-0.3,0.3-0.4,0.5c-0.1,0.2-0.2,0.4-0.2,0.7c0,0.3,0.1,0.5,0.2,0.6c0.2,0.2,0.4,0.3,0.6,0.4c0.3,0.1,0.6,0.2,0.9,0.3
|
200 |
+
s0.7,0.1,1,0.2c0.3,0.1,0.7,0.2,1,0.3s0.6,0.3,0.9,0.4c0.3,0.2,0.5,0.4,0.6,0.7c0.2,0.3,0.2,0.6,0.2,1.1c0,0.5-0.1,0.8-0.3,1.2
|
201 |
+
c-0.2,0.3-0.5,0.6-0.8,0.8c-0.3,0.2-0.7,0.4-1.1,0.4s-0.8,0.1-1.2,0.1c-0.5,0-0.9-0.1-1.4-0.2c-0.4-0.1-0.8-0.3-1.1-0.5
|
202 |
+
c-0.3-0.2-0.6-0.6-0.8-0.9s-0.3-0.8-0.3-1.4h1.1c0,0.4,0.1,0.7,0.2,0.9s0.3,0.5,0.6,0.6s0.5,0.3,0.8,0.4c0.3,0.1,0.6,0.1,0.9,0.1
|
203 |
+
c0.3,0,0.5,0,0.8-0.1s0.5-0.1,0.7-0.2c0.2-0.1,0.4-0.3,0.5-0.5s0.2-0.5,0.2-0.8c0-0.3-0.1-0.5-0.2-0.7c-0.2-0.2-0.4-0.3-0.6-0.5
|
204 |
+
c-0.3-0.1-0.6-0.2-0.9-0.3c-0.3-0.1-0.7-0.1-1-0.2c-0.3-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.2-0.9-0.4c-0.3-0.2-0.5-0.4-0.6-0.6
|
205 |
+
c-0.2-0.3-0.2-0.6-0.2-1c0-0.4,0.1-0.8,0.3-1.1c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.4,1-0.5c0.4-0.1,0.8-0.2,1.1-0.2
|
206 |
+
c0.4,0,0.8,0.1,1.2,0.2c0.4,0.1,0.7,0.3,1,0.5c0.3,0.2,0.5,0.5,0.7,0.8c0.2,0.3,0.3,0.7,0.3,1.2h-1.1
|
207 |
+
C94.1,191.3,93.8,190.9,93.5,190.6z"/>
|
208 |
+
<path fill="#565656" d="M99.4,191.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0h0.5v0.9
|
209 |
+
h-0.8c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9
|
210 |
+
H99.4z"/>
|
211 |
+
<path fill="#565656" d="M106.1,198c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
212 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
213 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
214 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
215 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
216 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
217 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V198z M104.4,194.8
|
218 |
+
c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
219 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
220 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V194.8z"/>
|
221 |
+
<path fill="#565656" d="M109.7,191.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0h0.5v0.9
|
222 |
+
h-0.8c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9
|
223 |
+
H109.7z"/>
|
224 |
+
<path fill="#565656" d="M115,198v-1h0c-0.2,0.4-0.5,0.7-0.8,0.8c-0.3,0.2-0.7,0.3-1.2,0.3c-0.4,0-0.7-0.1-1-0.2
|
225 |
+
c-0.3-0.1-0.5-0.3-0.7-0.5c-0.2-0.2-0.3-0.4-0.4-0.7s-0.1-0.6-0.1-0.9v-4.1h1v4.2c0,0.4,0.1,0.7,0.3,0.9c0.2,0.2,0.5,0.3,0.9,0.3
|
226 |
+
c0.3,0,0.6,0,0.8-0.1c0.2-0.1,0.4-0.2,0.6-0.4c0.2-0.2,0.3-0.4,0.3-0.6c0.1-0.2,0.1-0.5,0.1-0.8v-3.5h1v6.2H115z"/>
|
227 |
+
<path fill="#565656" d="M118.2,196.6c0.1,0.2,0.2,0.3,0.4,0.4s0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
228 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3c0.1-0.1,0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.5-0.2-0.8-0.3
|
229 |
+
c-0.3-0.1-0.6-0.2-1-0.2s-0.7-0.2-1-0.3s-0.5-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
230 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
231 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
232 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2s-0.1,0.2-0.1,0.4
|
233 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
234 |
+
s0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
235 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4s-0.4-0.4-0.6-0.6
|
236 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C118.1,196.3,118.1,196.5,118.2,196.6z"/>
|
237 |
+
</g>
|
238 |
+
<path id="Rectangle_859" fill="#377DFF" d="M85,238h95c2.8,0,5,2.2,5,5v17c0,2.8-2.2,5-5,5H85c-2.8,0-5-2.2-5-5v-17
|
239 |
+
C80,240.2,82.2,238,85,238z"/>
|
240 |
+
<g enable-background="new ">
|
241 |
+
<path fill="#FFFFFF" d="M115.4,253.6c0,0.3,0,0.5,0.1,0.7s0.2,0.4,0.4,0.5c0.2,0.1,0.4,0.2,0.6,0.3s0.5,0.1,0.7,0.1
|
242 |
+
c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.1-0.3,0.1-0.4c0-0.3-0.1-0.5-0.2-0.6
|
243 |
+
s-0.3-0.2-0.4-0.3c-0.3-0.1-0.5-0.2-0.9-0.3c-0.3-0.1-0.8-0.2-1.2-0.3c-0.3-0.1-0.6-0.2-0.8-0.3c-0.2-0.1-0.4-0.3-0.5-0.4
|
244 |
+
c-0.1-0.2-0.2-0.3-0.3-0.5s-0.1-0.4-0.1-0.5c0-0.4,0.1-0.7,0.2-0.9c0.1-0.3,0.3-0.5,0.6-0.7c0.2-0.2,0.5-0.3,0.8-0.4
|
245 |
+
c0.3-0.1,0.6-0.1,1-0.1c0.4,0,0.7,0,1.1,0.1s0.6,0.2,0.9,0.4c0.2,0.2,0.4,0.4,0.6,0.7s0.2,0.6,0.2,1h-1.2c0-0.5-0.2-0.8-0.5-1
|
246 |
+
c-0.3-0.2-0.6-0.3-1.1-0.3c-0.1,0-0.3,0-0.5,0s-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.2-0.3,0.3c-0.1,0.1-0.1,0.3-0.1,0.4
|
247 |
+
c0,0.3,0.1,0.5,0.2,0.6c0.2,0.1,0.4,0.3,0.6,0.3c0,0,0.1,0,0.3,0.1c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.1,0.7,0.2
|
248 |
+
s0.4,0.1,0.5,0.1c0.2,0.1,0.4,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.4c0.1,0.2,0.2,0.3,0.3,0.5s0.1,0.4,0.1,0.6c0,0.4-0.1,0.7-0.2,1
|
249 |
+
c-0.2,0.3-0.4,0.5-0.6,0.7c-0.3,0.2-0.6,0.3-0.9,0.4s-0.7,0.1-1,0.1c-0.4,0-0.8,0-1.1-0.2c-0.4-0.1-0.7-0.3-0.9-0.5
|
250 |
+
c-0.3-0.2-0.5-0.5-0.6-0.8c-0.2-0.3-0.2-0.7-0.2-1.1H115.4z"/>
|
251 |
+
<path fill="#FFFFFF" d="M121,248.9h1.2v4.2c0,0.2,0,0.5,0,0.7c0,0.2,0.1,0.5,0.2,0.7c0.1,0.2,0.3,0.4,0.5,0.5
|
252 |
+
c0.2,0.1,0.5,0.2,0.9,0.2c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.5-0.5c0.1-0.2,0.2-0.4,0.2-0.7c0-0.2,0-0.5,0-0.7v-4.2h1.2v4.6
|
253 |
+
c0,0.5-0.1,0.9-0.2,1.2c-0.1,0.3-0.3,0.6-0.6,0.9c-0.3,0.2-0.6,0.4-0.9,0.5c-0.4,0.1-0.8,0.2-1.2,0.2c-0.4,0-0.8-0.1-1.2-0.2
|
254 |
+
s-0.7-0.3-0.9-0.5c-0.3-0.2-0.5-0.5-0.6-0.9c-0.1-0.3-0.2-0.7-0.2-1.2V248.9z"/>
|
255 |
+
<path fill="#FFFFFF" d="M128.3,248.9h3.5c0.6,0,1.2,0.1,1.5,0.4c0.4,0.3,0.6,0.7,0.6,1.3c0,0.4-0.1,0.7-0.3,0.9
|
256 |
+
c-0.2,0.3-0.4,0.5-0.8,0.6v0c0.4,0.1,0.8,0.3,1,0.6s0.3,0.7,0.3,1.2c0,0.3,0,0.5-0.1,0.8c-0.1,0.2-0.3,0.5-0.5,0.6
|
257 |
+
c-0.2,0.2-0.5,0.3-0.8,0.4c-0.3,0.1-0.7,0.2-1.2,0.2h-3.3V248.9z M129.5,251.8h2c0.3,0,0.6-0.1,0.8-0.3c0.2-0.2,0.3-0.4,0.3-0.7
|
258 |
+
c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.1-0.4-0.2-0.8-0.2h-2V251.8z M129.5,255h2.2c0.4,0,0.7-0.1,0.9-0.3c0.2-0.2,0.3-0.5,0.3-0.8
|
259 |
+
c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.2-0.5-0.3-0.9-0.3h-2.2V255z"/>
|
260 |
+
<path fill="#FFFFFF" d="M135.3,248.9h1.8l2,5.6h0l1.9-5.6h1.7v7.1h-1.2v-5.5h0l-2,5.5h-1l-2-5.5h0v5.5h-1.2V248.9z"/>
|
261 |
+
<path fill="#FFFFFF" d="M144.2,248.9h1.2v7.1h-1.2V248.9z"/>
|
262 |
+
<path fill="#FFFFFF" d="M146.3,248.9h5.8v1.1h-2.3v6.1h-1.2v-6.1h-2.3V248.9z"/>
|
263 |
+
</g>
|
264 |
+
</g>
|
265 |
+
</svg>
|
templates/16/preview-thumb.svg
ADDED
@@ -0,0 +1,365 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 265 300" enable-background="new 0 0 265 300" xml:space="preserve">
|
5 |
+
<g>
|
6 |
+
<path id="Rectangle_863" fill="#FFFFFF" d="M5,0h255c2.8,0,5,2.2,5,5v290c0,2.8-2.2,5-5,5H5c-2.8,0-5-2.2-5-5V5C0,2.2,2.2,0,5,0z"
|
7 |
+
/>
|
8 |
+
<path id="Rectangle_864" fill="#E5E9EA" d="M42.5,59h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
9 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,60.1,41.1,59,42.5,59z"/>
|
10 |
+
<path id="Rectangle_870" fill="#E5E9EA" d="M142.5,59h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
11 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C140,60.1,141.1,59,142.5,59z"/>
|
12 |
+
<path id="Rectangle_865" fill="#E5E9EA" d="M42.5,108h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
13 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,109.1,41.1,108,42.5,108z"/>
|
14 |
+
<path id="Rectangle_871" fill="#E5E9EA" d="M142.5,108h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
15 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C140,109.1,141.1,108,142.5,108z"/>
|
16 |
+
<path id="Rectangle_866" fill="#E5E9EA" d="M42.5,157h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
17 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,158.1,41.1,157,42.5,157z"/>
|
18 |
+
<path id="Rectangle_872" fill="#E5E9EA" d="M142.5,157h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
19 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C140,158.1,141.1,157,142.5,157z"/>
|
20 |
+
<path id="Rectangle_867" fill="#E5E9EA" d="M42.5,206h180c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-180
|
21 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,207.1,41.1,206,42.5,206z"/>
|
22 |
+
<g enable-background="new ">
|
23 |
+
<path fill="#565656" d="M46.6,42.4v1h-4.5v2.7H46v1h-3.9V51h-1.1v-8.6H46.6z"/>
|
24 |
+
<path fill="#565656" d="M47.7,43.7v-1.2h1v1.2H47.7z M48.7,44.8V51h-1v-6.2H48.7z"/>
|
25 |
+
<path fill="#565656" d="M51.2,44.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
26 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1V51h-1v-6.2H51.2z"/>
|
27 |
+
<path fill="#565656" d="M55.1,49.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
28 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
29 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
30 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
31 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
32 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
33 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
34 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
35 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
36 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C54.9,49.3,55,49.5,55.1,49.6z"/>
|
37 |
+
<path fill="#565656" d="M63,44.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0H63V51h-0.8
|
38 |
+
c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9H63z"/>
|
39 |
+
<path fill="#565656" d="M68.8,42.4l4.5,6.9h0v-6.9h1.1V51h-1.2l-4.5-6.9h0V51h-1.1v-8.6H68.8z"/>
|
40 |
+
<path fill="#565656" d="M81.6,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
41 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
42 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
43 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
44 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2S77,46.3,77,46.7h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
45 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
46 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51z M79.9,47.8
|
47 |
+
c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
48 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
49 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V47.8z"/>
|
50 |
+
<path fill="#565656" d="M83.5,44.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
51 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
52 |
+
c0.1,0.2,0.1,0.5,0.1,0.8V51h-1v-4.1c0-0.2,0-0.4,0-0.5S90.1,46.1,90,46c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
53 |
+
c-0.5,0-0.9,0.1-1.2,0.4s-0.4,0.7-0.4,1.2V51h-1v-4.1c0-0.2,0-0.4-0.1-0.6c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3
|
54 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4s-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5V51h-1
|
55 |
+
v-6.2H83.5z"/>
|
56 |
+
<path fill="#565656" d="M97.2,50.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
57 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
58 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
59 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
60 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C97.9,49.7,97.6,50.3,97.2,50.6z M96.9,46.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
61 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
62 |
+
C97.1,47.1,97,46.8,96.9,46.6z"/>
|
63 |
+
</g>
|
64 |
+
<g enable-background="new ">
|
65 |
+
<path fill="#565656" d="M142.1,42.4V50h4.5v1h-5.7v-8.6H142.1z"/>
|
66 |
+
<path fill="#565656" d="M152.9,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
67 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
68 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
69 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
70 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
71 |
+
s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1s0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5c0.1,0.2,0.2,0.5,0.2,0.9
|
72 |
+
v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51z M151.3,47.8c-0.1,0.1-0.3,0.2-0.5,0.2
|
73 |
+
c-0.2,0-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.4-0.2,0.6
|
74 |
+
c0,0.2,0,0.3,0.1,0.4c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
75 |
+
c0.2-0.1,0.4-0.2,0.6-0.3s0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V47.8z"/>
|
76 |
+
<path fill="#565656" d="M154.7,49.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
77 |
+
s0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3c0.1-0.1,0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
78 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
79 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.6-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
80 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3s-0.3-0.1-0.5-0.2
|
81 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
82 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
83 |
+
s0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9s-0.4,0.4-0.6,0.6
|
84 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
85 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C154.5,49.3,154.6,49.5,154.7,49.6z"/>
|
86 |
+
<path fill="#565656" d="M162.5,44.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3c0,0.1,0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0h0.5
|
87 |
+
V51h-0.8c-0.3,0-0.5,0-0.7-0.1c-0.2,0-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1
|
88 |
+
v-1.9h1v1.9H162.5z"/>
|
89 |
+
<path fill="#565656" d="M168.4,42.4l4.5,6.9h0v-6.9h1.1V51h-1.2l-4.5-6.9h0V51h-1.1v-8.6H168.4z"/>
|
90 |
+
<path fill="#565656" d="M181.2,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
91 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
92 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5s0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
93 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
94 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
95 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
96 |
+
s0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51z M179.5,47.8c-0.1,0.1-0.3,0.2-0.5,0.2
|
97 |
+
c-0.2,0-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2s-0.3,0.2-0.4,0.3c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4
|
98 |
+
c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1c0.2-0.1,0.4-0.2,0.6-0.3
|
99 |
+
c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V47.8z"/>
|
100 |
+
<path fill="#565656" d="M183.1,44.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
101 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
102 |
+
c0.1,0.2,0.1,0.5,0.1,0.8V51h-1v-4.1c0-0.2,0-0.4,0-0.5s-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
103 |
+
c-0.5,0-0.9,0.1-1.2,0.4s-0.4,0.7-0.4,1.2V51h-1v-4.1c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4s-0.2-0.2-0.4-0.3
|
104 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4c-0.1,0.2-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5
|
105 |
+
V51h-1v-6.2H183.1z"/>
|
106 |
+
<path fill="#565656" d="M196.7,50.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
107 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.7-0.2,1.2-0.2
|
108 |
+
c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6c0,0.3,0,0.5,0.1,0.8
|
109 |
+
c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3s0.5-0.5,0.5-0.9h1
|
110 |
+
C197.5,49.7,197.2,50.3,196.7,50.6z M196.5,46.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1
|
111 |
+
c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4c-0.2,0.2-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6C196.6,47.1,196.6,46.8,196.5,46.6
|
112 |
+
z"/>
|
113 |
+
</g>
|
114 |
+
<g enable-background="new ">
|
115 |
+
<path fill="#565656" d="M46.9,91.4v1h-4.8v2.7h4.5v1h-4.5v3h4.8v1h-6v-8.6H46.9z"/>
|
116 |
+
<path fill="#565656" d="M49.1,93.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
117 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
118 |
+
c0.1,0.2,0.1,0.5,0.1,0.8v4.5h-1v-4.1c0-0.2,0-0.4,0-0.5s-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
119 |
+
c-0.5,0-0.9,0.1-1.2,0.4S53,95.7,53,96.1v3.9h-1v-4.1c0-0.2,0-0.4-0.1-0.6c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3
|
120 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4s-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5v3.9h-1
|
121 |
+
v-6.2H49.1z"/>
|
122 |
+
<path fill="#565656" d="M59.4,93.8v0.8h0c0.2-0.3,0.4-0.6,0.8-0.8c0.4-0.2,0.8-0.2,1.2-0.2c0.5,0,0.9,0.1,1.3,0.3s0.7,0.4,0.9,0.7
|
123 |
+
c0.2,0.3,0.4,0.6,0.5,1c0.1,0.4,0.2,0.8,0.2,1.2c0,0.4-0.1,0.9-0.2,1.2c-0.1,0.4-0.3,0.7-0.5,1s-0.5,0.5-0.9,0.7
|
124 |
+
c-0.4,0.2-0.8,0.3-1.2,0.3c-0.2,0-0.3,0-0.5,0s-0.4-0.1-0.6-0.2c-0.2-0.1-0.4-0.2-0.5-0.3c-0.2-0.1-0.3-0.3-0.4-0.5h0v3.2h-1v-8.6
|
125 |
+
H59.4z M63.1,96c-0.1-0.3-0.2-0.5-0.3-0.7c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2
|
126 |
+
c-0.2,0.1-0.4,0.3-0.6,0.5c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,0.9c0,0.3,0,0.6,0.1,0.9c0.1,0.3,0.2,0.5,0.3,0.8
|
127 |
+
c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2c0.4,0,0.6-0.1,0.9-0.2s0.4-0.3,0.6-0.5s0.2-0.5,0.3-0.8
|
128 |
+
c0.1-0.3,0.1-0.6,0.1-0.9C63.2,96.6,63.1,96.3,63.1,96z"/>
|
129 |
+
<path fill="#565656" d="M66.5,91.4v8.6h-1v-8.6H66.5z"/>
|
130 |
+
<path fill="#565656" d="M68,95.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7s0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
131 |
+
s0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
132 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1
|
133 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S67.8,96,68,95.6z M69,97.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5c0.2,0.1,0.5,0.2,0.8,0.2
|
134 |
+
c0.3,0,0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7s0.1-0.6,0.1-1s0-0.7-0.1-1s-0.2-0.5-0.4-0.7
|
135 |
+
c-0.2-0.2-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5c-0.2,0.2-0.3,0.4-0.4,0.7
|
136 |
+
c-0.1,0.3-0.1,0.6-0.1,1S68.9,97.6,69,97.9z"/>
|
137 |
+
<path fill="#565656" d="M77.4,100.8c-0.1,0.3-0.2,0.6-0.4,0.8c-0.1,0.2-0.2,0.4-0.4,0.5c-0.1,0.1-0.3,0.2-0.5,0.3
|
138 |
+
c-0.2,0.1-0.4,0.1-0.6,0.1c-0.1,0-0.2,0-0.4,0s-0.2,0-0.3-0.1v-0.9c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3,0c0.2,0,0.4,0,0.5-0.2
|
139 |
+
c0.1-0.1,0.2-0.2,0.3-0.4l0.4-1l-2.5-6.2h1.2l1.8,5.1h0l1.7-5.1h1.1L77.4,100.8z"/>
|
140 |
+
<path fill="#565656" d="M85.4,99.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
141 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
142 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
143 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
144 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C86.2,98.7,85.9,99.3,85.4,99.6z M85.1,95.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
145 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
146 |
+
C85.3,96.1,85.2,95.8,85.1,95.6z"/>
|
147 |
+
<path fill="#565656" d="M91.8,99.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
148 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
149 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
150 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
151 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C92.6,98.7,92.3,99.3,91.8,99.6z M91.6,95.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
152 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
153 |
+
C91.7,96.1,91.7,95.8,91.6,95.6z"/>
|
154 |
+
<path fill="#565656" d="M98.6,91.4v8.6h-1.1v-8.6H98.6z"/>
|
155 |
+
<path fill="#565656" d="M103.4,91.4c1.3,0,2.3,0.3,3,1c0.7,0.7,1.1,1.7,1.1,3.1c0,0.7-0.1,1.4-0.2,1.9c-0.2,0.6-0.4,1-0.7,1.4
|
156 |
+
c-0.3,0.4-0.8,0.7-1.3,0.9s-1.1,0.3-1.8,0.3h-2.9v-8.6H103.4z M103.5,99c0.1,0,0.3,0,0.5,0c0.2,0,0.4-0.1,0.6-0.1s0.4-0.2,0.6-0.3
|
157 |
+
c0.2-0.1,0.4-0.3,0.6-0.6s0.3-0.6,0.4-0.9c0.1-0.4,0.2-0.8,0.2-1.3c0-0.5-0.1-1-0.1-1.4c-0.1-0.4-0.3-0.7-0.5-1
|
158 |
+
c-0.2-0.3-0.5-0.5-0.9-0.6c-0.4-0.1-0.8-0.2-1.3-0.2h-1.9V99H103.5z"/>
|
159 |
+
</g>
|
160 |
+
<g enable-background="new ">
|
161 |
+
<path fill="#565656" d="M144.7,91.4c0.9,0,1.5,0.2,2,0.7c0.4,0.4,0.7,1.1,0.7,1.9s-0.2,1.4-0.7,1.9c-0.4,0.4-1.1,0.7-2,0.7h-2.6
|
162 |
+
v3.5h-1.1v-8.6H144.7z M144.3,95.5c0.6,0,1.1-0.1,1.4-0.4c0.3-0.3,0.4-0.7,0.4-1.2s-0.2-0.9-0.4-1.2c-0.3-0.3-0.8-0.4-1.4-0.4
|
163 |
+
h-2.2v3.1H144.3z"/>
|
164 |
+
<path fill="#565656" d="M148.4,95.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7s0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
165 |
+
c0.4,0.2,0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
166 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7c-0.4,0.2-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1
|
167 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S148.3,96,148.4,95.6z M149.4,97.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
168 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.3,0,0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7s0.2-0.6,0.2-1s-0.1-0.7-0.2-1
|
169 |
+
s-0.2-0.5-0.4-0.7s-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5s-0.3,0.4-0.4,0.7
|
170 |
+
s-0.1,0.6-0.1,1S149.3,97.6,149.4,97.9z"/>
|
171 |
+
<path fill="#565656" d="M156.2,98.6c0.1,0.2,0.2,0.3,0.4,0.4s0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
172 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
173 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
174 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
175 |
+
c0.2,0.1,0.4,0.3,0.5,0.6s0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.4-0.2
|
176 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
177 |
+
c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
178 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5s0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9s-0.4,0.4-0.6,0.6c-0.3,0.2-0.5,0.3-0.9,0.3
|
179 |
+
c-0.3,0.1-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6c-0.1-0.3-0.2-0.6-0.2-1h1
|
180 |
+
C156.1,98.3,156.1,98.5,156.2,98.6z"/>
|
181 |
+
<path fill="#565656" d="M161.5,92.7v-1.2h1v1.2H161.5z M162.5,93.8v6.2h-1v-6.2H162.5z"/>
|
182 |
+
<path fill="#565656" d="M166.7,93.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3c0,0.1,0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0h0.5
|
183 |
+
v0.9H166c-0.3,0-0.5,0-0.7-0.1c-0.2,0-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1
|
184 |
+
v-1.9h1v1.9H166.7z"/>
|
185 |
+
<path fill="#565656" d="M167.9,92.7v-1.2h1v1.2H167.9z M169,93.8v6.2h-1v-6.2H169z"/>
|
186 |
+
<path fill="#565656" d="M170.4,95.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.8-0.3,1.3-0.3
|
187 |
+
c0.5,0,0.9,0.1,1.3,0.3s0.7,0.4,0.9,0.7s0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
188 |
+
s-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1
|
189 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S170.3,96,170.4,95.6z M171.4,97.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
190 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.3,0,0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7c0.1-0.3,0.1-0.6,0.1-1
|
191 |
+
s0-0.7-0.1-1c-0.1-0.3-0.2-0.5-0.4-0.7c-0.2-0.2-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.8,0.2
|
192 |
+
c-0.2,0.1-0.4,0.3-0.6,0.5s-0.3,0.4-0.4,0.7s-0.2,0.6-0.2,1S171.3,97.6,171.4,97.9z"/>
|
193 |
+
<path fill="#565656" d="M178.4,93.8v1h0c0.4-0.8,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5s0.3,0.4,0.4,0.7
|
194 |
+
s0.1,0.6,0.1,0.9v4.1h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.3-0.9-0.3c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4
|
195 |
+
c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8v3.5h-1v-6.2H178.4z"/>
|
196 |
+
</g>
|
197 |
+
<g enable-background="new ">
|
198 |
+
<path fill="#565656" d="M42.1,140.4v7.6h4.5v1h-5.7v-8.6H42.1z"/>
|
199 |
+
<path fill="#565656" d="M51.8,148.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
200 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
201 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
202 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
203 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C52.6,147.7,52.3,148.3,51.8,148.6z M51.6,144.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
204 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
205 |
+
C51.7,145.1,51.7,144.8,51.6,144.6z"/>
|
206 |
+
<path fill="#565656" d="M59.4,149c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
207 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
208 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
209 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
210 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
211 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
212 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V149z M57.7,145.8
|
213 |
+
c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
214 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
215 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V145.8z"/>
|
216 |
+
<path fill="#565656" d="M62,149l-2.3-6.2h1.1l1.7,5.2h0l1.7-5.2h1.1l-2.3,6.2H62z"/>
|
217 |
+
<path fill="#565656" d="M70.7,148.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
218 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
219 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
220 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
221 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C71.5,147.7,71.2,148.3,70.7,148.6z M70.5,144.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
222 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
223 |
+
C70.6,145.1,70.6,144.8,70.5,144.6z"/>
|
224 |
+
<path fill="#565656" d="M80.6,141.6c-0.4-0.3-0.9-0.4-1.5-0.4c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.4,0.1-0.6,0.2
|
225 |
+
c-0.2,0.1-0.3,0.3-0.4,0.5c-0.1,0.2-0.2,0.4-0.2,0.7c0,0.3,0.1,0.5,0.2,0.6c0.2,0.2,0.4,0.3,0.6,0.4c0.3,0.1,0.6,0.2,0.9,0.3
|
226 |
+
s0.7,0.1,1,0.2c0.3,0.1,0.7,0.2,1,0.3s0.6,0.3,0.9,0.4c0.3,0.2,0.5,0.4,0.6,0.7c0.2,0.3,0.2,0.6,0.2,1.1c0,0.5-0.1,0.8-0.3,1.2
|
227 |
+
c-0.2,0.3-0.5,0.6-0.8,0.8c-0.3,0.2-0.7,0.4-1.1,0.4s-0.8,0.1-1.2,0.1c-0.5,0-0.9-0.1-1.4-0.2c-0.4-0.1-0.8-0.3-1.1-0.5
|
228 |
+
c-0.3-0.2-0.6-0.6-0.8-0.9s-0.3-0.8-0.3-1.4h1.1c0,0.4,0.1,0.7,0.2,0.9s0.3,0.5,0.6,0.6s0.5,0.3,0.8,0.4c0.3,0.1,0.6,0.1,0.9,0.1
|
229 |
+
c0.3,0,0.5,0,0.8-0.1s0.5-0.1,0.7-0.2c0.2-0.1,0.4-0.3,0.5-0.5s0.2-0.5,0.2-0.8c0-0.3-0.1-0.5-0.2-0.7c-0.2-0.2-0.4-0.3-0.6-0.5
|
230 |
+
c-0.3-0.1-0.6-0.2-0.9-0.3c-0.3-0.1-0.7-0.1-1-0.2c-0.3-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.2-0.9-0.4c-0.3-0.2-0.5-0.4-0.6-0.6
|
231 |
+
c-0.2-0.3-0.2-0.6-0.2-1c0-0.4,0.1-0.8,0.3-1.1c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.4,1-0.5c0.4-0.1,0.8-0.2,1.1-0.2
|
232 |
+
c0.4,0,0.8,0.1,1.2,0.2c0.4,0.1,0.7,0.3,1,0.5c0.3,0.2,0.5,0.5,0.7,0.8c0.2,0.3,0.3,0.7,0.3,1.2h-1.1
|
233 |
+
C81.2,142.3,80.9,141.9,80.6,141.6z"/>
|
234 |
+
<path fill="#565656" d="M86.5,142.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0h0.5v0.9
|
235 |
+
h-0.8c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9
|
236 |
+
H86.5z"/>
|
237 |
+
<path fill="#565656" d="M93.2,149c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
238 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
239 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
240 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
241 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
242 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
243 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V149z M91.5,145.8
|
244 |
+
c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
245 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
246 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V145.8z"/>
|
247 |
+
<path fill="#565656" d="M95,142.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
248 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1v2.8h-1v-6.2H95z"/>
|
249 |
+
<path fill="#565656" d="M100.8,142.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0h0.5v0.9
|
250 |
+
H100c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9
|
251 |
+
H100.8z"/>
|
252 |
+
</g>
|
253 |
+
<g enable-background="new ">
|
254 |
+
<path fill="#565656" d="M142.1,140.4v7.6h4.5v1h-5.7v-8.6H142.1z"/>
|
255 |
+
<path fill="#565656" d="M151.8,148.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
256 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
257 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
258 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
259 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C152.6,147.7,152.3,148.3,151.8,148.6z M151.6,144.6c-0.1-0.2-0.2-0.4-0.4-0.6
|
260 |
+
c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4c-0.2,0.2-0.3,0.3-0.4,0.6
|
261 |
+
s-0.1,0.4-0.2,0.7h3.6C151.7,145.1,151.7,144.8,151.6,144.6z"/>
|
262 |
+
<path fill="#565656" d="M159.4,149c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
263 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
264 |
+
s-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9s0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2c0.3-0.1,0.5-0.1,0.8-0.1
|
265 |
+
s0.5-0.1,0.7-0.1c0.2-0.1,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
266 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2c-0.3,0.2-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1
|
267 |
+
c0.1-0.3,0.3-0.5,0.6-0.6s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2
|
268 |
+
c0.2,0.1,0.4,0.3,0.5,0.5c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V149z
|
269 |
+
M157.7,145.8c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1c-0.2,0-0.4,0.1-0.6,0.2
|
270 |
+
c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2
|
271 |
+
c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1c0.2-0.1,0.4-0.2,0.6-0.3s0.3-0.3,0.3-0.5c0.1-0.2,0.1-0.3,0.1-0.5V145.8z"/>
|
272 |
+
<path fill="#565656" d="M162,149l-2.3-6.2h1.1l1.7,5.2h0l1.7-5.2h1.1l-2.3,6.2H162z"/>
|
273 |
+
<path fill="#565656" d="M170.7,148.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
274 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.7-0.2,1.2-0.2
|
275 |
+
c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6c0,0.3,0,0.5,0.1,0.8
|
276 |
+
c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3s0.5-0.5,0.5-0.9h1
|
277 |
+
C171.5,147.7,171.2,148.3,170.7,148.6z M170.5,144.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1
|
278 |
+
c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4c-0.2,0.2-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
279 |
+
C170.6,145.1,170.6,144.8,170.5,144.6z"/>
|
280 |
+
<path fill="#565656" d="M182.2,140.4v1h-4.8v2.7h4.5v1h-4.5v3h4.8v1h-6v-8.6H182.2z"/>
|
281 |
+
<path fill="#565656" d="M184.4,142.8v1h0c0.4-0.8,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5s0.3,0.4,0.4,0.7
|
282 |
+
c0.1,0.3,0.1,0.6,0.1,0.9v4.1h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.3-0.9-0.3c-0.3,0-0.6,0-0.8,0.1
|
283 |
+
c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8v3.5h-1v-6.2H184.4z"/>
|
284 |
+
<path fill="#565656" d="M194.6,149v-0.8h0c-0.2,0.3-0.4,0.6-0.8,0.7c-0.4,0.2-0.8,0.2-1.2,0.2c-0.5,0-0.9-0.1-1.3-0.3
|
285 |
+
s-0.7-0.4-0.9-0.7s-0.4-0.6-0.5-1c-0.1-0.4-0.2-0.8-0.2-1.2c0-0.4,0.1-0.9,0.2-1.2c0.1-0.4,0.3-0.7,0.5-1c0.2-0.3,0.5-0.5,0.9-0.7
|
286 |
+
s0.8-0.3,1.2-0.3c0.2,0,0.3,0,0.5,0s0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.2,0.5,0.3s0.3,0.3,0.4,0.5h0v-3.2h1v8.6H194.6z M191,146.8
|
287 |
+
c0.1,0.3,0.2,0.5,0.3,0.7c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2c0.3,0,0.6-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
|
288 |
+
c0.2-0.2,0.3-0.5,0.3-0.8c0.1-0.3,0.1-0.6,0.1-0.9c0-0.3,0-0.6-0.1-0.9c-0.1-0.3-0.2-0.5-0.3-0.8c-0.2-0.2-0.4-0.4-0.6-0.5
|
289 |
+
s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5c-0.1,0.2-0.2,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,0.9
|
290 |
+
C190.9,146.2,190.9,146.5,191,146.8z"/>
|
291 |
+
</g>
|
292 |
+
<g enable-background="new ">
|
293 |
+
<path fill="#565656" d="M42.1,189.4v7.6h4.5v1h-5.7v-8.6H42.1z"/>
|
294 |
+
<path fill="#565656" d="M51.8,197.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
295 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
296 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
297 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
298 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C52.6,196.7,52.3,197.3,51.8,197.6z M51.6,193.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
299 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
300 |
+
C51.7,194.1,51.7,193.8,51.6,193.6z"/>
|
301 |
+
<path fill="#565656" d="M59.4,198c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
302 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
303 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
304 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
305 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
306 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
307 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V198z M57.7,194.8
|
308 |
+
c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
309 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
310 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V194.8z"/>
|
311 |
+
<path fill="#565656" d="M62,198l-2.3-6.2h1.1l1.7,5.2h0l1.7-5.2h1.1l-2.3,6.2H62z"/>
|
312 |
+
<path fill="#565656" d="M70.7,197.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
313 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
314 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
315 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
316 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C71.5,196.7,71.2,197.3,70.7,197.6z M70.5,193.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
317 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
318 |
+
C70.6,194.1,70.6,193.8,70.5,193.6z"/>
|
319 |
+
<path fill="#565656" d="M75.4,190.4v-1h6.9v1h-2.9v7.6h-1.1v-7.6H75.4z"/>
|
320 |
+
<path fill="#565656" d="M84.1,198.8c-0.1,0.3-0.2,0.6-0.4,0.8c-0.1,0.2-0.2,0.4-0.4,0.5c-0.1,0.1-0.3,0.2-0.5,0.3
|
321 |
+
c-0.2,0.1-0.4,0.1-0.6,0.1c-0.1,0-0.2,0-0.4,0s-0.2,0-0.3-0.1v-0.9c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3,0c0.2,0,0.4,0,0.5-0.2
|
322 |
+
c0.1-0.1,0.2-0.2,0.3-0.4l0.4-1l-2.5-6.2h1.2l1.8,5.1h0l1.7-5.1h1.1L84.1,198.8z"/>
|
323 |
+
<path fill="#565656" d="M88.7,191.8v0.8h0c0.2-0.3,0.4-0.6,0.8-0.8c0.4-0.2,0.8-0.2,1.2-0.2c0.5,0,0.9,0.1,1.3,0.3
|
324 |
+
s0.7,0.4,0.9,0.7c0.2,0.3,0.4,0.6,0.5,1c0.1,0.4,0.2,0.8,0.2,1.2c0,0.4-0.1,0.9-0.2,1.2c-0.1,0.4-0.3,0.7-0.5,1s-0.5,0.5-0.9,0.7
|
325 |
+
c-0.4,0.2-0.8,0.3-1.2,0.3c-0.2,0-0.3,0-0.5,0s-0.4-0.1-0.6-0.2c-0.2-0.1-0.4-0.2-0.5-0.3c-0.2-0.1-0.3-0.3-0.4-0.5h0v3.2h-1v-8.6
|
326 |
+
H88.7z M92.4,194c-0.1-0.3-0.2-0.5-0.3-0.7c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2
|
327 |
+
c-0.2,0.1-0.4,0.3-0.6,0.5c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,0.9c0,0.3,0,0.6,0.1,0.9c0.1,0.3,0.2,0.5,0.3,0.8
|
328 |
+
c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2c0.4,0,0.6-0.1,0.9-0.2s0.4-0.3,0.6-0.5s0.2-0.5,0.3-0.8
|
329 |
+
c0.1-0.3,0.1-0.6,0.1-0.9C92.5,194.6,92.5,194.3,92.4,194z"/>
|
330 |
+
<path fill="#565656" d="M99.2,197.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
331 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
332 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
333 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
334 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C99.9,196.7,99.6,197.3,99.2,197.6z M98.9,193.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
335 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
336 |
+
C99.1,194.1,99,193.8,98.9,193.6z"/>
|
337 |
+
</g>
|
338 |
+
<path id="Rectangle_869" fill="#CDAF90" d="M85,238h95c2.8,0,5,2.2,5,5v17c0,2.8-2.2,5-5,5H85c-2.8,0-5-2.2-5-5v-17
|
339 |
+
C80,240.2,82.2,238,85,238z"/>
|
340 |
+
<g enable-background="new ">
|
341 |
+
<path fill="#FFFFFF" d="M115.4,253.6c0,0.3,0,0.5,0.1,0.7s0.2,0.4,0.4,0.5c0.2,0.1,0.4,0.2,0.6,0.3s0.5,0.1,0.7,0.1
|
342 |
+
c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.1-0.3,0.1-0.4c0-0.3-0.1-0.5-0.2-0.6
|
343 |
+
s-0.3-0.2-0.4-0.3c-0.3-0.1-0.5-0.2-0.9-0.3c-0.3-0.1-0.8-0.2-1.2-0.3c-0.3-0.1-0.6-0.2-0.8-0.3c-0.2-0.1-0.4-0.3-0.5-0.4
|
344 |
+
c-0.1-0.2-0.2-0.3-0.3-0.5s-0.1-0.4-0.1-0.5c0-0.4,0.1-0.7,0.2-0.9c0.1-0.3,0.3-0.5,0.6-0.7c0.2-0.2,0.5-0.3,0.8-0.4
|
345 |
+
c0.3-0.1,0.6-0.1,1-0.1c0.4,0,0.7,0,1.1,0.1s0.6,0.2,0.9,0.4c0.2,0.2,0.4,0.4,0.6,0.7s0.2,0.6,0.2,1h-1.2c0-0.5-0.2-0.8-0.5-1
|
346 |
+
c-0.3-0.2-0.6-0.3-1.1-0.3c-0.1,0-0.3,0-0.5,0s-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.2-0.3,0.3c-0.1,0.1-0.1,0.3-0.1,0.4
|
347 |
+
c0,0.3,0.1,0.5,0.2,0.6c0.2,0.1,0.4,0.3,0.6,0.3c0,0,0.1,0,0.3,0.1c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.1,0.7,0.2
|
348 |
+
s0.4,0.1,0.5,0.1c0.2,0.1,0.4,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.4c0.1,0.2,0.2,0.3,0.3,0.5s0.1,0.4,0.1,0.6c0,0.4-0.1,0.7-0.2,1
|
349 |
+
c-0.2,0.3-0.4,0.5-0.6,0.7c-0.3,0.2-0.6,0.3-0.9,0.4s-0.7,0.1-1,0.1c-0.4,0-0.8,0-1.1-0.2c-0.4-0.1-0.7-0.3-0.9-0.5
|
350 |
+
c-0.3-0.2-0.5-0.5-0.6-0.8c-0.2-0.3-0.2-0.7-0.2-1.1H115.4z"/>
|
351 |
+
<path fill="#FFFFFF" d="M121,248.9h1.2v4.2c0,0.2,0,0.5,0,0.7c0,0.2,0.1,0.5,0.2,0.7c0.1,0.2,0.3,0.4,0.5,0.5
|
352 |
+
c0.2,0.1,0.5,0.2,0.9,0.2c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.5-0.5c0.1-0.2,0.2-0.4,0.2-0.7c0-0.2,0-0.5,0-0.7v-4.2h1.2v4.6
|
353 |
+
c0,0.5-0.1,0.9-0.2,1.2c-0.1,0.3-0.3,0.6-0.6,0.9c-0.3,0.2-0.6,0.4-0.9,0.5c-0.4,0.1-0.8,0.2-1.2,0.2c-0.4,0-0.8-0.1-1.2-0.2
|
354 |
+
s-0.7-0.3-0.9-0.5c-0.3-0.2-0.5-0.5-0.6-0.9c-0.1-0.3-0.2-0.7-0.2-1.2V248.9z"/>
|
355 |
+
<path fill="#FFFFFF" d="M128.3,248.9h3.5c0.6,0,1.2,0.1,1.5,0.4c0.4,0.3,0.6,0.7,0.6,1.3c0,0.4-0.1,0.7-0.3,0.9
|
356 |
+
c-0.2,0.3-0.4,0.5-0.8,0.6v0c0.4,0.1,0.8,0.3,1,0.6s0.3,0.7,0.3,1.2c0,0.3,0,0.5-0.1,0.8c-0.1,0.2-0.3,0.5-0.5,0.6
|
357 |
+
c-0.2,0.2-0.5,0.3-0.8,0.4c-0.3,0.1-0.7,0.2-1.2,0.2h-3.3V248.9z M129.5,251.8h2c0.3,0,0.6-0.1,0.8-0.3c0.2-0.2,0.3-0.4,0.3-0.7
|
358 |
+
c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.1-0.4-0.2-0.8-0.2h-2V251.8z M129.5,255h2.2c0.4,0,0.7-0.1,0.9-0.3c0.2-0.2,0.3-0.5,0.3-0.8
|
359 |
+
c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.2-0.5-0.3-0.9-0.3h-2.2V255z"/>
|
360 |
+
<path fill="#FFFFFF" d="M135.3,248.9h1.8l2,5.6h0l1.9-5.6h1.7v7.1h-1.2v-5.5h0l-2,5.5h-1l-2-5.5h0v5.5h-1.2V248.9z"/>
|
361 |
+
<path fill="#FFFFFF" d="M144.2,248.9h1.2v7.1h-1.2V248.9z"/>
|
362 |
+
<path fill="#FFFFFF" d="M146.3,248.9h5.8v1.1h-2.3v6.1h-1.2v-6.1h-2.3V248.9z"/>
|
363 |
+
</g>
|
364 |
+
</g>
|
365 |
+
</svg>
|
templates/17/preview-thumb.svg
ADDED
@@ -0,0 +1,414 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 265 300" enable-background="new 0 0 265 300" xml:space="preserve">
|
5 |
+
<g>
|
6 |
+
<path id="Rectangle_873" fill="#FFFFFF" d="M5,0h255c2.8,0,5,2.2,5,5v290c0,2.8-2.2,5-5,5H5c-2.8,0-5-2.2-5-5V5C0,2.2,2.2,0,5,0z"
|
7 |
+
/>
|
8 |
+
<path id="Rectangle_874" fill="#E5E9EA" d="M42.5,59h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
9 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,60.1,41.1,59,42.5,59z"/>
|
10 |
+
<path id="Rectangle_875" fill="#E5E9EA" d="M42.5,108h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
11 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,109.1,41.1,108,42.5,108z"/>
|
12 |
+
<path id="Rectangle_882" fill="#E5E9EA" d="M142.5,108h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
13 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C140,109.1,141.1,108,142.5,108z"/>
|
14 |
+
<path id="Rectangle_880" fill="#E5E9EA" d="M142.5,59h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
15 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C140,60.1,141.1,59,142.5,59z"/>
|
16 |
+
<path id="Rectangle_876" fill="#E5E9EA" d="M42.5,162h15c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-15
|
17 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,163.1,41.1,162,42.5,162z"/>
|
18 |
+
<path id="Rectangle_877" fill="#E5E9EA" d="M42.5,179h15c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-15
|
19 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,180.1,41.1,179,42.5,179z"/>
|
20 |
+
<path id="Rectangle_878" fill="#E5E9EA" d="M67.5,162h65c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-65
|
21 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C65,163.1,66.1,162,67.5,162z"/>
|
22 |
+
<path id="Rectangle_879" fill="#E5E9EA" d="M67.5,179h125c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-125
|
23 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C65,180.1,66.1,179,67.5,179z"/>
|
24 |
+
<g enable-background="new ">
|
25 |
+
<path fill="#565656" d="M46.6,42.4v1h-4.5v2.7H46v1h-3.9V51h-1.1v-8.6H46.6z"/>
|
26 |
+
<path fill="#565656" d="M47.7,43.7v-1.2h1v1.2H47.7z M48.7,44.8V51h-1v-6.2H48.7z"/>
|
27 |
+
<path fill="#565656" d="M51.2,44.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
28 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1V51h-1v-6.2H51.2z"/>
|
29 |
+
<path fill="#565656" d="M55.1,49.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
30 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
31 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
32 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
33 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
34 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
35 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
36 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
37 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
38 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C54.9,49.3,55,49.5,55.1,49.6z"/>
|
39 |
+
<path fill="#565656" d="M63,44.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0H63V51h-0.8
|
40 |
+
c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9H63z"/>
|
41 |
+
<path fill="#565656" d="M68.8,42.4l4.5,6.9h0v-6.9h1.1V51h-1.2l-4.5-6.9h0V51h-1.1v-8.6H68.8z"/>
|
42 |
+
<path fill="#565656" d="M81.6,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
43 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
44 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
45 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
46 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2S77,46.3,77,46.7h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
47 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
48 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51z M79.9,47.8
|
49 |
+
c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
50 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
51 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V47.8z"/>
|
52 |
+
<path fill="#565656" d="M83.5,44.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
53 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
54 |
+
c0.1,0.2,0.1,0.5,0.1,0.8V51h-1v-4.1c0-0.2,0-0.4,0-0.5S90.1,46.1,90,46c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
55 |
+
c-0.5,0-0.9,0.1-1.2,0.4s-0.4,0.7-0.4,1.2V51h-1v-4.1c0-0.2,0-0.4-0.1-0.6c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3
|
56 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4s-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5V51h-1
|
57 |
+
v-6.2H83.5z"/>
|
58 |
+
<path fill="#565656" d="M97.2,50.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
59 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
60 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
61 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
62 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C97.9,49.7,97.6,50.3,97.2,50.6z M96.9,46.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
63 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
64 |
+
C97.1,47.1,97,46.8,96.9,46.6z"/>
|
65 |
+
</g>
|
66 |
+
<g enable-background="new ">
|
67 |
+
<path fill="#565656" d="M46.9,91.4v1h-4.8v2.7h4.5v1h-4.5v3h4.8v1h-6v-8.6H46.9z"/>
|
68 |
+
<path fill="#565656" d="M49.1,93.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
69 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
70 |
+
c0.1,0.2,0.1,0.5,0.1,0.8v4.5h-1v-4.1c0-0.2,0-0.4,0-0.5s-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
71 |
+
c-0.5,0-0.9,0.1-1.2,0.4S53,95.7,53,96.1v3.9h-1v-4.1c0-0.2,0-0.4-0.1-0.6c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3
|
72 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4s-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5v3.9h-1
|
73 |
+
v-6.2H49.1z"/>
|
74 |
+
<path fill="#565656" d="M63.8,100c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
75 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
76 |
+
C58.1,99,58,98.7,58,98.4c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
77 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
78 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
79 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
80 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V100z M62.2,96.8
|
81 |
+
C62,96.9,61.9,97,61.7,97s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
82 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
83 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V96.8z"/>
|
84 |
+
<path fill="#565656" d="M64.8,92.7v-1.2h1v1.2H64.8z M65.9,93.8v6.2h-1v-6.2H65.9z"/>
|
85 |
+
<path fill="#565656" d="M68.5,91.4v8.6h-1v-8.6H68.5z"/>
|
86 |
+
</g>
|
87 |
+
<g enable-background="new ">
|
88 |
+
<path fill="#565656" d="M144.7,91.4c0.9,0,1.5,0.2,2,0.7c0.4,0.4,0.7,1.1,0.7,1.9s-0.2,1.4-0.7,1.9c-0.4,0.4-1.1,0.7-2,0.7h-2.6
|
89 |
+
v3.5h-1.1v-8.6H144.7z M144.3,95.5c0.6,0,1.1-0.1,1.4-0.4c0.3-0.3,0.4-0.7,0.4-1.2s-0.2-0.9-0.4-1.2c-0.3-0.3-0.8-0.4-1.4-0.4
|
90 |
+
h-2.2v3.1H144.3z"/>
|
91 |
+
<path fill="#565656" d="M149.6,91.4v3.3h0c0.1-0.2,0.2-0.4,0.3-0.5s0.3-0.2,0.5-0.3s0.4-0.1,0.6-0.2c0.2,0,0.4-0.1,0.6-0.1
|
92 |
+
c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5c0.2,0.2,0.3,0.4,0.4,0.7s0.1,0.6,0.1,0.9v4.1h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9
|
93 |
+
c-0.2-0.2-0.5-0.3-0.9-0.3c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8v3.5
|
94 |
+
h-1v-8.6H149.6z"/>
|
95 |
+
<path fill="#565656" d="M155.1,95.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7s0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
96 |
+
c0.4,0.2,0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
97 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7c-0.4,0.2-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1
|
98 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S154.9,96,155.1,95.6z M156.1,97.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
99 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.3,0,0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7s0.2-0.6,0.2-1s-0.1-0.7-0.2-1
|
100 |
+
s-0.2-0.5-0.4-0.7s-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5s-0.3,0.4-0.4,0.7
|
101 |
+
s-0.1,0.6-0.1,1S156,97.6,156.1,97.9z"/>
|
102 |
+
<path fill="#565656" d="M163.1,93.8v1h0c0.4-0.8,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5
|
103 |
+
c0.2,0.2,0.3,0.4,0.4,0.7c0.1,0.3,0.1,0.6,0.1,0.9v4.1h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.3-0.9-0.3
|
104 |
+
c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8v3.5h-1v-6.2H163.1z"/>
|
105 |
+
<path fill="#565656" d="M173.2,99.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
106 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
107 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
108 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
109 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C173.9,98.7,173.6,99.3,173.2,99.6z M172.9,95.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
110 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4c-0.2,0.2-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
111 |
+
C173.1,96.1,173,95.8,172.9,95.6z"/>
|
112 |
+
</g>
|
113 |
+
<g enable-background="new ">
|
114 |
+
<path fill="#565656" d="M44.7,140.4c0.9,0,1.5,0.2,2,0.7c0.4,0.4,0.7,1.1,0.7,1.9s-0.2,1.4-0.7,1.9c-0.4,0.4-1.1,0.7-2,0.7h-2.6
|
115 |
+
v3.5h-1.1v-8.6H44.7z M44.3,144.5c0.6,0,1.1-0.1,1.4-0.4c0.3-0.3,0.5-0.7,0.5-1.2s-0.2-0.9-0.5-1.2c-0.3-0.3-0.8-0.4-1.4-0.4h-2.2
|
116 |
+
v3.1H44.3z"/>
|
117 |
+
<path fill="#565656" d="M49.5,142.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
118 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1v2.8h-1v-6.2H49.5z"/>
|
119 |
+
<path fill="#565656" d="M56.7,148.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
120 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
121 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
122 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
123 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C57.5,147.7,57.2,148.3,56.7,148.6z M56.5,144.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
124 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
125 |
+
C56.6,145.1,56.6,144.8,56.5,144.6z"/>
|
126 |
+
<path fill="#565656" d="M58.1,143.7v-0.9h1v-0.9c0-0.5,0.1-0.9,0.4-1.1c0.3-0.3,0.7-0.4,1.3-0.4c0.1,0,0.2,0,0.3,0
|
127 |
+
c0.1,0,0.2,0,0.3,0.1v0.9c-0.1,0-0.2-0.1-0.3-0.1s-0.2,0-0.3,0c-0.2,0-0.4,0-0.6,0.1c-0.1,0.1-0.2,0.3-0.2,0.6v0.9h1.2v0.9h-1.2
|
128 |
+
v5.3h-1v-5.3H58.1z"/>
|
129 |
+
<path fill="#565656" d="M66.7,148.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
130 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
131 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
132 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
133 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C67.5,147.7,67.2,148.3,66.7,148.6z M66.5,144.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
134 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
135 |
+
C66.6,145.1,66.6,144.8,66.5,144.6z"/>
|
136 |
+
<path fill="#565656" d="M69.7,142.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
137 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1v2.8h-1v-6.2H69.7z"/>
|
138 |
+
<path fill="#565656" d="M73.7,142.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
139 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1v2.8h-1v-6.2H73.7z"/>
|
140 |
+
<path fill="#565656" d="M80.9,148.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
141 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
142 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
143 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
144 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C81.7,147.7,81.4,148.3,80.9,148.6z M80.7,144.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
145 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
146 |
+
C80.8,145.1,80.8,144.8,80.7,144.6z"/>
|
147 |
+
<path fill="#565656" d="M87.5,149v-0.8h0c-0.2,0.3-0.4,0.6-0.8,0.7c-0.4,0.2-0.8,0.2-1.2,0.2c-0.5,0-0.9-0.1-1.3-0.3
|
148 |
+
c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.5-1c-0.1-0.4-0.2-0.8-0.2-1.2c0-0.4,0.1-0.9,0.2-1.2c0.1-0.4,0.3-0.7,0.5-1
|
149 |
+
c0.2-0.3,0.5-0.5,0.9-0.7s0.8-0.3,1.2-0.3c0.2,0,0.3,0,0.5,0s0.4,0.1,0.6,0.2s0.4,0.2,0.5,0.3s0.3,0.3,0.4,0.5h0v-3.2h1v8.6H87.5z
|
150 |
+
M83.8,146.8c0.1,0.3,0.2,0.5,0.3,0.7c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2c0.3,0,0.6-0.1,0.9-0.2
|
151 |
+
c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.5,0.3-0.8c0.1-0.3,0.1-0.6,0.1-0.9c0-0.3,0-0.6-0.1-0.9c-0.1-0.3-0.2-0.5-0.3-0.8
|
152 |
+
c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5c-0.1,0.2-0.2,0.5-0.3,0.8
|
153 |
+
c-0.1,0.3-0.1,0.6-0.1,0.9C83.7,146.2,83.8,146.5,83.8,146.8z"/>
|
154 |
+
<path fill="#565656" d="M95.2,140.4l2.7,7.2l2.7-7.2h1.6v8.6h-1.1v-7.1h0l-2.7,7.1h-1l-2.7-7.1h0v7.1h-1.1v-8.6H95.2z"/>
|
155 |
+
<path fill="#565656" d="M108.3,148.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
156 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
157 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
158 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
159 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C109,147.7,108.7,148.3,108.3,148.6z M108,144.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
160 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
161 |
+
C108.2,145.1,108.1,144.8,108,144.6z"/>
|
162 |
+
<path fill="#565656" d="M113,142.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3c0,0.1,0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0h0.5
|
163 |
+
v0.9h-0.8c-0.3,0-0.5,0-0.7-0.1c-0.2,0-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1
|
164 |
+
v-1.9h1v1.9H113z"/>
|
165 |
+
<path fill="#565656" d="M115.1,140.4v3.3h0c0.1-0.2,0.2-0.4,0.3-0.5c0.1-0.1,0.3-0.2,0.5-0.3s0.4-0.1,0.6-0.2
|
166 |
+
c0.2,0,0.4-0.1,0.6-0.1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5s0.3,0.4,0.4,0.7s0.1,0.6,0.1,0.9v4.1h-1v-4.2
|
167 |
+
c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.3-0.9-0.3c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6
|
168 |
+
c-0.1,0.2-0.1,0.5-0.1,0.8v3.5h-1v-8.6H115.1z"/>
|
169 |
+
<path fill="#565656" d="M120.6,144.6c0.1-0.4,0.3-0.7,0.6-1s0.6-0.5,0.9-0.7c0.4-0.2,0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
170 |
+
s0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
171 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
172 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S120.5,145,120.6,144.6z M121.7,146.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
173 |
+
c0.2,0.1,0.5,0.2,0.8,0.2s0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7c0.1-0.3,0.2-0.6,0.2-1s0-0.7-0.2-1
|
174 |
+
c-0.1-0.3-0.2-0.5-0.4-0.7s-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2s-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
175 |
+
c-0.2,0.2-0.3,0.4-0.4,0.7c-0.1,0.3-0.1,0.6-0.1,1S121.6,146.6,121.7,146.9z"/>
|
176 |
+
<path fill="#565656" d="M132.2,149v-0.8h0c-0.2,0.3-0.4,0.6-0.8,0.7c-0.4,0.2-0.8,0.2-1.2,0.2c-0.5,0-0.9-0.1-1.3-0.3
|
177 |
+
c-0.4-0.2-0.7-0.4-0.9-0.7c-0.2-0.3-0.4-0.6-0.5-1c-0.1-0.4-0.2-0.8-0.2-1.2c0-0.4,0.1-0.9,0.2-1.2c0.1-0.4,0.3-0.7,0.5-1
|
178 |
+
c0.2-0.3,0.5-0.5,0.9-0.7c0.4-0.2,0.8-0.3,1.2-0.3c0.2,0,0.3,0,0.5,0c0.2,0,0.4,0.1,0.6,0.2s0.4,0.2,0.5,0.3s0.3,0.3,0.4,0.5h0
|
179 |
+
v-3.2h1v8.6H132.2z M128.5,146.8c0.1,0.3,0.2,0.5,0.3,0.7c0.2,0.2,0.4,0.4,0.6,0.5s0.5,0.2,0.9,0.2c0.3,0,0.6-0.1,0.9-0.2
|
180 |
+
c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.5,0.3-0.8c0.1-0.3,0.1-0.6,0.1-0.9c0-0.3,0-0.6-0.1-0.9c-0.1-0.3-0.2-0.5-0.3-0.8
|
181 |
+
c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5c-0.1,0.2-0.2,0.5-0.3,0.8
|
182 |
+
c-0.1,0.3-0.1,0.6-0.1,0.9C128.4,146.2,128.5,146.5,128.5,146.8z"/>
|
183 |
+
<path fill="#565656" d="M138,144.6c0.1-0.4,0.3-0.7,0.6-1s0.6-0.5,0.9-0.7c0.4-0.2,0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
184 |
+
s0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
185 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
186 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S137.9,145,138,144.6z M139,146.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
187 |
+
c0.2,0.1,0.5,0.2,0.8,0.2s0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7c0.1-0.3,0.2-0.6,0.2-1s0-0.7-0.2-1
|
188 |
+
c-0.1-0.3-0.2-0.5-0.4-0.7s-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2s-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
189 |
+
c-0.2,0.2-0.3,0.4-0.4,0.7c-0.1,0.3-0.1,0.6-0.1,1S138.9,146.6,139,146.9z"/>
|
190 |
+
<path fill="#565656" d="M144.4,143.7v-0.9h1v-0.9c0-0.5,0.1-0.9,0.4-1.1c0.3-0.3,0.7-0.4,1.3-0.4c0.1,0,0.2,0,0.3,0
|
191 |
+
c0.1,0,0.2,0,0.3,0.1v0.9c-0.1,0-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0c-0.2,0-0.4,0-0.6,0.1c-0.1,0.1-0.2,0.3-0.2,0.6v0.9h1.2v0.9
|
192 |
+
h-1.2v5.3h-1v-5.3H144.4z"/>
|
193 |
+
<path fill="#565656" d="M157.2,141.6c-0.4-0.3-1-0.5-1.6-0.5c-0.5,0-1,0.1-1.3,0.3c-0.4,0.2-0.7,0.5-0.9,0.8s-0.4,0.7-0.5,1.1
|
194 |
+
c-0.1,0.4-0.2,0.8-0.2,1.3c0,0.5,0.1,1,0.2,1.4c0.1,0.4,0.3,0.8,0.5,1.1c0.2,0.3,0.5,0.6,0.9,0.8c0.4,0.2,0.8,0.3,1.3,0.3
|
195 |
+
c0.4,0,0.7-0.1,1-0.2c0.3-0.1,0.5-0.3,0.8-0.5c0.2-0.2,0.4-0.5,0.5-0.8c0.1-0.3,0.2-0.6,0.2-1h1.1c-0.1,1.1-0.5,1.9-1.1,2.5
|
196 |
+
s-1.5,0.9-2.6,0.9c-0.7,0-1.2-0.1-1.7-0.3c-0.5-0.2-0.9-0.5-1.2-0.9s-0.6-0.9-0.7-1.4s-0.2-1.1-0.2-1.8s0.1-1.2,0.3-1.8
|
197 |
+
s0.4-1,0.8-1.4c0.3-0.4,0.8-0.7,1.3-1c0.5-0.2,1.1-0.4,1.7-0.4c0.4,0,0.9,0.1,1.3,0.2s0.8,0.3,1.1,0.5c0.3,0.2,0.6,0.5,0.8,0.9
|
198 |
+
c0.2,0.3,0.3,0.8,0.4,1.2h-1.1C158,142.4,157.7,141.9,157.2,141.6z"/>
|
199 |
+
<path fill="#565656" d="M160.4,144.6c0.1-0.4,0.3-0.7,0.6-1s0.6-0.5,0.9-0.7c0.4-0.2,0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
200 |
+
s0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
201 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
202 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S160.3,145,160.4,144.6z M161.5,146.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
203 |
+
c0.2,0.1,0.5,0.2,0.8,0.2s0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7c0.1-0.3,0.2-0.6,0.2-1s0-0.7-0.2-1
|
204 |
+
c-0.1-0.3-0.2-0.5-0.4-0.7s-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2s-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
205 |
+
c-0.2,0.2-0.3,0.4-0.4,0.7c-0.1,0.3-0.1,0.6-0.1,1S161.4,146.6,161.5,146.9z"/>
|
206 |
+
<path fill="#565656" d="M168.4,142.8v1h0c0.4-0.8,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5
|
207 |
+
c0.2,0.2,0.3,0.4,0.4,0.7c0.1,0.3,0.1,0.6,0.1,0.9v4.1h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.3-0.9-0.3
|
208 |
+
c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8v3.5h-1v-6.2H168.4z"/>
|
209 |
+
<path fill="#565656" d="M176.8,142.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3c0,0.1,0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0
|
210 |
+
h0.5v0.9H176c-0.3,0-0.5,0-0.7-0.1c-0.2,0-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1
|
211 |
+
v-1.9h1v1.9H176.8z"/>
|
212 |
+
<path fill="#565656" d="M183.4,149c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
213 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
214 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5s0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
215 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
216 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
217 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
218 |
+
s0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V149z M181.7,145.8c-0.1,0.1-0.3,0.2-0.5,0.2
|
219 |
+
c-0.2,0-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2s-0.3,0.2-0.4,0.3c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4
|
220 |
+
c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1c0.2-0.1,0.4-0.2,0.6-0.3
|
221 |
+
c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V145.8z"/>
|
222 |
+
<path fill="#565656" d="M188.1,143.9c-0.3-0.2-0.6-0.3-1-0.3c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
223 |
+
c-0.1,0.2-0.3,0.5-0.3,0.8s-0.1,0.6-0.1,0.9c0,0.3,0,0.6,0.1,0.8c0.1,0.3,0.2,0.5,0.3,0.7s0.3,0.4,0.6,0.5
|
224 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.5,0,0.9-0.1,1.2-0.4c0.3-0.3,0.5-0.6,0.5-1.1h1c-0.1,0.8-0.4,1.4-0.9,1.8c-0.5,0.4-1.1,0.6-1.9,0.6
|
225 |
+
c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.6s-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3
|
226 |
+
c0.1-0.4,0.3-0.8,0.5-1.1c0.2-0.3,0.5-0.5,0.9-0.7c0.4-0.2,0.8-0.3,1.3-0.3c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.4
|
227 |
+
c0.2,0.2,0.4,0.4,0.6,0.7c0.2,0.3,0.2,0.6,0.3,1h-1.1C188.5,144.4,188.3,144.1,188.1,143.9z"/>
|
228 |
+
<path fill="#565656" d="M193.4,142.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.4,0
|
229 |
+
h0.5v0.9h-0.8c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9
|
230 |
+
h1v1.9H193.4z"/>
|
231 |
+
</g>
|
232 |
+
<g enable-background="new ">
|
233 |
+
<path fill="#565656" d="M44.7,206.4c0.9,0,1.5,0.2,2,0.7c0.4,0.4,0.7,1.1,0.7,1.9s-0.2,1.4-0.7,1.9c-0.4,0.4-1.1,0.7-2,0.7h-2.6
|
234 |
+
v3.5h-1.1v-8.6H44.7z M44.3,210.5c0.6,0,1.1-0.1,1.4-0.4c0.3-0.3,0.5-0.7,0.5-1.2s-0.2-0.9-0.5-1.2c-0.3-0.3-0.8-0.4-1.4-0.4h-2.2
|
235 |
+
v3.1H44.3z"/>
|
236 |
+
<path fill="#565656" d="M49.5,208.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
237 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1v2.8h-1v-6.2H49.5z"/>
|
238 |
+
<path fill="#565656" d="M56.7,214.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
239 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
240 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
241 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
242 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C57.5,213.7,57.2,214.3,56.7,214.6z M56.5,210.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
243 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
244 |
+
C56.6,211.1,56.6,210.8,56.5,210.6z"/>
|
245 |
+
<path fill="#565656" d="M58.1,209.7v-0.9h1v-0.9c0-0.5,0.1-0.9,0.4-1.1c0.3-0.3,0.7-0.4,1.3-0.4c0.1,0,0.2,0,0.3,0
|
246 |
+
c0.1,0,0.2,0,0.3,0.1v0.9c-0.1,0-0.2-0.1-0.3-0.1s-0.2,0-0.3,0c-0.2,0-0.4,0-0.6,0.1c-0.1,0.1-0.2,0.3-0.2,0.6v0.9h1.2v0.9h-1.2
|
247 |
+
v5.3h-1v-5.3H58.1z"/>
|
248 |
+
<path fill="#565656" d="M66.7,214.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
249 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
250 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
251 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
252 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C67.5,213.7,67.2,214.3,66.7,214.6z M66.5,210.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
253 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
254 |
+
C66.6,211.1,66.6,210.8,66.5,210.6z"/>
|
255 |
+
<path fill="#565656" d="M69.7,208.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
256 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1v2.8h-1v-6.2H69.7z"/>
|
257 |
+
<path fill="#565656" d="M73.7,208.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
258 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1v2.8h-1v-6.2H73.7z"/>
|
259 |
+
<path fill="#565656" d="M80.9,214.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
260 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
261 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
262 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
263 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C81.7,213.7,81.4,214.3,80.9,214.6z M80.7,210.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
264 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
265 |
+
C80.8,211.1,80.8,210.8,80.7,210.6z"/>
|
266 |
+
<path fill="#565656" d="M87.5,215v-0.8h0c-0.2,0.3-0.4,0.6-0.8,0.7c-0.4,0.2-0.8,0.2-1.2,0.2c-0.5,0-0.9-0.1-1.3-0.3
|
267 |
+
c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.5-1c-0.1-0.4-0.2-0.8-0.2-1.2c0-0.4,0.1-0.9,0.2-1.2c0.1-0.4,0.3-0.7,0.5-1
|
268 |
+
c0.2-0.3,0.5-0.5,0.9-0.7s0.8-0.3,1.2-0.3c0.2,0,0.3,0,0.5,0s0.4,0.1,0.6,0.2s0.4,0.2,0.5,0.3s0.3,0.3,0.4,0.5h0v-3.2h1v8.6H87.5z
|
269 |
+
M83.8,212.8c0.1,0.3,0.2,0.5,0.3,0.7c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2c0.3,0,0.6-0.1,0.9-0.2
|
270 |
+
c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.5,0.3-0.8c0.1-0.3,0.1-0.6,0.1-0.9c0-0.3,0-0.6-0.1-0.9c-0.1-0.3-0.2-0.5-0.3-0.8
|
271 |
+
c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5c-0.1,0.2-0.2,0.5-0.3,0.8
|
272 |
+
c-0.1,0.3-0.1,0.6-0.1,0.9C83.7,212.2,83.8,212.5,83.8,212.8z"/>
|
273 |
+
<path fill="#565656" d="M96.1,208.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0h0.5v0.9
|
274 |
+
h-0.8c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9
|
275 |
+
H96.1z"/>
|
276 |
+
<path fill="#565656" d="M99.7,215.8c-0.1,0.3-0.2,0.6-0.4,0.8c-0.1,0.2-0.2,0.4-0.4,0.5c-0.1,0.1-0.3,0.2-0.5,0.3
|
277 |
+
c-0.2,0.1-0.4,0.1-0.6,0.1c-0.1,0-0.2,0-0.4,0s-0.2,0-0.3-0.1v-0.9c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3,0c0.2,0,0.4,0,0.5-0.2
|
278 |
+
c0.1-0.1,0.2-0.2,0.3-0.4l0.4-1l-2.5-6.2h1.2l1.8,5.1h0l1.7-5.1h1.1L99.7,215.8z"/>
|
279 |
+
<path fill="#565656" d="M104.3,208.8v0.8h0c0.2-0.3,0.4-0.6,0.8-0.8c0.4-0.2,0.8-0.2,1.2-0.2c0.5,0,0.9,0.1,1.3,0.3
|
280 |
+
s0.7,0.4,0.9,0.7c0.2,0.3,0.4,0.6,0.5,1c0.1,0.4,0.2,0.8,0.2,1.2c0,0.4-0.1,0.9-0.2,1.2c-0.1,0.4-0.3,0.7-0.5,1s-0.5,0.5-0.9,0.7
|
281 |
+
c-0.4,0.2-0.8,0.3-1.2,0.3c-0.2,0-0.3,0-0.5,0s-0.4-0.1-0.6-0.2c-0.2-0.1-0.4-0.2-0.5-0.3c-0.2-0.1-0.3-0.3-0.4-0.5h0v3.2h-1v-8.6
|
282 |
+
H104.3z M107.9,211c-0.1-0.3-0.2-0.5-0.3-0.7c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2
|
283 |
+
c-0.2,0.1-0.4,0.3-0.6,0.5c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,0.9c0,0.3,0,0.6,0.1,0.9c0.1,0.3,0.2,0.5,0.3,0.8
|
284 |
+
c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2c0.4,0,0.6-0.1,0.9-0.2s0.4-0.3,0.6-0.5s0.2-0.5,0.3-0.8
|
285 |
+
c0.1-0.3,0.1-0.6,0.1-0.9C108.1,211.6,108,211.3,107.9,211z"/>
|
286 |
+
<path fill="#565656" d="M114.7,214.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
287 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
288 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
289 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
290 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C115.5,213.7,115.2,214.3,114.7,214.6z M114.5,210.6c-0.1-0.2-0.2-0.4-0.4-0.6
|
291 |
+
c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6
|
292 |
+
s-0.1,0.4-0.2,0.7h3.6C114.6,211.1,114.6,210.8,114.5,210.6z"/>
|
293 |
+
<path fill="#565656" d="M120,210.6c0.1-0.4,0.3-0.7,0.6-1s0.6-0.5,0.9-0.7c0.4-0.2,0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
294 |
+
s0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
295 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
296 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S119.8,211,120,210.6z M121,212.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
297 |
+
c0.2,0.1,0.5,0.2,0.8,0.2s0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7c0.1-0.3,0.2-0.6,0.2-1s0-0.7-0.2-1
|
298 |
+
c-0.1-0.3-0.2-0.5-0.4-0.7s-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2s-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
299 |
+
c-0.2,0.2-0.3,0.4-0.4,0.7c-0.1,0.3-0.1,0.6-0.1,1S120.9,212.6,121,212.9z"/>
|
300 |
+
<path fill="#565656" d="M126.4,209.7v-0.9h1v-0.9c0-0.5,0.1-0.9,0.4-1.1c0.3-0.3,0.7-0.4,1.3-0.4c0.1,0,0.2,0,0.3,0
|
301 |
+
c0.1,0,0.2,0,0.3,0.1v0.9c-0.1,0-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0c-0.2,0-0.4,0-0.6,0.1c-0.1,0.1-0.2,0.3-0.2,0.6v0.9h1.2v0.9
|
302 |
+
h-1.2v5.3h-1v-5.3H126.4z"/>
|
303 |
+
<path fill="#565656" d="M134.7,213.6c0.1,0.2,0.2,0.3,0.4,0.4s0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
304 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3c0.1-0.1,0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.5-0.2-0.8-0.3
|
305 |
+
c-0.3-0.1-0.6-0.2-1-0.2s-0.7-0.2-1-0.3s-0.5-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
306 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
307 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
308 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2s-0.1,0.2-0.1,0.4
|
309 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
310 |
+
s0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
311 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4s-0.4-0.4-0.6-0.6
|
312 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C134.5,213.3,134.6,213.5,134.7,213.6z"/>
|
313 |
+
<path fill="#565656" d="M144.3,214.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
314 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.7-0.2,1.2-0.2
|
315 |
+
c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6c0,0.3,0,0.5,0.1,0.8
|
316 |
+
c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3c0.3-0.2,0.5-0.5,0.5-0.9h1
|
317 |
+
C145,213.7,144.7,214.3,144.3,214.6z M144,210.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1
|
318 |
+
c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6C144.2,211.1,144.1,210.8,144,210.6z"/>
|
319 |
+
<path fill="#565656" d="M147.3,208.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
320 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1v2.8h-1v-6.2H147.3z"/>
|
321 |
+
<path fill="#565656" d="M152,215l-2.3-6.2h1.1l1.7,5.2h0l1.7-5.2h1.1l-2.3,6.2H152z"/>
|
322 |
+
<path fill="#565656" d="M156.4,207.7v-1.2h1v1.2H156.4z M157.4,208.8v6.2h-1v-6.2H157.4z"/>
|
323 |
+
<path fill="#565656" d="M162.7,209.9c-0.3-0.2-0.6-0.3-1-0.3c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
324 |
+
c-0.1,0.2-0.3,0.5-0.3,0.8s-0.1,0.6-0.1,0.9c0,0.3,0,0.6,0.1,0.8c0.1,0.3,0.2,0.5,0.3,0.7s0.3,0.4,0.6,0.5
|
325 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.5,0,0.9-0.1,1.2-0.4c0.3-0.3,0.5-0.6,0.5-1.1h1c-0.1,0.8-0.4,1.4-0.9,1.8c-0.5,0.4-1.1,0.6-1.9,0.6
|
326 |
+
c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.6s-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3
|
327 |
+
c0.1-0.4,0.3-0.8,0.5-1.1c0.2-0.3,0.5-0.5,0.9-0.7c0.4-0.2,0.8-0.3,1.3-0.3c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.4
|
328 |
+
c0.2,0.2,0.4,0.4,0.6,0.7c0.2,0.3,0.2,0.6,0.3,1h-1.1C163.1,210.4,163,210.1,162.7,209.9z"/>
|
329 |
+
<path fill="#565656" d="M169.8,214.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
330 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
331 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
332 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
333 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C170.6,213.7,170.3,214.3,169.8,214.6z M169.6,210.6c-0.1-0.2-0.2-0.4-0.4-0.6
|
334 |
+
c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4c-0.2,0.2-0.3,0.3-0.4,0.6
|
335 |
+
s-0.1,0.4-0.2,0.7h3.6C169.7,211.1,169.7,210.8,169.6,210.6z"/>
|
336 |
+
</g>
|
337 |
+
<g enable-background="new ">
|
338 |
+
<path fill="#565656" d="M142.1,42.4V50h4.5v1h-5.7v-8.6H142.1z"/>
|
339 |
+
<path fill="#565656" d="M152.9,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
340 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
341 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
342 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
343 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
344 |
+
s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1s0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5c0.1,0.2,0.2,0.5,0.2,0.9
|
345 |
+
v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51z M151.3,47.8c-0.1,0.1-0.3,0.2-0.5,0.2
|
346 |
+
c-0.2,0-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.4-0.2,0.6
|
347 |
+
c0,0.2,0,0.3,0.1,0.4c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
348 |
+
c0.2-0.1,0.4-0.2,0.6-0.3s0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V47.8z"/>
|
349 |
+
<path fill="#565656" d="M154.7,49.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
350 |
+
s0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3c0.1-0.1,0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
351 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
352 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.6-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
353 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3s-0.3-0.1-0.5-0.2
|
354 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
355 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
356 |
+
s0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9s-0.4,0.4-0.6,0.6
|
357 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
358 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C154.5,49.3,154.6,49.5,154.7,49.6z"/>
|
359 |
+
<path fill="#565656" d="M162.5,44.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3c0,0.1,0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0h0.5
|
360 |
+
V51h-0.8c-0.3,0-0.5,0-0.7-0.1c-0.2,0-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1
|
361 |
+
v-1.9h1v1.9H162.5z"/>
|
362 |
+
<path fill="#565656" d="M168.4,42.4l4.5,6.9h0v-6.9h1.1V51h-1.2l-4.5-6.9h0V51h-1.1v-8.6H168.4z"/>
|
363 |
+
<path fill="#565656" d="M181.2,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
364 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
365 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5s0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
366 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
367 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
368 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
369 |
+
s0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51z M179.5,47.8c-0.1,0.1-0.3,0.2-0.5,0.2
|
370 |
+
c-0.2,0-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2s-0.3,0.2-0.4,0.3c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4
|
371 |
+
c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1c0.2-0.1,0.4-0.2,0.6-0.3
|
372 |
+
c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V47.8z"/>
|
373 |
+
<path fill="#565656" d="M183.1,44.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
374 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
375 |
+
c0.1,0.2,0.1,0.5,0.1,0.8V51h-1v-4.1c0-0.2,0-0.4,0-0.5s-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
376 |
+
c-0.5,0-0.9,0.1-1.2,0.4s-0.4,0.7-0.4,1.2V51h-1v-4.1c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4s-0.2-0.2-0.4-0.3
|
377 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4c-0.1,0.2-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5
|
378 |
+
V51h-1v-6.2H183.1z"/>
|
379 |
+
<path fill="#565656" d="M196.7,50.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
380 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.7-0.2,1.2-0.2
|
381 |
+
c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6c0,0.3,0,0.5,0.1,0.8
|
382 |
+
c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3s0.5-0.5,0.5-0.9h1
|
383 |
+
C197.5,49.7,197.2,50.3,196.7,50.6z M196.5,46.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1
|
384 |
+
c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4c-0.2,0.2-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6C196.6,47.1,196.6,46.8,196.5,46.6
|
385 |
+
z"/>
|
386 |
+
</g>
|
387 |
+
<path id="Rectangle_881" fill="#FF8D91" d="M85,238h95c2.8,0,5,2.2,5,5v17c0,2.8-2.2,5-5,5H85c-2.8,0-5-2.2-5-5v-17
|
388 |
+
C80,240.2,82.2,238,85,238z"/>
|
389 |
+
<g enable-background="new ">
|
390 |
+
<path fill="#FFFFFF" d="M115.4,253.6c0,0.3,0,0.5,0.1,0.7s0.2,0.4,0.4,0.5c0.2,0.1,0.4,0.2,0.6,0.3s0.5,0.1,0.7,0.1
|
391 |
+
c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.1-0.3,0.1-0.4c0-0.3-0.1-0.5-0.2-0.6
|
392 |
+
s-0.3-0.2-0.4-0.3c-0.3-0.1-0.5-0.2-0.9-0.3c-0.3-0.1-0.8-0.2-1.2-0.3c-0.3-0.1-0.6-0.2-0.8-0.3c-0.2-0.1-0.4-0.3-0.5-0.4
|
393 |
+
c-0.1-0.2-0.2-0.3-0.3-0.5s-0.1-0.4-0.1-0.5c0-0.4,0.1-0.7,0.2-0.9c0.1-0.3,0.3-0.5,0.6-0.7c0.2-0.2,0.5-0.3,0.8-0.4
|
394 |
+
c0.3-0.1,0.6-0.1,1-0.1c0.4,0,0.7,0,1.1,0.1s0.6,0.2,0.9,0.4c0.2,0.2,0.4,0.4,0.6,0.7s0.2,0.6,0.2,1h-1.2c0-0.5-0.2-0.8-0.5-1
|
395 |
+
c-0.3-0.2-0.6-0.3-1.1-0.3c-0.1,0-0.3,0-0.5,0s-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.2-0.3,0.3c-0.1,0.1-0.1,0.3-0.1,0.4
|
396 |
+
c0,0.3,0.1,0.5,0.2,0.6c0.2,0.1,0.4,0.3,0.6,0.3c0,0,0.1,0,0.3,0.1c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.1,0.7,0.2
|
397 |
+
s0.4,0.1,0.5,0.1c0.2,0.1,0.4,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.4c0.1,0.2,0.2,0.3,0.3,0.5s0.1,0.4,0.1,0.6c0,0.4-0.1,0.7-0.2,1
|
398 |
+
c-0.2,0.3-0.4,0.5-0.6,0.7c-0.3,0.2-0.6,0.3-0.9,0.4s-0.7,0.1-1,0.1c-0.4,0-0.8,0-1.1-0.2c-0.4-0.1-0.7-0.3-0.9-0.5
|
399 |
+
c-0.3-0.2-0.5-0.5-0.6-0.8c-0.2-0.3-0.2-0.7-0.2-1.1H115.4z"/>
|
400 |
+
<path fill="#FFFFFF" d="M121,248.9h1.2v4.2c0,0.2,0,0.5,0,0.7c0,0.2,0.1,0.5,0.2,0.7c0.1,0.2,0.3,0.4,0.5,0.5
|
401 |
+
c0.2,0.1,0.5,0.2,0.9,0.2c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.5-0.5c0.1-0.2,0.2-0.4,0.2-0.7c0-0.2,0-0.5,0-0.7v-4.2h1.2v4.6
|
402 |
+
c0,0.5-0.1,0.9-0.2,1.2c-0.1,0.3-0.3,0.6-0.6,0.9c-0.3,0.2-0.6,0.4-0.9,0.5c-0.4,0.1-0.8,0.2-1.2,0.2c-0.4,0-0.8-0.1-1.2-0.2
|
403 |
+
s-0.7-0.3-0.9-0.5c-0.3-0.2-0.5-0.5-0.6-0.9c-0.1-0.3-0.2-0.7-0.2-1.2V248.9z"/>
|
404 |
+
<path fill="#FFFFFF" d="M128.3,248.9h3.5c0.6,0,1.2,0.1,1.5,0.4c0.4,0.3,0.6,0.7,0.6,1.3c0,0.4-0.1,0.7-0.3,0.9
|
405 |
+
c-0.2,0.3-0.4,0.5-0.8,0.6v0c0.4,0.1,0.8,0.3,1,0.6s0.3,0.7,0.3,1.2c0,0.3,0,0.5-0.1,0.8c-0.1,0.2-0.3,0.5-0.5,0.6
|
406 |
+
c-0.2,0.2-0.5,0.3-0.8,0.4c-0.3,0.1-0.7,0.2-1.2,0.2h-3.3V248.9z M129.5,251.8h2c0.3,0,0.6-0.1,0.8-0.3c0.2-0.2,0.3-0.4,0.3-0.7
|
407 |
+
c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.1-0.4-0.2-0.8-0.2h-2V251.8z M129.5,255h2.2c0.4,0,0.7-0.1,0.9-0.3c0.2-0.2,0.3-0.5,0.3-0.8
|
408 |
+
c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.2-0.5-0.3-0.9-0.3h-2.2V255z"/>
|
409 |
+
<path fill="#FFFFFF" d="M135.3,248.9h1.8l2,5.6h0l1.9-5.6h1.7v7.1h-1.2v-5.5h0l-2,5.5h-1l-2-5.5h0v5.5h-1.2V248.9z"/>
|
410 |
+
<path fill="#FFFFFF" d="M144.2,248.9h1.2v7.1h-1.2V248.9z"/>
|
411 |
+
<path fill="#FFFFFF" d="M146.3,248.9h5.8v1.1h-2.3v6.1h-1.2v-6.1h-2.3V248.9z"/>
|
412 |
+
</g>
|
413 |
+
</g>
|
414 |
+
</svg>
|
templates/18/preview-thumb.svg
ADDED
@@ -0,0 +1,383 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 265 300" enable-background="new 0 0 265 300" xml:space="preserve">
|
5 |
+
<g>
|
6 |
+
<path id="Rectangle_883" fill="#FFFFFF" d="M5,0h255c2.8,0,5,2.2,5,5v290c0,2.8-2.2,5-5,5H5c-2.8,0-5-2.2-5-5V5C0,2.2,2.2,0,5,0z"
|
7 |
+
/>
|
8 |
+
<path id="Rectangle_884" fill="#E5E9EA" d="M42.5,59h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
9 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,60.1,41.1,59,42.5,59z"/>
|
10 |
+
<path id="Rectangle_885" fill="#E5E9EA" d="M42.5,108h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
11 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,109.1,41.1,108,42.5,108z"/>
|
12 |
+
<path id="Rectangle_893" fill="#E5E9EA" d="M42.5,157h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
13 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,158.1,41.1,157,42.5,157z"/>
|
14 |
+
<path id="Rectangle_895" fill="#E5E9EA" d="M42.5,206h150c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-150
|
15 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,207.1,41.1,206,42.5,206z"/>
|
16 |
+
<path id="Rectangle_896" fill="#E5E9EA" d="M207.5,206h15c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-15
|
17 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C205,207.1,206.1,206,207.5,206z"/>
|
18 |
+
<path id="Rectangle_886" fill="#E5E9EA" d="M142.5,108h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
19 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C140,109.1,141.1,108,142.5,108z"/>
|
20 |
+
<path id="Rectangle_894" fill="#E5E9EA" d="M142.5,157h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
21 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C140,158.1,141.1,157,142.5,157z"/>
|
22 |
+
<path id="Rectangle_887" fill="#E5E9EA" d="M142.5,59h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
23 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C140,60.1,141.1,59,142.5,59z"/>
|
24 |
+
<g enable-background="new ">
|
25 |
+
<path fill="#565656" d="M46.6,42.4v1h-4.5v2.7H46v1h-3.9V51h-1.1v-8.6H46.6z"/>
|
26 |
+
<path fill="#565656" d="M47.7,43.7v-1.2h1v1.2H47.7z M48.7,44.8V51h-1v-6.2H48.7z"/>
|
27 |
+
<path fill="#565656" d="M51.2,44.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
28 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1V51h-1v-6.2H51.2z"/>
|
29 |
+
<path fill="#565656" d="M55.1,49.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
30 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
31 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
32 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
33 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
34 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
35 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
36 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
37 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
38 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C54.9,49.3,55,49.5,55.1,49.6z"/>
|
39 |
+
<path fill="#565656" d="M63,44.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0H63V51h-0.8
|
40 |
+
c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9H63z"/>
|
41 |
+
<path fill="#565656" d="M68.8,42.4l4.5,6.9h0v-6.9h1.1V51h-1.2l-4.5-6.9h0V51h-1.1v-8.6H68.8z"/>
|
42 |
+
<path fill="#565656" d="M81.6,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
43 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
44 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
45 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
46 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2S77,46.3,77,46.7h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
47 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
48 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51z M79.9,47.8
|
49 |
+
c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
50 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
51 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V47.8z"/>
|
52 |
+
<path fill="#565656" d="M83.5,44.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
53 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
54 |
+
c0.1,0.2,0.1,0.5,0.1,0.8V51h-1v-4.1c0-0.2,0-0.4,0-0.5S90.1,46.1,90,46c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
55 |
+
c-0.5,0-0.9,0.1-1.2,0.4s-0.4,0.7-0.4,1.2V51h-1v-4.1c0-0.2,0-0.4-0.1-0.6c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3
|
56 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4s-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5V51h-1
|
57 |
+
v-6.2H83.5z"/>
|
58 |
+
<path fill="#565656" d="M97.2,50.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
59 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
60 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
61 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
62 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C97.9,49.7,97.6,50.3,97.2,50.6z M96.9,46.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
63 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
64 |
+
C97.1,47.1,97,46.8,96.9,46.6z"/>
|
65 |
+
</g>
|
66 |
+
<g enable-background="new ">
|
67 |
+
<path fill="#565656" d="M46.9,91.4v1h-4.8v2.7h4.5v1h-4.5v3h4.8v1h-6v-8.6H46.9z"/>
|
68 |
+
<path fill="#565656" d="M49.1,93.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
69 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
70 |
+
c0.1,0.2,0.1,0.5,0.1,0.8v4.5h-1v-4.1c0-0.2,0-0.4,0-0.5s-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
71 |
+
c-0.5,0-0.9,0.1-1.2,0.4S53,95.7,53,96.1v3.9h-1v-4.1c0-0.2,0-0.4-0.1-0.6c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3
|
72 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4s-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5v3.9h-1
|
73 |
+
v-6.2H49.1z"/>
|
74 |
+
<path fill="#565656" d="M63.8,100c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
75 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
76 |
+
C58.1,99,58,98.7,58,98.4c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
77 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
78 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
79 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
80 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V100z M62.2,96.8
|
81 |
+
C62,96.9,61.9,97,61.7,97s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
82 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
83 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V96.8z"/>
|
84 |
+
<path fill="#565656" d="M64.8,92.7v-1.2h1v1.2H64.8z M65.9,93.8v6.2h-1v-6.2H65.9z"/>
|
85 |
+
<path fill="#565656" d="M68.5,91.4v8.6h-1v-8.6H68.5z"/>
|
86 |
+
</g>
|
87 |
+
<g enable-background="new ">
|
88 |
+
<path fill="#565656" d="M42.1,140.4l4.5,6.9h0v-6.9h1.1v8.6h-1.2l-4.5-6.9h0v6.9h-1.1v-8.6H42.1z"/>
|
89 |
+
<path fill="#565656" d="M49.3,144.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7s0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
90 |
+
s0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
91 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1
|
92 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S49.2,145,49.3,144.6z M50.3,146.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
93 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.3,0,0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7s0.1-0.6,0.1-1s0-0.7-0.1-1
|
94 |
+
s-0.2-0.5-0.4-0.7c-0.2-0.2-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
95 |
+
c-0.2,0.2-0.3,0.4-0.4,0.7c-0.1,0.3-0.1,0.6-0.1,1S50.2,146.6,50.3,146.9z"/>
|
96 |
+
<path fill="#565656" d="M57.9,147.7v1.3h-1.3v-1.3H57.9z"/>
|
97 |
+
<path fill="#565656" d="M62.8,144.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7s0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
98 |
+
s0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
99 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1
|
100 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S62.7,145,62.8,144.6z M63.9,146.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
101 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.3,0,0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7s0.1-0.6,0.1-1s0-0.7-0.1-1
|
102 |
+
s-0.2-0.5-0.4-0.7c-0.2-0.2-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
103 |
+
c-0.2,0.2-0.3,0.4-0.4,0.7c-0.1,0.3-0.1,0.6-0.1,1S63.8,146.6,63.9,146.9z"/>
|
104 |
+
<path fill="#565656" d="M69.3,143.7v-0.9h1v-0.9c0-0.5,0.1-0.9,0.4-1.1c0.3-0.3,0.7-0.4,1.3-0.4c0.1,0,0.2,0,0.3,0
|
105 |
+
c0.1,0,0.2,0,0.3,0.1v0.9c-0.1,0-0.2-0.1-0.3-0.1s-0.2,0-0.3,0c-0.2,0-0.4,0-0.6,0.1c-0.1,0.1-0.2,0.3-0.2,0.6v0.9h1.2v0.9h-1.2
|
106 |
+
v5.3h-1v-5.3H69.3z"/>
|
107 |
+
<path fill="#565656" d="M82.1,148.9c-0.5,0.2-1,0.3-1.5,0.3c-0.6,0-1.2-0.1-1.7-0.4c-0.5-0.2-0.9-0.6-1.3-1
|
108 |
+
c-0.4-0.4-0.6-0.9-0.8-1.4c-0.2-0.5-0.3-1.1-0.3-1.6c0-0.6,0.1-1.2,0.3-1.8c0.2-0.6,0.4-1.1,0.8-1.5c0.3-0.4,0.8-0.8,1.3-1
|
109 |
+
c0.5-0.3,1.1-0.4,1.8-0.4c0.5,0,0.9,0.1,1.3,0.2c0.4,0.1,0.8,0.3,1.1,0.5c0.3,0.2,0.6,0.5,0.8,0.9c0.2,0.4,0.4,0.8,0.4,1.3h-1.1
|
110 |
+
c-0.1-0.3-0.2-0.6-0.3-0.8c-0.2-0.2-0.3-0.4-0.6-0.6c-0.2-0.2-0.5-0.3-0.8-0.3c-0.3-0.1-0.6-0.1-0.9-0.1c-0.5,0-1,0.1-1.3,0.3
|
111 |
+
c-0.4,0.2-0.7,0.5-0.9,0.8c-0.2,0.3-0.4,0.7-0.5,1.2c-0.1,0.4-0.2,0.9-0.2,1.3c0,0.4,0.1,0.9,0.2,1.3c0.1,0.4,0.3,0.8,0.6,1.1
|
112 |
+
c0.2,0.3,0.6,0.6,0.9,0.8c0.4,0.2,0.8,0.3,1.3,0.3c0.4,0,0.8-0.1,1.2-0.2c0.3-0.1,0.6-0.3,0.9-0.6s0.4-0.5,0.5-0.9
|
113 |
+
s0.2-0.7,0.2-1.1h-2.7v-1h3.8v4.5h-0.7l-0.3-1.1C83,148.4,82.6,148.7,82.1,148.9z"/>
|
114 |
+
<path fill="#565656" d="M90.1,149v-1h0c-0.2,0.4-0.5,0.7-0.8,0.8c-0.3,0.2-0.7,0.3-1.2,0.3c-0.4,0-0.7-0.1-1-0.2
|
115 |
+
c-0.3-0.1-0.5-0.3-0.7-0.5c-0.2-0.2-0.3-0.4-0.4-0.7c-0.1-0.3-0.1-0.6-0.1-0.9v-4.1h1v4.2c0,0.4,0.1,0.7,0.3,0.9
|
116 |
+
c0.2,0.2,0.5,0.3,0.9,0.3c0.3,0,0.6,0,0.8-0.1c0.2-0.1,0.4-0.2,0.6-0.4c0.2-0.2,0.3-0.4,0.3-0.6c0.1-0.2,0.1-0.5,0.1-0.8v-3.5h1
|
117 |
+
v6.2H90.1z"/>
|
118 |
+
<path fill="#565656" d="M96.9,148.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
119 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
120 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
121 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
122 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C97.7,147.7,97.4,148.3,96.9,148.6z M96.7,144.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
123 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
124 |
+
C96.8,145.1,96.8,144.8,96.7,144.6z"/>
|
125 |
+
<path fill="#565656" d="M99.8,147.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
126 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
127 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
128 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
129 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
130 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
131 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
132 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
133 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
134 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C99.6,147.3,99.7,147.5,99.8,147.6z"/>
|
135 |
+
<path fill="#565656" d="M107.6,142.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0h0.5v0.9
|
136 |
+
h-0.8c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9
|
137 |
+
H107.6z"/>
|
138 |
+
</g>
|
139 |
+
<g enable-background="new ">
|
140 |
+
<path fill="#565656" d="M45,189.4c0.8,0,1.5,0.2,1.9,0.6c0.5,0.4,0.7,0.9,0.7,1.6c0,0.5-0.1,1-0.4,1.4c-0.2,0.4-0.6,0.7-1.1,0.8v0
|
141 |
+
c0.2,0,0.5,0.1,0.6,0.2c0.2,0.1,0.3,0.2,0.4,0.4c0.1,0.2,0.2,0.3,0.2,0.5c0,0.2,0.1,0.4,0.1,0.6c0,0.2,0,0.4,0,0.6
|
142 |
+
c0,0.2,0,0.4,0.1,0.6c0,0.2,0.1,0.4,0.1,0.6c0.1,0.2,0.1,0.4,0.3,0.5h-1.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.2,0-0.3-0.1-0.5
|
143 |
+
c0-0.2,0-0.4,0-0.6c0-0.2,0-0.4-0.1-0.6c0-0.2-0.1-0.4-0.1-0.6c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.3-0.4-0.3
|
144 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1h-2.8v3.7h-1.1v-8.6H45z M45.2,193.3c0.2,0,0.5-0.1,0.6-0.2c0.2-0.1,0.3-0.3,0.4-0.5s0.2-0.5,0.2-0.8
|
145 |
+
c0-0.4-0.1-0.8-0.4-1.1c-0.2-0.3-0.6-0.4-1.2-0.4h-2.8v3h2.4C44.7,193.4,45,193.4,45.2,193.3z"/>
|
146 |
+
<path fill="#565656" d="M53.4,197.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
147 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
148 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
149 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
150 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C54.1,196.7,53.8,197.3,53.4,197.6z M53.1,193.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
151 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
152 |
+
C53.3,194.1,53.2,193.8,53.1,193.6z"/>
|
153 |
+
<path fill="#565656" d="M56.2,196.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
154 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
155 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
156 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
157 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
158 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
159 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
160 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
161 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
162 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C56.1,196.3,56.1,196.5,56.2,196.6z"/>
|
163 |
+
<path fill="#565656" d="M65.8,197.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
164 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
165 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
166 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
167 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C66.6,196.7,66.3,197.3,65.8,197.6z M65.6,193.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
168 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
169 |
+
C65.7,194.1,65.7,193.8,65.6,193.6z"/>
|
170 |
+
<path fill="#565656" d="M68.8,191.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
171 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1v2.8h-1v-6.2H68.8z"/>
|
172 |
+
<path fill="#565656" d="M73.6,198l-2.3-6.2h1.1l1.7,5.2h0l1.7-5.2h1.1l-2.3,6.2H73.6z"/>
|
173 |
+
<path fill="#565656" d="M83.4,198c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
174 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
175 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
176 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
177 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
178 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
179 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V198z M81.7,194.8
|
180 |
+
c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
181 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
182 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V194.8z"/>
|
183 |
+
<path fill="#565656" d="M87,191.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0H87v0.9h-0.8
|
184 |
+
c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9H87z"/>
|
185 |
+
<path fill="#565656" d="M88.2,190.7v-1.2h1v1.2H88.2z M89.2,191.8v6.2h-1v-6.2H89.2z"/>
|
186 |
+
<path fill="#565656" d="M90.6,193.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7s0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
187 |
+
s0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
188 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1
|
189 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S90.5,194,90.6,193.6z M91.7,195.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
190 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.3,0,0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7s0.1-0.6,0.1-1s0-0.7-0.1-1
|
191 |
+
s-0.2-0.5-0.4-0.7c-0.2-0.2-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
192 |
+
c-0.2,0.2-0.3,0.4-0.4,0.7c-0.1,0.3-0.1,0.6-0.1,1S91.6,195.6,91.7,195.9z"/>
|
193 |
+
<path fill="#565656" d="M98.6,191.8v1h0c0.4-0.8,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5
|
194 |
+
c0.2,0.2,0.3,0.4,0.4,0.7c0.1,0.3,0.1,0.6,0.1,0.9v4.1h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.3-0.9-0.3
|
195 |
+
c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8v3.5h-1v-6.2H98.6z"/>
|
196 |
+
<path fill="#565656" d="M106.9,190.4v-1h6.9v1h-2.9v7.6h-1.1v-7.6H106.9z"/>
|
197 |
+
<path fill="#565656" d="M115.6,198.8c-0.1,0.3-0.2,0.6-0.4,0.8c-0.1,0.2-0.2,0.4-0.4,0.5c-0.1,0.1-0.3,0.2-0.5,0.3
|
198 |
+
c-0.2,0.1-0.4,0.1-0.6,0.1c-0.1,0-0.2,0-0.4,0c-0.1,0-0.2,0-0.3-0.1v-0.9c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3,0
|
199 |
+
c0.2,0,0.4,0,0.5-0.2c0.1-0.1,0.2-0.2,0.3-0.4l0.4-1l-2.5-6.2h1.2l1.8,5.1h0l1.7-5.1h1.1L115.6,198.8z"/>
|
200 |
+
<path fill="#565656" d="M120.3,191.8v0.8h0c0.2-0.3,0.4-0.6,0.8-0.8c0.4-0.2,0.8-0.2,1.2-0.2c0.5,0,0.9,0.1,1.3,0.3
|
201 |
+
c0.4,0.2,0.7,0.4,0.9,0.7c0.2,0.3,0.4,0.6,0.5,1c0.1,0.4,0.2,0.8,0.2,1.2c0,0.4-0.1,0.9-0.2,1.2c-0.1,0.4-0.3,0.7-0.5,1
|
202 |
+
s-0.5,0.5-0.9,0.7c-0.4,0.2-0.8,0.3-1.2,0.3c-0.2,0-0.3,0-0.5,0c-0.2,0-0.4-0.1-0.6-0.2c-0.2-0.1-0.4-0.2-0.5-0.3
|
203 |
+
s-0.3-0.3-0.4-0.5h0v3.2h-1v-8.6H120.3z M123.9,194c-0.1-0.3-0.2-0.5-0.3-0.7c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2
|
204 |
+
c-0.3,0-0.6,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,0.9c0,0.3,0,0.6,0.1,0.9
|
205 |
+
c0.1,0.3,0.2,0.5,0.3,0.8c0.2,0.2,0.4,0.4,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.6-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
|
206 |
+
s0.2-0.5,0.3-0.8c0.1-0.3,0.1-0.6,0.1-0.9C124,194.6,124,194.3,123.9,194z"/>
|
207 |
+
<path fill="#565656" d="M130.7,197.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
208 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
209 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
210 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
211 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C131.5,196.7,131.2,197.3,130.7,197.6z M130.5,193.6c-0.1-0.2-0.2-0.4-0.4-0.6
|
212 |
+
c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4c-0.2,0.2-0.3,0.3-0.4,0.6
|
213 |
+
s-0.1,0.4-0.2,0.7h3.6C130.6,194.1,130.6,193.8,130.5,193.6z"/>
|
214 |
+
</g>
|
215 |
+
<g enable-background="new ">
|
216 |
+
<path fill="#565656" d="M144.7,91.4c0.9,0,1.5,0.2,2,0.7c0.4,0.4,0.7,1.1,0.7,1.9s-0.2,1.4-0.7,1.9c-0.4,0.4-1.1,0.7-2,0.7h-2.6
|
217 |
+
v3.5h-1.1v-8.6H144.7z M144.3,95.5c0.6,0,1.1-0.1,1.4-0.4c0.3-0.3,0.4-0.7,0.4-1.2s-0.2-0.9-0.4-1.2c-0.3-0.3-0.8-0.4-1.4-0.4
|
218 |
+
h-2.2v3.1H144.3z"/>
|
219 |
+
<path fill="#565656" d="M149.6,91.4v3.3h0c0.1-0.2,0.2-0.4,0.3-0.5s0.3-0.2,0.5-0.3s0.4-0.1,0.6-0.2c0.2,0,0.4-0.1,0.6-0.1
|
220 |
+
c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5c0.2,0.2,0.3,0.4,0.4,0.7s0.1,0.6,0.1,0.9v4.1h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9
|
221 |
+
c-0.2-0.2-0.5-0.3-0.9-0.3c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8v3.5
|
222 |
+
h-1v-8.6H149.6z"/>
|
223 |
+
<path fill="#565656" d="M155.1,95.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7s0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
224 |
+
c0.4,0.2,0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
225 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7c-0.4,0.2-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1
|
226 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S154.9,96,155.1,95.6z M156.1,97.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
227 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.3,0,0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7s0.2-0.6,0.2-1s-0.1-0.7-0.2-1
|
228 |
+
s-0.2-0.5-0.4-0.7s-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5s-0.3,0.4-0.4,0.7
|
229 |
+
s-0.1,0.6-0.1,1S156,97.6,156.1,97.9z"/>
|
230 |
+
<path fill="#565656" d="M163.1,93.8v1h0c0.4-0.8,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5
|
231 |
+
c0.2,0.2,0.3,0.4,0.4,0.7c0.1,0.3,0.1,0.6,0.1,0.9v4.1h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.3-0.9-0.3
|
232 |
+
c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8v3.5h-1v-6.2H163.1z"/>
|
233 |
+
<path fill="#565656" d="M173.2,99.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
234 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
235 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
236 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
237 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C173.9,98.7,173.6,99.3,173.2,99.6z M172.9,95.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
238 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4c-0.2,0.2-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
239 |
+
C173.1,96.1,173,95.8,172.9,95.6z"/>
|
240 |
+
</g>
|
241 |
+
<g enable-background="new ">
|
242 |
+
<path fill="#565656" d="M146.9,140.4v1h-4.8v2.7h4.5v1h-4.5v3h4.8v1h-6v-8.6H146.9z"/>
|
243 |
+
<path fill="#565656" d="M147.6,142.8h1.3l1.5,2.2l1.5-2.2h1.2l-2.1,2.9l2.4,3.3h-1.3l-1.7-2.6l-1.7,2.6h-1.2l2.3-3.3L147.6,142.8z
|
244 |
+
"/>
|
245 |
+
<path fill="#565656" d="M155.4,142.8v0.8h0c0.2-0.3,0.4-0.6,0.8-0.8c0.4-0.2,0.8-0.2,1.2-0.2c0.5,0,0.9,0.1,1.3,0.3
|
246 |
+
s0.7,0.4,0.9,0.7s0.4,0.6,0.5,1c0.1,0.4,0.2,0.8,0.2,1.2c0,0.4-0.1,0.9-0.2,1.2s-0.3,0.7-0.5,1c-0.2,0.3-0.5,0.5-0.9,0.7
|
247 |
+
c-0.4,0.2-0.8,0.3-1.2,0.3c-0.2,0-0.3,0-0.5,0s-0.4-0.1-0.6-0.2c-0.2-0.1-0.4-0.2-0.5-0.3c-0.2-0.1-0.3-0.3-0.4-0.5h0v3.2h-1v-8.6
|
248 |
+
H155.4z M159,145c-0.1-0.3-0.2-0.5-0.3-0.7s-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
249 |
+
s-0.3,0.5-0.3,0.8s-0.1,0.6-0.1,0.9c0,0.3,0,0.6,0.1,0.9c0.1,0.3,0.2,0.5,0.3,0.8c0.2,0.2,0.4,0.4,0.6,0.5
|
250 |
+
c0.2,0.1,0.5,0.2,0.9,0.2c0.4,0,0.6-0.1,0.9-0.2s0.4-0.3,0.6-0.5c0.1-0.2,0.2-0.5,0.3-0.8c0.1-0.3,0.1-0.6,0.1-0.9
|
251 |
+
C159.2,145.6,159.1,145.3,159,145z"/>
|
252 |
+
<path fill="#565656" d="M165.8,148.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
253 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.7-0.2,1.2-0.2
|
254 |
+
c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6c0,0.3,0,0.5,0.1,0.8
|
255 |
+
c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3c0.3-0.2,0.5-0.5,0.5-0.9h1
|
256 |
+
C166.6,147.7,166.3,148.3,165.8,148.6z M165.6,144.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1
|
257 |
+
c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6C165.7,145.1,165.7,144.8,165.6,144.6z"/>
|
258 |
+
<path fill="#565656" d="M171.6,143.9c-0.3-0.2-0.6-0.3-1-0.3c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
259 |
+
c-0.1,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,0.9c0,0.3,0,0.6,0.1,0.8c0.1,0.3,0.2,0.5,0.3,0.7c0.1,0.2,0.3,0.4,0.6,0.5
|
260 |
+
s0.5,0.2,0.8,0.2c0.5,0,0.9-0.1,1.2-0.4c0.3-0.3,0.5-0.6,0.5-1.1h1c-0.1,0.8-0.4,1.4-0.9,1.8s-1.1,0.6-1.9,0.6
|
261 |
+
c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.6s-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3
|
262 |
+
c0.1-0.4,0.3-0.8,0.5-1.1s0.5-0.5,0.9-0.7c0.4-0.2,0.8-0.3,1.3-0.3c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.4s0.4,0.4,0.6,0.7
|
263 |
+
c0.2,0.3,0.2,0.6,0.3,1h-1.1C172,144.4,171.8,144.1,171.6,143.9z"/>
|
264 |
+
<path fill="#565656" d="M177,142.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3c0,0.1,0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0h0.5
|
265 |
+
v0.9h-0.8c-0.3,0-0.5,0-0.7-0.1c-0.2,0-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1
|
266 |
+
v-1.9h1v1.9H177z"/>
|
267 |
+
<path fill="#565656" d="M182.5,148.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
268 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.7-0.2,1.2-0.2
|
269 |
+
c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6c0,0.3,0,0.5,0.1,0.8
|
270 |
+
c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3s0.5-0.5,0.5-0.9h1
|
271 |
+
C183.3,147.7,183,148.3,182.5,148.6z M182.2,144.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1
|
272 |
+
c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4c-0.2,0.2-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
273 |
+
C182.4,145.1,182.3,144.8,182.2,144.6z"/>
|
274 |
+
<path fill="#565656" d="M189.1,149v-0.8h0c-0.2,0.3-0.4,0.6-0.8,0.7c-0.4,0.2-0.8,0.2-1.2,0.2c-0.5,0-0.9-0.1-1.3-0.3
|
275 |
+
s-0.7-0.4-0.9-0.7s-0.4-0.6-0.5-1c-0.1-0.4-0.2-0.8-0.2-1.2c0-0.4,0.1-0.9,0.2-1.2c0.1-0.4,0.3-0.7,0.5-1c0.2-0.3,0.5-0.5,0.9-0.7
|
276 |
+
s0.8-0.3,1.2-0.3c0.2,0,0.3,0,0.5,0s0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.2,0.5,0.3s0.3,0.3,0.4,0.5h0v-3.2h1v8.6H189.1z M185.4,146.8
|
277 |
+
c0.1,0.3,0.2,0.5,0.3,0.7c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2c0.3,0,0.6-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
|
278 |
+
c0.2-0.2,0.3-0.5,0.3-0.8c0.1-0.3,0.1-0.6,0.1-0.9c0-0.3,0-0.6-0.1-0.9c-0.1-0.3-0.2-0.5-0.3-0.8c-0.2-0.2-0.4-0.4-0.6-0.5
|
279 |
+
s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5c-0.1,0.2-0.2,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,0.9
|
280 |
+
C185.3,146.2,185.3,146.5,185.4,146.8z"/>
|
281 |
+
<path fill="#565656" d="M198.1,140.4c1.3,0,2.3,0.3,3,1c0.7,0.7,1.1,1.7,1.1,3.1c0,0.7-0.1,1.4-0.2,1.9c-0.2,0.6-0.4,1-0.7,1.4
|
282 |
+
c-0.3,0.4-0.8,0.7-1.3,0.9s-1.1,0.3-1.8,0.3h-2.9v-8.6H198.1z M198.2,148c0.1,0,0.3,0,0.5,0c0.2,0,0.4-0.1,0.6-0.1
|
283 |
+
s0.4-0.2,0.6-0.3c0.2-0.1,0.4-0.3,0.6-0.6s0.3-0.6,0.4-0.9c0.1-0.4,0.2-0.8,0.2-1.3c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.3-0.7-0.5-1
|
284 |
+
c-0.2-0.3-0.5-0.5-0.9-0.6c-0.4-0.1-0.8-0.2-1.3-0.2h-1.9v6.6H198.2z"/>
|
285 |
+
<path fill="#565656" d="M208.9,149c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
286 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
287 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5s0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
288 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
289 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
290 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
291 |
+
s0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V149z M207.3,145.8c-0.1,0.1-0.3,0.2-0.5,0.2
|
292 |
+
c-0.2,0-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2s-0.3,0.2-0.4,0.3c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4
|
293 |
+
c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1c0.2-0.1,0.4-0.2,0.6-0.3
|
294 |
+
c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V145.8z"/>
|
295 |
+
<path fill="#565656" d="M212.5,142.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3c0,0.1,0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0
|
296 |
+
h0.5v0.9h-0.8c-0.3,0-0.5,0-0.7-0.1c-0.2,0-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9
|
297 |
+
h1.1v-1.9h1v1.9H212.5z"/>
|
298 |
+
<path fill="#565656" d="M218.1,148.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
299 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
300 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
301 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
302 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C218.8,147.7,218.5,148.3,218.1,148.6z M217.8,144.6c-0.1-0.2-0.2-0.4-0.4-0.6
|
303 |
+
c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4c-0.2,0.2-0.3,0.3-0.4,0.6
|
304 |
+
s-0.1,0.4-0.2,0.7h3.6C218,145.1,217.9,144.8,217.8,144.6z"/>
|
305 |
+
</g>
|
306 |
+
<g enable-background="new ">
|
307 |
+
<path fill="#565656" d="M142.1,42.4V50h4.5v1h-5.7v-8.6H142.1z"/>
|
308 |
+
<path fill="#565656" d="M152.9,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
309 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
310 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
311 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
312 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
313 |
+
s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1s0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5c0.1,0.2,0.2,0.5,0.2,0.9
|
314 |
+
v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51z M151.3,47.8c-0.1,0.1-0.3,0.2-0.5,0.2
|
315 |
+
c-0.2,0-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.4-0.2,0.6
|
316 |
+
c0,0.2,0,0.3,0.1,0.4c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
317 |
+
c0.2-0.1,0.4-0.2,0.6-0.3s0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V47.8z"/>
|
318 |
+
<path fill="#565656" d="M154.7,49.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
319 |
+
s0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3c0.1-0.1,0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
320 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
321 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.6-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
322 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3s-0.3-0.1-0.5-0.2
|
323 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
324 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
325 |
+
s0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9s-0.4,0.4-0.6,0.6
|
326 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
327 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C154.5,49.3,154.6,49.5,154.7,49.6z"/>
|
328 |
+
<path fill="#565656" d="M162.5,44.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3c0,0.1,0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0h0.5
|
329 |
+
V51h-0.8c-0.3,0-0.5,0-0.7-0.1c-0.2,0-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1
|
330 |
+
v-1.9h1v1.9H162.5z"/>
|
331 |
+
<path fill="#565656" d="M168.4,42.4l4.5,6.9h0v-6.9h1.1V51h-1.2l-4.5-6.9h0V51h-1.1v-8.6H168.4z"/>
|
332 |
+
<path fill="#565656" d="M181.2,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
333 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
334 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5s0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
335 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
336 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
337 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
338 |
+
s0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51z M179.5,47.8c-0.1,0.1-0.3,0.2-0.5,0.2
|
339 |
+
c-0.2,0-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2s-0.3,0.2-0.4,0.3c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4
|
340 |
+
c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1c0.2-0.1,0.4-0.2,0.6-0.3
|
341 |
+
c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V47.8z"/>
|
342 |
+
<path fill="#565656" d="M183.1,44.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
343 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
344 |
+
c0.1,0.2,0.1,0.5,0.1,0.8V51h-1v-4.1c0-0.2,0-0.4,0-0.5s-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
345 |
+
c-0.5,0-0.9,0.1-1.2,0.4s-0.4,0.7-0.4,1.2V51h-1v-4.1c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4s-0.2-0.2-0.4-0.3
|
346 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4c-0.1,0.2-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5
|
347 |
+
V51h-1v-6.2H183.1z"/>
|
348 |
+
<path fill="#565656" d="M196.7,50.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
349 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.7-0.2,1.2-0.2
|
350 |
+
c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6c0,0.3,0,0.5,0.1,0.8
|
351 |
+
c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3s0.5-0.5,0.5-0.9h1
|
352 |
+
C197.5,49.7,197.2,50.3,196.7,50.6z M196.5,46.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1
|
353 |
+
c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4c-0.2,0.2-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6C196.6,47.1,196.6,46.8,196.5,46.6
|
354 |
+
z"/>
|
355 |
+
</g>
|
356 |
+
<path id="Rectangle_892" fill="#6236FF" d="M85,238h95c2.8,0,5,2.2,5,5v17c0,2.8-2.2,5-5,5H85c-2.8,0-5-2.2-5-5v-17
|
357 |
+
C80,240.2,82.2,238,85,238z"/>
|
358 |
+
<g enable-background="new ">
|
359 |
+
<path fill="#FFFFFF" d="M115.4,253.6c0,0.3,0,0.5,0.1,0.7s0.2,0.4,0.4,0.5c0.2,0.1,0.4,0.2,0.6,0.3s0.5,0.1,0.7,0.1
|
360 |
+
c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.1-0.3,0.1-0.4c0-0.3-0.1-0.5-0.2-0.6
|
361 |
+
s-0.3-0.2-0.4-0.3c-0.3-0.1-0.5-0.2-0.9-0.3c-0.3-0.1-0.8-0.2-1.2-0.3c-0.3-0.1-0.6-0.2-0.8-0.3c-0.2-0.1-0.4-0.3-0.5-0.4
|
362 |
+
c-0.1-0.2-0.2-0.3-0.3-0.5s-0.1-0.4-0.1-0.5c0-0.4,0.1-0.7,0.2-0.9c0.1-0.3,0.3-0.5,0.6-0.7c0.2-0.2,0.5-0.3,0.8-0.4
|
363 |
+
c0.3-0.1,0.6-0.1,1-0.1c0.4,0,0.7,0,1.1,0.1s0.6,0.2,0.9,0.4c0.2,0.2,0.4,0.4,0.6,0.7s0.2,0.6,0.2,1h-1.2c0-0.5-0.2-0.8-0.5-1
|
364 |
+
c-0.3-0.2-0.6-0.3-1.1-0.3c-0.1,0-0.3,0-0.5,0s-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.2-0.3,0.3c-0.1,0.1-0.1,0.3-0.1,0.4
|
365 |
+
c0,0.3,0.1,0.5,0.2,0.6c0.2,0.1,0.4,0.3,0.6,0.3c0,0,0.1,0,0.3,0.1c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.1,0.7,0.2
|
366 |
+
s0.4,0.1,0.5,0.1c0.2,0.1,0.4,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.4c0.1,0.2,0.2,0.3,0.3,0.5s0.1,0.4,0.1,0.6c0,0.4-0.1,0.7-0.2,1
|
367 |
+
c-0.2,0.3-0.4,0.5-0.6,0.7c-0.3,0.2-0.6,0.3-0.9,0.4s-0.7,0.1-1,0.1c-0.4,0-0.8,0-1.1-0.2c-0.4-0.1-0.7-0.3-0.9-0.5
|
368 |
+
c-0.3-0.2-0.5-0.5-0.6-0.8c-0.2-0.3-0.2-0.7-0.2-1.1H115.4z"/>
|
369 |
+
<path fill="#FFFFFF" d="M121,248.9h1.2v4.2c0,0.2,0,0.5,0,0.7c0,0.2,0.1,0.5,0.2,0.7c0.1,0.2,0.3,0.4,0.5,0.5
|
370 |
+
c0.2,0.1,0.5,0.2,0.9,0.2c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.5-0.5c0.1-0.2,0.2-0.4,0.2-0.7c0-0.2,0-0.5,0-0.7v-4.2h1.2v4.6
|
371 |
+
c0,0.5-0.1,0.9-0.2,1.2c-0.1,0.3-0.3,0.6-0.6,0.9c-0.3,0.2-0.6,0.4-0.9,0.5c-0.4,0.1-0.8,0.2-1.2,0.2c-0.4,0-0.8-0.1-1.2-0.2
|
372 |
+
s-0.7-0.3-0.9-0.5c-0.3-0.2-0.5-0.5-0.6-0.9c-0.1-0.3-0.2-0.7-0.2-1.2V248.9z"/>
|
373 |
+
<path fill="#FFFFFF" d="M128.3,248.9h3.5c0.6,0,1.2,0.1,1.5,0.4c0.4,0.3,0.6,0.7,0.6,1.3c0,0.4-0.1,0.7-0.3,0.9
|
374 |
+
c-0.2,0.3-0.4,0.5-0.8,0.6v0c0.4,0.1,0.8,0.3,1,0.6s0.3,0.7,0.3,1.2c0,0.3,0,0.5-0.1,0.8c-0.1,0.2-0.3,0.5-0.5,0.6
|
375 |
+
c-0.2,0.2-0.5,0.3-0.8,0.4c-0.3,0.1-0.7,0.2-1.2,0.2h-3.3V248.9z M129.5,251.8h2c0.3,0,0.6-0.1,0.8-0.3c0.2-0.2,0.3-0.4,0.3-0.7
|
376 |
+
c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.1-0.4-0.2-0.8-0.2h-2V251.8z M129.5,255h2.2c0.4,0,0.7-0.1,0.9-0.3c0.2-0.2,0.3-0.5,0.3-0.8
|
377 |
+
c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.2-0.5-0.3-0.9-0.3h-2.2V255z"/>
|
378 |
+
<path fill="#FFFFFF" d="M135.3,248.9h1.8l2,5.6h0l1.9-5.6h1.7v7.1h-1.2v-5.5h0l-2,5.5h-1l-2-5.5h0v5.5h-1.2V248.9z"/>
|
379 |
+
<path fill="#FFFFFF" d="M144.2,248.9h1.2v7.1h-1.2V248.9z"/>
|
380 |
+
<path fill="#FFFFFF" d="M146.3,248.9h5.8v1.1h-2.3v6.1h-1.2v-6.1h-2.3V248.9z"/>
|
381 |
+
</g>
|
382 |
+
</g>
|
383 |
+
</svg>
|
templates/19/preview-thumb.svg
ADDED
@@ -0,0 +1,376 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 265 300" enable-background="new 0 0 265 300" xml:space="preserve">
|
5 |
+
<g>
|
6 |
+
<path id="Rectangle_897" fill="#FFFFFF" d="M5,0h255c2.8,0,5,2.2,5,5v290c0,2.8-2.2,5-5,5H5c-2.8,0-5-2.2-5-5V5C0,2.2,2.2,0,5,0z"
|
7 |
+
/>
|
8 |
+
<path id="Rectangle_898" fill="#E5E9EA" d="M42.5,59h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
9 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,60.1,41.1,59,42.5,59z"/>
|
10 |
+
<path id="Rectangle_899" fill="#E5E9EA" d="M42.5,108h180c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-180
|
11 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,109.1,41.1,108,42.5,108z"/>
|
12 |
+
<path id="Rectangle_901" fill="#E5E9EA" d="M142.5,59h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
13 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C140,60.1,141.1,59,142.5,59z"/>
|
14 |
+
<path id="Rectangle_902" fill="#E5E9EA" d="M42.5,182h15c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-15
|
15 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,183.1,41.1,182,42.5,182z"/>
|
16 |
+
<path id="Rectangle_907" fill="#E5E9EA" d="M42.5,216h15c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-15
|
17 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,217.1,41.1,216,42.5,216z"/>
|
18 |
+
<path id="Rectangle_904" fill="#E5E9EA" d="M42.5,199h15c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-15
|
19 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,200.1,41.1,199,42.5,199z"/>
|
20 |
+
<path id="Rectangle_903" fill="#E5E9EA" d="M67.5,182h65c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-65
|
21 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C65,183.1,66.1,182,67.5,182z"/>
|
22 |
+
<path id="Rectangle_908" fill="#E5E9EA" d="M67.5,216h95c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-95
|
23 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C65,217.1,66.1,216,67.5,216z"/>
|
24 |
+
<path id="Rectangle_905" fill="#E5E9EA" d="M67.5,199h125c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-125
|
25 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C65,200.1,66.1,199,67.5,199z"/>
|
26 |
+
<g enable-background="new ">
|
27 |
+
<path fill="#565656" d="M46.6,42.4v1h-4.5v2.7H46v1h-3.9V51h-1.1v-8.6H46.6z"/>
|
28 |
+
<path fill="#565656" d="M47.7,43.7v-1.2h1v1.2H47.7z M48.7,44.8V51h-1v-6.2H48.7z"/>
|
29 |
+
<path fill="#565656" d="M51.2,44.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
30 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1V51h-1v-6.2H51.2z"/>
|
31 |
+
<path fill="#565656" d="M55.1,49.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
32 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
33 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
34 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
35 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
36 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
37 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
38 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
39 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
40 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C54.9,49.3,55,49.5,55.1,49.6z"/>
|
41 |
+
<path fill="#565656" d="M63,44.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0H63V51h-0.8
|
42 |
+
c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9H63z"/>
|
43 |
+
<path fill="#565656" d="M68.8,42.4l4.5,6.9h0v-6.9h1.1V51h-1.2l-4.5-6.9h0V51h-1.1v-8.6H68.8z"/>
|
44 |
+
<path fill="#565656" d="M81.6,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
45 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
46 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
47 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
48 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2S77,46.3,77,46.7h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
49 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
50 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51z M79.9,47.8
|
51 |
+
c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
52 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
53 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V47.8z"/>
|
54 |
+
<path fill="#565656" d="M83.5,44.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
55 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
56 |
+
c0.1,0.2,0.1,0.5,0.1,0.8V51h-1v-4.1c0-0.2,0-0.4,0-0.5S90.1,46.1,90,46c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
57 |
+
c-0.5,0-0.9,0.1-1.2,0.4s-0.4,0.7-0.4,1.2V51h-1v-4.1c0-0.2,0-0.4-0.1-0.6c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3
|
58 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4s-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5V51h-1
|
59 |
+
v-6.2H83.5z"/>
|
60 |
+
<path fill="#565656" d="M97.2,50.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
61 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
62 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
63 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
64 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C97.9,49.7,97.6,50.3,97.2,50.6z M96.9,46.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
65 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
66 |
+
C97.1,47.1,97,46.8,96.9,46.6z"/>
|
67 |
+
</g>
|
68 |
+
<g enable-background="new ">
|
69 |
+
<path fill="#565656" d="M46.9,91.4v1h-4.8v2.7h4.5v1h-4.5v3h4.8v1h-6v-8.6H46.9z"/>
|
70 |
+
<path fill="#565656" d="M49.1,93.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
71 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
72 |
+
c0.1,0.2,0.1,0.5,0.1,0.8v4.5h-1v-4.1c0-0.2,0-0.4,0-0.5s-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
73 |
+
c-0.5,0-0.9,0.1-1.2,0.4S53,95.7,53,96.1v3.9h-1v-4.1c0-0.2,0-0.4-0.1-0.6c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3
|
74 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4s-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5v3.9h-1
|
75 |
+
v-6.2H49.1z"/>
|
76 |
+
<path fill="#565656" d="M63.8,100c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
77 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
78 |
+
C58.1,99,58,98.7,58,98.4c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
79 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
80 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
81 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
82 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V100z M62.2,96.8
|
83 |
+
C62,96.9,61.9,97,61.7,97s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
84 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
85 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V96.8z"/>
|
86 |
+
<path fill="#565656" d="M64.8,92.7v-1.2h1v1.2H64.8z M65.9,93.8v6.2h-1v-6.2H65.9z"/>
|
87 |
+
<path fill="#565656" d="M68.5,91.4v8.6h-1v-8.6H68.5z"/>
|
88 |
+
</g>
|
89 |
+
<g enable-background="new ">
|
90 |
+
<path fill="#565656" d="M47.5,149l-2-7.2h0l-2,7.2h-1.2l-2.2-8.6h1.2l1.7,7.1h0l1.9-7.1h1.2l1.9,7.1h0l1.7-7.1H51l-2.3,8.6H47.5z"
|
91 |
+
/>
|
92 |
+
<path fill="#565656" d="M52.9,140.4v3.3h0c0.1-0.2,0.2-0.4,0.3-0.5s0.3-0.2,0.5-0.3c0.2-0.1,0.4-0.1,0.6-0.2
|
93 |
+
c0.2,0,0.4-0.1,0.6-0.1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5c0.2,0.2,0.3,0.4,0.4,0.7c0.1,0.3,0.1,0.6,0.1,0.9v4.1h-1
|
94 |
+
v-4.2c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.3-0.9-0.3c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6
|
95 |
+
c-0.1,0.2-0.1,0.5-0.1,0.8v3.5h-1v-8.6H52.9z"/>
|
96 |
+
<path fill="#565656" d="M58.6,141.7v-1.2h1v1.2H58.6z M59.6,142.8v6.2h-1v-6.2H59.6z"/>
|
97 |
+
<path fill="#565656" d="M64.9,143.9c-0.3-0.2-0.6-0.3-1-0.3c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
98 |
+
c-0.1,0.2-0.3,0.5-0.3,0.8S62,145.7,62,146c0,0.3,0,0.6,0.1,0.8c0.1,0.3,0.2,0.5,0.3,0.7s0.3,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.8,0.2
|
99 |
+
c0.5,0,0.9-0.1,1.2-0.4c0.3-0.3,0.5-0.6,0.5-1.1h1c-0.1,0.8-0.4,1.4-0.9,1.8s-1.1,0.6-1.9,0.6c-0.5,0-0.9-0.1-1.3-0.2
|
100 |
+
c-0.4-0.2-0.7-0.4-0.9-0.6s-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3c0.1-0.4,0.3-0.8,0.5-1.1
|
101 |
+
c0.2-0.3,0.5-0.5,0.9-0.7c0.4-0.2,0.8-0.3,1.3-0.3c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.4s0.4,0.4,0.6,0.7
|
102 |
+
c0.2,0.3,0.2,0.6,0.3,1h-1.1C65.3,144.4,65.2,144.1,64.9,143.9z"/>
|
103 |
+
<path fill="#565656" d="M68.7,140.4v3.3h0c0.1-0.2,0.2-0.4,0.3-0.5s0.3-0.2,0.5-0.3c0.2-0.1,0.4-0.1,0.6-0.2
|
104 |
+
c0.2,0,0.4-0.1,0.6-0.1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5c0.2,0.2,0.3,0.4,0.4,0.7c0.1,0.3,0.1,0.6,0.1,0.9v4.1h-1
|
105 |
+
v-4.2c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.3-0.9-0.3c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6
|
106 |
+
c-0.1,0.2-0.1,0.5-0.1,0.8v3.5h-1v-8.6H68.7z"/>
|
107 |
+
<path fill="#565656" d="M82.2,149v-0.8h0c-0.2,0.3-0.4,0.6-0.8,0.7c-0.4,0.2-0.8,0.2-1.2,0.2c-0.5,0-0.9-0.1-1.3-0.3
|
108 |
+
c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.5-1c-0.1-0.4-0.2-0.8-0.2-1.2c0-0.4,0.1-0.9,0.2-1.2c0.1-0.4,0.3-0.7,0.5-1
|
109 |
+
c0.2-0.3,0.5-0.5,0.9-0.7s0.8-0.3,1.2-0.3c0.2,0,0.3,0,0.5,0s0.4,0.1,0.6,0.2s0.4,0.2,0.5,0.3s0.3,0.3,0.4,0.5h0v-3.2h1v8.6H82.2z
|
110 |
+
M78.5,146.8c0.1,0.3,0.2,0.5,0.3,0.7c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2c0.3,0,0.6-0.1,0.9-0.2
|
111 |
+
c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.5,0.3-0.8c0.1-0.3,0.1-0.6,0.1-0.9c0-0.3,0-0.6-0.1-0.9c-0.1-0.3-0.2-0.5-0.3-0.8
|
112 |
+
c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5c-0.1,0.2-0.2,0.5-0.3,0.8
|
113 |
+
c-0.1,0.3-0.1,0.6-0.1,0.9C78.4,146.2,78.4,146.5,78.5,146.8z"/>
|
114 |
+
<path fill="#565656" d="M89.2,148.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
115 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
116 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
117 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
118 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C89.9,147.7,89.6,148.3,89.2,148.6z M88.9,144.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
119 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
120 |
+
C89.1,145.1,89,144.8,88.9,144.6z"/>
|
121 |
+
<path fill="#565656" d="M92.3,142.8v0.8h0c0.2-0.3,0.4-0.6,0.8-0.8c0.4-0.2,0.8-0.2,1.2-0.2c0.5,0,0.9,0.1,1.3,0.3
|
122 |
+
s0.7,0.4,0.9,0.7c0.2,0.3,0.4,0.6,0.5,1c0.1,0.4,0.2,0.8,0.2,1.2c0,0.4-0.1,0.9-0.2,1.2c-0.1,0.4-0.3,0.7-0.5,1s-0.5,0.5-0.9,0.7
|
123 |
+
c-0.4,0.2-0.8,0.3-1.2,0.3c-0.2,0-0.3,0-0.5,0s-0.4-0.1-0.6-0.2c-0.2-0.1-0.4-0.2-0.5-0.3c-0.2-0.1-0.3-0.3-0.4-0.5h0v3.2h-1v-8.6
|
124 |
+
H92.3z M95.9,145c-0.1-0.3-0.2-0.5-0.3-0.7c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2
|
125 |
+
c-0.2,0.1-0.4,0.3-0.6,0.5c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,0.9c0,0.3,0,0.6,0.1,0.9c0.1,0.3,0.2,0.5,0.3,0.8
|
126 |
+
c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2c0.4,0,0.6-0.1,0.9-0.2s0.4-0.3,0.6-0.5s0.2-0.5,0.3-0.8
|
127 |
+
c0.1-0.3,0.1-0.6,0.1-0.9C96.1,145.6,96,145.3,95.9,145z"/>
|
128 |
+
<path fill="#565656" d="M103.8,149c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
129 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
130 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
131 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
132 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
133 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
134 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V149z M102.2,145.8
|
135 |
+
c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
136 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
137 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V145.8z"/>
|
138 |
+
<path fill="#565656" d="M105.7,142.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
139 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1v2.8h-1v-6.2H105.7z"/>
|
140 |
+
<path fill="#565656" d="M111.4,142.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2s0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.4,0h0.5v0.9
|
141 |
+
h-0.8c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2s-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9H111.4z"/>
|
142 |
+
<path fill="#565656" d="M113.5,142.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
143 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
144 |
+
c0.1,0.2,0.1,0.5,0.1,0.8v4.5h-1v-4.1c0-0.2,0-0.4,0-0.5c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3
|
145 |
+
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.5,0-0.9,0.1-1.2,0.4c-0.3,0.3-0.4,0.7-0.4,1.2v3.9h-1v-4.1c0-0.2,0-0.4-0.1-0.6
|
146 |
+
c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4
|
147 |
+
s-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5v3.9h-1v-6.2H113.5z"/>
|
148 |
+
<path fill="#565656" d="M127.2,148.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
149 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.7-0.2,1.2-0.2
|
150 |
+
c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6c0,0.3,0,0.5,0.1,0.8
|
151 |
+
c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3c0.3-0.2,0.5-0.5,0.5-0.9h1
|
152 |
+
C128,147.7,127.7,148.3,127.2,148.6z M126.9,144.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1
|
153 |
+
c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6C127.1,145.1,127,144.8,126.9,144.6z"/>
|
154 |
+
<path fill="#565656" d="M130.2,142.8v1h0c0.4-0.8,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5
|
155 |
+
c0.2,0.2,0.3,0.4,0.4,0.7c0.1,0.3,0.1,0.6,0.1,0.9v4.1h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.3-0.9-0.3
|
156 |
+
c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8v3.5h-1v-6.2H130.2z"/>
|
157 |
+
<path fill="#565656" d="M138.6,142.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.4,0
|
158 |
+
h0.5v0.9h-0.8c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9
|
159 |
+
h1v1.9H138.6z"/>
|
160 |
+
<path fill="#565656" d="M142.4,143.7v-0.9h1v-0.9c0-0.5,0.1-0.9,0.4-1.1c0.3-0.3,0.7-0.4,1.3-0.4c0.1,0,0.2,0,0.3,0
|
161 |
+
c0.1,0,0.2,0,0.3,0.1v0.9c-0.1,0-0.2-0.1-0.3-0.1s-0.2,0-0.3,0c-0.2,0-0.4,0-0.6,0.1c-0.1,0.1-0.2,0.3-0.2,0.6v0.9h1.2v0.9h-1.2
|
162 |
+
v5.3h-1v-5.3H142.4z"/>
|
163 |
+
<path fill="#565656" d="M146.4,144.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.8-0.3,1.3-0.3
|
164 |
+
c0.5,0,0.9,0.1,1.3,0.3s0.7,0.4,0.9,0.7s0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
165 |
+
s-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1
|
166 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S146.3,145,146.4,144.6z M147.5,146.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
167 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.3,0,0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7c0.1-0.3,0.1-0.6,0.1-1
|
168 |
+
s0-0.7-0.1-1c-0.1-0.3-0.2-0.5-0.4-0.7c-0.2-0.2-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.8,0.2
|
169 |
+
c-0.2,0.1-0.4,0.3-0.6,0.5s-0.3,0.4-0.4,0.7s-0.2,0.6-0.2,1S147.4,146.6,147.5,146.9z"/>
|
170 |
+
<path fill="#565656" d="M159.2,149.8c-0.1,0.3-0.2,0.6-0.4,0.8c-0.1,0.2-0.2,0.4-0.4,0.5c-0.1,0.1-0.3,0.2-0.5,0.3
|
171 |
+
c-0.2,0.1-0.4,0.1-0.6,0.1c-0.1,0-0.2,0-0.4,0s-0.2,0-0.3-0.1v-0.9c0.1,0,0.2,0.1,0.3,0.1s0.2,0,0.3,0c0.2,0,0.4,0,0.5-0.2
|
172 |
+
c0.1-0.1,0.2-0.2,0.3-0.4l0.4-1l-2.5-6.2h1.2l1.8,5.1h0l1.7-5.1h1.1L159.2,149.8z"/>
|
173 |
+
<path fill="#565656" d="M162.7,144.6c0.1-0.4,0.3-0.7,0.6-1s0.6-0.5,0.9-0.7c0.4-0.2,0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
174 |
+
s0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
175 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
176 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S162.5,145,162.7,144.6z M163.7,146.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
177 |
+
c0.2,0.1,0.5,0.2,0.8,0.2s0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7c0.1-0.3,0.2-0.6,0.2-1s0-0.7-0.2-1
|
178 |
+
c-0.1-0.3-0.2-0.5-0.4-0.7s-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2s-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
179 |
+
c-0.2,0.2-0.3,0.4-0.4,0.7c-0.1,0.3-0.1,0.6-0.1,1S163.6,146.6,163.7,146.9z"/>
|
180 |
+
<path fill="#565656" d="M173.9,149v-1h0c-0.2,0.4-0.5,0.7-0.8,0.8c-0.3,0.2-0.7,0.3-1.2,0.3c-0.4,0-0.7-0.1-1-0.2
|
181 |
+
c-0.3-0.1-0.5-0.3-0.7-0.5c-0.2-0.2-0.3-0.4-0.4-0.7c-0.1-0.3-0.1-0.6-0.1-0.9v-4.1h1v4.2c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,0.9,0.3
|
182 |
+
c0.3,0,0.6,0,0.8-0.1c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.4,0.3-0.6s0.1-0.5,0.1-0.8v-3.5h1v6.2H173.9z"/>
|
183 |
+
<path fill="#565656" d="M180.7,140.4v3.3h0c0.1-0.2,0.2-0.4,0.3-0.5s0.3-0.2,0.5-0.3s0.4-0.1,0.6-0.2c0.2,0,0.4-0.1,0.6-0.1
|
184 |
+
c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5c0.2,0.2,0.3,0.4,0.4,0.7s0.1,0.6,0.1,0.9v4.1h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9
|
185 |
+
c-0.2-0.2-0.5-0.3-0.9-0.3c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8v3.5
|
186 |
+
h-1v-8.6H180.7z"/>
|
187 |
+
<path fill="#565656" d="M191.9,149c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
188 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
189 |
+
s-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9s0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2c0.3-0.1,0.5-0.1,0.8-0.1
|
190 |
+
s0.5-0.1,0.7-0.1c0.2-0.1,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
191 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2c-0.3,0.2-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1
|
192 |
+
c0.1-0.3,0.3-0.5,0.6-0.6s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2
|
193 |
+
c0.2,0.1,0.4,0.3,0.5,0.5c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V149z
|
194 |
+
M190.2,145.8c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1c-0.2,0-0.4,0.1-0.6,0.2
|
195 |
+
c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2
|
196 |
+
c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1c0.2-0.1,0.4-0.2,0.6-0.3s0.3-0.3,0.3-0.5c0.1-0.2,0.1-0.3,0.1-0.5V145.8z"/>
|
197 |
+
<path fill="#565656" d="M194.5,149l-2.3-6.2h1.1l1.7,5.2h0l1.7-5.2h1.1l-2.3,6.2H194.5z"/>
|
198 |
+
<path fill="#565656" d="M203.2,148.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
199 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.7-0.2,1.2-0.2
|
200 |
+
c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6c0,0.3,0,0.5,0.1,0.8
|
201 |
+
c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3s0.5-0.5,0.5-0.9h1
|
202 |
+
C204,147.7,203.7,148.3,203.2,148.6z M203,144.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1
|
203 |
+
c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4c-0.2,0.2-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
204 |
+
C203.1,145.1,203.1,144.8,203,144.6z"/>
|
205 |
+
<path fill="#565656" d="M214.1,149c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
206 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
207 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
208 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1c0.2-0.1,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
209 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2c-0.3,0.2-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1
|
210 |
+
c0.1-0.3,0.3-0.5,0.6-0.6c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2
|
211 |
+
c0.2,0.1,0.4,0.3,0.5,0.5c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V149z
|
212 |
+
M212.4,145.8c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1c-0.2,0-0.4,0.1-0.6,0.2
|
213 |
+
c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2
|
214 |
+
c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5c0.1-0.2,0.1-0.3,0.1-0.5V145.8z"/>
|
215 |
+
</g>
|
216 |
+
<g enable-background="new ">
|
217 |
+
<path fill="#565656" d="M41.5,164.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
218 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
219 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
220 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
221 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
222 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
223 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
224 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
225 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
226 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C41.4,164.3,41.5,164.5,41.5,164.6z"/>
|
227 |
+
<path fill="#565656" d="M50.9,166v-1h0c-0.2,0.4-0.5,0.7-0.8,0.8c-0.3,0.2-0.7,0.3-1.2,0.3c-0.4,0-0.7-0.1-1-0.2
|
228 |
+
c-0.3-0.1-0.5-0.3-0.7-0.5c-0.2-0.2-0.3-0.4-0.4-0.7c-0.1-0.3-0.1-0.6-0.1-0.9v-4.1h1v4.2c0,0.4,0.1,0.7,0.3,0.9
|
229 |
+
c0.2,0.2,0.5,0.3,0.9,0.3c0.3,0,0.6,0,0.8-0.1c0.2-0.1,0.4-0.2,0.6-0.4c0.2-0.2,0.3-0.4,0.3-0.6c0.1-0.2,0.1-0.5,0.1-0.8v-3.5h1
|
230 |
+
v6.2H50.9z"/>
|
231 |
+
<path fill="#565656" d="M58.1,167.8c-0.5,0.5-1.2,0.8-2.2,0.8c-0.3,0-0.6,0-0.9-0.1c-0.3-0.1-0.6-0.2-0.8-0.3
|
232 |
+
c-0.2-0.1-0.4-0.3-0.6-0.6c-0.2-0.2-0.2-0.5-0.3-0.9h1c0,0.2,0.1,0.3,0.2,0.5c0.1,0.1,0.2,0.2,0.4,0.3c0.2,0.1,0.3,0.1,0.5,0.2
|
233 |
+
s0.4,0.1,0.5,0.1c0.3,0,0.6-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5s0.3-0.5,0.3-0.7c0.1-0.3,0.1-0.6,0.1-0.9v-0.4h0
|
234 |
+
c-0.2,0.4-0.4,0.7-0.8,0.8s-0.7,0.3-1.1,0.3c-0.5,0-0.9-0.1-1.2-0.3c-0.3-0.2-0.6-0.4-0.9-0.7s-0.4-0.6-0.5-1
|
235 |
+
c-0.1-0.4-0.2-0.8-0.2-1.2c0-0.4,0-0.7,0.1-1.1c0.1-0.4,0.3-0.7,0.5-1.1c0.2-0.3,0.5-0.6,0.9-0.8c0.4-0.2,0.8-0.3,1.4-0.3
|
236 |
+
c0.4,0,0.8,0.1,1.1,0.3s0.6,0.4,0.8,0.8h0v-0.9h1v5.7C58.8,166.5,58.6,167.2,58.1,167.8z M56.8,165c0.2-0.1,0.4-0.3,0.6-0.6
|
237 |
+
c0.1-0.2,0.2-0.5,0.3-0.8s0.1-0.6,0.1-0.9c0-0.3,0-0.5-0.1-0.8c-0.1-0.3-0.2-0.5-0.3-0.7s-0.3-0.4-0.5-0.5
|
238 |
+
c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.6,0.5s-0.3,0.4-0.3,0.7c-0.1,0.3-0.1,0.6-0.1,0.9
|
239 |
+
c0,0.3,0,0.6,0.1,0.8c0.1,0.3,0.2,0.5,0.3,0.8c0.1,0.2,0.3,0.4,0.5,0.6c0.2,0.1,0.5,0.2,0.8,0.2S56.6,165.1,56.8,165z"/>
|
240 |
+
<path fill="#565656" d="M65,167.8c-0.5,0.5-1.2,0.8-2.2,0.8c-0.3,0-0.6,0-0.9-0.1c-0.3-0.1-0.6-0.2-0.8-0.3
|
241 |
+
c-0.2-0.1-0.4-0.3-0.6-0.6c-0.2-0.2-0.2-0.5-0.3-0.9h1c0,0.2,0.1,0.3,0.2,0.5c0.1,0.1,0.2,0.2,0.4,0.3c0.2,0.1,0.3,0.1,0.5,0.2
|
242 |
+
s0.4,0.1,0.5,0.1c0.3,0,0.6-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5s0.3-0.5,0.3-0.7c0.1-0.3,0.1-0.6,0.1-0.9v-0.4h0
|
243 |
+
c-0.2,0.4-0.4,0.7-0.8,0.8s-0.7,0.3-1.1,0.3c-0.5,0-0.9-0.1-1.2-0.3c-0.3-0.2-0.6-0.4-0.9-0.7s-0.4-0.6-0.5-1
|
244 |
+
c-0.1-0.4-0.2-0.8-0.2-1.2c0-0.4,0-0.7,0.1-1.1c0.1-0.4,0.3-0.7,0.5-1.1c0.2-0.3,0.5-0.6,0.9-0.8c0.4-0.2,0.8-0.3,1.4-0.3
|
245 |
+
c0.4,0,0.8,0.1,1.1,0.3s0.6,0.4,0.8,0.8h0v-0.9h1v5.7C65.7,166.5,65.4,167.2,65,167.8z M63.7,165c0.2-0.1,0.4-0.3,0.6-0.6
|
246 |
+
c0.1-0.2,0.2-0.5,0.3-0.8s0.1-0.6,0.1-0.9c0-0.3,0-0.5-0.1-0.8c-0.1-0.3-0.2-0.5-0.3-0.7s-0.3-0.4-0.5-0.5
|
247 |
+
c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.6,0.5s-0.3,0.4-0.3,0.7c-0.1,0.3-0.1,0.6-0.1,0.9
|
248 |
+
c0,0.3,0,0.6,0.1,0.8c0.1,0.3,0.2,0.5,0.3,0.8c0.1,0.2,0.3,0.4,0.5,0.6c0.2,0.1,0.5,0.2,0.8,0.2S63.4,165.1,63.7,165z"/>
|
249 |
+
<path fill="#565656" d="M71.6,165.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
250 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
251 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2H68
|
252 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
253 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C72.4,164.7,72.1,165.3,71.6,165.6z M71.4,161.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
254 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
255 |
+
C71.5,162.1,71.5,161.8,71.4,161.6z"/>
|
256 |
+
<path fill="#565656" d="M74.4,164.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
257 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
258 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
259 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
260 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
261 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
262 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
263 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
264 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
265 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C74.3,164.3,74.3,164.5,74.4,164.6z"/>
|
266 |
+
<path fill="#565656" d="M82.3,159.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0h0.5v0.9
|
267 |
+
h-0.8c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9H79v-0.9h1.1v-1.9h1v1.9
|
268 |
+
H82.3z"/>
|
269 |
+
<path fill="#565656" d="M83.5,158.7v-1.2h1v1.2H83.5z M84.5,159.8v6.2h-1v-6.2H84.5z"/>
|
270 |
+
<path fill="#565656" d="M86,161.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7s0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
271 |
+
s0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
272 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1
|
273 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S85.8,162,86,161.6z M87,163.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
274 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.3,0,0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7s0.1-0.6,0.1-1s0-0.7-0.1-1
|
275 |
+
s-0.2-0.5-0.4-0.7c-0.2-0.2-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
276 |
+
c-0.2,0.2-0.3,0.4-0.4,0.7c-0.1,0.3-0.1,0.6-0.1,1S86.9,163.6,87,163.9z"/>
|
277 |
+
<path fill="#565656" d="M94,159.8v1h0c0.4-0.8,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5
|
278 |
+
c0.2,0.2,0.3,0.4,0.4,0.7c0.1,0.3,0.1,0.6,0.1,0.9v4.1h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.3-0.9-0.3
|
279 |
+
c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8v3.5h-1v-6.2H94z"/>
|
280 |
+
<path fill="#565656" d="M102.4,160.7v-0.9h1v-0.9c0-0.5,0.1-0.9,0.4-1.1c0.3-0.3,0.7-0.4,1.3-0.4c0.1,0,0.2,0,0.3,0
|
281 |
+
c0.1,0,0.2,0,0.3,0.1v0.9c-0.1,0-0.2-0.1-0.3-0.1s-0.2,0-0.3,0c-0.2,0-0.4,0-0.6,0.1c-0.1,0.1-0.2,0.3-0.2,0.6v0.9h1.2v0.9h-1.2
|
282 |
+
v5.3h-1v-5.3H102.4z"/>
|
283 |
+
<path fill="#565656" d="M106.4,161.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7s0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
284 |
+
s0.7,0.4,0.9,0.7s0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1s-0.6,0.5-0.9,0.7
|
285 |
+
s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3
|
286 |
+
S106.3,162,106.4,161.6z M107.4,163.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5c0.2,0.1,0.5,0.2,0.7,0.2
|
287 |
+
c0.3,0,0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7c0.1-0.3,0.1-0.6,0.1-1s0-0.7-0.1-1
|
288 |
+
c-0.1-0.3-0.2-0.5-0.4-0.7c-0.2-0.2-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
289 |
+
c-0.2,0.2-0.3,0.4-0.4,0.7c-0.1,0.3-0.1,0.6-0.1,1S107.3,163.6,107.4,163.9z"/>
|
290 |
+
<path fill="#565656" d="M114.4,159.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
291 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1v2.8h-1v-6.2H114.4z"/>
|
292 |
+
<path fill="#565656" d="M117.5,159c0.1-0.4,0.3-0.7,0.5-0.9c0.2-0.3,0.5-0.5,0.9-0.6c0.3-0.1,0.7-0.2,1.1-0.2c0.4,0,0.7,0.1,1,0.2
|
293 |
+
c0.3,0.1,0.6,0.3,0.8,0.5c0.2,0.2,0.4,0.5,0.5,0.8c0.1,0.3,0.2,0.6,0.2,1c0,0.2,0,0.5-0.1,0.7s-0.1,0.4-0.2,0.5s-0.2,0.3-0.3,0.4
|
294 |
+
c-0.1,0.1-0.2,0.3-0.4,0.4c-0.1,0.1-0.3,0.2-0.4,0.4s-0.2,0.3-0.3,0.4c-0.1,0.1-0.2,0.3-0.2,0.5c-0.1,0.2-0.1,0.4-0.1,0.6v0.5h-1
|
295 |
+
v-0.6c0-0.3,0.1-0.6,0.2-0.9c0.1-0.2,0.2-0.4,0.4-0.6c0.2-0.2,0.3-0.4,0.5-0.5c0.2-0.2,0.3-0.3,0.5-0.5s0.3-0.4,0.4-0.6
|
296 |
+
s0.1-0.5,0.1-0.8c0-0.4-0.2-0.8-0.4-1s-0.6-0.4-1-0.4c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.4,0.2-0.5,0.4s-0.2,0.4-0.3,0.6
|
297 |
+
c-0.1,0.2-0.1,0.5-0.1,0.8h-1C117.3,159.7,117.4,159.3,117.5,159z M120.6,164.7v1.3h-1.3v-1.3H120.6z"/>
|
298 |
+
</g>
|
299 |
+
<g enable-background="new ">
|
300 |
+
<path fill="#565656" d="M142.1,42.4V50h4.5v1h-5.7v-8.6H142.1z"/>
|
301 |
+
<path fill="#565656" d="M152.9,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
302 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
303 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
304 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
305 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
306 |
+
s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1s0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5c0.1,0.2,0.2,0.5,0.2,0.9
|
307 |
+
v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51z M151.3,47.8c-0.1,0.1-0.3,0.2-0.5,0.2
|
308 |
+
c-0.2,0-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.4-0.2,0.6
|
309 |
+
c0,0.2,0,0.3,0.1,0.4c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
310 |
+
c0.2-0.1,0.4-0.2,0.6-0.3s0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V47.8z"/>
|
311 |
+
<path fill="#565656" d="M154.7,49.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
312 |
+
s0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3c0.1-0.1,0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
313 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
314 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.6-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
315 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3s-0.3-0.1-0.5-0.2
|
316 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
317 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
318 |
+
s0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9s-0.4,0.4-0.6,0.6
|
319 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
320 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C154.5,49.3,154.6,49.5,154.7,49.6z"/>
|
321 |
+
<path fill="#565656" d="M162.5,44.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3c0,0.1,0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0h0.5
|
322 |
+
V51h-0.8c-0.3,0-0.5,0-0.7-0.1c-0.2,0-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1
|
323 |
+
v-1.9h1v1.9H162.5z"/>
|
324 |
+
<path fill="#565656" d="M168.4,42.4l4.5,6.9h0v-6.9h1.1V51h-1.2l-4.5-6.9h0V51h-1.1v-8.6H168.4z"/>
|
325 |
+
<path fill="#565656" d="M181.2,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
326 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
327 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5s0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
328 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
329 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
330 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
331 |
+
s0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51z M179.5,47.8c-0.1,0.1-0.3,0.2-0.5,0.2
|
332 |
+
c-0.2,0-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2s-0.3,0.2-0.4,0.3c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4
|
333 |
+
c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1c0.2-0.1,0.4-0.2,0.6-0.3
|
334 |
+
c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V47.8z"/>
|
335 |
+
<path fill="#565656" d="M183.1,44.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
336 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
337 |
+
c0.1,0.2,0.1,0.5,0.1,0.8V51h-1v-4.1c0-0.2,0-0.4,0-0.5s-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
338 |
+
c-0.5,0-0.9,0.1-1.2,0.4s-0.4,0.7-0.4,1.2V51h-1v-4.1c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4s-0.2-0.2-0.4-0.3
|
339 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4c-0.1,0.2-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5
|
340 |
+
V51h-1v-6.2H183.1z"/>
|
341 |
+
<path fill="#565656" d="M196.7,50.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
342 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.7-0.2,1.2-0.2
|
343 |
+
c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6c0,0.3,0,0.5,0.1,0.8
|
344 |
+
c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3s0.5-0.5,0.5-0.9h1
|
345 |
+
C197.5,49.7,197.2,50.3,196.7,50.6z M196.5,46.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1
|
346 |
+
c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4c-0.2,0.2-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6C196.6,47.1,196.6,46.8,196.5,46.6
|
347 |
+
z"/>
|
348 |
+
</g>
|
349 |
+
<path id="Rectangle_906" fill="#FF8D91" d="M85,238h95c2.8,0,5,2.2,5,5v17c0,2.8-2.2,5-5,5H85c-2.8,0-5-2.2-5-5v-17
|
350 |
+
C80,240.2,82.2,238,85,238z"/>
|
351 |
+
<g enable-background="new ">
|
352 |
+
<path fill="#FFFFFF" d="M115.4,253.6c0,0.3,0,0.5,0.1,0.7s0.2,0.4,0.4,0.5c0.2,0.1,0.4,0.2,0.6,0.3s0.5,0.1,0.7,0.1
|
353 |
+
c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.1-0.3,0.1-0.4c0-0.3-0.1-0.5-0.2-0.6
|
354 |
+
s-0.3-0.2-0.4-0.3c-0.3-0.1-0.5-0.2-0.9-0.3c-0.3-0.1-0.8-0.2-1.2-0.3c-0.3-0.1-0.6-0.2-0.8-0.3c-0.2-0.1-0.4-0.3-0.5-0.4
|
355 |
+
c-0.1-0.2-0.2-0.3-0.3-0.5s-0.1-0.4-0.1-0.5c0-0.4,0.1-0.7,0.2-0.9c0.1-0.3,0.3-0.5,0.6-0.7c0.2-0.2,0.5-0.3,0.8-0.4
|
356 |
+
c0.3-0.1,0.6-0.1,1-0.1c0.4,0,0.7,0,1.1,0.1s0.6,0.2,0.9,0.4c0.2,0.2,0.4,0.4,0.6,0.7s0.2,0.6,0.2,1h-1.2c0-0.5-0.2-0.8-0.5-1
|
357 |
+
c-0.3-0.2-0.6-0.3-1.1-0.3c-0.1,0-0.3,0-0.5,0s-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.2-0.3,0.3c-0.1,0.1-0.1,0.3-0.1,0.4
|
358 |
+
c0,0.3,0.1,0.5,0.2,0.6c0.2,0.1,0.4,0.3,0.6,0.3c0,0,0.1,0,0.3,0.1c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.1,0.7,0.2
|
359 |
+
s0.4,0.1,0.5,0.1c0.2,0.1,0.4,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.4c0.1,0.2,0.2,0.3,0.3,0.5s0.1,0.4,0.1,0.6c0,0.4-0.1,0.7-0.2,1
|
360 |
+
c-0.2,0.3-0.4,0.5-0.6,0.7c-0.3,0.2-0.6,0.3-0.9,0.4s-0.7,0.1-1,0.1c-0.4,0-0.8,0-1.1-0.2c-0.4-0.1-0.7-0.3-0.9-0.5
|
361 |
+
c-0.3-0.2-0.5-0.5-0.6-0.8c-0.2-0.3-0.2-0.7-0.2-1.1H115.4z"/>
|
362 |
+
<path fill="#FFFFFF" d="M121,248.9h1.2v4.2c0,0.2,0,0.5,0,0.7c0,0.2,0.1,0.5,0.2,0.7c0.1,0.2,0.3,0.4,0.5,0.5
|
363 |
+
c0.2,0.1,0.5,0.2,0.9,0.2c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.5-0.5c0.1-0.2,0.2-0.4,0.2-0.7c0-0.2,0-0.5,0-0.7v-4.2h1.2v4.6
|
364 |
+
c0,0.5-0.1,0.9-0.2,1.2c-0.1,0.3-0.3,0.6-0.6,0.9c-0.3,0.2-0.6,0.4-0.9,0.5c-0.4,0.1-0.8,0.2-1.2,0.2c-0.4,0-0.8-0.1-1.2-0.2
|
365 |
+
s-0.7-0.3-0.9-0.5c-0.3-0.2-0.5-0.5-0.6-0.9c-0.1-0.3-0.2-0.7-0.2-1.2V248.9z"/>
|
366 |
+
<path fill="#FFFFFF" d="M128.3,248.9h3.5c0.6,0,1.2,0.1,1.5,0.4c0.4,0.3,0.6,0.7,0.6,1.3c0,0.4-0.1,0.7-0.3,0.9
|
367 |
+
c-0.2,0.3-0.4,0.5-0.8,0.6v0c0.4,0.1,0.8,0.3,1,0.6s0.3,0.7,0.3,1.2c0,0.3,0,0.5-0.1,0.8c-0.1,0.2-0.3,0.5-0.5,0.6
|
368 |
+
c-0.2,0.2-0.5,0.3-0.8,0.4c-0.3,0.1-0.7,0.2-1.2,0.2h-3.3V248.9z M129.5,251.8h2c0.3,0,0.6-0.1,0.8-0.3c0.2-0.2,0.3-0.4,0.3-0.7
|
369 |
+
c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.1-0.4-0.2-0.8-0.2h-2V251.8z M129.5,255h2.2c0.4,0,0.7-0.1,0.9-0.3c0.2-0.2,0.3-0.5,0.3-0.8
|
370 |
+
c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.2-0.5-0.3-0.9-0.3h-2.2V255z"/>
|
371 |
+
<path fill="#FFFFFF" d="M135.3,248.9h1.8l2,5.6h0l1.9-5.6h1.7v7.1h-1.2v-5.5h0l-2,5.5h-1l-2-5.5h0v5.5h-1.2V248.9z"/>
|
372 |
+
<path fill="#FFFFFF" d="M144.2,248.9h1.2v7.1h-1.2V248.9z"/>
|
373 |
+
<path fill="#FFFFFF" d="M146.3,248.9h5.8v1.1h-2.3v6.1h-1.2v-6.1h-2.3V248.9z"/>
|
374 |
+
</g>
|
375 |
+
</g>
|
376 |
+
</svg>
|
templates/2/content.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"version":"0.4","title":"Contact Form Simple 2","type":"page","content":[{"id":"1637","settings":{"gap":"no","box_shadow_box_shadow":{"horizontal":30,"vertical":30,"blur":80,"spread":0,"color":"rgba(0,0,0,0.1)"}},"elements":[{"id":"6736","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"456b","settings":{"gap":"extended"},"elements":[{"id":"42ba","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"6adc","settings":{"title":"Your Details","title_color":"#101010","typography_typography":"custom","typography_font_family":"Helvetica","typography_font_size":{"unit":"px","size":20,"sizes":[]},"typography_font_weight":"700","typography_line_height":{"unit":"px","size":21,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"heading","elType":"widget"},{"id":"37e5","settings":{"title":"Let us know how to get back to you.","header_size":"p","title_color":"#999999","typography_typography":"custom","typography_font_family":"Helvetica","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"400","typography_line_height":{"unit":"px","size":18,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"_padding":{"unit":"px","top":"5","right":"0","bottom":"11","left":"0","isLinked":false},"_border_border":"solid","_border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"_border_color":"#e9e9e9"},"elements":[],"isInner":false,"widgetType":"heading","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"3974","settings":{"gap":"extended","structure":"20"},"elements":[{"id":"6d61","settings":{"_column_size":50,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"58c8","settings":{"mf_input_label":"First Name","mf_input_name":"mf-first-name","mf_input_placeholder":"Anderson","mf_input_help_text":"Enter your first name here","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_min_length":1,"mf_input_label_color":"#101010","mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_input_required":"yes","mf_input_required_indicator_color":"#101010"},"elements":[],"isInner":false,"widgetType":"mf-text","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"4d47","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"5086","settings":{"mf_input_label":"Last Name","mf_input_name":"mf-last-name","mf_input_placeholder":"Mikoo","mf_input_help_text":"Enter your last name here","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_input_required":"yes","mf_input_required_indicator_color":"#101010"},"elements":[],"isInner":false,"widgetType":"mf-text","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"6799","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"6f12","settings":{"_column_size":50,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"7e9d","settings":{"mf_input_label":"Email Address","mf_input_name":"mf-email","mf_input_placeholder":"","mf_input_help_text":"Example: user@website.com","mf_input_required":"yes","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-email","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"78e0","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"76e3","settings":{"mf_input_label":"Subject","mf_input_name":"mf-subject","mf_input_placeholder":"","mf_input_help_text":"How can we help you?","mf_input_required":"yes","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-text","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"70d1","settings":{"gap":"extended","padding":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"3f8","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"6a5e","settings":{"title":"How can we help?","title_color":"#101010","typography_typography":"custom","typography_font_family":"Helvetica","typography_font_size":{"unit":"px","size":20,"sizes":[]},"typography_font_weight":"700","typography_line_height":{"unit":"px","size":21,"sizes":[]},"_padding":{"unit":"px","top":"1","right":"0","bottom":"5","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"heading","elType":"widget"},{"id":"1e3f","settings":{"title":"Feel free to ask a question or simply leave a comment","header_size":"p","title_color":"#999999","typography_typography":"custom","typography_font_family":"Helvetica","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"400","typography_line_height":{"unit":"px","size":18,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"_padding":{"unit":"px","top":"5","right":"0","bottom":"11","left":"0","isLinked":false},"_border_border":"solid","_border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"_border_color":"#e9e9e9"},"elements":[],"isInner":false,"widgetType":"heading","elType":"widget"},{"id":"430c","settings":{"mf_input_label":"Comments \/ Questions","mf_input_name":"mf-comment","mf_input_placeholder":"","mf_input_required":"yes","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_textarea_field_height":{"unit":"px","size":140,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"mf-textarea","elType":"widget"},{"id":"6455","settings":{"_margin":{"unit":"px","top":"40","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-recaptcha","elType":"widget"},{"id":"4e6a","settings":{"mf_btn_text":"Send Message","mf_btn_align":"left","mf_btn_text_padding":{"unit":"px","top":"15","right":"20","bottom":"15","left":"20","isLinked":false},"mf_btn_typography_typography":"custom","mf_btn_typography_font_family":"Helvetica","mf_btn_typography_font_size":{"unit":"px","size":16,"sizes":[]},"mf_btn_typography_font_weight":"500","mf_btn_typography_line_height":{"unit":"px","size":18,"sizes":[]},"mf_btn_bg_color_background":"classic","mf_btn_bg_color_color":"#4285f4","mf_btn_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"mf_btn_box_shadow_group_box_shadow_type":"yes","mf_btn_box_shadow_group_box_shadow":{"horizontal":0,"vertical":7,"blur":15,"spread":0,"color":"rgba(66,133,244,0.3)"},"_margin":{"unit":"px","top":"40","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-button","elType":"widget"},{"id":"5f5b","settings":{"_padding":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false},"_margin":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-response","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}]}
|
1 |
+
{"version":"0.4","title":"Simple Contact Form 2","type":"page","content":[{"id":"57675633","settings":{"gap":"no","box_shadow_box_shadow":{"horizontal":30,"vertical":30,"blur":80,"spread":0,"color":"rgba(0,0,0,0.1)"},"background_background":"classic","background_color":"#ffffff","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","padding":{"unit":"px","top":"33","right":"35","bottom":"15","left":"35","isLinked":false},"padding_tablet":{"unit":"px","top":"33","right":"15","bottom":"35","left":"15","isLinked":false}},"elements":[{"id":"204f5a56","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"425bdc05","settings":{"gap":"extended"},"elements":[{"id":"590cd808","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"5918994a","settings":{"title":"Your Details","title_color":"#101010","typography_typography":"custom","typography_font_family":"Helvetica","typography_font_size":{"unit":"px","size":20,"sizes":[]},"typography_font_weight":"700","typography_line_height":{"unit":"px","size":21,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"heading","elType":"widget"},{"id":"7bf129f4","settings":{"title":"Let us know how to get back to you.","header_size":"p","title_color":"#999999","typography_typography":"custom","typography_font_family":"Helvetica","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"400","typography_line_height":{"unit":"px","size":18,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"_padding":{"unit":"px","top":"5","right":"0","bottom":"11","left":"0","isLinked":false},"_border_border":"solid","_border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"_border_color":"#e9e9e9"},"elements":[],"isInner":false,"widgetType":"heading","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"5a8c3638","settings":{"gap":"extended","structure":"20"},"elements":[{"id":"7a1f3c4","settings":{"_column_size":50,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"66d09a6a","settings":{"mf_input_label":"First Name","mf_input_name":"mf-first-name","mf_input_placeholder":"Anderson","mf_input_help_text":"Enter your first name here","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_min_length":1,"mf_input_label_color":"#101010","mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_input_required":"yes","mf_input_required_indicator_color":"#101010","mf_input_validation_warning_message":"Something went wrong."},"elements":[],"isInner":false,"widgetType":"mf-text","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"3ee6323c","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"7b83b62b","settings":{"mf_input_label":"Last Name","mf_input_name":"mf-last-name","mf_input_placeholder":"Mikoo","mf_input_help_text":"Enter your last name here","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_input_required":"yes","mf_input_required_indicator_color":"#101010","mf_input_validation_warning_message":"Something went wrong."},"elements":[],"isInner":false,"widgetType":"mf-text","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"62e12a07","settings":{"gap":"extended","structure":"20","padding":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"38f084a0","settings":{"_column_size":50,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"40e3683b","settings":{"mf_input_label":"Email Address","mf_input_name":"mf-email","mf_input_placeholder":"","mf_input_help_text":"Example: user@website.com","mf_input_required":"yes","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_input_validation_warning_message":"Something went wrong."},"elements":[],"isInner":false,"widgetType":"mf-email","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"4d7da936","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"4430db69","settings":{"mf_input_label":"Subject","mf_input_name":"mf-subject","mf_input_placeholder":"","mf_input_help_text":"How can we help you?","mf_input_required":"yes","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_input_validation_warning_message":"Something went wrong."},"elements":[],"isInner":false,"widgetType":"mf-text","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"66eccabc","settings":{"gap":"extended","padding":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"703f7164","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"3f920ed4","settings":{"title":"How can we help?","title_color":"#101010","typography_typography":"custom","typography_font_family":"Helvetica","typography_font_size":{"unit":"px","size":20,"sizes":[]},"typography_font_weight":"700","typography_line_height":{"unit":"px","size":21,"sizes":[]},"_padding":{"unit":"px","top":"1","right":"0","bottom":"5","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"heading","elType":"widget"},{"id":"44c6c47e","settings":{"title":"Feel free to ask a question or simply leave a comment","header_size":"p","title_color":"#999999","typography_typography":"custom","typography_font_family":"Helvetica","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"400","typography_line_height":{"unit":"px","size":18,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"_padding":{"unit":"px","top":"5","right":"0","bottom":"11","left":"0","isLinked":false},"_border_border":"solid","_border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"_border_color":"#e9e9e9"},"elements":[],"isInner":false,"widgetType":"heading","elType":"widget"},{"id":"102eec8d","settings":{"mf_input_label":"Comments \/ Questions","mf_input_name":"mf-comment","mf_input_placeholder":"","mf_input_required":"yes","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_textarea_field_height":{"unit":"px","size":140,"sizes":[]},"mf_input_validation_warning_message":"Something went wrong."},"elements":[],"isInner":false,"widgetType":"mf-textarea","elType":"widget"},{"id":"481bf69b","settings":{"_margin":{"unit":"px","top":"40","right":"0","bottom":"0","left":"0","isLinked":false},"mf_recaptcha_type":"recaptcha-v2","mf_input_label":"reCAPTCHA","mf_input_placeholder":"reCAPTCHA"},"elements":[],"isInner":false,"widgetType":"mf-recaptcha","elType":"widget"},{"id":"519961dd","settings":{"mf_btn_text":"Send Message","mf_btn_align":"left","mf_btn_text_padding":{"unit":"px","top":"15","right":"20","bottom":"15","left":"20","isLinked":false},"mf_btn_typography_typography":"custom","mf_btn_typography_font_family":"Helvetica","mf_btn_typography_font_size":{"unit":"px","size":16,"sizes":[]},"mf_btn_typography_font_weight":"500","mf_btn_typography_line_height":{"unit":"px","size":18,"sizes":[]},"mf_btn_bg_color_background":"classic","mf_btn_bg_color_color":"#4285f4","mf_btn_box_shadow_group_box_shadow_type":"yes","mf_btn_box_shadow_group_box_shadow":{"horizontal":0,"vertical":7,"blur":15,"spread":0,"color":"rgba(66,133,244,0.3)"},"_margin":{"unit":"px","top":"40","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-button","elType":"widget"},{"id":"7903e715","settings":{"_padding":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false},"_margin":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false},"mf_response_padding":{"unit":"px","top":"12","right":"30","bottom":"12","left":"30","isLinked":false},"mf_response_typography_typography":"custom","mf_response_typography_font_family":"Helvetica","mf_response_typography_font_size":{"unit":"px","size":16,"sizes":[]},"mf_response_typography_font_weight":"500","mf_response_typography_line_height":{"unit":"px","size":21,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"mf-response","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}]}
|
templates/2/preview-thumb.svg
CHANGED
@@ -1,347 +1,347 @@
|
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
2 |
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
-
viewBox="0 0
|
5 |
-
<g
|
6 |
-
<path id="
|
7 |
-
|
8 |
-
<path id="
|
9 |
-
c-
|
10 |
-
<path id="
|
11 |
-
c-
|
|
|
|
|
|
|
|
|
12 |
<g enable-background="new ">
|
13 |
-
<path fill="#565656" d="
|
14 |
-
<path fill="#565656" d="
|
15 |
-
|
16 |
-
c-0.
|
17 |
-
|
18 |
-
c0.2
|
19 |
-
c-0.
|
20 |
-
|
21 |
-
|
22 |
-
c-0.2-0.1-0.
|
23 |
-
|
24 |
-
|
25 |
-
c-0.2,0.
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
<path fill="#565656" d="
|
31 |
-
c-0.
|
32 |
-
|
33 |
-
c0
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
<path fill="#565656" d="
|
41 |
-
|
42 |
-
c0
|
43 |
-
|
44 |
-
c-0.1-0.1-0.
|
45 |
-
|
46 |
-
|
47 |
-
c-0.
|
48 |
-
|
49 |
-
c0.3,0,0.5,0,0.
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
c0.1,0,0.3-0.1,0.4-0.1c0.1-0.1,0.2-0.1,0.3-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2-0.1-0.4-0.2-0.5c-0.2-0.1-0.4-0.2-0.6-0.3
|
54 |
-
c-0.2-0.1-0.5-0.1-0.8-0.2s-0.6-0.1-0.8-0.2c-0.2-0.1-0.5-0.2-0.6-0.4s-0.2-0.4-0.2-0.8c0-0.3,0.1-0.5,0.2-0.7
|
55 |
-
c0.1-0.2,0.3-0.3,0.4-0.5c0.2-0.1,0.4-0.2,0.6-0.3s0.5-0.1,0.7-0.1c0.3,0,0.6,0,0.8,0.1c0.2,0,0.5,0.1,0.7,0.3s0.3,0.3,0.5,0.5
|
56 |
-
s0.2,0.5,0.2,0.8h-0.9c0-0.2-0.1-0.3-0.1-0.4c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.1s-0.3,0-0.4,0c-0.1,0-0.3,0-0.4,0
|
57 |
-
c-0.1,0-0.2,0.1-0.4,0.1c-0.1,0-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.1,0.1,0.3,0.2,0.4c0.1,0.1,0.2,0.2,0.4,0.2
|
58 |
-
c0.2,0.1,0.3,0.1,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.2,0.5,0.3s0.3,0.2,0.4,0.4
|
59 |
-
c0.1,0.2,0.1,0.4,0.1,0.6c0,0.3-0.1,0.6-0.2,0.8c-0.1,0.2-0.3,0.4-0.5,0.5c-0.2,0.1-0.4,0.2-0.7,0.3c-0.3,0-0.5,0.1-0.8,0.1
|
60 |
-
c-0.3,0-0.6,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.4-0.3-0.5-0.5c-0.1-0.2-0.2-0.5-0.2-0.8h0.9
|
61 |
-
C1131.3,264.6,1131.4,264.7,1131.4,264.8z"/>
|
62 |
</g>
|
63 |
<g enable-background="new ">
|
64 |
-
<path fill="#565656" d="
|
65 |
-
<path fill="#565656" d="
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
c-0.1
|
76 |
-
c0.
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
c0.2,0,0.4-0.1,0.6-0.1s0.3-0.1,0.4-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2,0-0.3-0.1-0.5c-0.1-0.1-0.2-0.2-0.3-0.3
|
84 |
-
c-0.1-0.1-0.2-0.1-0.4-0.1c-0.1,0-0.3,0-0.4,0c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.4-0.4,0.8h-0.9c0-0.3,0.1-0.6,0.2-0.8
|
85 |
-
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.2,0,0.5,0,0.7,0s0.4,0.1,0.6,0.2
|
86 |
-
c0.2,0.1,0.3,0.2,0.5,0.4s0.2,0.4,0.2,0.7v2.7c0,0.2,0,0.3,0,0.4c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3-0.1V365z M1114.5,362.3
|
87 |
-
c-0.1,0.1-0.2,0.1-0.4,0.2c-0.2,0-0.4,0.1-0.5,0.1s-0.4,0-0.6,0.1s-0.4,0.1-0.5,0.1c-0.2,0.1-0.3,0.2-0.4,0.3
|
88 |
-
c-0.1,0.1-0.1,0.3-0.1,0.5c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.1,0.2,0.2,0.2c0.1,0.1,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.4,0
|
89 |
-
c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.4-0.2,0.5-0.3c0.1-0.1,0.2-0.2,0.3-0.4s0.1-0.3,0.1-0.4V362.3z"/>
|
90 |
-
<path fill="#565656" d="M1117.5,359.8v0.8h0c0.4-0.6,0.9-0.9,1.7-0.9c0.3,0,0.6,0,0.9,0.1c0.2,0.1,0.4,0.2,0.5,0.4
|
91 |
-
c0.1,0.2,0.2,0.4,0.3,0.6c0.1,0.2,0.1,0.5,0.1,0.8v3.4h-0.9v-3.5c0-0.3-0.1-0.6-0.3-0.8s-0.4-0.3-0.8-0.3c-0.3,0-0.5,0-0.7,0.1
|
92 |
-
c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6v2.9h-0.9v-5.2H1117.5z"/>
|
93 |
-
<path fill="#565656" d="M1129.3,365l-1-4.1h0l-1,4.1h-0.9l-1.7-5.2h0.9l1.2,4.2h0l1-4.2h0.9l1.1,4.2h0l1.2-4.2h0.9l-1.7,5.2
|
94 |
-
H1129.3z"/>
|
95 |
-
<path fill="#565656" d="M1136.3,364.7c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
96 |
-
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.8,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6
|
97 |
-
c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.4,1c0.1,0.3,0.1,0.7,0.1,1h-3.9
|
98 |
-
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.1,0.7,0.1c0.4,0,0.7-0.1,0.9-0.2
|
99 |
-
s0.4-0.4,0.5-0.8h0.8C1136.9,363.9,1136.7,364.4,1136.3,364.7z M1136.1,361.3c-0.1-0.2-0.2-0.3-0.3-0.5c-0.1-0.1-0.3-0.2-0.5-0.3
|
100 |
-
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6h3
|
101 |
-
C1136.2,361.7,1136.2,361.5,1136.1,361.3z"/>
|
102 |
-
<path fill="#565656" d="M1141.6,357.9v2.7h0c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.3-0.2,0.4-0.3c0.2-0.1,0.3-0.1,0.5-0.2
|
103 |
-
c0.2,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9,0.1c0.2,0.1,0.4,0.2,0.5,0.4c0.1,0.2,0.2,0.4,0.3,0.6c0.1,0.2,0.1,0.5,0.1,0.8v3.4h-0.9v-3.5
|
104 |
-
c0-0.3-0.1-0.6-0.3-0.8s-0.4-0.3-0.8-0.3c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5
|
105 |
-
c-0.1,0.2-0.1,0.4-0.1,0.6v2.9h-0.9v-7.1H1141.6z"/>
|
106 |
-
<path fill="#565656" d="M1150,364.7c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
107 |
-
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.8,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6
|
108 |
-
c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.4,1s0.1,0.7,0.1,1h-3.9
|
109 |
-
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.1,0.7,0.1c0.4,0,0.7-0.1,0.9-0.2
|
110 |
-
c0.2-0.2,0.4-0.4,0.5-0.8h0.8C1150.6,363.9,1150.4,364.4,1150,364.7z M1149.8,361.3c-0.1-0.2-0.2-0.3-0.3-0.5
|
111 |
-
c-0.1-0.1-0.3-0.2-0.5-0.3c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5
|
112 |
-
c-0.1,0.2-0.1,0.4-0.1,0.6h3C1149.9,361.7,1149.9,361.5,1149.8,361.3z"/>
|
113 |
-
<path fill="#565656" d="M1152.6,357.9v7.1h-0.9v-7.1H1152.6z"/>
|
114 |
-
<path fill="#565656" d="M1154.8,359.8v0.7h0c0.1-0.3,0.4-0.5,0.7-0.6c0.3-0.1,0.6-0.2,1-0.2c0.4,0,0.7,0.1,1,0.2
|
115 |
-
c0.3,0.1,0.5,0.3,0.7,0.6c0.2,0.2,0.3,0.5,0.4,0.9c0.1,0.3,0.1,0.7,0.1,1c0,0.4,0,0.7-0.1,1c-0.1,0.3-0.2,0.6-0.4,0.9
|
116 |
-
s-0.4,0.4-0.7,0.6c-0.3,0.1-0.6,0.2-1,0.2c-0.1,0-0.3,0-0.4,0c-0.2,0-0.3-0.1-0.5-0.1c-0.2-0.1-0.3-0.1-0.4-0.2s-0.3-0.2-0.3-0.4
|
117 |
-
h0v2.7h-0.8v-7.1H1154.8z M1157.9,361.7c-0.1-0.2-0.2-0.4-0.3-0.6c-0.1-0.2-0.3-0.3-0.5-0.4c-0.2-0.1-0.4-0.2-0.7-0.2
|
118 |
-
c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.4,0.3-0.5,0.4s-0.2,0.4-0.3,0.6s-0.1,0.5-0.1,0.7c0,0.3,0,0.5,0.1,0.7
|
119 |
-
c0.1,0.2,0.2,0.4,0.3,0.6c0.1,0.2,0.3,0.3,0.5,0.4s0.5,0.2,0.8,0.2s0.5-0.1,0.7-0.2s0.4-0.3,0.5-0.5c0.1-0.2,0.2-0.4,0.3-0.6
|
120 |
-
c0.1-0.2,0.1-0.5,0.1-0.7C1157.9,362.1,1157.9,361.9,1157.9,361.7z"/>
|
121 |
-
<path fill="#565656" d="M1159.9,359.1c0.1-0.3,0.3-0.5,0.4-0.8s0.4-0.4,0.7-0.5c0.3-0.1,0.6-0.2,0.9-0.2c0.3,0,0.6,0,0.9,0.1
|
122 |
-
c0.3,0.1,0.5,0.2,0.7,0.4c0.2,0.2,0.3,0.4,0.4,0.6c0.1,0.2,0.2,0.5,0.2,0.9c0,0.2,0,0.4-0.1,0.6s-0.1,0.3-0.2,0.4
|
123 |
-
c-0.1,0.1-0.2,0.3-0.3,0.4c-0.1,0.1-0.2,0.2-0.3,0.3c-0.1,0.1-0.2,0.2-0.3,0.3s-0.2,0.2-0.3,0.3c-0.1,0.1-0.2,0.2-0.2,0.4
|
124 |
-
s-0.1,0.3-0.1,0.5v0.4h-0.8v-0.5c0-0.3,0.1-0.5,0.2-0.7s0.2-0.4,0.3-0.5c0.1-0.2,0.3-0.3,0.4-0.4c0.1-0.1,0.3-0.3,0.4-0.4
|
125 |
-
s0.2-0.3,0.3-0.5c0.1-0.2,0.1-0.4,0.1-0.6c0-0.4-0.1-0.7-0.4-0.9c-0.2-0.2-0.5-0.3-0.9-0.3c-0.2,0-0.4,0-0.6,0.1
|
126 |
-
c-0.2,0.1-0.3,0.2-0.4,0.3c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6h-0.9C1159.8,359.8,1159.8,359.4,1159.9,359.1z
|
127 |
-
M1162.5,363.9v1.1h-1.1v-1.1H1162.5z"/>
|
128 |
</g>
|
129 |
-
<path id="Rectangle_638" fill="#FF7A14" d="M1104,386h90c5.5,0,10,4.5,10,10l0,0c0,5.5-4.5,10-10,10h-90c-5.5,0-10-4.5-10-10l0,0
|
130 |
-
C1094,390.5,1098.5,386,1104,386z"/>
|
131 |
<g enable-background="new ">
|
132 |
-
<path fill="#
|
133 |
-
|
134 |
-
|
135 |
-
c-0.
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
c-0.
|
142 |
-
|
143 |
-
|
144 |
-
<path fill="#
|
145 |
-
|
146 |
-
|
147 |
-
c-0.
|
148 |
-
|
149 |
-
|
150 |
-
<path fill="#
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
c0.
|
155 |
-
c-0.
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
<path fill="#
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
c0-0.5-0.
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
<path fill="#
|
171 |
-
|
172 |
-
<path fill="#
|
173 |
-
|
174 |
-
|
175 |
-
c0.
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
|
|
|
|
180 |
</g>
|
181 |
-
<g
|
182 |
-
<path
|
183 |
-
|
184 |
-
|
185 |
-
c-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
s-0.3,0-0.4,0c-0.1,0-0.3,0-0.4,0c-0.1,0-0.2,0.1-0.4,0.1c-0.1,0-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.3
|
247 |
-
c0,0.1,0.1,0.3,0.2,0.4s0.2,0.2,0.4,0.2c0.2,0.1,0.3,0.1,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.4,0.1,0.6,0.2
|
248 |
-
c0.2,0.1,0.4,0.2,0.5,0.3s0.3,0.2,0.4,0.4c0.1,0.2,0.1,0.4,0.1,0.6c0,0.3-0.1,0.6-0.2,0.8c-0.1,0.2-0.3,0.4-0.5,0.5
|
249 |
-
c-0.2,0.1-0.4,0.2-0.7,0.3s-0.5,0.1-0.8,0.1c-0.3,0-0.6,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.4-0.3-0.5-0.5
|
250 |
-
c-0.1-0.2-0.2-0.5-0.2-0.8h0.8C1168.1,293.6,1168.1,293.7,1168.2,293.8z"/>
|
251 |
-
<path fill="#565656" d="M1174.8,289.8v0.8h-1v3.2c0,0.1,0,0.2,0,0.2c0,0.1,0,0.1,0.1,0.1s0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3,0h0.4
|
252 |
-
v0.8h-0.6c-0.2,0-0.4,0-0.6,0s-0.3-0.1-0.4-0.2s-0.2-0.2-0.2-0.3c0-0.1-0.1-0.3-0.1-0.6v-3.3h-0.9v-0.8h0.9v-1.5h0.8v1.5H1174.8z
|
253 |
-
"/>
|
254 |
-
<path fill="#565656" d="M1179.6,287.9l3.8,5.8h0v-5.8h0.9v7.1h-1l-3.7-5.7h0v5.7h-0.9v-7.1H1179.6z"/>
|
255 |
-
<path fill="#565656" d="M1190.3,295c-0.1,0.1-0.4,0.1-0.6,0.1c-0.2,0-0.4-0.1-0.5-0.2c-0.1-0.1-0.2-0.3-0.2-0.6
|
256 |
-
c-0.2,0.3-0.5,0.5-0.8,0.6c-0.3,0.1-0.6,0.2-1,0.2c-0.2,0-0.5,0-0.7-0.1c-0.2-0.1-0.4-0.1-0.5-0.2s-0.3-0.3-0.4-0.4
|
257 |
-
s-0.1-0.4-0.1-0.7c0-0.3,0.1-0.5,0.2-0.7s0.2-0.3,0.4-0.5c0.2-0.1,0.3-0.2,0.6-0.3c0.2-0.1,0.4-0.1,0.6-0.2
|
258 |
-
c0.2,0,0.5-0.1,0.7-0.1c0.2,0,0.4-0.1,0.6-0.1s0.3-0.1,0.4-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2,0-0.3-0.1-0.5s-0.2-0.2-0.3-0.3
|
259 |
-
c-0.1-0.1-0.2-0.1-0.4-0.1c-0.1,0-0.3,0-0.4,0c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.4-0.4,0.8h-0.9c0-0.3,0.1-0.6,0.2-0.8
|
260 |
-
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.2,0,0.5,0,0.7,0s0.4,0.1,0.6,0.2
|
261 |
-
c0.2,0.1,0.3,0.2,0.5,0.4s0.2,0.4,0.2,0.7v2.7c0,0.2,0,0.3,0,0.4c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3-0.1V295z M1188.9,292.3
|
262 |
-
c-0.1,0.1-0.2,0.1-0.4,0.2c-0.2,0-0.4,0.1-0.5,0.1c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.5,0.1c-0.2,0.1-0.3,0.2-0.4,0.3
|
263 |
-
c-0.1,0.1-0.1,0.3-0.1,0.5c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.1,0.2,0.2,0.2c0.1,0.1,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.4,0
|
264 |
-
c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.4-0.2,0.5-0.3c0.1-0.1,0.2-0.2,0.3-0.4c0.1-0.1,0.1-0.3,0.1-0.4V292.3z"/>
|
265 |
-
<path fill="#565656" d="M1191.9,289.8v0.8h0c0.4-0.6,0.9-0.9,1.7-0.9c0.3,0,0.6,0.1,0.9,0.2c0.3,0.1,0.4,0.4,0.5,0.7
|
266 |
-
c0.2-0.3,0.4-0.5,0.7-0.6s0.6-0.2,0.9-0.2c0.3,0,0.5,0,0.7,0.1s0.4,0.1,0.5,0.3c0.1,0.1,0.3,0.3,0.4,0.5c0.1,0.2,0.1,0.4,0.1,0.7
|
267 |
-
v3.8h-0.9v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.3-0.2c-0.1-0.1-0.3-0.1-0.5-0.1
|
268 |
-
c-0.4,0-0.8,0.1-1,0.4c-0.2,0.2-0.4,0.6-0.4,1v3.2h-0.8v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.3-0.2
|
269 |
-
c-0.1-0.1-0.3-0.1-0.5-0.1c-0.2,0-0.5,0-0.6,0.2c-0.2,0.1-0.3,0.2-0.4,0.4c-0.1,0.1-0.2,0.3-0.2,0.4c0,0.1-0.1,0.3-0.1,0.4v3.2
|
270 |
-
h-0.8v-5.2H1191.9z"/>
|
271 |
-
<path fill="#565656" d="M1203.3,294.7c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
272 |
-
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.8,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6
|
273 |
-
c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.4,1c0.1,0.3,0.1,0.7,0.1,1h-3.9
|
274 |
-
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.5,0.1,0.7,0.1c0.4,0,0.7-0.1,0.9-0.2
|
275 |
-
s0.4-0.4,0.5-0.8h0.8C1203.9,293.9,1203.7,294.4,1203.3,294.7z M1203.1,291.3c-0.1-0.2-0.2-0.3-0.3-0.5s-0.3-0.2-0.5-0.3
|
276 |
-
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6h3
|
277 |
-
C1203.2,291.7,1203.2,291.5,1203.1,291.3z"/>
|
278 |
-
</g>
|
279 |
</g>
|
280 |
-
<path id="Rectangle_635-2" fill="#DDE1E3" d="M1084.5,335h55c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-55
|
281 |
-
c-1.4,0-2.5-1.1-2.5-2.5l0,0C1082,336.1,1083.1,335,1084.5,335z"/>
|
282 |
-
<path id="Rectangle_639-2" fill="#DDE1E3" d="M1158.5,335h55c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-55
|
283 |
-
c-1.4,0-2.5-1.1-2.5-2.5l0,0C1156,336.1,1157.1,335,1158.5,335z"/>
|
284 |
<g enable-background="new ">
|
285 |
-
<path fill="#565656" d="
|
286 |
-
<path fill="#565656" d="
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
c-0.1-0.1-0.3-0.1-0.
|
291 |
-
|
292 |
-
|
293 |
-
c-0.
|
294 |
-
c0
|
295 |
-
c0.2
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
304 |
</g>
|
305 |
<g enable-background="new ">
|
306 |
-
<path fill="#565656" d="
|
307 |
-
c-0.
|
308 |
-
|
309 |
-
|
310 |
-
c-0.2-0.
|
311 |
-
c0.
|
312 |
-
c-0.
|
313 |
-
c-0.
|
314 |
-
c0.4,0,0.
|
315 |
-
|
316 |
-
<path fill="#565656" d="
|
317 |
-
c-0.
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
<path fill="#565656" d="
|
330 |
-
c-0.
|
331 |
-
c0.
|
332 |
-
c0,0.2,0,0.
|
333 |
-
|
334 |
-
c-0.
|
335 |
-
|
336 |
-
<path fill="#565656" d="
|
337 |
-
c-0.1,0.2-0.
|
338 |
-
|
339 |
-
c-0.
|
340 |
-
c0.1-0.
|
341 |
-
c0.2,0.
|
342 |
-
<path fill="#565656" d="
|
343 |
-
|
344 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
345 |
</g>
|
|
|
|
|
|
|
|
|
346 |
</g>
|
347 |
</svg>
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
2 |
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 265 300" enable-background="new 0 0 265 300" xml:space="preserve">
|
5 |
+
<g>
|
6 |
+
<path id="Rectangle_694" fill="#FFFFFF" d="M5,0h255c2.8,0,5,2.2,5,5v290c0,2.8-2.2,5-5,5H5c-2.8,0-5-2.2-5-5V5C0,2.2,2.2,0,5,0z"
|
7 |
+
/>
|
8 |
+
<path id="Rectangle_695" fill="#E5E9EA" d="M42.5,105h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
9 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,106.1,41.1,105,42.5,105z"/>
|
10 |
+
<path id="Rectangle_710" fill="#E5E9EA" d="M42.5,154h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
11 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,155.1,41.1,154,42.5,154z"/>
|
12 |
+
<path id="Rectangle_697" fill="#E5E9EA" d="M142.5,105h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
13 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C140,106.1,141.1,105,142.5,105z"/>
|
14 |
+
<path id="Rectangle_711" fill="#E5E9EA" d="M142.5,154h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
15 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C140,155.1,141.1,154,142.5,154z"/>
|
16 |
<g enable-background="new ">
|
17 |
+
<path fill="#565656" d="M46.6,88.4v1h-4.5v2.7H46v1h-3.9V97h-1.1v-8.6H46.6z"/>
|
18 |
+
<path fill="#565656" d="M47.7,89.7v-1.2h1v1.2H47.7z M48.7,90.8V97h-1v-6.2H48.7z"/>
|
19 |
+
<path fill="#565656" d="M51.2,90.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
20 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1V97h-1v-6.2H51.2z"/>
|
21 |
+
<path fill="#565656" d="M55.1,95.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
22 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
23 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
24 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
25 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
26 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
27 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
28 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
29 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
30 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C54.9,95.3,55,95.5,55.1,95.6z"/>
|
31 |
+
<path fill="#565656" d="M63,90.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0H63V97h-0.8
|
32 |
+
c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9H63z"/>
|
33 |
+
<path fill="#565656" d="M68.8,88.4l4.5,6.9h0v-6.9h1.1V97h-1.2l-4.5-6.9h0V97h-1.1v-8.6H68.8z"/>
|
34 |
+
<path fill="#565656" d="M81.6,97c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
35 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
36 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
37 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
38 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2S77,92.3,77,92.7h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
39 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
40 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V97z M79.9,93.8
|
41 |
+
c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
42 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
43 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V93.8z"/>
|
44 |
+
<path fill="#565656" d="M83.5,90.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
45 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
46 |
+
c0.1,0.2,0.1,0.5,0.1,0.8V97h-1v-4.1c0-0.2,0-0.4,0-0.5S90.1,92.1,90,92c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
47 |
+
c-0.5,0-0.9,0.1-1.2,0.4s-0.4,0.7-0.4,1.2V97h-1v-4.1c0-0.2,0-0.4-0.1-0.6c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3
|
48 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4s-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5V97h-1
|
49 |
+
v-6.2H83.5z"/>
|
50 |
+
<path fill="#565656" d="M97.2,96.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
51 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
52 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
53 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
54 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C97.9,95.7,97.6,96.3,97.2,96.6z M96.9,92.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
55 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
56 |
+
C97.1,93.1,97,92.8,96.9,92.6z"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
</g>
|
58 |
<g enable-background="new ">
|
59 |
+
<path fill="#565656" d="M46.9,137.4v1h-4.8v2.7h4.5v1h-4.5v3h4.8v1h-6v-8.6H46.9z"/>
|
60 |
+
<path fill="#565656" d="M49.1,139.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
61 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
62 |
+
c0.1,0.2,0.1,0.5,0.1,0.8v4.5h-1v-4.1c0-0.2,0-0.4,0-0.5s-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
63 |
+
c-0.5,0-0.9,0.1-1.2,0.4s-0.4,0.7-0.4,1.2v3.9h-1v-4.1c0-0.2,0-0.4-0.1-0.6c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3
|
64 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4s-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5v3.9h-1
|
65 |
+
v-6.2H49.1z"/>
|
66 |
+
<path fill="#565656" d="M63.8,146c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
67 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
68 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
69 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
70 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
71 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
72 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V146z M62.2,142.8
|
73 |
+
c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
74 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
75 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V142.8z"/>
|
76 |
+
<path fill="#565656" d="M64.8,138.7v-1.2h1v1.2H64.8z M65.9,139.8v6.2h-1v-6.2H65.9z"/>
|
77 |
+
<path fill="#565656" d="M68.5,137.4v8.6h-1v-8.6H68.5z"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
78 |
</g>
|
|
|
|
|
79 |
<g enable-background="new ">
|
80 |
+
<path fill="#565656" d="M44.5,51h-1.1v-3.5L40,42.4h1.4l2.6,4.1l2.5-4.1h1.3l-3.3,5.1V51z"/>
|
81 |
+
<path fill="#565656" d="M47.1,46.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7s0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
82 |
+
s0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
83 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1
|
84 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S46.9,47,47.1,46.6z M48.1,48.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
85 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.3,0,0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7s0.1-0.6,0.1-1s0-0.7-0.1-1
|
86 |
+
s-0.2-0.5-0.4-0.7c-0.2-0.2-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
87 |
+
c-0.2,0.2-0.3,0.4-0.4,0.7c-0.1,0.3-0.1,0.6-0.1,1S48,48.6,48.1,48.9z"/>
|
88 |
+
<path fill="#565656" d="M58.3,51v-1h0c-0.2,0.4-0.5,0.7-0.8,0.8c-0.3,0.2-0.7,0.3-1.2,0.3c-0.4,0-0.7-0.1-1-0.2
|
89 |
+
c-0.3-0.1-0.5-0.3-0.7-0.5c-0.2-0.2-0.3-0.4-0.4-0.7c-0.1-0.3-0.1-0.6-0.1-0.9v-4.1h1V49c0,0.4,0.1,0.7,0.3,0.9
|
90 |
+
c0.2,0.2,0.5,0.3,0.9,0.3c0.3,0,0.6,0,0.8-0.1c0.2-0.1,0.4-0.2,0.6-0.4c0.2-0.2,0.3-0.4,0.3-0.6c0.1-0.2,0.1-0.5,0.1-0.8v-3.5h1
|
91 |
+
V51H58.3z"/>
|
92 |
+
<path fill="#565656" d="M61.7,44.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
93 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1V51h-1v-6.2H61.7z"/>
|
94 |
+
<path fill="#565656" d="M71.2,42.4c1.3,0,2.3,0.3,3,1c0.7,0.7,1.1,1.7,1.1,3.1c0,0.7-0.1,1.4-0.2,1.9c-0.2,0.6-0.4,1-0.7,1.4
|
95 |
+
c-0.3,0.4-0.8,0.7-1.3,0.9S71.9,51,71.2,51h-2.9v-8.6H71.2z M71.3,50c0.1,0,0.3,0,0.5,0c0.2,0,0.4-0.1,0.6-0.1s0.4-0.2,0.6-0.3
|
96 |
+
c0.2-0.1,0.4-0.3,0.6-0.6s0.3-0.6,0.4-0.9c0.1-0.4,0.2-0.8,0.2-1.3c0-0.5-0.1-1-0.1-1.4c-0.1-0.4-0.3-0.7-0.5-1
|
97 |
+
c-0.2-0.3-0.5-0.5-0.9-0.6c-0.4-0.1-0.8-0.2-1.3-0.2h-1.9V50H71.3z"/>
|
98 |
+
<path fill="#565656" d="M80.9,50.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
99 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
100 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
101 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
102 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C81.7,49.7,81.4,50.3,80.9,50.6z M80.7,46.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
103 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
104 |
+
C80.8,47.1,80.8,46.8,80.7,46.6z"/>
|
105 |
+
<path fill="#565656" d="M85.6,44.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0h0.5V51
|
106 |
+
h-0.8c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9
|
107 |
+
H85.6z"/>
|
108 |
+
<path fill="#565656" d="M92.3,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
109 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
110 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
111 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
112 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
113 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
114 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51z M90.6,47.8
|
115 |
+
c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
116 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
117 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V47.8z"/>
|
118 |
+
<path fill="#565656" d="M93.3,43.7v-1.2h1v1.2H93.3z M94.3,44.8V51h-1v-6.2H94.3z"/>
|
119 |
+
<path fill="#565656" d="M97,42.4V51h-1v-8.6H97z"/>
|
120 |
+
<path fill="#565656" d="M99.3,49.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
121 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
122 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
123 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
124 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
125 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
126 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
127 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
128 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
129 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C99.2,49.3,99.2,49.5,99.3,49.6z"/>
|
130 |
</g>
|
131 |
+
<g enable-background="new ">
|
132 |
+
<path fill="#565656" d="M42.1,186.4v3.7h4.5v-3.7h1.1v8.6h-1.1v-3.9h-4.5v3.9h-1.1v-8.6H42.1z"/>
|
133 |
+
<path fill="#565656" d="M49.3,190.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7s0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
134 |
+
s0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
135 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1
|
136 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S49.2,191,49.3,190.6z M50.3,192.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
137 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.3,0,0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7s0.1-0.6,0.1-1s0-0.7-0.1-1
|
138 |
+
s-0.2-0.5-0.4-0.7c-0.2-0.2-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
139 |
+
c-0.2,0.2-0.3,0.4-0.4,0.7c-0.1,0.3-0.1,0.6-0.1,1S50.2,192.6,50.3,192.9z"/>
|
140 |
+
<path fill="#565656" d="M61.4,195l-1.3-4.9h0l-1.2,4.9h-1.1l-2-6.2h1.1l1.4,5.1h0l1.2-5.1h1.1l1.3,5.1h0l1.4-5.1h1.1l-2,6.2H61.4z
|
141 |
+
"/>
|
142 |
+
<path fill="#565656" d="M72.5,189.9c-0.3-0.2-0.6-0.3-1-0.3c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
143 |
+
c-0.1,0.2-0.3,0.5-0.3,0.8s-0.1,0.6-0.1,0.9c0,0.3,0,0.6,0.1,0.8c0.1,0.3,0.2,0.5,0.3,0.7s0.3,0.4,0.6,0.5
|
144 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.5,0,0.9-0.1,1.2-0.4c0.3-0.3,0.5-0.6,0.5-1.1h1c-0.1,0.8-0.4,1.4-0.9,1.8s-1.1,0.6-1.9,0.6
|
145 |
+
c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.6s-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3
|
146 |
+
c0.1-0.4,0.3-0.8,0.5-1.1c0.2-0.3,0.5-0.5,0.9-0.7c0.4-0.2,0.8-0.3,1.3-0.3c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.4
|
147 |
+
s0.4,0.4,0.6,0.7c0.2,0.3,0.2,0.6,0.3,1H73C72.9,190.4,72.7,190.1,72.5,189.9z"/>
|
148 |
+
<path fill="#565656" d="M80.7,195c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
149 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
150 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
151 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
152 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
153 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
154 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V195z M79,191.8
|
155 |
+
c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
156 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
157 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V191.8z"/>
|
158 |
+
<path fill="#565656" d="M82.6,188.8v1h0c0.4-0.8,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5
|
159 |
+
c0.2,0.2,0.3,0.4,0.4,0.7c0.1,0.3,0.1,0.6,0.1,0.9v4.1h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.3-0.9-0.3
|
160 |
+
c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8v3.5h-1v-6.2H82.6z"/>
|
161 |
+
<path fill="#565656" d="M96.7,195l-1.3-4.9h0l-1.2,4.9h-1.1l-2-6.2h1.1l1.4,5.1h0l1.2-5.1H96l1.3,5.1h0l1.4-5.1h1.1l-2,6.2H96.7z"
|
162 |
+
/>
|
163 |
+
<path fill="#565656" d="M105.1,194.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
164 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
165 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
166 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
167 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C105.9,193.7,105.6,194.3,105.1,194.6z M104.9,190.6c-0.1-0.2-0.2-0.4-0.4-0.6
|
168 |
+
c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6
|
169 |
+
s-0.1,0.4-0.2,0.7h3.6C105,191.1,105,190.8,104.9,190.6z"/>
|
170 |
+
<path fill="#565656" d="M111.5,186.4v3.3h0c0.1-0.2,0.2-0.4,0.3-0.5s0.3-0.2,0.5-0.3c0.2-0.1,0.4-0.1,0.6-0.2
|
171 |
+
c0.2,0,0.4-0.1,0.6-0.1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5c0.2,0.2,0.3,0.4,0.4,0.7c0.1,0.3,0.1,0.6,0.1,0.9v4.1h-1
|
172 |
+
v-4.2c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.3-0.9-0.3c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6
|
173 |
+
c-0.1,0.2-0.1,0.5-0.1,0.8v3.5h-1v-8.6H111.5z"/>
|
174 |
+
<path fill="#565656" d="M121.6,194.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
175 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
176 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
177 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
178 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C122.4,193.7,122.1,194.3,121.6,194.6z M121.3,190.6c-0.1-0.2-0.2-0.4-0.4-0.6
|
179 |
+
c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6
|
180 |
+
s-0.1,0.4-0.2,0.7h3.6C121.5,191.1,121.4,190.8,121.3,190.6z"/>
|
181 |
+
<path fill="#565656" d="M124.7,186.4v8.6h-1v-8.6H124.7z"/>
|
182 |
+
<path fill="#565656" d="M127.4,188.8v0.8h0c0.2-0.3,0.4-0.6,0.8-0.8c0.4-0.2,0.8-0.2,1.2-0.2c0.5,0,0.9,0.1,1.3,0.3
|
183 |
+
s0.7,0.4,0.9,0.7c0.2,0.3,0.4,0.6,0.5,1c0.1,0.4,0.2,0.8,0.2,1.2c0,0.4-0.1,0.9-0.2,1.2c-0.1,0.4-0.3,0.7-0.5,1s-0.5,0.5-0.9,0.7
|
184 |
+
c-0.4,0.2-0.8,0.3-1.2,0.3c-0.2,0-0.3,0-0.5,0s-0.4-0.1-0.6-0.2c-0.2-0.1-0.4-0.2-0.5-0.3c-0.2-0.1-0.3-0.3-0.4-0.5h0v3.2h-1v-8.6
|
185 |
+
H127.4z M131,191c-0.1-0.3-0.2-0.5-0.3-0.7c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2
|
186 |
+
c-0.2,0.1-0.4,0.3-0.6,0.5c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,0.9c0,0.3,0,0.6,0.1,0.9c0.1,0.3,0.2,0.5,0.3,0.8
|
187 |
+
c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2c0.4,0,0.6-0.1,0.9-0.2s0.4-0.3,0.6-0.5s0.2-0.5,0.3-0.8
|
188 |
+
c0.1-0.3,0.1-0.6,0.1-0.9C131.1,191.6,131.1,191.3,131,191z"/>
|
189 |
+
<path fill="#565656" d="M133.5,188c0.1-0.4,0.3-0.7,0.5-0.9c0.2-0.3,0.5-0.5,0.9-0.6c0.3-0.1,0.7-0.2,1.1-0.2c0.4,0,0.7,0.1,1,0.2
|
190 |
+
c0.3,0.1,0.6,0.3,0.8,0.5c0.2,0.2,0.4,0.5,0.5,0.8c0.1,0.3,0.2,0.6,0.2,1c0,0.2,0,0.5-0.1,0.7s-0.1,0.4-0.2,0.5
|
191 |
+
c-0.1,0.2-0.2,0.3-0.3,0.4c-0.1,0.1-0.2,0.3-0.4,0.4c-0.1,0.1-0.3,0.2-0.4,0.4c-0.1,0.1-0.2,0.3-0.3,0.4c-0.1,0.1-0.2,0.3-0.2,0.5
|
192 |
+
c-0.1,0.2-0.1,0.4-0.1,0.6v0.5h-1v-0.6c0-0.3,0.1-0.6,0.2-0.9c0.1-0.2,0.2-0.4,0.4-0.6c0.2-0.2,0.3-0.4,0.5-0.5
|
193 |
+
c0.2-0.2,0.3-0.3,0.5-0.5s0.3-0.4,0.4-0.6s0.1-0.5,0.1-0.8c0-0.4-0.2-0.8-0.4-1s-0.6-0.4-1-0.4c-0.3,0-0.5,0.1-0.7,0.2
|
194 |
+
c-0.2,0.1-0.4,0.2-0.5,0.4c-0.1,0.2-0.2,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8h-1C133.3,188.7,133.4,188.3,133.5,188z
|
195 |
+
M136.6,193.7v1.3h-1.3v-1.3H136.6z"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
196 |
</g>
|
|
|
|
|
|
|
|
|
197 |
<g enable-background="new ">
|
198 |
+
<path fill="#565656" d="M142.1,88.4V96h4.5v1h-5.7v-8.6H142.1z"/>
|
199 |
+
<path fill="#565656" d="M152.9,97c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
200 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
201 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
202 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
203 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
204 |
+
s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1s0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5c0.1,0.2,0.2,0.5,0.2,0.9
|
205 |
+
v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V97z M151.3,93.8c-0.1,0.1-0.3,0.2-0.5,0.2
|
206 |
+
c-0.2,0-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.4-0.2,0.6
|
207 |
+
c0,0.2,0,0.3,0.1,0.4c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
208 |
+
c0.2-0.1,0.4-0.2,0.6-0.3s0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V93.8z"/>
|
209 |
+
<path fill="#565656" d="M154.7,95.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
210 |
+
s0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3c0.1-0.1,0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
211 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
212 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.6-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
213 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3s-0.3-0.1-0.5-0.2
|
214 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
215 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
216 |
+
s0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9s-0.4,0.4-0.6,0.6
|
217 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
218 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C154.5,95.3,154.6,95.5,154.7,95.6z"/>
|
219 |
+
<path fill="#565656" d="M162.5,90.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3c0,0.1,0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0h0.5
|
220 |
+
V97h-0.8c-0.3,0-0.5,0-0.7-0.1c-0.2,0-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1
|
221 |
+
v-1.9h1v1.9H162.5z"/>
|
222 |
+
<path fill="#565656" d="M168.4,88.4l4.5,6.9h0v-6.9h1.1V97h-1.2l-4.5-6.9h0V97h-1.1v-8.6H168.4z"/>
|
223 |
+
<path fill="#565656" d="M181.2,97c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
224 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
225 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5s0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
226 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
227 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
228 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
229 |
+
s0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V97z M179.5,93.8c-0.1,0.1-0.3,0.2-0.5,0.2
|
230 |
+
c-0.2,0-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2s-0.3,0.2-0.4,0.3c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4
|
231 |
+
c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1c0.2-0.1,0.4-0.2,0.6-0.3
|
232 |
+
c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V93.8z"/>
|
233 |
+
<path fill="#565656" d="M183.1,90.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
234 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
235 |
+
c0.1,0.2,0.1,0.5,0.1,0.8V97h-1v-4.1c0-0.2,0-0.4,0-0.5s-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
236 |
+
c-0.5,0-0.9,0.1-1.2,0.4s-0.4,0.7-0.4,1.2V97h-1v-4.1c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4s-0.2-0.2-0.4-0.3
|
237 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4c-0.1,0.2-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5
|
238 |
+
V97h-1v-6.2H183.1z"/>
|
239 |
+
<path fill="#565656" d="M196.7,96.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
240 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.7-0.2,1.2-0.2
|
241 |
+
c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6c0,0.3,0,0.5,0.1,0.8
|
242 |
+
c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3s0.5-0.5,0.5-0.9h1
|
243 |
+
C197.5,95.7,197.2,96.3,196.7,96.6z M196.5,92.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1
|
244 |
+
c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4c-0.2,0.2-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6C196.6,93.1,196.6,92.8,196.5,92.6
|
245 |
+
z"/>
|
246 |
</g>
|
247 |
<g enable-background="new ">
|
248 |
+
<path fill="#565656" d="M145.2,138.6c-0.4-0.3-0.9-0.4-1.5-0.4c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.4,0.1-0.6,0.2
|
249 |
+
c-0.2,0.1-0.3,0.3-0.4,0.5c-0.1,0.2-0.2,0.4-0.2,0.7c0,0.3,0.1,0.5,0.2,0.6s0.4,0.3,0.6,0.4c0.3,0.1,0.6,0.2,0.9,0.3
|
250 |
+
s0.7,0.1,1,0.2s0.7,0.2,1,0.3s0.6,0.3,0.9,0.4c0.3,0.2,0.5,0.4,0.6,0.7c0.2,0.3,0.2,0.6,0.2,1.1c0,0.5-0.1,0.8-0.3,1.2
|
251 |
+
c-0.2,0.3-0.5,0.6-0.8,0.8s-0.7,0.4-1.1,0.4s-0.8,0.1-1.2,0.1c-0.5,0-0.9-0.1-1.4-0.2c-0.4-0.1-0.8-0.3-1.1-0.5s-0.6-0.6-0.8-0.9
|
252 |
+
c-0.2-0.4-0.3-0.8-0.3-1.4h1.1c0,0.4,0.1,0.7,0.2,0.9c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.3,0.8,0.4c0.3,0.1,0.6,0.1,0.9,0.1
|
253 |
+
c0.3,0,0.5,0,0.8-0.1s0.5-0.1,0.7-0.2c0.2-0.1,0.4-0.3,0.5-0.5s0.2-0.5,0.2-0.8c0-0.3-0.1-0.5-0.2-0.7c-0.2-0.2-0.4-0.3-0.6-0.5
|
254 |
+
c-0.3-0.1-0.6-0.2-0.9-0.3c-0.3-0.1-0.7-0.1-1-0.2c-0.3-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.2-0.9-0.4c-0.3-0.2-0.5-0.4-0.6-0.6
|
255 |
+
c-0.2-0.3-0.2-0.6-0.2-1c0-0.4,0.1-0.8,0.3-1.1c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.4,1-0.5c0.4-0.1,0.8-0.2,1.1-0.2
|
256 |
+
c0.4,0,0.8,0.1,1.2,0.2c0.4,0.1,0.7,0.3,1,0.5c0.3,0.2,0.5,0.5,0.7,0.8c0.2,0.3,0.3,0.7,0.3,1.2h-1.1
|
257 |
+
C145.8,139.3,145.6,138.9,145.2,138.6z"/>
|
258 |
+
<path fill="#565656" d="M152.7,146v-1h0c-0.2,0.4-0.5,0.7-0.8,0.8c-0.3,0.2-0.7,0.3-1.2,0.3c-0.4,0-0.7-0.1-1-0.2
|
259 |
+
c-0.3-0.1-0.5-0.3-0.7-0.5c-0.2-0.2-0.3-0.4-0.4-0.7c-0.1-0.3-0.1-0.6-0.1-0.9v-4.1h1v4.2c0,0.4,0.1,0.7,0.3,0.9
|
260 |
+
c0.2,0.2,0.5,0.3,0.9,0.3c0.3,0,0.6,0,0.8-0.1c0.2-0.1,0.4-0.2,0.6-0.4c0.2-0.2,0.3-0.4,0.3-0.6c0.1-0.2,0.1-0.5,0.1-0.8v-3.5h1
|
261 |
+
v6.2H152.7z"/>
|
262 |
+
<path fill="#565656" d="M156.3,137.4v3.2h0c0.2-0.3,0.4-0.6,0.8-0.8c0.4-0.2,0.8-0.2,1.2-0.2c0.5,0,0.9,0.1,1.3,0.3
|
263 |
+
c0.4,0.2,0.7,0.4,0.9,0.7s0.4,0.6,0.5,1c0.1,0.4,0.2,0.8,0.2,1.2c0,0.4-0.1,0.9-0.2,1.2c-0.1,0.4-0.3,0.7-0.5,1s-0.5,0.5-0.9,0.7
|
264 |
+
c-0.4,0.2-0.8,0.3-1.2,0.3c-0.2,0-0.3,0-0.5,0c-0.2,0-0.4-0.1-0.6-0.2c-0.2-0.1-0.4-0.2-0.5-0.3c-0.2-0.1-0.3-0.3-0.4-0.5h0v0.8
|
265 |
+
h-1v-8.6H156.3z M159.9,142c-0.1-0.3-0.2-0.5-0.3-0.7s-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2
|
266 |
+
c-0.2,0.1-0.4,0.3-0.6,0.5s-0.3,0.5-0.3,0.8s-0.1,0.6-0.1,0.9c0,0.3,0,0.6,0.1,0.9c0.1,0.3,0.2,0.5,0.3,0.8
|
267 |
+
c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2s0.6-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5s0.2-0.5,0.3-0.8
|
268 |
+
c0.1-0.3,0.1-0.6,0.1-0.9C160.1,142.6,160,142.3,159.9,142z"/>
|
269 |
+
<path fill="#565656" d="M163,148c-0.3,0.3-0.6,0.4-1.1,0.4c-0.2,0-0.4,0-0.5,0v-0.9c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0h0.2
|
270 |
+
c0.2,0,0.4-0.1,0.5-0.2s0.1-0.3,0.1-0.7v-6.8h1v7C163.4,147.3,163.3,147.7,163,148z M162.4,138.7v-1.2h1v1.2H162.4z"/>
|
271 |
+
<path fill="#565656" d="M169.4,145.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
272 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.7-0.2,1.2-0.2
|
273 |
+
c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6c0,0.3,0,0.5,0.1,0.8
|
274 |
+
c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3s0.5-0.5,0.5-0.9h1
|
275 |
+
C170.2,144.7,169.9,145.3,169.4,145.6z M169.1,141.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1
|
276 |
+
c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4c-0.2,0.2-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
277 |
+
C169.3,142.1,169.2,141.8,169.1,141.6z"/>
|
278 |
+
<path fill="#565656" d="M175.1,140.9c-0.3-0.2-0.6-0.3-1-0.3c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
279 |
+
c-0.1,0.2-0.3,0.5-0.3,0.8s-0.1,0.6-0.1,0.9c0,0.3,0,0.6,0.1,0.8c0.1,0.3,0.2,0.5,0.3,0.7s0.3,0.4,0.6,0.5
|
280 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.5,0,0.9-0.1,1.2-0.4c0.3-0.3,0.5-0.6,0.5-1.1h1c-0.1,0.8-0.4,1.4-0.9,1.8c-0.5,0.4-1.1,0.6-1.9,0.6
|
281 |
+
c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.6s-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3
|
282 |
+
c0.1-0.4,0.3-0.8,0.5-1.1c0.2-0.3,0.5-0.5,0.9-0.7c0.4-0.2,0.8-0.3,1.3-0.3c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.4
|
283 |
+
c0.2,0.2,0.4,0.4,0.6,0.7c0.2,0.3,0.2,0.6,0.3,1h-1.1C175.6,141.4,175.4,141.1,175.1,140.9z"/>
|
284 |
+
<path fill="#565656" d="M180.5,139.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.4,0
|
285 |
+
h0.5v0.9h-0.8c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9
|
286 |
+
h1v1.9H180.5z"/>
|
287 |
+
</g>
|
288 |
+
<g id="Group_38" transform="translate(-1268 -588)">
|
289 |
+
<path id="Rectangle_708" fill="#FF7B13" d="M1353,826h95c2.8,0,5,2.2,5,5v17c0,2.8-2.2,5-5,5h-95c-2.8,0-5-2.2-5-5v-17
|
290 |
+
C1348,828.2,1350.2,826,1353,826z"/>
|
291 |
+
<g enable-background="new ">
|
292 |
+
<path fill="#FFFFFF" d="M1363.2,841.6c0,0.3,0,0.5,0.1,0.7c0.1,0.2,0.2,0.4,0.4,0.5s0.4,0.2,0.6,0.3c0.2,0.1,0.5,0.1,0.7,0.1
|
293 |
+
c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.4-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.3-0.3s0.1-0.3,0.1-0.4c0-0.3-0.1-0.5-0.2-0.6
|
294 |
+
c-0.1-0.1-0.3-0.2-0.4-0.3c-0.3-0.1-0.5-0.2-0.9-0.3c-0.3-0.1-0.8-0.2-1.2-0.3c-0.3-0.1-0.6-0.2-0.8-0.3
|
295 |
+
c-0.2-0.1-0.4-0.3-0.5-0.4c-0.1-0.2-0.2-0.3-0.3-0.5c0-0.2-0.1-0.4-0.1-0.5c0-0.4,0.1-0.7,0.2-0.9c0.1-0.3,0.3-0.5,0.6-0.7
|
296 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.4,0,0.7,0,1.1,0.1s0.6,0.2,0.9,0.4c0.2,0.2,0.4,0.4,0.6,0.7s0.2,0.6,0.2,1
|
297 |
+
h-1.2c0-0.5-0.2-0.8-0.5-1c-0.3-0.2-0.6-0.3-1.1-0.3c-0.1,0-0.3,0-0.5,0s-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.2-0.3,0.3
|
298 |
+
c-0.1,0.1-0.1,0.3-0.1,0.4c0,0.3,0.1,0.5,0.2,0.6s0.4,0.3,0.6,0.3c0,0,0.1,0,0.3,0.1c0.2,0.1,0.4,0.1,0.6,0.2
|
299 |
+
c0.2,0.1,0.4,0.1,0.7,0.2s0.4,0.1,0.5,0.1c0.2,0.1,0.4,0.2,0.6,0.3s0.3,0.3,0.4,0.4c0.1,0.2,0.2,0.3,0.3,0.5s0.1,0.4,0.1,0.6
|
300 |
+
c0,0.4-0.1,0.7-0.2,1c-0.2,0.3-0.4,0.5-0.6,0.7c-0.3,0.2-0.6,0.3-0.9,0.4c-0.3,0.1-0.7,0.1-1,0.1c-0.4,0-0.8,0-1.1-0.2
|
301 |
+
c-0.4-0.1-0.7-0.3-0.9-0.5c-0.3-0.2-0.5-0.5-0.6-0.8c-0.2-0.3-0.2-0.7-0.2-1.1H1363.2z"/>
|
302 |
+
<path fill="#FFFFFF" d="M1368.9,836.9h5.1v1.1h-3.9v1.9h3.6v1h-3.6v2.1h4v1.1h-5.2V836.9z"/>
|
303 |
+
<path fill="#FFFFFF" d="M1375.1,836.9h1.3l3.3,5.3h0v-5.3h1.2v7.1h-1.3l-3.2-5.2h0v5.2h-1.2V836.9z"/>
|
304 |
+
<path fill="#FFFFFF" d="M1382.4,836.9h3c0.5,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.4,1,0.8c0.3,0.3,0.4,0.7,0.6,1.1
|
305 |
+
c0.1,0.4,0.2,0.9,0.2,1.4c0,0.5-0.1,1-0.2,1.4c-0.1,0.4-0.3,0.8-0.6,1.1c-0.3,0.3-0.6,0.6-1,0.8s-0.9,0.3-1.4,0.3h-3V836.9z
|
306 |
+
M1383.7,843h1.2c0.5,0,0.9-0.1,1.2-0.2s0.6-0.3,0.7-0.5c0.2-0.2,0.3-0.5,0.4-0.8c0.1-0.3,0.1-0.6,0.1-1c0-0.4,0-0.7-0.1-1
|
307 |
+
c-0.1-0.3-0.2-0.6-0.4-0.8c-0.2-0.2-0.4-0.4-0.7-0.5s-0.7-0.2-1.2-0.2h-1.2V843z"/>
|
308 |
+
<path fill="#FFFFFF" d="M1392.4,836.9h1.8l2,5.6h0l1.9-5.6h1.7v7.1h-1.2v-5.5h0l-2,5.5h-1l-2-5.5h0v5.5h-1.2V836.9z"/>
|
309 |
+
<path fill="#FFFFFF" d="M1401.3,836.9h5.1v1.1h-3.9v1.9h3.6v1h-3.6v2.1h4v1.1h-5.2V836.9z"/>
|
310 |
+
<path fill="#FFFFFF" d="M1408.4,841.6c0,0.3,0,0.5,0.1,0.7s0.2,0.4,0.4,0.5s0.4,0.2,0.6,0.3s0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.7-0.1
|
311 |
+
c0.2-0.1,0.4-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.3-0.3s0.1-0.3,0.1-0.4c0-0.3-0.1-0.5-0.2-0.6c-0.1-0.1-0.3-0.2-0.4-0.3
|
312 |
+
c-0.3-0.1-0.5-0.2-0.9-0.3c-0.3-0.1-0.8-0.2-1.2-0.3c-0.3-0.1-0.6-0.2-0.8-0.3c-0.2-0.1-0.4-0.3-0.5-0.4
|
313 |
+
c-0.1-0.2-0.2-0.3-0.3-0.5c-0.1-0.2-0.1-0.4-0.1-0.5c0-0.4,0.1-0.7,0.2-0.9c0.1-0.3,0.3-0.5,0.6-0.7c0.2-0.2,0.5-0.3,0.8-0.4
|
314 |
+
c0.3-0.1,0.6-0.1,1-0.1c0.4,0,0.7,0,1.1,0.1s0.6,0.2,0.9,0.4c0.2,0.2,0.4,0.4,0.6,0.7s0.2,0.6,0.2,1h-1.2c0-0.5-0.2-0.8-0.5-1
|
315 |
+
c-0.3-0.2-0.6-0.3-1.1-0.3c-0.1,0-0.3,0-0.4,0c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.2-0.3,0.3c-0.1,0.1-0.1,0.3-0.1,0.4
|
316 |
+
c0,0.3,0.1,0.5,0.2,0.6c0.2,0.1,0.4,0.3,0.6,0.3c0,0,0.1,0,0.3,0.1c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.1,0.7,0.2
|
317 |
+
s0.4,0.1,0.5,0.1c0.2,0.1,0.4,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.4c0.1,0.2,0.2,0.3,0.3,0.5s0.1,0.4,0.1,0.6c0,0.4-0.1,0.7-0.2,1
|
318 |
+
s-0.4,0.5-0.6,0.7c-0.3,0.2-0.6,0.3-0.9,0.4c-0.3,0.1-0.7,0.1-1,0.1c-0.4,0-0.8,0-1.2-0.2c-0.4-0.1-0.7-0.3-0.9-0.5
|
319 |
+
c-0.3-0.2-0.5-0.5-0.6-0.8c-0.2-0.3-0.2-0.7-0.2-1.1H1408.4z"/>
|
320 |
+
<path fill="#FFFFFF" d="M1414.9,841.6c0,0.3,0,0.5,0.1,0.7c0.1,0.2,0.2,0.4,0.4,0.5c0.2,0.1,0.4,0.2,0.6,0.3
|
321 |
+
c0.2,0.1,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.1-0.3,0.1-0.4
|
322 |
+
c0-0.3-0.1-0.5-0.2-0.6s-0.3-0.2-0.4-0.3c-0.3-0.1-0.5-0.2-0.9-0.3c-0.3-0.1-0.8-0.2-1.2-0.3c-0.3-0.1-0.6-0.2-0.8-0.3
|
323 |
+
c-0.2-0.1-0.4-0.3-0.5-0.4c-0.1-0.2-0.2-0.3-0.3-0.5s-0.1-0.4-0.1-0.5c0-0.4,0.1-0.7,0.2-0.9c0.1-0.3,0.3-0.5,0.6-0.7
|
324 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.4,0,0.7,0,1.1,0.1s0.6,0.2,0.9,0.4c0.2,0.2,0.4,0.4,0.6,0.7s0.2,0.6,0.2,1
|
325 |
+
h-1.2c0-0.5-0.2-0.8-0.5-1c-0.3-0.2-0.6-0.3-1.1-0.3c-0.1,0-0.3,0-0.5,0s-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.2-0.3,0.3
|
326 |
+
c-0.1,0.1-0.1,0.3-0.1,0.4c0,0.3,0.1,0.5,0.2,0.6s0.4,0.3,0.6,0.3c0,0,0.1,0,0.3,0.1c0.2,0.1,0.4,0.1,0.6,0.2
|
327 |
+
c0.2,0.1,0.4,0.1,0.7,0.2s0.4,0.1,0.5,0.1c0.2,0.1,0.4,0.2,0.6,0.3s0.3,0.3,0.4,0.4c0.1,0.2,0.2,0.3,0.3,0.5s0.1,0.4,0.1,0.6
|
328 |
+
c0,0.4-0.1,0.7-0.2,1c-0.2,0.3-0.4,0.5-0.6,0.7c-0.3,0.2-0.6,0.3-0.9,0.4s-0.7,0.1-1,0.1c-0.4,0-0.8,0-1.2-0.2
|
329 |
+
c-0.4-0.1-0.7-0.3-0.9-0.5c-0.3-0.2-0.5-0.5-0.6-0.8c-0.2-0.3-0.2-0.7-0.2-1.1H1414.9z"/>
|
330 |
+
<path fill="#FFFFFF" d="M1422.5,836.9h1.3l2.8,7.1h-1.3l-0.7-1.9h-2.9l-0.7,1.9h-1.3L1422.5,836.9z M1422,841.2h2.2l-1.1-3.1h0
|
331 |
+
L1422,841.2z"/>
|
332 |
+
<path fill="#FFFFFF" d="M1433.5,844h-0.8l-0.2-0.8c-0.3,0.4-0.7,0.6-1,0.8c-0.3,0.1-0.7,0.2-1.2,0.2c-0.5,0-1-0.1-1.4-0.3
|
333 |
+
c-0.4-0.2-0.8-0.5-1.1-0.8c-0.3-0.3-0.5-0.7-0.7-1.2c-0.2-0.5-0.2-0.9-0.2-1.5c0-0.5,0.1-1,0.2-1.4c0.2-0.5,0.4-0.9,0.7-1.2
|
334 |
+
c0.3-0.3,0.7-0.6,1.1-0.8c0.4-0.2,0.9-0.3,1.4-0.3c0.4,0,0.8,0.1,1.1,0.2c0.3,0.1,0.7,0.3,0.9,0.5c0.3,0.2,0.5,0.5,0.7,0.8
|
335 |
+
c0.2,0.3,0.3,0.7,0.3,1.1h-1.2c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.2-0.2-0.3-0.4-0.4s-0.4-0.2-0.6-0.3c-0.2-0.1-0.4-0.1-0.7-0.1
|
336 |
+
c-0.4,0-0.7,0.1-1,0.2c-0.3,0.2-0.5,0.4-0.7,0.6c-0.2,0.3-0.3,0.5-0.4,0.9c-0.1,0.3-0.1,0.7-0.1,1s0,0.7,0.1,1
|
337 |
+
c0.1,0.3,0.2,0.6,0.4,0.9c0.2,0.3,0.4,0.5,0.7,0.6c0.3,0.2,0.6,0.2,1,0.2c0.3,0,0.6,0,0.8-0.1c0.2-0.1,0.5-0.2,0.6-0.4
|
338 |
+
s0.3-0.4,0.4-0.6c0.1-0.2,0.1-0.5,0.1-0.8h-1.9v-1h3V844z"/>
|
339 |
+
<path fill="#FFFFFF" d="M1434.8,836.9h5.1v1.1h-3.9v1.9h3.6v1h-3.6v2.1h4v1.1h-5.2V836.9z"/>
|
340 |
+
</g>
|
341 |
</g>
|
342 |
+
<path id="Rectangle_709" fill="#FF7B13" d="M40.5,60h184c0.3,0,0.5,0.2,0.5,0.5l0,0c0,0.3-0.2,0.5-0.5,0.5h-184
|
343 |
+
c-0.3,0-0.5-0.2-0.5-0.5l0,0C40,60.2,40.2,60,40.5,60z"/>
|
344 |
+
<path id="Rectangle_712" fill="#FF7B13" d="M40.5,204h184c0.3,0,0.5,0.2,0.5,0.5l0,0c0,0.3-0.2,0.5-0.5,0.5h-184
|
345 |
+
c-0.3,0-0.5-0.2-0.5-0.5l0,0C40,204.2,40.2,204,40.5,204z"/>
|
346 |
</g>
|
347 |
</svg>
|
templates/20/preview-thumb.svg
ADDED
@@ -0,0 +1,302 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 265 300" enable-background="new 0 0 265 300" xml:space="preserve">
|
5 |
+
<g>
|
6 |
+
<path id="Rectangle_673" fill="#FFFFFF" d="M5,0h255c2.8,0,5,2.2,5,5v290c0,2.8-2.2,5-5,5H5c-2.8,0-5-2.2-5-5V5C0,2.2,2.2,0,5,0z"
|
7 |
+
/>
|
8 |
+
<path id="Rectangle_674" fill="#E5E9EA" d="M42.5,59h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
9 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,60.1,41.1,59,42.5,59z"/>
|
10 |
+
<path id="Rectangle_675" fill="#E5E9EA" d="M42.5,108h180c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-180
|
11 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,109.1,41.1,108,42.5,108z"/>
|
12 |
+
<path id="Rectangle_680" fill="#E5E9EA" d="M142.5,59h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
13 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C140,60.1,141.1,59,142.5,59z"/>
|
14 |
+
<path id="Rectangle_685" fill="#E5E9EA" d="M42.5,163h5c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-5
|
15 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,164.1,41.1,163,42.5,163z"/>
|
16 |
+
<path id="Rectangle_690" fill="#E5E9EA" d="M42.5,217h5c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-5
|
17 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,218.1,41.1,217,42.5,217z"/>
|
18 |
+
<path id="Rectangle_689" fill="#E5E9EA" d="M42.5,199h5c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-5
|
19 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,200.1,41.1,199,42.5,199z"/>
|
20 |
+
<path id="Rectangle_686" fill="#E5E9EA" d="M42.5,181h5c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-5
|
21 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,182.1,41.1,181,42.5,181z"/>
|
22 |
+
<path id="Rectangle_684" fill="#E5E9EA" d="M57.5,163h75c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-75
|
23 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C55,164.1,56.1,163,57.5,163z"/>
|
24 |
+
<path id="Rectangle_691" fill="#E5E9EA" d="M57.5,217h95c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-95
|
25 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C55,218.1,56.1,217,57.5,217z"/>
|
26 |
+
<path id="Rectangle_688" fill="#E5E9EA" d="M57.5,199h65c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-65
|
27 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C55,200.1,56.1,199,57.5,199z"/>
|
28 |
+
<path id="Rectangle_687" fill="#E5E9EA" d="M57.5,181h115c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-115
|
29 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C55,182.1,56.1,181,57.5,181z"/>
|
30 |
+
<g enable-background="new ">
|
31 |
+
<path fill="#565656" d="M46.6,42.4v1h-4.5v2.7H46v1h-3.9V51h-1.1v-8.6H46.6z"/>
|
32 |
+
<path fill="#565656" d="M47.7,43.7v-1.2h1v1.2H47.7z M48.7,44.8V51h-1v-6.2H48.7z"/>
|
33 |
+
<path fill="#565656" d="M51.2,44.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
34 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1V51h-1v-6.2H51.2z"/>
|
35 |
+
<path fill="#565656" d="M55.1,49.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
36 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
37 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
38 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
39 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
40 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
41 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
42 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
43 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
44 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C54.9,49.3,55,49.5,55.1,49.6z"/>
|
45 |
+
<path fill="#565656" d="M63,44.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0H63V51h-0.8
|
46 |
+
c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9H63z"/>
|
47 |
+
<path fill="#565656" d="M68.8,42.4l4.5,6.9h0v-6.9h1.1V51h-1.2l-4.5-6.9h0V51h-1.1v-8.6H68.8z"/>
|
48 |
+
<path fill="#565656" d="M81.6,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
49 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
50 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
51 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
52 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2S77,46.3,77,46.7h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
53 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
54 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51z M79.9,47.8
|
55 |
+
c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
56 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
57 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V47.8z"/>
|
58 |
+
<path fill="#565656" d="M83.5,44.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
59 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
60 |
+
c0.1,0.2,0.1,0.5,0.1,0.8V51h-1v-4.1c0-0.2,0-0.4,0-0.5S90.1,46.1,90,46c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
61 |
+
c-0.5,0-0.9,0.1-1.2,0.4s-0.4,0.7-0.4,1.2V51h-1v-4.1c0-0.2,0-0.4-0.1-0.6c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3
|
62 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4s-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5V51h-1
|
63 |
+
v-6.2H83.5z"/>
|
64 |
+
<path fill="#565656" d="M97.2,50.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
65 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
66 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
67 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
68 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C97.9,49.7,97.6,50.3,97.2,50.6z M96.9,46.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
69 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
70 |
+
C97.1,47.1,97,46.8,96.9,46.6z"/>
|
71 |
+
</g>
|
72 |
+
<g enable-background="new ">
|
73 |
+
<path fill="#565656" d="M46.9,91.4v1h-4.8v2.7h4.5v1h-4.5v3h4.8v1h-6v-8.6H46.9z"/>
|
74 |
+
<path fill="#565656" d="M49.1,93.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
75 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
76 |
+
c0.1,0.2,0.1,0.5,0.1,0.8v4.5h-1v-4.1c0-0.2,0-0.4,0-0.5s-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
77 |
+
c-0.5,0-0.9,0.1-1.2,0.4S53,95.7,53,96.1v3.9h-1v-4.1c0-0.2,0-0.4-0.1-0.6c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3
|
78 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4s-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5v3.9h-1
|
79 |
+
v-6.2H49.1z"/>
|
80 |
+
<path fill="#565656" d="M63.8,100c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
81 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
82 |
+
C58.1,99,58,98.7,58,98.4c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
83 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
84 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
85 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
86 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V100z M62.2,96.8
|
87 |
+
C62,96.9,61.9,97,61.7,97s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
88 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
89 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V96.8z"/>
|
90 |
+
<path fill="#565656" d="M64.8,92.7v-1.2h1v1.2H64.8z M65.9,93.8v6.2h-1v-6.2H65.9z"/>
|
91 |
+
<path fill="#565656" d="M68.5,91.4v8.6h-1v-8.6H68.5z"/>
|
92 |
+
<path fill="#565656" d="M77.2,91.4l3.3,8.6h-1.3l-0.9-2.6h-3.6l-1,2.6h-1.2l3.3-8.6H77.2z M78,96.5l-1.4-4h0l-1.5,4H78z"/>
|
93 |
+
<path fill="#565656" d="M85.7,100v-0.8h0c-0.2,0.3-0.4,0.6-0.8,0.7c-0.4,0.2-0.8,0.2-1.2,0.2c-0.5,0-0.9-0.1-1.3-0.3
|
94 |
+
c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.5-1c-0.1-0.4-0.2-0.8-0.2-1.2c0-0.4,0.1-0.9,0.2-1.2c0.1-0.4,0.3-0.7,0.5-1
|
95 |
+
c0.2-0.3,0.5-0.5,0.9-0.7s0.8-0.3,1.2-0.3c0.2,0,0.3,0,0.5,0s0.4,0.1,0.6,0.2s0.4,0.2,0.5,0.3s0.3,0.3,0.4,0.5h0v-3.2h1v8.6H85.7z
|
96 |
+
M82.1,97.8c0.1,0.3,0.2,0.5,0.3,0.7c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2c0.3,0,0.6-0.1,0.9-0.2
|
97 |
+
c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.5,0.3-0.8c0.1-0.3,0.1-0.6,0.1-0.9c0-0.3,0-0.6-0.1-0.9c-0.1-0.3-0.2-0.5-0.3-0.8
|
98 |
+
c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5c-0.1,0.2-0.2,0.5-0.3,0.8
|
99 |
+
C82,96.4,82,96.6,82,97C82,97.2,82,97.5,82.1,97.8z"/>
|
100 |
+
<path fill="#565656" d="M92.9,100v-0.8h0c-0.2,0.3-0.4,0.6-0.8,0.7c-0.4,0.2-0.8,0.2-1.2,0.2c-0.5,0-0.9-0.1-1.3-0.3
|
101 |
+
c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.5-1c-0.1-0.4-0.2-0.8-0.2-1.2c0-0.4,0.1-0.9,0.2-1.2c0.1-0.4,0.3-0.7,0.5-1
|
102 |
+
c0.2-0.3,0.5-0.5,0.9-0.7s0.8-0.3,1.2-0.3c0.2,0,0.3,0,0.5,0s0.4,0.1,0.6,0.2s0.4,0.2,0.5,0.3s0.3,0.3,0.4,0.5h0v-3.2h1v8.6H92.9z
|
103 |
+
M89.2,97.8c0.1,0.3,0.2,0.5,0.3,0.7c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2c0.3,0,0.6-0.1,0.9-0.2
|
104 |
+
c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.5,0.3-0.8c0.1-0.3,0.1-0.6,0.1-0.9c0-0.3,0-0.6-0.1-0.9c-0.1-0.3-0.2-0.5-0.3-0.8
|
105 |
+
c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5c-0.1,0.2-0.2,0.5-0.3,0.8
|
106 |
+
c-0.1,0.3-0.1,0.6-0.1,0.9C89.1,97.2,89.1,97.5,89.2,97.8z"/>
|
107 |
+
<path fill="#565656" d="M96.4,93.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
108 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1v2.8h-1v-6.2H96.4z"/>
|
109 |
+
<path fill="#565656" d="M103.6,99.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
110 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
111 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2H100
|
112 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
113 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C104.4,98.7,104.1,99.3,103.6,99.6z M103.4,95.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
114 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
115 |
+
C103.5,96.1,103.5,95.8,103.4,95.6z"/>
|
116 |
+
<path fill="#565656" d="M106.5,98.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
117 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
118 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
119 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
120 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
121 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
122 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
123 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
124 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
125 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C106.3,98.3,106.4,98.5,106.5,98.6z"/>
|
126 |
+
<path fill="#565656" d="M112.5,98.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
127 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
128 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
129 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
130 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
131 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
132 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
133 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
134 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
135 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C112.3,98.3,112.4,98.5,112.5,98.6z"/>
|
136 |
+
</g>
|
137 |
+
<g enable-background="new ">
|
138 |
+
<path fill="#565656" d="M45.2,141.6c-0.4-0.3-0.9-0.4-1.5-0.4c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.4,0.1-0.6,0.2
|
139 |
+
c-0.2,0.1-0.3,0.3-0.4,0.5c-0.1,0.2-0.2,0.4-0.2,0.7c0,0.3,0.1,0.5,0.2,0.6c0.2,0.2,0.4,0.3,0.6,0.4c0.3,0.1,0.6,0.2,0.9,0.3
|
140 |
+
s0.7,0.1,1,0.2c0.3,0.1,0.7,0.2,1,0.3s0.6,0.3,0.9,0.4c0.3,0.2,0.5,0.4,0.6,0.7c0.2,0.3,0.2,0.6,0.2,1.1c0,0.5-0.1,0.8-0.3,1.2
|
141 |
+
c-0.2,0.3-0.5,0.6-0.8,0.8c-0.3,0.2-0.7,0.4-1.1,0.4s-0.8,0.1-1.2,0.1c-0.5,0-0.9-0.1-1.4-0.2c-0.4-0.1-0.8-0.3-1.1-0.5
|
142 |
+
c-0.3-0.2-0.6-0.6-0.8-0.9s-0.3-0.8-0.3-1.4h1.1c0,0.4,0.1,0.7,0.2,0.9s0.3,0.5,0.6,0.6s0.5,0.3,0.8,0.4c0.3,0.1,0.6,0.1,0.9,0.1
|
143 |
+
c0.3,0,0.5,0,0.8-0.1s0.5-0.1,0.7-0.2c0.2-0.1,0.4-0.3,0.5-0.5s0.2-0.5,0.2-0.8c0-0.3-0.1-0.5-0.2-0.7c-0.2-0.2-0.4-0.3-0.6-0.5
|
144 |
+
c-0.3-0.1-0.6-0.2-0.9-0.3c-0.3-0.1-0.7-0.1-1-0.2c-0.3-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.2-0.9-0.4c-0.3-0.2-0.5-0.4-0.6-0.6
|
145 |
+
c-0.2-0.3-0.2-0.6-0.2-1c0-0.4,0.1-0.8,0.3-1.1c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.4,1-0.5c0.4-0.1,0.8-0.2,1.1-0.2
|
146 |
+
c0.4,0,0.8,0.1,1.2,0.2c0.4,0.1,0.7,0.3,1,0.5c0.3,0.2,0.5,0.5,0.7,0.8c0.2,0.3,0.3,0.7,0.3,1.2h-1.1
|
147 |
+
C45.8,142.3,45.6,141.9,45.2,141.6z"/>
|
148 |
+
<path fill="#565656" d="M52.9,148.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
149 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
150 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
151 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
152 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C53.7,147.7,53.4,148.3,52.9,148.6z M52.7,144.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
153 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
154 |
+
C52.8,145.1,52.8,144.8,52.7,144.6z"/>
|
155 |
+
<path fill="#565656" d="M56.1,140.4v8.6h-1v-8.6H56.1z"/>
|
156 |
+
<path fill="#565656" d="M62,148.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
157 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
158 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
159 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
160 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C62.8,147.7,62.5,148.3,62,148.6z M61.8,144.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
161 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7H62
|
162 |
+
C61.9,145.1,61.9,144.8,61.8,144.6z"/>
|
163 |
+
<path fill="#565656" d="M67.8,143.9c-0.3-0.2-0.6-0.3-1-0.3c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
164 |
+
c-0.1,0.2-0.3,0.5-0.3,0.8s-0.1,0.6-0.1,0.9c0,0.3,0,0.6,0.1,0.8c0.1,0.3,0.2,0.5,0.3,0.7s0.3,0.4,0.6,0.5
|
165 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.5,0,0.9-0.1,1.2-0.4c0.3-0.3,0.5-0.6,0.5-1.1h1c-0.1,0.8-0.4,1.4-0.9,1.8s-1.1,0.6-1.9,0.6
|
166 |
+
c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.6s-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3
|
167 |
+
c0.1-0.4,0.3-0.8,0.5-1.1c0.2-0.3,0.5-0.5,0.9-0.7c0.4-0.2,0.8-0.3,1.3-0.3c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.4
|
168 |
+
s0.4,0.4,0.6,0.7c0.2,0.3,0.2,0.6,0.3,1h-1.1C68.2,144.4,68.1,144.1,67.8,143.9z"/>
|
169 |
+
<path fill="#565656" d="M73.2,142.8v0.9H72v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0h0.5v0.9
|
170 |
+
h-0.8c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9
|
171 |
+
H73.2z"/>
|
172 |
+
<path fill="#565656" d="M80.8,140.4c1.3,0,2.3,0.3,3,1c0.7,0.7,1.1,1.7,1.1,3.1c0,0.7-0.1,1.4-0.2,1.9c-0.2,0.6-0.4,1-0.7,1.4
|
173 |
+
c-0.3,0.4-0.8,0.7-1.3,0.9s-1.1,0.3-1.8,0.3h-2.9v-8.6H80.8z M80.9,148c0.1,0,0.3,0,0.5,0c0.2,0,0.4-0.1,0.6-0.1s0.4-0.2,0.6-0.3
|
174 |
+
c0.2-0.1,0.4-0.3,0.6-0.6s0.3-0.6,0.4-0.9c0.1-0.4,0.2-0.8,0.2-1.3c0-0.5-0.1-1-0.1-1.4c-0.1-0.4-0.3-0.7-0.5-1
|
175 |
+
c-0.2-0.3-0.5-0.5-0.9-0.6c-0.4-0.1-0.8-0.2-1.3-0.2H79v6.6H80.9z"/>
|
176 |
+
<path fill="#565656" d="M90.5,148.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
177 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
178 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
179 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
180 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C91.3,147.7,91,148.3,90.5,148.6z M90.2,144.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
181 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
182 |
+
C90.4,145.1,90.3,144.8,90.2,144.6z"/>
|
183 |
+
<path fill="#565656" d="M93.6,142.8v0.8h0c0.2-0.3,0.4-0.6,0.8-0.8c0.4-0.2,0.8-0.2,1.2-0.2c0.5,0,0.9,0.1,1.3,0.3
|
184 |
+
s0.7,0.4,0.9,0.7c0.2,0.3,0.4,0.6,0.5,1c0.1,0.4,0.2,0.8,0.2,1.2c0,0.4-0.1,0.9-0.2,1.2c-0.1,0.4-0.3,0.7-0.5,1s-0.5,0.5-0.9,0.7
|
185 |
+
c-0.4,0.2-0.8,0.3-1.2,0.3c-0.2,0-0.3,0-0.5,0s-0.4-0.1-0.6-0.2c-0.2-0.1-0.4-0.2-0.5-0.3c-0.2-0.1-0.3-0.3-0.4-0.5h0v3.2h-1v-8.6
|
186 |
+
H93.6z M97.3,145c-0.1-0.3-0.2-0.5-0.3-0.7c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2
|
187 |
+
c-0.2,0.1-0.4,0.3-0.6,0.5c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,0.9c0,0.3,0,0.6,0.1,0.9c0.1,0.3,0.2,0.5,0.3,0.8
|
188 |
+
c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2c0.4,0,0.6-0.1,0.9-0.2s0.4-0.3,0.6-0.5s0.2-0.5,0.3-0.8
|
189 |
+
c0.1-0.3,0.1-0.6,0.1-0.9C97.4,145.6,97.3,145.3,97.3,145z"/>
|
190 |
+
<path fill="#565656" d="M105.2,149c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
191 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
192 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
193 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
194 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
195 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
196 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V149z M103.5,145.8
|
197 |
+
c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
198 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
199 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V145.8z"/>
|
200 |
+
<path fill="#565656" d="M107,142.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
201 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1v2.8h-1v-6.2H107z"/>
|
202 |
+
<path fill="#565656" d="M112.8,142.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0h0.5v0.9
|
203 |
+
H112c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9
|
204 |
+
H112.8z"/>
|
205 |
+
<path fill="#565656" d="M114.8,142.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
206 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
207 |
+
c0.1,0.2,0.1,0.5,0.1,0.8v4.5h-1v-4.1c0-0.2,0-0.4,0-0.5s-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
208 |
+
c-0.5,0-0.9,0.1-1.2,0.4s-0.4,0.7-0.4,1.2v3.9h-1v-4.1c0-0.2,0-0.4-0.1-0.6c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3
|
209 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4s-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5v3.9h-1
|
210 |
+
v-6.2H114.8z"/>
|
211 |
+
<path fill="#565656" d="M128.5,148.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
212 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
213 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
214 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
215 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C129.3,147.7,129,148.3,128.5,148.6z M128.3,144.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
216 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
217 |
+
C128.4,145.1,128.4,144.8,128.3,144.6z"/>
|
218 |
+
<path fill="#565656" d="M131.5,142.8v1h0c0.4-0.8,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5s0.3,0.4,0.4,0.7
|
219 |
+
s0.1,0.6,0.1,0.9v4.1h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.3-0.9-0.3c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4
|
220 |
+
c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8v3.5h-1v-6.2H131.5z"/>
|
221 |
+
<path fill="#565656" d="M139.9,142.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3c0,0.1,0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0
|
222 |
+
h0.5v0.9h-0.8c-0.3,0-0.5,0-0.7-0.1c-0.2,0-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9
|
223 |
+
h1.1v-1.9h1v1.9H139.9z"/>
|
224 |
+
</g>
|
225 |
+
<g enable-background="new ">
|
226 |
+
<path fill="#565656" d="M142.1,42.4V50h4.5v1h-5.7v-8.6H142.1z"/>
|
227 |
+
<path fill="#565656" d="M152.9,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
228 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
229 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
230 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
231 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
232 |
+
s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1s0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5c0.1,0.2,0.2,0.5,0.2,0.9
|
233 |
+
v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51z M151.3,47.8c-0.1,0.1-0.3,0.2-0.5,0.2
|
234 |
+
c-0.2,0-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.4-0.2,0.6
|
235 |
+
c0,0.2,0,0.3,0.1,0.4c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
236 |
+
c0.2-0.1,0.4-0.2,0.6-0.3s0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V47.8z"/>
|
237 |
+
<path fill="#565656" d="M154.7,49.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
238 |
+
s0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3c0.1-0.1,0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
239 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
240 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.6-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
241 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3s-0.3-0.1-0.5-0.2
|
242 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
243 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
244 |
+
s0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9s-0.4,0.4-0.6,0.6
|
245 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
246 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C154.5,49.3,154.6,49.5,154.7,49.6z"/>
|
247 |
+
<path fill="#565656" d="M162.5,44.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3c0,0.1,0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0h0.5
|
248 |
+
V51h-0.8c-0.3,0-0.5,0-0.7-0.1c-0.2,0-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1
|
249 |
+
v-1.9h1v1.9H162.5z"/>
|
250 |
+
<path fill="#565656" d="M168.4,42.4l4.5,6.9h0v-6.9h1.1V51h-1.2l-4.5-6.9h0V51h-1.1v-8.6H168.4z"/>
|
251 |
+
<path fill="#565656" d="M181.2,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
252 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
253 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5s0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
254 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
255 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
256 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
257 |
+
s0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51z M179.5,47.8c-0.1,0.1-0.3,0.2-0.5,0.2
|
258 |
+
c-0.2,0-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2s-0.3,0.2-0.4,0.3c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4
|
259 |
+
c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1c0.2-0.1,0.4-0.2,0.6-0.3
|
260 |
+
c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V47.8z"/>
|
261 |
+
<path fill="#565656" d="M183.1,44.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
262 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
263 |
+
c0.1,0.2,0.1,0.5,0.1,0.8V51h-1v-4.1c0-0.2,0-0.4,0-0.5s-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
264 |
+
c-0.5,0-0.9,0.1-1.2,0.4s-0.4,0.7-0.4,1.2V51h-1v-4.1c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4s-0.2-0.2-0.4-0.3
|
265 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4c-0.1,0.2-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5
|
266 |
+
V51h-1v-6.2H183.1z"/>
|
267 |
+
<path fill="#565656" d="M196.7,50.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
268 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.7-0.2,1.2-0.2
|
269 |
+
c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6c0,0.3,0,0.5,0.1,0.8
|
270 |
+
c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3s0.5-0.5,0.5-0.9h1
|
271 |
+
C197.5,49.7,197.2,50.3,196.7,50.6z M196.5,46.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1
|
272 |
+
c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4c-0.2,0.2-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6C196.6,47.1,196.6,46.8,196.5,46.6
|
273 |
+
z"/>
|
274 |
+
</g>
|
275 |
+
<path id="Rectangle_683" fill="#31A651" d="M85,238h95c2.8,0,5,2.2,5,5v17c0,2.8-2.2,5-5,5H85c-2.8,0-5-2.2-5-5v-17
|
276 |
+
C80,240.2,82.2,238,85,238z"/>
|
277 |
+
<g enable-background="new ">
|
278 |
+
<path fill="#FFFFFF" d="M115.4,253.6c0,0.3,0,0.5,0.1,0.7c0.1,0.2,0.2,0.4,0.4,0.5s0.4,0.2,0.6,0.3c0.2,0.1,0.5,0.1,0.7,0.1
|
279 |
+
c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.4-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.3-0.3s0.1-0.3,0.1-0.4c0-0.3-0.1-0.5-0.2-0.6
|
280 |
+
c-0.1-0.1-0.3-0.2-0.4-0.3c-0.3-0.1-0.5-0.2-0.9-0.3c-0.3-0.1-0.8-0.2-1.2-0.3c-0.3-0.1-0.6-0.2-0.8-0.3c-0.2-0.1-0.4-0.3-0.5-0.4
|
281 |
+
c-0.1-0.2-0.2-0.3-0.3-0.5c0-0.2-0.1-0.4-0.1-0.5c0-0.4,0.1-0.7,0.2-0.9c0.1-0.3,0.3-0.5,0.6-0.7c0.2-0.2,0.5-0.3,0.8-0.4
|
282 |
+
c0.3-0.1,0.6-0.1,1-0.1c0.4,0,0.7,0,1.1,0.1s0.6,0.2,0.9,0.4c0.2,0.2,0.4,0.4,0.6,0.7s0.2,0.6,0.2,1h-1.2c0-0.5-0.2-0.8-0.5-1
|
283 |
+
c-0.3-0.2-0.6-0.3-1.1-0.3c-0.1,0-0.3,0-0.5,0s-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.2-0.3,0.3c-0.1,0.1-0.1,0.3-0.1,0.4
|
284 |
+
c0,0.3,0.1,0.5,0.2,0.6s0.4,0.3,0.6,0.3c0,0,0.1,0,0.3,0.1c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.1,0.7,0.2s0.4,0.1,0.5,0.1
|
285 |
+
c0.2,0.1,0.4,0.2,0.6,0.3s0.3,0.3,0.4,0.4c0.1,0.2,0.2,0.3,0.3,0.5s0.1,0.4,0.1,0.6c0,0.4-0.1,0.7-0.2,1c-0.2,0.3-0.4,0.5-0.6,0.7
|
286 |
+
c-0.3,0.2-0.6,0.3-0.9,0.4c-0.3,0.1-0.7,0.1-1,0.1c-0.4,0-0.8,0-1.1-0.2c-0.4-0.1-0.7-0.3-0.9-0.5c-0.3-0.2-0.5-0.5-0.6-0.8
|
287 |
+
c-0.2-0.3-0.2-0.7-0.2-1.1H115.4z"/>
|
288 |
+
<path fill="#FFFFFF" d="M121,248.9h1.2v4.2c0,0.2,0,0.5,0,0.7c0,0.2,0.1,0.5,0.2,0.7s0.3,0.4,0.5,0.5c0.2,0.1,0.5,0.2,0.9,0.2
|
289 |
+
s0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.5-0.5c0.1-0.2,0.2-0.4,0.2-0.7c0-0.2,0-0.5,0-0.7v-4.2h1.2v4.6c0,0.5-0.1,0.9-0.2,1.2
|
290 |
+
s-0.3,0.6-0.6,0.9c-0.3,0.2-0.6,0.4-0.9,0.5s-0.8,0.2-1.2,0.2s-0.8-0.1-1.2-0.2c-0.4-0.1-0.7-0.3-0.9-0.5
|
291 |
+
c-0.3-0.2-0.5-0.5-0.6-0.9c-0.1-0.3-0.2-0.7-0.2-1.2V248.9z"/>
|
292 |
+
<path fill="#FFFFFF" d="M128.3,248.9h3.5c0.6,0,1.2,0.1,1.5,0.4c0.4,0.3,0.6,0.7,0.6,1.3c0,0.4-0.1,0.7-0.3,0.9
|
293 |
+
c-0.2,0.3-0.4,0.5-0.8,0.6v0c0.4,0.1,0.8,0.3,1,0.6s0.3,0.7,0.3,1.2c0,0.3,0,0.5-0.1,0.8c-0.1,0.2-0.3,0.5-0.5,0.6
|
294 |
+
c-0.2,0.2-0.5,0.3-0.8,0.4c-0.3,0.1-0.7,0.2-1.2,0.2h-3.3V248.9z M129.5,251.8h2c0.3,0,0.6-0.1,0.8-0.3c0.2-0.2,0.3-0.4,0.3-0.7
|
295 |
+
c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.1-0.4-0.2-0.8-0.2h-2V251.8z M129.5,255h2.2c0.4,0,0.7-0.1,0.9-0.3c0.2-0.2,0.3-0.5,0.3-0.8
|
296 |
+
c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.2-0.5-0.3-0.9-0.3h-2.2V255z"/>
|
297 |
+
<path fill="#FFFFFF" d="M135.3,248.9h1.8l2,5.6h0l1.9-5.6h1.7v7.1h-1.2v-5.5h0l-2,5.5h-1l-2-5.5h0v5.5h-1.2V248.9z"/>
|
298 |
+
<path fill="#FFFFFF" d="M144.2,248.9h1.2v7.1h-1.2V248.9z"/>
|
299 |
+
<path fill="#FFFFFF" d="M146.3,248.9h5.8v1.1h-2.3v6.1h-1.2v-6.1h-2.3V248.9z"/>
|
300 |
+
</g>
|
301 |
+
</g>
|
302 |
+
</svg>
|
templates/21/preview-thumb.svg
ADDED
@@ -0,0 +1,337 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 265 300" enable-background="new 0 0 265 300" xml:space="preserve">
|
5 |
+
<g>
|
6 |
+
<path id="Rectangle_909" fill="#FFFFFF" d="M5,0h255c2.8,0,5,2.2,5,5v290c0,2.8-2.2,5-5,5H5c-2.8,0-5-2.2-5-5V5C0,2.2,2.2,0,5,0z"
|
7 |
+
/>
|
8 |
+
<path id="Rectangle_910" fill="#E5E9EA" d="M42.5,59h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
9 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,60.1,41.1,59,42.5,59z"/>
|
10 |
+
<path id="Rectangle_911" fill="#E5E9EA" d="M42.5,103h180c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-180
|
11 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,104.1,41.1,103,42.5,103z"/>
|
12 |
+
<path id="Rectangle_920" fill="#E5E9EA" d="M42.5,212h180c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-180
|
13 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,213.1,41.1,212,42.5,212z"/>
|
14 |
+
<path id="Rectangle_912" fill="#E5E9EA" d="M142.5,59h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
15 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C140,60.1,141.1,59,142.5,59z"/>
|
16 |
+
<path id="Rectangle_913" fill="#E5E9EA" d="M45,148h175c2.8,0,5,2.2,5,5v15c0,2.8-2.2,5-5,5H45c-2.8,0-5-2.2-5-5v-15
|
17 |
+
C40,150.2,42.2,148,45,148z"/>
|
18 |
+
<g enable-background="new ">
|
19 |
+
<path fill="#565656" d="M46.6,42.4v1h-4.5v2.7H46v1h-3.9V51h-1.1v-8.6H46.6z"/>
|
20 |
+
<path fill="#565656" d="M47.7,43.7v-1.2h1v1.2H47.7z M48.7,44.8V51h-1v-6.2H48.7z"/>
|
21 |
+
<path fill="#565656" d="M51.2,44.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
22 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1V51h-1v-6.2H51.2z"/>
|
23 |
+
<path fill="#565656" d="M55.1,49.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
24 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
25 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
26 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
27 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
28 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
29 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
30 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
31 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
32 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C54.9,49.3,55,49.5,55.1,49.6z"/>
|
33 |
+
<path fill="#565656" d="M63,44.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0H63V51h-0.8
|
34 |
+
c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9H63z"/>
|
35 |
+
<path fill="#565656" d="M68.8,42.4l4.5,6.9h0v-6.9h1.1V51h-1.2l-4.5-6.9h0V51h-1.1v-8.6H68.8z"/>
|
36 |
+
<path fill="#565656" d="M81.6,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
37 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
38 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
39 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
40 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2S77,46.3,77,46.7h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
41 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
42 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51z M79.9,47.8
|
43 |
+
c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
44 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
45 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V47.8z"/>
|
46 |
+
<path fill="#565656" d="M83.5,44.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
47 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
48 |
+
c0.1,0.2,0.1,0.5,0.1,0.8V51h-1v-4.1c0-0.2,0-0.4,0-0.5S90.1,46.1,90,46c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
49 |
+
c-0.5,0-0.9,0.1-1.2,0.4s-0.4,0.7-0.4,1.2V51h-1v-4.1c0-0.2,0-0.4-0.1-0.6c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3
|
50 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4s-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5V51h-1
|
51 |
+
v-6.2H83.5z"/>
|
52 |
+
<path fill="#565656" d="M97.2,50.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
53 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
54 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
55 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
56 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C97.9,49.7,97.6,50.3,97.2,50.6z M96.9,46.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
57 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
58 |
+
C97.1,47.1,97,46.8,96.9,46.6z"/>
|
59 |
+
</g>
|
60 |
+
<g enable-background="new ">
|
61 |
+
<path fill="#565656" d="M46.9,86.4v1h-4.8v2.7h4.5v1h-4.5v3h4.8v1h-6v-8.6H46.9z"/>
|
62 |
+
<path fill="#565656" d="M49.1,88.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
63 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
64 |
+
c0.1,0.2,0.1,0.5,0.1,0.8V95h-1v-4.1c0-0.2,0-0.4,0-0.5s-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
65 |
+
c-0.5,0-0.9,0.1-1.2,0.4S53,90.7,53,91.1V95h-1v-4.1c0-0.2,0-0.4-0.1-0.6c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3
|
66 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4s-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5V95h-1
|
67 |
+
v-6.2H49.1z"/>
|
68 |
+
<path fill="#565656" d="M63.8,95c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
69 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
70 |
+
C58.1,94,58,93.7,58,93.4c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
71 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
72 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
73 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
74 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V95z M62.2,91.8
|
75 |
+
C62,91.9,61.9,92,61.7,92s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
76 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
77 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V91.8z"/>
|
78 |
+
<path fill="#565656" d="M64.8,87.7v-1.2h1v1.2H64.8z M65.9,88.8V95h-1v-6.2H65.9z"/>
|
79 |
+
<path fill="#565656" d="M68.5,86.4V95h-1v-8.6H68.5z"/>
|
80 |
+
</g>
|
81 |
+
<g enable-background="new ">
|
82 |
+
<path fill="#565656" d="M43.9,195.4c1.3,0,2.3,0.3,3,1c0.7,0.7,1.1,1.7,1.1,3.1c0,0.7-0.1,1.4-0.2,1.9c-0.2,0.6-0.4,1-0.7,1.4
|
83 |
+
c-0.3,0.4-0.8,0.7-1.3,0.9s-1.1,0.3-1.8,0.3h-2.9v-8.6H43.9z M44,203c0.1,0,0.3,0,0.5,0c0.2,0,0.4-0.1,0.6-0.1s0.4-0.2,0.6-0.3
|
84 |
+
c0.2-0.1,0.4-0.3,0.6-0.6s0.3-0.6,0.4-0.9c0.1-0.4,0.2-0.8,0.2-1.3c0-0.5-0.1-1-0.1-1.4c-0.1-0.4-0.3-0.7-0.5-1
|
85 |
+
c-0.2-0.3-0.5-0.5-0.9-0.6c-0.4-0.1-0.8-0.2-1.3-0.2h-1.9v6.6H44z"/>
|
86 |
+
<path fill="#565656" d="M54.7,204c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
87 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
88 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
89 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
90 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
91 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
92 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V204z M53.1,200.8
|
93 |
+
c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
94 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
95 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V200.8z"/>
|
96 |
+
<path fill="#565656" d="M58.1,204.8c-0.1,0.3-0.2,0.6-0.4,0.8c-0.1,0.2-0.2,0.4-0.4,0.5c-0.1,0.1-0.3,0.2-0.5,0.3
|
97 |
+
c-0.2,0.1-0.4,0.1-0.6,0.1c-0.1,0-0.2,0-0.4,0s-0.2,0-0.3-0.1v-0.9c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3,0c0.2,0,0.4,0,0.5-0.2
|
98 |
+
c0.1-0.1,0.2-0.2,0.3-0.4l0.4-1l-2.5-6.2h1.2l1.8,5.1h0l1.7-5.1h1.1L58.1,204.8z"/>
|
99 |
+
<path fill="#565656" d="M62.4,202.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
100 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
101 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
102 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
103 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
104 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
105 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
106 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
107 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
108 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C62.3,202.3,62.3,202.5,62.4,202.6z"/>
|
109 |
+
<path fill="#565656" d="M70.9,199.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7s0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
110 |
+
s0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
111 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1
|
112 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S70.7,200,70.9,199.6z M71.9,201.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
113 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.3,0,0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7s0.1-0.6,0.1-1s0-0.7-0.1-1
|
114 |
+
s-0.2-0.5-0.4-0.7c-0.2-0.2-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
115 |
+
c-0.2,0.2-0.3,0.4-0.4,0.7c-0.1,0.3-0.1,0.6-0.1,1S71.8,201.6,71.9,201.9z"/>
|
116 |
+
<path fill="#565656" d="M77.3,198.7v-0.9h1v-0.9c0-0.5,0.1-0.9,0.4-1.1c0.3-0.3,0.7-0.4,1.3-0.4c0.1,0,0.2,0,0.3,0
|
117 |
+
c0.1,0,0.2,0,0.3,0.1v0.9c-0.1,0-0.2-0.1-0.3-0.1s-0.2,0-0.3,0c-0.2,0-0.4,0-0.6,0.1c-0.1,0.1-0.2,0.3-0.2,0.6v0.9h1.2v0.9h-1.2
|
118 |
+
v5.3h-1v-5.3H77.3z"/>
|
119 |
+
<path fill="#565656" d="M91.5,204l-2-7.2h0l-2,7.2h-1.2l-2.2-8.6h1.2l1.7,7.1h0l1.9-7.1h1.2l1.9,7.1h0l1.7-7.1H95l-2.3,8.6H91.5z"
|
120 |
+
/>
|
121 |
+
<path fill="#565656" d="M95.1,199.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7s0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
122 |
+
s0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
123 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1
|
124 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S94.9,200,95.1,199.6z M96.1,201.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
125 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.3,0,0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7s0.1-0.6,0.1-1s0-0.7-0.1-1
|
126 |
+
s-0.2-0.5-0.4-0.7c-0.2-0.2-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
127 |
+
c-0.2,0.2-0.3,0.4-0.4,0.7c-0.1,0.3-0.1,0.6-0.1,1S96,201.6,96.1,201.9z"/>
|
128 |
+
<path fill="#565656" d="M103,197.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
129 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1v2.8h-1v-6.2H103z"/>
|
130 |
+
<path fill="#565656" d="M107.2,195.4v5.1l2.8-2.7h1.4l-2.5,2.3l2.6,3.9h-1.3l-2.1-3.2l-1,0.9v2.4h-1v-8.6H107.2z"/>
|
131 |
+
</g>
|
132 |
+
<g enable-background="new ">
|
133 |
+
<path fill="#565656" d="M45.2,131.6c-0.4-0.3-0.9-0.4-1.5-0.4c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.4,0.1-0.6,0.2
|
134 |
+
c-0.2,0.1-0.3,0.3-0.4,0.5c-0.1,0.2-0.2,0.4-0.2,0.7c0,0.3,0.1,0.5,0.2,0.6c0.2,0.2,0.4,0.3,0.6,0.4c0.3,0.1,0.6,0.2,0.9,0.3
|
135 |
+
s0.7,0.1,1,0.2c0.3,0.1,0.7,0.2,1,0.3s0.6,0.3,0.9,0.4c0.3,0.2,0.5,0.4,0.6,0.7c0.2,0.3,0.2,0.6,0.2,1.1c0,0.5-0.1,0.8-0.3,1.2
|
136 |
+
c-0.2,0.3-0.5,0.6-0.8,0.8c-0.3,0.2-0.7,0.4-1.1,0.4s-0.8,0.1-1.2,0.1c-0.5,0-0.9-0.1-1.4-0.2c-0.4-0.1-0.8-0.3-1.1-0.5
|
137 |
+
c-0.3-0.2-0.6-0.6-0.8-0.9s-0.3-0.8-0.3-1.4h1.1c0,0.4,0.1,0.7,0.2,0.9s0.3,0.5,0.6,0.6s0.5,0.3,0.8,0.4c0.3,0.1,0.6,0.1,0.9,0.1
|
138 |
+
c0.3,0,0.5,0,0.8-0.1s0.5-0.1,0.7-0.2c0.2-0.1,0.4-0.3,0.5-0.5s0.2-0.5,0.2-0.8c0-0.3-0.1-0.5-0.2-0.7c-0.2-0.2-0.4-0.3-0.6-0.5
|
139 |
+
c-0.3-0.1-0.6-0.2-0.9-0.3c-0.3-0.1-0.7-0.1-1-0.2c-0.3-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.2-0.9-0.4c-0.3-0.2-0.5-0.4-0.6-0.6
|
140 |
+
c-0.2-0.3-0.2-0.6-0.2-1c0-0.4,0.1-0.8,0.3-1.1c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.4,1-0.5c0.4-0.1,0.8-0.2,1.1-0.2
|
141 |
+
c0.4,0,0.8,0.1,1.2,0.2c0.4,0.1,0.7,0.3,1,0.5c0.3,0.2,0.5,0.5,0.7,0.8c0.2,0.3,0.3,0.7,0.3,1.2h-1.1
|
142 |
+
C45.8,132.3,45.6,131.9,45.2,131.6z"/>
|
143 |
+
<path fill="#565656" d="M49.6,130.4v5.1l2.8-2.7h1.4l-2.5,2.3L54,139h-1.3l-2.1-3.2l-1,0.9v2.4h-1v-8.6H49.6z"/>
|
144 |
+
<path fill="#565656" d="M54.8,131.7v-1.2h1v1.2H54.8z M55.9,132.8v6.2h-1v-6.2H55.9z"/>
|
145 |
+
<path fill="#565656" d="M58.5,130.4v8.6h-1v-8.6H58.5z"/>
|
146 |
+
<path fill="#565656" d="M61.2,130.4v8.6h-1v-8.6H61.2z"/>
|
147 |
+
<path fill="#565656" d="M63.5,137.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
148 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
149 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
150 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
151 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
152 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
153 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
154 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
155 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
156 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C63.4,137.3,63.4,137.5,63.5,137.6z"/>
|
157 |
+
<path fill="#565656" d="M73.2,138.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
158 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
159 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
160 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
161 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C73.9,137.7,73.6,138.3,73.2,138.6z M72.9,134.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
162 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
163 |
+
C73.1,135.1,73,134.8,72.9,134.6z"/>
|
164 |
+
<path fill="#565656" d="M77.9,132.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0h0.5v0.9
|
165 |
+
h-0.8c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9
|
166 |
+
H77.9z"/>
|
167 |
+
<path fill="#565656" d="M79.8,137.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
168 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
169 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
170 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
171 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
172 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
173 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
174 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
175 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
176 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C79.6,137.3,79.7,137.5,79.8,137.6z"/>
|
177 |
+
<path fill="#565656" d="M88.2,134.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7s0.8-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3
|
178 |
+
s0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
179 |
+
c-0.3,0.3-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1
|
180 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S88.1,135,88.2,134.6z M89.2,136.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
181 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.3,0,0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7s0.1-0.6,0.1-1s0-0.7-0.1-1
|
182 |
+
s-0.2-0.5-0.4-0.7c-0.2-0.2-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
|
183 |
+
c-0.2,0.2-0.3,0.4-0.4,0.7c-0.1,0.3-0.1,0.6-0.1,1S89.1,136.6,89.2,136.9z"/>
|
184 |
+
<path fill="#565656" d="M96.1,132.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
185 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1v2.8h-1v-6.2H96.1z"/>
|
186 |
+
<path fill="#565656" d="M106.3,130.4l3.3,8.6h-1.3l-0.9-2.6h-3.6l-1,2.6h-1.2l3.3-8.6H106.3z M107.1,135.5l-1.4-4h0l-1.5,4H107.1z
|
187 |
+
"/>
|
188 |
+
<path fill="#565656" d="M111.2,132.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
189 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1v2.8h-1v-6.2H111.2z"/>
|
190 |
+
<path fill="#565656" d="M118.5,138.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
191 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.7-0.2,1.2-0.2
|
192 |
+
c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6c0,0.3,0,0.5,0.1,0.8
|
193 |
+
c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3s0.5-0.5,0.5-0.9h1
|
194 |
+
C119.3,137.7,119,138.3,118.5,138.6z M118.2,134.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1
|
195 |
+
c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4c-0.2,0.2-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
196 |
+
C118.4,135.1,118.3,134.8,118.2,134.6z"/>
|
197 |
+
<path fill="#565656" d="M126,139c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
198 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
199 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5s0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
200 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
201 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
202 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
203 |
+
s0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V139z M124.4,135.8c-0.1,0.1-0.3,0.2-0.5,0.2
|
204 |
+
c-0.2,0-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2s-0.3,0.2-0.4,0.3c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4
|
205 |
+
c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1c0.2-0.1,0.4-0.2,0.6-0.3
|
206 |
+
c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V135.8z"/>
|
207 |
+
<path fill="#565656" d="M130.2,134.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.8-0.3,1.3-0.3
|
208 |
+
c0.5,0,0.9,0.1,1.3,0.3s0.7,0.4,0.9,0.7s0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1
|
209 |
+
s-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1
|
210 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3S130.1,135,130.2,134.6z M131.2,136.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5
|
211 |
+
c0.2,0.1,0.5,0.2,0.8,0.2c0.3,0,0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.4,0.4-0.7c0.1-0.3,0.1-0.6,0.1-1
|
212 |
+
s0-0.7-0.1-1c-0.1-0.3-0.2-0.5-0.4-0.7c-0.2-0.2-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.8,0.2
|
213 |
+
c-0.2,0.1-0.4,0.3-0.6,0.5s-0.3,0.4-0.4,0.7s-0.2,0.6-0.2,1S131.1,136.6,131.2,136.9z"/>
|
214 |
+
<path fill="#565656" d="M136.6,133.7v-0.9h1v-0.9c0-0.5,0.1-0.9,0.4-1.1c0.3-0.3,0.7-0.4,1.3-0.4c0.1,0,0.2,0,0.3,0
|
215 |
+
c0.1,0,0.2,0,0.3,0.1v0.9c-0.1,0-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0c-0.2,0-0.4,0-0.6,0.1s-0.2,0.3-0.2,0.6v0.9h1.2v0.9h-1.2v5.3
|
216 |
+
h-1v-5.3H136.6z"/>
|
217 |
+
<path fill="#565656" d="M145.5,130.4v8.6h-1.1v-8.6H145.5z"/>
|
218 |
+
<path fill="#565656" d="M148.2,132.8v1h0c0.4-0.8,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5
|
219 |
+
c0.2,0.2,0.3,0.4,0.4,0.7s0.1,0.6,0.1,0.9v4.1h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.3-0.9-0.3c-0.3,0-0.6,0-0.8,0.1
|
220 |
+
c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8v3.5h-1v-6.2H148.2z"/>
|
221 |
+
<path fill="#565656" d="M156.5,132.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2s0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.4,0h0.5v0.9
|
222 |
+
h-0.8c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2s-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9H156.5z"/>
|
223 |
+
<path fill="#565656" d="M162.1,138.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
224 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.7-0.2,1.2-0.2
|
225 |
+
c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6c0,0.3,0,0.5,0.1,0.8
|
226 |
+
c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3c0.3-0.2,0.5-0.5,0.5-0.9h1
|
227 |
+
C162.8,137.7,162.5,138.3,162.1,138.6z M161.8,134.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1
|
228 |
+
c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6C162,135.1,161.9,134.8,161.8,134.6z"/>
|
229 |
+
<path fill="#565656" d="M165,132.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
230 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1v2.8h-1v-6.2H165z"/>
|
231 |
+
<path fill="#565656" d="M172.3,138.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
232 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
233 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
234 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
235 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C173,137.7,172.7,138.3,172.3,138.6z M172,134.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
236 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
237 |
+
C172.2,135.1,172.1,134.8,172,134.6z"/>
|
238 |
+
<path fill="#565656" d="M175.1,137.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
239 |
+
s0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.5-0.2-0.8-0.3s-0.6-0.2-1-0.2
|
240 |
+
c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.5-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8c0.1-0.2,0.3-0.4,0.5-0.5
|
241 |
+
c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3c0.2,0.1,0.4,0.3,0.5,0.6
|
242 |
+
c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2c-0.2,0-0.3-0.1-0.5-0.1
|
243 |
+
c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2s-0.1,0.2-0.1,0.4c0,0.2,0.1,0.3,0.2,0.4
|
244 |
+
c0.1,0.1,0.3,0.2,0.5,0.3s0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5
|
245 |
+
c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6c-0.3,0.2-0.5,0.3-0.9,0.3c-0.3,0.1-0.6,0.1-0.9,0.1
|
246 |
+
c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4s-0.4-0.4-0.6-0.6c-0.1-0.3-0.2-0.6-0.2-1h1C175,137.3,175,137.5,175.1,137.6z"/>
|
247 |
+
<path fill="#565656" d="M183,132.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2s0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.4,0h0.5v0.9
|
248 |
+
h-0.8c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2s-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9H183z"/>
|
249 |
+
<path fill="#565656" d="M184.9,137.6c0.1,0.2,0.2,0.3,0.4,0.4s0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
250 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3c0.1-0.1,0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.5-0.2-0.8-0.3
|
251 |
+
c-0.3-0.1-0.6-0.2-1-0.2s-0.7-0.2-1-0.3s-0.5-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
252 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
253 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
254 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2s-0.1,0.2-0.1,0.4
|
255 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
256 |
+
s0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
257 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4s-0.4-0.4-0.6-0.6
|
258 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C184.7,137.3,184.8,137.5,184.9,137.6z"/>
|
259 |
+
</g>
|
260 |
+
<g enable-background="new ">
|
261 |
+
<path fill="#565656" d="M142.1,42.4V50h4.5v1h-5.7v-8.6H142.1z"/>
|
262 |
+
<path fill="#565656" d="M152.9,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
263 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
264 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
265 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
266 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
267 |
+
s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1s0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5c0.1,0.2,0.2,0.5,0.2,0.9
|
268 |
+
v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51z M151.3,47.8c-0.1,0.1-0.3,0.2-0.5,0.2
|
269 |
+
c-0.2,0-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.4-0.2,0.6
|
270 |
+
c0,0.2,0,0.3,0.1,0.4c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
271 |
+
c0.2-0.1,0.4-0.2,0.6-0.3s0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V47.8z"/>
|
272 |
+
<path fill="#565656" d="M154.7,49.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
273 |
+
s0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3c0.1-0.1,0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
274 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
275 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.6-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
276 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3s-0.3-0.1-0.5-0.2
|
277 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
278 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
279 |
+
s0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9s-0.4,0.4-0.6,0.6
|
280 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
281 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C154.5,49.3,154.6,49.5,154.7,49.6z"/>
|
282 |
+
<path fill="#565656" d="M162.5,44.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3c0,0.1,0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0h0.5
|
283 |
+
V51h-0.8c-0.3,0-0.5,0-0.7-0.1c-0.2,0-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1
|
284 |
+
v-1.9h1v1.9H162.5z"/>
|
285 |
+
<path fill="#565656" d="M168.4,42.4l4.5,6.9h0v-6.9h1.1V51h-1.2l-4.5-6.9h0V51h-1.1v-8.6H168.4z"/>
|
286 |
+
<path fill="#565656" d="M181.2,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
287 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
288 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5s0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
289 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
290 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
291 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
292 |
+
s0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51z M179.5,47.8c-0.1,0.1-0.3,0.2-0.5,0.2
|
293 |
+
c-0.2,0-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2s-0.3,0.2-0.4,0.3c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4
|
294 |
+
c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1c0.2-0.1,0.4-0.2,0.6-0.3
|
295 |
+
c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V47.8z"/>
|
296 |
+
<path fill="#565656" d="M183.1,44.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
297 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
298 |
+
c0.1,0.2,0.1,0.5,0.1,0.8V51h-1v-4.1c0-0.2,0-0.4,0-0.5s-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
299 |
+
c-0.5,0-0.9,0.1-1.2,0.4s-0.4,0.7-0.4,1.2V51h-1v-4.1c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4s-0.2-0.2-0.4-0.3
|
300 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4c-0.1,0.2-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5
|
301 |
+
V51h-1v-6.2H183.1z"/>
|
302 |
+
<path fill="#565656" d="M196.7,50.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
303 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.7-0.2,1.2-0.2
|
304 |
+
c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6c0,0.3,0,0.5,0.1,0.8
|
305 |
+
c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3s0.5-0.5,0.5-0.9h1
|
306 |
+
C197.5,49.7,197.2,50.3,196.7,50.6z M196.5,46.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1
|
307 |
+
c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4c-0.2,0.2-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6C196.6,47.1,196.6,46.8,196.5,46.6
|
308 |
+
z"/>
|
309 |
+
</g>
|
310 |
+
<path id="Rectangle_919" fill="#A08DC2" d="M85,238h95c2.8,0,5,2.2,5,5v17c0,2.8-2.2,5-5,5H85c-2.8,0-5-2.2-5-5v-17
|
311 |
+
C80,240.2,82.2,238,85,238z"/>
|
312 |
+
<g enable-background="new ">
|
313 |
+
<path fill="#FFFFFF" d="M106.6,248.9h1.3l2.8,7.1h-1.3l-0.7-1.9h-2.9l-0.7,1.9h-1.3L106.6,248.9z M106.1,253.2h2.2l-1.1-3.1h0
|
314 |
+
L106.1,253.2z"/>
|
315 |
+
<path fill="#FFFFFF" d="M111.3,248.9h3.2c0.5,0,0.9,0.1,1.2,0.2s0.6,0.3,0.7,0.5c0.2,0.2,0.3,0.5,0.4,0.7c0.1,0.3,0.1,0.5,0.1,0.7
|
316 |
+
c0,0.2,0,0.5-0.1,0.7s-0.2,0.5-0.4,0.7c-0.2,0.2-0.4,0.4-0.7,0.5s-0.7,0.2-1.2,0.2h-1.9v2.7h-1.2V248.9z M112.6,252.2h1.8
|
317 |
+
c0.1,0,0.3,0,0.4-0.1c0.1,0,0.3-0.1,0.4-0.2c0.1-0.1,0.2-0.2,0.3-0.4c0.1-0.2,0.1-0.3,0.1-0.6c0-0.2,0-0.4-0.1-0.6
|
318 |
+
s-0.2-0.3-0.3-0.4c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.5,0h-1.9V252.2z"/>
|
319 |
+
<path fill="#FFFFFF" d="M118,248.9h3.2c0.5,0,0.9,0.1,1.2,0.2s0.6,0.3,0.7,0.5c0.2,0.2,0.3,0.5,0.4,0.7c0.1,0.3,0.1,0.5,0.1,0.7
|
320 |
+
c0,0.2,0,0.5-0.1,0.7s-0.2,0.5-0.4,0.7c-0.2,0.2-0.4,0.4-0.7,0.5s-0.7,0.2-1.2,0.2h-1.9v2.7H118V248.9z M119.3,252.2h1.8
|
321 |
+
c0.1,0,0.3,0,0.4-0.1c0.1,0,0.3-0.1,0.4-0.2c0.1-0.1,0.2-0.2,0.3-0.4c0.1-0.2,0.1-0.3,0.1-0.6c0-0.2,0-0.4-0.1-0.6
|
322 |
+
s-0.2-0.3-0.3-0.4c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.3,0-0.5,0h-1.9V252.2z"/>
|
323 |
+
<path fill="#FFFFFF" d="M124.7,248.9h1.2v6.1h3.6v1.1h-4.9V248.9z"/>
|
324 |
+
<path fill="#FFFFFF" d="M131.2,253.2l-2.7-4.3h1.5l1.9,3.2l1.9-3.2h1.4l-2.7,4.3v2.8h-1.2V253.2z"/>
|
325 |
+
<path fill="#FFFFFF" d="M138.5,248.9h1.3l3.3,5.3h0v-5.3h1.2v7.1H143l-3.2-5.2h0v5.2h-1.2V248.9z"/>
|
326 |
+
<path fill="#FFFFFF" d="M148.8,248.7c0.5,0,1,0.1,1.4,0.3c0.4,0.2,0.8,0.5,1.1,0.8c0.3,0.3,0.5,0.7,0.7,1.2
|
327 |
+
c0.2,0.5,0.2,0.9,0.2,1.4c0,0.5-0.1,1-0.2,1.5c-0.2,0.5-0.4,0.9-0.7,1.2c-0.3,0.3-0.7,0.6-1.1,0.8c-0.4,0.2-0.9,0.3-1.4,0.3
|
328 |
+
s-1-0.1-1.4-0.3c-0.4-0.2-0.8-0.5-1.1-0.8c-0.3-0.3-0.5-0.7-0.7-1.2c-0.2-0.5-0.2-0.9-0.2-1.5c0-0.5,0.1-1,0.2-1.4
|
329 |
+
c0.2-0.5,0.4-0.9,0.7-1.2c0.3-0.3,0.7-0.6,1.1-0.8C147.8,248.8,148.3,248.7,148.8,248.7z M148.8,249.7c-0.4,0-0.7,0.1-1,0.2
|
330 |
+
c-0.3,0.2-0.5,0.4-0.7,0.6c-0.2,0.3-0.3,0.5-0.4,0.9c-0.1,0.3-0.1,0.7-0.1,1s0,0.7,0.1,1c0.1,0.3,0.2,0.6,0.4,0.9
|
331 |
+
c0.2,0.3,0.4,0.5,0.7,0.6c0.3,0.2,0.6,0.2,1,0.2s0.7-0.1,1-0.2c0.3-0.2,0.5-0.4,0.7-0.6c0.2-0.3,0.3-0.5,0.4-0.9
|
332 |
+
c0.1-0.3,0.1-0.7,0.1-1s0-0.7-0.1-1c-0.1-0.3-0.2-0.6-0.4-0.9c-0.2-0.3-0.4-0.5-0.7-0.6C149.5,249.8,149.2,249.7,148.8,249.7z"/>
|
333 |
+
<path fill="#FFFFFF" d="M152.7,248.9h1.3l1.3,5.5h0l1.4-5.5h1.3l1.4,5.5h0l1.3-5.5h1.3l-2,7.1h-1.3l-1.4-5.5h0l-1.5,5.5h-1.3
|
334 |
+
L152.7,248.9z"/>
|
335 |
+
</g>
|
336 |
+
</g>
|
337 |
+
</svg>
|
templates/22/preview-thumb.svg
ADDED
@@ -0,0 +1,463 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 265 300" enable-background="new 0 0 265 300" xml:space="preserve">
|
5 |
+
<path id="Rectangle_921" fill="#FFFFFF" d="M5,0h255c2.8,0,5,2.2,5,5v290c0,2.8-2.2,5-5,5H5c-2.8,0-5-2.2-5-5V5C0,2.2,2.2,0,5,0z"/>
|
6 |
+
<path id="Rectangle_922" fill="#E5E9EA" d="M42.5,59h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
7 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,60.1,41.1,59,42.5,59z"/>
|
8 |
+
<path id="Rectangle_923" fill="#E5E9EA" d="M42.5,108h180c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-180
|
9 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,109.1,41.1,108,42.5,108z"/>
|
10 |
+
<path id="Rectangle_924" fill="#E5E9EA" d="M142.5,59h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
11 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C140,60.1,141.1,59,142.5,59z"/>
|
12 |
+
<path fill="#565656" d="M46.6,42.4v1h-4.5v2.7H46v1h-3.9V51H41v-8.6H46.6z"/>
|
13 |
+
<path fill="#565656" d="M47.7,43.7v-1.2h1v1.2H47.7z M48.7,44.8V51h-1v-6.2H48.7z"/>
|
14 |
+
<path fill="#565656" d="M51.2,44.8v1.3l0,0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
15 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5s-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1V51h-1v-6.2H51.2z"/>
|
16 |
+
<path fill="#565656" d="M55.1,49.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2s0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
17 |
+
s0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6s-0.4-0.2-0.8-0.3c-0.3-0.1-0.6-0.2-1-0.2
|
18 |
+
c-0.4-0.1-0.7-0.2-1-0.3s-0.6-0.3-0.8-0.5s-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8c0.1-0.2,0.3-0.4,0.5-0.5s0.5-0.2,0.7-0.3
|
19 |
+
c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1s0.6,0.2,0.8,0.3s0.4,0.3,0.5,0.6s0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5
|
20 |
+
c-0.1-0.1-0.2-0.2-0.3-0.3s-0.3-0.1-0.5-0.2c-0.2,0-0.3-0.1-0.5-0.1s-0.3,0-0.5,0s-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2
|
21 |
+
c-0.1,0.1-0.1,0.2-0.1,0.4s0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3s0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
22 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
23 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1s-0.6-0.2-0.8-0.4s-0.4-0.4-0.6-0.6c-0.1-0.3-0.2-0.6-0.2-1h1
|
24 |
+
C54.9,49.3,55,49.5,55.1,49.6z"/>
|
25 |
+
<path fill="#565656" d="M63,44.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0H63V51h-0.8
|
26 |
+
c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9
|
27 |
+
C61.6,44.8,63,44.8,63,44.8z"/>
|
28 |
+
<path fill="#565656" d="M68.8,42.4l4.5,6.9l0,0v-6.9h1.1V51h-1.2l-4.5-6.9l0,0V51h-1.1v-8.6H68.8z"/>
|
29 |
+
<path fill="#565656" d="M81.6,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7c-0.3,0.3-0.6,0.6-1,0.7
|
30 |
+
c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1s-0.5-0.2-0.7-0.3s-0.3-0.3-0.4-0.5s-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9
|
31 |
+
c0.1-0.2,0.3-0.4,0.5-0.5s0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2
|
32 |
+
c0.1-0.1,0.2-0.2,0.2-0.4s0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2
|
33 |
+
S77,46.3,77,46.7h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1
|
34 |
+
c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5s0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5s0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1
|
35 |
+
L81.6,51L81.6,51z M79.9,47.8c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2
|
36 |
+
c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2
|
37 |
+
c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1c0.2-0.1,0.4-0.2,0.6-0.3s0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5L79.9,47.8L79.9,47.8z"/>
|
38 |
+
<path fill="#565656" d="M83.5,44.8v0.9l0,0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
39 |
+
c0.2-0.3,0.5-0.6,0.8-0.8s0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
40 |
+
C91,45.7,91,46,91,46.3V51h-1v-4.1c0-0.2,0-0.4,0-0.5s0.1-0.3,0-0.4s-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1c-0.5,0-0.9,0.1-1.2,0.4
|
41 |
+
s-0.4,0.7-0.4,1.2V51h-1v-4.1c0-0.2,0-0.4-0.1-0.6c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3c-0.1-0.1-0.3-0.1-0.6-0.1
|
42 |
+
c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4s-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5V51h-1v-6.2H83.5z"/>
|
43 |
+
<path fill="#565656" d="M97.2,50.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7c-0.2-0.3-0.4-0.6-0.6-1
|
44 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3s0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3
|
45 |
+
s0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6
|
46 |
+
c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2s0.8-0.1,1.1-0.3c0.3-0.2,0.5-0.5,0.5-0.9h1C97.9,49.7,97.6,50.3,97.2,50.6z M96.9,46.6
|
47 |
+
c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1S94.1,45.8,94,46
|
48 |
+
s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7H97C97.1,47.1,97,46.8,96.9,46.6z"/>
|
49 |
+
<path fill="#565656" d="M46.9,91.4v1h-4.8v2.7h4.5v1h-4.5v3h4.8v1h-6v-8.6L46.9,91.4L46.9,91.4z"/>
|
50 |
+
<path fill="#565656" d="M49.1,93.8v0.9l0,0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
51 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
52 |
+
c0.1,0.2,0.1,0.5,0.1,0.8v4.5h-1v-4.1c0-0.2,0-0.4,0-0.5s-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
53 |
+
c-0.5,0-0.9,0.1-1.2,0.4S53,95.7,53,96.1v3.9h-1v-4.1c0-0.2,0-0.4-0.1-0.6c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3
|
54 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1s-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4s-0.2,0.3-0.3,0.5S49,95.9,49,96.1v3.9h-1v-6.2H49.1z"/>
|
55 |
+
<path fill="#565656" d="M63.8,100c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7c-0.3,0.3-0.6,0.6-1,0.7
|
56 |
+
s-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1s-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5C58.1,99,58,98.7,58,98.4c0-0.4,0.1-0.6,0.2-0.9
|
57 |
+
c0.1-0.2,0.3-0.4,0.5-0.5s0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2s0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2
|
58 |
+
c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5S62.1,95,62,94.9c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2
|
59 |
+
s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1
|
60 |
+
c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5s0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5s0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1v0.7
|
61 |
+
H63.8z M62.2,96.8c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
62 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6s0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
63 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5C62.2,97.8,62.2,96.8,62.2,96.8z"/>
|
64 |
+
<path fill="#565656" d="M64.8,92.7v-1.2h1v1.2H64.8z M65.9,93.8v6.2h-1v-6.2H65.9z"/>
|
65 |
+
<path fill="#565656" d="M68.5,91.4v8.6h-1v-8.6H68.5z"/>
|
66 |
+
<path fill="#565656" d="M47.5,149l-2-7.2l0,0l-2,7.2h-1.2l-2.2-8.6h1.2l1.7,7.1l0,0l1.9-7.1h1.2l1.9,7.1l0,0l1.7-7.1H51l-2.3,8.6
|
67 |
+
H47.5z"/>
|
68 |
+
<path fill="#565656" d="M52.9,140.4v3.3l0,0c0.1-0.2,0.2-0.4,0.3-0.5s0.3-0.2,0.5-0.3s0.4-0.1,0.6-0.2c0.2,0,0.4-0.1,0.6-0.1
|
69 |
+
c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5s0.3,0.4,0.4,0.7c0.1,0.3,0.1,0.6,0.1,0.9v4.1h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9
|
70 |
+
s-0.5-0.3-0.9-0.3c-0.3,0-0.6,0-0.8,0.1s-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8v3.5h-1v-8.6H52.9z"/>
|
71 |
+
<path fill="#565656" d="M64,149c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7c-0.3,0.3-0.6,0.6-1,0.7
|
72 |
+
c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1s-0.5-0.2-0.7-0.3s-0.3-0.3-0.4-0.5c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9
|
73 |
+
c0.1-0.2,0.3-0.4,0.5-0.5s0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2
|
74 |
+
c0.1-0.1,0.2-0.2,0.2-0.4s0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3s-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2
|
75 |
+
s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1
|
76 |
+
c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5s0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5s0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1v0.6H64
|
77 |
+
z M62.4,145.8c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
78 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3s0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
79 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5C62.4,146.8,62.4,145.8,62.4,145.8z"/>
|
80 |
+
<path fill="#565656" d="M67.6,142.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0h0.5v0.9
|
81 |
+
h-0.8c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1V141h1v1.9h1.4
|
82 |
+
V142.8z"/>
|
83 |
+
<path fill="#565656" d="M76.6,149v-0.8l0,0c-0.2,0.3-0.4,0.6-0.8,0.7c-0.4,0.2-0.8,0.2-1.2,0.2c-0.5,0-0.9-0.1-1.3-0.3
|
84 |
+
s-0.7-0.4-0.9-0.7s-0.4-0.6-0.5-1s-0.2-0.8-0.2-1.2s0.1-0.9,0.2-1.2c0.1-0.4,0.3-0.7,0.5-1s0.5-0.5,0.9-0.7s0.8-0.3,1.2-0.3
|
85 |
+
c0.2,0,0.3,0,0.5,0s0.4,0.1,0.6,0.2s0.4,0.2,0.5,0.3s0.3,0.3,0.4,0.5l0,0v-3.2h1v8.6h-0.9V149z M73,146.8c0.1,0.3,0.2,0.5,0.3,0.7
|
86 |
+
c0.2,0.2,0.4,0.4,0.6,0.5s0.5,0.2,0.9,0.2c0.3,0,0.6-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5s0.3-0.5,0.3-0.8c0.1-0.3,0.1-0.6,0.1-0.9
|
87 |
+
c0-0.3,0-0.6-0.1-0.9c-0.1-0.3-0.2-0.5-0.3-0.8c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2
|
88 |
+
c-0.2,0.1-0.4,0.3-0.6,0.5c-0.1,0.2-0.2,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,0.9C72.9,146.2,72.9,146.5,73,146.8z"/>
|
89 |
+
<path fill="#565656" d="M79.1,144.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7s0.8-0.3,1.3-0.3s0.9,0.1,1.3,0.3
|
90 |
+
s0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1c-0.3,0.3-0.6,0.5-0.9,0.7
|
91 |
+
s-0.8,0.2-1.3,0.2s-0.9-0.1-1.3-0.2s-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3S79,145,79.1,144.6z
|
92 |
+
M80.1,146.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5c0.2,0.1,0.5,0.2,0.8,0.2s0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5
|
93 |
+
s0.3-0.4,0.4-0.7s0.1-0.6,0.1-1s0-0.7-0.1-1s-0.2-0.5-0.4-0.7c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.8-0.2s-0.5,0.1-0.8,0.2
|
94 |
+
c-0.2,0.1-0.4,0.3-0.6,0.5s-0.3,0.4-0.4,0.7s-0.1,0.6-0.1,1S80,146.6,80.1,146.9z"/>
|
95 |
+
<path fill="#565656" d="M91.9,149.8c-0.1,0.3-0.2,0.6-0.4,0.8c-0.1,0.2-0.2,0.4-0.4,0.5c-0.1,0.1-0.3,0.2-0.5,0.3s-0.4,0.1-0.6,0.1
|
96 |
+
c-0.1,0-0.2,0-0.4,0s-0.2,0-0.3-0.1v-0.9c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3,0c0.2,0,0.4,0,0.5-0.2c0.1-0.1,0.2-0.2,0.3-0.4
|
97 |
+
l0.4-1l-2.5-6.2h1.2l1.8,5.1l0,0l1.7-5.1h1.1L91.9,149.8z"/>
|
98 |
+
<path fill="#565656" d="M95.3,144.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7s0.8-0.3,1.3-0.3s0.9,0.1,1.3,0.3
|
99 |
+
s0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1c-0.3,0.3-0.6,0.5-0.9,0.7
|
100 |
+
s-0.8,0.2-1.3,0.2s-0.9-0.1-1.3-0.2s-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3S95.2,145,95.3,144.6z
|
101 |
+
M96.3,146.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5c0.2,0.1,0.5,0.2,0.8,0.2s0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5
|
102 |
+
s0.3-0.4,0.4-0.7s0.1-0.6,0.1-1s0-0.7-0.1-1s-0.2-0.5-0.4-0.7c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.8-0.2s-0.5,0.1-0.8,0.2
|
103 |
+
c-0.2,0.1-0.4,0.3-0.6,0.5s-0.3,0.4-0.4,0.7s-0.1,0.6-0.1,1S96.2,146.6,96.3,146.9z"/>
|
104 |
+
<path fill="#565656" d="M106.5,149v-1l0,0c-0.2,0.4-0.5,0.7-0.8,0.8c-0.3,0.2-0.7,0.3-1.2,0.3c-0.4,0-0.7-0.1-1-0.2
|
105 |
+
c-0.3-0.1-0.5-0.3-0.7-0.5s-0.3-0.4-0.4-0.7s-0.1-0.6-0.1-0.9v-4.1h1v4.2c0,0.4,0.1,0.7,0.3,0.9c0.2,0.2,0.5,0.3,0.9,0.3
|
106 |
+
c0.3,0,0.6,0,0.8-0.1c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.4,0.3-0.6c0.1-0.2,0.1-0.5,0.1-0.8v-3.5h1v6.2h-0.8V149z"/>
|
107 |
+
<path fill="#565656" d="M115,142.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0h0.5v0.9h-0.8
|
108 |
+
c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1V141h1v1.9h1.4V142.8
|
109 |
+
z"/>
|
110 |
+
<path fill="#565656" d="M117.1,140.4v3.3l0,0c0.1-0.2,0.2-0.4,0.3-0.5s0.3-0.2,0.5-0.3s0.4-0.1,0.6-0.2c0.2,0,0.4-0.1,0.6-0.1
|
111 |
+
c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5s0.3,0.4,0.4,0.7s0.1,0.6,0.1,0.9v4.1h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9
|
112 |
+
c-0.2-0.2-0.5-0.3-0.9-0.3c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4s-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8v3.5h-1v-8.6
|
113 |
+
H117.1z"/>
|
114 |
+
<path fill="#565656" d="M122.9,141.7v-1.2h1v1.2H122.9z M123.9,142.8v6.2h-1v-6.2H123.9z"/>
|
115 |
+
<path fill="#565656" d="M126.4,142.8v1l0,0c0.4-0.8,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5s0.3,0.4,0.4,0.7
|
116 |
+
c0.1,0.3,0.1,0.6,0.1,0.9v4.1h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9s-0.5-0.3-0.9-0.3c-0.3,0-0.6,0-0.8,0.1c-0.2,0.1-0.4,0.2-0.6,0.4
|
117 |
+
s-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8v3.5h-1v-6.2h0.8V142.8z"/>
|
118 |
+
<path fill="#565656" d="M133.2,140.4v5.1l2.8-2.7h1.4l-2.5,2.3l2.6,3.9h-1.3l-2.1-3.2l-1,0.9v2.4h-1v-8.6L133.2,140.4L133.2,140.4z"
|
119 |
+
/>
|
120 |
+
<path fill="#565656" d="M141.6,144.6c0.1-0.4,0.3-0.7,0.6-1s0.6-0.5,0.9-0.7s0.8-0.3,1.3-0.3s0.9,0.1,1.3,0.3s0.7,0.4,0.9,0.7
|
121 |
+
c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1s-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2
|
122 |
+
s-0.9-0.1-1.3-0.2s-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3S141.4,145,141.6,144.6z M142.6,146.9
|
123 |
+
c0.1,0.3,0.2,0.5,0.4,0.7s0.4,0.3,0.6,0.5c0.2,0.1,0.5,0.2,0.8,0.2s0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5
|
124 |
+
c0.2-0.2,0.3-0.4,0.4-0.7c0.1-0.3,0.1-0.6,0.1-1s0-0.7-0.1-1s-0.2-0.5-0.4-0.7s-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2
|
125 |
+
s-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5s-0.3,0.4-0.4,0.7s-0.1,0.6-0.1,1S142.5,146.6,142.6,146.9z"/>
|
126 |
+
<path fill="#565656" d="M148,143.7v-0.9h1v-0.9c0-0.5,0.1-0.9,0.4-1.1c0.3-0.3,0.7-0.4,1.3-0.4c0.1,0,0.2,0,0.3,0s0.2,0,0.3,0.1v0.9
|
127 |
+
c-0.1,0-0.2-0.1-0.3-0.1s-0.2,0-0.3,0c-0.2,0-0.4,0-0.6,0.1c-0.1,0.1-0.2,0.3-0.2,0.6v0.9h1.2v0.9H150v5.3h-1v-5.3h-1V143.7z"/>
|
128 |
+
<path fill="#565656" d="M158.1,142.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.4,0h0.5
|
129 |
+
v0.9h-0.8c-0.3,0-0.5,0-0.7-0.1c-0.2,0-0.3-0.1-0.5-0.2s-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1V141h1v1.9h1.4V142.8z
|
130 |
+
"/>
|
131 |
+
<path fill="#565656" d="M160.3,140.4v3.3l0,0c0.1-0.2,0.2-0.4,0.3-0.5s0.3-0.2,0.5-0.3s0.4-0.1,0.6-0.2s0.4-0.1,0.6-0.1
|
132 |
+
c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5s0.3,0.4,0.4,0.7c0.1,0.3,0.1,0.6,0.1,0.9v4.1h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9
|
133 |
+
s-0.5-0.3-0.9-0.3c-0.3,0-0.6,0-0.8,0.1s-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8v3.5h-1v-8.6H160.3z"/>
|
134 |
+
<path fill="#565656" d="M166,141.7v-1.2h1v1.2H166z M167,142.8v6.2h-1v-6.2H167z"/>
|
135 |
+
<path fill="#565656" d="M169.4,147.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2s0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
136 |
+
s0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3c0.1-0.1,0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6s-0.4-0.2-0.8-0.3c-0.3-0.1-0.6-0.2-1-0.2
|
137 |
+
c-0.4-0.1-0.7-0.2-1-0.3s-0.6-0.3-0.8-0.5s-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8c0.1-0.2,0.3-0.4,0.5-0.5s0.5-0.2,0.7-0.3
|
138 |
+
c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1s0.6,0.2,0.8,0.3s0.4,0.3,0.5,0.6s0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5
|
139 |
+
c-0.1-0.1-0.2-0.2-0.3-0.3s-0.3-0.1-0.5-0.2c-0.2,0-0.3-0.1-0.5-0.1s-0.3,0-0.5,0s-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2
|
140 |
+
s-0.1,0.2-0.1,0.4s0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3s0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
141 |
+
s0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9s-0.4,0.4-0.6,0.6
|
142 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3c-0.3,0.1-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1s-0.6-0.2-0.8-0.4s-0.4-0.4-0.6-0.6c-0.1-0.3-0.2-0.6-0.2-1
|
143 |
+
h1C169.2,147.3,169.3,147.5,169.4,147.6z"/>
|
144 |
+
<path fill="#565656" d="M174.7,142c0.1-0.4,0.3-0.7,0.5-0.9c0.2-0.3,0.5-0.5,0.9-0.6c0.3-0.1,0.7-0.2,1.1-0.2c0.4,0,0.7,0.1,1,0.2
|
145 |
+
c0.3,0.1,0.6,0.3,0.8,0.5s0.4,0.5,0.5,0.8s0.2,0.6,0.2,1c0,0.2,0,0.5-0.1,0.7s-0.1,0.4-0.2,0.5c-0.1,0.2-0.2,0.3-0.3,0.4
|
146 |
+
c-0.1,0.1-0.2,0.3-0.4,0.4c-0.1,0.1-0.3,0.2-0.4,0.4c-0.1,0.1-0.2,0.3-0.3,0.4c-0.1,0.1-0.2,0.3-0.2,0.5c-0.1,0.2-0.1,0.4-0.1,0.6
|
147 |
+
v0.5h-1v-0.6c0-0.3,0.1-0.6,0.2-0.9c0.1-0.2,0.2-0.4,0.4-0.6c0.2-0.2,0.3-0.4,0.5-0.5c0.2-0.2,0.3-0.3,0.5-0.5
|
148 |
+
c0.1-0.2,0.3-0.4,0.4-0.6s0.1-0.5,0.1-0.8c0-0.4-0.2-0.8-0.4-1s-0.6-0.4-1-0.4c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.4,0.2-0.5,0.4
|
149 |
+
s-0.2,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8h-1C174.5,142.7,174.5,142.3,174.7,142z M177.8,147.7v1.3h-1.3v-1.3H177.8z"/>
|
150 |
+
<path fill="#565656" d="M47.5,206l-2-7.2l0,0l-2,7.2h-1.2l-2.2-8.6h1.2l1.7,7.1l0,0l1.9-7.1h1.2l1.9,7.1l0,0l1.7-7.1H51l-2.3,8.6
|
151 |
+
H47.5z"/>
|
152 |
+
<path fill="#565656" d="M52.9,197.4v3.3l0,0c0.1-0.2,0.2-0.4,0.3-0.5s0.3-0.2,0.5-0.3s0.4-0.1,0.6-0.2c0.2,0,0.4-0.1,0.6-0.1
|
153 |
+
c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5s0.3,0.4,0.4,0.7c0.1,0.3,0.1,0.6,0.1,0.9v4.1h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9
|
154 |
+
s-0.5-0.3-0.9-0.3c-0.3,0-0.6,0-0.8,0.1s-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8v3.5h-1v-8.6H52.9z"/>
|
155 |
+
<path fill="#565656" d="M64,206c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7c-0.3,0.3-0.6,0.6-1,0.7
|
156 |
+
c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1s-0.5-0.2-0.7-0.3s-0.3-0.3-0.4-0.5c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9
|
157 |
+
c0.1-0.2,0.3-0.4,0.5-0.5s0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2
|
158 |
+
c0.1-0.1,0.2-0.2,0.2-0.4s0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3s-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2
|
159 |
+
s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1
|
160 |
+
c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5s0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5s0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1v0.6H64
|
161 |
+
z M62.4,202.8c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
162 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3s0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
163 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5C62.4,203.8,62.4,202.8,62.4,202.8z"/>
|
164 |
+
<path fill="#565656" d="M67.6,199.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0h0.5v0.9
|
165 |
+
h-0.8c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1V198h1v1.9h1.4
|
166 |
+
V199.8z"/>
|
167 |
+
<path fill="#565656" d="M77.2,206l-1.3-4.9l0,0l-1.2,4.9h-1.1l-2-6.2h1.1l1.4,5.1l0,0l1.2-5.1h1.1l1.3,5.1l0,0l1.4-5.1h1.1l-2,6.2
|
168 |
+
H77.2z"/>
|
169 |
+
<path fill="#565656" d="M81.1,201.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7s0.8-0.3,1.3-0.3s0.9,0.1,1.3,0.3
|
170 |
+
s0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1c-0.3,0.3-0.6,0.5-0.9,0.7
|
171 |
+
s-0.8,0.2-1.3,0.2s-0.9-0.1-1.3-0.2s-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3S80.9,202,81.1,201.6z
|
172 |
+
M82.1,203.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5c0.2,0.1,0.5,0.2,0.8,0.2s0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5
|
173 |
+
s0.3-0.4,0.4-0.7s0.1-0.6,0.1-1s0-0.7-0.1-1s-0.2-0.5-0.4-0.7c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.8-0.2s-0.5,0.1-0.8,0.2
|
174 |
+
c-0.2,0.1-0.4,0.3-0.6,0.5s-0.3,0.4-0.4,0.7s-0.1,0.6-0.1,1S82,203.6,82.1,203.9z"/>
|
175 |
+
<path fill="#565656" d="M92.3,206v-1l0,0c-0.2,0.4-0.5,0.7-0.8,0.8c-0.3,0.2-0.7,0.3-1.2,0.3c-0.4,0-0.7-0.1-1-0.2
|
176 |
+
c-0.3-0.1-0.5-0.3-0.7-0.5s-0.3-0.4-0.4-0.7s-0.1-0.6-0.1-0.9v-4.1h1v4.2c0,0.4,0.1,0.7,0.3,0.9c0.2,0.2,0.5,0.3,0.9,0.3
|
177 |
+
c0.3,0,0.6,0,0.8-0.1c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.4,0.3-0.6c0.1-0.2,0.1-0.5,0.1-0.8v-3.5h1v6.2h-0.8V206z"/>
|
178 |
+
<path fill="#565656" d="M95.8,197.4v8.6h-1v-8.6H95.8z"/>
|
179 |
+
<path fill="#565656" d="M102,206v-0.8l0,0c-0.2,0.3-0.4,0.6-0.8,0.7c-0.4,0.2-0.8,0.2-1.2,0.2c-0.5,0-0.9-0.1-1.3-0.3
|
180 |
+
s-0.7-0.4-0.9-0.7s-0.4-0.6-0.5-1s-0.2-0.8-0.2-1.2s0.1-0.9,0.2-1.2c0.1-0.4,0.3-0.7,0.5-1s0.5-0.5,0.9-0.7s0.8-0.3,1.2-0.3
|
181 |
+
c0.2,0,0.3,0,0.5,0s0.4,0.1,0.6,0.2s0.4,0.2,0.5,0.3s0.3,0.3,0.4,0.5l0,0v-3.2h1v8.6H102V206z M98.3,203.8c0.1,0.3,0.2,0.5,0.3,0.7
|
182 |
+
c0.2,0.2,0.4,0.4,0.6,0.5s0.5,0.2,0.9,0.2c0.3,0,0.6-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5s0.3-0.5,0.3-0.8c0.1-0.3,0.1-0.6,0.1-0.9
|
183 |
+
c0-0.3,0-0.6-0.1-0.9c-0.1-0.3-0.2-0.5-0.3-0.8c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2
|
184 |
+
c-0.2,0.1-0.4,0.3-0.6,0.5c-0.1,0.2-0.2,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,0.9C98.2,203.2,98.2,203.5,98.3,203.8z"/>
|
185 |
+
<path fill="#565656" d="M110.3,206.8c-0.1,0.3-0.2,0.6-0.4,0.8c-0.1,0.2-0.2,0.4-0.4,0.5c-0.1,0.1-0.3,0.2-0.5,0.3s-0.4,0.1-0.6,0.1
|
186 |
+
c-0.1,0-0.2,0-0.4,0s-0.2,0-0.3-0.1v-0.9c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3,0c0.2,0,0.4,0,0.5-0.2c0.1-0.1,0.2-0.2,0.3-0.4
|
187 |
+
l0.4-1l-2.5-6.2h1.2l1.8,5.1l0,0l1.7-5.1h1.1L110.3,206.8z"/>
|
188 |
+
<path fill="#565656" d="M113.7,201.6c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7s0.8-0.3,1.3-0.3s0.9,0.1,1.3,0.3
|
189 |
+
s0.7,0.4,0.9,0.7c0.3,0.3,0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1c-0.3,0.3-0.6,0.5-0.9,0.7
|
190 |
+
s-0.8,0.2-1.3,0.2s-0.9-0.1-1.3-0.2s-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3S113.6,202,113.7,201.6z
|
191 |
+
M114.8,203.9c0.1,0.3,0.2,0.5,0.4,0.7c0.2,0.2,0.4,0.3,0.6,0.5c0.2,0.1,0.5,0.2,0.8,0.2s0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5
|
192 |
+
s0.3-0.4,0.4-0.7s0.1-0.6,0.1-1s0-0.7-0.1-1s-0.2-0.5-0.4-0.7c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.8-0.2s-0.5,0.1-0.8,0.2
|
193 |
+
c-0.2,0.1-0.4,0.3-0.6,0.5s-0.3,0.4-0.4,0.7s-0.1,0.6-0.1,1S114.7,203.6,114.8,203.9z"/>
|
194 |
+
<path fill="#565656" d="M124.9,206v-1l0,0c-0.2,0.4-0.5,0.7-0.8,0.8c-0.3,0.2-0.7,0.3-1.2,0.3c-0.4,0-0.7-0.1-1-0.2
|
195 |
+
c-0.3-0.1-0.5-0.3-0.7-0.5s-0.3-0.4-0.4-0.7s-0.1-0.6-0.1-0.9v-4.1h1v4.2c0,0.4,0.1,0.7,0.3,0.9c0.2,0.2,0.5,0.3,0.9,0.3
|
196 |
+
c0.3,0,0.6,0,0.8-0.1c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.4,0.3-0.6c0.1-0.2,0.1-0.5,0.1-0.8v-3.5h1v6.2h-0.8V206z"/>
|
197 |
+
<path fill="#565656" d="M131.9,197.4v8.6h-1v-8.6H131.9z"/>
|
198 |
+
<path fill="#565656" d="M133.5,198.7v-1.2h1v1.2H133.5z M134.5,199.8v6.2h-1v-6.2H134.5z"/>
|
199 |
+
<path fill="#565656" d="M137.2,197.4v5.1l2.8-2.7h1.4l-2.5,2.3l2.6,3.9h-1.3l-2.1-3.2l-1,0.9v2.4h-1v-8.6L137.2,197.4L137.2,197.4z"
|
200 |
+
/>
|
201 |
+
<path fill="#565656" d="M146.7,205.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
202 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3s0.1-0.9,0.2-1.3c0.1-0.4,0.3-0.7,0.6-1s0.6-0.5,0.9-0.7c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3
|
203 |
+
s0.7,0.5,0.9,0.9s0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6
|
204 |
+
c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2s0.8-0.1,1.1-0.3s0.5-0.5,0.5-0.9h1C147.5,204.7,147.2,205.3,146.7,205.6z M146.5,201.6
|
205 |
+
c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1s-0.5,0-0.7,0.1s-0.4,0.2-0.5,0.4
|
206 |
+
c-0.2,0.2-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6C146.6,202.1,146.6,201.8,146.5,201.6z"/>
|
207 |
+
<path fill="#565656" d="M154.8,199.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2s0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.4,0h0.5v0.9
|
208 |
+
H154c-0.3,0-0.5,0-0.7-0.1c-0.2,0-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1V198h1v1.9h1.4
|
209 |
+
V199.8z"/>
|
210 |
+
<path fill="#565656" d="M155.8,201.6c0.1-0.4,0.3-0.7,0.6-1s0.6-0.5,0.9-0.7s0.8-0.3,1.3-0.3s0.9,0.1,1.3,0.3s0.7,0.4,0.9,0.7
|
211 |
+
s0.4,0.6,0.6,1c0.1,0.4,0.2,0.8,0.2,1.3s-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.6,1s-0.6,0.5-0.9,0.7s-0.8,0.2-1.3,0.2
|
212 |
+
s-0.9-0.1-1.3-0.2s-0.7-0.4-0.9-0.7c-0.3-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3S155.6,202,155.8,201.6z M156.8,203.9
|
213 |
+
c0.1,0.3,0.2,0.5,0.4,0.7s0.4,0.3,0.6,0.5c0.2,0.1,0.5,0.2,0.8,0.2s0.5-0.1,0.8-0.2c0.2-0.1,0.4-0.3,0.6-0.5
|
214 |
+
c0.2-0.2,0.3-0.4,0.4-0.7c0.1-0.3,0.2-0.6,0.2-1s0-0.7-0.2-1c-0.1-0.3-0.2-0.5-0.4-0.7s-0.4-0.4-0.6-0.5c-0.2-0.1-0.5-0.2-0.8-0.2
|
215 |
+
s-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.6,0.5c-0.2,0.2-0.3,0.4-0.4,0.7c-0.1,0.3-0.2,0.6-0.2,1S156.7,203.6,156.8,203.9z"/>
|
216 |
+
<path fill="#565656" d="M166.9,204.6c0.1,0.2,0.2,0.3,0.4,0.4s0.3,0.2,0.5,0.2s0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0s0.3-0.1,0.5-0.1
|
217 |
+
c0.1-0.1,0.3-0.2,0.4-0.3c0.1-0.1,0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6s-0.5-0.2-0.8-0.3s-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3
|
218 |
+
s-0.5-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8c0.1-0.2,0.3-0.4,0.5-0.5s0.5-0.2,0.7-0.3
|
219 |
+
c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1s0.6,0.2,0.8,0.3s0.4,0.3,0.5,0.6s0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5
|
220 |
+
c-0.1-0.1-0.2-0.2-0.3-0.3s-0.3-0.1-0.5-0.2c-0.2,0-0.3-0.1-0.5-0.1s-0.3,0-0.5,0s-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2
|
221 |
+
c-0.1,0.1-0.1,0.2-0.1,0.4s0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3s0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
222 |
+
s0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.5,0.5s0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
223 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3c-0.3,0.1-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1s-0.6-0.2-0.8-0.4s-0.4-0.4-0.6-0.6c-0.1-0.3-0.2-0.6-0.2-1
|
224 |
+
h1C166.7,204.3,166.8,204.5,166.9,204.6z"/>
|
225 |
+
<path fill="#565656" d="M173.1,197.4v3.3l0,0c0.1-0.2,0.2-0.4,0.3-0.5s0.3-0.2,0.5-0.3s0.4-0.1,0.6-0.2c0.2,0,0.4-0.1,0.6-0.1
|
226 |
+
c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5s0.3,0.4,0.4,0.7s0.1,0.6,0.1,0.9v4.1h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9s-0.5-0.3-0.9-0.3
|
227 |
+
c-0.3,0-0.6,0-0.8,0.1s-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8v3.5h-1v-8.6H173.1z"/>
|
228 |
+
<path fill="#565656" d="M184.3,206c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7c-0.3,0.3-0.6,0.6-1,0.7
|
229 |
+
c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1s-0.5-0.2-0.7-0.3s-0.3-0.3-0.4-0.5s-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9
|
230 |
+
c0.1-0.2,0.3-0.4,0.5-0.5s0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1c0.2-0.1,0.3-0.1,0.5-0.2
|
231 |
+
c0.1-0.1,0.2-0.2,0.2-0.4s0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3s-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2
|
232 |
+
s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1c0.1-0.3,0.3-0.5,0.6-0.6c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1
|
233 |
+
c0.3,0,0.6,0,0.8,0.1s0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5s0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5s0.1,0.2,0.3,0.2
|
234 |
+
c0.1,0,0.2,0,0.3-0.1v0.6H184.3z M182.6,202.8c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2
|
235 |
+
c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4c0.1,0.1,0.2,0.2,0.3,0.3s0.2,0.1,0.4,0.2
|
236 |
+
c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5c0.1-0.2,0.1-0.3,0.1-0.5L182.6,202.8
|
237 |
+
L182.6,202.8z"/>
|
238 |
+
<path fill="#565656" d="M186.2,199.8v1.3l0,0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
239 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5s-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1v2.8h-1V200h0.9V199.8z"/>
|
240 |
+
<path fill="#565656" d="M193.4,205.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
241 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3s0.1-0.9,0.2-1.3c0.1-0.4,0.3-0.7,0.6-1s0.6-0.5,0.9-0.7c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3
|
242 |
+
s0.7,0.5,0.9,0.9s0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6
|
243 |
+
c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2s0.8-0.1,1.1-0.3s0.5-0.5,0.5-0.9h1C194.2,204.7,193.9,205.3,193.4,205.6z M193.2,201.6
|
244 |
+
c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1s-0.5,0-0.7,0.1s-0.4,0.2-0.5,0.4
|
245 |
+
c-0.2,0.2-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6C193.3,202.1,193.3,201.8,193.2,201.6z"/>
|
246 |
+
<path fill="#565656" d="M45.8,223l-1.3-4.9l0,0l-1.2,4.9h-1.1l-2-6.2h1.1l1.4,5.1l0,0l1.2-5.1H45l1.3,5.1l0,0l1.4-5.1h1.1l-2,6.2
|
247 |
+
H45.8z"/>
|
248 |
+
<path fill="#565656" d="M49.9,215.7v-1.2h1v1.2H49.9z M50.9,216.8v6.2h-1v-6.2H50.9z"/>
|
249 |
+
<path fill="#565656" d="M55.2,216.8v0.9H54v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0h0.5v0.9h-0.8
|
250 |
+
c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1V215h1v1.9h1.4V216.8z"/>
|
251 |
+
<path fill="#565656" d="M57.3,214.4v3.3l0,0c0.1-0.2,0.2-0.4,0.3-0.5s0.3-0.2,0.5-0.3s0.4-0.1,0.6-0.2c0.2,0,0.4-0.1,0.6-0.1
|
252 |
+
c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5s0.3,0.4,0.4,0.7c0.1,0.3,0.1,0.6,0.1,0.9v4.1h-1v-4.2c0-0.4-0.1-0.7-0.3-0.9
|
253 |
+
s-0.5-0.3-0.9-0.3c-0.3,0-0.6,0-0.8,0.1s-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8v3.5h-1v-8.6H57.3z"/>
|
254 |
+
<path fill="#565656" d="M70.5,223v-1l0,0c-0.2,0.4-0.5,0.7-0.8,0.8c-0.3,0.2-0.7,0.3-1.2,0.3c-0.4,0-0.7-0.1-1-0.2
|
255 |
+
c-0.3-0.1-0.5-0.3-0.7-0.5s-0.3-0.4-0.4-0.7s-0.1-0.6-0.1-0.9v-4.1h1v4.2c0,0.4,0.1,0.7,0.3,0.9c0.2,0.2,0.5,0.3,0.9,0.3
|
256 |
+
c0.3,0,0.6,0,0.8-0.1c0.2-0.1,0.4-0.2,0.6-0.4s0.3-0.4,0.3-0.6c0.1-0.2,0.1-0.5,0.1-0.8v-3.5h1v6.2h-0.8V223z"/>
|
257 |
+
<path fill="#565656" d="M73.8,221.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2s0.4,0.1,0.6,0.1s0.3,0,0.5,0s0.3-0.1,0.5-0.1
|
258 |
+
c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3c-0.3-0.1-0.6-0.2-1-0.2
|
259 |
+
c-0.4-0.1-0.7-0.2-1-0.3s-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8s0.3-0.4,0.5-0.5s0.5-0.2,0.7-0.3
|
260 |
+
c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1s0.6,0.2,0.8,0.3c0.2,0.1,0.4,0.3,0.5,0.6s0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5
|
261 |
+
s-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2c-0.2,0-0.3-0.1-0.5-0.1s-0.3,0-0.5,0s-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2
|
262 |
+
c-0.1,0.1-0.1,0.2-0.1,0.4s0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3s0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
263 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
264 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1s-0.7,0-1-0.1s-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6c-0.1-0.3-0.2-0.6-0.2-1h1
|
265 |
+
C73.6,221.3,73.7,221.5,73.8,221.6z"/>
|
266 |
+
<path fill="#565656" d="M79.1,216c0.1-0.4,0.3-0.7,0.5-0.9c0.2-0.3,0.5-0.5,0.9-0.6c0.3-0.1,0.7-0.2,1.1-0.2s0.7,0.1,1,0.2
|
267 |
+
c0.3,0.1,0.6,0.3,0.8,0.5c0.2,0.2,0.4,0.5,0.5,0.8s0.2,0.6,0.2,1c0,0.2,0,0.5-0.1,0.7s-0.1,0.4-0.2,0.5c-0.1,0.2-0.2,0.3-0.3,0.4
|
268 |
+
c-0.1,0.1-0.2,0.3-0.4,0.4c-0.1,0.1-0.3,0.2-0.4,0.4c-0.1,0.1-0.2,0.3-0.3,0.4c-0.1,0.1-0.2,0.3-0.2,0.5s-0.1,0.4-0.1,0.6v0.5h-1
|
269 |
+
v-0.6c0-0.3,0.1-0.6,0.2-0.9c0.1-0.2,0.2-0.4,0.4-0.6c0.2-0.2,0.3-0.4,0.5-0.5c0.2-0.2,0.3-0.3,0.5-0.5s0.3-0.4,0.4-0.6
|
270 |
+
s0.1-0.5,0.1-0.8c0-0.4-0.2-0.8-0.4-1s-0.6-0.4-1-0.4c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.4,0.2-0.5,0.4s-0.2,0.4-0.3,0.6
|
271 |
+
s-0.1,0.5-0.1,0.8h-1C78.9,216.7,78.9,216.3,79.1,216z M82.2,221.7v1.3h-1.3v-1.3H82.2z"/>
|
272 |
+
<path fill="#565656" d="M142.1,42.4V50h4.5v1h-5.7v-8.6H142.1z"/>
|
273 |
+
<path fill="#565656" d="M152.9,51c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7c-0.3,0.3-0.6,0.6-1,0.7
|
274 |
+
c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1s-0.5-0.2-0.7-0.3s-0.3-0.3-0.4-0.5c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9
|
275 |
+
s0.3-0.4,0.5-0.5s0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1c0.2-0.1,0.3-0.1,0.5-0.2
|
276 |
+
c0.1-0.1,0.2-0.2,0.2-0.4s0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3s-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2
|
277 |
+
s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1c0.1-0.3,0.3-0.5,0.6-0.6s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1
|
278 |
+
c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5s0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5s0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51
|
279 |
+
H152.9z M151.3,47.8c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
280 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4c0.1,0.1,0.2,0.2,0.3,0.3s0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
281 |
+
c0.2-0.1,0.4-0.2,0.6-0.3s0.3-0.3,0.3-0.5c0.1-0.2,0.1-0.3,0.1-0.5L151.3,47.8L151.3,47.8z"/>
|
282 |
+
<path fill="#565656" d="M154.7,49.6c0.1,0.2,0.2,0.3,0.4,0.4s0.3,0.2,0.5,0.2s0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0s0.3-0.1,0.5-0.1
|
283 |
+
c0.1-0.1,0.3-0.2,0.4-0.3c0.1-0.1,0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6s-0.5-0.2-0.8-0.3s-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3
|
284 |
+
s-0.5-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8c0.1-0.2,0.3-0.4,0.5-0.5s0.5-0.2,0.7-0.3
|
285 |
+
c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1s0.6,0.2,0.8,0.3s0.4,0.3,0.5,0.6s0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5
|
286 |
+
c-0.1-0.1-0.2-0.2-0.3-0.3s-0.3-0.1-0.5-0.2c-0.2,0-0.3-0.1-0.5-0.1s-0.3,0-0.5,0s-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2
|
287 |
+
c-0.1,0.1-0.1,0.2-0.1,0.4s0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3s0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
288 |
+
s0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.5,0.5s0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
289 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3c-0.3,0.1-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1s-0.6-0.2-0.8-0.4s-0.4-0.4-0.6-0.6c-0.1-0.3-0.2-0.6-0.2-1
|
290 |
+
h1C154.5,49.3,154.6,49.5,154.7,49.6z"/>
|
291 |
+
<path fill="#565656" d="M162.5,44.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.4,0h0.5
|
292 |
+
V51h-0.8c-0.3,0-0.5,0-0.7-0.1c-0.2,0-0.3-0.1-0.5-0.2s-0.2-0.2-0.3-0.4s-0.1-0.4-0.1-0.7v-3.9H159v-0.9h1.1v-1.9h1v1.9
|
293 |
+
C161.1,44.8,162.5,44.8,162.5,44.8z"/>
|
294 |
+
<path fill="#565656" d="M168.4,42.4l4.5,6.9l0,0v-6.9h1.1V51h-1.2l-4.5-6.9l0,0V51h-1.1v-8.6H168.4z"/>
|
295 |
+
<path fill="#565656" d="M181.2,51c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7c-0.3,0.3-0.6,0.6-1,0.7
|
296 |
+
c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1s-0.5-0.2-0.7-0.3s-0.3-0.3-0.4-0.5c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9
|
297 |
+
s0.3-0.4,0.5-0.5s0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1c0.2-0.1,0.3-0.1,0.5-0.2
|
298 |
+
c0.1-0.1,0.2-0.2,0.2-0.4s0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3s-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2
|
299 |
+
s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1c0.1-0.3,0.3-0.5,0.6-0.6s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1
|
300 |
+
c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5s0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5s0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51
|
301 |
+
H181.2z M179.5,47.8c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
302 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4c0.1,0.1,0.2,0.2,0.3,0.3s0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
303 |
+
c0.2-0.1,0.4-0.2,0.6-0.3s0.3-0.3,0.3-0.5c0.1-0.2,0.1-0.3,0.1-0.5L179.5,47.8L179.5,47.8z"/>
|
304 |
+
<path fill="#565656" d="M183.1,44.8v0.9l0,0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
305 |
+
c0.2-0.3,0.5-0.6,0.8-0.8s0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
306 |
+
c0.1,0.2,0.2,0.5,0.2,0.8V51h-1v-4.1c0-0.2,0-0.4,0-0.5c0-0.2-0.1-0.3-0.2-0.4s-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
307 |
+
c-0.5,0-0.9,0.1-1.2,0.4s-0.4,0.7-0.4,1.2V51h-1v-4.1c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3
|
308 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1s-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4s-0.2,0.3-0.3,0.5s-0.1,0.3-0.1,0.5V51h-1v-6.2H183.1z"/>
|
309 |
+
<path fill="#565656" d="M196.7,50.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
310 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3s0.1-0.9,0.2-1.3c0.1-0.4,0.3-0.7,0.6-1s0.6-0.5,0.9-0.7c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3
|
311 |
+
s0.7,0.5,0.9,0.9s0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6
|
312 |
+
c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2s0.8-0.1,1.1-0.3s0.5-0.5,0.5-0.9h1C197.5,49.7,197.2,50.3,196.7,50.6z M196.5,46.6
|
313 |
+
c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1s-0.5,0-0.7,0.1s-0.4,0.2-0.5,0.4
|
314 |
+
c-0.2,0.2-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6C196.6,47.1,196.6,46.8,196.5,46.6z"/>
|
315 |
+
<path id="Rectangle_925" fill="#69BB00" d="M85,238h95c2.8,0,5,2.2,5,5v17c0,2.8-2.2,5-5,5H85c-2.8,0-5-2.2-5-5v-17
|
316 |
+
C80,240.2,82.2,238,85,238z"/>
|
317 |
+
<path fill="#FFFFFF" d="M115.4,253.6c0,0.3,0,0.5,0.1,0.7s0.2,0.4,0.4,0.5c0.2,0.1,0.4,0.2,0.6,0.3s0.5,0.1,0.7,0.1
|
318 |
+
c0.3,0,0.5,0,0.7-0.1s0.4-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.1-0.3,0.1-0.4c0-0.3-0.1-0.5-0.2-0.6s-0.3-0.2-0.4-0.3
|
319 |
+
c-0.3-0.1-0.5-0.2-0.9-0.3c-0.3-0.1-0.8-0.2-1.2-0.3c-0.3-0.1-0.6-0.2-0.8-0.3s-0.4-0.3-0.5-0.4c-0.1-0.2-0.2-0.3-0.3-0.5
|
320 |
+
c0-0.2-0.1-0.4-0.1-0.5c0-0.4,0.1-0.7,0.2-0.9c0.2-0.3,0.3-0.5,0.6-0.7c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1
|
321 |
+
s0.7,0,1.1,0.1s0.6,0.2,0.9,0.4c0.2,0.2,0.4,0.4,0.6,0.7s0.2,0.6,0.2,1h-1.2c0-0.5-0.2-0.8-0.5-1s-0.6-0.3-1.1-0.3
|
322 |
+
c-0.1,0-0.3,0-0.5,0s-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.2-0.3,0.3c-0.1,0.1-0.1,0.3-0.1,0.4c0,0.3,0.1,0.5,0.2,0.6
|
323 |
+
c0.2,0.1,0.4,0.3,0.6,0.3c0,0,0.1,0,0.3,0.1c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.1,0.7,0.2s0.4,0.1,0.5,0.1
|
324 |
+
c0.2,0.1,0.4,0.2,0.6,0.3s0.3,0.3,0.4,0.4c0.1,0.2,0.2,0.3,0.3,0.5s0.1,0.4,0.1,0.6c0,0.4-0.1,0.7-0.2,1s-0.4,0.5-0.6,0.7
|
325 |
+
c-0.3,0.2-0.6,0.3-0.9,0.4s-0.7,0.1-1,0.1c-0.4,0-0.8,0-1.2-0.2c-0.4-0.1-0.7-0.3-0.9-0.5c-0.3-0.2-0.5-0.5-0.6-0.8
|
326 |
+
c-0.2-0.3-0.2-0.7-0.2-1.1L115.4,253.6L115.4,253.6z"/>
|
327 |
+
<path fill="#FFFFFF" d="M121,248.9h1.2v4.2c0,0.2,0,0.5,0,0.7s0.1,0.5,0.2,0.7s0.3,0.4,0.5,0.5s0.5,0.2,0.9,0.2s0.7-0.1,0.9-0.2
|
328 |
+
c0.2-0.1,0.4-0.3,0.5-0.5s0.2-0.4,0.2-0.7c0-0.2,0-0.5,0-0.7v-4.2h1.2v4.6c0,0.5-0.1,0.9-0.2,1.2s-0.3,0.6-0.6,0.9
|
329 |
+
c-0.3,0.2-0.6,0.4-0.9,0.5c-0.4,0.1-0.8,0.2-1.2,0.2c-0.4,0-0.8-0.1-1.2-0.2c-0.4-0.1-0.7-0.3-0.9-0.5c-0.3-0.2-0.5-0.5-0.6-0.9
|
330 |
+
s-0.2-0.7-0.2-1.2v-4.6H121z"/>
|
331 |
+
<path fill="#FFFFFF" d="M128.3,248.9h3.5c0.6,0,1.2,0.1,1.5,0.4c0.4,0.3,0.6,0.7,0.6,1.3c0,0.4-0.1,0.7-0.3,0.9
|
332 |
+
c-0.2,0.3-0.4,0.5-0.8,0.6l0,0c0.4,0.1,0.8,0.3,1,0.6s0.3,0.7,0.3,1.2c0,0.3,0,0.5-0.2,0.8c-0.1,0.2-0.3,0.5-0.5,0.6
|
333 |
+
c-0.2,0.2-0.5,0.3-0.8,0.4c-0.3,0.1-0.7,0.2-1.2,0.2h-3.3v-7H128.3z M129.5,251.8h2c0.3,0,0.5-0.1,0.8-0.3s0.3-0.4,0.3-0.7
|
334 |
+
c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.1-0.4-0.2-0.8-0.2h-2V251.8z M129.5,255h2.2c0.4,0,0.7-0.1,0.9-0.3s0.3-0.5,0.3-0.8
|
335 |
+
c0-0.4-0.1-0.6-0.3-0.8s-0.5-0.3-0.9-0.3h-2.2V255z"/>
|
336 |
+
<path fill="#FFFFFF" d="M135.3,248.9h1.8l2,5.6l0,0l1.9-5.6h1.7v7.1h-1.2v-5.5l0,0l-2,5.5h-1l-2-5.5l0,0v5.5h-1.2V248.9z"/>
|
337 |
+
<path fill="#FFFFFF" d="M144.2,248.9h1.2v7.1h-1.2V248.9z"/>
|
338 |
+
<path fill="#FFFFFF" d="M146.3,248.9h5.8v1.1h-2.3v6.1h-1.2V250h-2.3V248.9z"/>
|
339 |
+
<g>
|
340 |
+
<g>
|
341 |
+
<g>
|
342 |
+
<path fill="#FFDE46" d="M67.5,171.4c-4.1,0-7.5-3.4-7.5-7.5s3.4-7.5,7.5-7.5c4.1,0,7.5,3.4,7.5,7.5S71.6,171.4,67.5,171.4z"/>
|
343 |
+
</g>
|
344 |
+
</g>
|
345 |
+
<g>
|
346 |
+
<path fill="#FFCD00" d="M67.5,156.4v15c4.1,0,7.5-3.4,7.5-7.5S71.6,156.4,67.5,156.4z"/>
|
347 |
+
</g>
|
348 |
+
<g>
|
349 |
+
<path fill="#00347B" d="M70.1,167.2c-0.1,0-0.3-0.1-0.4-0.2c-0.5-0.8-1.3-1.3-2.3-1.3c-0.9,0-1.8,0.5-2.3,1.3
|
350 |
+
c-0.1,0.2-0.4,0.3-0.6,0.2c-0.2-0.1-0.3-0.4-0.2-0.6c0.6-1.1,1.8-1.7,3-1.7c1.2,0,2.4,0.7,3,1.7c0.1,0.2,0.1,0.5-0.2,0.6
|
351 |
+
C70.3,167.2,70.2,167.2,70.1,167.2L70.1,167.2z"/>
|
352 |
+
</g>
|
353 |
+
<g>
|
354 |
+
<path fill="#00347B" d="M64.7,163.7c-0.8,0-1.6-0.5-1.8-1.3c-0.1-0.2,0-0.5,0.3-0.6c0.2-0.1,0.5,0,0.6,0.3c0.1,0.4,0.5,0.7,1,0.7
|
355 |
+
c0.4,0,0.8-0.3,1-0.7c0.1-0.2,0.3-0.4,0.6-0.3c0.2,0.1,0.4,0.3,0.3,0.6C66.3,163.1,65.5,163.7,64.7,163.7L64.7,163.7z"/>
|
356 |
+
</g>
|
357 |
+
<g>
|
358 |
+
<path fill="#001737" d="M70.3,163.7c-0.8,0-1.6-0.5-1.8-1.3c-0.1-0.2,0-0.5,0.3-0.6c0.2-0.1,0.5,0,0.6,0.3c0.1,0.4,0.5,0.7,1,0.7
|
359 |
+
c0.4,0,0.8-0.3,1-0.7c0.1-0.2,0.3-0.4,0.6-0.3c0.2,0.1,0.4,0.3,0.3,0.6C71.8,163.1,71.1,163.7,70.3,163.7L70.3,163.7z"/>
|
360 |
+
</g>
|
361 |
+
<path fill="#001737" d="M70.5,166.5c-0.6-1.1-1.8-1.7-3-1.7v0.9c0.9,0,1.8,0.5,2.3,1.3c0.1,0.1,0.2,0.2,0.4,0.2
|
362 |
+
c0.1,0,0.2,0,0.2-0.1C70.6,167,70.6,166.7,70.5,166.5z"/>
|
363 |
+
</g>
|
364 |
+
<g>
|
365 |
+
<g>
|
366 |
+
<path fill="#FFDE46" d="M46.4,171.4c-4.1,0-7.5-3.4-7.5-7.5s3.4-7.5,7.5-7.5s7.5,3.4,7.5,7.5S50.6,171.4,46.4,171.4z"/>
|
367 |
+
</g>
|
368 |
+
<path fill="#FFCD00" d="M46.4,156.4v15c4.1,0,7.5-3.4,7.5-7.5S50.6,156.4,46.4,156.4z"/>
|
369 |
+
<path fill="#00347B" d="M44,168.1c-0.6-0.2-1-0.8-1-1.5c0-0.7,0.4-1.2,1-1.5c0.2-0.1,4.7-0.1,4.9,0c0.6,0.2,1,0.8,1,1.5
|
370 |
+
c0,0.7-0.4,1.2-1,1.5C48.7,168.1,44.2,168.1,44,168.1z"/>
|
371 |
+
<path fill="#001737" d="M48.9,165.1c-0.1,0-1.3-0.1-2.5-0.1v3c1.2,0,2.4,0,2.5-0.1c0.6-0.2,1-0.8,1-1.5S49.5,165.4,48.9,165.1
|
372 |
+
L48.9,165.1z"/>
|
373 |
+
<g>
|
374 |
+
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFF4F4" d="M48.3,165l-3.8,0c-0.2,0-0.4,0-0.6,0.1v1c0,0.2,0.2,0.4,0.4,0.4
|
375 |
+
h4c0.2,0,0.4-0.2,0.4-0.4v-1C48.7,165.1,48.5,165,48.3,165L48.3,165z"/>
|
376 |
+
<path fill-rule="evenodd" clip-rule="evenodd" fill="#F6EFEA" d="M48.5,166.6h-4c-0.2,0-0.4,0.2-0.4,0.4v1
|
377 |
+
c0.2,0.1,0.4,0.1,0.6,0.1l3.8,0c0.2,0,0.4,0,0.6-0.1v-1C48.9,166.8,48.7,166.6,48.5,166.6L48.5,166.6z"/>
|
378 |
+
<ellipse fill-rule="evenodd" clip-rule="evenodd" fill="#00347B" cx="44" cy="161.9" rx="1.1" ry="1.1"/>
|
379 |
+
</g>
|
380 |
+
<path fill="#FFF4F4" d="M44,163.5c-0.8,0-1.5-0.7-1.5-1.5s0.7-1.5,1.5-1.5s1.5,0.7,1.5,1.5S44.8,163.5,44,163.5z M44,161.3
|
381 |
+
c-0.3,0-0.6,0.3-0.6,0.6s0.3,0.6,0.6,0.6s0.6-0.3,0.6-0.6S44.3,161.3,44,161.3z"/>
|
382 |
+
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#001737" cx="48.9" cy="161.9" r="1.1"/>
|
383 |
+
<path fill="#F6EFEA" d="M48.9,163.5c-0.8,0-1.5-0.7-1.5-1.5s0.7-1.5,1.5-1.5s1.5,0.7,1.5,1.5S49.8,163.5,48.9,163.5z M48.9,161.3
|
384 |
+
c-0.3,0-0.6,0.3-0.6,0.6s0.3,0.6,0.6,0.6c0.3,0,0.6-0.3,0.6-0.6S49.3,161.3,48.9,161.3z"/>
|
385 |
+
<path fill-rule="evenodd" clip-rule="evenodd" fill="#F6EFEA" d="M48.3,165l-1.9,0v1.6h2c0.2,0,0.4-0.2,0.4-0.4v-1
|
386 |
+
C48.7,165.1,48.5,165,48.3,165L48.3,165z"/>
|
387 |
+
<path fill-rule="evenodd" clip-rule="evenodd" fill="#EEE1DC" d="M48.5,166.6h-2v1.6l1.9,0c0.2,0,0.4,0,0.6-0.1v-1
|
388 |
+
C48.9,166.8,48.7,166.6,48.5,166.6z"/>
|
389 |
+
</g>
|
390 |
+
<g>
|
391 |
+
<g>
|
392 |
+
<path fill="#FFDE46" d="M88.5,171.4c-4.1,0-7.5-3.4-7.5-7.5s3.4-7.5,7.5-7.5c4.1,0,7.5,3.4,7.5,7.5S92.7,171.4,88.5,171.4z"/>
|
393 |
+
</g>
|
394 |
+
<path fill="#FFCD00" d="M88.5,156.4v15c4.1,0,7.5-3.4,7.5-7.5S92.7,156.4,88.5,156.4z"/>
|
395 |
+
<g>
|
396 |
+
<path fill="#00347B" d="M91.2,167.2h-5.3c-0.2,0-0.4-0.2-0.4-0.4s0.2-0.4,0.4-0.4h5.3c0.2,0,0.4,0.2,0.4,0.4
|
397 |
+
S91.4,167.2,91.2,167.2z"/>
|
398 |
+
</g>
|
399 |
+
<ellipse fill-rule="evenodd" clip-rule="evenodd" fill="#00347B" cx="86" cy="161.9" rx="1.1" ry="1.1"/>
|
400 |
+
<path fill="#FFF4F4" d="M86,163.5c-0.8,0-1.5-0.7-1.5-1.5s0.7-1.5,1.5-1.5c0.8,0,1.5,0.7,1.5,1.5S86.9,163.5,86,163.5z M86,161.3
|
401 |
+
c-0.3,0-0.6,0.3-0.6,0.6s0.3,0.6,0.6,0.6s0.6-0.3,0.6-0.6S86.4,161.3,86,161.3z"/>
|
402 |
+
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#001737" cx="91" cy="161.9" r="1.1"/>
|
403 |
+
<path fill="#F6EFEA" d="M91,163.5c-0.8,0-1.5-0.7-1.5-1.5s0.7-1.5,1.5-1.5c0.8,0,1.5,0.7,1.5,1.5S91.8,163.5,91,163.5z M91,161.3
|
404 |
+
c-0.3,0-0.6,0.3-0.6,0.6s0.3,0.6,0.6,0.6c0.3,0,0.6-0.3,0.6-0.6S91.3,161.3,91,161.3z"/>
|
405 |
+
<g>
|
406 |
+
<ellipse fill-rule="evenodd" clip-rule="evenodd" fill="#00347B" cx="86" cy="161.9" rx="1.1" ry="1.1"/>
|
407 |
+
<path fill="#FFF4F4" d="M86,163.5c-0.8,0-1.5-0.7-1.5-1.5s0.7-1.5,1.5-1.5c0.8,0,1.5,0.7,1.5,1.5S86.9,163.5,86,163.5z M86,161.3
|
408 |
+
c-0.3,0-0.6,0.3-0.6,0.6s0.3,0.6,0.6,0.6s0.6-0.3,0.6-0.6S86.4,161.3,86,161.3z"/>
|
409 |
+
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#001737" cx="91" cy="161.9" r="1.1"/>
|
410 |
+
<path fill="#F6EFEA" d="M91,163.5c-0.8,0-1.5-0.7-1.5-1.5s0.7-1.5,1.5-1.5c0.8,0,1.5,0.7,1.5,1.5S91.8,163.5,91,163.5z M91,161.3
|
411 |
+
c-0.3,0-0.6,0.3-0.6,0.6s0.3,0.6,0.6,0.6c0.3,0,0.6-0.3,0.6-0.6S91.3,161.3,91,161.3z"/>
|
412 |
+
</g>
|
413 |
+
<path fill="#001737" d="M91.2,166.3h-2.6v0.9h2.6c0.2,0,0.4-0.2,0.4-0.4S91.4,166.3,91.2,166.3z"/>
|
414 |
+
</g>
|
415 |
+
<g>
|
416 |
+
<g>
|
417 |
+
<path fill="#FFDE46" d="M109.6,171.4c-4.1,0-7.5-3.4-7.5-7.5s3.4-7.5,7.5-7.5c4.1,0,7.5,3.4,7.5,7.5S113.7,171.4,109.6,171.4z"/>
|
418 |
+
</g>
|
419 |
+
<path fill="#FFCD00" d="M109.6,156.4v15c4.1,0,7.5-3.4,7.5-7.5S113.7,156.4,109.6,156.4z"/>
|
420 |
+
<g>
|
421 |
+
<ellipse fill-rule="evenodd" clip-rule="evenodd" fill="#00429D" cx="107.1" cy="161.9" rx="1.1" ry="1.1"/>
|
422 |
+
<path fill="#FFF4F4" d="M107.1,163.5c-0.8,0-1.5-0.7-1.5-1.5s0.7-1.5,1.5-1.5c0.8,0,1.5,0.7,1.5,1.5S107.9,163.5,107.1,163.5z
|
423 |
+
M107.1,161.3c-0.3,0-0.6,0.3-0.6,0.6s0.3,0.6,0.6,0.6s0.6-0.3,0.6-0.6S107.4,161.3,107.1,161.3z"/>
|
424 |
+
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#00347B" cx="112" cy="161.9" r="1.1"/>
|
425 |
+
<path fill="#F6EFEA" d="M112,163.5c-0.8,0-1.5-0.7-1.5-1.5s0.7-1.5,1.5-1.5c0.8,0,1.5,0.7,1.5,1.5S112.9,163.5,112,163.5z
|
426 |
+
M112,161.3c-0.3,0-0.6,0.3-0.6,0.6s0.3,0.6,0.6,0.6c0.3,0,0.6-0.3,0.6-0.6S112.4,161.3,112,161.3z"/>
|
427 |
+
</g>
|
428 |
+
<g>
|
429 |
+
<path fill="#00347B" d="M109.6,167.9c-0.8,0-1.6,1-2.3,0.5c-0.9-0.7-1.4-1.7-1.4-2.9v-0.1c0-0.1,0.1-0.2,0.2-0.2h7
|
430 |
+
c0.1,0,0.2,0.1,0.2,0.2v0.1c0,1.2-0.6,2.3-1.4,2.9C111.2,168.9,110.4,167.9,109.6,167.9z"/>
|
431 |
+
</g>
|
432 |
+
<path fill="#001737" d="M113,165.2h-3.5v2.7c0.8,0,1.6,1,2.3,0.5c0.9-0.7,1.4-1.7,1.4-2.9v-0.1C113.3,165.3,113.2,165.2,113,165.2z
|
433 |
+
"/>
|
434 |
+
<path fill="#FF3F5C" d="M107.3,168.4c0.6,0.5,1.4,0.8,2.3,0.8s1.6-0.3,2.3-0.8c-0.2-0.8-1.1-1.5-2.3-1.5
|
435 |
+
C108.4,166.9,107.5,167.6,107.3,168.4z"/>
|
436 |
+
<path fill="#D20763" d="M109.6,169.2c0.8,0,1.6-0.3,2.3-0.8c-0.2-0.8-1.1-1.5-2.3-1.5V169.2z"/>
|
437 |
+
</g>
|
438 |
+
<g>
|
439 |
+
<g>
|
440 |
+
<path fill="#FFDE46" d="M130.6,171.4c-4.1,0-7.5-3.4-7.5-7.5s3.4-7.5,7.5-7.5c4.1,0,7.5,3.4,7.5,7.5S134.7,171.4,130.6,171.4z"/>
|
441 |
+
</g>
|
442 |
+
<path fill="#FFCD00" d="M130.6,156.4v15c4.1,0,7.5-3.4,7.5-7.5S134.7,156.4,130.6,156.4z"/>
|
443 |
+
<g>
|
444 |
+
<path fill="#FF3F5C" d="M128.3,163.7C128.3,163.7,128.3,163.7,128.3,163.7c-0.7-0.2-2.3-0.9-2.5-1.8c-0.1-0.3,0-0.6,0.1-0.9
|
445 |
+
c0.2-0.3,0.4-0.5,0.7-0.5c0.3-0.1,0.7,0,1,0.2c0.1-0.3,0.4-0.5,0.7-0.6c0.3-0.1,0.6,0,0.9,0.1c0.3,0.2,0.5,0.4,0.5,0.7
|
446 |
+
c0.2,0.9-1,2.5-1.2,2.8C128.4,163.7,128.4,163.7,128.3,163.7z M126.7,160.7L126.7,160.7L126.7,160.7z"/>
|
447 |
+
</g>
|
448 |
+
<g>
|
449 |
+
<path fill="#D20763" d="M132.9,163.7c-0.1,0-0.1,0-0.2-0.1c-0.3-0.3-1.5-1.9-1.2-2.8c0.2-0.6,0.8-1,1.4-0.8
|
450 |
+
c0.3,0.1,0.6,0.3,0.7,0.6c0.3-0.2,0.6-0.3,1-0.2c0.6,0.2,1,0.8,0.8,1.4C135.2,162.8,133.6,163.6,132.9,163.7
|
451 |
+
C132.9,163.7,132.9,163.7,132.9,163.7z"/>
|
452 |
+
</g>
|
453 |
+
<g>
|
454 |
+
<path fill="#00347B" d="M130.6,168.1c-0.8,0-1.6,1-2.3,0.5c-0.9-0.7-1.4-1.7-1.4-2.9v-0.1c0-0.1,0.1-0.2,0.2-0.2h7
|
455 |
+
c0.1,0,0.2,0.1,0.2,0.2v0.1c0,1.2-0.6,2.3-1.4,2.9C132.2,169,131.4,168.1,130.6,168.1z"/>
|
456 |
+
</g>
|
457 |
+
<path fill="#001737" d="M134.1,165.3h-3.5v2.7c0.8,0,1.6,1,2.3,0.5c0.9-0.7,1.4-1.7,1.4-2.9v-0.1
|
458 |
+
C134.3,165.4,134.2,165.3,134.1,165.3z"/>
|
459 |
+
<path fill="#FF3F5C" d="M128.3,168.5c0.6,0.5,1.4,0.8,2.3,0.8s1.6-0.3,2.3-0.8c-0.2-0.8-1.1-1.5-2.3-1.5
|
460 |
+
C129.5,167.1,128.5,167.7,128.3,168.5z"/>
|
461 |
+
<path fill="#D20763" d="M130.6,169.3c0.8,0,1.6-0.3,2.3-0.8c-0.2-0.8-1.1-1.5-2.3-1.5V169.3z"/>
|
462 |
+
</g>
|
463 |
+
</svg>
|
templates/23/preview-thumb.svg
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 265 300" enable-background="new 0 0 265 300" xml:space="preserve">
|
5 |
+
<g id="Group_76" transform="translate(-78 -2543)">
|
6 |
+
<path id="Rectangle_990" fill="#FFFFFF" d="M83,2543h255c2.8,0,5,2.2,5,5v290c0,2.8-2.2,5-5,5H83c-2.8,0-5-2.2-5-5v-290
|
7 |
+
C78,2545.2,80.2,2543,83,2543z"/>
|
8 |
+
<path id="Rectangle_991" fill="#E5E9EA" d="M120.5,2702h180c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-180
|
9 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C118,2703.1,119.1,2702,120.5,2702z"/>
|
10 |
+
<text transform="matrix(1 0 0 1 118 2694)" fill="#565656" font-family="'HelveticaNeue'" font-size="12px">Email address</text>
|
11 |
+
<text transform="matrix(1 0 0 1 118 2599)" fill="#565656" font-family="'HelveticaNeue-Medium'" font-size="15px">Don’t miss any update</text>
|
12 |
+
<path id="Rectangle_995" fill="#02CAA7" d="M123,2781h95c2.8,0,5,2.2,5,5v17c0,2.8-2.2,5-5,5h-95c-2.8,0-5-2.2-5-5v-17
|
13 |
+
C118,2783.2,120.2,2781,123,2781z"/>
|
14 |
+
<text transform="matrix(1 0 0 1 142.2 2798)" fill="#FFFFFF" font-family="'HelveticaNeue-Medium'" font-size="10px">SUBSCRIBE</text>
|
15 |
+
<text transform="matrix(1 0 0 1 118 2628)" fill="#565656" font-family="'HelveticaNeue'" font-size="12px">Subscribe now to get the latest </text>
|
16 |
+
<text transform="matrix(1 0 0 1 118 2642)" fill="#565656" font-family="'HelveticaNeue'" font-size="12px">news, ofers and updates about </text>
|
17 |
+
<text transform="matrix(1 0 0 1 118 2656)" fill="#565656" font-family="'HelveticaNeue'" font-size="12px">your favorite contents.</text>
|
18 |
+
</g>
|
19 |
+
</svg>
|
templates/24/preview-thumb.svg
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 265 300" enable-background="new 0 0 265 300" xml:space="preserve">
|
5 |
+
<g id="Group_75" transform="translate(-373 -2543)">
|
6 |
+
<path id="Rectangle_996" fill="#FFFFFF" d="M378,2543h255c2.8,0,5,2.2,5,5v290c0,2.8-2.2,5-5,5H378c-2.8,0-5-2.2-5-5v-290
|
7 |
+
C373,2545.2,375.2,2543,378,2543z"/>
|
8 |
+
<path id="Rectangle_991" fill="#E5E9EA" d="M415.5,2704h180c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-180
|
9 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C413,2705.1,414.1,2704,415.5,2704z"/>
|
10 |
+
<text transform="matrix(1 0 0 1 413 2696)" fill="#565656" font-family="'HelveticaNeue'" font-size="12px">Email address</text>
|
11 |
+
<text transform="matrix(1 0 0 1 413 2598)" fill="#565656" font-family="'HelveticaNeue-Medium'" font-size="15px">Subscribe to our</text>
|
12 |
+
<text transform="matrix(1 0 0 1 413 2614)" fill="#565656" font-family="'HelveticaNeue-Medium'" font-size="15px">newsletter</text>
|
13 |
+
<path id="Rectangle_995" fill="#DE4437" d="M418,2781h95c2.8,0,5,2.2,5,5v17c0,2.8-2.2,5-5,5h-95c-2.8,0-5-2.2-5-5v-17
|
14 |
+
C413,2783.2,415.2,2781,418,2781z"/>
|
15 |
+
<text transform="matrix(1 0 0 1 437.2 2798)" fill="#FFFFFF" font-family="'HelveticaNeue-Medium'" font-size="10px">SUBSCRIBE</text>
|
16 |
+
<text transform="matrix(1 0 0 1 413 2643)" fill="#565656" font-family="'HelveticaNeue'" font-size="12px">Get your very frst ebook for free </text>
|
17 |
+
<text transform="matrix(1 0 0 1 413 2657)" fill="#565656" font-family="'HelveticaNeue'" font-size="12px">and access to premium ofers</text>
|
18 |
+
</g>
|
19 |
+
</svg>
|
templates/25/preview-thumb.svg
ADDED
@@ -0,0 +1,69 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 265 300" enable-background="new 0 0 265 300" xml:space="preserve">
|
5 |
+
<g id="Group_74" transform="translate(-668 -2543)">
|
6 |
+
<path id="Rectangle_997" fill="#FFFFFF" d="M673,2543h255c2.8,0,5,2.2,5,5v290c0,2.8-2.2,5-5,5H673c-2.8,0-5-2.2-5-5v-290
|
7 |
+
C668,2545.2,670.2,2543,673,2543z"/>
|
8 |
+
<path id="Rectangle_998" fill="#E5E9EA" d="M710.5,2602h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
9 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C708,2603.1,709.1,2602,710.5,2602z"/>
|
10 |
+
<path id="Rectangle_999" fill="#E5E9EA" d="M710.5,2646h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
11 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C708,2647.1,709.1,2646,710.5,2646z"/>
|
12 |
+
<path id="Rectangle_1003" fill="#E5E9EA" d="M810.5,2646h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
13 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C808,2647.1,809.1,2646,810.5,2646z"/>
|
14 |
+
<path id="Rectangle_1002" fill="#E5E9EA" d="M810.5,2602h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
15 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C808,2603.1,809.1,2602,810.5,2602z"/>
|
16 |
+
<text transform="matrix(1 0 0 1 708 2594)" fill="#565656" font-family="'HelveticaNeue'" font-size="12px">First Name</text>
|
17 |
+
<text transform="matrix(1 0 0 1 708 2638)" fill="#565656" font-family="'HelveticaNeue'" font-size="12px">Email</text>
|
18 |
+
<text transform="matrix(1 0 0 1 808 2638)" fill="#565656" font-family="'HelveticaNeue'" font-size="12px">Phone</text>
|
19 |
+
<text transform="matrix(1 0 0 1 808 2594)" fill="#565656" font-family="'HelveticaNeue'" font-size="12px">Last Name</text>
|
20 |
+
<path id="Rectangle_919" fill="#31A651" d="M753,2781h95c2.8,0,5,2.2,5,5v17c0,2.8-2.2,5-5,5h-95c-2.8,0-5-2.2-5-5v-17
|
21 |
+
C748,2783.2,750.2,2781,753,2781z"/>
|
22 |
+
<text transform="matrix(1 0 0 1 771.92 2799)" fill="#FFFFFF" font-family="'HelveticaNeue-Medium'" font-size="10px">APPLY NOW</text>
|
23 |
+
<g id="Group_67">
|
24 |
+
<g id="Rectangle_1000" transform="translate(708 2691)">
|
25 |
+
<path fill="#E5E9EA" d="M5,0h45c2.8,0,5,2.2,5,5v45c0,2.8-2.2,5-5,5H5c-2.8,0-5-2.2-5-5V5C0,2.2,2.2,0,5,0z"/>
|
26 |
+
<path fill="none" stroke="#CED3D5" stroke-width="2" d="M5,1h45c2.2,0,4,1.8,4,4v45c0,2.2-1.8,4-4,4H5c-2.2,0-4-1.8-4-4V5
|
27 |
+
C1,2.8,2.8,1,5,1z"/>
|
28 |
+
</g>
|
29 |
+
<path id="Rectangle_1004" fill="#E5E9EA" d="M778,2691h45c2.8,0,5,2.2,5,5v45c0,2.8-2.2,5-5,5h-45c-2.8,0-5-2.2-5-5v-45
|
30 |
+
C773,2693.2,775.2,2691,778,2691z"/>
|
31 |
+
<path id="Rectangle_1005" fill="#E5E9EA" d="M843,2691h45c2.8,0,5,2.2,5,5v45c0,2.8-2.2,5-5,5h-45c-2.8,0-5-2.2-5-5v-45
|
32 |
+
C838,2693.2,840.2,2691,843,2691z"/>
|
33 |
+
<text transform="matrix(1 0 0 1 708 2682)" fill="#565656" font-family="'HelveticaNeue'" font-size="12px">Please, Select from following:</text>
|
34 |
+
<g id="Group_64" transform="translate(-142.196 2245.412)">
|
35 |
+
<path id="Path_2007" fill="#CED3D5" d="M894.9,461.9c-0.2-0.2-0.4-0.3-0.7-0.3h-33c-0.3,0-0.5,0.1-0.7,0.3
|
36 |
+
c-0.2,0.2-0.3,0.4-0.3,0.7v21.6c0,0.3,0.1,0.5,0.3,0.7c0.2,0.2,0.4,0.3,0.7,0.3h33c0.3,0,0.5-0.1,0.7-0.3
|
37 |
+
c0.2-0.2,0.3-0.4,0.3-0.7v-21.6C895.2,462.3,895.1,462.1,894.9,461.9z M862.2,483.2v-1.6l10.5-10.5l12,12.1L862.2,483.2z
|
38 |
+
M893.2,483.2h-5.8l-4.1-4.1l3.1-3.1l6.6,6.7c0,0,0.1,0.1,0.1,0.1c0,0,0.1,0,0.1,0L893.2,483.2z M893.2,480.1l-6.1-6.2
|
39 |
+
c-0.4-0.3-1-0.3-1.4,0l-3.8,3.8l-8.6-8.6c-0.4-0.3-1-0.3-1.4,0l-9.8,9.8v-15.3h31L893.2,480.1z"/>
|
40 |
+
<path id="Path_2008" fill="#CED3D5" d="M884.5,466.5c-0.7-0.7-1.6-1.1-2.6-1.1c-2,0-3.7,1.6-3.7,3.7c0,0,0,0,0,0.1
|
41 |
+
c0,1,0.4,1.9,1.1,2.6c0.7,0.7,1.6,1.1,2.6,1.1c2,0,3.7-1.6,3.7-3.7C885.6,468.1,885.2,467.2,884.5,466.5z M883.1,470.3
|
42 |
+
c-0.3,0.3-0.8,0.5-1.2,0.5c-0.5,0-0.9-0.2-1.3-0.5c-0.3-0.3-0.5-0.8-0.5-1.2c0-1,0.8-1.8,1.8-1.8c0,0,0,0,0,0
|
43 |
+
c0.5,0,0.9,0.2,1.2,0.5c0.3,0.3,0.5,0.8,0.5,1.3C883.6,469.6,883.4,470,883.1,470.3L883.1,470.3z"/>
|
44 |
+
</g>
|
45 |
+
<g id="Group_65" transform="translate(-77.196 2245.412)">
|
46 |
+
<path id="Path_2007-2" fill="#CED3D5" d="M894.9,461.9c-0.2-0.2-0.4-0.3-0.7-0.3h-33c-0.3,0-0.5,0.1-0.7,0.3
|
47 |
+
c-0.2,0.2-0.3,0.4-0.3,0.7v21.6c0,0.3,0.1,0.5,0.3,0.7c0.2,0.2,0.4,0.3,0.7,0.3h33c0.3,0,0.5-0.1,0.7-0.3
|
48 |
+
c0.2-0.2,0.3-0.4,0.3-0.7v-21.6C895.2,462.3,895.1,462.1,894.9,461.9z M862.2,483.2v-1.6l10.5-10.5l12,12.1L862.2,483.2z
|
49 |
+
M893.2,483.2h-5.8l-4.1-4.1l3.1-3.1l6.6,6.7c0,0,0.1,0.1,0.1,0.1c0,0,0.1,0,0.1,0L893.2,483.2z M893.2,480.1l-6.1-6.2
|
50 |
+
c-0.4-0.3-1-0.3-1.4,0l-3.8,3.8l-8.6-8.6c-0.4-0.3-1-0.3-1.4,0l-9.8,9.8v-15.3h31L893.2,480.1z"/>
|
51 |
+
<path id="Path_2008-2" fill="#CED3D5" d="M884.5,466.5c-0.7-0.7-1.6-1.1-2.6-1.1c-2,0-3.7,1.6-3.7,3.7c0,0,0,0,0,0.1
|
52 |
+
c0,1,0.4,1.9,1.1,2.6c0.7,0.7,1.6,1.1,2.6,1.1c2,0,3.7-1.6,3.7-3.7C885.6,468.1,885.2,467.2,884.5,466.5z M883.1,470.3
|
53 |
+
c-0.3,0.3-0.8,0.5-1.2,0.5c-0.5,0-0.9-0.2-1.3-0.5c-0.3-0.3-0.5-0.8-0.5-1.2c0-1,0.8-1.8,1.8-1.8c0,0,0,0,0,0
|
54 |
+
c0.5,0,0.9,0.2,1.2,0.5c0.3,0.3,0.5,0.8,0.5,1.3C883.6,469.6,883.4,470,883.1,470.3L883.1,470.3z"/>
|
55 |
+
</g>
|
56 |
+
<g id="Group_66" transform="translate(-12.196 2245.412)">
|
57 |
+
<path id="Path_2007-3" fill="#CED3D5" d="M894.9,461.9c-0.2-0.2-0.4-0.3-0.7-0.3h-33c-0.3,0-0.5,0.1-0.7,0.3
|
58 |
+
c-0.2,0.2-0.3,0.4-0.3,0.7v21.6c0,0.3,0.1,0.5,0.3,0.7c0.2,0.2,0.4,0.3,0.7,0.3h33c0.3,0,0.5-0.1,0.7-0.3
|
59 |
+
c0.2-0.2,0.3-0.4,0.3-0.7v-21.6C895.2,462.3,895.1,462.1,894.9,461.9z M862.2,483.2v-1.6l10.5-10.5l12,12.1L862.2,483.2z
|
60 |
+
M893.2,483.2h-5.8l-4.1-4.1l3.1-3.1l6.6,6.7c0,0,0.1,0.1,0.1,0.1c0,0,0.1,0,0.1,0L893.2,483.2z M893.2,480.1l-6.1-6.2
|
61 |
+
c-0.4-0.3-1-0.3-1.4,0l-3.8,3.8l-8.6-8.6c-0.4-0.3-1-0.3-1.4,0l-9.8,9.8v-15.3h31L893.2,480.1z"/>
|
62 |
+
<path id="Path_2008-3" fill="#CED3D5" d="M884.5,466.5c-0.7-0.7-1.6-1.1-2.6-1.1c-2,0-3.7,1.6-3.7,3.7c0,0,0,0,0,0.1
|
63 |
+
c0,1,0.4,1.9,1.1,2.6c0.7,0.7,1.6,1.1,2.6,1.1c2,0,3.7-1.6,3.7-3.7C885.6,468.1,885.2,467.2,884.5,466.5z M883.1,470.3
|
64 |
+
c-0.3,0.3-0.8,0.5-1.2,0.5c-0.5,0-0.9-0.2-1.3-0.5c-0.3-0.3-0.5-0.8-0.5-1.2c0-1,0.8-1.8,1.8-1.8c0,0,0,0,0,0
|
65 |
+
c0.5,0,0.9,0.2,1.2,0.5c0.3,0.3,0.5,0.8,0.5,1.3C883.6,469.6,883.4,470,883.1,470.3L883.1,470.3z"/>
|
66 |
+
</g>
|
67 |
+
</g>
|
68 |
+
</g>
|
69 |
+
</svg>
|
templates/26/preview-thumb.svg
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 265 300" enable-background="new 0 0 265 300" xml:space="preserve">
|
5 |
+
<g id="Group_73" transform="translate(-963 -2543)">
|
6 |
+
<path id="Rectangle_1006" fill="#FFFFFF" d="M968,2543h255c2.8,0,5,2.2,5,5v290c0,2.8-2.2,5-5,5H968c-2.8,0-5-2.2-5-5v-290
|
7 |
+
C963,2545.2,965.2,2543,968,2543z"/>
|
8 |
+
<path id="Rectangle_1007" fill="#E5E9EA" d="M1005.5,2602h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
9 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C1003,2603.1,1004.1,2602,1005.5,2602z"/>
|
10 |
+
<path id="Rectangle_1008" fill="#E5E9EA" d="M1005.5,2646h180c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-180
|
11 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C1003,2647.1,1004.1,2646,1005.5,2646z"/>
|
12 |
+
<path id="Rectangle_1010" fill="#E5E9EA" d="M1105.5,2602h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
13 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C1103,2603.1,1104.1,2602,1105.5,2602z"/>
|
14 |
+
<text transform="matrix(1 0 0 1 1003 2594)" fill="#565656" font-family="'HelveticaNeue'" font-size="12px">First Name</text>
|
15 |
+
<text transform="matrix(1 0 0 1 1003 2638)" fill="#565656" font-family="'HelveticaNeue'" font-size="12px">Email</text>
|
16 |
+
<text transform="matrix(1 0 0 1 1003 2692)" fill="#565656" font-family="'HelveticaNeue'" font-size="12px">Do you drink cofee?</text>
|
17 |
+
<text transform="matrix(1 0 0 1 1103 2594)" fill="#565656" font-family="'HelveticaNeue'" font-size="12px">Last Name</text>
|
18 |
+
<path id="Rectangle_1014" fill="#FEC42D" d="M1048,2781h95c2.8,0,5,2.2,5,5v17c0,2.8-2.2,5-5,5h-95c-2.8,0-5-2.2-5-5v-17
|
19 |
+
C1043,2783.2,1045.2,2781,1048,2781z"/>
|
20 |
+
<text transform="matrix(1 0 0 1 1082.39 2799)" fill="#FFFFFF" font-family="'HelveticaNeue-Medium'" font-size="10px">SEND</text>
|
21 |
+
<path id="Rectangle_1015" fill="#E5E9EA" d="M1005.5,2705h5c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-5
|
22 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C1003,2706.1,1004.1,2705,1005.5,2705z"/>
|
23 |
+
<path id="Rectangle_1016" fill="#E5E9EA" d="M1005.5,2722h5c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-5
|
24 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C1003,2723.1,1004.1,2722,1005.5,2722z"/>
|
25 |
+
<path id="Rectangle_1017" fill="#E5E9EA" d="M1027.5,2705h35c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-35
|
26 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C1025,2706.1,1026.1,2705,1027.5,2705z"/>
|
27 |
+
<path id="Rectangle_1018" fill="#E5E9EA" d="M1027.5,2722h55c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-55
|
28 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C1025,2723.1,1026.1,2722,1027.5,2722z"/>
|
29 |
+
</g>
|
30 |
+
</svg>
|
templates/27/preview-thumb.svg
ADDED
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 265 300" enable-background="new 0 0 265 300" xml:space="preserve">
|
5 |
+
<g id="Group_72" transform="translate(-1258 -2543)">
|
6 |
+
<path id="Rectangle_1019" fill="#FFFFFF" d="M1263,2543h255c2.8,0,5,2.2,5,5v290c0,2.8-2.2,5-5,5h-255c-2.8,0-5-2.2-5-5v-290
|
7 |
+
C1258,2545.2,1260.2,2543,1263,2543z"/>
|
8 |
+
<path id="Rectangle_1020" fill="#E5E9EA" d="M1300.5,2602h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
9 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C1298,2603.1,1299.1,2602,1300.5,2602z"/>
|
10 |
+
<path id="Rectangle_1021" fill="#E5E9EA" d="M1300.5,2646h180c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-180
|
11 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C1298,2647.1,1299.1,2646,1300.5,2646z"/>
|
12 |
+
<path id="Rectangle_1022" fill="#E5E9EA" d="M1400.5,2602h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
13 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C1398,2603.1,1399.1,2602,1400.5,2602z"/>
|
14 |
+
<text transform="matrix(1 0 0 1 1298 2594)" fill="#565656" font-family="'HelveticaNeue'" font-size="12px">First Name</text>
|
15 |
+
<text transform="matrix(1 0 0 1 1298 2638)" fill="#565656" font-family="'HelveticaNeue'" font-size="12px">Email</text>
|
16 |
+
<text transform="matrix(1 0 0 1 1298 2692)" fill="#565656" font-family="'HelveticaNeue'" font-size="12px">How would you rate your</text>
|
17 |
+
<text transform="matrix(1 0 0 1 1298 2707)" fill="#565656" font-family="'HelveticaNeue'" font-size="12px">experience with us?</text>
|
18 |
+
<text transform="matrix(1 0 0 1 1398 2594)" fill="#565656" font-family="'HelveticaNeue'" font-size="12px">Last Name</text>
|
19 |
+
<path id="Rectangle_1023" fill="#A08DC2" d="M1343,2781h95c2.8,0,5,2.2,5,5v17c0,2.8-2.2,5-5,5h-95c-2.8,0-5-2.2-5-5v-17
|
20 |
+
C1338,2783.2,1340.2,2781,1343,2781z"/>
|
21 |
+
<text transform="matrix(1 0 0 1 1371.8301 2799)" fill="#FFFFFF" font-family="'HelveticaNeue-Medium'" font-size="10px">SUBMIT</text>
|
22 |
+
<path id="Rectangle_1024" fill="#E5E9EA" d="M1300.5,2719h5c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-5
|
23 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C1298,2720.1,1299.1,2719,1300.5,2719z"/>
|
24 |
+
<path id="Rectangle_1028" fill="#E5E9EA" d="M1300.5,2753h5c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-5
|
25 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C1298,2754.1,1299.1,2753,1300.5,2753z"/>
|
26 |
+
<path id="Rectangle_1025" fill="#E5E9EA" d="M1300.5,2736h5c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-5
|
27 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C1298,2737.1,1299.1,2736,1300.5,2736z"/>
|
28 |
+
<path id="Rectangle_1026" fill="#E5E9EA" d="M1320.5,2719h35c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-35
|
29 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C1318,2720.1,1319.1,2719,1320.5,2719z"/>
|
30 |
+
<path id="Rectangle_1029" fill="#E5E9EA" d="M1320.5,2753h75c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-75
|
31 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C1318,2754.1,1319.1,2753,1320.5,2753z"/>
|
32 |
+
<path id="Rectangle_1027" fill="#E5E9EA" d="M1320.5,2736h55c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-55
|
33 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C1318,2737.1,1319.1,2736,1320.5,2736z"/>
|
34 |
+
</g>
|
35 |
+
</svg>
|
templates/28/preview-thumb.svg
ADDED
@@ -0,0 +1,150 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 265 300" enable-background="new 0 0 265 300" xml:space="preserve">
|
5 |
+
<g>
|
6 |
+
<path id="Rectangle_1030" fill="#FFFFFF" d="M5,0h255c2.8,0,5,2.2,5,5v290c0,2.8-2.2,5-5,5H5c-2.8,0-5-2.2-5-5V5C0,2.2,2.2,0,5,0z"
|
7 |
+
/>
|
8 |
+
<path id="Rectangle_1031" fill="#E5E9EA" d="M42.5,59h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
9 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,60.1,41.1,59,42.5,59z"/>
|
10 |
+
<path id="Rectangle_1032" fill="#E5E9EA" d="M42.5,103h180c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-180
|
11 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,104.1,41.1,103,42.5,103z"/>
|
12 |
+
<path id="Rectangle_1033" fill="#E5E9EA" d="M142.5,59h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
13 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C140,60.1,141.1,59,142.5,59z"/>
|
14 |
+
<text transform="matrix(1 0 0 1 40 51)" fill="#565656" font-family="'HelveticaNeue'" font-size="12px">First Name</text>
|
15 |
+
<text transform="matrix(1 0 0 1 40 95)" fill="#565656" font-family="'HelveticaNeue'" font-size="12px">Email</text>
|
16 |
+
<text transform="matrix(1 0 0 1 40 149)" fill="#565656" font-family="'HelveticaNeue'" font-size="12px">How would you rate your</text>
|
17 |
+
<text transform="matrix(1 0 0 1 40 164)" fill="#565656" font-family="'HelveticaNeue'" font-size="12px">experience with us?</text>
|
18 |
+
<text transform="matrix(1 0 0 1 140 51)" fill="#565656" font-family="'HelveticaNeue'" font-size="12px">Last Name</text>
|
19 |
+
<path id="Rectangle_1038" fill="#377DFF" d="M85,238h95c2.8,0,5,2.2,5,5v17c0,2.8-2.2,5-5,5H85c-2.8,0-5-2.2-5-5v-17
|
20 |
+
C80,240.2,82.2,238,85,238z"/>
|
21 |
+
<text transform="matrix(1 0 0 1 113.83 256)" fill="#FFFFFF" font-family="'HelveticaNeue-Medium'" font-size="10px">SUBMIT</text>
|
22 |
+
<g>
|
23 |
+
<g>
|
24 |
+
<g>
|
25 |
+
<g>
|
26 |
+
<path fill="#FFDE46" d="M68.6,192.4c-4.1,0-7.5-3.4-7.5-7.5s3.4-7.5,7.5-7.5s7.5,3.4,7.5,7.5S72.7,192.4,68.6,192.4z"/>
|
27 |
+
</g>
|
28 |
+
</g>
|
29 |
+
<g>
|
30 |
+
<path fill="#FFCD00" d="M68.6,177.4v15c4.1,0,7.5-3.4,7.5-7.5S72.7,177.4,68.6,177.4z"/>
|
31 |
+
</g>
|
32 |
+
<g>
|
33 |
+
<path fill="#00347B" d="M71.2,188.2c-0.1,0-0.3-0.1-0.4-0.2c-0.5-0.8-1.3-1.3-2.3-1.3c-0.9,0-1.8,0.5-2.3,1.3
|
34 |
+
c-0.1,0.2-0.4,0.3-0.6,0.2s-0.3-0.4-0.2-0.6c0.6-1.1,1.8-1.7,3-1.7s2.4,0.7,3,1.7C71.5,187.8,71.5,188.1,71.2,188.2
|
35 |
+
C71.4,188.2,71.3,188.2,71.2,188.2L71.2,188.2z"/>
|
36 |
+
</g>
|
37 |
+
<g>
|
38 |
+
<path fill="#00347B" d="M65.8,184.7c-0.8,0-1.6-0.5-1.8-1.3c-0.1-0.2,0-0.5,0.3-0.6c0.2-0.1,0.5,0,0.6,0.3
|
39 |
+
c0.1,0.4,0.5,0.7,1,0.7c0.4,0,0.8-0.3,1-0.7c0.1-0.2,0.3-0.4,0.6-0.3c0.2,0.1,0.4,0.3,0.3,0.6C67.4,184.1,66.6,184.7,65.8,184.7
|
40 |
+
L65.8,184.7z"/>
|
41 |
+
</g>
|
42 |
+
<g>
|
43 |
+
<path fill="#001737" d="M71.4,184.7c-0.8,0-1.6-0.5-1.8-1.3c-0.1-0.2,0-0.5,0.3-0.6c0.2-0.1,0.5,0,0.6,0.3
|
44 |
+
c0.1,0.4,0.5,0.7,1,0.7c0.4,0,0.8-0.3,1-0.7c0.1-0.2,0.3-0.4,0.6-0.3c0.2,0.1,0.4,0.3,0.3,0.6C72.9,184.1,72.2,184.7,71.4,184.7
|
45 |
+
L71.4,184.7z"/>
|
46 |
+
</g>
|
47 |
+
<path fill="#001737" d="M71.6,187.5c-0.6-1.1-1.8-1.7-3-1.7v0.9c0.9,0,1.8,0.5,2.3,1.3c0.1,0.1,0.2,0.2,0.4,0.2
|
48 |
+
c0.1,0,0.2,0,0.2-0.1C71.7,188,71.7,187.7,71.6,187.5z"/>
|
49 |
+
</g>
|
50 |
+
<g>
|
51 |
+
<g>
|
52 |
+
<path fill="#FFDE46" d="M47.5,192.4c-4.1,0-7.5-3.4-7.5-7.5s3.4-7.5,7.5-7.5s7.5,3.4,7.5,7.5S51.7,192.4,47.5,192.4z"/>
|
53 |
+
</g>
|
54 |
+
<path fill="#FFCD00" d="M47.5,177.4v15c4.1,0,7.5-3.4,7.5-7.5S51.7,177.4,47.5,177.4z"/>
|
55 |
+
<path fill="#00347B" d="M45.1,189.1c-0.6-0.2-1-0.8-1-1.5s0.4-1.2,1-1.5c0.2-0.1,4.7-0.1,4.9,0c0.6,0.2,1,0.8,1,1.5
|
56 |
+
s-0.4,1.2-1,1.5C49.8,189.1,45.3,189.1,45.1,189.1z"/>
|
57 |
+
<path fill="#001737" d="M50,186.1c-0.1,0-1.3-0.1-2.5-0.1v3c1.2,0,2.4,0,2.5-0.1c0.6-0.2,1-0.8,1-1.5S50.6,186.4,50,186.1
|
58 |
+
L50,186.1z"/>
|
59 |
+
<g>
|
60 |
+
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFF4F4" d="M49.4,186h-3.8c-0.2,0-0.4,0-0.6,0.1v1c0,0.2,0.2,0.4,0.4,0.4
|
61 |
+
h4c0.2,0,0.4-0.2,0.4-0.4v-1C49.8,186.1,49.6,186,49.4,186L49.4,186z"/>
|
62 |
+
<path fill-rule="evenodd" clip-rule="evenodd" fill="#F6EFEA" d="M49.6,187.6h-4c-0.2,0-0.4,0.2-0.4,0.4v1
|
63 |
+
c0.2,0.1,0.4,0.1,0.6,0.1h3.8c0.2,0,0.4,0,0.6-0.1v-1C50,187.8,49.8,187.6,49.6,187.6L49.6,187.6z"/>
|
64 |
+
<ellipse fill-rule="evenodd" clip-rule="evenodd" fill="#00347B" cx="45.1" cy="182.9" rx="1.1" ry="1.1"/>
|
65 |
+
</g>
|
66 |
+
<path fill="#FFF4F4" d="M45.1,184.5c-0.8,0-1.5-0.7-1.5-1.5s0.7-1.5,1.5-1.5s1.5,0.7,1.5,1.5S45.9,184.5,45.1,184.5z M45.1,182.3
|
67 |
+
c-0.3,0-0.6,0.3-0.6,0.6s0.3,0.6,0.6,0.6s0.6-0.3,0.6-0.6S45.4,182.3,45.1,182.3z"/>
|
68 |
+
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#001737" cx="50" cy="182.9" r="1.1"/>
|
69 |
+
<path fill="#F6EFEA" d="M50,184.5c-0.8,0-1.5-0.7-1.5-1.5s0.7-1.5,1.5-1.5s1.5,0.7,1.5,1.5S50.9,184.5,50,184.5z M50,182.3
|
70 |
+
c-0.3,0-0.6,0.3-0.6,0.6s0.3,0.6,0.6,0.6s0.6-0.3,0.6-0.6S50.4,182.3,50,182.3z"/>
|
71 |
+
<path fill-rule="evenodd" clip-rule="evenodd" fill="#F6EFEA" d="M49.4,186h-1.9v1.6h2c0.2,0,0.4-0.2,0.4-0.4v-1
|
72 |
+
C49.8,186.1,49.6,186,49.4,186L49.4,186z"/>
|
73 |
+
<path fill-rule="evenodd" clip-rule="evenodd" fill="#EEE1DC" d="M49.6,187.6h-2v1.6h1.9c0.2,0,0.4,0,0.6-0.1v-1
|
74 |
+
C50,187.8,49.8,187.6,49.6,187.6z"/>
|
75 |
+
</g>
|
76 |
+
<g>
|
77 |
+
<g>
|
78 |
+
<path fill="#FFDE46" d="M89.6,192.4c-4.1,0-7.5-3.4-7.5-7.5s3.4-7.5,7.5-7.5s7.5,3.4,7.5,7.5S93.8,192.4,89.6,192.4z"/>
|
79 |
+
</g>
|
80 |
+
<path fill="#FFCD00" d="M89.6,177.4v15c4.1,0,7.5-3.4,7.5-7.5S93.8,177.4,89.6,177.4z"/>
|
81 |
+
<g>
|
82 |
+
<path fill="#00347B" d="M92.3,188.2H87c-0.2,0-0.4-0.2-0.4-0.4s0.2-0.4,0.4-0.4h5.3c0.2,0,0.4,0.2,0.4,0.4
|
83 |
+
S92.5,188.2,92.3,188.2z"/>
|
84 |
+
</g>
|
85 |
+
<ellipse fill-rule="evenodd" clip-rule="evenodd" fill="#00347B" cx="87.1" cy="182.9" rx="1.1" ry="1.1"/>
|
86 |
+
<path fill="#FFF4F4" d="M87.1,184.5c-0.8,0-1.5-0.7-1.5-1.5s0.7-1.5,1.5-1.5s1.5,0.7,1.5,1.5S88,184.5,87.1,184.5z M87.1,182.3
|
87 |
+
c-0.3,0-0.6,0.3-0.6,0.6s0.3,0.6,0.6,0.6s0.6-0.3,0.6-0.6S87.5,182.3,87.1,182.3z"/>
|
88 |
+
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#001737" cx="92.1" cy="182.9" r="1.1"/>
|
89 |
+
<path fill="#F6EFEA" d="M92.1,184.5c-0.8,0-1.5-0.7-1.5-1.5s0.7-1.5,1.5-1.5s1.5,0.7,1.5,1.5S92.9,184.5,92.1,184.5z M92.1,182.3
|
90 |
+
c-0.3,0-0.6,0.3-0.6,0.6s0.3,0.6,0.6,0.6c0.3,0,0.6-0.3,0.6-0.6S92.4,182.3,92.1,182.3z"/>
|
91 |
+
<g>
|
92 |
+
<ellipse fill-rule="evenodd" clip-rule="evenodd" fill="#00347B" cx="87.1" cy="182.9" rx="1.1" ry="1.1"/>
|
93 |
+
<path fill="#FFF4F4" d="M87.1,184.5c-0.8,0-1.5-0.7-1.5-1.5s0.7-1.5,1.5-1.5s1.5,0.7,1.5,1.5S88,184.5,87.1,184.5z M87.1,182.3
|
94 |
+
c-0.3,0-0.6,0.3-0.6,0.6s0.3,0.6,0.6,0.6s0.6-0.3,0.6-0.6S87.5,182.3,87.1,182.3z"/>
|
95 |
+
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#001737" cx="92.1" cy="182.9" r="1.1"/>
|
96 |
+
<path fill="#F6EFEA" d="M92.1,184.5c-0.8,0-1.5-0.7-1.5-1.5s0.7-1.5,1.5-1.5s1.5,0.7,1.5,1.5S92.9,184.5,92.1,184.5z
|
97 |
+
M92.1,182.3c-0.3,0-0.6,0.3-0.6,0.6s0.3,0.6,0.6,0.6c0.3,0,0.6-0.3,0.6-0.6S92.4,182.3,92.1,182.3z"/>
|
98 |
+
</g>
|
99 |
+
<path fill="#001737" d="M92.3,187.3h-2.6v0.9h2.6c0.2,0,0.4-0.2,0.4-0.4S92.5,187.3,92.3,187.3z"/>
|
100 |
+
</g>
|
101 |
+
<g>
|
102 |
+
<g>
|
103 |
+
<path fill="#FFDE46" d="M110.7,192.4c-4.1,0-7.5-3.4-7.5-7.5s3.4-7.5,7.5-7.5s7.5,3.4,7.5,7.5S114.8,192.4,110.7,192.4z"/>
|
104 |
+
</g>
|
105 |
+
<path fill="#FFCD00" d="M110.7,177.4v15c4.1,0,7.5-3.4,7.5-7.5S114.8,177.4,110.7,177.4z"/>
|
106 |
+
<g>
|
107 |
+
<ellipse fill-rule="evenodd" clip-rule="evenodd" fill="#00429D" cx="108.2" cy="182.9" rx="1.1" ry="1.1"/>
|
108 |
+
<path fill="#FFF4F4" d="M108.2,184.5c-0.8,0-1.5-0.7-1.5-1.5s0.7-1.5,1.5-1.5s1.5,0.7,1.5,1.5S109,184.5,108.2,184.5z
|
109 |
+
M108.2,182.3c-0.3,0-0.6,0.3-0.6,0.6s0.3,0.6,0.6,0.6s0.6-0.3,0.6-0.6S108.5,182.3,108.2,182.3z"/>
|
110 |
+
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#00347B" cx="113.1" cy="182.9" r="1.1"/>
|
111 |
+
<path fill="#F6EFEA" d="M113.1,184.5c-0.8,0-1.5-0.7-1.5-1.5s0.7-1.5,1.5-1.5s1.5,0.7,1.5,1.5S114,184.5,113.1,184.5z
|
112 |
+
M113.1,182.3c-0.3,0-0.6,0.3-0.6,0.6s0.3,0.6,0.6,0.6c0.3,0,0.6-0.3,0.6-0.6S113.5,182.3,113.1,182.3z"/>
|
113 |
+
</g>
|
114 |
+
<g>
|
115 |
+
<path fill="#00347B" d="M110.7,188.9c-0.8,0-1.6,1-2.3,0.5c-0.9-0.7-1.4-1.7-1.4-2.9v-0.1c0-0.1,0.1-0.2,0.2-0.2h7
|
116 |
+
c0.1,0,0.2,0.1,0.2,0.2v0.1c0,1.2-0.6,2.3-1.4,2.9C112.3,189.9,111.5,188.9,110.7,188.9z"/>
|
117 |
+
</g>
|
118 |
+
<path fill="#001737" d="M114.1,186.2h-3.5v2.7c0.8,0,1.6,1,2.3,0.5c0.9-0.7,1.4-1.7,1.4-2.9v-0.1
|
119 |
+
C114.4,186.3,114.3,186.2,114.1,186.2z"/>
|
120 |
+
<path fill="#FF3F5C" d="M108.4,189.4c0.6,0.5,1.4,0.8,2.3,0.8s1.6-0.3,2.3-0.8c-0.2-0.8-1.1-1.5-2.3-1.5S108.6,188.6,108.4,189.4
|
121 |
+
z"/>
|
122 |
+
<path fill="#D20763" d="M110.7,190.2c0.8,0,1.6-0.3,2.3-0.8c-0.2-0.8-1.1-1.5-2.3-1.5V190.2z"/>
|
123 |
+
</g>
|
124 |
+
<g>
|
125 |
+
<g>
|
126 |
+
<path fill="#FFDE46" d="M131.7,192.4c-4.1,0-7.5-3.4-7.5-7.5s3.4-7.5,7.5-7.5s7.5,3.4,7.5,7.5S135.8,192.4,131.7,192.4z"/>
|
127 |
+
</g>
|
128 |
+
<path fill="#FFCD00" d="M131.7,177.4v15c4.1,0,7.5-3.4,7.5-7.5S135.8,177.4,131.7,177.4z"/>
|
129 |
+
<g>
|
130 |
+
<path fill="#FF3F5C" d="M129.4,184.7L129.4,184.7c-0.7-0.2-2.3-0.9-2.5-1.8c-0.1-0.3,0-0.6,0.1-0.9c0.2-0.3,0.4-0.5,0.7-0.5
|
131 |
+
c0.3-0.1,0.7,0,1,0.2c0.1-0.3,0.4-0.5,0.7-0.6c0.3-0.1,0.6,0,0.9,0.1c0.3,0.2,0.5,0.4,0.5,0.7c0.2,0.9-1,2.5-1.2,2.8
|
132 |
+
C129.5,184.7,129.5,184.7,129.4,184.7z M127.8,181.7L127.8,181.7L127.8,181.7z"/>
|
133 |
+
</g>
|
134 |
+
<g>
|
135 |
+
<path fill="#D20763" d="M134,184.7c-0.1,0-0.1,0-0.2-0.1c-0.3-0.3-1.5-1.9-1.2-2.8c0.2-0.6,0.8-1,1.4-0.8
|
136 |
+
c0.3,0.1,0.6,0.3,0.7,0.6c0.3-0.2,0.6-0.3,1-0.2c0.6,0.2,1,0.8,0.8,1.4C136.3,183.8,134.7,184.6,134,184.7L134,184.7z"/>
|
137 |
+
</g>
|
138 |
+
<g>
|
139 |
+
<path fill="#00347B" d="M131.7,189.1c-0.8,0-1.6,1-2.3,0.5c-0.9-0.7-1.4-1.7-1.4-2.9v-0.1c0-0.1,0.1-0.2,0.2-0.2h7
|
140 |
+
c0.1,0,0.2,0.1,0.2,0.2v0.1c0,1.2-0.6,2.3-1.4,2.9C133.3,190,132.5,189.1,131.7,189.1z"/>
|
141 |
+
</g>
|
142 |
+
<path fill="#001737" d="M135.2,186.3h-3.5v2.7c0.8,0,1.6,1,2.3,0.5c0.9-0.7,1.4-1.7,1.4-2.9v-0.1
|
143 |
+
C135.4,186.4,135.3,186.3,135.2,186.3z"/>
|
144 |
+
<path fill="#FF3F5C" d="M129.4,189.5c0.6,0.5,1.4,0.8,2.3,0.8c0.9,0,1.6-0.3,2.3-0.8c-0.2-0.8-1.1-1.5-2.3-1.5
|
145 |
+
C130.6,188.1,129.6,188.7,129.4,189.5z"/>
|
146 |
+
<path fill="#D20763" d="M131.7,190.3c0.8,0,1.6-0.3,2.3-0.8c-0.2-0.8-1.1-1.5-2.3-1.5V190.3z"/>
|
147 |
+
</g>
|
148 |
+
</g>
|
149 |
+
</g>
|
150 |
+
</svg>
|
templates/29/preview-thumb.svg
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 265 300" enable-background="new 0 0 265 300" xml:space="preserve">
|
5 |
+
<g id="Group_71" transform="translate(-373 -3001)">
|
6 |
+
<path id="Rectangle_1039" fill="#FFFFFF" d="M378,3001h255c2.8,0,5,2.2,5,5v290c0,2.8-2.2,5-5,5H378c-2.8,0-5-2.2-5-5v-290
|
7 |
+
C373,3003.2,375.2,3001,378,3001z"/>
|
8 |
+
<path id="Rectangle_1040" fill="#E5E9EA" d="M415.5,3060h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
9 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C413,3061.1,414.1,3060,415.5,3060z"/>
|
10 |
+
<path id="Rectangle_1041" fill="#E5E9EA" d="M415.5,3104h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
11 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C413,3105.1,414.1,3104,415.5,3104z"/>
|
12 |
+
<path id="Rectangle_1048" fill="#E5E9EA" d="M515.5,3104h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
13 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C513,3105.1,514.1,3104,515.5,3104z"/>
|
14 |
+
<path id="Rectangle_1042" fill="#E5E9EA" d="M515.5,3060h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
15 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C513,3061.1,514.1,3060,515.5,3060z"/>
|
16 |
+
<text transform="matrix(1 0 0 1 413 3052)" fill="#565656" font-family="'HelveticaNeue'" font-size="12px">First Name</text>
|
17 |
+
<text transform="matrix(1 0 0 1 413 3096)" fill="#565656" font-family="'HelveticaNeue'" font-size="12px">Email</text>
|
18 |
+
<text transform="matrix(1 0 0 1 513 3096)" fill="#565656" font-family="'HelveticaNeue'" font-size="12px">Phone</text>
|
19 |
+
<text transform="matrix(1 0 0 1 413 3150)" fill="#565656" font-family="'HelveticaNeue'" font-size="12px">Transport Type</text>
|
20 |
+
<text transform="matrix(1 0 0 1 513 3052)" fill="#565656" font-family="'HelveticaNeue'" font-size="12px">Last Name</text>
|
21 |
+
<path id="Rectangle_1043" fill="#CDAF90" d="M458,3239h95c2.8,0,5,2.2,5,5v17c0,2.8-2.2,5-5,5h-95c-2.8,0-5-2.2-5-5v-17
|
22 |
+
C453,3241.2,455.2,3239,458,3239z"/>
|
23 |
+
<text transform="matrix(1 0 0 1 486.83 3257)" fill="#FFFFFF" font-family="'HelveticaNeue-Medium'" font-size="10px">SUBMIT</text>
|
24 |
+
<path id="Rectangle_1044" fill="#E5E9EA" d="M415.5,3163h5c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-5
|
25 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C413,3164.1,414.1,3163,415.5,3163z"/>
|
26 |
+
<path id="Rectangle_1045" fill="#E5E9EA" d="M415.5,3180h5c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-5
|
27 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C413,3181.1,414.1,3180,415.5,3180z"/>
|
28 |
+
<path id="Rectangle_1046" fill="#E5E9EA" d="M437.5,3163h35c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-35
|
29 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C435,3164.1,436.1,3163,437.5,3163z"/>
|
30 |
+
<path id="Rectangle_1047" fill="#E5E9EA" d="M437.5,3180h55c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-55
|
31 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C435,3181.1,436.1,3180,437.5,3180z"/>
|
32 |
+
</g>
|
33 |
+
</svg>
|
templates/3/content.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"version":"0.4","title":"Booking Form","type":"page","content":[{"id":"434f","settings":{"gap":"no","box_shadow_box_shadow":{"horizontal":30,"vertical":30,"blur":80,"spread":0,"color":"rgba(0,0,0,0.1)"}},"elements":[{"id":"39ae","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"5dbd","settings":{"gap":"extended","structure":"20"},"elements":[{"id":"4726","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"1a81","settings":{"mf_input_label":"First Name","mf_input_name":"mf-first-name","mf_input_placeholder":"Anderson","mf_input_help_text":"Enter your first name here","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_min_length":1,"mf_input_label_color":"#101010","mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_input_required":"yes","mf_input_required_indicator_color":"#101010"},"elements":[],"isInner":false,"widgetType":"mf-text","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"2114","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"f67","settings":{"mf_input_label":"Last Name","mf_input_name":"mf-last-name","mf_input_placeholder":"Mikoo","mf_input_help_text":"Enter your last name here","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_input_required":"yes","mf_input_required_indicator_color":"#101010"},"elements":[],"isInner":false,"widgetType":"mf-text","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"14fe","settings":{"gap":"extended","structure":"20"},"elements":[{"id":"3b03","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"2fb2","settings":{"mf_input_label":"Mobile Number","mf_input_name":"mf-tel","mf_input_placeholder":"","mf_input_help_text":"Example: +1 212-695-1962","mf_input_required":"yes","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-telephone","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"18b9","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"3a80","settings":{"mf_input_label":"Email Address","mf_input_name":"mf-email","mf_input_placeholder":"","mf_input_help_text":"Example: user@website.com","mf_input_required":"yes","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-email","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"77b","settings":{"gap":"extended","structure":"20"},"elements":[{"id":"7eac","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"45f","settings":{"mf_input_label":"Check in Date","mf_input_name":"mf-checkin-date","mf_input_required":"yes","mf_input_min_date":"yes","mf_input_default_date":"","mf_input_date_format_all":"d-m-Y","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_input_placeholder":"DD - MM - YYYY"},"elements":[],"isInner":false,"widgetType":"mf-date","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"30a","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"775","settings":{"mf_input_label":"Check out Date","mf_input_name":"mf-checkout-date","mf_input_required":"yes","mf_input_date_format_all":"d-m-Y","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_input_placeholder":"DD - MM - YYYY"},"elements":[],"isInner":false,"widgetType":"mf-date","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"7744","settings":{"gap":"extended","structure":"20"},"elements":[{"id":"25f1","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"5998","settings":{"mf_input_label":"Number of Adults","mf_input_name":"mf-adults","mf_input_placeholder":"","mf_input_required":"yes","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-number","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"2057","settings":{"_column_size":50,"_inline_size":null,"margin":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"45d6","settings":{"mf_input_label":"Number of Children","mf_input_name":"mf-childs","mf_input_placeholder":"","mf_input_required":"","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-number","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"2229","settings":{"gap":"extended"},"elements":[{"id":"43b0","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0,"margin":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"302d","settings":{"mf_input_label":"Write your comment here","mf_input_name":"mf-comment","mf_input_placeholder":"","mf_input_required":"yes","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_textarea_field_height":{"unit":"px","size":140,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"mf-textarea","elType":"widget"},{"id":"6962","settings":{"mf_btn_text":"Submit","mf_btn_align":"left","mf_btn_text_padding":{"unit":"px","top":"15","right":"50","bottom":"15","left":"50","isLinked":false},"mf_btn_typography_typography":"custom","mf_btn_typography_font_family":"Helvetica","mf_btn_typography_font_size":{"unit":"px","size":16,"sizes":[]},"mf_btn_typography_font_weight":"500","mf_btn_typography_line_height":{"unit":"px","size":18,"sizes":[]},"mf_btn_bg_color_background":"classic","mf_btn_bg_color_color":"#4285f4","mf_btn_border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"mf_btn_box_shadow_group_box_shadow_type":"yes","mf_btn_box_shadow_group_box_shadow":{"horizontal":0,"vertical":7,"blur":15,"spread":0,"color":"rgba(66,133,244,0.3)"},"_margin":{"unit":"px","top":"40","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-button","elType":"widget"},{"id":"6af3","settings":{"_padding":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false},"_margin":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-response","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}]}
|
1 |
+
{"version":"0.4","title":"Simple Contact Form 3","type":"page","content":[{"id":"5f0076de","settings":{"gap":"no","box_shadow_box_shadow":{"horizontal":30,"vertical":30,"blur":80,"spread":0,"color":"rgba(0,0,0,0.1)"},"background_background":"classic","background_color":"#ffffff","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","padding":{"unit":"px","top":"33","right":"35","bottom":"15","left":"35","isLinked":false},"padding_tablet":{"unit":"px","top":"33","right":"15","bottom":"35","left":"15","isLinked":false}},"elements":[{"id":"67212113","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"3c8dd57d","settings":{"gap":"extended"},"elements":[{"id":"454141b9","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"b764cee","settings":{"title":"Your Details","title_color":"#101010","typography_typography":"custom","typography_font_family":"Helvetica","typography_font_size":{"unit":"px","size":20,"sizes":[]},"typography_font_weight":"700","typography_line_height":{"unit":"px","size":21,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"heading","elType":"widget"},{"id":"750decaa","settings":{"title":"Let us know how to get back to you.","header_size":"p","title_color":"#999999","typography_typography":"custom","typography_font_family":"Helvetica","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"400","typography_line_height":{"unit":"px","size":18,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"10","left":"0","isLinked":false},"_padding":{"unit":"px","top":"5","right":"0","bottom":"11","left":"0","isLinked":false},"_border_border":"solid","_border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"_border_color":"#e9e9e9"},"elements":[],"isInner":false,"widgetType":"heading","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"2c8faa55","settings":{"gap":"extended","structure":"20"},"elements":[{"id":"14feb198","settings":{"_column_size":50,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"38136ab7","settings":{"mf_input_label":"First Name","mf_input_name":"mf-first-name","mf_input_placeholder":"Anderson","mf_input_help_text":"Enter your first name here","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_min_length":1,"mf_input_label_color":"#101010","mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_input_required":"yes","mf_input_required_indicator_color":"#101010","mf_input_validation_warning_message":"Something went wrong."},"elements":[],"isInner":false,"widgetType":"mf-text","elType":"widget"}],"isInner":true,"elType":"column"},{"id":"7396c456","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"74962a24","settings":{"mf_input_label":"Last Name","mf_input_name":"mf-last-name","mf_input_placeholder":"Mikoo","mf_input_help_text":"Enter your last name here","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_input_required":"yes","mf_input_required_indicator_color":"#101010","mf_input_validation_warning_message":"Something went wrong."},"elements":[],"isInner":false,"widgetType":"mf-text","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"6f9de0af","settings":{"gap":"extended","padding":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"41eb6ed6","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"61be832b","settings":{"mf_input_label":"Email Address","mf_input_name":"mf-email","mf_input_placeholder":"","mf_input_help_text":"Example: user@website.com","mf_input_required":"yes","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_input_validation_warning_message":"Something went wrong."},"elements":[],"isInner":false,"widgetType":"mf-email","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"},{"id":"79f9b085","settings":{"gap":"extended","padding":{"unit":"px","top":"7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"6325eb8a","settings":{"_column_size":100,"_inline_size":null,"space_between_widgets":0},"elements":[{"id":"2c5db46","settings":{"title":"How can we help?","title_color":"#101010","typography_typography":"custom","typography_font_family":"Helvetica","typography_font_size":{"unit":"px","size":20,"sizes":[]},"typography_font_weight":"700","typography_line_height":{"unit":"px","size":21,"sizes":[]},"_padding":{"unit":"px","top":"1","right":"0","bottom":"5","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"heading","elType":"widget"},{"id":"3cd7031f","settings":{"title":"Feel free to ask a question or simply leave a comment","header_size":"p","title_color":"#999999","typography_typography":"custom","typography_font_family":"Helvetica","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"400","typography_line_height":{"unit":"px","size":18,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"40","left":"0","isLinked":false},"_padding":{"unit":"px","top":"5","right":"0","bottom":"11","left":"0","isLinked":false},"_border_border":"solid","_border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"_border_color":"#e9e9e9"},"elements":[],"isInner":false,"widgetType":"heading","elType":"widget"},{"id":"45d5d908","settings":{"mf_input_label":"Subject","mf_input_name":"mf-subject","mf_input_placeholder":"","mf_input_help_text":"How can we help you?","mf_input_required":"yes","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_input_validation_warning_message":"Something went wrong."},"elements":[],"isInner":false,"widgetType":"mf-text","elType":"widget"},{"id":"76714b0c","settings":{"mf_input_label":"Comments \/ Questions","mf_input_name":"mf-comment","mf_input_placeholder":"","mf_input_required":"yes","mf_input_label_color":"#101010","mf_input_label_typography_typography":"custom","mf_input_label_typography_font_family":"Helvetica","mf_input_label_typography_font_size":{"unit":"px","size":18,"sizes":[]},"mf_input_label_typography_font_weight":"500","mf_input_label_typography_line_height":{"unit":"px","size":21,"sizes":[]},"mf_input_label_margin":{"unit":"px","top":"0","right":"0","bottom":"5","left":"0","isLinked":false},"mf_input_required_indicator_color":"#101010","mf_input_padding":{"unit":"px","top":"15","right":"25","bottom":"15","left":"25","isLinked":false},"mf_input_color":"#101010","mf_input_border_border":"solid","mf_input_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"mf_input_border_color":"#ededed","mf_input_typgraphy_typography":"custom","mf_input_typgraphy_font_family":"Helvetica","mf_input_typgraphy_font_size":{"unit":"px","size":14,"sizes":[]},"mf_input_typgraphy_font_weight":"400","mf_input_typgraphy_line_height":{"unit":"px","size":15,"sizes":[]},"mf_input_border_radius":{"unit":"px","size":5,"sizes":[]},"mf_input_box_shadow_box_shadow_type":"yes","mf_input_box_shadow_box_shadow":{"horizontal":0,"vertical":3,"blur":5,"spread":0,"color":"rgba(0,0,0,0.05)"},"mf_input_place_holder_typography_typography":"custom","mf_input_place_holder_typography_font_family":"Helvetica","mf_input_place_holder_typography_font_weight":"400","mf_input_placeholder_color":"#999999","mf_input_help_text_typography_typography":"custom","mf_input_help_text_typography_font_family":"Helvetica","mf_input_help_text_typography_font_size":{"unit":"px","size":12,"sizes":[]},"mf_input_help_text_typography_font_weight":"400","mf_input_help_text_typography_font_style":"italic","mf_input_help_text_typography_line_height":{"unit":"px","size":14,"sizes":[]},"mf_input_help_text_padding":{"unit":"px","top":"3","right":"0","bottom":"0","left":"0","isLinked":false},"mf_textarea_field_height":{"unit":"px","size":140,"sizes":[]},"_padding":{"unit":"px","top":"37","right":"0","bottom":"0","left":"0","isLinked":false},"mf_input_validation_warning_message":"Something went wrong."},"elements":[],"isInner":false,"widgetType":"mf-textarea","elType":"widget"},{"id":"5a5cb0ba","settings":{"mf_btn_text":"Send Message","mf_btn_align":"left","mf_btn_text_padding":{"unit":"px","top":"15","right":"20","bottom":"15","left":"20","isLinked":false},"mf_btn_typography_typography":"custom","mf_btn_typography_font_family":"Helvetica","mf_btn_typography_font_size":{"unit":"px","size":16,"sizes":[]},"mf_btn_typography_font_weight":"500","mf_btn_typography_line_height":{"unit":"px","size":18,"sizes":[]},"mf_btn_bg_color_background":"classic","mf_btn_bg_color_color":"#4285f4","mf_btn_box_shadow_group_box_shadow_type":"yes","mf_btn_box_shadow_group_box_shadow":{"horizontal":0,"vertical":7,"blur":15,"spread":0,"color":"rgba(66,133,244,0.3)"},"_margin":{"unit":"px","top":"40","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"isInner":false,"widgetType":"mf-button","elType":"widget"},{"id":"9fc125f","settings":{"_padding":{"unit":"px","top":"0","right":"15","bottom":"0","left":"15","isLinked":false},"_margin":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false},"mf_response_padding":{"unit":"px","top":"12","right":"30","bottom":"12","left":"30","isLinked":false},"mf_response_typography_typography":"custom","mf_response_typography_font_family":"Helvetica","mf_response_typography_font_size":{"unit":"px","size":16,"sizes":[]},"mf_response_typography_font_weight":"500","mf_response_typography_line_height":{"unit":"px","size":21,"sizes":[]}},"elements":[],"isInner":false,"widgetType":"mf-response","elType":"widget"}],"isInner":true,"elType":"column"}],"isInner":true,"elType":"section"}],"isInner":false,"elType":"column"}],"isInner":false,"elType":"section"}]}
|
templates/3/preview-thumb.svg
CHANGED
@@ -1,156 +1,235 @@
|
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
2 |
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
-
viewBox="0 0
|
5 |
<g>
|
6 |
-
<path id="
|
7 |
/>
|
8 |
-
<path id="
|
9 |
-
c-1.4,0-2.5-1.1-2.5-2.5l0,
|
10 |
-
<path id="
|
11 |
-
c-1.4,0-2.5-1.1-2.5-2.5l0,
|
12 |
-
<path id="
|
13 |
-
c-1.4,0-2.5-1.1-2.5-2.5l0,
|
14 |
-
<path id="
|
15 |
-
|
16 |
-
<path id="Rectangle_598" fill="#DDE1E3" d="M91.5,31h55c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-55
|
17 |
-
c-1.4,0-2.5-1.1-2.5-2.5l0,0C89,32.1,90.1,31,91.5,31z"/>
|
18 |
-
<path id="Rectangle_600" fill="#DDE1E3" d="M91.5,65h55c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-55
|
19 |
-
c-1.4,0-2.5-1.1-2.5-2.5l0,0C89,66.1,90.1,65,91.5,65z"/>
|
20 |
-
<path id="Rectangle_602" fill="#DDE1E3" d="M91.5,99h55c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-55
|
21 |
-
c-1.4,0-2.5-1.1-2.5-2.5l0,0C89,100.1,90.1,99,91.5,99z"/>
|
22 |
-
<path id="Rectangle_604" fill="#DDE1E3" d="M91.5,133h55c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-55
|
23 |
-
c-1.4,0-2.5-1.1-2.5-2.5l0,0C89,134.1,90.1,133,91.5,133z"/>
|
24 |
<g enable-background="new ">
|
25 |
-
<path fill="#565656" d="
|
26 |
-
<path fill="#565656" d="
|
27 |
-
<path fill="#565656" d="
|
28 |
-
c-0.
|
29 |
-
<path fill="#565656" d="
|
30 |
-
c0.
|
31 |
-
c-0.
|
32 |
-
c0.1-0.2,0.3-0.
|
33 |
-
|
34 |
-
c-0.
|
35 |
-
c0.2,0.1,0.3,0.
|
36 |
-
|
37 |
-
c-0.3,0-0.
|
38 |
-
|
39 |
-
<path fill="#565656" d="
|
40 |
-
|
41 |
-
|
42 |
-
<path fill="#565656" d="
|
43 |
-
|
44 |
-
c-0.
|
45 |
-
c0-0.
|
46 |
-
|
47 |
-
|
48 |
-
c0.1
|
49 |
-
|
50 |
-
c-0.1,0.1-0.2,0.
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
c0.
|
55 |
-
|
56 |
-
c-0.
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
c0.3
|
62 |
-
c0
|
63 |
-
|
64 |
-
|
65 |
-
C62.6,21.7,62.5,21.5,62.4,21.3z"/>
|
66 |
</g>
|
67 |
<g enable-background="new ">
|
68 |
-
<path fill="#565656" d="
|
69 |
-
<path fill="#565656" d="
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
c0.1,0.2,0.2,0.
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
<path fill="#565656" d="
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
</g>
|
93 |
<g enable-background="new ">
|
94 |
-
<path fill="#565656" d="
|
95 |
-
|
96 |
-
|
97 |
-
c-0.
|
98 |
-
c0-0.
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
<path fill="#565656" d="
|
119 |
-
<path fill="#565656" d="
|
120 |
-
|
121 |
-
c-0.2
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
122 |
</g>
|
123 |
<g enable-background="new ">
|
124 |
-
<path fill="#565656" d="
|
125 |
-
<path fill="#565656" d="
|
126 |
-
c-0.2-0.
|
127 |
-
c0.
|
128 |
-
c0
|
129 |
-
c0.
|
130 |
-
|
131 |
-
|
132 |
-
<path fill="#565656" d="
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
c-0.
|
142 |
-
|
143 |
-
|
144 |
-
c-0.1
|
145 |
-
c0.
|
146 |
-
c0.
|
147 |
-
c-0.
|
148 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
149 |
</g>
|
150 |
-
<path id="
|
151 |
-
|
152 |
<g enable-background="new ">
|
153 |
-
<path fill="#FFFFFF" d="
|
154 |
c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.4-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.3-0.3s0.1-0.3,0.1-0.4c0-0.3-0.1-0.5-0.2-0.6
|
155 |
c-0.1-0.1-0.3-0.2-0.4-0.3c-0.3-0.1-0.5-0.2-0.9-0.3c-0.3-0.1-0.8-0.2-1.2-0.3c-0.3-0.1-0.6-0.2-0.8-0.3c-0.2-0.1-0.4-0.3-0.5-0.4
|
156 |
c-0.1-0.2-0.2-0.3-0.3-0.5c0-0.2-0.1-0.4-0.1-0.5c0-0.4,0.1-0.7,0.2-0.9c0.1-0.3,0.3-0.5,0.6-0.7c0.2-0.2,0.5-0.3,0.8-0.4
|
@@ -159,162 +238,13 @@
|
|
159 |
c0,0.3,0.1,0.5,0.2,0.6s0.4,0.3,0.6,0.3c0,0,0.1,0,0.3,0.1c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.1,0.7,0.2s0.4,0.1,0.5,0.1
|
160 |
c0.2,0.1,0.4,0.2,0.6,0.3s0.3,0.3,0.4,0.4c0.1,0.2,0.2,0.3,0.3,0.5s0.1,0.4,0.1,0.6c0,0.4-0.1,0.7-0.2,1c-0.2,0.3-0.4,0.5-0.6,0.7
|
161 |
c-0.3,0.2-0.6,0.3-0.9,0.4c-0.3,0.1-0.7,0.1-1,0.1c-0.4,0-0.8,0-1.1-0.2c-0.4-0.1-0.7-0.3-0.9-0.5c-0.3-0.2-0.5-0.5-0.6-0.8
|
162 |
-
c-0.2-0.3-0.2-0.7-0.2-1.
|
163 |
-
<path fill="#FFFFFF" d="
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
c-0.
|
169 |
-
c-0.2,0.2-0.5,0.3-0.8,0.4c-0.3,0.1-0.7,0.2-1.2,0.2h-3.3V153.9z M78.7,156.8h2c0.3,0,0.6-0.1,0.8-0.3c0.2-0.2,0.3-0.4,0.3-0.7
|
170 |
-
c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.1-0.4-0.2-0.8-0.2h-2V156.8z M78.7,160h2.2c0.4,0,0.7-0.1,0.9-0.3c0.2-0.2,0.3-0.5,0.3-0.8
|
171 |
-
c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.2-0.5-0.3-0.9-0.3h-2.2V160z"/>
|
172 |
-
<path fill="#FFFFFF" d="M84.5,153.9h1.8l2,5.6h0l1.9-5.6h1.7v7.1h-1.2v-5.5h0l-2,5.5h-1l-2-5.5h0v5.5h-1.2V153.9z"/>
|
173 |
-
<path fill="#FFFFFF" d="M93.4,153.9h1.2v7.1h-1.2V153.9z"/>
|
174 |
-
<path fill="#FFFFFF" d="M95.5,153.9h5.8v1.1H99v6.1h-1.2v-6.1h-2.3V153.9z"/>
|
175 |
-
</g>
|
176 |
-
<g enable-background="new ">
|
177 |
-
<path fill="#565656" d="M90.7,17.9v6.3h3.8V25h-4.7v-7.1H90.7z"/>
|
178 |
-
<path fill="#565656" d="M99.8,25c-0.1,0.1-0.4,0.1-0.6,0.1c-0.2,0-0.4-0.1-0.5-0.2c-0.1-0.1-0.2-0.3-0.2-0.6
|
179 |
-
c-0.2,0.3-0.5,0.5-0.8,0.6c-0.3,0.1-0.6,0.2-1,0.2c-0.2,0-0.5,0-0.7-0.1c-0.2-0.1-0.4-0.1-0.5-0.2s-0.3-0.3-0.4-0.4
|
180 |
-
s-0.1-0.4-0.1-0.7c0-0.3,0.1-0.5,0.2-0.7s0.2-0.3,0.4-0.5c0.2-0.1,0.3-0.2,0.6-0.3c0.2-0.1,0.4-0.1,0.6-0.2c0.2,0,0.5-0.1,0.7-0.1
|
181 |
-
c0.2,0,0.4-0.1,0.6-0.1s0.3-0.1,0.4-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2,0-0.3-0.1-0.5s-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.1
|
182 |
-
c-0.1,0-0.3,0-0.4,0c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.4-0.4,0.8h-0.9c0-0.3,0.1-0.6,0.2-0.8c0.1-0.2,0.3-0.4,0.5-0.5
|
183 |
-
c0.2-0.1,0.4-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.2,0,0.5,0,0.7,0s0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.2,0.5,0.4s0.2,0.4,0.2,0.7
|
184 |
-
v2.7c0,0.2,0,0.3,0,0.4c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3-0.1V25z M98.4,22.3c-0.1,0.1-0.2,0.1-0.4,0.2
|
185 |
-
c-0.2,0-0.4,0.1-0.5,0.1c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.5,0.1c-0.2,0.1-0.3,0.2-0.4,0.3c-0.1,0.1-0.1,0.3-0.1,0.5
|
186 |
-
c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.1,0.2,0.2,0.2c0.1,0.1,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.4,0c0.3,0,0.5,0,0.7-0.1
|
187 |
-
c0.2-0.1,0.4-0.2,0.5-0.3c0.1-0.1,0.2-0.2,0.3-0.4c0.1-0.1,0.1-0.3,0.1-0.4V22.3z"/>
|
188 |
-
<path fill="#565656" d="M101.2,23.8c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.3,0.1,0.4,0.2s0.3,0,0.5,0c0.1,0,0.3,0,0.4,0
|
189 |
-
c0.1,0,0.3-0.1,0.4-0.1c0.1-0.1,0.2-0.1,0.3-0.2s0.1-0.2,0.1-0.4c0-0.2-0.1-0.4-0.2-0.5c-0.2-0.1-0.4-0.2-0.6-0.3
|
190 |
-
c-0.2-0.1-0.5-0.1-0.8-0.2c-0.3-0.1-0.6-0.1-0.8-0.2c-0.2-0.1-0.5-0.2-0.6-0.4s-0.2-0.4-0.2-0.8c0-0.3,0.1-0.5,0.2-0.7
|
191 |
-
c0.1-0.2,0.3-0.3,0.4-0.5c0.2-0.1,0.4-0.2,0.6-0.3s0.5-0.1,0.7-0.1c0.3,0,0.6,0,0.8,0.1c0.2,0,0.5,0.1,0.7,0.3
|
192 |
-
c0.2,0.1,0.3,0.3,0.5,0.5s0.2,0.5,0.2,0.8h-0.9c0-0.2-0.1-0.3-0.1-0.4c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.1
|
193 |
-
s-0.3,0-0.4,0c-0.1,0-0.3,0-0.4,0c-0.1,0-0.2,0.1-0.4,0.1c-0.1,0-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.1,0.1,0.3,0.2,0.4
|
194 |
-
s0.2,0.2,0.4,0.2c0.2,0.1,0.3,0.1,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.2,0.5,0.3s0.3,0.2,0.4,0.4
|
195 |
-
c0.1,0.2,0.1,0.4,0.1,0.6c0,0.3-0.1,0.6-0.2,0.8c-0.1,0.2-0.3,0.4-0.5,0.5c-0.2,0.1-0.4,0.2-0.7,0.3s-0.5,0.1-0.8,0.1
|
196 |
-
c-0.3,0-0.6,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.4-0.3-0.5-0.5c-0.1-0.2-0.2-0.5-0.2-0.8h0.8
|
197 |
-
C101.1,23.6,101.1,23.7,101.2,23.8z"/>
|
198 |
-
<path fill="#565656" d="M107.8,19.8v0.8h-1v3.2c0,0.1,0,0.2,0,0.2c0,0.1,0,0.1,0.1,0.1s0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3,0h0.4V25
|
199 |
-
h-0.6c-0.2,0-0.4,0-0.6,0s-0.3-0.1-0.4-0.2s-0.2-0.2-0.2-0.3c0-0.1-0.1-0.3-0.1-0.6v-3.3H105v-0.8h0.9v-1.5h0.8v1.5H107.8z"/>
|
200 |
-
<path fill="#565656" d="M112.6,17.9l3.8,5.8h0v-5.8h0.9V25h-1l-3.7-5.7h0V25h-0.9v-7.1H112.6z"/>
|
201 |
-
<path fill="#565656" d="M123.3,25c-0.1,0.1-0.4,0.1-0.6,0.1c-0.2,0-0.4-0.1-0.5-0.2c-0.1-0.1-0.2-0.3-0.2-0.6
|
202 |
-
c-0.2,0.3-0.5,0.5-0.8,0.6c-0.3,0.1-0.6,0.2-1,0.2c-0.2,0-0.5,0-0.7-0.1c-0.2-0.1-0.4-0.1-0.5-0.2s-0.3-0.3-0.4-0.4
|
203 |
-
s-0.1-0.4-0.1-0.7c0-0.3,0.1-0.5,0.2-0.7s0.2-0.3,0.4-0.5c0.2-0.1,0.3-0.2,0.6-0.3c0.2-0.1,0.4-0.1,0.6-0.2c0.2,0,0.5-0.1,0.7-0.1
|
204 |
-
c0.2,0,0.4-0.1,0.6-0.1s0.3-0.1,0.4-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2,0-0.3-0.1-0.5s-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.1
|
205 |
-
c-0.1,0-0.3,0-0.4,0c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.4-0.4,0.8h-0.9c0-0.3,0.1-0.6,0.2-0.8c0.1-0.2,0.3-0.4,0.5-0.5
|
206 |
-
c0.2-0.1,0.4-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.2,0,0.5,0,0.7,0s0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.2,0.5,0.4s0.2,0.4,0.2,0.7
|
207 |
-
v2.7c0,0.2,0,0.3,0,0.4c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3-0.1V25z M121.9,22.3c-0.1,0.1-0.2,0.1-0.4,0.2
|
208 |
-
c-0.2,0-0.4,0.1-0.5,0.1c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.5,0.1c-0.2,0.1-0.3,0.2-0.4,0.3c-0.1,0.1-0.1,0.3-0.1,0.5
|
209 |
-
c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.1,0.2,0.2,0.2c0.1,0.1,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.4,0c0.3,0,0.5,0,0.7-0.1
|
210 |
-
c0.2-0.1,0.4-0.2,0.5-0.3c0.1-0.1,0.2-0.2,0.3-0.4c0.1-0.1,0.1-0.3,0.1-0.4V22.3z"/>
|
211 |
-
<path fill="#565656" d="M124.9,19.8v0.8h0c0.4-0.6,0.9-0.9,1.7-0.9c0.3,0,0.6,0.1,0.9,0.2c0.3,0.1,0.4,0.4,0.5,0.7
|
212 |
-
c0.2-0.3,0.4-0.5,0.7-0.6s0.6-0.2,0.9-0.2c0.3,0,0.5,0,0.7,0.1s0.4,0.1,0.5,0.3c0.1,0.1,0.3,0.3,0.4,0.5c0.1,0.2,0.1,0.4,0.1,0.7
|
213 |
-
V25h-0.9v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.3-0.2c-0.1-0.1-0.3-0.1-0.5-0.1c-0.4,0-0.8,0.1-1,0.4
|
214 |
-
c-0.2,0.2-0.4,0.6-0.4,1V25h-0.8v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.3-0.2
|
215 |
-
c-0.1-0.1-0.3-0.1-0.5-0.1c-0.2,0-0.5,0-0.6,0.2c-0.2,0.1-0.3,0.2-0.4,0.4c-0.1,0.1-0.2,0.3-0.2,0.4c0,0.1-0.1,0.3-0.1,0.4V25
|
216 |
-
h-0.8v-5.2H124.9z"/>
|
217 |
-
<path fill="#565656" d="M136.3,24.7c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
218 |
-
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.8,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6
|
219 |
-
c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.4,1c0.1,0.3,0.1,0.7,0.1,1h-3.9
|
220 |
-
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.5,0.1,0.7,0.1c0.4,0,0.7-0.1,0.9-0.2
|
221 |
-
s0.4-0.4,0.5-0.8h0.8C136.9,23.9,136.7,24.4,136.3,24.7z M136.1,21.3c-0.1-0.2-0.2-0.3-0.3-0.5s-0.3-0.2-0.5-0.3
|
222 |
-
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6h3
|
223 |
-
C136.2,21.7,136.2,21.5,136.1,21.3z"/>
|
224 |
-
</g>
|
225 |
-
<g enable-background="new ">
|
226 |
-
<path fill="#565656" d="M94.7,51.9v0.8h-4v2.3h3.7v0.8h-3.7v2.5h4V59h-5v-7.1H94.7z"/>
|
227 |
-
<path fill="#565656" d="M96.5,53.8v0.8h0c0.4-0.6,0.9-0.9,1.7-0.9c0.3,0,0.6,0.1,0.9,0.2c0.3,0.1,0.4,0.4,0.6,0.7
|
228 |
-
c0.2-0.3,0.4-0.5,0.7-0.6s0.6-0.2,0.9-0.2c0.3,0,0.5,0,0.7,0.1c0.2,0.1,0.4,0.1,0.5,0.3c0.1,0.1,0.3,0.3,0.3,0.5
|
229 |
-
c0.1,0.2,0.1,0.4,0.1,0.7V59h-0.8v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.1-0.4s-0.2-0.2-0.3-0.2c-0.1-0.1-0.3-0.1-0.5-0.1
|
230 |
-
c-0.4,0-0.8,0.1-1,0.4c-0.2,0.2-0.4,0.6-0.4,1V59h-0.9v-3.4c0-0.2,0-0.3,0-0.5c0-0.1-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.3-0.2
|
231 |
-
s-0.3-0.1-0.5-0.1c-0.2,0-0.5,0-0.6,0.2c-0.2,0.1-0.3,0.2-0.4,0.4c-0.1,0.1-0.2,0.3-0.2,0.4c0,0.1-0.1,0.3-0.1,0.4V59h-0.8v-5.2
|
232 |
-
H96.5z"/>
|
233 |
-
<path fill="#565656" d="M108.9,59c-0.1,0.1-0.3,0.1-0.6,0.1c-0.2,0-0.4-0.1-0.5-0.2s-0.2-0.3-0.2-0.6c-0.2,0.3-0.5,0.5-0.8,0.6
|
234 |
-
c-0.3,0.1-0.6,0.2-1,0.2c-0.2,0-0.5,0-0.7-0.1c-0.2-0.1-0.4-0.1-0.5-0.2c-0.2-0.1-0.3-0.3-0.4-0.4s-0.1-0.4-0.1-0.7
|
235 |
-
c0-0.3,0-0.5,0.1-0.7c0.1-0.2,0.2-0.3,0.4-0.5c0.2-0.1,0.3-0.2,0.6-0.3c0.2-0.1,0.4-0.1,0.6-0.2c0.2,0,0.5-0.1,0.7-0.1
|
236 |
-
c0.2,0,0.4-0.1,0.6-0.1s0.3-0.1,0.4-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.2,0-0.3-0.1-0.5s-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.1-0.4-0.1
|
237 |
-
c-0.1,0-0.3,0-0.4,0c-0.4,0-0.7,0.1-0.9,0.2s-0.4,0.4-0.4,0.8h-0.9c0-0.3,0.1-0.6,0.2-0.8s0.3-0.4,0.5-0.5s0.4-0.2,0.7-0.3
|
238 |
-
c0.3-0.1,0.5-0.1,0.8-0.1c0.2,0,0.5,0,0.7,0c0.2,0,0.4,0.1,0.6,0.2c0.2,0.1,0.3,0.2,0.5,0.4s0.2,0.4,0.2,0.7v2.7
|
239 |
-
c0,0.2,0,0.3,0,0.4c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3-0.1V59z M107.5,56.3c-0.1,0.1-0.2,0.1-0.4,0.2c-0.2,0-0.4,0.1-0.5,0.1
|
240 |
-
s-0.4,0-0.6,0.1s-0.4,0.1-0.5,0.1c-0.2,0.1-0.3,0.2-0.4,0.3c-0.1,0.1-0.1,0.3-0.1,0.5c0,0.1,0,0.3,0.1,0.4s0.1,0.2,0.2,0.2
|
241 |
-
c0.1,0.1,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.4,0c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.4-0.2,0.5-0.3s0.2-0.2,0.3-0.4s0.1-0.3,0.1-0.4V56.3z"
|
242 |
-
/>
|
243 |
-
<path fill="#565656" d="M109.7,52.9v-1h0.9v1H109.7z M110.5,53.8V59h-0.9v-5.2H110.5z"/>
|
244 |
-
<path fill="#565656" d="M112.8,51.9V59h-0.8v-7.1H112.8z"/>
|
245 |
-
</g>
|
246 |
-
<g enable-background="new ">
|
247 |
-
<path fill="#565656" d="M94.1,86.9c-0.4-0.3-0.8-0.4-1.3-0.4c-0.4,0-0.8,0.1-1.1,0.2c-0.3,0.2-0.6,0.4-0.8,0.6
|
248 |
-
c-0.2,0.3-0.3,0.6-0.4,0.9c-0.1,0.3-0.1,0.7-0.1,1.1c0,0.4,0,0.8,0.1,1.2c0.1,0.4,0.2,0.7,0.4,1c0.2,0.3,0.4,0.5,0.8,0.6
|
249 |
-
s0.7,0.2,1.1,0.2c0.3,0,0.6-0.1,0.8-0.2c0.2-0.1,0.5-0.2,0.6-0.4c0.2-0.2,0.3-0.4,0.4-0.7c0.1-0.3,0.2-0.5,0.2-0.8h1
|
250 |
-
c-0.1,0.9-0.4,1.6-0.9,2.1c-0.5,0.5-1.2,0.8-2.2,0.8c-0.6,0-1-0.1-1.5-0.3c-0.4-0.2-0.8-0.5-1-0.8c-0.3-0.3-0.5-0.7-0.6-1.2
|
251 |
-
s-0.2-0.9-0.2-1.5c0-0.5,0.1-1,0.2-1.5c0.1-0.5,0.4-0.9,0.6-1.2s0.6-0.6,1.1-0.8c0.4-0.2,0.9-0.3,1.5-0.3c0.4,0,0.7,0,1.1,0.1
|
252 |
-
c0.3,0.1,0.6,0.2,0.9,0.4s0.5,0.4,0.7,0.7s0.3,0.6,0.3,1h-1C94.7,87.5,94.5,87.1,94.1,86.9z"/>
|
253 |
-
<path fill="#565656" d="M97.7,85.9v2.7h0c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.3-0.2,0.4-0.3c0.2-0.1,0.3-0.1,0.5-0.2
|
254 |
-
c0.2,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9,0.1c0.2,0.1,0.4,0.2,0.5,0.4c0.1,0.2,0.2,0.4,0.3,0.6c0.1,0.2,0.1,0.5,0.1,0.8V93h-0.9v-3.5
|
255 |
-
c0-0.3-0.1-0.6-0.3-0.8s-0.4-0.3-0.8-0.3c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.3,0.2-0.5,0.3s-0.2,0.3-0.3,0.5
|
256 |
-
c-0.1,0.2-0.1,0.4-0.1,0.6V93h-0.9v-7.1H97.7z"/>
|
257 |
-
<path fill="#565656" d="M106.1,92.7c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
258 |
-
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.8,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6
|
259 |
-
c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.4,1c0.1,0.3,0.1,0.7,0.1,1H103
|
260 |
-
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.1,0.7,0.1c0.4,0,0.7-0.1,0.9-0.2
|
261 |
-
c0.2-0.2,0.4-0.4,0.5-0.8h0.8C106.7,91.9,106.5,92.4,106.1,92.7z M105.9,89.3c-0.1-0.2-0.2-0.3-0.3-0.5c-0.1-0.1-0.3-0.2-0.5-0.3
|
262 |
-
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6h3
|
263 |
-
C106,89.7,106,89.5,105.9,89.3z"/>
|
264 |
-
<path fill="#565656" d="M110.9,88.7c-0.2-0.2-0.5-0.3-0.9-0.3c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.5,0.5s-0.2,0.4-0.3,0.6
|
265 |
-
c-0.1,0.2-0.1,0.5-0.1,0.8c0,0.2,0,0.5,0.1,0.7c0.1,0.2,0.1,0.4,0.3,0.6c0.1,0.2,0.3,0.3,0.5,0.4s0.4,0.2,0.7,0.2
|
266 |
-
c0.4,0,0.7-0.1,1-0.3c0.2-0.2,0.4-0.5,0.4-0.9h0.9c-0.1,0.6-0.3,1.1-0.7,1.5s-0.9,0.5-1.6,0.5c-0.4,0-0.7-0.1-1-0.2
|
267 |
-
s-0.6-0.3-0.8-0.5s-0.4-0.5-0.5-0.8c-0.1-0.3-0.2-0.7-0.2-1.1s0.1-0.7,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9s0.5-0.4,0.8-0.6
|
268 |
-
s0.7-0.2,1.1-0.2c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.7,0.3c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.2,0.2,0.5,0.2,0.8h-0.9
|
269 |
-
C111.2,89.2,111.1,88.9,110.9,88.7z"/>
|
270 |
-
<path fill="#565656" d="M114.1,85.9v4.2l2.4-2.3h1.1l-2,1.9l2.2,3.3h-1.1l-1.8-2.7l-0.8,0.7v2h-0.9v-7.1H114.1z"/>
|
271 |
-
<path fill="#565656" d="M121,89.4c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6c0.3-0.1,0.7-0.2,1.1-0.2
|
272 |
-
c0.4,0,0.8,0.1,1.1,0.2c0.3,0.1,0.6,0.3,0.8,0.6c0.2,0.2,0.4,0.5,0.5,0.9c0.1,0.3,0.2,0.7,0.2,1.1s-0.1,0.7-0.2,1.1
|
273 |
-
c-0.1,0.3-0.3,0.6-0.5,0.9c-0.2,0.2-0.5,0.4-0.8,0.6c-0.3,0.1-0.7,0.2-1.1,0.2c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
274 |
-
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1S120.9,89.7,121,89.4z M121.9,91.3c0.1,0.2,0.2,0.4,0.3,0.6s0.3,0.3,0.5,0.4
|
275 |
-
c0.2,0.1,0.4,0.1,0.6,0.1c0.2,0,0.4,0,0.6-0.1c0.2-0.1,0.4-0.2,0.5-0.4s0.3-0.4,0.3-0.6s0.1-0.5,0.1-0.8s0-0.6-0.1-0.8
|
276 |
-
s-0.2-0.4-0.3-0.6c-0.1-0.2-0.3-0.3-0.5-0.4c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.4,0.2-0.5,0.4
|
277 |
-
c-0.1,0.2-0.3,0.4-0.3,0.6c-0.1,0.2-0.1,0.5-0.1,0.8S121.8,91,121.9,91.3z"/>
|
278 |
-
<path fill="#565656" d="M130.3,93v-0.8h0c-0.2,0.3-0.4,0.6-0.7,0.7c-0.3,0.2-0.6,0.2-1,0.2c-0.3,0-0.6,0-0.9-0.1
|
279 |
-
c-0.2-0.1-0.4-0.2-0.5-0.4c-0.1-0.2-0.2-0.4-0.3-0.6c-0.1-0.2-0.1-0.5-0.1-0.8v-3.4h0.9v3.5c0,0.3,0.1,0.6,0.3,0.8
|
280 |
-
c0.2,0.2,0.4,0.3,0.8,0.3c0.3,0,0.5,0,0.7-0.1s0.3-0.2,0.5-0.3c0.1-0.1,0.2-0.3,0.3-0.5c0.1-0.2,0.1-0.4,0.1-0.6v-2.9h0.9V93
|
281 |
-
H130.3z"/>
|
282 |
-
<path fill="#565656" d="M134.6,87.8v0.8h-1v3.2c0,0.1,0,0.2,0,0.2c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3,0h0.4
|
283 |
-
V93H134c-0.2,0-0.4,0-0.6,0c-0.2,0-0.3-0.1-0.4-0.2c-0.1-0.1-0.2-0.2-0.2-0.3c0-0.1-0.1-0.3-0.1-0.6v-3.3h-0.9v-0.8h0.9v-1.5h0.8
|
284 |
-
v1.5H134.6z"/>
|
285 |
-
</g>
|
286 |
-
<g enable-background="new ">
|
287 |
-
<path fill="#565656" d="M94.1,120.9c-0.4-0.3-0.8-0.4-1.3-0.4c-0.4,0-0.8,0.1-1.1,0.2c-0.3,0.2-0.6,0.4-0.8,0.6
|
288 |
-
c-0.2,0.3-0.3,0.6-0.4,0.9c-0.1,0.3-0.1,0.7-0.1,1.1c0,0.4,0,0.8,0.1,1.2c0.1,0.4,0.2,0.7,0.4,1c0.2,0.3,0.4,0.5,0.8,0.6
|
289 |
-
s0.7,0.2,1.1,0.2c0.3,0,0.6-0.1,0.8-0.2c0.2-0.1,0.5-0.2,0.6-0.4c0.2-0.2,0.3-0.4,0.4-0.7c0.1-0.3,0.2-0.5,0.2-0.8h1
|
290 |
-
c-0.1,0.9-0.4,1.6-0.9,2.1c-0.5,0.5-1.2,0.8-2.2,0.8c-0.6,0-1-0.1-1.5-0.3c-0.4-0.2-0.8-0.5-1-0.8c-0.3-0.3-0.5-0.7-0.6-1.2
|
291 |
-
s-0.2-0.9-0.2-1.5c0-0.5,0.1-1,0.2-1.5c0.1-0.5,0.4-0.9,0.6-1.2s0.6-0.6,1.1-0.8c0.4-0.2,0.9-0.3,1.5-0.3c0.4,0,0.7,0,1.1,0.1
|
292 |
-
c0.3,0.1,0.6,0.2,0.9,0.4s0.5,0.4,0.7,0.7s0.3,0.6,0.3,1h-1C94.7,121.5,94.5,121.1,94.1,120.9z"/>
|
293 |
-
<path fill="#565656" d="M97.7,119.9v2.7h0c0.1-0.2,0.2-0.3,0.3-0.4c0.1-0.1,0.3-0.2,0.4-0.3c0.2-0.1,0.3-0.1,0.5-0.2
|
294 |
-
c0.2,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9,0.1c0.2,0.1,0.4,0.2,0.5,0.4c0.1,0.2,0.2,0.4,0.3,0.6c0.1,0.2,0.1,0.5,0.1,0.8v3.4h-0.9v-3.5
|
295 |
-
c0-0.3-0.1-0.6-0.3-0.8s-0.4-0.3-0.8-0.3c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.3,0.2-0.5,0.3s-0.2,0.3-0.3,0.5
|
296 |
-
c-0.1,0.2-0.1,0.4-0.1,0.6v2.9h-0.9v-7.1H97.7z"/>
|
297 |
-
<path fill="#565656" d="M102.5,120.9v-1h0.9v1H102.5z M103.3,121.8v5.2h-0.9v-5.2H103.3z"/>
|
298 |
-
<path fill="#565656" d="M105.5,119.9v7.1h-0.8v-7.1H105.5z"/>
|
299 |
-
<path fill="#565656" d="M110.6,127v-0.7h0c-0.1,0.3-0.4,0.5-0.7,0.6c-0.3,0.1-0.6,0.2-1,0.2c-0.4,0-0.7-0.1-1-0.2
|
300 |
-
c-0.3-0.1-0.5-0.3-0.7-0.6c-0.2-0.2-0.3-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1c0-0.4,0-0.7,0.1-1c0.1-0.3,0.2-0.6,0.4-0.9
|
301 |
-
c0.2-0.2,0.4-0.4,0.7-0.6s0.6-0.2,1-0.2c0.1,0,0.3,0,0.4,0c0.2,0,0.3,0.1,0.5,0.1c0.2,0.1,0.3,0.1,0.4,0.2s0.3,0.2,0.3,0.4h0v-2.7
|
302 |
-
h0.8v7.1H110.6z M107.6,125.2c0.1,0.2,0.2,0.4,0.3,0.6c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.2,0.7,0.2c0.3,0,0.5-0.1,0.7-0.2
|
303 |
-
s0.4-0.3,0.5-0.4c0.1-0.2,0.2-0.4,0.3-0.6s0.1-0.5,0.1-0.7c0-0.3,0-0.5-0.1-0.7c-0.1-0.2-0.2-0.4-0.3-0.6
|
304 |
-
c-0.1-0.2-0.3-0.3-0.5-0.4c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.5,0.1-0.7,0.2s-0.4,0.3-0.5,0.5c-0.1,0.2-0.2,0.4-0.3,0.6
|
305 |
-
c-0.1,0.2-0.1,0.5-0.1,0.7C107.5,124.7,107.5,124.9,107.6,125.2z"/>
|
306 |
-
<path fill="#565656" d="M113.6,121.8v1.1h0c0.2-0.4,0.5-0.7,0.8-0.9c0.3-0.2,0.7-0.3,1.1-0.3v0.9c-0.3,0-0.6,0-0.9,0.1
|
307 |
-
s-0.4,0.2-0.6,0.4s-0.3,0.4-0.3,0.7c-0.1,0.3-0.1,0.6-0.1,0.9v2.3h-0.8v-5.2H113.6z"/>
|
308 |
-
<path fill="#565656" d="M119.6,126.7c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
|
309 |
-
c-0.2-0.2-0.4-0.5-0.5-0.9c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.8,0.2-1.1c0.1-0.3,0.3-0.6,0.5-0.9c0.2-0.2,0.5-0.4,0.8-0.6
|
310 |
-
c0.3-0.1,0.6-0.2,1-0.2c0.5,0,0.8,0.1,1.1,0.3c0.3,0.2,0.5,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.4,1c0.1,0.3,0.1,0.7,0.1,1h-3.9
|
311 |
-
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.1,0.7,0.1c0.4,0,0.7-0.1,0.9-0.2
|
312 |
-
c0.2-0.2,0.4-0.4,0.5-0.8h0.8C120.2,125.9,120,126.4,119.6,126.7z M119.4,123.3c-0.1-0.2-0.2-0.3-0.3-0.5
|
313 |
-
c-0.1-0.1-0.3-0.2-0.5-0.3c-0.2-0.1-0.4-0.1-0.6-0.1c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.3-0.3,0.5
|
314 |
-
c-0.1,0.2-0.1,0.4-0.1,0.6h3C119.5,123.7,119.5,123.5,119.4,123.3z"/>
|
315 |
-
<path fill="#565656" d="M122.1,121.8v0.8h0c0.4-0.6,0.9-0.9,1.7-0.9c0.3,0,0.6,0,0.9,0.1c0.2,0.1,0.4,0.2,0.5,0.4
|
316 |
-
c0.1,0.2,0.2,0.4,0.3,0.6c0.1,0.2,0.1,0.5,0.1,0.8v3.4h-0.9v-3.5c0-0.3-0.1-0.6-0.3-0.8c-0.2-0.2-0.4-0.3-0.8-0.3
|
317 |
-
c-0.3,0-0.5,0-0.7,0.1s-0.3,0.2-0.5,0.3s-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.4-0.1,0.6v2.9h-0.9v-5.2H122.1z"/>
|
318 |
</g>
|
319 |
</g>
|
320 |
</svg>
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
2 |
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 265 300" enable-background="new 0 0 265 300" xml:space="preserve">
|
5 |
<g>
|
6 |
+
<path id="Rectangle_641" fill="#FFFFFF" d="M5,0h255c2.8,0,5,2.2,5,5v290c0,2.8-2.2,5-5,5H5c-2.8,0-5-2.2-5-5V5C0,2.2,2.2,0,5,0z"
|
7 |
/>
|
8 |
+
<path id="Rectangle_642" fill="#E5E9EA" d="M42.5,59h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
9 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,60.1,41.1,59,42.5,59z"/>
|
10 |
+
<path id="Rectangle_648" fill="#E5E9EA" d="M42.5,108h180c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-180
|
11 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,109.1,41.1,108,42.5,108z"/>
|
12 |
+
<path id="Rectangle_647" fill="#E5E9EA" d="M142.5,59h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
13 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C140,60.1,141.1,59,142.5,59z"/>
|
14 |
+
<path id="Rectangle_644" fill="#E5E9EA" d="M45,157h175c2.8,0,5,2.2,5,5v46c0,2.8-2.2,5-5,5H45c-2.8,0-5-2.2-5-5v-46
|
15 |
+
C40,159.2,42.2,157,45,157z"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
<g enable-background="new ">
|
17 |
+
<path fill="#565656" d="M46.6,42.4v1h-4.5v2.7H46v1h-3.9V51h-1.1v-8.6H46.6z"/>
|
18 |
+
<path fill="#565656" d="M47.7,43.7v-1.2h1v1.2H47.7z M48.7,44.8V51h-1v-6.2H48.7z"/>
|
19 |
+
<path fill="#565656" d="M51.2,44.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
20 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1V51h-1v-6.2H51.2z"/>
|
21 |
+
<path fill="#565656" d="M55.1,49.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
22 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
23 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
24 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
25 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
26 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
27 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
28 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
29 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
30 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C54.9,49.3,55,49.5,55.1,49.6z"/>
|
31 |
+
<path fill="#565656" d="M63,44.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3s0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0H63V51h-0.8
|
32 |
+
c-0.3,0-0.5,0-0.7-0.1s-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1v-1.9h1v1.9H63z"/>
|
33 |
+
<path fill="#565656" d="M68.8,42.4l4.5,6.9h0v-6.9h1.1V51h-1.2l-4.5-6.9h0V51h-1.1v-8.6H68.8z"/>
|
34 |
+
<path fill="#565656" d="M81.6,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
35 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
36 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
37 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
38 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2S77,46.3,77,46.7h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
39 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
40 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51z M79.9,47.8
|
41 |
+
c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
42 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
43 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V47.8z"/>
|
44 |
+
<path fill="#565656" d="M83.5,44.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
45 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
46 |
+
c0.1,0.2,0.1,0.5,0.1,0.8V51h-1v-4.1c0-0.2,0-0.4,0-0.5S90.1,46.1,90,46c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
47 |
+
c-0.5,0-0.9,0.1-1.2,0.4s-0.4,0.7-0.4,1.2V51h-1v-4.1c0-0.2,0-0.4-0.1-0.6c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3
|
48 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4s-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5V51h-1
|
49 |
+
v-6.2H83.5z"/>
|
50 |
+
<path fill="#565656" d="M97.2,50.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
51 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
52 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
53 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
54 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C97.9,49.7,97.6,50.3,97.2,50.6z M96.9,46.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
55 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
56 |
+
C97.1,47.1,97,46.8,96.9,46.6z"/>
|
|
|
57 |
</g>
|
58 |
<g enable-background="new ">
|
59 |
+
<path fill="#565656" d="M46.9,91.4v1h-4.8v2.7h4.5v1h-4.5v3h4.8v1h-6v-8.6H46.9z"/>
|
60 |
+
<path fill="#565656" d="M49.1,93.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
61 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
62 |
+
c0.1,0.2,0.1,0.5,0.1,0.8v4.5h-1v-4.1c0-0.2,0-0.4,0-0.5s-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
63 |
+
c-0.5,0-0.9,0.1-1.2,0.4S53,95.7,53,96.1v3.9h-1v-4.1c0-0.2,0-0.4-0.1-0.6c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3
|
64 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4s-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5v3.9h-1
|
65 |
+
v-6.2H49.1z"/>
|
66 |
+
<path fill="#565656" d="M63.8,100c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
67 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
68 |
+
C58.1,99,58,98.7,58,98.4c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
69 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
70 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
71 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
72 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V100z M62.2,96.8
|
73 |
+
C62,96.9,61.9,97,61.7,97s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
74 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
75 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V96.8z"/>
|
76 |
+
<path fill="#565656" d="M64.8,92.7v-1.2h1v1.2H64.8z M65.9,93.8v6.2h-1v-6.2H65.9z"/>
|
77 |
+
<path fill="#565656" d="M68.5,91.4v8.6h-1v-8.6H68.5z"/>
|
78 |
+
<path fill="#565656" d="M77.2,91.4l3.3,8.6h-1.3l-0.9-2.6h-3.6l-1,2.6h-1.2l3.3-8.6H77.2z M78,96.5l-1.4-4h0l-1.5,4H78z"/>
|
79 |
+
<path fill="#565656" d="M85.7,100v-0.8h0c-0.2,0.3-0.4,0.6-0.8,0.7c-0.4,0.2-0.8,0.2-1.2,0.2c-0.5,0-0.9-0.1-1.3-0.3
|
80 |
+
c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.5-1c-0.1-0.4-0.2-0.8-0.2-1.2c0-0.4,0.1-0.9,0.2-1.2c0.1-0.4,0.3-0.7,0.5-1
|
81 |
+
c0.2-0.3,0.5-0.5,0.9-0.7s0.8-0.3,1.2-0.3c0.2,0,0.3,0,0.5,0s0.4,0.1,0.6,0.2s0.4,0.2,0.5,0.3s0.3,0.3,0.4,0.5h0v-3.2h1v8.6H85.7z
|
82 |
+
M82.1,97.8c0.1,0.3,0.2,0.5,0.3,0.7c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2c0.3,0,0.6-0.1,0.9-0.2
|
83 |
+
c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.5,0.3-0.8c0.1-0.3,0.1-0.6,0.1-0.9c0-0.3,0-0.6-0.1-0.9c-0.1-0.3-0.2-0.5-0.3-0.8
|
84 |
+
c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5c-0.1,0.2-0.2,0.5-0.3,0.8
|
85 |
+
C82,96.4,82,96.6,82,97C82,97.2,82,97.5,82.1,97.8z"/>
|
86 |
+
<path fill="#565656" d="M92.9,100v-0.8h0c-0.2,0.3-0.4,0.6-0.8,0.7c-0.4,0.2-0.8,0.2-1.2,0.2c-0.5,0-0.9-0.1-1.3-0.3
|
87 |
+
c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.5-1c-0.1-0.4-0.2-0.8-0.2-1.2c0-0.4,0.1-0.9,0.2-1.2c0.1-0.4,0.3-0.7,0.5-1
|
88 |
+
c0.2-0.3,0.5-0.5,0.9-0.7s0.8-0.3,1.2-0.3c0.2,0,0.3,0,0.5,0s0.4,0.1,0.6,0.2s0.4,0.2,0.5,0.3s0.3,0.3,0.4,0.5h0v-3.2h1v8.6H92.9z
|
89 |
+
M89.2,97.8c0.1,0.3,0.2,0.5,0.3,0.7c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.2,0.9,0.2c0.3,0,0.6-0.1,0.9-0.2
|
90 |
+
c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.2,0.3-0.5,0.3-0.8c0.1-0.3,0.1-0.6,0.1-0.9c0-0.3,0-0.6-0.1-0.9c-0.1-0.3-0.2-0.5-0.3-0.8
|
91 |
+
c-0.2-0.2-0.4-0.4-0.6-0.5s-0.5-0.2-0.9-0.2c-0.3,0-0.6,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5c-0.1,0.2-0.2,0.5-0.3,0.8
|
92 |
+
c-0.1,0.3-0.1,0.6-0.1,0.9C89.1,97.2,89.1,97.5,89.2,97.8z"/>
|
93 |
+
<path fill="#565656" d="M96.4,93.8v1.3h0c0.2-0.5,0.6-0.9,0.9-1.1c0.4-0.2,0.8-0.4,1.4-0.3v1.1c-0.4,0-0.8,0.1-1,0.2
|
94 |
+
c-0.3,0.1-0.5,0.3-0.7,0.5c-0.2,0.2-0.3,0.5-0.4,0.8c-0.1,0.3-0.1,0.7-0.1,1.1v2.8h-1v-6.2H96.4z"/>
|
95 |
+
<path fill="#565656" d="M103.6,99.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
96 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
97 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2H100
|
98 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
99 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C104.4,98.7,104.1,99.3,103.6,99.6z M103.4,95.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
100 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
101 |
+
C103.5,96.1,103.5,95.8,103.4,95.6z"/>
|
102 |
+
<path fill="#565656" d="M106.5,98.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
103 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
104 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
105 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
106 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
107 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
108 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
109 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
110 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
111 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C106.3,98.3,106.4,98.5,106.5,98.6z"/>
|
112 |
+
<path fill="#565656" d="M112.5,98.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
113 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
114 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
115 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
116 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
117 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
118 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
119 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
120 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
121 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C112.3,98.3,112.4,98.5,112.5,98.6z"/>
|
122 |
</g>
|
123 |
<g enable-background="new ">
|
124 |
+
<path fill="#565656" d="M142.1,42.4V50h4.5v1h-5.7v-8.6H142.1z"/>
|
125 |
+
<path fill="#565656" d="M152.9,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
126 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
127 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
128 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
129 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
130 |
+
s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1s0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5c0.1,0.2,0.2,0.5,0.2,0.9
|
131 |
+
v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51z M151.3,47.8c-0.1,0.1-0.3,0.2-0.5,0.2
|
132 |
+
c-0.2,0-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0.1-0.2,0.4-0.2,0.6
|
133 |
+
c0,0.2,0,0.3,0.1,0.4c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
134 |
+
c0.2-0.1,0.4-0.2,0.6-0.3s0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V47.8z"/>
|
135 |
+
<path fill="#565656" d="M154.7,49.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
136 |
+
s0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3c0.1-0.1,0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
137 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
138 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.6-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
139 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3s-0.3-0.1-0.5-0.2
|
140 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
141 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
142 |
+
s0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9s-0.4,0.4-0.6,0.6
|
143 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
144 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C154.5,49.3,154.6,49.5,154.7,49.6z"/>
|
145 |
+
<path fill="#565656" d="M162.5,44.8v0.9h-1.2v3.9c0,0.1,0,0.2,0,0.3c0,0.1,0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1s0.2,0,0.4,0h0.5
|
146 |
+
V51h-0.8c-0.3,0-0.5,0-0.7-0.1c-0.2,0-0.3-0.1-0.5-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.1-0.4-0.1-0.7v-3.9h-1.1v-0.9h1.1
|
147 |
+
v-1.9h1v1.9H162.5z"/>
|
148 |
+
<path fill="#565656" d="M168.4,42.4l4.5,6.9h0v-6.9h1.1V51h-1.2l-4.5-6.9h0V51h-1.1v-8.6H168.4z"/>
|
149 |
+
<path fill="#565656" d="M181.2,51c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
150 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
151 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5s0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
152 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
153 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
154 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
155 |
+
s0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V51z M179.5,47.8c-0.1,0.1-0.3,0.2-0.5,0.2
|
156 |
+
c-0.2,0-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2s-0.3,0.2-0.4,0.3c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4
|
157 |
+
c0.1,0.1,0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1c0.2-0.1,0.4-0.2,0.6-0.3
|
158 |
+
c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V47.8z"/>
|
159 |
+
<path fill="#565656" d="M183.1,44.8v0.9h0c0.5-0.7,1.1-1.1,2-1.1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.8
|
160 |
+
c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.7-0.3,1.1-0.3c0.3,0,0.6,0,0.8,0.1c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.6
|
161 |
+
c0.1,0.2,0.1,0.5,0.1,0.8V51h-1v-4.1c0-0.2,0-0.4,0-0.5s-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.3s-0.4-0.1-0.6-0.1
|
162 |
+
c-0.5,0-0.9,0.1-1.2,0.4s-0.4,0.7-0.4,1.2V51h-1v-4.1c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4s-0.2-0.2-0.4-0.3
|
163 |
+
c-0.1-0.1-0.3-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.4c-0.1,0.2-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.3-0.1,0.5
|
164 |
+
V51h-1v-6.2H183.1z"/>
|
165 |
+
<path fill="#565656" d="M196.7,50.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7s-0.4-0.6-0.6-1
|
166 |
+
c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3c0.1-0.4,0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7c0.4-0.2,0.7-0.2,1.2-0.2
|
167 |
+
c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6c0,0.3,0,0.5,0.1,0.8
|
168 |
+
c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3s0.5-0.5,0.5-0.9h1
|
169 |
+
C197.5,49.7,197.2,50.3,196.7,50.6z M196.5,46.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4c-0.2-0.1-0.4-0.1-0.7-0.1
|
170 |
+
c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4c-0.2,0.2-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6C196.6,47.1,196.6,46.8,196.5,46.6
|
171 |
+
z"/>
|
172 |
</g>
|
173 |
<g enable-background="new ">
|
174 |
+
<path fill="#565656" d="M42.5,140.4l2.7,7.2l2.7-7.2h1.6v8.6h-1.1v-7.1h0l-2.7,7.1h-1l-2.7-7.1h0v7.1H41v-8.6H42.5z"/>
|
175 |
+
<path fill="#565656" d="M55.6,148.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
176 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
177 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2H52
|
178 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
179 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C56.4,147.7,56.1,148.3,55.6,148.6z M55.4,144.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
180 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
181 |
+
C55.5,145.1,55.5,144.8,55.4,144.6z"/>
|
182 |
+
<path fill="#565656" d="M58.4,147.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
183 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
184 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
185 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
186 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
187 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
188 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
189 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
190 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
191 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C58.3,147.3,58.3,147.5,58.4,147.6z"/>
|
192 |
+
<path fill="#565656" d="M64.4,147.6c0.1,0.2,0.2,0.3,0.4,0.4c0.2,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4,0.1,0.6,0.1c0.2,0,0.3,0,0.5,0
|
193 |
+
c0.2,0,0.3-0.1,0.5-0.1c0.1-0.1,0.3-0.2,0.4-0.3s0.1-0.3,0.1-0.5c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.4-0.2-0.8-0.3
|
194 |
+
c-0.3-0.1-0.6-0.2-1-0.2c-0.4-0.1-0.7-0.2-1-0.3c-0.3-0.1-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.3-0.9c0-0.3,0.1-0.6,0.2-0.8
|
195 |
+
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.5-0.2,0.7-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.8,0.3
|
196 |
+
c0.2,0.1,0.4,0.3,0.5,0.6c0.1,0.3,0.2,0.6,0.2,0.9h-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
|
197 |
+
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.4
|
198 |
+
c0,0.2,0.1,0.3,0.2,0.4s0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2
|
199 |
+
s0.5,0.2,0.6,0.3s0.3,0.3,0.5,0.5c0.1,0.2,0.2,0.4,0.2,0.7c0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6
|
200 |
+
c-0.3,0.2-0.5,0.3-0.9,0.3s-0.6,0.1-0.9,0.1c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4c-0.2-0.2-0.4-0.4-0.6-0.6
|
201 |
+
c-0.1-0.3-0.2-0.6-0.2-1h1C64.3,147.3,64.3,147.5,64.4,147.6z"/>
|
202 |
+
<path fill="#565656" d="M75.2,149c-0.2,0.1-0.4,0.2-0.7,0.2c-0.3,0-0.5-0.1-0.6-0.2c-0.2-0.1-0.2-0.4-0.2-0.7
|
203 |
+
c-0.3,0.3-0.6,0.6-1,0.7c-0.4,0.1-0.8,0.2-1.2,0.2c-0.3,0-0.5,0-0.8-0.1c-0.3-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.3-0.3-0.4-0.5
|
204 |
+
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.4,0.1-0.6,0.2-0.9c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.3s0.5-0.1,0.8-0.2
|
205 |
+
c0.3-0.1,0.5-0.1,0.8-0.1s0.5-0.1,0.7-0.1s0.3-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.2-0.4c0-0.2,0-0.4-0.1-0.5s-0.2-0.2-0.3-0.3
|
206 |
+
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.1,0.2s-0.4,0.5-0.5,0.9h-1c0-0.4,0.1-0.7,0.2-1s0.3-0.5,0.6-0.6
|
207 |
+
c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.1,1-0.1c0.3,0,0.6,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5
|
208 |
+
c0.1,0.2,0.2,0.5,0.2,0.9v3.2c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.3,0.2c0.1,0,0.2,0,0.3-0.1V149z M73.5,145.8
|
209 |
+
c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1s-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
210 |
+
c-0.1,0.1-0.2,0.4-0.2,0.6c0,0.2,0,0.3,0.1,0.4s0.2,0.2,0.3,0.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0,0.3,0,0.5,0c0.3,0,0.6,0,0.9-0.1
|
211 |
+
c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.3-0.3,0.3-0.5s0.1-0.3,0.1-0.5V145.8z"/>
|
212 |
+
<path fill="#565656" d="M80.8,150.8c-0.5,0.5-1.2,0.8-2.2,0.8c-0.3,0-0.6,0-0.9-0.1c-0.3-0.1-0.6-0.2-0.8-0.3
|
213 |
+
c-0.2-0.1-0.4-0.3-0.6-0.6c-0.2-0.2-0.2-0.5-0.3-0.9h1c0,0.2,0.1,0.3,0.2,0.5c0.1,0.1,0.2,0.2,0.4,0.3c0.2,0.1,0.3,0.1,0.5,0.2
|
214 |
+
s0.4,0.1,0.5,0.1c0.3,0,0.6-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5s0.3-0.5,0.3-0.7c0.1-0.3,0.1-0.6,0.1-0.9v-0.4h0
|
215 |
+
c-0.2,0.4-0.4,0.7-0.8,0.8s-0.7,0.3-1.1,0.3c-0.5,0-0.9-0.1-1.2-0.3c-0.3-0.2-0.6-0.4-0.9-0.7s-0.4-0.6-0.5-1
|
216 |
+
c-0.1-0.4-0.2-0.8-0.2-1.2c0-0.4,0-0.7,0.1-1.1c0.1-0.4,0.3-0.7,0.5-1.1c0.2-0.3,0.5-0.6,0.9-0.8c0.4-0.2,0.8-0.3,1.4-0.3
|
217 |
+
c0.4,0,0.8,0.1,1.1,0.3s0.6,0.4,0.8,0.8h0v-0.9h1v5.7C81.5,149.5,81.2,150.2,80.8,150.8z M79.5,148c0.2-0.1,0.4-0.3,0.6-0.6
|
218 |
+
c0.1-0.2,0.2-0.5,0.3-0.8s0.1-0.6,0.1-0.9c0-0.3,0-0.5-0.1-0.8c-0.1-0.3-0.2-0.5-0.3-0.7s-0.3-0.4-0.5-0.5
|
219 |
+
c-0.2-0.1-0.5-0.2-0.8-0.2c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.6,0.5S77,144.7,77,145c-0.1,0.3-0.1,0.6-0.1,0.9
|
220 |
+
c0,0.3,0,0.6,0.1,0.8c0.1,0.3,0.2,0.5,0.3,0.8c0.1,0.2,0.3,0.4,0.5,0.6c0.2,0.1,0.5,0.2,0.8,0.2S79.2,148.1,79.5,148z"/>
|
221 |
+
<path fill="#565656" d="M87.4,148.6c-0.5,0.4-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2c-0.4-0.2-0.7-0.4-0.9-0.7
|
222 |
+
c-0.2-0.3-0.4-0.6-0.6-1c-0.1-0.4-0.2-0.8-0.2-1.3c0-0.5,0.1-0.9,0.2-1.3s0.3-0.7,0.6-1c0.3-0.3,0.6-0.5,0.9-0.7
|
223 |
+
c0.4-0.2,0.7-0.2,1.2-0.2c0.6,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.5,0.9,0.9c0.2,0.4,0.4,0.7,0.5,1.2c0.1,0.4,0.1,0.8,0.1,1.2h-4.6
|
224 |
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.2,0.2,0.5,0.3,0.6c0.2,0.2,0.4,0.3,0.6,0.5s0.5,0.2,0.9,0.2c0.4,0,0.8-0.1,1.1-0.3
|
225 |
+
c0.3-0.2,0.5-0.5,0.5-0.9h1C88.2,147.7,87.9,148.3,87.4,148.6z M87.1,144.6c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.3-0.3-0.6-0.4
|
226 |
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.5,0-0.7,0.1c-0.2,0.1-0.4,0.2-0.5,0.4s-0.3,0.3-0.4,0.6s-0.1,0.4-0.2,0.7h3.6
|
227 |
+
C87.3,145.1,87.2,144.8,87.1,144.6z"/>
|
228 |
</g>
|
229 |
+
<path id="Rectangle_646" fill="#377DFF" d="M85,238h95c2.8,0,5,2.2,5,5v17c0,2.8-2.2,5-5,5H85c-2.8,0-5-2.2-5-5v-17
|
230 |
+
C80,240.2,82.2,238,85,238z"/>
|
231 |
<g enable-background="new ">
|
232 |
+
<path fill="#FFFFFF" d="M121,253.6c0,0.3,0,0.5,0.1,0.7c0.1,0.2,0.2,0.4,0.4,0.5s0.4,0.2,0.6,0.3c0.2,0.1,0.5,0.1,0.7,0.1
|
233 |
c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.4-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.3-0.3s0.1-0.3,0.1-0.4c0-0.3-0.1-0.5-0.2-0.6
|
234 |
c-0.1-0.1-0.3-0.2-0.4-0.3c-0.3-0.1-0.5-0.2-0.9-0.3c-0.3-0.1-0.8-0.2-1.2-0.3c-0.3-0.1-0.6-0.2-0.8-0.3c-0.2-0.1-0.4-0.3-0.5-0.4
|
235 |
c-0.1-0.2-0.2-0.3-0.3-0.5c0-0.2-0.1-0.4-0.1-0.5c0-0.4,0.1-0.7,0.2-0.9c0.1-0.3,0.3-0.5,0.6-0.7c0.2-0.2,0.5-0.3,0.8-0.4
|
238 |
c0,0.3,0.1,0.5,0.2,0.6s0.4,0.3,0.6,0.3c0,0,0.1,0,0.3,0.1c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0.1,0.4,0.1,0.7,0.2s0.4,0.1,0.5,0.1
|
239 |
c0.2,0.1,0.4,0.2,0.6,0.3s0.3,0.3,0.4,0.4c0.1,0.2,0.2,0.3,0.3,0.5s0.1,0.4,0.1,0.6c0,0.4-0.1,0.7-0.2,1c-0.2,0.3-0.4,0.5-0.6,0.7
|
240 |
c-0.3,0.2-0.6,0.3-0.9,0.4c-0.3,0.1-0.7,0.1-1,0.1c-0.4,0-0.8,0-1.1-0.2c-0.4-0.1-0.7-0.3-0.9-0.5c-0.3-0.2-0.5-0.5-0.6-0.8
|
241 |
+
c-0.2-0.3-0.2-0.7-0.2-1.1H121z"/>
|
242 |
+
<path fill="#FFFFFF" d="M126.6,248.9h5.1v1.1h-3.9v1.9h3.6v1h-3.6v2.1h4v1.1h-5.2V248.9z"/>
|
243 |
+
<path fill="#FFFFFF" d="M132.9,248.9h1.3l3.3,5.3h0v-5.3h1.2v7.1h-1.3l-3.2-5.2h0v5.2h-1.2V248.9z"/>
|
244 |
+
<path fill="#FFFFFF" d="M140.1,248.9h3c0.5,0,1,0.1,1.4,0.3c0.4,0.2,0.7,0.4,1,0.8c0.3,0.3,0.4,0.7,0.6,1.1s0.2,0.9,0.2,1.4
|
245 |
+
c0,0.5-0.1,1-0.2,1.4s-0.3,0.8-0.6,1.1c-0.3,0.3-0.6,0.6-1,0.8c-0.4,0.2-0.9,0.3-1.4,0.3h-3V248.9z M141.4,255h1.2
|
246 |
+
c0.5,0,0.9-0.1,1.2-0.2c0.3-0.1,0.6-0.3,0.7-0.5c0.2-0.2,0.3-0.5,0.4-0.8c0.1-0.3,0.1-0.6,0.1-1c0-0.4,0-0.7-0.1-1
|
247 |
+
c-0.1-0.3-0.2-0.6-0.4-0.8c-0.2-0.2-0.4-0.4-0.7-0.5c-0.3-0.1-0.7-0.2-1.2-0.2h-1.2V255z"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
248 |
</g>
|
249 |
</g>
|
250 |
</svg>
|
templates/30/preview-thumb.svg
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 265 300" enable-background="new 0 0 265 300" xml:space="preserve">
|
5 |
+
<g>
|
6 |
+
<path id="Rectangle_1049" fill="#FFFFFF" d="M5,0h255c2.8,0,5,2.2,5,5v290c0,2.8-2.2,5-5,5H5c-2.8,0-5-2.2-5-5V5C0,2.2,2.2,0,5,0z"
|
7 |
+
/>
|
8 |
+
<path id="Rectangle_1050" fill="#E5E9EA" d="M42.5,59h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
9 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,60.1,41.1,59,42.5,59z"/>
|
10 |
+
<path id="Rectangle_1051" fill="#E5E9EA" d="M42.5,103h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
11 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C40,104.1,41.1,103,42.5,103z"/>
|
12 |
+
<path id="Rectangle_1059" fill="#E5E9EA" d="M45,147h75c2.8,0,5,2.2,5,5v6c0,2.8-2.2,5-5,5H45c-2.8,0-5-2.2-5-5v-6
|
13 |
+
C40,149.2,42.2,147,45,147z"/>
|
14 |
+
<path id="Rectangle_1052" fill="#E5E9EA" d="M142.5,103h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
15 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C140,104.1,141.1,103,142.5,103z"/>
|
16 |
+
<path id="Rectangle_1060" fill="#E5E9EA" d="M145,147h75c2.8,0,5,2.2,5,5v6c0,2.8-2.2,5-5,5h-75c-2.8,0-5-2.2-5-5v-6
|
17 |
+
C140,149.2,142.2,147,145,147z"/>
|
18 |
+
<path id="Rectangle_1061" fill="#FFFFFF" d="M153,152h15c1.7,0,3,1.3,3,3l0,0c0,1.7-1.3,3-3,3h-15c-1.7,0-3-1.3-3-3l0,0
|
19 |
+
C150,153.3,151.3,152,153,152z"/>
|
20 |
+
<path id="Rectangle_1065" fill="#FFFFFF" d="M108,152h4c1.7,0,3,1.3,3,3l0,0c0,1.7-1.3,3-3,3h-4c-1.7,0-3-1.3-3-3l0,0
|
21 |
+
C105,153.3,106.3,152,108,152z"/>
|
22 |
+
<path id="Rectangle_1053" fill="#E5E9EA" d="M142.5,59h80c1.4,0,2.5,1.1,2.5,2.5l0,0c0,1.4-1.1,2.5-2.5,2.5h-80
|
23 |
+
c-1.4,0-2.5-1.1-2.5-2.5l0,0C140,60.1,141.1,59,142.5,59z"/>
|
24 |
+
<text transform="matrix(1 0 0 1 40 51)" fill="#565656" font-family="'HelveticaNeue'" font-size="12px">First Name</text>
|
25 |
+
<text transform="matrix(1 0 0 1 40 95)" fill="#565656" font-family="'HelveticaNeue'" font-size="12px">Email</text>
|
26 |
+
<text transform="matrix(1 0 0 1 40 139)" fill="#565656" font-family="'Helveti
|