Added Chrome support

Added initial support for Chrome browser
This commit is contained in:
amarcu5
2018-11-12 13:10:21 +00:00
parent 77ff154a0a
commit 8a7bf9d755
21 changed files with 1733 additions and 46 deletions
+24 -8
View File
@@ -21,6 +21,8 @@
## Contents
- [Features](#features)
- [Installation](#installation)
* [Safari](#safari)
* [Chrome](#chrome)
- [Supported sites](#supported-sites)
- [Changelog](#changelog)
- [Development](#development)
@@ -34,13 +36,18 @@
## Features
* Adds a dedicated Picture in Picture button to the video player of [supported sites](#supported-sites)
* Button integrates seamlessly with the player including hover effects and tooltips
* Supports closed captions in Picture and Picture mode
* Supports closed captions in Picture and Picture mode (Safari only)
* Supports Safari and Chrome
* Free and open source
## Installation
Get the latest release from the [Safari Extension Gallery](https://safari-extensions.apple.com/details/?id=com.amarcus.safari.piper-BQ6Q24MF9X)
<sub>...or live life on the edge with the latest [development build](https://rawgit.com/amarcu5/PiPer/develop/out/PiPer-safari-legacy.safariextz) (IMPORTANT: these builds do not update automatically!)</sub>
### Safari
Install from the [Mac App Store](https://itunes.apple.com/app/1421915518?mt=12&ls=1) by clicking "Get"
<sub>(The [Safari Extension Gallery](https://safari-extensions.apple.com/details/?id=com.amarcus.safari.piper-BQ6Q24MF9X) is now [deprecated](https://developer.apple.com/documentation/safariextensions))</sub>
### Chrome
Install from the [Chrome Web Store](https://chrome.google.com/webstore/detail/piper/jbjleapidaddpbncgofepljddfeoghkc) by clicking "Add to Chrome"
<sub>...or live life on the edge with the latest [development build](https://github.com/amarcu5/PiPer/tree/develop/out) (IMPORTANT: these builds do not update automatically!)</sub>
## Supported sites
* [Amazon Video](http://www.amazon.com/PrimeVideo)
@@ -86,8 +93,14 @@ You can find information about releases [here](https://github.com/amarcu5/PiPer/
### Building
#### Prerequisites
* Mac running macOS 10.12 Sierra or later
* [Node.js](https://nodejs.org)
* Operating system
* macOS: 10.12 Sierra or newer (required to build Safari extension)
* Windows: Vista or newer using [Cygwin](https://cygwin.com/install.html)
* Linux: 64-bit Ubuntu 14.04+, Debian 8+, openSUSE 13.3+, or Fedora Linux 24+
* Software
* [Node.js](https://nodejs.org)
* [Java](https://www.java.com/en/download/) (Windows only)
#### Build tools
The following build tools are used to build the extension:
@@ -107,8 +120,11 @@ npm install -g google-closure-compiler-js
#### Steps
1. Clone the repository
2. Run `make.sh`
1. By default this builds the unoptimized and unpackaged development version into the `./out/` directory that can then be installed using Safari's Extension Builder
2. Alternatively run `./make.sh -p release` to build the optimized and packaged release version (note that packaging requires a private key)
1. By default this builds the unoptimized and unpackaged development version for all targets into the `./out/` directory
2. Alternatively:
* `./make.sh -p release` to build the optimized release versions for all targets
* `./make.sh -p release -t chrome` to build the optimized release version for the Chrome browser
* `./make.sh -h` to see the full list of options
### Supporting a new site
If we wanted to support `example.com` with the source:
+33 -7
View File
@@ -4,7 +4,7 @@
EXTENSION_NAME="PiPer"
SOURCE_FILES=("main.js" "fix.js" "localization_bridge.js")
SOURCE_FILES=("main.js" "fix.js" "background.js" "install.js" "localization_bridge.js")
# Certifcate paths
LEAF_CERT_PATH="../certs/cert.pem"
@@ -20,7 +20,7 @@ Usage: make.sh [options]
Options:
-h -? --help Show this screen
-t --target (all|safari|safari-legacy) Make extension for target browser [default: all]
-t --target (all|safari|safari-legacy|chrome) Make extension for target browser [default: all]
-p --profile (release|debug|distribute) Set settings according to profile [default: debug]
-c --compress-css Compress CSS
-j --compress-js Compress JavaScript
@@ -116,9 +116,13 @@ echo "Setting '${profile}' profile"
case $targets in
safari) targets=("safari") ;;
safari-legacy) targets=("safari-legacy") ;;
*) targets=("safari" "safari-legacy")
chrome) targets=("chrome") ;;
*) targets=("safari" "safari-legacy" "chrome")
esac
# Validate logging level
logging_level="${logging_level//[!0-9]/}"
[[ -z "$logging_level" ]] && logging_level=0
# Helper checks for build tool dependency and falls back to 'npx' if possible
function get_node_command() {
@@ -301,6 +305,7 @@ EOF
} >"out/${EXTENSION_NAME}/scripts/resources/index.js"
for target in "${targets[@]}"; do
echo "Building '${target}' extension"
@@ -317,6 +322,11 @@ for target in "${targets[@]}"; do
target_extension=".safariextension"
common_file_path=""
;;
chrome)
browser=2
target_extension=""
common_file_path=""
;;
*) exit 1
esac
@@ -397,15 +407,16 @@ for target in "${targets[@]}"; do
extern_path=$(fix_absolute_path "${scripts_path}/externs.js")
defines_processed_path=$(echo "${defines_path%.*}" | sed -E 's|[/@\]|$|g' | sed -E 's/[-. ]/_/g' | sed -e 's/\[/%5B/g' -e 's/]/%5D/g' -e 's/>/%3E/g' -e 's/</%3C/g')
browser_flag="BROWSER$\$module${defines_processed_path}=${browser}"
logging_flag="LOGGING_LEVEL$\$module${defines_processed_path}=${logging_level}"
for entry in "${SOURCE_FILES[@]}"; do
files=()
absolute_entry="${scripts_path}/${entry}"
[[ ! -f "$absolute_entry" ]] && continue
add_element "$absolute_entry"
process_file "$absolute_entry"
@@ -419,10 +430,11 @@ for target in "${targets[@]}"; do
if [[ "$path" = "$defines_path" ]]; then
defines=(
"--define" "$logging_flag"
"--define" "$browser_flag"
)
fi
done
if [[ "$debug_js" -eq 0 ]]; then
source_map_options=()
else
@@ -454,7 +466,7 @@ for target in "${targets[@]}"; do
"${defines[@]}" \
)
fi
${CCJS_PATH} \
"${compression_options[@]}" \
--warning_level VERBOSE \
@@ -587,6 +599,20 @@ for target in "${targets[@]}"; do
rm -rf "out/${EXTENSION_NAME}-${target}${target_extension}"
fi
elif [[ "${target}" == "chrome" ]]; then
# Update manifest version information
if [[ "${update_version}" -eq 1 ]]; then
sed -i.bak -E "s|\"version\": *\"[^\"]+\"|\"version\": \"${git_release_version}\"|g" "out/${EXTENSION_NAME}-${target}/manifest.json"
rm -rf "out/${EXTENSION_NAME}-${target}/manifest.json.bak"
fi
# Package chrome extension
if [[ "${package_ext}" -eq 1 ]]; then
(cd "out/${EXTENSION_NAME}-${target}${target_extension}" && zip -rq "${EXTENSION_NAME}-${target}${target_extension}.zip" *)
mv "out/${EXTENSION_NAME}-${target}${target_extension}/${EXTENSION_NAME}-${target}${target_extension}.zip" "out/"
rm -rf "out/${EXTENSION_NAME}-${target}${target_extension}"
fi
fi
done
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
+30
View File
@@ -0,0 +1,30 @@
{
"name": "PiPer",
"description": "Adds Picture in Picture functionality to YouTube, Netflix, Amazon Video, Twitch, and more!",
"version": "0.0.0",
"icons": {
"128": "Icon-128.png"
},
"background": {
"scripts": ["scripts/background.js"],
"persistent": false
},
"content_scripts": [
{
"all_frames": true,
"matches": ["http://*/*", "https://*/*"],
"run_at": "document_idle",
"js": ["scripts/main.js"]
}
],
"permissions": [
"activeTab",
"storage"
],
"web_accessible_resources": [
"images/*.svg",
"scripts/*.js"
],
"minimum_chrome_version": "69.0.3483.0",
"manifest_version": 2
}
+5
View File
@@ -0,0 +1,5 @@
chrome.runtime.onInstalled.addListener(function(/** {reason: string} */ details) {
if (details.reason == "install") {
chrome.tabs.create({url: chrome.extension.getURL("install.html")});
}
});
+48
View File
@@ -0,0 +1,48 @@
import { info } from './logger.js'
import { localizedString, localizedStringWithReplacements } from './localization.js'
// Hide page during loading
const htmlTag = /** @type {HTMLElement} */ (document.getElementsByTagName("html")[0]);
htmlTag.style.display = 'none';
document.addEventListener('DOMContentLoaded', function() {
// Localize text elements
const localizedElements = document.getElementsByClassName('localized-string');
for (let index = 0, element; element = localizedElements[index]; index++) {
const key = element.textContent.trim();
let string;
if (key == 'chrome-flags-warning') {
string = localizedStringWithReplacements(key, [
['emphasis', '<span class="warning-emphasis">'],
['/emphasis', '</span>'],
]);
} else {
string = localizedString(key);
}
element.innerHTML = string;
}
// Make page visible
htmlTag.style.removeProperty('display');
// Open required Chrome flag if warning button clicked
document.getElementById('warning-button').addEventListener('click', function(event) {
chrome.tabs.create({url: 'chrome://flags/#enable-surfaces-for-videos'});
});
// Test for Picture in Picture support and display warning to activate Chrome flags if needed
const video = /** @type {HTMLVideoElement} */ (document.getElementById('test-video'));
video.addEventListener('loadeddata', function() {
video.requestPictureInPicture().catch(function(/** Error */ error) {
if (~error.message.indexOf('Picture-in-Picture is not available')) {
info('Picture-in-Picture NOT supported');
document.getElementById('warning').style.display = 'flex';
} else {
info('Picture-in-Picture IS supported');
}
});
});
});
+848
View File
@@ -0,0 +1,848 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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"
viewBox="0 0 1024 1024" style="enable-background:new 0 0 1024 1024;" xml:space="preserve">
<style type="text/css">
.st0{fill:url(#Backround_1_);}
.st1{opacity:0.25;}
.st2{opacity:0.2;}
.st3{fill:none;stroke:#231F20;}
.st4{fill:none;stroke:#231F20;stroke-width:2;}
.st5{opacity:0.18;}
.st6{fill:none;stroke:#231F20;stroke-width:3;}
.st7{fill:none;stroke:#231F20;stroke-width:4;}
.st8{opacity:0.16;}
.st9{fill:none;stroke:#231F20;stroke-width:5;}
.st10{fill:none;stroke:#231F20;stroke-width:6;}
.st11{opacity:0.14;}
.st12{fill:none;stroke:#231F20;stroke-width:7;}
.st13{fill:none;stroke:#231F20;stroke-width:8;}
.st14{opacity:0.12;}
.st15{fill:none;stroke:#231F20;stroke-width:9;}
.st16{fill:none;stroke:#231F20;stroke-width:10;}
.st17{opacity:0.1;}
.st18{fill:none;stroke:#231F20;stroke-width:11;}
.st19{fill:none;stroke:#231F20;stroke-width:12;}
.st20{opacity:9.000000e-02;}
.st21{fill:none;stroke:#231F20;stroke-width:13;}
.st22{fill:none;stroke:#231F20;stroke-width:14;}
.st23{opacity:8.000000e-02;}
.st24{fill:none;stroke:#231F20;stroke-width:15;}
.st25{fill:none;stroke:#231F20;stroke-width:16;}
.st26{opacity:7.000000e-02;}
.st27{fill:none;stroke:#231F20;stroke-width:17;}
.st28{fill:none;stroke:#231F20;stroke-width:18;}
.st29{opacity:6.000000e-02;}
.st30{fill:none;stroke:#231F20;stroke-width:19;}
.st31{fill:none;stroke:#231F20;stroke-width:20;}
.st32{opacity:5.000000e-02;}
.st33{fill:none;stroke:#231F20;stroke-width:21;}
.st34{fill:none;stroke:#231F20;stroke-width:22;}
.st35{opacity:4.000000e-02;}
.st36{fill:none;stroke:#231F20;stroke-width:23;}
.st37{fill:none;stroke:#231F20;stroke-width:24;}
.st38{opacity:3.000000e-02;}
.st39{fill:none;stroke:#231F20;stroke-width:25;}
.st40{fill:none;stroke:#231F20;stroke-width:26;}
.st41{opacity:2.000000e-02;}
.st42{fill:none;stroke:#231F20;stroke-width:27;}
.st43{fill:none;stroke:#231F20;stroke-width:28;}
.st44{opacity:1.000000e-02;}
.st45{fill:none;stroke:#231F20;stroke-width:29;}
.st46{fill:none;stroke:#231F20;stroke-width:30;}
.st47{fill:none;stroke:#FFFFFF;stroke-width:32;stroke-miterlimit:10;}
.st48{fill:none;stroke:#FFFFFF;stroke-width:32;stroke-linecap:round;stroke-miterlimit:10;}
</style>
<linearGradient id="Backround_1_" gradientUnits="userSpaceOnUse" x1="193.802" y1="830.1981" x2="830.1981" y2="193.802" gradientTransform="matrix(1 0 0 -1 0 1024)">
<stop offset="1.179610e-03" style="stop-color:#0671D9"/>
<stop offset="1" style="stop-color:#1B557C"/>
</linearGradient>
<circle id="Backround" class="st0" cx="512" cy="512" r="450"/>
<g id="Shadow" class="st1">
<g>
<g>
<path d="M253,619.9c-5.6,0-14.3-1.2-21.8-7.5c-5.5-4.6-12.1-13.5-12.1-29.7V339.9c-0.4-4.3-0.8-15.5,6.6-24.3
c3.7-4.3,10.5-9.5,22.1-9.5h458.3h0.3c1.4,0.1,8.8,0.5,16.6,3.8c13.1,5.4,20.7,16,20.7,29.1v146.5H715V338.9c0-0.5,0-1.3-2.9-2.4
c-2.9-1.2-6-1.5-6.8-1.6H247.9h-0.1c-0.1,0.7-0.1,1.5,0,1.7l0.2,1.2v245c0,4.5,0.9,6.8,1.7,7.6c0.8,0.7,2.9,0.9,4,0.8l1.4-0.4
l1,0.1h185.4v28.8H256.9C255.9,619.8,254.6,619.9,253,619.9z M253.4,591.1L253.4,591.1L253.4,591.1z"/>
</g>
<g>
<path d="M422.5,528c-3.7,0-7.5-1.4-10.3-4.3L279,388.4c-5.6-5.7-5.5-14.8,0.2-20.3c5.7-5.6,14.8-5.5,20.3,0.2l133.2,135.3
c5.6,5.7,5.5,14.8-0.2,20.3C429.8,526.7,426.1,528,422.5,528z"/>
</g>
<g>
<path d="M422.5,528h-94.2c-7.9,0-14.4-6.5-14.4-14.4s6.5-14.4,14.4-14.4h94.2c7.9,0,14.4,6.5,14.4,14.4S430.5,528,422.5,528z"/>
</g>
<g>
<path d="M422.5,528c-7.9,0-14.4-6.5-14.4-14.4V413.3c0-7.9,6.5-14.4,14.4-14.4c7.9,0,14.4,6.5,14.4,14.4v100.4
C436.9,521.5,430.5,528,422.5,528z"/>
</g>
<g>
<path d="M773.8,725.6H510.6c-24.4,0-44.2-19.8-44.2-44.2V565.9c0-24.4,19.8-44.2,44.2-44.2h263.2c24.4,0,44.2,19.8,44.2,44.2
v115.5C818,705.7,798.2,725.6,773.8,725.6z M510.6,550.5c-8.5,0-15.4,6.9-15.4,15.4v115.5c0,8.5,6.9,15.4,15.4,15.4h263.2
c8.5,0,15.4-6.9,15.4-15.4V565.9c0-8.5-6.9-15.4-15.4-15.4H510.6L510.6,550.5z"/>
</g>
</g>
<g class="st2">
<g>
<path class="st3" d="M253,619.9c-5.6,0-14.3-1.2-21.8-7.5c-5.5-4.6-12.1-13.5-12.1-29.7V339.9c-0.4-4.3-0.8-15.5,6.6-24.3
c3.7-4.3,10.5-9.5,22.1-9.5h458.3h0.3c1.4,0.1,8.8,0.5,16.6,3.8c13.1,5.4,20.7,16,20.7,29.1v146.5H715V338.9c0-0.5,0-1.3-2.9-2.4
c-2.9-1.2-6-1.5-6.8-1.6H247.9h-0.1c-0.1,0.7-0.1,1.5,0,1.7l0.2,1.2v245c0,4.5,0.9,6.8,1.7,7.6c0.8,0.7,2.9,0.9,4,0.8l1.4-0.4
l1,0.1h185.4v28.8H256.9C255.9,619.8,254.6,619.9,253,619.9z M253.4,591.1L253.4,591.1L253.4,591.1z"/>
</g>
<g>
<path class="st3" d="M422.5,528c-3.7,0-7.5-1.4-10.3-4.3L279,388.4c-5.6-5.7-5.5-14.8,0.2-20.3c5.7-5.6,14.8-5.5,20.3,0.2
l133.2,135.3c5.6,5.7,5.5,14.8-0.2,20.3C429.8,526.7,426.1,528,422.5,528z"/>
</g>
<g>
<path class="st3" d="M422.5,528h-94.2c-7.9,0-14.4-6.5-14.4-14.4s6.5-14.4,14.4-14.4h94.2c7.9,0,14.4,6.5,14.4,14.4
S430.5,528,422.5,528z"/>
</g>
<g>
<path class="st3" d="M422.5,528c-7.9,0-14.4-6.5-14.4-14.4V413.3c0-7.9,6.5-14.4,14.4-14.4c7.9,0,14.4,6.5,14.4,14.4v100.4
C436.9,521.5,430.5,528,422.5,528z"/>
</g>
<g>
<path class="st3" d="M773.8,725.6H510.6c-24.4,0-44.2-19.8-44.2-44.2V565.9c0-24.4,19.8-44.2,44.2-44.2h263.2
c24.4,0,44.2,19.8,44.2,44.2v115.5C818,705.7,798.2,725.6,773.8,725.6z M510.6,550.5c-8.5,0-15.4,6.9-15.4,15.4v115.5
c0,8.5,6.9,15.4,15.4,15.4h263.2c8.5,0,15.4-6.9,15.4-15.4V565.9c0-8.5-6.9-15.4-15.4-15.4H510.6L510.6,550.5z"/>
</g>
</g>
<g class="st2">
<g>
<path class="st4" d="M253,619.9c-5.6,0-14.3-1.2-21.8-7.5c-5.5-4.6-12.1-13.5-12.1-29.7V339.9c-0.4-4.3-0.8-15.5,6.6-24.3
c3.7-4.3,10.5-9.5,22.1-9.5h458.3h0.3c1.4,0.1,8.8,0.5,16.6,3.8c13.1,5.4,20.7,16,20.7,29.1v146.5H715V338.9c0-0.5,0-1.3-2.9-2.4
c-2.9-1.2-6-1.5-6.8-1.6H247.9h-0.1c-0.1,0.7-0.1,1.5,0,1.7l0.2,1.2v245c0,4.5,0.9,6.8,1.7,7.6c0.8,0.7,2.9,0.9,4,0.8l1.4-0.4
l1,0.1h185.4v28.8H256.9C255.9,619.8,254.6,619.9,253,619.9z M253.4,591.1L253.4,591.1L253.4,591.1z"/>
</g>
<g>
<path class="st4" d="M422.5,528c-3.7,0-7.5-1.4-10.3-4.3L279,388.4c-5.6-5.7-5.5-14.8,0.2-20.3c5.7-5.6,14.8-5.5,20.3,0.2
l133.2,135.3c5.6,5.7,5.5,14.8-0.2,20.3C429.8,526.7,426.1,528,422.5,528z"/>
</g>
<g>
<path class="st4" d="M422.5,528h-94.2c-7.9,0-14.4-6.5-14.4-14.4s6.5-14.4,14.4-14.4h94.2c7.9,0,14.4,6.5,14.4,14.4
S430.5,528,422.5,528z"/>
</g>
<g>
<path class="st4" d="M422.5,528c-7.9,0-14.4-6.5-14.4-14.4V413.3c0-7.9,6.5-14.4,14.4-14.4c7.9,0,14.4,6.5,14.4,14.4v100.4
C436.9,521.5,430.5,528,422.5,528z"/>
</g>
<g>
<path class="st4" d="M773.8,725.6H510.6c-24.4,0-44.2-19.8-44.2-44.2V565.9c0-24.4,19.8-44.2,44.2-44.2h263.2
c24.4,0,44.2,19.8,44.2,44.2v115.5C818,705.7,798.2,725.6,773.8,725.6z M510.6,550.5c-8.5,0-15.4,6.9-15.4,15.4v115.5
c0,8.5,6.9,15.4,15.4,15.4h263.2c8.5,0,15.4-6.9,15.4-15.4V565.9c0-8.5-6.9-15.4-15.4-15.4H510.6L510.6,550.5z"/>
</g>
</g>
<g class="st5">
<g>
<path class="st6" d="M253,619.9c-5.6,0-14.3-1.2-21.8-7.5c-5.5-4.6-12.1-13.5-12.1-29.7V339.9c-0.4-4.3-0.8-15.5,6.6-24.3
c3.7-4.3,10.5-9.5,22.1-9.5h458.3h0.3c1.4,0.1,8.8,0.5,16.6,3.8c13.1,5.4,20.7,16,20.7,29.1v146.5H715V338.9c0-0.5,0-1.3-2.9-2.4
c-2.9-1.2-6-1.5-6.8-1.6H247.9h-0.1c-0.1,0.7-0.1,1.5,0,1.7l0.2,1.2v245c0,4.5,0.9,6.8,1.7,7.6c0.8,0.7,2.9,0.9,4,0.8l1.4-0.4
l1,0.1h185.4v28.8H256.9C255.9,619.8,254.6,619.9,253,619.9z M253.4,591.1L253.4,591.1L253.4,591.1z"/>
</g>
<g>
<path class="st6" d="M422.5,528c-3.7,0-7.5-1.4-10.3-4.3L279,388.4c-5.6-5.7-5.5-14.8,0.2-20.3c5.7-5.6,14.8-5.5,20.3,0.2
l133.2,135.3c5.6,5.7,5.5,14.8-0.2,20.3C429.8,526.7,426.1,528,422.5,528z"/>
</g>
<g>
<path class="st6" d="M422.5,528h-94.2c-7.9,0-14.4-6.5-14.4-14.4s6.5-14.4,14.4-14.4h94.2c7.9,0,14.4,6.5,14.4,14.4
S430.5,528,422.5,528z"/>
</g>
<g>
<path class="st6" d="M422.5,528c-7.9,0-14.4-6.5-14.4-14.4V413.3c0-7.9,6.5-14.4,14.4-14.4c7.9,0,14.4,6.5,14.4,14.4v100.4
C436.9,521.5,430.5,528,422.5,528z"/>
</g>
<g>
<path class="st6" d="M773.8,725.6H510.6c-24.4,0-44.2-19.8-44.2-44.2V565.9c0-24.4,19.8-44.2,44.2-44.2h263.2
c24.4,0,44.2,19.8,44.2,44.2v115.5C818,705.7,798.2,725.6,773.8,725.6z M510.6,550.5c-8.5,0-15.4,6.9-15.4,15.4v115.5
c0,8.5,6.9,15.4,15.4,15.4h263.2c8.5,0,15.4-6.9,15.4-15.4V565.9c0-8.5-6.9-15.4-15.4-15.4H510.6L510.6,550.5z"/>
</g>
</g>
<g class="st5">
<g>
<path class="st7" d="M253,619.9c-5.6,0-14.3-1.2-21.8-7.5c-5.5-4.6-12.1-13.5-12.1-29.7V339.9c-0.4-4.3-0.8-15.5,6.6-24.3
c3.7-4.3,10.5-9.5,22.1-9.5h458.3h0.3c1.4,0.1,8.8,0.5,16.6,3.8c13.1,5.4,20.7,16,20.7,29.1v146.5H715V338.9c0-0.5,0-1.3-2.9-2.4
c-2.9-1.2-6-1.5-6.8-1.6H247.9h-0.1c-0.1,0.7-0.1,1.5,0,1.7l0.2,1.2v245c0,4.5,0.9,6.8,1.7,7.6c0.8,0.7,2.9,0.9,4,0.8l1.4-0.4
l1,0.1h185.4v28.8H256.9C255.9,619.8,254.6,619.9,253,619.9z M253.4,591.1L253.4,591.1L253.4,591.1z"/>
</g>
<g>
<path class="st7" d="M422.5,528c-3.7,0-7.5-1.4-10.3-4.3L279,388.4c-5.6-5.7-5.5-14.8,0.2-20.3c5.7-5.6,14.8-5.5,20.3,0.2
l133.2,135.3c5.6,5.7,5.5,14.8-0.2,20.3C429.8,526.7,426.1,528,422.5,528z"/>
</g>
<g>
<path class="st7" d="M422.5,528h-94.2c-7.9,0-14.4-6.5-14.4-14.4s6.5-14.4,14.4-14.4h94.2c7.9,0,14.4,6.5,14.4,14.4
S430.5,528,422.5,528z"/>
</g>
<g>
<path class="st7" d="M422.5,528c-7.9,0-14.4-6.5-14.4-14.4V413.3c0-7.9,6.5-14.4,14.4-14.4c7.9,0,14.4,6.5,14.4,14.4v100.4
C436.9,521.5,430.5,528,422.5,528z"/>
</g>
<g>
<path class="st7" d="M773.8,725.6H510.6c-24.4,0-44.2-19.8-44.2-44.2V565.9c0-24.4,19.8-44.2,44.2-44.2h263.2
c24.4,0,44.2,19.8,44.2,44.2v115.5C818,705.7,798.2,725.6,773.8,725.6z M510.6,550.5c-8.5,0-15.4,6.9-15.4,15.4v115.5
c0,8.5,6.9,15.4,15.4,15.4h263.2c8.5,0,15.4-6.9,15.4-15.4V565.9c0-8.5-6.9-15.4-15.4-15.4H510.6L510.6,550.5z"/>
</g>
</g>
<g class="st8">
<g>
<path class="st9" d="M253,619.9c-5.6,0-14.3-1.2-21.8-7.5c-5.5-4.6-12.1-13.5-12.1-29.7V339.9c-0.4-4.3-0.8-15.5,6.6-24.3
c3.7-4.3,10.5-9.5,22.1-9.5h458.3h0.3c1.4,0.1,8.8,0.5,16.6,3.8c13.1,5.4,20.7,16,20.7,29.1v146.5H715V338.9c0-0.5,0-1.3-2.9-2.4
c-2.9-1.2-6-1.5-6.8-1.6H247.9h-0.1c-0.1,0.7-0.1,1.5,0,1.7l0.2,1.2v245c0,4.5,0.9,6.8,1.7,7.6c0.8,0.7,2.9,0.9,4,0.8l1.4-0.4
l1,0.1h185.4v28.8H256.9C255.9,619.8,254.6,619.9,253,619.9z M253.4,591.1L253.4,591.1L253.4,591.1z"/>
</g>
<g>
<path class="st9" d="M422.5,528c-3.7,0-7.5-1.4-10.3-4.3L279,388.4c-5.6-5.7-5.5-14.8,0.2-20.3c5.7-5.6,14.8-5.5,20.3,0.2
l133.2,135.3c5.6,5.7,5.5,14.8-0.2,20.3C429.8,526.7,426.1,528,422.5,528z"/>
</g>
<g>
<path class="st9" d="M422.5,528h-94.2c-7.9,0-14.4-6.5-14.4-14.4s6.5-14.4,14.4-14.4h94.2c7.9,0,14.4,6.5,14.4,14.4
S430.5,528,422.5,528z"/>
</g>
<g>
<path class="st9" d="M422.5,528c-7.9,0-14.4-6.5-14.4-14.4V413.3c0-7.9,6.5-14.4,14.4-14.4c7.9,0,14.4,6.5,14.4,14.4v100.4
C436.9,521.5,430.5,528,422.5,528z"/>
</g>
<g>
<path class="st9" d="M773.8,725.6H510.6c-24.4,0-44.2-19.8-44.2-44.2V565.9c0-24.4,19.8-44.2,44.2-44.2h263.2
c24.4,0,44.2,19.8,44.2,44.2v115.5C818,705.7,798.2,725.6,773.8,725.6z M510.6,550.5c-8.5,0-15.4,6.9-15.4,15.4v115.5
c0,8.5,6.9,15.4,15.4,15.4h263.2c8.5,0,15.4-6.9,15.4-15.4V565.9c0-8.5-6.9-15.4-15.4-15.4H510.6L510.6,550.5z"/>
</g>
</g>
<g class="st8">
<g>
<path class="st10" d="M253,619.9c-5.6,0-14.3-1.2-21.8-7.5c-5.5-4.6-12.1-13.5-12.1-29.7V339.9c-0.4-4.3-0.8-15.5,6.6-24.3
c3.7-4.3,10.5-9.5,22.1-9.5h458.3h0.3c1.4,0.1,8.8,0.5,16.6,3.8c13.1,5.4,20.7,16,20.7,29.1v146.5H715V338.9c0-0.5,0-1.3-2.9-2.4
c-2.9-1.2-6-1.5-6.8-1.6H247.9h-0.1c-0.1,0.7-0.1,1.5,0,1.7l0.2,1.2v245c0,4.5,0.9,6.8,1.7,7.6c0.8,0.7,2.9,0.9,4,0.8l1.4-0.4
l1,0.1h185.4v28.8H256.9C255.9,619.8,254.6,619.9,253,619.9z M253.4,591.1L253.4,591.1L253.4,591.1z"/>
</g>
<g>
<path class="st10" d="M422.5,528c-3.7,0-7.5-1.4-10.3-4.3L279,388.4c-5.6-5.7-5.5-14.8,0.2-20.3c5.7-5.6,14.8-5.5,20.3,0.2
l133.2,135.3c5.6,5.7,5.5,14.8-0.2,20.3C429.8,526.7,426.1,528,422.5,528z"/>
</g>
<g>
<path class="st10" d="M422.5,528h-94.2c-7.9,0-14.4-6.5-14.4-14.4s6.5-14.4,14.4-14.4h94.2c7.9,0,14.4,6.5,14.4,14.4
S430.5,528,422.5,528z"/>
</g>
<g>
<path class="st10" d="M422.5,528c-7.9,0-14.4-6.5-14.4-14.4V413.3c0-7.9,6.5-14.4,14.4-14.4c7.9,0,14.4,6.5,14.4,14.4v100.4
C436.9,521.5,430.5,528,422.5,528z"/>
</g>
<g>
<path class="st10" d="M773.8,725.6H510.6c-24.4,0-44.2-19.8-44.2-44.2V565.9c0-24.4,19.8-44.2,44.2-44.2h263.2
c24.4,0,44.2,19.8,44.2,44.2v115.5C818,705.7,798.2,725.6,773.8,725.6z M510.6,550.5c-8.5,0-15.4,6.9-15.4,15.4v115.5
c0,8.5,6.9,15.4,15.4,15.4h263.2c8.5,0,15.4-6.9,15.4-15.4V565.9c0-8.5-6.9-15.4-15.4-15.4H510.6L510.6,550.5z"/>
</g>
</g>
<g class="st11">
<g>
<path class="st12" d="M253,619.9c-5.6,0-14.3-1.2-21.8-7.5c-5.5-4.6-12.1-13.5-12.1-29.7V339.9c-0.4-4.3-0.8-15.5,6.6-24.3
c3.7-4.3,10.5-9.5,22.1-9.5h458.3h0.3c1.4,0.1,8.8,0.5,16.6,3.8c13.1,5.4,20.7,16,20.7,29.1v146.5H715V338.9c0-0.5,0-1.3-2.9-2.4
c-2.9-1.2-6-1.5-6.8-1.6H247.9h-0.1c-0.1,0.7-0.1,1.5,0,1.7l0.2,1.2v245c0,4.5,0.9,6.8,1.7,7.6c0.8,0.7,2.9,0.9,4,0.8l1.4-0.4
l1,0.1h185.4v28.8H256.9C255.9,619.8,254.6,619.9,253,619.9z M253.4,591.1L253.4,591.1L253.4,591.1z"/>
</g>
<g>
<path class="st12" d="M422.5,528c-3.7,0-7.5-1.4-10.3-4.3L279,388.4c-5.6-5.7-5.5-14.8,0.2-20.3c5.7-5.6,14.8-5.5,20.3,0.2
l133.2,135.3c5.6,5.7,5.5,14.8-0.2,20.3C429.8,526.7,426.1,528,422.5,528z"/>
</g>
<g>
<path class="st12" d="M422.5,528h-94.2c-7.9,0-14.4-6.5-14.4-14.4s6.5-14.4,14.4-14.4h94.2c7.9,0,14.4,6.5,14.4,14.4
S430.5,528,422.5,528z"/>
</g>
<g>
<path class="st12" d="M422.5,528c-7.9,0-14.4-6.5-14.4-14.4V413.3c0-7.9,6.5-14.4,14.4-14.4c7.9,0,14.4,6.5,14.4,14.4v100.4
C436.9,521.5,430.5,528,422.5,528z"/>
</g>
<g>
<path class="st12" d="M773.8,725.6H510.6c-24.4,0-44.2-19.8-44.2-44.2V565.9c0-24.4,19.8-44.2,44.2-44.2h263.2
c24.4,0,44.2,19.8,44.2,44.2v115.5C818,705.7,798.2,725.6,773.8,725.6z M510.6,550.5c-8.5,0-15.4,6.9-15.4,15.4v115.5
c0,8.5,6.9,15.4,15.4,15.4h263.2c8.5,0,15.4-6.9,15.4-15.4V565.9c0-8.5-6.9-15.4-15.4-15.4H510.6L510.6,550.5z"/>
</g>
</g>
<g class="st11">
<g>
<path class="st13" d="M253,619.9c-5.6,0-14.3-1.2-21.8-7.5c-5.5-4.6-12.1-13.5-12.1-29.7V339.9c-0.4-4.3-0.8-15.5,6.6-24.3
c3.7-4.3,10.5-9.5,22.1-9.5h458.3h0.3c1.4,0.1,8.8,0.5,16.6,3.8c13.1,5.4,20.7,16,20.7,29.1v146.5H715V338.9c0-0.5,0-1.3-2.9-2.4
c-2.9-1.2-6-1.5-6.8-1.6H247.9h-0.1c-0.1,0.7-0.1,1.5,0,1.7l0.2,1.2v245c0,4.5,0.9,6.8,1.7,7.6c0.8,0.7,2.9,0.9,4,0.8l1.4-0.4
l1,0.1h185.4v28.8H256.9C255.9,619.8,254.6,619.9,253,619.9z M253.4,591.1L253.4,591.1L253.4,591.1z"/>
</g>
<g>
<path class="st13" d="M422.5,528c-3.7,0-7.5-1.4-10.3-4.3L279,388.4c-5.6-5.7-5.5-14.8,0.2-20.3c5.7-5.6,14.8-5.5,20.3,0.2
l133.2,135.3c5.6,5.7,5.5,14.8-0.2,20.3C429.8,526.7,426.1,528,422.5,528z"/>
</g>
<g>
<path class="st13" d="M422.5,528h-94.2c-7.9,0-14.4-6.5-14.4-14.4s6.5-14.4,14.4-14.4h94.2c7.9,0,14.4,6.5,14.4,14.4
S430.5,528,422.5,528z"/>
</g>
<g>
<path class="st13" d="M422.5,528c-7.9,0-14.4-6.5-14.4-14.4V413.3c0-7.9,6.5-14.4,14.4-14.4c7.9,0,14.4,6.5,14.4,14.4v100.4
C436.9,521.5,430.5,528,422.5,528z"/>
</g>
<g>
<path class="st13" d="M773.8,725.6H510.6c-24.4,0-44.2-19.8-44.2-44.2V565.9c0-24.4,19.8-44.2,44.2-44.2h263.2
c24.4,0,44.2,19.8,44.2,44.2v115.5C818,705.7,798.2,725.6,773.8,725.6z M510.6,550.5c-8.5,0-15.4,6.9-15.4,15.4v115.5
c0,8.5,6.9,15.4,15.4,15.4h263.2c8.5,0,15.4-6.9,15.4-15.4V565.9c0-8.5-6.9-15.4-15.4-15.4H510.6L510.6,550.5z"/>
</g>
</g>
<g class="st14">
<g>
<path class="st15" d="M253,619.9c-5.6,0-14.3-1.2-21.8-7.5c-5.5-4.6-12.1-13.5-12.1-29.7V339.9c-0.4-4.3-0.8-15.5,6.6-24.3
c3.7-4.3,10.5-9.5,22.1-9.5h458.3h0.3c1.4,0.1,8.8,0.5,16.6,3.8c13.1,5.4,20.7,16,20.7,29.1v146.5H715V338.9c0-0.5,0-1.3-2.9-2.4
c-2.9-1.2-6-1.5-6.8-1.6H247.9h-0.1c-0.1,0.7-0.1,1.5,0,1.7l0.2,1.2v245c0,4.5,0.9,6.8,1.7,7.6c0.8,0.7,2.9,0.9,4,0.8l1.4-0.4
l1,0.1h185.4v28.8H256.9C255.9,619.8,254.6,619.9,253,619.9z M253.4,591.1L253.4,591.1L253.4,591.1z"/>
</g>
<g>
<path class="st15" d="M422.5,528c-3.7,0-7.5-1.4-10.3-4.3L279,388.4c-5.6-5.7-5.5-14.8,0.2-20.3c5.7-5.6,14.8-5.5,20.3,0.2
l133.2,135.3c5.6,5.7,5.5,14.8-0.2,20.3C429.8,526.7,426.1,528,422.5,528z"/>
</g>
<g>
<path class="st15" d="M422.5,528h-94.2c-7.9,0-14.4-6.5-14.4-14.4s6.5-14.4,14.4-14.4h94.2c7.9,0,14.4,6.5,14.4,14.4
S430.5,528,422.5,528z"/>
</g>
<g>
<path class="st15" d="M422.5,528c-7.9,0-14.4-6.5-14.4-14.4V413.3c0-7.9,6.5-14.4,14.4-14.4c7.9,0,14.4,6.5,14.4,14.4v100.4
C436.9,521.5,430.5,528,422.5,528z"/>
</g>
<g>
<path class="st15" d="M773.8,725.6H510.6c-24.4,0-44.2-19.8-44.2-44.2V565.9c0-24.4,19.8-44.2,44.2-44.2h263.2
c24.4,0,44.2,19.8,44.2,44.2v115.5C818,705.7,798.2,725.6,773.8,725.6z M510.6,550.5c-8.5,0-15.4,6.9-15.4,15.4v115.5
c0,8.5,6.9,15.4,15.4,15.4h263.2c8.5,0,15.4-6.9,15.4-15.4V565.9c0-8.5-6.9-15.4-15.4-15.4H510.6L510.6,550.5z"/>
</g>
</g>
<g class="st14">
<g>
<path class="st16" d="M253,619.9c-5.6,0-14.3-1.2-21.8-7.5c-5.5-4.6-12.1-13.5-12.1-29.7V339.9c-0.4-4.3-0.8-15.5,6.6-24.3
c3.7-4.3,10.5-9.5,22.1-9.5h458.3h0.3c1.4,0.1,8.8,0.5,16.6,3.8c13.1,5.4,20.7,16,20.7,29.1v146.5H715V338.9c0-0.5,0-1.3-2.9-2.4
c-2.9-1.2-6-1.5-6.8-1.6H247.9h-0.1c-0.1,0.7-0.1,1.5,0,1.7l0.2,1.2v245c0,4.5,0.9,6.8,1.7,7.6c0.8,0.7,2.9,0.9,4,0.8l1.4-0.4
l1,0.1h185.4v28.8H256.9C255.9,619.8,254.6,619.9,253,619.9z M253.4,591.1L253.4,591.1L253.4,591.1z"/>
</g>
<g>
<path class="st16" d="M422.5,528c-3.7,0-7.5-1.4-10.3-4.3L279,388.4c-5.6-5.7-5.5-14.8,0.2-20.3c5.7-5.6,14.8-5.5,20.3,0.2
l133.2,135.3c5.6,5.7,5.5,14.8-0.2,20.3C429.8,526.7,426.1,528,422.5,528z"/>
</g>
<g>
<path class="st16" d="M422.5,528h-94.2c-7.9,0-14.4-6.5-14.4-14.4s6.5-14.4,14.4-14.4h94.2c7.9,0,14.4,6.5,14.4,14.4
S430.5,528,422.5,528z"/>
</g>
<g>
<path class="st16" d="M422.5,528c-7.9,0-14.4-6.5-14.4-14.4V413.3c0-7.9,6.5-14.4,14.4-14.4c7.9,0,14.4,6.5,14.4,14.4v100.4
C436.9,521.5,430.5,528,422.5,528z"/>
</g>
<g>
<path class="st16" d="M773.8,725.6H510.6c-24.4,0-44.2-19.8-44.2-44.2V565.9c0-24.4,19.8-44.2,44.2-44.2h263.2
c24.4,0,44.2,19.8,44.2,44.2v115.5C818,705.7,798.2,725.6,773.8,725.6z M510.6,550.5c-8.5,0-15.4,6.9-15.4,15.4v115.5
c0,8.5,6.9,15.4,15.4,15.4h263.2c8.5,0,15.4-6.9,15.4-15.4V565.9c0-8.5-6.9-15.4-15.4-15.4H510.6L510.6,550.5z"/>
</g>
</g>
<g class="st17">
<g>
<path class="st18" d="M253,619.9c-5.6,0-14.3-1.2-21.8-7.5c-5.5-4.6-12.1-13.5-12.1-29.7V339.9c-0.4-4.3-0.8-15.5,6.6-24.3
c3.7-4.3,10.5-9.5,22.1-9.5h458.3h0.3c1.4,0.1,8.8,0.5,16.6,3.8c13.1,5.4,20.7,16,20.7,29.1v146.5H715V338.9c0-0.5,0-1.3-2.9-2.4
c-2.9-1.2-6-1.5-6.8-1.6H247.9h-0.1c-0.1,0.7-0.1,1.5,0,1.7l0.2,1.2v245c0,4.5,0.9,6.8,1.7,7.6c0.8,0.7,2.9,0.9,4,0.8l1.4-0.4
l1,0.1h185.4v28.8H256.9C255.9,619.8,254.6,619.9,253,619.9z M253.4,591.1L253.4,591.1L253.4,591.1z"/>
</g>
<g>
<path class="st18" d="M422.5,528c-3.7,0-7.5-1.4-10.3-4.3L279,388.4c-5.6-5.7-5.5-14.8,0.2-20.3c5.7-5.6,14.8-5.5,20.3,0.2
l133.2,135.3c5.6,5.7,5.5,14.8-0.2,20.3C429.8,526.7,426.1,528,422.5,528z"/>
</g>
<g>
<path class="st18" d="M422.5,528h-94.2c-7.9,0-14.4-6.5-14.4-14.4s6.5-14.4,14.4-14.4h94.2c7.9,0,14.4,6.5,14.4,14.4
S430.5,528,422.5,528z"/>
</g>
<g>
<path class="st18" d="M422.5,528c-7.9,0-14.4-6.5-14.4-14.4V413.3c0-7.9,6.5-14.4,14.4-14.4c7.9,0,14.4,6.5,14.4,14.4v100.4
C436.9,521.5,430.5,528,422.5,528z"/>
</g>
<g>
<path class="st18" d="M773.8,725.6H510.6c-24.4,0-44.2-19.8-44.2-44.2V565.9c0-24.4,19.8-44.2,44.2-44.2h263.2
c24.4,0,44.2,19.8,44.2,44.2v115.5C818,705.7,798.2,725.6,773.8,725.6z M510.6,550.5c-8.5,0-15.4,6.9-15.4,15.4v115.5
c0,8.5,6.9,15.4,15.4,15.4h263.2c8.5,0,15.4-6.9,15.4-15.4V565.9c0-8.5-6.9-15.4-15.4-15.4H510.6L510.6,550.5z"/>
</g>
</g>
<g class="st17">
<g>
<path class="st19" d="M253,619.9c-5.6,0-14.3-1.2-21.8-7.5c-5.5-4.6-12.1-13.5-12.1-29.7V339.9c-0.4-4.3-0.8-15.5,6.6-24.3
c3.7-4.3,10.5-9.5,22.1-9.5h458.3h0.3c1.4,0.1,8.8,0.5,16.6,3.8c13.1,5.4,20.7,16,20.7,29.1v146.5H715V338.9c0-0.5,0-1.3-2.9-2.4
c-2.9-1.2-6-1.5-6.8-1.6H247.9h-0.1c-0.1,0.7-0.1,1.5,0,1.7l0.2,1.2v245c0,4.5,0.9,6.8,1.7,7.6c0.8,0.7,2.9,0.9,4,0.8l1.4-0.4
l1,0.1h185.4v28.8H256.9C255.9,619.8,254.6,619.9,253,619.9z M253.4,591.1L253.4,591.1L253.4,591.1z"/>
</g>
<g>
<path class="st19" d="M422.5,528c-3.7,0-7.5-1.4-10.3-4.3L279,388.4c-5.6-5.7-5.5-14.8,0.2-20.3c5.7-5.6,14.8-5.5,20.3,0.2
l133.2,135.3c5.6,5.7,5.5,14.8-0.2,20.3C429.8,526.7,426.1,528,422.5,528z"/>
</g>
<g>
<path class="st19" d="M422.5,528h-94.2c-7.9,0-14.4-6.5-14.4-14.4s6.5-14.4,14.4-14.4h94.2c7.9,0,14.4,6.5,14.4,14.4
S430.5,528,422.5,528z"/>
</g>
<g>
<path class="st19" d="M422.5,528c-7.9,0-14.4-6.5-14.4-14.4V413.3c0-7.9,6.5-14.4,14.4-14.4c7.9,0,14.4,6.5,14.4,14.4v100.4
C436.9,521.5,430.5,528,422.5,528z"/>
</g>
<g>
<path class="st19" d="M773.8,725.6H510.6c-24.4,0-44.2-19.8-44.2-44.2V565.9c0-24.4,19.8-44.2,44.2-44.2h263.2
c24.4,0,44.2,19.8,44.2,44.2v115.5C818,705.7,798.2,725.6,773.8,725.6z M510.6,550.5c-8.5,0-15.4,6.9-15.4,15.4v115.5
c0,8.5,6.9,15.4,15.4,15.4h263.2c8.5,0,15.4-6.9,15.4-15.4V565.9c0-8.5-6.9-15.4-15.4-15.4H510.6L510.6,550.5z"/>
</g>
</g>
<g class="st20">
<g>
<path class="st21" d="M253,619.9c-5.6,0-14.3-1.2-21.8-7.5c-5.5-4.6-12.1-13.5-12.1-29.7V339.9c-0.4-4.3-0.8-15.5,6.6-24.3
c3.7-4.3,10.5-9.5,22.1-9.5h458.3h0.3c1.4,0.1,8.8,0.5,16.6,3.8c13.1,5.4,20.7,16,20.7,29.1v146.5H715V338.9c0-0.5,0-1.3-2.9-2.4
c-2.9-1.2-6-1.5-6.8-1.6H247.9h-0.1c-0.1,0.7-0.1,1.5,0,1.7l0.2,1.2v245c0,4.5,0.9,6.8,1.7,7.6c0.8,0.7,2.9,0.9,4,0.8l1.4-0.4
l1,0.1h185.4v28.8H256.9C255.9,619.8,254.6,619.9,253,619.9z M253.4,591.1L253.4,591.1L253.4,591.1z"/>
</g>
<g>
<path class="st21" d="M422.5,528c-3.7,0-7.5-1.4-10.3-4.3L279,388.4c-5.6-5.7-5.5-14.8,0.2-20.3c5.7-5.6,14.8-5.5,20.3,0.2
l133.2,135.3c5.6,5.7,5.5,14.8-0.2,20.3C429.8,526.7,426.1,528,422.5,528z"/>
</g>
<g>
<path class="st21" d="M422.5,528h-94.2c-7.9,0-14.4-6.5-14.4-14.4s6.5-14.4,14.4-14.4h94.2c7.9,0,14.4,6.5,14.4,14.4
S430.5,528,422.5,528z"/>
</g>
<g>
<path class="st21" d="M422.5,528c-7.9,0-14.4-6.5-14.4-14.4V413.3c0-7.9,6.5-14.4,14.4-14.4c7.9,0,14.4,6.5,14.4,14.4v100.4
C436.9,521.5,430.5,528,422.5,528z"/>
</g>
<g>
<path class="st21" d="M773.8,725.6H510.6c-24.4,0-44.2-19.8-44.2-44.2V565.9c0-24.4,19.8-44.2,44.2-44.2h263.2
c24.4,0,44.2,19.8,44.2,44.2v115.5C818,705.7,798.2,725.6,773.8,725.6z M510.6,550.5c-8.5,0-15.4,6.9-15.4,15.4v115.5
c0,8.5,6.9,15.4,15.4,15.4h263.2c8.5,0,15.4-6.9,15.4-15.4V565.9c0-8.5-6.9-15.4-15.4-15.4H510.6L510.6,550.5z"/>
</g>
</g>
<g class="st20">
<g>
<path class="st22" d="M253,619.9c-5.6,0-14.3-1.2-21.8-7.5c-5.5-4.6-12.1-13.5-12.1-29.7V339.9c-0.4-4.3-0.8-15.5,6.6-24.3
c3.7-4.3,10.5-9.5,22.1-9.5h458.3h0.3c1.4,0.1,8.8,0.5,16.6,3.8c13.1,5.4,20.7,16,20.7,29.1v146.5H715V338.9c0-0.5,0-1.3-2.9-2.4
c-2.9-1.2-6-1.5-6.8-1.6H247.9h-0.1c-0.1,0.7-0.1,1.5,0,1.7l0.2,1.2v245c0,4.5,0.9,6.8,1.7,7.6c0.8,0.7,2.9,0.9,4,0.8l1.4-0.4
l1,0.1h185.4v28.8H256.9C255.9,619.8,254.6,619.9,253,619.9z M253.4,591.1L253.4,591.1L253.4,591.1z"/>
</g>
<g>
<path class="st22" d="M422.5,528c-3.7,0-7.5-1.4-10.3-4.3L279,388.4c-5.6-5.7-5.5-14.8,0.2-20.3c5.7-5.6,14.8-5.5,20.3,0.2
l133.2,135.3c5.6,5.7,5.5,14.8-0.2,20.3C429.8,526.7,426.1,528,422.5,528z"/>
</g>
<g>
<path class="st22" d="M422.5,528h-94.2c-7.9,0-14.4-6.5-14.4-14.4s6.5-14.4,14.4-14.4h94.2c7.9,0,14.4,6.5,14.4,14.4
S430.5,528,422.5,528z"/>
</g>
<g>
<path class="st22" d="M422.5,528c-7.9,0-14.4-6.5-14.4-14.4V413.3c0-7.9,6.5-14.4,14.4-14.4c7.9,0,14.4,6.5,14.4,14.4v100.4
C436.9,521.5,430.5,528,422.5,528z"/>
</g>
<g>
<path class="st22" d="M773.8,725.6H510.6c-24.4,0-44.2-19.8-44.2-44.2V565.9c0-24.4,19.8-44.2,44.2-44.2h263.2
c24.4,0,44.2,19.8,44.2,44.2v115.5C818,705.7,798.2,725.6,773.8,725.6z M510.6,550.5c-8.5,0-15.4,6.9-15.4,15.4v115.5
c0,8.5,6.9,15.4,15.4,15.4h263.2c8.5,0,15.4-6.9,15.4-15.4V565.9c0-8.5-6.9-15.4-15.4-15.4H510.6L510.6,550.5z"/>
</g>
</g>
<g class="st23">
<g>
<path class="st24" d="M253,619.9c-5.6,0-14.3-1.2-21.8-7.5c-5.5-4.6-12.1-13.5-12.1-29.7V339.9c-0.4-4.3-0.8-15.5,6.6-24.3
c3.7-4.3,10.5-9.5,22.1-9.5h458.3h0.3c1.4,0.1,8.8,0.5,16.6,3.8c13.1,5.4,20.7,16,20.7,29.1v146.5H715V338.9c0-0.5,0-1.3-2.9-2.4
c-2.9-1.2-6-1.5-6.8-1.6H247.9h-0.1c-0.1,0.7-0.1,1.5,0,1.7l0.2,1.2v245c0,4.5,0.9,6.8,1.7,7.6c0.8,0.7,2.9,0.9,4,0.8l1.4-0.4
l1,0.1h185.4v28.8H256.9C255.9,619.8,254.6,619.9,253,619.9z M253.4,591.1L253.4,591.1L253.4,591.1z"/>
</g>
<g>
<path class="st24" d="M422.5,528c-3.7,0-7.5-1.4-10.3-4.3L279,388.4c-5.6-5.7-5.5-14.8,0.2-20.3c5.7-5.6,14.8-5.5,20.3,0.2
l133.2,135.3c5.6,5.7,5.5,14.8-0.2,20.3C429.8,526.7,426.1,528,422.5,528z"/>
</g>
<g>
<path class="st24" d="M422.5,528h-94.2c-7.9,0-14.4-6.5-14.4-14.4s6.5-14.4,14.4-14.4h94.2c7.9,0,14.4,6.5,14.4,14.4
S430.5,528,422.5,528z"/>
</g>
<g>
<path class="st24" d="M422.5,528c-7.9,0-14.4-6.5-14.4-14.4V413.3c0-7.9,6.5-14.4,14.4-14.4c7.9,0,14.4,6.5,14.4,14.4v100.4
C436.9,521.5,430.5,528,422.5,528z"/>
</g>
<g>
<path class="st24" d="M773.8,725.6H510.6c-24.4,0-44.2-19.8-44.2-44.2V565.9c0-24.4,19.8-44.2,44.2-44.2h263.2
c24.4,0,44.2,19.8,44.2,44.2v115.5C818,705.7,798.2,725.6,773.8,725.6z M510.6,550.5c-8.5,0-15.4,6.9-15.4,15.4v115.5
c0,8.5,6.9,15.4,15.4,15.4h263.2c8.5,0,15.4-6.9,15.4-15.4V565.9c0-8.5-6.9-15.4-15.4-15.4H510.6L510.6,550.5z"/>
</g>
</g>
<g class="st23">
<g>
<path class="st25" d="M253,619.9c-5.6,0-14.3-1.2-21.8-7.5c-5.5-4.6-12.1-13.5-12.1-29.7V339.9c-0.4-4.3-0.8-15.5,6.6-24.3
c3.7-4.3,10.5-9.5,22.1-9.5h458.3h0.3c1.4,0.1,8.8,0.5,16.6,3.8c13.1,5.4,20.7,16,20.7,29.1v146.5H715V338.9c0-0.5,0-1.3-2.9-2.4
c-2.9-1.2-6-1.5-6.8-1.6H247.9h-0.1c-0.1,0.7-0.1,1.5,0,1.7l0.2,1.2v245c0,4.5,0.9,6.8,1.7,7.6c0.8,0.7,2.9,0.9,4,0.8l1.4-0.4
l1,0.1h185.4v28.8H256.9C255.9,619.8,254.6,619.9,253,619.9z M253.4,591.1L253.4,591.1L253.4,591.1z"/>
</g>
<g>
<path class="st25" d="M422.5,528c-3.7,0-7.5-1.4-10.3-4.3L279,388.4c-5.6-5.7-5.5-14.8,0.2-20.3c5.7-5.6,14.8-5.5,20.3,0.2
l133.2,135.3c5.6,5.7,5.5,14.8-0.2,20.3C429.8,526.7,426.1,528,422.5,528z"/>
</g>
<g>
<path class="st25" d="M422.5,528h-94.2c-7.9,0-14.4-6.5-14.4-14.4s6.5-14.4,14.4-14.4h94.2c7.9,0,14.4,6.5,14.4,14.4
S430.5,528,422.5,528z"/>
</g>
<g>
<path class="st25" d="M422.5,528c-7.9,0-14.4-6.5-14.4-14.4V413.3c0-7.9,6.5-14.4,14.4-14.4c7.9,0,14.4,6.5,14.4,14.4v100.4
C436.9,521.5,430.5,528,422.5,528z"/>
</g>
<g>
<path class="st25" d="M773.8,725.6H510.6c-24.4,0-44.2-19.8-44.2-44.2V565.9c0-24.4,19.8-44.2,44.2-44.2h263.2
c24.4,0,44.2,19.8,44.2,44.2v115.5C818,705.7,798.2,725.6,773.8,725.6z M510.6,550.5c-8.5,0-15.4,6.9-15.4,15.4v115.5
c0,8.5,6.9,15.4,15.4,15.4h263.2c8.5,0,15.4-6.9,15.4-15.4V565.9c0-8.5-6.9-15.4-15.4-15.4H510.6L510.6,550.5z"/>
</g>
</g>
<g class="st26">
<g>
<path class="st27" d="M253,619.9c-5.6,0-14.3-1.2-21.8-7.5c-5.5-4.6-12.1-13.5-12.1-29.7V339.9c-0.4-4.3-0.8-15.5,6.6-24.3
c3.7-4.3,10.5-9.5,22.1-9.5h458.3h0.3c1.4,0.1,8.8,0.5,16.6,3.8c13.1,5.4,20.7,16,20.7,29.1v146.5H715V338.9c0-0.5,0-1.3-2.9-2.4
c-2.9-1.2-6-1.5-6.8-1.6H247.9h-0.1c-0.1,0.7-0.1,1.5,0,1.7l0.2,1.2v245c0,4.5,0.9,6.8,1.7,7.6c0.8,0.7,2.9,0.9,4,0.8l1.4-0.4
l1,0.1h185.4v28.8H256.9C255.9,619.8,254.6,619.9,253,619.9z M253.4,591.1L253.4,591.1L253.4,591.1z"/>
</g>
<g>
<path class="st27" d="M422.5,528c-3.7,0-7.5-1.4-10.3-4.3L279,388.4c-5.6-5.7-5.5-14.8,0.2-20.3c5.7-5.6,14.8-5.5,20.3,0.2
l133.2,135.3c5.6,5.7,5.5,14.8-0.2,20.3C429.8,526.7,426.1,528,422.5,528z"/>
</g>
<g>
<path class="st27" d="M422.5,528h-94.2c-7.9,0-14.4-6.5-14.4-14.4s6.5-14.4,14.4-14.4h94.2c7.9,0,14.4,6.5,14.4,14.4
S430.5,528,422.5,528z"/>
</g>
<g>
<path class="st27" d="M422.5,528c-7.9,0-14.4-6.5-14.4-14.4V413.3c0-7.9,6.5-14.4,14.4-14.4c7.9,0,14.4,6.5,14.4,14.4v100.4
C436.9,521.5,430.5,528,422.5,528z"/>
</g>
<g>
<path class="st27" d="M773.8,725.6H510.6c-24.4,0-44.2-19.8-44.2-44.2V565.9c0-24.4,19.8-44.2,44.2-44.2h263.2
c24.4,0,44.2,19.8,44.2,44.2v115.5C818,705.7,798.2,725.6,773.8,725.6z M510.6,550.5c-8.5,0-15.4,6.9-15.4,15.4v115.5
c0,8.5,6.9,15.4,15.4,15.4h263.2c8.5,0,15.4-6.9,15.4-15.4V565.9c0-8.5-6.9-15.4-15.4-15.4H510.6L510.6,550.5z"/>
</g>
</g>
<g class="st26">
<g>
<path class="st28" d="M253,619.9c-5.6,0-14.3-1.2-21.8-7.5c-5.5-4.6-12.1-13.5-12.1-29.7V339.9c-0.4-4.3-0.8-15.5,6.6-24.3
c3.7-4.3,10.5-9.5,22.1-9.5h458.3h0.3c1.4,0.1,8.8,0.5,16.6,3.8c13.1,5.4,20.7,16,20.7,29.1v146.5H715V338.9c0-0.5,0-1.3-2.9-2.4
c-2.9-1.2-6-1.5-6.8-1.6H247.9h-0.1c-0.1,0.7-0.1,1.5,0,1.7l0.2,1.2v245c0,4.5,0.9,6.8,1.7,7.6c0.8,0.7,2.9,0.9,4,0.8l1.4-0.4
l1,0.1h185.4v28.8H256.9C255.9,619.8,254.6,619.9,253,619.9z M253.4,591.1L253.4,591.1L253.4,591.1z"/>
</g>
<g>
<path class="st28" d="M422.5,528c-3.7,0-7.5-1.4-10.3-4.3L279,388.4c-5.6-5.7-5.5-14.8,0.2-20.3c5.7-5.6,14.8-5.5,20.3,0.2
l133.2,135.3c5.6,5.7,5.5,14.8-0.2,20.3C429.8,526.7,426.1,528,422.5,528z"/>
</g>
<g>
<path class="st28" d="M422.5,528h-94.2c-7.9,0-14.4-6.5-14.4-14.4s6.5-14.4,14.4-14.4h94.2c7.9,0,14.4,6.5,14.4,14.4
S430.5,528,422.5,528z"/>
</g>
<g>
<path class="st28" d="M422.5,528c-7.9,0-14.4-6.5-14.4-14.4V413.3c0-7.9,6.5-14.4,14.4-14.4c7.9,0,14.4,6.5,14.4,14.4v100.4
C436.9,521.5,430.5,528,422.5,528z"/>
</g>
<g>
<path class="st28" d="M773.8,725.6H510.6c-24.4,0-44.2-19.8-44.2-44.2V565.9c0-24.4,19.8-44.2,44.2-44.2h263.2
c24.4,0,44.2,19.8,44.2,44.2v115.5C818,705.7,798.2,725.6,773.8,725.6z M510.6,550.5c-8.5,0-15.4,6.9-15.4,15.4v115.5
c0,8.5,6.9,15.4,15.4,15.4h263.2c8.5,0,15.4-6.9,15.4-15.4V565.9c0-8.5-6.9-15.4-15.4-15.4H510.6L510.6,550.5z"/>
</g>
</g>
<g class="st29">
<g>
<path class="st30" d="M253,619.9c-5.6,0-14.3-1.2-21.8-7.5c-5.5-4.6-12.1-13.5-12.1-29.7V339.9c-0.4-4.3-0.8-15.5,6.6-24.3
c3.7-4.3,10.5-9.5,22.1-9.5h458.3h0.3c1.4,0.1,8.8,0.5,16.6,3.8c13.1,5.4,20.7,16,20.7,29.1v146.5H715V338.9c0-0.5,0-1.3-2.9-2.4
c-2.9-1.2-6-1.5-6.8-1.6H247.9h-0.1c-0.1,0.7-0.1,1.5,0,1.7l0.2,1.2v245c0,4.5,0.9,6.8,1.7,7.6c0.8,0.7,2.9,0.9,4,0.8l1.4-0.4
l1,0.1h185.4v28.8H256.9C255.9,619.8,254.6,619.9,253,619.9z M253.4,591.1L253.4,591.1L253.4,591.1z"/>
</g>
<g>
<path class="st30" d="M422.5,528c-3.7,0-7.5-1.4-10.3-4.3L279,388.4c-5.6-5.7-5.5-14.8,0.2-20.3c5.7-5.6,14.8-5.5,20.3,0.2
l133.2,135.3c5.6,5.7,5.5,14.8-0.2,20.3C429.8,526.7,426.1,528,422.5,528z"/>
</g>
<g>
<path class="st30" d="M422.5,528h-94.2c-7.9,0-14.4-6.5-14.4-14.4s6.5-14.4,14.4-14.4h94.2c7.9,0,14.4,6.5,14.4,14.4
S430.5,528,422.5,528z"/>
</g>
<g>
<path class="st30" d="M422.5,528c-7.9,0-14.4-6.5-14.4-14.4V413.3c0-7.9,6.5-14.4,14.4-14.4c7.9,0,14.4,6.5,14.4,14.4v100.4
C436.9,521.5,430.5,528,422.5,528z"/>
</g>
<g>
<path class="st30" d="M773.8,725.6H510.6c-24.4,0-44.2-19.8-44.2-44.2V565.9c0-24.4,19.8-44.2,44.2-44.2h263.2
c24.4,0,44.2,19.8,44.2,44.2v115.5C818,705.7,798.2,725.6,773.8,725.6z M510.6,550.5c-8.5,0-15.4,6.9-15.4,15.4v115.5
c0,8.5,6.9,15.4,15.4,15.4h263.2c8.5,0,15.4-6.9,15.4-15.4V565.9c0-8.5-6.9-15.4-15.4-15.4H510.6L510.6,550.5z"/>
</g>
</g>
<g class="st29">
<g>
<path class="st31" d="M253,619.9c-5.6,0-14.3-1.2-21.8-7.5c-5.5-4.6-12.1-13.5-12.1-29.7V339.9c-0.4-4.3-0.8-15.5,6.6-24.3
c3.7-4.3,10.5-9.5,22.1-9.5h458.3h0.3c1.4,0.1,8.8,0.5,16.6,3.8c13.1,5.4,20.7,16,20.7,29.1v146.5H715V338.9c0-0.5,0-1.3-2.9-2.4
c-2.9-1.2-6-1.5-6.8-1.6H247.9h-0.1c-0.1,0.7-0.1,1.5,0,1.7l0.2,1.2v245c0,4.5,0.9,6.8,1.7,7.6c0.8,0.7,2.9,0.9,4,0.8l1.4-0.4
l1,0.1h185.4v28.8H256.9C255.9,619.8,254.6,619.9,253,619.9z M253.4,591.1L253.4,591.1L253.4,591.1z"/>
</g>
<g>
<path class="st31" d="M422.5,528c-3.7,0-7.5-1.4-10.3-4.3L279,388.4c-5.6-5.7-5.5-14.8,0.2-20.3c5.7-5.6,14.8-5.5,20.3,0.2
l133.2,135.3c5.6,5.7,5.5,14.8-0.2,20.3C429.8,526.7,426.1,528,422.5,528z"/>
</g>
<g>
<path class="st31" d="M422.5,528h-94.2c-7.9,0-14.4-6.5-14.4-14.4s6.5-14.4,14.4-14.4h94.2c7.9,0,14.4,6.5,14.4,14.4
S430.5,528,422.5,528z"/>
</g>
<g>
<path class="st31" d="M422.5,528c-7.9,0-14.4-6.5-14.4-14.4V413.3c0-7.9,6.5-14.4,14.4-14.4c7.9,0,14.4,6.5,14.4,14.4v100.4
C436.9,521.5,430.5,528,422.5,528z"/>
</g>
<g>
<path class="st31" d="M773.8,725.6H510.6c-24.4,0-44.2-19.8-44.2-44.2V565.9c0-24.4,19.8-44.2,44.2-44.2h263.2
c24.4,0,44.2,19.8,44.2,44.2v115.5C818,705.7,798.2,725.6,773.8,725.6z M510.6,550.5c-8.5,0-15.4,6.9-15.4,15.4v115.5
c0,8.5,6.9,15.4,15.4,15.4h263.2c8.5,0,15.4-6.9,15.4-15.4V565.9c0-8.5-6.9-15.4-15.4-15.4H510.6L510.6,550.5z"/>
</g>
</g>
<g class="st32">
<g>
<path class="st33" d="M253,619.9c-5.6,0-14.3-1.2-21.8-7.5c-5.5-4.6-12.1-13.5-12.1-29.7V339.9c-0.4-4.3-0.8-15.5,6.6-24.3
c3.7-4.3,10.5-9.5,22.1-9.5h458.3h0.3c1.4,0.1,8.8,0.5,16.6,3.8c13.1,5.4,20.7,16,20.7,29.1v146.5H715V338.9c0-0.5,0-1.3-2.9-2.4
c-2.9-1.2-6-1.5-6.8-1.6H247.9h-0.1c-0.1,0.7-0.1,1.5,0,1.7l0.2,1.2v245c0,4.5,0.9,6.8,1.7,7.6c0.8,0.7,2.9,0.9,4,0.8l1.4-0.4
l1,0.1h185.4v28.8H256.9C255.9,619.8,254.6,619.9,253,619.9z M253.4,591.1L253.4,591.1L253.4,591.1z"/>
</g>
<g>
<path class="st33" d="M422.5,528c-3.7,0-7.5-1.4-10.3-4.3L279,388.4c-5.6-5.7-5.5-14.8,0.2-20.3c5.7-5.6,14.8-5.5,20.3,0.2
l133.2,135.3c5.6,5.7,5.5,14.8-0.2,20.3C429.8,526.7,426.1,528,422.5,528z"/>
</g>
<g>
<path class="st33" d="M422.5,528h-94.2c-7.9,0-14.4-6.5-14.4-14.4s6.5-14.4,14.4-14.4h94.2c7.9,0,14.4,6.5,14.4,14.4
S430.5,528,422.5,528z"/>
</g>
<g>
<path class="st33" d="M422.5,528c-7.9,0-14.4-6.5-14.4-14.4V413.3c0-7.9,6.5-14.4,14.4-14.4c7.9,0,14.4,6.5,14.4,14.4v100.4
C436.9,521.5,430.5,528,422.5,528z"/>
</g>
<g>
<path class="st33" d="M773.8,725.6H510.6c-24.4,0-44.2-19.8-44.2-44.2V565.9c0-24.4,19.8-44.2,44.2-44.2h263.2
c24.4,0,44.2,19.8,44.2,44.2v115.5C818,705.7,798.2,725.6,773.8,725.6z M510.6,550.5c-8.5,0-15.4,6.9-15.4,15.4v115.5
c0,8.5,6.9,15.4,15.4,15.4h263.2c8.5,0,15.4-6.9,15.4-15.4V565.9c0-8.5-6.9-15.4-15.4-15.4H510.6L510.6,550.5z"/>
</g>
</g>
<g class="st32">
<g>
<path class="st34" d="M253,619.9c-5.6,0-14.3-1.2-21.8-7.5c-5.5-4.6-12.1-13.5-12.1-29.7V339.9c-0.4-4.3-0.8-15.5,6.6-24.3
c3.7-4.3,10.5-9.5,22.1-9.5h458.3h0.3c1.4,0.1,8.8,0.5,16.6,3.8c13.1,5.4,20.7,16,20.7,29.1v146.5H715V338.9c0-0.5,0-1.3-2.9-2.4
c-2.9-1.2-6-1.5-6.8-1.6H247.9h-0.1c-0.1,0.7-0.1,1.5,0,1.7l0.2,1.2v245c0,4.5,0.9,6.8,1.7,7.6c0.8,0.7,2.9,0.9,4,0.8l1.4-0.4
l1,0.1h185.4v28.8H256.9C255.9,619.8,254.6,619.9,253,619.9z M253.4,591.1L253.4,591.1L253.4,591.1z"/>
</g>
<g>
<path class="st34" d="M422.5,528c-3.7,0-7.5-1.4-10.3-4.3L279,388.4c-5.6-5.7-5.5-14.8,0.2-20.3c5.7-5.6,14.8-5.5,20.3,0.2
l133.2,135.3c5.6,5.7,5.5,14.8-0.2,20.3C429.8,526.7,426.1,528,422.5,528z"/>
</g>
<g>
<path class="st34" d="M422.5,528h-94.2c-7.9,0-14.4-6.5-14.4-14.4s6.5-14.4,14.4-14.4h94.2c7.9,0,14.4,6.5,14.4,14.4
S430.5,528,422.5,528z"/>
</g>
<g>
<path class="st34" d="M422.5,528c-7.9,0-14.4-6.5-14.4-14.4V413.3c0-7.9,6.5-14.4,14.4-14.4c7.9,0,14.4,6.5,14.4,14.4v100.4
C436.9,521.5,430.5,528,422.5,528z"/>
</g>
<g>
<path class="st34" d="M773.8,725.6H510.6c-24.4,0-44.2-19.8-44.2-44.2V565.9c0-24.4,19.8-44.2,44.2-44.2h263.2
c24.4,0,44.2,19.8,44.2,44.2v115.5C818,705.7,798.2,725.6,773.8,725.6z M510.6,550.5c-8.5,0-15.4,6.9-15.4,15.4v115.5
c0,8.5,6.9,15.4,15.4,15.4h263.2c8.5,0,15.4-6.9,15.4-15.4V565.9c0-8.5-6.9-15.4-15.4-15.4H510.6L510.6,550.5z"/>
</g>
</g>
<g class="st35">
<g>
<path class="st36" d="M253,619.9c-5.6,0-14.3-1.2-21.8-7.5c-5.5-4.6-12.1-13.5-12.1-29.7V339.9c-0.4-4.3-0.8-15.5,6.6-24.3
c3.7-4.3,10.5-9.5,22.1-9.5h458.3h0.3c1.4,0.1,8.8,0.5,16.6,3.8c13.1,5.4,20.7,16,20.7,29.1v146.5H715V338.9c0-0.5,0-1.3-2.9-2.4
c-2.9-1.2-6-1.5-6.8-1.6H247.9h-0.1c-0.1,0.7-0.1,1.5,0,1.7l0.2,1.2v245c0,4.5,0.9,6.8,1.7,7.6c0.8,0.7,2.9,0.9,4,0.8l1.4-0.4
l1,0.1h185.4v28.8H256.9C255.9,619.8,254.6,619.9,253,619.9z M253.4,591.1L253.4,591.1L253.4,591.1z"/>
</g>
<g>
<path class="st36" d="M422.5,528c-3.7,0-7.5-1.4-10.3-4.3L279,388.4c-5.6-5.7-5.5-14.8,0.2-20.3c5.7-5.6,14.8-5.5,20.3,0.2
l133.2,135.3c5.6,5.7,5.5,14.8-0.2,20.3C429.8,526.7,426.1,528,422.5,528z"/>
</g>
<g>
<path class="st36" d="M422.5,528h-94.2c-7.9,0-14.4-6.5-14.4-14.4s6.5-14.4,14.4-14.4h94.2c7.9,0,14.4,6.5,14.4,14.4
S430.5,528,422.5,528z"/>
</g>
<g>
<path class="st36" d="M422.5,528c-7.9,0-14.4-6.5-14.4-14.4V413.3c0-7.9,6.5-14.4,14.4-14.4c7.9,0,14.4,6.5,14.4,14.4v100.4
C436.9,521.5,430.5,528,422.5,528z"/>
</g>
<g>
<path class="st36" d="M773.8,725.6H510.6c-24.4,0-44.2-19.8-44.2-44.2V565.9c0-24.4,19.8-44.2,44.2-44.2h263.2
c24.4,0,44.2,19.8,44.2,44.2v115.5C818,705.7,798.2,725.6,773.8,725.6z M510.6,550.5c-8.5,0-15.4,6.9-15.4,15.4v115.5
c0,8.5,6.9,15.4,15.4,15.4h263.2c8.5,0,15.4-6.9,15.4-15.4V565.9c0-8.5-6.9-15.4-15.4-15.4H510.6L510.6,550.5z"/>
</g>
</g>
<g class="st35">
<g>
<path class="st37" d="M253,619.9c-5.6,0-14.3-1.2-21.8-7.5c-5.5-4.6-12.1-13.5-12.1-29.7V339.9c-0.4-4.3-0.8-15.5,6.6-24.3
c3.7-4.3,10.5-9.5,22.1-9.5h458.3h0.3c1.4,0.1,8.8,0.5,16.6,3.8c13.1,5.4,20.7,16,20.7,29.1v146.5H715V338.9c0-0.5,0-1.3-2.9-2.4
c-2.9-1.2-6-1.5-6.8-1.6H247.9h-0.1c-0.1,0.7-0.1,1.5,0,1.7l0.2,1.2v245c0,4.5,0.9,6.8,1.7,7.6c0.8,0.7,2.9,0.9,4,0.8l1.4-0.4
l1,0.1h185.4v28.8H256.9C255.9,619.8,254.6,619.9,253,619.9z M253.4,591.1L253.4,591.1L253.4,591.1z"/>
</g>
<g>
<path class="st37" d="M422.5,528c-3.7,0-7.5-1.4-10.3-4.3L279,388.4c-5.6-5.7-5.5-14.8,0.2-20.3c5.7-5.6,14.8-5.5,20.3,0.2
l133.2,135.3c5.6,5.7,5.5,14.8-0.2,20.3C429.8,526.7,426.1,528,422.5,528z"/>
</g>
<g>
<path class="st37" d="M422.5,528h-94.2c-7.9,0-14.4-6.5-14.4-14.4s6.5-14.4,14.4-14.4h94.2c7.9,0,14.4,6.5,14.4,14.4
S430.5,528,422.5,528z"/>
</g>
<g>
<path class="st37" d="M422.5,528c-7.9,0-14.4-6.5-14.4-14.4V413.3c0-7.9,6.5-14.4,14.4-14.4c7.9,0,14.4,6.5,14.4,14.4v100.4
C436.9,521.5,430.5,528,422.5,528z"/>
</g>
<g>
<path class="st37" d="M773.8,725.6H510.6c-24.4,0-44.2-19.8-44.2-44.2V565.9c0-24.4,19.8-44.2,44.2-44.2h263.2
c24.4,0,44.2,19.8,44.2,44.2v115.5C818,705.7,798.2,725.6,773.8,725.6z M510.6,550.5c-8.5,0-15.4,6.9-15.4,15.4v115.5
c0,8.5,6.9,15.4,15.4,15.4h263.2c8.5,0,15.4-6.9,15.4-15.4V565.9c0-8.5-6.9-15.4-15.4-15.4H510.6L510.6,550.5z"/>
</g>
</g>
<g class="st38">
<g>
<path class="st39" d="M253,619.9c-5.6,0-14.3-1.2-21.8-7.5c-5.5-4.6-12.1-13.5-12.1-29.7V339.9c-0.4-4.3-0.8-15.5,6.6-24.3
c3.7-4.3,10.5-9.5,22.1-9.5h458.3h0.3c1.4,0.1,8.8,0.5,16.6,3.8c13.1,5.4,20.7,16,20.7,29.1v146.5H715V338.9c0-0.5,0-1.3-2.9-2.4
c-2.9-1.2-6-1.5-6.8-1.6H247.9h-0.1c-0.1,0.7-0.1,1.5,0,1.7l0.2,1.2v245c0,4.5,0.9,6.8,1.7,7.6c0.8,0.7,2.9,0.9,4,0.8l1.4-0.4
l1,0.1h185.4v28.8H256.9C255.9,619.8,254.6,619.9,253,619.9z M253.4,591.1L253.4,591.1L253.4,591.1z"/>
</g>
<g>
<path class="st39" d="M422.5,528c-3.7,0-7.5-1.4-10.3-4.3L279,388.4c-5.6-5.7-5.5-14.8,0.2-20.3c5.7-5.6,14.8-5.5,20.3,0.2
l133.2,135.3c5.6,5.7,5.5,14.8-0.2,20.3C429.8,526.7,426.1,528,422.5,528z"/>
</g>
<g>
<path class="st39" d="M422.5,528h-94.2c-7.9,0-14.4-6.5-14.4-14.4s6.5-14.4,14.4-14.4h94.2c7.9,0,14.4,6.5,14.4,14.4
S430.5,528,422.5,528z"/>
</g>
<g>
<path class="st39" d="M422.5,528c-7.9,0-14.4-6.5-14.4-14.4V413.3c0-7.9,6.5-14.4,14.4-14.4c7.9,0,14.4,6.5,14.4,14.4v100.4
C436.9,521.5,430.5,528,422.5,528z"/>
</g>
<g>
<path class="st39" d="M773.8,725.6H510.6c-24.4,0-44.2-19.8-44.2-44.2V565.9c0-24.4,19.8-44.2,44.2-44.2h263.2
c24.4,0,44.2,19.8,44.2,44.2v115.5C818,705.7,798.2,725.6,773.8,725.6z M510.6,550.5c-8.5,0-15.4,6.9-15.4,15.4v115.5
c0,8.5,6.9,15.4,15.4,15.4h263.2c8.5,0,15.4-6.9,15.4-15.4V565.9c0-8.5-6.9-15.4-15.4-15.4H510.6L510.6,550.5z"/>
</g>
</g>
<g class="st38">
<g>
<path class="st40" d="M253,619.9c-5.6,0-14.3-1.2-21.8-7.5c-5.5-4.6-12.1-13.5-12.1-29.7V339.9c-0.4-4.3-0.8-15.5,6.6-24.3
c3.7-4.3,10.5-9.5,22.1-9.5h458.3h0.3c1.4,0.1,8.8,0.5,16.6,3.8c13.1,5.4,20.7,16,20.7,29.1v146.5H715V338.9c0-0.5,0-1.3-2.9-2.4
c-2.9-1.2-6-1.5-6.8-1.6H247.9h-0.1c-0.1,0.7-0.1,1.5,0,1.7l0.2,1.2v245c0,4.5,0.9,6.8,1.7,7.6c0.8,0.7,2.9,0.9,4,0.8l1.4-0.4
l1,0.1h185.4v28.8H256.9C255.9,619.8,254.6,619.9,253,619.9z M253.4,591.1L253.4,591.1L253.4,591.1z"/>
</g>
<g>
<path class="st40" d="M422.5,528c-3.7,0-7.5-1.4-10.3-4.3L279,388.4c-5.6-5.7-5.5-14.8,0.2-20.3c5.7-5.6,14.8-5.5,20.3,0.2
l133.2,135.3c5.6,5.7,5.5,14.8-0.2,20.3C429.8,526.7,426.1,528,422.5,528z"/>
</g>
<g>
<path class="st40" d="M422.5,528h-94.2c-7.9,0-14.4-6.5-14.4-14.4s6.5-14.4,14.4-14.4h94.2c7.9,0,14.4,6.5,14.4,14.4
S430.5,528,422.5,528z"/>
</g>
<g>
<path class="st40" d="M422.5,528c-7.9,0-14.4-6.5-14.4-14.4V413.3c0-7.9,6.5-14.4,14.4-14.4c7.9,0,14.4,6.5,14.4,14.4v100.4
C436.9,521.5,430.5,528,422.5,528z"/>
</g>
<g>
<path class="st40" d="M773.8,725.6H510.6c-24.4,0-44.2-19.8-44.2-44.2V565.9c0-24.4,19.8-44.2,44.2-44.2h263.2
c24.4,0,44.2,19.8,44.2,44.2v115.5C818,705.7,798.2,725.6,773.8,725.6z M510.6,550.5c-8.5,0-15.4,6.9-15.4,15.4v115.5
c0,8.5,6.9,15.4,15.4,15.4h263.2c8.5,0,15.4-6.9,15.4-15.4V565.9c0-8.5-6.9-15.4-15.4-15.4H510.6L510.6,550.5z"/>
</g>
</g>
<g class="st41">
<g>
<path class="st42" d="M253,619.9c-5.6,0-14.3-1.2-21.8-7.5c-5.5-4.6-12.1-13.5-12.1-29.7V339.9c-0.4-4.3-0.8-15.5,6.6-24.3
c3.7-4.3,10.5-9.5,22.1-9.5h458.3h0.3c1.4,0.1,8.8,0.5,16.6,3.8c13.1,5.4,20.7,16,20.7,29.1v146.5H715V338.9c0-0.5,0-1.3-2.9-2.4
c-2.9-1.2-6-1.5-6.8-1.6H247.9h-0.1c-0.1,0.7-0.1,1.5,0,1.7l0.2,1.2v245c0,4.5,0.9,6.8,1.7,7.6c0.8,0.7,2.9,0.9,4,0.8l1.4-0.4
l1,0.1h185.4v28.8H256.9C255.9,619.8,254.6,619.9,253,619.9z M253.4,591.1L253.4,591.1L253.4,591.1z"/>
</g>
<g>
<path class="st42" d="M422.5,528c-3.7,0-7.5-1.4-10.3-4.3L279,388.4c-5.6-5.7-5.5-14.8,0.2-20.3c5.7-5.6,14.8-5.5,20.3,0.2
l133.2,135.3c5.6,5.7,5.5,14.8-0.2,20.3C429.8,526.7,426.1,528,422.5,528z"/>
</g>
<g>
<path class="st42" d="M422.5,528h-94.2c-7.9,0-14.4-6.5-14.4-14.4s6.5-14.4,14.4-14.4h94.2c7.9,0,14.4,6.5,14.4,14.4
S430.5,528,422.5,528z"/>
</g>
<g>
<path class="st42" d="M422.5,528c-7.9,0-14.4-6.5-14.4-14.4V413.3c0-7.9,6.5-14.4,14.4-14.4c7.9,0,14.4,6.5,14.4,14.4v100.4
C436.9,521.5,430.5,528,422.5,528z"/>
</g>
<g>
<path class="st42" d="M773.8,725.6H510.6c-24.4,0-44.2-19.8-44.2-44.2V565.9c0-24.4,19.8-44.2,44.2-44.2h263.2
c24.4,0,44.2,19.8,44.2,44.2v115.5C818,705.7,798.2,725.6,773.8,725.6z M510.6,550.5c-8.5,0-15.4,6.9-15.4,15.4v115.5
c0,8.5,6.9,15.4,15.4,15.4h263.2c8.5,0,15.4-6.9,15.4-15.4V565.9c0-8.5-6.9-15.4-15.4-15.4H510.6L510.6,550.5z"/>
</g>
</g>
<g class="st41">
<g>
<path class="st43" d="M253,619.9c-5.6,0-14.3-1.2-21.8-7.5c-5.5-4.6-12.1-13.5-12.1-29.7V339.9c-0.4-4.3-0.8-15.5,6.6-24.3
c3.7-4.3,10.5-9.5,22.1-9.5h458.3h0.3c1.4,0.1,8.8,0.5,16.6,3.8c13.1,5.4,20.7,16,20.7,29.1v146.5H715V338.9c0-0.5,0-1.3-2.9-2.4
c-2.9-1.2-6-1.5-6.8-1.6H247.9h-0.1c-0.1,0.7-0.1,1.5,0,1.7l0.2,1.2v245c0,4.5,0.9,6.8,1.7,7.6c0.8,0.7,2.9,0.9,4,0.8l1.4-0.4
l1,0.1h185.4v28.8H256.9C255.9,619.8,254.6,619.9,253,619.9z M253.4,591.1L253.4,591.1L253.4,591.1z"/>
</g>
<g>
<path class="st43" d="M422.5,528c-3.7,0-7.5-1.4-10.3-4.3L279,388.4c-5.6-5.7-5.5-14.8,0.2-20.3c5.7-5.6,14.8-5.5,20.3,0.2
l133.2,135.3c5.6,5.7,5.5,14.8-0.2,20.3C429.8,526.7,426.1,528,422.5,528z"/>
</g>
<g>
<path class="st43" d="M422.5,528h-94.2c-7.9,0-14.4-6.5-14.4-14.4s6.5-14.4,14.4-14.4h94.2c7.9,0,14.4,6.5,14.4,14.4
S430.5,528,422.5,528z"/>
</g>
<g>
<path class="st43" d="M422.5,528c-7.9,0-14.4-6.5-14.4-14.4V413.3c0-7.9,6.5-14.4,14.4-14.4c7.9,0,14.4,6.5,14.4,14.4v100.4
C436.9,521.5,430.5,528,422.5,528z"/>
</g>
<g>
<path class="st43" d="M773.8,725.6H510.6c-24.4,0-44.2-19.8-44.2-44.2V565.9c0-24.4,19.8-44.2,44.2-44.2h263.2
c24.4,0,44.2,19.8,44.2,44.2v115.5C818,705.7,798.2,725.6,773.8,725.6z M510.6,550.5c-8.5,0-15.4,6.9-15.4,15.4v115.5
c0,8.5,6.9,15.4,15.4,15.4h263.2c8.5,0,15.4-6.9,15.4-15.4V565.9c0-8.5-6.9-15.4-15.4-15.4H510.6L510.6,550.5z"/>
</g>
</g>
<g class="st44">
<g>
<path class="st45" d="M253,619.9c-5.6,0-14.3-1.2-21.8-7.5c-5.5-4.6-12.1-13.5-12.1-29.7V339.9c-0.4-4.3-0.8-15.5,6.6-24.3
c3.7-4.3,10.5-9.5,22.1-9.5h458.3h0.3c1.4,0.1,8.8,0.5,16.6,3.8c13.1,5.4,20.7,16,20.7,29.1v146.5H715V338.9c0-0.5,0-1.3-2.9-2.4
c-2.9-1.2-6-1.5-6.8-1.6H247.9h-0.1c-0.1,0.7-0.1,1.5,0,1.7l0.2,1.2v245c0,4.5,0.9,6.8,1.7,7.6c0.8,0.7,2.9,0.9,4,0.8l1.4-0.4
l1,0.1h185.4v28.8H256.9C255.9,619.8,254.6,619.9,253,619.9z M253.4,591.1L253.4,591.1L253.4,591.1z"/>
</g>
<g>
<path class="st45" d="M422.5,528c-3.7,0-7.5-1.4-10.3-4.3L279,388.4c-5.6-5.7-5.5-14.8,0.2-20.3c5.7-5.6,14.8-5.5,20.3,0.2
l133.2,135.3c5.6,5.7,5.5,14.8-0.2,20.3C429.8,526.7,426.1,528,422.5,528z"/>
</g>
<g>
<path class="st45" d="M422.5,528h-94.2c-7.9,0-14.4-6.5-14.4-14.4s6.5-14.4,14.4-14.4h94.2c7.9,0,14.4,6.5,14.4,14.4
S430.5,528,422.5,528z"/>
</g>
<g>
<path class="st45" d="M422.5,528c-7.9,0-14.4-6.5-14.4-14.4V413.3c0-7.9,6.5-14.4,14.4-14.4c7.9,0,14.4,6.5,14.4,14.4v100.4
C436.9,521.5,430.5,528,422.5,528z"/>
</g>
<g>
<path class="st45" d="M773.8,725.6H510.6c-24.4,0-44.2-19.8-44.2-44.2V565.9c0-24.4,19.8-44.2,44.2-44.2h263.2
c24.4,0,44.2,19.8,44.2,44.2v115.5C818,705.7,798.2,725.6,773.8,725.6z M510.6,550.5c-8.5,0-15.4,6.9-15.4,15.4v115.5
c0,8.5,6.9,15.4,15.4,15.4h263.2c8.5,0,15.4-6.9,15.4-15.4V565.9c0-8.5-6.9-15.4-15.4-15.4H510.6L510.6,550.5z"/>
</g>
</g>
<g class="st44">
<g>
<path class="st46" d="M253,619.9c-5.6,0-14.3-1.2-21.8-7.5c-5.5-4.6-12.1-13.5-12.1-29.7V339.9c-0.4-4.3-0.8-15.5,6.6-24.3
c3.7-4.3,10.5-9.5,22.1-9.5h458.3h0.3c1.4,0.1,8.8,0.5,16.6,3.8c13.1,5.4,20.7,16,20.7,29.1v146.5H715V338.9c0-0.5,0-1.3-2.9-2.4
c-2.9-1.2-6-1.5-6.8-1.6H247.9h-0.1c-0.1,0.7-0.1,1.5,0,1.7l0.2,1.2v245c0,4.5,0.9,6.8,1.7,7.6c0.8,0.7,2.9,0.9,4,0.8l1.4-0.4
l1,0.1h185.4v28.8H256.9C255.9,619.8,254.6,619.9,253,619.9z M253.4,591.1L253.4,591.1L253.4,591.1z"/>
</g>
<g>
<path class="st46" d="M422.5,528c-3.7,0-7.5-1.4-10.3-4.3L279,388.4c-5.6-5.7-5.5-14.8,0.2-20.3c5.7-5.6,14.8-5.5,20.3,0.2
l133.2,135.3c5.6,5.7,5.5,14.8-0.2,20.3C429.8,526.7,426.1,528,422.5,528z"/>
</g>
<g>
<path class="st46" d="M422.5,528h-94.2c-7.9,0-14.4-6.5-14.4-14.4s6.5-14.4,14.4-14.4h94.2c7.9,0,14.4,6.5,14.4,14.4
S430.5,528,422.5,528z"/>
</g>
<g>
<path class="st46" d="M422.5,528c-7.9,0-14.4-6.5-14.4-14.4V413.3c0-7.9,6.5-14.4,14.4-14.4c7.9,0,14.4,6.5,14.4,14.4v100.4
C436.9,521.5,430.5,528,422.5,528z"/>
</g>
<g>
<path class="st46" d="M773.8,725.6H510.6c-24.4,0-44.2-19.8-44.2-44.2V565.9c0-24.4,19.8-44.2,44.2-44.2h263.2
c24.4,0,44.2,19.8,44.2,44.2v115.5C818,705.7,798.2,725.6,773.8,725.6z M510.6,550.5c-8.5,0-15.4,6.9-15.4,15.4v115.5
c0,8.5,6.9,15.4,15.4,15.4h263.2c8.5,0,15.4-6.9,15.4-15.4V565.9c0-8.5-6.9-15.4-15.4-15.4H510.6L510.6,550.5z"/>
</g>
</g>
</g>
<g id="Symbol">
<g>
<path class="st47" d="M435.1,599H249.7c0,0-22.5,4.1-22.5-22.5c0-26.6,0-243.8,0-243.8s-3.1-18.5,14.3-18.5s457.9,0,457.9,0
s23.6,1,23.6,18.5c0,17.5,0,146.5,0,146.5"/>
<line class="st48" x1="416.1" y1="507.3" x2="283" y2="372"/>
<line class="st48" x1="321.9" y1="507.3" x2="416.1" y2="507.3"/>
<line class="st48" x1="416.1" y1="407" x2="416.1" y2="507.3"/>
<path class="st47" d="M767.5,704.9H504.4c-16.4,0-29.8-13.4-29.8-29.8V559.6c0-16.4,13.4-29.8,29.8-29.8h263.2
c16.4,0,29.8,13.4,29.8,29.8v115.5C797.3,691.5,783.9,704.9,767.5,704.9z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 46 KiB

+380
View File
@@ -0,0 +1,380 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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"
viewBox="0 0 1024 1024" enable-background="new 0 0 1024 1024" xml:space="preserve">
<g id="Triangle_Shadow" opacity="0.25">
<path fill="#323232" d="M512.1,116.8c-28.9,0-54.7,14.9-69.1,39.9L71.6,799.9c-14.4,25-14.4,54.8,0,79.8s40.3,39.9,70.7,36.9h742.6
c27.4,3,53.2-11.9,67.6-36.9c14.4-25,14.4-54.8,0-79.8L581.2,156.7C566.8,131.7,541,116.8,512.1,116.8L512.1,116.8z"/>
<g opacity="0.16">
<path d="M512.1,116.8c28.9,0,54.7,14.9,69.1,39.9l371.3,643.1c14.4,25,14.4,54.8,0,79.8c-13.2,22.9-35.9,37.3-60.6,37.3
c-2.3,0-4.7-0.1-7-0.4H142.3c-2.6,0.3-5.2,0.4-7.7,0.4c-27,0-49.7-14.4-62.9-37.3c-14.4-25-14.4-54.8,0-79.8L443,156.7
C457.4,131.7,483.2,116.8,512.1,116.8 M512.1,115.8c-29.2,0-55.4,15.1-70,40.4L70.8,799.4c-14.6,25.3-14.6,55.5,0,80.8
c13.9,24,37.1,37.8,63.8,37.8c2.6,0,5.2-0.1,7.8-0.4h742.5c2.3,0.3,4.7,0.4,7.1,0.4c12.2,0,24.4-3.5,35.2-10.2
c10.6-6.6,19.7-16.1,26.3-27.6c14.6-25.3,14.6-55.5,0-80.8L582.1,156.2C567.5,130.9,541.3,115.8,512.1,115.8L512.1,115.8z"/>
</g>
<g opacity="0.16">
<path d="M512.1,116.8c28.9,0,54.7,14.9,69.1,39.9l371.3,643.1c14.4,25,14.4,54.8,0,79.8c-13.2,22.9-35.9,37.3-60.6,37.3
c-2.3,0-4.7-0.1-7-0.4H142.3c-2.6,0.3-5.2,0.4-7.7,0.4c-27,0-49.7-14.4-62.9-37.3c-14.4-25-14.4-54.8,0-79.8L443,156.7
C457.4,131.7,483.2,116.8,512.1,116.8 M512.1,114.8c-29.6,0-56.1,15.3-70.9,40.9L69.9,798.9c-14.8,25.6-14.8,56.2,0,81.8
c6.7,11.7,16.1,21.3,27,27.9c11.4,6.9,24.1,10.4,37.7,10.4c2.6,0,5.2-0.1,7.8-0.4h742.4c2.4,0.3,4.7,0.4,7.1,0.4
c12.4,0,24.7-3.6,35.7-10.4c10.8-6.7,20-16.3,26.7-27.9c14.8-25.6,14.8-56.2,0-81.8L583,155.7
C568.2,130.1,541.7,114.8,512.1,114.8L512.1,114.8z"/>
</g>
<g opacity="0.14">
<path d="M512.1,116.8c28.9,0,54.7,14.9,69.1,39.9l371.3,643.1c14.4,25,14.4,54.8,0,79.8c-13.2,22.9-35.9,37.3-60.6,37.3
c-2.3,0-4.7-0.1-7-0.4H142.3c-2.6,0.3-5.2,0.4-7.7,0.4c-27,0-49.7-14.4-62.9-37.3c-14.4-25-14.4-54.8,0-79.8L443,156.7
C457.4,131.7,483.2,116.8,512.1,116.8 M512.1,113.8c-29.9,0-56.8,15.5-71.7,41.4L69,798.4c-15,25.9-15,56.9,0,82.8
c6.8,11.8,16.3,21.6,27.3,28.3c11.5,7,24.4,10.5,38.2,10.5c2.6,0,5.2-0.1,7.9-0.4h742.3c2.4,0.3,4.8,0.4,7.2,0.4
c12.6,0,25.1-3.6,36.2-10.5c10.9-6.8,20.2-16.5,27-28.3c15-25.9,15-56.9,0-82.8L583.8,155.2C568.9,129.3,542,113.8,512.1,113.8
L512.1,113.8z"/>
</g>
<g opacity="0.14">
<path d="M512.1,116.8c28.9,0,54.7,14.9,69.1,39.9l371.3,643.1c14.4,25,14.4,54.8,0,79.8c-13.2,22.9-35.9,37.3-60.6,37.3
c-2.3,0-4.7-0.1-7-0.4H142.3c-2.6,0.3-5.2,0.4-7.7,0.4c-27,0-49.7-14.4-62.9-37.3c-14.4-25-14.4-54.8,0-79.8L443,156.7
C457.4,131.7,483.2,116.8,512.1,116.8 M512.1,112.8c-30.3,0-57.5,15.7-72.6,41.9L68.2,797.9c-15.2,26.2-15.2,57.6,0,83.8
c6.9,12,16.5,21.9,27.7,28.6c11.7,7.1,24.7,10.6,38.7,10.6c2.6,0,5.3-0.1,7.9-0.4h742.2c2.4,0.3,4.8,0.4,7.2,0.4
c12.8,0,25.5-3.7,36.7-10.7c11-6.9,20.5-16.7,27.4-28.6c15.2-26.2,15.2-57.6,0-83.8L584.7,154.7
C569.5,128.5,542.4,112.8,512.1,112.8L512.1,112.8z"/>
</g>
<g opacity="0.12">
<path d="M512.1,116.8c28.9,0,54.7,14.9,69.1,39.9l371.3,643.1c14.4,25,14.4,54.8,0,79.8c-13.2,22.9-35.9,37.3-60.6,37.3
c-2.3,0-4.7-0.1-7-0.4H142.3c-2.6,0.3-5.2,0.4-7.7,0.4c-27,0-49.7-14.4-62.9-37.3c-14.4-25-14.4-54.8,0-79.8L443,156.7
C457.4,131.7,483.2,116.8,512.1,116.8 M512.1,111.8c-30.7,0-58.1,15.9-73.5,42.4L67.3,797.4C52,824,52,855.7,67.3,882.2
c7,12.1,16.7,22.1,28,29c11.9,7.2,25.1,10.8,39.2,10.8c2.6,0,5.3-0.1,8-0.4h742.1c2.4,0.3,4.9,0.4,7.3,0.4
c13,0,25.9-3.7,37.3-10.8c11.2-6.9,20.8-17,27.7-29c15.3-26.6,15.3-58.3,0-84.8L585.6,154.2C570.2,127.7,542.8,111.8,512.1,111.8
L512.1,111.8z"/>
</g>
<g opacity="0.12">
<path d="M512.1,116.8c28.9,0,54.7,14.9,69.1,39.9l371.3,643.1c14.4,25,14.4,54.8,0,79.8c-13.2,22.9-35.9,37.3-60.6,37.3
c-2.3,0-4.7-0.1-7-0.4H142.3c-2.6,0.3-5.2,0.4-7.7,0.4c-27,0-49.7-14.4-62.9-37.3c-14.4-25-14.4-54.8,0-79.8L443,156.7
C457.4,131.7,483.2,116.8,512.1,116.8 M512.1,110.8c-31,0-58.8,16-74.3,42.9L66.4,796.9c-15.5,26.9-15.5,59,0,85.8
c7.1,12.3,16.9,22.4,28.4,29.3c11.9,7.2,25.6,10.9,39.8,10.9c2.6,0,5.3-0.1,8-0.4h742c2.4,0.3,4.9,0.4,7.3,0.4
c13.2,0,26.2-3.8,37.8-11c11.3-7,21-17.2,28-29.3c15.5-26.9,15.5-59,0-85.8L586.4,153.7C570.9,126.9,543.1,110.8,512.1,110.8
L512.1,110.8z"/>
</g>
<g opacity="0.1">
<path d="M512.1,116.8c28.9,0,54.7,14.9,69.1,39.9l371.3,643.1c14.4,25,14.4,54.8,0,79.8c-13.2,22.9-35.9,37.3-60.6,37.3
c-2.3,0-4.7-0.1-7-0.4H142.3c-2.6,0.3-5.2,0.4-7.7,0.4c-27,0-49.7-14.4-62.9-37.3c-14.4-25-14.4-54.8,0-79.8L443,156.7
C457.4,131.7,483.2,116.8,512.1,116.8 M512.1,109.8c-31.4,0-59.5,16.2-75.2,43.4L65.6,796.4c-15.7,27.2-15.7,59.7,0,86.8
c7.2,12.4,17.1,22.7,28.7,29.7c12,7.2,25.9,11.1,40.3,11.1c2.7,0,5.4-0.1,8.1-0.4h741.9c2.4,0.3,4.9,0.4,7.4,0.4
c13.3,0,26.6-3.8,38.3-11.1c11.5-7.1,21.3-17.4,28.4-29.7c15.7-27.2,15.7-59.7,0-86.8L587.3,153.2
C571.6,126,543.5,109.8,512.1,109.8L512.1,109.8z"/>
</g>
<g opacity="0.1">
<path d="M512.1,116.8c28.9,0,54.7,14.9,69.1,39.9l371.3,643.1c14.4,25,14.4,54.8,0,79.8c-13.2,22.9-35.9,37.3-60.6,37.3
c-2.3,0-4.7-0.1-7-0.4H142.3c-2.6,0.3-5.2,0.4-7.7,0.4c-27,0-49.7-14.4-62.9-37.3c-14.4-25-14.4-54.8,0-79.8L443,156.7
C457.4,131.7,483.2,116.8,512.1,116.8 M512.1,108.8c-31.8,0-60.2,16.4-76.1,43.9L64.7,795.9c-15.9,27.5-15.9,60.3,0,87.8
c7.2,12.6,17.3,23,29.1,30.1c12.2,7.3,26.3,11.2,40.8,11.2c2.7,0,5.4-0.1,8.1-0.4h741.8c2.5,0.3,5,0.4,7.4,0.4
c13.5,0,27-3.9,38.9-11.3c11.6-7.2,21.5-17.6,28.7-30c15.9-27.5,15.9-60.3,0-87.8L588.2,152.7
C572.3,125.2,543.8,108.8,512.1,108.8L512.1,108.8z"/>
</g>
<g opacity="8.000000e-02">
<path d="M512.1,116.8c28.9,0,54.7,14.9,69.1,39.9l371.3,643.1c14.4,25,14.4,54.8,0,79.8c-13.2,22.9-35.9,37.3-60.6,37.3
c-2.3,0-4.7-0.1-7-0.4H142.3c-2.6,0.3-5.2,0.4-7.7,0.4c-27,0-49.7-14.4-62.9-37.3c-14.4-25-14.4-54.8,0-79.8L443,156.7
C457.4,131.7,483.2,116.8,512.1,116.8 M512.1,107.8c-32.1,0-60.9,16.6-76.9,44.4L63.8,795.4c-16.1,27.8-16.1,61,0,88.8
c7.3,12.7,17.5,23.2,29.4,30.4c12.3,7.4,26.6,11.4,41.3,11.4c2.7,0,5.4-0.1,8.1-0.4h741.7c2.5,0.3,5,0.4,7.5,0.4
c13.7,0,27.3-4,39.4-11.4c11.7-7.3,21.8-17.8,29-30.4c16.1-27.8,16.1-61,0-88.8L589,152.2C573,124.4,544.2,107.8,512.1,107.8
L512.1,107.8z"/>
</g>
<g opacity="8.000000e-02">
<path d="M512.1,116.8c28.9,0,54.7,14.9,69.1,39.9l371.3,643.1c14.4,25,14.4,54.8,0,79.8c-13.2,22.9-35.9,37.3-60.6,37.3
c-2.3,0-4.7-0.1-7-0.4H142.3c-2.6,0.3-5.2,0.4-7.7,0.4c-27,0-49.7-14.4-62.9-37.3c-14.4-25-14.4-54.8,0-79.8L443,156.7
C457.4,131.7,483.2,116.8,512.1,116.8 M512.1,106.8c-32.5,0-61.6,16.8-77.8,44.9L63,794.9c-16.2,28.1-16.2,61.7,0,89.8
c7.4,12.8,17.7,23.5,29.8,30.8c12.5,7.5,26.9,11.5,41.8,11.5c2.7,0,5.5-0.1,8.2-0.4h741.6c2.5,0.3,5,0.4,7.5,0.4
c13.9,0,27.7-4,39.9-11.6c11.9-7.4,22-18,29.4-30.7c16.2-28.1,16.2-61.7,0-89.8L589.9,151.7C573.7,123.6,544.6,106.8,512.1,106.8
L512.1,106.8z"/>
</g>
<g opacity="6.000000e-02">
<path d="M512.1,116.8c28.9,0,54.7,14.9,69.1,39.9l371.3,643.1c14.4,25,14.4,54.8,0,79.8c-13.2,22.9-35.9,37.3-60.6,37.3
c-2.3,0-4.7-0.1-7-0.4H142.3c-2.6,0.3-5.2,0.4-7.7,0.4c-27,0-49.7-14.4-62.9-37.3c-14.4-25-14.4-54.8,0-79.8L443,156.7
C457.4,131.7,483.2,116.8,512.1,116.8 M512.1,105.8c-32.8,0-62.2,17-78.7,45.4L62.1,794.4c-16.4,28.4-16.4,62.4,0,90.8
c7.5,13,17.9,23.8,30.1,31.1c12.6,7.6,27.3,11.7,42.3,11.7c2.7,0,5.5-0.1,8.2-0.4h741.5c2.5,0.3,5.1,0.4,7.6,0.4
c14.1,0,28.1-4.1,40.4-11.7c12-7.5,22.3-18.2,29.7-31.1c16.4-28.4,16.4-62.4,0-90.8L590.8,151.2
C574.3,122.8,544.9,105.8,512.1,105.8L512.1,105.8z"/>
</g>
<g opacity="6.000000e-02">
<path d="M512.1,116.8c28.9,0,54.7,14.9,69.1,39.9l371.3,643.1c14.4,25,14.4,54.8,0,79.8c-13.2,22.9-35.9,37.3-60.6,37.3
c-2.3,0-4.7-0.1-7-0.4H142.3c-2.6,0.3-5.2,0.4-7.7,0.4c-27,0-49.7-14.4-62.9-37.3c-14.4-25-14.4-54.8,0-79.8L443,156.7
C457.4,131.7,483.2,116.8,512.1,116.8 M512.1,104.8c-33.2,0-62.9,17.2-79.5,45.9L61.2,793.9c-16.6,28.8-16.6,63.1,0,91.8
c7.6,13.1,18.1,24,30.5,31.5c12.8,7.7,27.6,11.8,42.9,11.8c2.7,0,5.5-0.1,8.3-0.4h741.4c2.5,0.3,5.1,0.4,7.6,0.4
c14.3,0,28.4-4.1,41-11.9c12.2-7.5,22.6-18.4,30.1-31.4c16.6-28.8,16.6-63.1,0-91.8L591.6,150.7C575,122,545.3,104.8,512.1,104.8
L512.1,104.8z"/>
</g>
<g opacity="4.000000e-02">
<path d="M512.1,116.8c28.9,0,54.7,14.9,69.1,39.9l371.3,643.1c14.4,25,14.4,54.8,0,79.8c-13.2,22.9-35.9,37.3-60.6,37.3
c-2.3,0-4.7-0.1-7-0.4H142.3c-2.6,0.3-5.2,0.4-7.7,0.4c-27,0-49.7-14.4-62.9-37.3c-14.4-25-14.4-54.8,0-79.8L443,156.7
C457.4,131.7,483.2,116.8,512.1,116.8 M512.1,103.8c-33.6,0-63.6,17.4-80.4,46.4L60.4,793.4c-16.8,29.1-16.8,63.8,0,92.8
c7.7,13.3,18.3,24.3,30.8,31.8c12.9,7.8,27.9,11.9,43.4,11.9c2.7,0,5.5-0.1,8.3-0.4h741.3c2.6,0.3,5.1,0.4,7.7,0.4
c14.5,0,28.8-4.2,41.5-12c12.3-7.6,22.8-18.6,30.4-31.8c16.8-29.1,16.8-63.8,0-92.8L592.5,150.2
C575.7,121.2,545.7,103.8,512.1,103.8L512.1,103.8z"/>
</g>
<g opacity="4.000000e-02">
<path d="M512.1,116.8c28.9,0,54.7,14.9,69.1,39.9l371.3,643.1c14.4,25,14.4,54.8,0,79.8c-13.2,22.9-35.9,37.3-60.6,37.3
c-2.3,0-4.7-0.1-7-0.4H142.3c-2.6,0.3-5.2,0.4-7.7,0.4c-27,0-49.7-14.4-62.9-37.3c-14.4-25-14.4-54.8,0-79.8L443,156.7
C457.4,131.7,483.2,116.8,512.1,116.8 M512.1,102.8c-33.9,0-64.3,17.5-81.3,46.9L59.5,792.9c-17,29.4-17,64.5,0,93.8
c7.8,13.4,18.5,24.6,31.2,32.2c13.1,7.9,28.3,12.1,43.9,12.1c2.8,0,5.6-0.1,8.4-0.4h741.2c2.6,0.3,5.2,0.4,7.7,0.4
c14.6,0,29.2-4.2,42-12.2c12.4-7.7,23.1-18.8,30.7-32.1c17-29.4,17-64.5,0-93.8L593.4,149.7C576.4,120.4,546,102.8,512.1,102.8
L512.1,102.8z"/>
</g>
<g opacity="2.000000e-02">
<path d="M512.1,116.8c28.9,0,54.7,14.9,69.1,39.9l371.3,643.1c14.4,25,14.4,54.8,0,79.8c-13.2,22.9-35.9,37.3-60.6,37.3
c-2.3,0-4.7-0.1-7-0.4H142.3c-2.6,0.3-5.2,0.4-7.7,0.4c-27,0-49.7-14.4-62.9-37.3c-14.4-25-14.4-54.8,0-79.8L443,156.7
C457.4,131.7,483.2,116.8,512.1,116.8 M512.1,101.8c-34.3,0-65,17.7-82.1,47.4L58.6,792.4c-17.1,29.7-17.1,65.1,0,94.8
c7.8,13.6,18.7,24.8,31.5,32.6c13.3,8,28.6,12.2,44.4,12.2c2.8,0,5.6-0.1,8.4-0.4H884c2.6,0.3,5.2,0.4,7.8,0.4
c14.8,0,29.5-4.3,42.5-12.3c12.6-7.8,23.3-19,31.1-32.5c17.1-29.7,17.1-65.1,0-94.8L594.2,149.2
C577.1,119.5,546.4,101.8,512.1,101.8L512.1,101.8z"/>
</g>
<g opacity="2.000000e-02">
<path d="M512.1,116.8c28.9,0,54.7,14.9,69.1,39.9l371.3,643.1c14.4,25,14.4,54.8,0,79.8c-13.2,22.9-35.9,37.3-60.6,37.3
c-2.3,0-4.7-0.1-7-0.4H142.3c-2.6,0.3-5.2,0.4-7.7,0.4c-27,0-49.7-14.4-62.9-37.3c-14.4-25-14.4-54.8,0-79.8L443,156.7
C457.4,131.7,483.2,116.8,512.1,116.8 M512.1,100.8c-34.6,0-65.7,17.9-83,47.9L57.8,791.9c-17.3,30-17.3,65.8,0,95.8
c7.9,13.7,18.9,25.1,31.9,32.9c13.4,8.1,28.9,12.4,44.9,12.4c2.8,0,5.6-0.1,8.5-0.4h741c2.6,0.3,5.2,0.4,7.8,0.4
c15,0,29.9-4.3,43.1-12.5c12.7-7.9,23.6-19.2,31.4-32.8c17.3-30,17.3-65.8,0-95.8L595.1,148.7
C577.8,118.7,546.7,100.8,512.1,100.8L512.1,100.8z"/>
</g>
<g opacity="1.000000e-02">
<path d="M512.1,116.8c28.9,0,54.7,14.9,69.1,39.9l371.3,643.1c14.4,25,14.4,54.8,0,79.8c-13.2,22.9-35.9,37.3-60.6,37.3
c-2.3,0-4.7-0.1-7-0.4H142.3c-2.6,0.3-5.2,0.4-7.7,0.4c-27,0-49.7-14.4-62.9-37.3c-14.4-25-14.4-54.8,0-79.8L443,156.7
C457.4,131.7,483.2,116.8,512.1,116.8 M512.1,99.8c-35,0-66.4,18.1-83.9,48.4L56.9,791.4c-17.5,30.3-17.5,66.5,0,96.8
c8,13.9,19.2,25.4,32.2,33.3c13.6,8.2,29.3,12.5,45.4,12.5c2.8,0,5.7-0.1,8.5-0.4h741c2.6,0.3,5.3,0.4,7.9,0.4
c15.2,0,30.3-4.4,43.6-12.6c12.9-8,23.8-19.4,31.8-33.2c17.5-30.3,17.5-66.5,0-96.8L596,148.2C578.4,117.9,547.1,99.8,512.1,99.8
L512.1,99.8z"/>
</g>
<g opacity="1.000000e-02">
<path d="M512.1,116.8c28.9,0,54.7,14.9,69.1,39.9l371.3,643.1c14.4,25,14.4,54.8,0,79.8c-13.2,22.9-35.9,37.3-60.6,37.3
c-2.3,0-4.7-0.1-7-0.4H142.3c-2.6,0.3-5.2,0.4-7.7,0.4c-27,0-49.7-14.4-62.9-37.3c-14.4-25-14.4-54.8,0-79.8L443,156.7
C457.4,131.7,483.2,116.8,512.1,116.8 M512.1,98.8c-35.4,0-67,18.3-84.7,48.9L56,790.9c-17.7,30.6-17.7,67.2,0,97.8
c8.1,14,19.4,25.6,32.6,33.6c13.7,8.3,29.6,12.7,46,12.7c2.8,0,5.7-0.1,8.6-0.4H884c2.6,0.3,5.3,0.4,7.9,0.4
c15.4,0,30.6-4.4,44.1-12.8c13-8.1,24.1-19.7,32.1-33.5c17.7-30.6,17.7-67.2,0-97.8L596.8,147.7
C579.1,117.1,547.5,98.8,512.1,98.8L512.1,98.8z"/>
</g>
</g>
<g id="Triangle">
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="512.1" y1="886.825" x2="512.1" y2="144.3" gradientTransform="matrix(1 0 0 -1 0 1024)">
<stop offset="0" style="stop-color:#FAE462"/>
<stop offset="0.9989" style="stop-color:#DBAC3A"/>
</linearGradient>
<path fill="url(#SVGID_1_)" d="M469.1,162L97.8,805.2c-19.1,33.1,4.8,74.5,43,74.5h742.6c38.2,0,62.1-41.4,43-74.5L555.1,162
C536,128.9,488.2,128.9,469.1,162z"/>
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="512" y1="917" x2="512" y2="114.2" gradientTransform="matrix(1 0 0 -1 0 1024)">
<stop offset="0" style="stop-color:#FCFBF5"/>
<stop offset="1" style="stop-color:#E3E1DB"/>
</linearGradient>
<path fill="url(#SVGID_2_)" d="M512.1,137.2c16.7,0,33.4,8.3,43,24.8l371.3,643.1c19.1,33.1-4.8,74.5-43,74.5H140.8
c-38.2,0-62.1-41.4-43-74.5L469.1,162C478.7,145.5,495.4,137.2,512.1,137.2 M512.1,107c-28.9,0-54.7,14.9-69.1,39.9L71.6,790.1
c-14.4,25-14.4,54.8,0,79.8s40.3,39.9,69.1,39.9h742.6c28.9,0,54.7-14.9,69.1-39.9c14.4-25,14.4-54.8,0-79.8L581.2,146.9
C566.8,121.9,541,107,512.1,107L512.1,107z"/>
</g>
<g id="Point_Shadow" opacity="0.22">
<path fill="#323232" d="M511.8,714.5c8.6,0,16.4,2,23.1,6.1c6.8,4.1,12.1,9.4,16,16s5.9,14.3,5.9,22.9c0,8.7-2,16.3-6.1,22.9
c-4.1,6.6-9.4,12-16,16c-6.6,4.1-14.3,6.1-22.9,6.1c-10.5,0-20.6-4-30.2-12s-14.4-19-14.4-33.1c0-12.4,4.3-23,13-31.8
C488.8,718.9,499.3,714.5,511.8,714.5z"/>
<g opacity="0.14">
<path d="M511.8,714.5c8.6,0,16.4,2,23.1,6.1c6.8,4.1,12.1,9.4,16,16s5.9,14.3,5.9,22.9c0,8.7-2,16.3-6.1,22.9
c-4.1,6.6-9.4,12-16,16c-6.6,4.1-14.3,6.1-22.9,6.1c-10.5,0-20.6-4-30.2-12s-14.4-19-14.4-33.1c0-12.4,4.3-23,13-31.8
C488.8,718.9,499.3,714.5,511.8,714.5 M511.8,713.5c-12.7,0-23.5,4.5-32.3,13.5c-8.8,8.9-13.3,19.9-13.3,32.5
c0,14.3,5,25.7,14.8,33.8c9.7,8.1,20.1,12.2,30.9,12.2c8.8,0,16.7-2.1,23.4-6.2c6.7-4.1,12.2-9.6,16.4-16.3
c4.1-6.8,6.2-14.6,6.2-23.4c0-8.8-2-16.7-6-23.4s-9.5-12.2-16.4-16.4C528.5,715.6,520.5,713.5,511.8,713.5L511.8,713.5z"/>
</g>
<g opacity="0.14">
<path d="M511.8,714.5c8.6,0,16.4,2,23.1,6.1c6.8,4.1,12.1,9.4,16,16s5.9,14.3,5.9,22.9c0,8.7-2,16.3-6.1,22.9
c-4.1,6.6-9.4,12-16,16c-6.6,4.1-14.3,6.1-22.9,6.1c-10.5,0-20.6-4-30.2-12s-14.4-19-14.4-33.1c0-12.4,4.3-23,13-31.8
C488.8,718.9,499.3,714.5,511.8,714.5 M511.8,712.5c-12.9,0-24.1,4.6-33.1,13.8c-9,9.1-13.6,20.3-13.6,33.2
c0,14.6,5.1,26.3,15.1,34.6c9.9,8.2,20.5,12.4,31.5,12.4c9,0,17-2.1,24-6.4c6.9-4.2,12.5-9.8,16.7-16.7s6.4-15,6.4-24
s-2.1-17-6.2-23.9c-4.1-6.9-9.7-12.5-16.7-16.7C528.9,714.6,520.7,712.5,511.8,712.5L511.8,712.5z"/>
</g>
<g opacity="0.12">
<path d="M511.8,714.5c8.6,0,16.4,2,23.1,6.1c6.8,4.1,12.1,9.4,16,16s5.9,14.3,5.9,22.9c0,8.7-2,16.3-6.1,22.9
c-4.1,6.6-9.4,12-16,16c-6.6,4.1-14.3,6.1-22.9,6.1c-10.5,0-20.6-4-30.2-12s-14.4-19-14.4-33.1c0-12.4,4.3-23,13-31.8
C488.8,718.9,499.3,714.5,511.8,714.5 M511.8,711.5c-13.2,0-24.6,4.7-33.8,14.1c-9.2,9.3-13.8,20.7-13.8,33.9
c0,14.9,5.2,26.8,15.5,35.4c10.1,8.4,20.9,12.7,32.1,12.7c9.2,0,17.4-2.2,24.5-6.5c7-4.3,12.7-10,17-17c4.3-7.1,6.5-15.3,6.5-24.5
c0-9.1-2.1-17.4-6.3-24.4s-9.9-12.8-17.1-17.1C529.2,713.7,520.9,711.5,511.8,711.5L511.8,711.5z"/>
</g>
<g opacity="0.12">
<path d="M511.8,714.5c8.6,0,16.4,2,23.1,6.1c6.8,4.1,12.1,9.4,16,16s5.9,14.3,5.9,22.9c0,8.7-2,16.3-6.1,22.9
c-4.1,6.6-9.4,12-16,16c-6.6,4.1-14.3,6.1-22.9,6.1c-10.5,0-20.6-4-30.2-12s-14.4-19-14.4-33.1c0-12.4,4.3-23,13-31.8
C488.8,718.9,499.3,714.5,511.8,714.5 M511.8,710.5c-13.5,0-25.1,4.8-34.5,14.4c-9.4,9.5-14.1,21.2-14.1,34.6
c0,15.2,5.3,27.4,15.8,36.1c10.3,8.6,21.3,12.9,32.8,12.9c9.4,0,17.8-2.2,25-6.7c7.1-4.4,13-10.2,17.3-17.3
c4.4-7.2,6.7-15.6,6.7-25c0-9.3-2.2-17.7-6.4-24.9c-4.3-7.2-10.1-13-17.4-17.4C529.6,712.7,521.1,710.5,511.8,710.5L511.8,710.5z"
/>
</g>
<g opacity="0.1">
<path d="M511.8,714.5c8.6,0,16.4,2,23.1,6.1c6.8,4.1,12.1,9.4,16,16s5.9,14.3,5.9,22.9c0,8.7-2,16.3-6.1,22.9
c-4.1,6.6-9.4,12-16,16c-6.6,4.1-14.3,6.1-22.9,6.1c-10.5,0-20.6-4-30.2-12s-14.4-19-14.4-33.1c0-12.4,4.3-23,13-31.8
C488.8,718.9,499.3,714.5,511.8,714.5 M511.8,709.5c-13.8,0-25.6,4.9-35.2,14.7c-9.6,9.7-14.4,21.6-14.4,35.3
c0,15.6,5.5,28,16.2,36.9c10.5,8.7,21.7,13.1,33.4,13.1c9.5,0,18.1-2.3,25.5-6.8c7.3-4.5,13.2-10.4,17.7-17.7
c4.5-7.4,6.8-16,6.8-25.5s-2.2-18.1-6.6-25.5c-4.3-7.3-10.3-13.3-17.8-17.8C529.9,711.8,521.3,709.5,511.8,709.5L511.8,709.5z"/>
</g>
<g opacity="0.1">
<path d="M511.8,714.5c8.6,0,16.4,2,23.1,6.1c6.8,4.1,12.1,9.4,16,16s5.9,14.3,5.9,22.9c0,8.7-2,16.3-6.1,22.9
c-4.1,6.6-9.4,12-16,16c-6.6,4.1-14.3,6.1-22.9,6.1c-10.5,0-20.6-4-30.2-12s-14.4-19-14.4-33.1c0-12.4,4.3-23,13-31.8
C488.8,718.9,499.3,714.5,511.8,714.5 M511.8,708.5c-14,0-26.1,5-35.9,15c-9.8,9.9-14.7,22-14.7,36c0,15.9,5.6,28.5,16.6,37.7
c10.7,8.9,22.1,13.3,34,13.3c9.7,0,18.5-2.3,26-7c7.4-4.5,13.5-10.6,18-18c4.6-7.5,7-16.3,7-26s-2.3-18.4-6.7-26
c-4.4-7.5-10.5-13.6-18.1-18.1C530.3,710.8,521.5,708.5,511.8,708.5L511.8,708.5z"/>
</g>
<g opacity="8.000000e-02">
<path d="M511.8,714.5c8.6,0,16.4,2,23.1,6.1c6.8,4.1,12.1,9.4,16,16s5.9,14.3,5.9,22.9c0,8.7-2,16.3-6.1,22.9
c-4.1,6.6-9.4,12-16,16c-6.6,4.1-14.3,6.1-22.9,6.1c-10.5,0-20.6-4-30.2-12s-14.4-19-14.4-33.1c0-12.4,4.3-23,13-31.8
C488.8,718.9,499.3,714.5,511.8,714.5 M511.8,707.5c-14.3,0-26.6,5.1-36.6,15.3c-9.9,10.1-15,22.5-15,36.7
c0,16.2,5.7,29.1,16.9,38.4c10.8,9,22.5,13.6,34.7,13.6c9.9,0,18.9-2.4,26.6-7.1c7.6-4.6,13.7-10.8,18.3-18.3
c4.7-7.7,7.1-16.6,7.1-26.6c0-9.9-2.3-18.8-6.9-26.5c-4.5-7.6-10.7-13.8-18.4-18.5C530.6,709.9,521.6,707.5,511.8,707.5
L511.8,707.5z"/>
</g>
<g opacity="8.000000e-02">
<path d="M511.8,714.5c8.6,0,16.4,2,23.1,6.1c6.8,4.1,12.1,9.4,16,16s5.9,14.3,5.9,22.9c0,8.7-2,16.3-6.1,22.9
c-4.1,6.6-9.4,12-16,16c-6.6,4.1-14.3,6.1-22.9,6.1c-10.5,0-20.6-4-30.2-12s-14.4-19-14.4-33.1c0-12.4,4.3-23,13-31.8
C488.8,718.9,499.3,714.5,511.8,714.5 M511.8,706.5c-14.6,0-27.2,5.2-37.3,15.6c-10.1,10.3-15.3,22.9-15.3,37.4
c0,16.5,5.8,29.7,17.3,39.2c11,9.2,22.9,13.8,35.3,13.8c10.1,0,19.2-2.4,27.1-7.3c7.7-4.7,14-11,18.7-18.7
c4.8-7.9,7.3-17,7.3-27.1s-2.4-19.1-7-27c-4.6-7.8-10.9-14.1-18.8-18.8C531,708.9,521.8,706.5,511.8,706.5L511.8,706.5z"/>
</g>
<g opacity="6.000000e-02">
<path d="M511.8,714.5c8.6,0,16.4,2,23.1,6.1c6.8,4.1,12.1,9.4,16,16s5.9,14.3,5.9,22.9c0,8.7-2,16.3-6.1,22.9
c-4.1,6.6-9.4,12-16,16c-6.6,4.1-14.3,6.1-22.9,6.1c-10.5,0-20.6-4-30.2-12s-14.4-19-14.4-33.1c0-12.4,4.3-23,13-31.8
C488.8,718.9,499.3,714.5,511.8,714.5 M511.8,705.5c-14.9,0-27.7,5.3-38,15.9c-10.3,10.5-15.6,23.3-15.6,38.1
c0,16.8,5.9,30.3,17.6,40c11.2,9.3,23.3,14,36,14c10.3,0,19.6-2.5,27.6-7.4c7.8-4.8,14.2-11.2,19-19c4.9-8,7.4-17.3,7.4-27.6
c0-10.2-2.4-19.5-7.1-27.5c-4.7-7.9-11.1-14.3-19.1-19.2C531.3,708,522,705.5,511.8,705.5L511.8,705.5z"/>
</g>
<g opacity="6.000000e-02">
<path d="M511.8,714.5c8.6,0,16.4,2,23.1,6.1c6.8,4.1,12.1,9.4,16,16s5.9,14.3,5.9,22.9c0,8.7-2,16.3-6.1,22.9
c-4.1,6.6-9.4,12-16,16c-6.6,4.1-14.3,6.1-22.9,6.1c-10.5,0-20.6-4-30.2-12s-14.4-19-14.4-33.1c0-12.4,4.3-23,13-31.8
C488.8,718.9,499.3,714.5,511.8,714.5 M511.8,703.5c-15.4,0-28.7,5.5-39.5,16.5c-10.7,10.9-16.1,24.2-16.1,39.6
c0,17.4,6.2,31.4,18.4,41.5c11.6,9.6,24.1,14.5,37.2,14.5c10.7,0,20.3-2.6,28.7-7.7c8.1-5,14.7-11.6,19.7-19.7
c5.1-8.3,7.7-18,7.7-28.7c0-10.6-2.5-20.2-7.4-28.5c-4.9-8.2-11.5-14.9-19.8-19.9C532.1,706.1,522.4,703.5,511.8,703.5
L511.8,703.5z"/>
</g>
<g opacity="4.000000e-02">
<path d="M511.8,714.5c8.6,0,16.4,2,23.1,6.1c6.8,4.1,12.1,9.4,16,16s5.9,14.3,5.9,22.9c0,8.7-2,16.3-6.1,22.9
c-4.1,6.6-9.4,12-16,16c-6.6,4.1-14.3,6.1-22.9,6.1c-10.5,0-20.6-4-30.2-12s-14.4-19-14.4-33.1c0-12.4,4.3-23,13-31.8
C488.8,718.9,499.3,714.5,511.8,714.5 M511.8,702.5c-15.7,0-29.2,5.6-40.2,16.8c-10.9,11.1-16.4,24.6-16.4,40.3
c0,17.7,6.3,32,18.7,42.3c11.8,9.8,24.5,14.7,37.9,14.7c10.8,0,20.7-2.6,29.2-7.8c8.2-5,15-11.8,20-20c5.2-8.5,7.8-18.3,7.8-29.2
c0-10.8-2.5-20.5-7.5-29c-4.9-8.3-11.7-15.1-20.2-20.2C532.4,705.1,522.6,702.5,511.8,702.5L511.8,702.5z"/>
</g>
<g opacity="4.000000e-02">
<path d="M511.8,714.5c8.6,0,16.4,2,23.1,6.1c6.8,4.1,12.1,9.4,16,16s5.9,14.3,5.9,22.9c0,8.7-2,16.3-6.1,22.9
c-4.1,6.6-9.4,12-16,16c-6.6,4.1-14.3,6.1-22.9,6.1c-10.5,0-20.6-4-30.2-12s-14.4-19-14.4-33.1c0-12.4,4.3-23,13-31.8
C488.8,718.9,499.3,714.5,511.8,714.5 M511.8,701.5c-16,0-29.7,5.7-40.9,17.1c-11.1,11.3-16.7,25-16.7,41c0,18,6.4,32.5,19.1,43.1
c11.9,9.9,24.9,15,38.5,15c11,0,21-2.7,29.7-8c8.4-5.1,15.2-12,20.3-20.3c5.3-8.7,8-18.7,8-29.7s-2.6-20.9-7.7-29.5
c-5-8.5-11.9-15.4-20.5-20.6C532.8,704.2,522.7,701.5,511.8,701.5L511.8,701.5z"/>
</g>
<g opacity="2.000000e-02">
<path d="M511.8,714.5c8.6,0,16.4,2,23.1,6.1c6.8,4.1,12.1,9.4,16,16s5.9,14.3,5.9,22.9c0,8.7-2,16.3-6.1,22.9
c-4.1,6.6-9.4,12-16,16c-6.6,4.1-14.3,6.1-22.9,6.1c-10.5,0-20.6-4-30.2-12s-14.4-19-14.4-33.1c0-12.4,4.3-23,13-31.8
C488.8,718.9,499.3,714.5,511.8,714.5 M511.8,700.5c-16.3,0-30.3,5.8-41.6,17.4c-11.3,11.5-17,25.5-17,41.7
c0,18.4,6.5,33.1,19.5,43.8c12.1,10.1,25.3,15.2,39.2,15.2c11.2,0,21.4-2.7,30.2-8.1c8.5-5.2,15.5-12.2,20.7-20.7
c5.4-8.8,8.1-19,8.1-30.2c0-11.1-2.6-21.2-7.8-30c-5.1-8.6-12.1-15.7-20.9-20.9C533.1,703.2,522.9,700.5,511.8,700.5L511.8,700.5z
"/>
</g>
<g opacity="2.000000e-02">
<path d="M511.8,714.5c8.6,0,16.4,2,23.1,6.1c6.8,4.1,12.1,9.4,16,16s5.9,14.3,5.9,22.9c0,8.7-2,16.3-6.1,22.9
c-4.1,6.6-9.4,12-16,16c-6.6,4.1-14.3,6.1-22.9,6.1c-10.5,0-20.6-4-30.2-12s-14.4-19-14.4-33.1c0-12.4,4.3-23,13-31.8
C488.8,718.9,499.3,714.5,511.8,714.5 M511.8,699.5c-16.5,0-30.8,5.9-42.3,17.7c-11.5,11.6-17.3,25.9-17.3,42.4
c0,18.4,6.9,33.8,19.8,44.6c12.3,10.2,25.7,15.4,39.8,15.4c11.4,0,21.8-2.8,30.7-8.3c8.6-5.3,15.7-12.4,21-21
c5.5-9,8.3-19.3,8.3-30.7c0-11.3-2.7-21.6-8-30.5c-5.2-8.8-12.3-15.9-21.2-21.2C533.5,702.3,523.1,699.5,511.8,699.5L511.8,699.5z
"/>
</g>
</g>
<radialGradient id="Point_1_" cx="512" cy="272.1" r="44.9001" gradientTransform="matrix(1 0 0 -1 0 1024)" gradientUnits="userSpaceOnUse">
<stop offset="0" style="stop-color:#F8F8F8"/>
<stop offset="1" style="stop-color:#E9E9E8"/>
</radialGradient>
<path id="Point" fill="url(#Point_1_)" d="M511.8,706.9c8.6,0,16.4,2,23.1,6.1c6.8,4.1,12.1,9.4,16,16s5.9,14.3,5.9,22.9
c0,8.7-2,16.3-6.1,22.9c-4.1,6.6-9.4,12-16,16c-6.6,4.1-14.3,6.1-22.9,6.1c-10.5,0-20.6-4-30.2-12s-14.4-19-14.4-33.1
c0-12.4,4.3-23,13-31.8C488.8,711.3,499.3,706.9,511.8,706.9z"/>
<g id="Exclamation_Shadow" opacity="0.22">
<path fill="#323232" d="M520.3,667.4h-15.8l-22.7-171.5c-9.2-66.5-13.8-105.2-13.8-116c0-15.9,4.1-28.9,12.4-38.9
c8.2-10,19.4-15,33.5-15c13.5,0,23.8,5.2,30.8,15.6s10.5,22.9,10.5,37.5c0,8.1-3.5,39.9-10.5,95.3L520.3,667.4z"/>
<g opacity="0.14">
<path d="M513.8,326c13.5,0,23.8,5.2,30.8,15.6s10.5,22.9,10.5,37.5c0,8.1-3.5,39.9-10.5,95.3l-24.3,193h-15.8l-22.7-171.5
c-9.2-66.5-13.8-105.2-13.8-116c0-15.9,4.1-28.9,12.4-38.9C488.6,331,499.7,326,513.8,326 M513.8,325c-14.3,0-25.8,5.2-34.2,15.4
c-8.4,10.1-12.6,23.5-12.6,39.6c0,10.8,4.6,49.9,13.8,116.1l22.7,171.5l0.1,0.9h0.9h15.8h0.9l0.1-0.9l24.3-193
c7.1-56,10.6-87.2,10.6-95.4c0-14.7-3.6-27.5-10.7-38.1C538.2,330.4,527.6,325,513.8,325L513.8,325z"/>
</g>
<g opacity="0.14">
<path d="M513.8,326c13.5,0,23.8,5.2,30.8,15.6s10.5,22.9,10.5,37.5c0,8.1-3.5,39.9-10.5,95.3l-24.3,193h-15.8l-22.7-171.5
c-9.2-66.5-13.8-105.2-13.8-116c0-15.9,4.1-28.9,12.4-38.9C488.6,331,499.7,326,513.8,326 M513.8,324c-14.6,0-26.4,5.3-35,15.7
c-8.5,10.3-12.8,23.8-12.8,40.2c0,10.9,4.6,50,13.8,116.3l22.7,171.5l0.2,1.7h1.8h15.8h1.8l0.2-1.7l24.3-193
c7.1-56,10.6-87.3,10.6-95.6c0-14.9-3.7-27.9-10.9-38.6C538.9,329.5,527.9,324,513.8,324L513.8,324z"/>
</g>
<g opacity="0.12">
<path d="M513.8,326c13.5,0,23.8,5.2,30.8,15.6s10.5,22.9,10.5,37.5c0,8.1-3.5,39.9-10.5,95.3l-24.3,193h-15.8l-22.7-171.5
c-9.2-66.5-13.8-105.2-13.8-116c0-15.9,4.1-28.9,12.4-38.9C488.6,331,499.7,326,513.8,326 M513.8,323c-14.9,0-27,5.4-35.8,16.1
c-8.7,10.5-13.1,24.2-13.1,40.8c0,11.1,4.5,49.1,13.8,116.4l22.7,171.5l0.3,2.6h2.6h15.8h2.6l0.3-2.6l24.3-193
c7.1-56.1,10.6-87.4,10.6-95.7c0-15.1-3.7-28.3-11.1-39.2C539.5,328.7,528.3,323,513.8,323L513.8,323z"/>
</g>
<g opacity="0.12">
<path d="M513.8,326c13.5,0,23.8,5.2,30.8,15.6s10.5,22.9,10.5,37.5c0,8.1-3.5,39.9-10.5,95.3l-24.3,193h-15.8l-22.7-171.5
c-9.2-66.5-13.8-105.2-13.8-116c0-15.9,4.1-28.9,12.4-38.9C488.6,331,499.7,326,513.8,326 M513.8,322c-15.2,0-27.5,5.5-36.5,16.5
c-8.8,10.7-13.3,24.6-13.3,41.5c0,11.1,4.5,49.2,13.8,116.5L500.5,668l0.5,3.5h3.5h15.8h3.5l0.4-3.5l24.3-193
c7.1-56.1,10.6-87.5,10.6-95.8c0-15.3-3.8-28.7-11.2-39.8C540.1,327.8,528.6,322,513.8,322L513.8,322z"/>
</g>
<g opacity="0.1">
<path d="M513.8,326c13.5,0,23.8,5.2,30.8,15.6s10.5,22.9,10.5,37.5c0,8.1-3.5,39.9-10.5,95.3l-24.3,193h-15.8l-22.7-171.5
c-9.2-66.5-13.8-105.2-13.8-116c0-15.9,4.1-28.9,12.4-38.9C488.6,331,499.7,326,513.8,326 M513.8,321c-15.6,0-28.1,5.7-37.3,16.8
c-9,10.9-13.5,25-13.5,42.1c0,11.2,4.5,49.3,13.8,116.7l22.7,171.5l0.6,4.3h4.4h15.8h4.4l0.6-4.4l24.3-193
c7.1-56.2,10.6-87.5,10.6-95.9c0-15.5-3.8-29.1-11.4-40.3C540.8,327,529,321,513.8,321L513.8,321z"/>
</g>
<g opacity="0.1">
<path d="M513.8,326c13.5,0,23.8,5.2,30.8,15.6s10.5,22.9,10.5,37.5c0,8.1-3.5,39.9-10.5,95.3l-24.3,193h-15.8l-22.7-171.5
c-9.2-66.5-13.8-105.2-13.8-116c0-15.9,4.1-28.9,12.4-38.9C488.6,331,499.7,326,513.8,326 M513.8,320c-15.9,0-28.7,5.8-38.1,17.2
c-9.1,11.1-13.7,25.4-13.7,42.7c0,11.2,4.5,49.4,13.8,116.8l22.7,171.5l0.7,5.2h5.3h15.8h5.3l0.7-5.2l24.3-193
c7.1-56.2,10.6-87.6,10.6-96.1c0-15.7-3.9-29.5-11.6-40.9C541.4,326.1,529.3,320,513.8,320L513.8,320z"/>
</g>
<g opacity="8.000000e-02">
<path d="M513.8,326c13.5,0,23.8,5.2,30.8,15.6s10.5,22.9,10.5,37.5c0,8.1-3.5,39.9-10.5,95.3l-24.3,193h-15.8l-22.7-171.5
c-9.2-66.5-13.8-105.2-13.8-116c0-15.9,4.1-28.9,12.4-38.9C488.6,331,499.7,326,513.8,326 M513.8,319c-16.2,0-29.3,5.9-38.9,17.6
c-9.3,11.2-14,25.8-14,43.4c0,11.3,4.5,49.5,13.9,116.9l22.7,171.5l0.8,6.1h6.1h15.8h6.2l0.8-6.1l24.3-193
c7.1-56.2,10.6-87.7,10.6-96.2c0-15.9-4-29.9-11.7-41.4C542,325.3,529.7,319,513.8,319L513.8,319z"/>
</g>
<g opacity="8.000000e-02">
<path d="M513.8,326c13.5,0,23.8,5.2,30.8,15.6s10.5,22.9,10.5,37.5c0,8.1-3.5,39.9-10.5,95.3l-24.3,193h-15.8l-22.7-171.5
c-9.2-66.5-13.8-105.2-13.8-116c0-15.9,4.1-28.9,12.4-38.9C488.6,331,499.7,326,513.8,326 M513.8,318c-16.5,0-29.8,6-39.6,17.9
c-9.4,11.4-14.2,26.2-14.2,44c0,11.3,4.5,49.6,13.9,117.1l22.7,171.5l0.9,7h7h15.8h7.1l0.9-7l24.3-193
c7.1-56.3,10.6-87.8,10.6-96.3c0-16.2-4-30.3-11.9-42C542.6,324.4,530,318,513.8,318L513.8,318z"/>
</g>
<g opacity="6.000000e-02">
<path d="M513.8,326c13.5,0,23.8,5.2,30.8,15.6s10.5,22.9,10.5,37.5c0,8.1-3.5,39.9-10.5,95.3l-24.3,193h-15.8l-22.7-171.5
c-9.2-66.5-13.8-105.2-13.8-116c0-15.9,4.1-28.9,12.4-38.9C488.6,331,499.7,326,513.8,326 M513.8,317c-16.8,0-30.4,6.2-40.4,18.3
c-9.6,11.6-14.4,26.6-14.4,44.7c0,11.3,4.5,49.7,13.9,117.2l22.7,171.5l1,7.8h7.9h15.8h7.9l1-7.9l24.3-193
c7.1-56.3,10.6-87.9,10.6-96.4c0-16.4-4.1-30.7-12.1-42.5C543.4,323.7,530.2,317,513.8,317L513.8,317z"/>
</g>
<g opacity="6.000000e-02">
<path d="M513.8,326c13.5,0,23.8,5.2,30.8,15.6s10.5,22.9,10.5,37.5c0,8.1-3.5,39.9-10.5,95.3l-24.3,193h-15.8l-22.7-171.5
c-9.2-66.5-13.8-105.2-13.8-116c0-15.9,4.1-28.9,12.4-38.9C488.6,331,499.7,326,513.8,326 M513.8,315c-17.4,0-31.5,6.4-41.9,19
c-9.9,12-14.9,27.4-14.9,45.9c0,11.4,4.5,49.9,13.9,117.5l22.7,171.5l1.3,9.6h9.6h15.8h9.7l1.2-9.6l24.3-193
c9.5-75.1,10.6-91.2,10.6-96.7c0-16.8-4.2-31.5-12.4-43.7C544.7,322,530.9,315,513.8,315L513.8,315z"/>
</g>
<g opacity="4.000000e-02">
<path d="M513.8,326c13.5,0,23.8,5.2,30.8,15.6s10.5,22.9,10.5,37.5c0,8.1-3.5,39.9-10.5,95.3l-24.3,193h-15.8l-22.7-171.5
c-9.2-66.5-13.8-105.2-13.8-116c0-15.9,4.1-28.9,12.4-38.9C488.6,331,499.7,326,513.8,326 M513.8,314c-17.7,0-32.1,6.5-42.7,19.4
c-10,12.2-15.1,27.8-15.1,46.6c0,11.5,4.5,50,13.9,117.6L492.6,669l1.4,10.4h10.5h15.8h10.6l1.3-10.5l24.3-193
c9.5-75.2,10.6-91.3,10.6-96.8c0-17-4.2-31.8-12.6-44.2C545.3,321.2,531.2,314,513.8,314L513.8,314z"/>
</g>
<g opacity="4.000000e-02">
<path d="M513.8,326c13.5,0,23.8,5.2,30.8,15.6s10.5,22.9,10.5,37.5c0,8.1-3.5,39.9-10.5,95.3l-24.3,193h-15.8l-22.7-171.5
c-9.2-66.5-13.8-105.2-13.8-116c0-15.9,4.1-28.9,12.4-38.9C488.6,331,499.7,326,513.8,326 M513.8,313c-18.1,0-32.7,6.6-43.5,19.7
C460.1,345,455,360.9,455,379.9c0,11.5,4.5,50,13.9,117.7l22.7,171.5l1.5,11.3h11.4h15.8h11.5l1.4-11.4l24.3-193
c9.5-75.3,10.6-91.4,10.6-96.9c0-17.2-4.3-32.2-12.8-44.8C545.9,320.4,531.6,313,513.8,313L513.8,313z"/>
</g>
<g opacity="2.000000e-02">
<path d="M513.8,326c13.5,0,23.8,5.2,30.8,15.6s10.5,22.9,10.5,37.5c0,8.1-3.5,39.9-10.5,95.3l-24.3,193h-15.8l-22.7-171.5
c-9.2-66.5-13.8-105.2-13.8-116c0-15.9,4.1-28.9,12.4-38.9C488.6,331,499.7,326,513.8,326 M513.8,312c-18.1,0-33.4,7-44.3,20.1
c-10.3,12.5-15.6,28.6-15.6,47.8c0,7.4,1.4,27.6,13.9,117.9l22.7,171.5l1.6,12.2h12.3h15.8h12.3l1.5-12.2l24.3-193
c9.5-75.3,10.7-91.5,10.7-97.1c0-17.4-4.4-32.6-12.9-45.3C546.6,319.5,531.9,312,513.8,312L513.8,312z"/>
</g>
<g opacity="2.000000e-02">
<path d="M513.8,326c13.5,0,23.8,5.2,30.8,15.6s10.5,22.9,10.5,37.5c0,8.1-3.5,39.9-10.5,95.3l-24.3,193h-15.8l-22.7-171.5
c-9.2-66.5-13.8-105.2-13.8-116c0-15.9,4.1-28.9,12.4-38.9C488.6,331,499.7,326,513.8,326 M513.8,311c-18.4,0-34,7.1-45,20.5
c-10.5,12.7-15.8,29-15.8,48.5c0,7.4,1.4,27.7,13.9,118l22.7,171.5l1.7,13h13.1h15.8h13.2l1.7-13.1l24.3-193
c9.6-75.4,10.7-91.6,10.7-97.2c0-17.6-4.4-33-13.1-45.9C547.2,318.7,532.2,311,513.8,311L513.8,311z"/>
</g>
</g>
<radialGradient id="Exclamation_1_" cx="511.6" cy="534.8233" r="124.5798" gradientTransform="matrix(1 0 0 -2.5 0 1826.2583)" gradientUnits="userSpaceOnUse">
<stop offset="0" style="stop-color:#F8F8F8"/>
<stop offset="1" style="stop-color:#E9E9E8"/>
</radialGradient>
<path id="Exclamation" fill="url(#Exclamation_1_)" d="M520.3,659.9h-15.8l-22.7-171.5c-9.2-66.5-13.8-105.2-13.8-116
c0-15.9,4.1-28.9,12.4-38.9c8.2-10,19.4-15,33.5-15c13.5,0,23.8,5.2,30.8,15.6s10.5,22.9,10.5,37.5c0,8.1-3.5,39.9-10.5,95.3
L520.3,659.9z"/>
</svg>

After

Width:  |  Height:  |  Size: 30 KiB

+5 -3
View File
@@ -1,5 +1,5 @@
import { info } from './logger.js'
import { getResource } from './common.js'
import { Browser, getBrowser, getResource } from './common.js'
import { videoPlayingPictureInPicture } from './video.js'
const TRACK_ID = 'PiPer_track';
@@ -117,7 +117,7 @@ const removeCaptions = function(video, workaround = true) {
}
// Workaround Safari bug; 'removeCue' doesn't immediately remove captions shown in Picture in Picture mode
if (workaround && video && !showingEmptyCaption) {
if (getBrowser() == Browser.SAFARI && workaround && video && !showingEmptyCaption) {
track.addCue(new VTTCue(video.currentTime, video.currentTime + 60, ''));
showingEmptyCaption = true;
}
@@ -134,7 +134,9 @@ const addCaption = function(video, caption) {
info(`Showing caption '${caption}'`);
track.addCue(new VTTCue(video.currentTime, video.currentTime + 60, caption));
showingEmptyCaption = false;
if (getBrowser() == Browser.SAFARI) {
showingEmptyCaption = false;
}
};
/**
+35 -1
View File
@@ -1,5 +1,31 @@
import { BROWSER } from './defines.js'
import { warn } from './logger.js'
/** @enum {number} - Enum for browser */
export const Browser = {
UNKNOWN: 0,
SAFARI: 1,
CHROME: 2,
};
/**
* Returns current web browser
*
* @return {Browser}
*/
export const getBrowser = function() {
if (BROWSER != Browser.UNKNOWN) {
return /** @type {Browser} */ (BROWSER);
}
if (/Safari/.test(navigator.userAgent) && /Apple/.test(navigator.vendor)) {
return Browser.SAFARI;
}
if (/Chrome/.test(navigator.userAgent) && /Google/.test(navigator.vendor)) {
return Browser.CHROME;
}
return Browser.UNKNOWN;
};
/**
* @typedef {{
* buttonClassName: (string|undefined),
@@ -44,7 +70,15 @@ export const setResource = function(resource) {
* @return {string}
*/
export const getExtensionURL = function(path) {
return safari.extension.baseURI + path;
switch (getBrowser()) {
case Browser.SAFARI:
return safari.extension.baseURI + path;
case Browser.CHROME:
return chrome.runtime.getURL(path);
case Browser.UNKNOWN:
default:
return path;
}
};
/**
+4 -1
View File
@@ -1,2 +1,5 @@
/** @define {number} - Flag used by closure compiler to set logging level */
export const LOGGING_LEVEL = 0;
export const LOGGING_LEVEL = 0;
/** @define {number} - Flag used by closure compiler to target specific browser */
export const BROWSER = 0;
+93 -1
View File
@@ -1,3 +1,11 @@
/**
* @fileoverview Externs file for PiPer used by Closure Compiler
* @externs
*/
/* Safari Extension */
/** @const */
const safari = {};
@@ -11,7 +19,91 @@ safari.extension.baseURI;
HTMLVideoElement.prototype.webkitPresentationMode;
/** @return {undefined} */
HTMLVideoElement.prototype.webkitSetPresentationMode = function(mode) {}
HTMLVideoElement.prototype.webkitSetPresentationMode = function(mode) {};
/** @type {string} */
TextTrack.prototype.label;
/** @return {undefined} */
safari.extension.dispatchMessage = function(message, userInfo) {};
/** @const */
safari.self = {};
/** @return {undefined} */
safari.self.addEventListener = function(type, listener) {};
/** @constructor */
const SafariExtensionMessageEvent = function() {};
/** @type {*} */
SafariExtensionMessageEvent.prototype.message;
/** @type {string} */
SafariExtensionMessageEvent.prototype.name;
/* Legacy Safari Extension */
/** @const */
safari.extension.settings = {};
/** @return {undefined} */
safari.extension.settings.clear = function() {};
/* Chrome Extension */
/** @const */
const chrome = {};
/** @const */
chrome.runtime = {};
/** @return {string} */
chrome.runtime.getURL = function(path) {};
/** @const */
chrome.runtime.onInstalled = {};
/** @return {undefined} */
chrome.runtime.onInstalled.addListener = function(callback) {};
/** @constructor */
chrome.runtime.Manifest = function() {};
/** @type {string} */
chrome.runtime.Manifest.prototype.version;
/** @return {!chrome.runtime.Manifest} */
chrome.runtime.getManifest = function() {};
/** @const */
chrome.tabs = {};
/** @return {undefined} */
chrome.tabs.create = function(properties) {};
/** @return {Promise<*>} */
HTMLVideoElement.prototype.requestPictureInPicture = function() {};
/** @const */
chrome.extension = {};
/** @return {string} */
chrome.extension.getURL = function(path) {};
/** @const */
chrome.storage = {};
/** @const */
chrome.storage.sync = {};
/** @return {undefined} */
chrome.storage.sync.get = function(keys, callback) {};
/** @return {undefined} */
chrome.storage.sync.set = function(items, callback) {};
/** @return {undefined} */
chrome.storage.sync.clear = function(callback) {};
+16
View File
@@ -19,6 +19,14 @@ localizations['report-bug'] = {
'de': 'Einen Fehler melden',
};
localizations['options'] = {
'en': 'Options',
};
localizations['install-thanks'] = {
'en': 'Thanks for adding PiPer!',
};
localizations['enable'] = {
'en': 'Enable',
};
@@ -27,6 +35,14 @@ localizations['safari-disabled-warning'] = {
'en': 'Extension is currently disabled, enable in Safari preferences',
};
localizations['chrome-flags-open'] = {
'en': 'Open Chrome Flags',
};
localizations['chrome-flags-warning'] = {
'en': 'Before you get started you need to enable the chrome flag [emphasis]"SurfaceLayer objects for videos"[/emphasis]',
};
// Set English as the default fallback language
const defaultLanguage = 'en';
+9 -4
View File
@@ -1,5 +1,5 @@
import { info } from './logger.js'
import { getResource, setResource } from './common.js'
import { Browser, getBrowser, getResource, setResource } from './common.js'
import { addVideoElementListeners } from './video.js'
import { resources } from './resources/index.js';
import { checkButton, addButton } from './button.js'
@@ -13,7 +13,10 @@ const mutationObserver = function() {
// Process video captions if needed
if (shouldProcessCaptions()) processCaptions();
// Workaround Chrome's lack of an entering Picture in Picture mode event by monitoring all video elements
if (getBrowser() == Browser.CHROME) addVideoElementListeners();
// Try adding the button to the page if needed
if (checkButton()) return;
const currentResource = getResource();
@@ -33,8 +36,10 @@ if (domainName in resources) {
setResource(resources[domainName]);
initialiseCaches();
enableCaptions(true);
if (getBrowser() == Browser.SAFARI) {
enableCaptions(true);
}
const observer = new MutationObserver(mutationObserver);
observer.observe(document, {
@@ -1,10 +1,11 @@
import { getResource } from './../common.js'
import { Browser, getBrowser, getResource } from './../common.js'
export const domain = 'curiositystream';
export const resource = {
buttonClassName: 'vjs-control vjs-button',
buttonDidAppear: function() {
if (getBrowser() != Browser.SAFARI) return;
const video = /** @type {?HTMLVideoElement} */ (getResource().videoElement());
const videoContainer = video.parentElement;
video.addEventListener('webkitbeginfullscreen', function() {
+16 -14
View File
@@ -1,4 +1,4 @@
import { getResource, bypassBackgroundTimerThrottling } from './../common.js'
import { Browser, getBrowser, getResource, bypassBackgroundTimerThrottling } from './../common.js'
import { getButton } from './../button.js'
import { enableCaptions, disableCaptions, shouldProcessCaptions } from './../captions.js'
@@ -23,19 +23,21 @@ export const resource = {
bypassBackgroundTimerThrottling();
// Workaround Safari bug; old captions persist in Picture in Picture mode when MediaSource buffers change
const video = /** @type {?HTMLVideoElement} */ (getResource().videoElement());
let captionsVisible = false;
const navigateStart = function() {
captionsVisible = shouldProcessCaptions();
if (captionsVisible) disableCaptions();
};
const navigateFinish = function() {
if (captionsVisible) enableCaptions();
};
window.addEventListener('spfrequest', navigateStart);
window.addEventListener('spfdone', navigateFinish);
window.addEventListener('yt-navigate-start', navigateStart);
window.addEventListener('yt-navigate-finish', navigateFinish);
if (getBrowser() == Browser.SAFARI) {
const video = /** @type {?HTMLVideoElement} */ (getResource().videoElement());
let captionsVisible = false;
const navigateStart = function() {
captionsVisible = shouldProcessCaptions();
if (captionsVisible) disableCaptions();
};
const navigateFinish = function() {
if (captionsVisible) enableCaptions();
};
window.addEventListener('spfrequest', navigateStart);
window.addEventListener('spfdone', navigateFinish);
window.addEventListener('yt-navigate-start', navigateStart);
window.addEventListener('yt-navigate-finish', navigateFinish);
}
},
buttonInsertBefore: function(/** Element */ parent) {
return parent.lastChild;
+69 -5
View File
@@ -1,4 +1,7 @@
import { info } from './logger.js'
import { Browser, getBrowser } from './common.js'
const CHROME_PLAYING_PIP_ATTRIBUTE = 'data-playing-picture-in-picture';
/**
* Toggles video Picture in Picture
@@ -7,10 +10,28 @@ import { info } from './logger.js'
*/
export const togglePictureInPicture = function(video) {
const playingPictureInPicture = videoPlayingPictureInPicture(video);
if (playingPictureInPicture) {
video.webkitSetPresentationMode('inline');
} else {
video.webkitSetPresentationMode('picture-in-picture');
switch (getBrowser()) {
case Browser.SAFARI:
if (playingPictureInPicture) {
video.webkitSetPresentationMode('inline');
} else {
video.webkitSetPresentationMode('picture-in-picture');
}
break;
case Browser.CHROME:
if (playingPictureInPicture) {
// Workaround Chrome content scripts being unable to call 'exitPictureInPicture' directly
const script = document.createElement('script');
script.textContent = 'document.exitPictureInPicture()';
document.head.appendChild(script);
script.remove();
} else {
video.requestPictureInPicture();
}
break;
case Browser.UNKNOWN:
default:
break;
}
};
@@ -21,5 +42,48 @@ export const togglePictureInPicture = function(video) {
* @return {boolean}
*/
export const videoPlayingPictureInPicture = function(video) {
return video.webkitPresentationMode == 'picture-in-picture';
switch (getBrowser()) {
case Browser.SAFARI:
return video.webkitPresentationMode == 'picture-in-picture';
case Browser.CHROME:
return video.hasAttribute(CHROME_PLAYING_PIP_ATTRIBUTE);
case Browser.UNKNOWN:
default:
return false;
}
};
/**
* Sets Picture in Picture attribute and toggles captions on entering Picture in Picture mode
*
* @param {!Event} event - an enterpictureinpicture event
*/
const videoDidEnterPictureInPicture = function(event) {
info('Video entering Picture in Picture mode');
const video = /** @type {HTMLVideoElement} */ (event.target);
// Toggle captions; Avoid circular referencing by calling 'videoPresentationModeChanged' directly
const presentationEvent = new Event('webkitpresentationmodechanged', { bubbles: true });
video.dispatchEvent(presentationEvent);
// Set playing in Picture in Picture mode attribute
video.setAttribute(CHROME_PLAYING_PIP_ATTRIBUTE, true);
// Remove Picture in Picture attribute and toggle captions on leaving Picture in Picture mode
video.addEventListener('leavepictureinpicture', function(event) {
info('Video leaving Picture in Picture mode');
video.removeAttribute(CHROME_PLAYING_PIP_ATTRIBUTE);
video.dispatchEvent(presentationEvent);
}, { once: true });
};
/**
* Adds Picture in Picture event listeners to all video elements
*/
export const addVideoElementListeners = function() {
const elements = document.getElementsByTagName('video');
for (let index = 0, element; element = elements[index]; index++) {
element.addEventListener('enterpictureinpicture', videoDidEnterPictureInPicture);
}
};
+1 -1
View File
@@ -10,7 +10,7 @@
<key>CFBundleShortVersionString</key>
<string></string>
<key>CFBundleVersion</key>
<string>174</string>
<string>175</string>
<key>Developer Identifier</key>
<string>BQ6Q24MF9X</string>
<key>URL</key>