no message
@ -4,6 +4,7 @@ namespace App\Http\Controllers\Api;
|
||||
|
||||
use App\Models\User;
|
||||
use App\Module\Base;
|
||||
use Arr;
|
||||
use Cache;
|
||||
use Captcha;
|
||||
use Carbon\Carbon;
|
||||
@ -186,15 +187,20 @@ class UsersController extends AbstractController
|
||||
public function editdata()
|
||||
{
|
||||
$user = User::auth();
|
||||
$data = Request::all();
|
||||
//头像
|
||||
$userimg = Request::input('userimg');
|
||||
if ($userimg) {
|
||||
$userimg = is_array($userimg) ? $userimg[0]['path'] : $userimg;
|
||||
$user->userimg = Base::unFillUrl($userimg);
|
||||
if (Arr::exists($data, 'userimg')) {
|
||||
$userimg = Request::input('userimg');
|
||||
if ($userimg) {
|
||||
$userimg = is_array($userimg) ? $userimg[0]['path'] : $userimg;
|
||||
$user->userimg = Base::unFillUrl($userimg);
|
||||
} else {
|
||||
$user->userimg = '';
|
||||
}
|
||||
}
|
||||
//昵称
|
||||
$nickname = trim(Request::input('nickname'));
|
||||
if ($nickname) {
|
||||
if (Arr::exists($data, 'nickname')) {
|
||||
$nickname = trim(Request::input('nickname'));
|
||||
if (mb_strlen($nickname) < 2) {
|
||||
return Base::retError('昵称不可以少于2个字');
|
||||
} elseif (mb_strlen($nickname) > 20) {
|
||||
@ -204,8 +210,8 @@ class UsersController extends AbstractController
|
||||
}
|
||||
}
|
||||
//职位/职称
|
||||
$profession = trim(Request::input('profession'));
|
||||
if ($profession) {
|
||||
if (Arr::exists($data, 'profession')) {
|
||||
$profession = trim(Request::input('profession'));
|
||||
if (mb_strlen($profession) < 2) {
|
||||
return Base::retError('职位/职称不可以少于2个字');
|
||||
} elseif (mb_strlen($profession) > 20) {
|
||||
|
@ -387,7 +387,7 @@ class User extends AbstractModel
|
||||
*/
|
||||
public static function AZUpdate($userid)
|
||||
{
|
||||
$row = self::whereUserid($userid)->select(['email', 'nickname'])->first();
|
||||
$row = self::whereUserid($userid)->first();
|
||||
if ($row) {
|
||||
$row->az = Base::getFirstCharter($row->nickname);
|
||||
$row->save();
|
||||
|
Before Width: | Height: | Size: 0 B After Width: | Height: | Size: 83 KiB |
@ -67,7 +67,7 @@
|
||||
this.getData()
|
||||
},
|
||||
computed: {
|
||||
...mapState(["userId", "userOnline"]),
|
||||
...mapState(["userId", "userInfo", "userOnline"]),
|
||||
|
||||
boxStyle() {
|
||||
const style = {};
|
||||
@ -125,6 +125,12 @@
|
||||
this.getData()
|
||||
},
|
||||
|
||||
userInfo(info) {
|
||||
if (info.userid == this.userid) {
|
||||
this.user = info;
|
||||
}
|
||||
},
|
||||
|
||||
userOnline(data) {
|
||||
if (this.user && typeof data[this.user.userid] !== "undefined") {
|
||||
this.$set(this.user, 'online', data[this.user.userid]);
|
||||
@ -136,6 +142,10 @@
|
||||
if (!this.userid) {
|
||||
return;
|
||||
}
|
||||
if (this.userid == this.userInfo.userid) {
|
||||
this.user = this.userInfo;
|
||||
return;
|
||||
}
|
||||
this.$store.dispatch("getUserBasic", {
|
||||
userid: this.userid,
|
||||
success: (user) => {
|
||||
|
@ -76,7 +76,7 @@ export default {
|
||||
style: {
|
||||
fontSize: '13px',
|
||||
cursor: 'pointer',
|
||||
color: '#2d8cf0',
|
||||
color: '#8bcf70',
|
||||
},
|
||||
on: {
|
||||
'on-ok': () => {
|
||||
|
@ -90,7 +90,7 @@ export default {
|
||||
style: {
|
||||
fontSize: '13px',
|
||||
cursor: 'pointer',
|
||||
color: '#2d8cf0',
|
||||
color: '#8bcf70',
|
||||
},
|
||||
on: {
|
||||
'on-ok': () => {
|
||||
|
@ -71,10 +71,12 @@ export default {
|
||||
submitForm() {
|
||||
this.$refs.formDatum.validate((valid) => {
|
||||
if (valid) {
|
||||
let data = $A.cloneJSON(this.formDatum);
|
||||
if ($A.runNum(data.userimg) == 0) data.userimg = "";
|
||||
this.loadIng++;
|
||||
this.$store.dispatch("call", {
|
||||
url: 'users/editdata',
|
||||
data: this.formDatum,
|
||||
data,
|
||||
}).then(() => {
|
||||
$A.messageSuccess('修改成功');
|
||||
this.loadIng--;
|
||||
|
@ -57,7 +57,7 @@ export default {
|
||||
'name': '',
|
||||
'priority': 1,
|
||||
'days': 1,
|
||||
'color': '#2D8CF0',
|
||||
'color': '#8bcf70',
|
||||
}
|
||||
}
|
||||
},
|
||||
|
1
resources/assets/sass/app.scss
vendored
@ -1,3 +1,4 @@
|
||||
@import "var";
|
||||
@import "element";
|
||||
@import "iconfont";
|
||||
@import "loading";
|
||||
|
4
resources/assets/sass/components/circle.scss
vendored
@ -4,10 +4,10 @@
|
||||
fill: transparent;
|
||||
}
|
||||
.common-circle-g-path-ring {
|
||||
stroke: #87d068;
|
||||
stroke: $primary-color;
|
||||
}
|
||||
.common-circle-g-path-core {
|
||||
fill: #87d068;
|
||||
fill: $primary-color;
|
||||
transform: scale(0.56);
|
||||
transform-origin: 50%;
|
||||
}
|
||||
|
@ -7,7 +7,7 @@
|
||||
position: relative;
|
||||
border-radius: 50%;
|
||||
.avatar-text {
|
||||
background-color: #87d068;
|
||||
background-color: $primary-color;
|
||||
}
|
||||
> em {
|
||||
position: absolute;
|
||||
@ -22,7 +22,7 @@
|
||||
}
|
||||
&.online {
|
||||
> em {
|
||||
background-color: #87d068;
|
||||
background-color: $primary-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
3
resources/assets/sass/element.scss
vendored
@ -2,6 +2,9 @@ $--tooltip-fill: #585E6A;
|
||||
$--tooltip-border-color: #585E6A;
|
||||
$--tooltip-font-size: 14px;
|
||||
|
||||
$--dropdown-menuItem-hover-fill: #f4f5f7;
|
||||
$--dropdown-menuItem-hover-color: #606266;
|
||||
|
||||
@import "~element-ui/packages/theme-chalk/src/common/transition";
|
||||
@import "~element-ui/packages/theme-chalk/src/tooltip";
|
||||
@import "~element-ui/packages/theme-chalk/src/dropdown";
|
||||
|
6
resources/assets/sass/iconfont.scss
vendored
@ -1,8 +1,8 @@
|
||||
@font-face {
|
||||
font-family: 'iconfont'; /* Project id 2583385 */
|
||||
src: url('//at.alicdn.com/t/font_2583385_s933tffef1.woff2?t=1624075007364') format('woff2'),
|
||||
url('//at.alicdn.com/t/font_2583385_s933tffef1.woff?t=1624075007364') format('woff'),
|
||||
url('//at.alicdn.com/t/font_2583385_s933tffef1.ttf?t=1624075007364') format('truetype');
|
||||
src: url('//at.alicdn.com/t/font_2583385_twblip3um0q.woff2?t=1624439217605') format('woff2'),
|
||||
url('//at.alicdn.com/t/font_2583385_twblip3um0q.woff?t=1624439217605') format('woff'),
|
||||
url('//at.alicdn.com/t/font_2583385_twblip3um0q.ttf?t=1624439217605') format('truetype');
|
||||
}
|
||||
|
||||
.iconfont {
|
||||
|
4
resources/assets/sass/pages/common.scss
vendored
@ -199,8 +199,8 @@ body {
|
||||
display: none;
|
||||
}
|
||||
.select-in-type-item-checked {
|
||||
color: #2d8cf0;
|
||||
border: 1px solid #2d8cf0 !important;
|
||||
color: $primary-color;
|
||||
border: 1px solid $primary-color !important;
|
||||
}
|
||||
.select-in-type-item {
|
||||
display: flex;
|
||||
|
@ -167,7 +167,7 @@
|
||||
margin-left: 4px;
|
||||
transform: scale(0.9);
|
||||
font-size: 12px;
|
||||
color: #87d068;
|
||||
color: $primary-color;
|
||||
}
|
||||
.percent {
|
||||
display: none;
|
||||
@ -234,7 +234,7 @@
|
||||
margin: 0 8px 0 0;
|
||||
.dialog-content {
|
||||
color: #ffffff;
|
||||
background-color: #2d8cf0;
|
||||
background-color: $primary-color;
|
||||
border-radius: 6px 6px 0 6px;
|
||||
&.file {
|
||||
background-color: #F4F5F7;
|
||||
|
@ -18,7 +18,7 @@
|
||||
font-weight: 600;
|
||||
> span {
|
||||
padding-left: 6px;
|
||||
color: #2d8cf0;
|
||||
color: $primary-color;
|
||||
}
|
||||
}
|
||||
.member-view-all {
|
||||
|
@ -71,7 +71,7 @@
|
||||
}
|
||||
&.active {
|
||||
color: #ffffff;
|
||||
background-color: #2d8cf0;
|
||||
background-color: $primary-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -116,9 +116,9 @@
|
||||
width: 50%;
|
||||
height: 100%;
|
||||
z-index: 0;
|
||||
color: #2d8cf0;
|
||||
color: $primary-color;
|
||||
border-radius: 6px;
|
||||
border: 1px solid #2d8cf0;
|
||||
border: 1px solid $primary-color;
|
||||
background-color: #e6f7ff;
|
||||
transition: left 0.2s;
|
||||
}
|
||||
@ -136,7 +136,7 @@
|
||||
font-size: 17px;
|
||||
}
|
||||
&:first-child {
|
||||
color: #2d8cf0;
|
||||
color: $primary-color;
|
||||
}
|
||||
}
|
||||
&.menu {
|
||||
@ -147,7 +147,7 @@
|
||||
color: #515a6e;
|
||||
}
|
||||
> div:last-child {
|
||||
color: #2d8cf0;
|
||||
color: $primary-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -588,7 +588,7 @@
|
||||
color: #cccccc;
|
||||
margin-right: 8px;
|
||||
&.completed {
|
||||
color: #87d068;
|
||||
color: $primary-color;
|
||||
}
|
||||
&.sub-icon {
|
||||
font-size: 16px;
|
||||
@ -752,13 +752,6 @@
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
&:hover {
|
||||
> i {
|
||||
&.ivu-icon {
|
||||
color: #66b1ff;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -28,7 +28,7 @@
|
||||
font-size: 18px;
|
||||
cursor: pointer;
|
||||
&.completed {
|
||||
color: #87d068;
|
||||
color: $primary-color;
|
||||
}
|
||||
}
|
||||
.nav {
|
||||
@ -111,6 +111,9 @@
|
||||
display: flex;
|
||||
cursor: pointer;
|
||||
}
|
||||
.task-priority {
|
||||
padding: 0 7px;
|
||||
}
|
||||
.picker-time {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
@ -163,7 +166,7 @@
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
&:hover {
|
||||
color: #2d8cf0;
|
||||
color: $primary-color;
|
||||
}
|
||||
}
|
||||
.file-size {
|
||||
@ -198,7 +201,7 @@
|
||||
font-size: 16px;
|
||||
color: #cccccc;
|
||||
&.completed {
|
||||
color: #87d068;
|
||||
color: $primary-color;
|
||||
}
|
||||
}
|
||||
&.sub-icon {
|
||||
|
@ -1,6 +1,7 @@
|
||||
.task-priority {
|
||||
font-size: 13px;
|
||||
display: inline-block;
|
||||
padding: 0 6px;
|
||||
padding: 2px 6px;
|
||||
border-radius: 3px;
|
||||
max-width: 100%;
|
||||
overflow: hidden;
|
||||
|
@ -130,7 +130,7 @@
|
||||
margin-left: 8px;
|
||||
transform: scale(0.9);
|
||||
font-size: 12px;
|
||||
color: #87d068;
|
||||
color: $primary-color;
|
||||
}
|
||||
> em {
|
||||
flex-shrink: 0;
|
||||
@ -241,7 +241,7 @@
|
||||
opacity: 0.9;
|
||||
&.active {
|
||||
opacity: 1;
|
||||
color: #2d8cf0;
|
||||
color: $primary-color;
|
||||
}
|
||||
&:hover {
|
||||
opacity: 1;
|
||||
|
2
resources/assets/sass/var.scss
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
$primary-color: #8bcf70;
|
||||
|
@ -1 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1622421950278" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="30122" xmlns:xlink="http://www.w3.org/1999/xlink" width="48" height="48"><defs><style type="text/css"></style></defs><path d="M102.4 102.4m102.4 0l614.4 0q102.4 0 102.4 102.4l0 614.4q0 102.4-102.4 102.4l-614.4 0q-102.4 0-102.4-102.4l0-614.4q0-102.4 102.4-102.4Z" fill="#9ED979" p-id="30123"></path><path d="M512 230.4c-114.090667 0-204.8 89.258667-204.8 201.6a200.746667 200.746667 0 0 0 117.034667 181.418667v48.981333c0 17.28 11.690667 28.8 29.269333 28.8h116.992c17.578667 0 29.269333-11.52 29.269333-28.8v-48.981333a200.746667 200.746667 0 0 0 117.034667-181.418667C716.8 319.658667 626.090667 230.4 512 230.4zM580.266667 732.16h-136.533334c-20.48 0-34.133333 12.288-34.133333 30.72s13.653333 30.72 34.133333 30.72h136.533334c20.48 0 34.133333-12.288 34.133333-30.72s-13.653333-30.72-34.133333-30.72z" fill="#FFFFFF" p-id="30124"></path></svg>
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1624439278143" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3159" xmlns:xlink="http://www.w3.org/1999/xlink"><defs><style type="text/css"></style></defs><path d="M768 938.666667H256c-93.866667 0-170.666667-76.8-170.666667-170.666667V256c0-93.866667 76.8-170.666667 170.666667-170.666667h512c93.866667 0 170.666667 76.8 170.666667 170.666667v512c0 93.866667-76.8 170.666667-170.666667 170.666667z" fill="#8BCF70" p-id="3160"></path><path d="M721.066667 332.8c-29.866667-29.866667-72.533333-55.466667-115.2-68.266667-17.066667-4.266667-42.666667-8.533333-64-8.533333H226.133333v128l89.6 89.6v-128h226.133334c21.333333 0 46.933333 4.266667 64 12.8 17.066667 8.533333 34.133333 21.333333 51.2 34.133333 29.866667 29.866667 46.933333 72.533333 46.933333 115.2s-17.066667 85.333333-46.933333 115.2c-29.866667 29.866667-72.533333 46.933333-115.2 46.933334h-98.133334L354.133333 768h187.733334c140.8 0 256-115.2 256-256 0-72.533333-29.866667-132.266667-76.8-179.2z" fill="#FFFFFF" p-id="3161"></path><path d="M610.133333 384v128l-166.4 166.4L354.133333 768l-128-128v-128l89.6 89.6 38.4 38.4z" fill="#FFDD33" p-id="3162"></path></svg>
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.3 KiB |
BIN
resources/assets/statics/public/favicon.ico
Normal file
After Width: | Height: | Size: 83 KiB |
@ -1,272 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 25.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 200 200" style="enable-background:new 0 0 200 200;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{clip-path:url(#XMLID_4_);fill:url(#SVGID_1_);}
|
||||
.st1{clip-path:url(#XMLID_4_);fill:url(#SVGID_2_);}
|
||||
.st2{clip-path:url(#XMLID_4_);fill:url(#SVGID_3_);}
|
||||
.st3{fill:url(#SVGID_4_);}
|
||||
.st4{fill:none;stroke:url(#SVGID_5_);stroke-width:0.5;stroke-miterlimit:10;}
|
||||
.st5{fill:url(#SVGID_6_);}
|
||||
.st6{opacity:0.35;fill:url(#SVGID_7_);}
|
||||
.st7{opacity:0.35;fill:url(#SVGID_8_);}
|
||||
.st8{opacity:0.35;fill:url(#SVGID_9_);}
|
||||
.st9{filter:url(#Adobe_OpacityMaskFilter);}
|
||||
.st10{fill:url(#SVGID_11_);}
|
||||
.st11{fill:url(#SVGID_12_);}
|
||||
.st12{mask:url(#SVGID_10_);fill:none;stroke:#FFFFFF;stroke-width:0.5;stroke-miterlimit:10;}
|
||||
.st13{fill:url(#SVGID_13_);}
|
||||
.st14{fill:url(#XMLID_5_);}
|
||||
.st15{opacity:0.5;}
|
||||
.st16{fill:#29F8FF;}
|
||||
.st17{fill:url(#SVGID_14_);}
|
||||
.st18{filter:url(#Adobe_OpacityMaskFilter_1_);}
|
||||
.st19{fill:#FFFFFF;}
|
||||
.st20{opacity:0.15;mask:url(#SVGID_15_);}
|
||||
.st21{fill:url(#SVGID_16_);}
|
||||
.st22{fill:none;stroke:url(#SVGID_17_);stroke-width:0.5;stroke-miterlimit:10;}
|
||||
.st23{fill:url(#SVGID_18_);}
|
||||
.st24{opacity:0.35;fill:url(#SVGID_19_);}
|
||||
.st25{opacity:0.35;fill:url(#SVGID_20_);}
|
||||
.st26{opacity:0.35;fill:url(#SVGID_21_);}
|
||||
.st27{filter:url(#Adobe_OpacityMaskFilter_2_);}
|
||||
.st28{fill:url(#SVGID_22_);}
|
||||
.st29{fill:url(#SVGID_23_);}
|
||||
.st30{fill:none;stroke:#FFFFFF;stroke-width:0.5;stroke-miterlimit:10;}
|
||||
</style>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<defs>
|
||||
<path id="XMLID_32_" d="M164.9,138.1h-44.3l-36.8-13.3c-2.8-1-7.3-1-10.1,0l-29.3,10.5l-29.5-5.2v3.1h0c-0.1,0.7,0.5,1.5,1.7,2
|
||||
l78.1,28.3c3.4,1.5,9,1.5,12.4,0l55.9-20.3c1.3-0.6,1.8-1.3,1.7-2h0V138.1z"/>
|
||||
</defs>
|
||||
<linearGradient id="XMLID_3_" gradientUnits="userSpaceOnUse" x1="14.9102" y1="144.3077" x2="164.8985" y2="144.3077">
|
||||
<stop offset="0" style="stop-color:#AFDAFE"/>
|
||||
<stop offset="1" style="stop-color:#6FA7EE"/>
|
||||
</linearGradient>
|
||||
<use xlink:href="#XMLID_32_" style="overflow:visible;fill:url(#XMLID_3_);"/>
|
||||
<clipPath id="XMLID_4_">
|
||||
<use xlink:href="#XMLID_32_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="93.053" y1="162.3988" x2="106.7471" y2="162.3988">
|
||||
<stop offset="0" style="stop-color:#D0EAFE;stop-opacity:0"/>
|
||||
<stop offset="0.5" style="stop-color:#D4ECFE"/>
|
||||
<stop offset="1" style="stop-color:#D1EBFE;stop-opacity:0.1594"/>
|
||||
</linearGradient>
|
||||
<rect x="93.1" y="154.9" class="st0" width="13.7" height="15.1"/>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="-14.1575" y1="141.4092" x2="21.7572" y2="141.4092">
|
||||
<stop offset="0" style="stop-color:#D0EAFE;stop-opacity:0"/>
|
||||
<stop offset="0.5" style="stop-color:#D4ECFE"/>
|
||||
<stop offset="1" style="stop-color:#D1EBFE;stop-opacity:0.1594"/>
|
||||
</linearGradient>
|
||||
<polygon class="st1" points="21.8,144.9 -14.2,152.9 -14.2,137.9 21.8,129.9 "/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="158.0632" y1="140.5732" x2="171.7572" y2="140.5732">
|
||||
<stop offset="0" style="stop-color:#D0EAFE;stop-opacity:0"/>
|
||||
<stop offset="0.5" style="stop-color:#D4ECFE"/>
|
||||
<stop offset="1" style="stop-color:#D1EBFE;stop-opacity:0.1594"/>
|
||||
</linearGradient>
|
||||
<rect x="158.1" y="133" class="st2" width="13.7" height="15.1"/>
|
||||
</g>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="14.9102" y1="134.0674" x2="164.9102" y2="134.0674">
|
||||
<stop offset="0" style="stop-color:#C6E4FF"/>
|
||||
<stop offset="1" style="stop-color:#BADFFE"/>
|
||||
</linearGradient>
|
||||
<path class="st3" d="M94.8,160.3l-78.1-28.3c-2.8-1.2-2.2-3.3,1.1-4.5l55.9-20.2c2.8-1,7.3-1,10.1,0l78.1,28.2
|
||||
c3.4,1.2,3.9,3.2,1.1,4.5l-55.9,20.3C103.8,161.9,98.2,161.9,94.8,160.3z"/>
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="24.2232" y1="133.8459" x2="155.4176" y2="133.8459">
|
||||
<stop offset="0" style="stop-color:#D1EAFE"/>
|
||||
<stop offset="0.8" style="stop-color:#79AFF0"/>
|
||||
<stop offset="1" style="stop-color:#A6D4FC"/>
|
||||
</linearGradient>
|
||||
<path class="st4" d="M96.1,156.7l-69.8-25.2c-2.8-1.2-2.2-3.3,1.1-4.5l44.9-16.4c2.8-1,7.3-1,10.1,0l69.8,25.1
|
||||
c3.4,1.2,3.9,3.2,1.1,4.5l-44.9,16.4C105.1,158.2,99.5,158.2,96.1,156.7z"/>
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="57.3167" y1="140.2066" x2="101.5032" y2="140.2066">
|
||||
<stop offset="0" style="stop-color:#5DCBFF"/>
|
||||
<stop offset="1" style="stop-color:#2E71DD"/>
|
||||
</linearGradient>
|
||||
<path class="st5" d="M101.2,142.3L85,148.2c-0.7,0.2-1.4,0.2-2.1,0L57.6,139c-0.4-0.2-0.4-0.8,0-0.9l16-5.8c0.7-0.2,1.4-0.2,2,0
|
||||
l25.5,9.2C101.6,141.5,101.6,142.2,101.2,142.3z"/>
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="62.145" y1="131.9205" x2="128.7948" y2="131.9205">
|
||||
<stop offset="0" style="stop-color:#5DCBFF"/>
|
||||
<stop offset="1" style="stop-color:#2E71DD"/>
|
||||
</linearGradient>
|
||||
<path class="st6" d="M128.5,142.8l-3.2,1.1c-0.7,0.2-1.4,0.2-2.1,0l-60.7-22c-0.4-0.2-0.4-0.8,0-0.9l3-1.1c0.7-0.2,1.4-0.2,2,0
|
||||
l60.9,22C128.9,142,128.9,142.6,128.5,142.8z"/>
|
||||
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="68.7646" y1="129.2352" x2="135.4144" y2="129.2352">
|
||||
<stop offset="0" style="stop-color:#5DCBFF"/>
|
||||
<stop offset="1" style="stop-color:#2E71DD"/>
|
||||
</linearGradient>
|
||||
<path class="st7" d="M135.1,140.1l-3.2,1.1c-0.7,0.2-1.4,0.2-2.1,0l-60.7-22c-0.4-0.2-0.4-0.8,0-0.9l3-1.1c0.7-0.2,1.4-0.2,2,0
|
||||
l60.9,22C135.5,139.3,135.5,140,135.1,140.1z"/>
|
||||
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="75.5008" y1="126.4636" x2="142.1506" y2="126.4636">
|
||||
<stop offset="0" style="stop-color:#5DCBFF"/>
|
||||
<stop offset="1" style="stop-color:#2E71DD"/>
|
||||
</linearGradient>
|
||||
<path class="st8" d="M141.8,137.3l-3.2,1.1c-0.7,0.2-1.4,0.2-2.1,0l-60.7-22c-0.4-0.2-0.4-0.8,0-0.9l3-1.1c0.7-0.2,1.4-0.2,2,0
|
||||
l60.9,22C142.3,136.6,142.3,137.2,141.8,137.3z"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="Adobe_OpacityMaskFilter" filterUnits="userSpaceOnUse" x="14.7" y="127.4" width="150.5" height="34.4">
|
||||
<feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<mask maskUnits="userSpaceOnUse" x="14.7" y="127.4" width="150.5" height="34.4" id="SVGID_10_">
|
||||
<g class="st9">
|
||||
<g>
|
||||
<linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="80.0301" y1="156.6353" x2="151.3122" y2="129.7749">
|
||||
<stop offset="0" style="stop-color:#000000"/>
|
||||
<stop offset="0.5" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="1" style="stop-color:#000000"/>
|
||||
</linearGradient>
|
||||
<path class="st10" d="M165,73.6H85.5c-3.3,0-6,2.7-6,6v120c0,3.3,2.7,6,6,6H165c3.3,0,6-2.7,6-6v-120
|
||||
C171,76.3,168.3,73.6,165,73.6z"/>
|
||||
</g>
|
||||
<linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="6.1584" y1="160.6456" x2="72.1352" y2="186.1912">
|
||||
<stop offset="0" style="stop-color:#000000"/>
|
||||
<stop offset="0.5" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="1" style="stop-color:#000000"/>
|
||||
</linearGradient>
|
||||
<path class="st11" d="M72.4,239.8h-70c-2.9,0-5.2-2.3-5.2-5.2V110.8c0-2.9,2.3-5.2,5.2-5.2h70c2.9,0,5.2,2.3,5.2,5.2v123.8
|
||||
C77.6,237.5,75.2,239.8,72.4,239.8z"/>
|
||||
</g>
|
||||
</mask>
|
||||
<path class="st12" d="M162,135.6c3.4,1.2,3.9,3.2,1.1,4.5l-55.9,20.3c-3.4,1.5-9,1.5-12.4,0l-78.1-28.3c-2.8-1.2-2.2-3.3,1.1-4.5"
|
||||
/>
|
||||
</g>
|
||||
<g>
|
||||
<linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="85.5209" y1="49.8476" x2="185.5386" y2="107.5928">
|
||||
<stop offset="0.6" style="stop-color:#AFDAFE"/>
|
||||
<stop offset="1" style="stop-color:#6FA7EE"/>
|
||||
</linearGradient>
|
||||
<path class="st13" d="M184,67.3C184,67.3,184,67.2,184,67.3c0-0.1,0-0.1,0-0.2c0,0,0-0.1,0-0.1c0,0,0,0,0-0.1c0,0,0,0,0,0
|
||||
c0,0,0,0,0-0.1c0-0.1,0-0.2,0-0.2c0,0,0,0,0,0c-0.1-0.2-0.1-0.4-0.2-0.5c0,0,0,0,0-0.1c0,0,0-0.1-0.1-0.1c0,0,0,0,0-0.1
|
||||
c0,0,0,0,0,0c0,0-0.1-0.1-0.1-0.1c0,0-0.1-0.1-0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1-0.1-0.1-0.1c0,0-0.1,0-0.1-0.1
|
||||
c0,0-0.1,0-0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0c0,0-0.1,0-0.1,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0L97.4,34.1
|
||||
c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0c0,0-0.1,0-0.1,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0c0,0-0.1,0-0.1,0
|
||||
c0,0-0.1,0-0.1,0c0,0,0,0,0,0l-2.2,0.3c0.1,0,0.2,0,0.3,0c0,0,0,0,0,0c0.1,0,0.2,0,0.3,0.1l85.4,31.1c0.1,0,0.2,0.1,0.3,0.2
|
||||
c0,0,0,0,0,0c0.1,0.1,0.2,0.1,0.3,0.2c0,0,0,0,0,0c0.1,0.1,0.2,0.2,0.2,0.3c0,0,0,0,0,0.1c0,0,0.1,0.1,0.1,0.2
|
||||
c0.1,0.2,0.2,0.3,0.2,0.5c0,0.1,0.1,0.2,0.1,0.3c0,0,0,0,0,0c0,0.1,0,0.2,0,0.4c0,0,0,0,0,0c0,0.1,0,0.3,0,0.4l-14.6,67.7
|
||||
c0,0.2-0.1,0.4-0.2,0.5c0,0,0,0,0,0c-0.1,0.2-0.2,0.3-0.3,0.4c0,0,0,0,0,0c-0.1,0.1-0.2,0.1-0.3,0.2c0,0-0.1,0.1-0.1,0.1
|
||||
c-0.1,0.1-0.3,0.1-0.4,0.1l2.2-0.3c0.2,0,0.3-0.1,0.4-0.1c0,0,0.1-0.1,0.1-0.1c0.1-0.1,0.2-0.1,0.2-0.2c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0.1-0.1,0.1-0.1c0,0,0.1-0.1,0.1-0.1c0,0,0-0.1,0.1-0.1c0,0,0-0.1,0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0-0.1
|
||||
c0,0,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0,0,0-0.1,0-0.1L184,67.7c0,0,0,0,0,0c0,0,0-0.1,0-0.1
|
||||
c0,0,0-0.1,0-0.1C184,67.4,184,67.4,184,67.3C184,67.3,184,67.3,184,67.3C184,67.3,184,67.3,184,67.3z"/>
|
||||
<linearGradient id="XMLID_5_" gradientUnits="userSpaceOnUse" x1="94.9596" y1="50.4887" x2="153.506" y2="109.0351">
|
||||
<stop offset="0" style="stop-color:#5DCBFF"/>
|
||||
<stop offset="1" style="stop-color:#2E71DD"/>
|
||||
</linearGradient>
|
||||
<path id="XMLID_33_" class="st14" d="M180.5,65.5c0.9,0.3,1.4,1.4,1.2,2.5l-14.6,67.7c-0.2,1-1.1,1.6-2,1.3l-85.4-31.1
|
||||
c-0.9-0.3-1.4-1.4-1.2-2.5l14.6-67.7c0.2-1,1.1-1.6,2-1.3L180.5,65.5z"/>
|
||||
</g>
|
||||
<g class="st15">
|
||||
<path class="st16" d="M106.1,84.1v0.2c0.1,0,0.3,0,0.4,0.1l42.1,15.5c0.8,0.3,1.2,1.3,1,2.2l-0.7,3.1c-0.2,0.7-0.7,1.2-1.3,1.2
|
||||
c-0.1,0-0.3,0-0.4-0.1l-42.1-15.5c-0.8-0.3-1.2-1.3-1-2.2l0.7-3.1c0.2-0.7,0.7-1.2,1.3-1.2V84.1 M106.1,84.1
|
||||
c-0.7,0-1.3,0.6-1.5,1.4l-0.7,3c-0.2,1,0.3,2.2,1.2,2.5l42.1,15.5c0.2,0.1,0.3,0.1,0.5,0.1c0.7,0,1.3-0.6,1.5-1.4l0.7-3
|
||||
c0.2-1-0.3-2.2-1.2-2.5l-42.1-15.5C106.4,84.1,106.3,84.1,106.1,84.1L106.1,84.1z"/>
|
||||
</g>
|
||||
<g>
|
||||
<linearGradient id="SVGID_14_" gradientUnits="userSpaceOnUse" x1="86.4296" y1="41.9587" x2="173.8715" y2="129.4005">
|
||||
<stop offset="0" style="stop-color:#B3D6F2"/>
|
||||
<stop offset="0.5" style="stop-color:#2E71DD"/>
|
||||
<stop offset="1" style="stop-color:#55BDFA"/>
|
||||
</linearGradient>
|
||||
<path class="st17" d="M94.7,34.8L94.7,34.8c0.1,0,0.2,0,0.3,0.1l85.4,31.1c0.7,0.2,1.1,1.1,0.9,1.9l-14.6,67.7c-0.1,0.6-0.6,1-1,1
|
||||
c-0.1,0-0.2,0-0.3-0.1l-85.4-31.1c-0.7-0.2-1.1-1.1-0.9-1.9l14.6-67.7C93.7,35.2,94.2,34.8,94.7,34.8 M94.7,34.3
|
||||
c-0.7,0-1.3,0.6-1.5,1.4l-14.6,67.7c-0.2,1,0.3,2.2,1.2,2.5l85.4,31.1c0.2,0.1,0.3,0.1,0.5,0.1c0.7,0,1.3-0.6,1.5-1.4L181.7,68
|
||||
c0.2-1-0.3-2.2-1.2-2.5L95.2,34.4C95,34.3,94.8,34.3,94.7,34.3L94.7,34.3z"/>
|
||||
</g>
|
||||
<g class="st15">
|
||||
<path class="st16" d="M133.7,66.6c4.9,1.8,7.9,8,6.6,13.8l0,0c-1.2,5.8-6.3,9.1-11.2,7.3l-0.2-0.1c-4.9-1.8-7.9-8-6.6-13.8l0,0
|
||||
c1.2-5.8,6.3-9.1,11.2-7.3L133.7,66.6z"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="Adobe_OpacityMaskFilter_1_" filterUnits="userSpaceOnUse" x="76.3" y="84.1" width="150.5" height="55.1">
|
||||
<feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<mask maskUnits="userSpaceOnUse" x="76.3" y="84.1" width="150.5" height="55.1" id="SVGID_15_">
|
||||
<g class="st18">
|
||||
<path id="XMLID_2_" class="st19" d="M180.5,65.5c0.9,0.3,1.4,1.4,1.2,2.5l-14.6,67.7c-0.2,1-1.1,1.6-2,1.3l-85.4-31.1
|
||||
c-0.9-0.3-1.4-1.4-1.2-2.5l14.6-67.7c0.2-1,1.1-1.6,2-1.3L180.5,65.5z"/>
|
||||
</g>
|
||||
</mask>
|
||||
<g class="st20">
|
||||
<g>
|
||||
|
||||
<linearGradient id="SVGID_16_" gradientUnits="userSpaceOnUse" x1="207.9925" y1="1256.333" x2="357.9925" y2="1256.333" gradientTransform="matrix(-1 0 0 -1 434.5104 1368.1125)">
|
||||
<stop offset="0" style="stop-color:#C6E4FF"/>
|
||||
<stop offset="1" style="stop-color:#BADFFE"/>
|
||||
</linearGradient>
|
||||
<path class="st21" d="M146.6,85.5l78.1,28.3c2.8,1.2,2.2,3.3-1.1,4.5l-55.9,20.2c-2.8,1-7.3,1-10.1,0l-78.1-28.2
|
||||
c-3.4-1.2-3.9-3.2-1.1-4.5l55.9-20.3C137.6,84,143.2,84,146.6,85.5z"/>
|
||||
|
||||
<linearGradient id="SVGID_17_" gradientUnits="userSpaceOnUse" x1="219.3055" y1="1256.1116" x2="350.4999" y2="1256.1116" gradientTransform="matrix(-1 0 0 -1 434.5104 1368.1125)">
|
||||
<stop offset="0" style="stop-color:#D1EAFE"/>
|
||||
<stop offset="0.8" style="stop-color:#79AFF0"/>
|
||||
<stop offset="1" style="stop-color:#A6D4FC"/>
|
||||
</linearGradient>
|
||||
<path class="st22" d="M143.4,89.2l69.8,25.2c2.8,1.2,2.2,3.3-1.1,4.5l-44.9,16.4c-2.8,1-7.3,1-10.1,0l-69.8-25.1
|
||||
c-3.4-1.2-3.9-3.2-1.1-4.5l44.9-16.4C134.3,87.6,140,87.6,143.4,89.2z"/>
|
||||
|
||||
<linearGradient id="SVGID_18_" gradientUnits="userSpaceOnUse" x1="256.399" y1="1263.4722" x2="300.5855" y2="1263.4722" gradientTransform="matrix(-1 0 0 -1 434.5104 1368.1125)">
|
||||
<stop offset="0" style="stop-color:#5DCBFF"/>
|
||||
<stop offset="1" style="stop-color:#2E71DD"/>
|
||||
</linearGradient>
|
||||
<path class="st23" d="M134.3,102.5l16.1-5.9c0.7-0.2,1.4-0.2,2.1,0l25.3,9.2c0.4,0.2,0.4,0.8,0,0.9l-16,5.8c-0.7,0.2-1.4,0.2-2,0
|
||||
l-25.5-9.2C133.8,103.3,133.8,102.7,134.3,102.5z"/>
|
||||
|
||||
<linearGradient id="SVGID_19_" gradientUnits="userSpaceOnUse" x1="261.2272" y1="1255.1862" x2="327.877" y2="1255.1862" gradientTransform="matrix(-1 0 0 -1 434.5104 1368.1125)">
|
||||
<stop offset="0" style="stop-color:#5DCBFF"/>
|
||||
<stop offset="1" style="stop-color:#2E71DD"/>
|
||||
</linearGradient>
|
||||
<path class="st24" d="M107,102l3.2-1.1c0.7-0.2,1.4-0.2,2.1,0l60.7,22c0.4,0.2,0.4,0.8,0,0.9l-3,1.1c-0.7,0.2-1.4,0.2-2,0
|
||||
L107,103C106.5,102.8,106.5,102.2,107,102z"/>
|
||||
|
||||
<linearGradient id="SVGID_20_" gradientUnits="userSpaceOnUse" x1="267.8468" y1="1252.5009" x2="334.4966" y2="1252.5009" gradientTransform="matrix(-1 0 0 -1 434.5104 1368.1125)">
|
||||
<stop offset="0" style="stop-color:#5DCBFF"/>
|
||||
<stop offset="1" style="stop-color:#2E71DD"/>
|
||||
</linearGradient>
|
||||
<path class="st25" d="M100.3,104.7l3.2-1.1c0.7-0.2,1.4-0.2,2.1,0l60.7,22c0.4,0.2,0.4,0.8,0,0.9l-3,1.1c-0.7,0.2-1.4,0.2-2,0
|
||||
l-60.9-22C99.9,105.5,99.9,104.9,100.3,104.7z"/>
|
||||
|
||||
<linearGradient id="SVGID_21_" gradientUnits="userSpaceOnUse" x1="274.583" y1="1249.7292" x2="341.2328" y2="1249.7292" gradientTransform="matrix(-1 0 0 -1 434.5104 1368.1125)">
|
||||
<stop offset="0" style="stop-color:#5DCBFF"/>
|
||||
<stop offset="1" style="stop-color:#2E71DD"/>
|
||||
</linearGradient>
|
||||
<path class="st26" d="M93.6,107.5l3.2-1.1c0.7-0.2,1.4-0.2,2.1,0l60.7,22c0.4,0.2,0.4,0.8,0,0.9l-3,1.1c-0.7,0.2-1.4,0.2-2,0
|
||||
l-60.9-22C93.2,108.3,93.2,107.7,93.6,107.5z"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="Adobe_OpacityMaskFilter_2_" filterUnits="userSpaceOnUse" x="76.3" y="84.1" width="150.5" height="34.4">
|
||||
<feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<mask maskUnits="userSpaceOnUse" x="76.3" y="84.1" width="150.5" height="34.4" id="SVGID_15_">
|
||||
<g class="st27">
|
||||
<g>
|
||||
|
||||
<linearGradient id="SVGID_22_" gradientUnits="userSpaceOnUse" x1="273.1124" y1="1278.9009" x2="344.3944" y2="1252.0405" gradientTransform="matrix(-1 0 0 -1 434.5104 1368.1125)">
|
||||
<stop offset="0" style="stop-color:#000000"/>
|
||||
<stop offset="0.5" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="1" style="stop-color:#000000"/>
|
||||
</linearGradient>
|
||||
<path class="st28" d="M76.4,172.3h79.5c3.3,0,6-2.7,6-6v-120c0-3.3-2.7-6-6-6H76.4c-3.3,0-6,2.7-6,6v120
|
||||
C70.4,169.6,73.1,172.3,76.4,172.3z"/>
|
||||
</g>
|
||||
|
||||
<linearGradient id="SVGID_23_" gradientUnits="userSpaceOnUse" x1="199.2407" y1="1282.9111" x2="265.2174" y2="1308.4568" gradientTransform="matrix(-1 0 0 -1 434.5104 1368.1125)">
|
||||
<stop offset="0" style="stop-color:#000000"/>
|
||||
<stop offset="0.5" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="1" style="stop-color:#000000"/>
|
||||
</linearGradient>
|
||||
<path class="st29" d="M169.1,6h70c2.9,0,5.2,2.3,5.2,5.2V135c0,2.9-2.3,5.2-5.2,5.2h-70c-2.9,0-5.2-2.3-5.2-5.2V11.2
|
||||
C163.8,8.4,166.2,6,169.1,6z"/>
|
||||
</g>
|
||||
</mask>
|
||||
<path class="st30" d="M79.4,110.2c-3.4-1.2-3.9-3.2-1.1-4.5l55.9-20.3c3.4-1.5,9-1.5,12.4,0l78.1,28.3c2.8,1.2,2.2,3.3-1.1,4.5"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 16 KiB |
@ -1,39 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 25.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="图层_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{opacity:0.1;fill:#1F8EEC;}
|
||||
.st1{fill:#FFFFFF;stroke:#1F8EEC;stroke-width:32;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||
.st2{opacity:0.5;fill:none;stroke:#1F8EEC;stroke-width:32;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.5;fill:#FFFFFF;stroke:#1F8EEC;stroke-width:32;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||
.st4{fill:none;stroke:#1F8EEC;stroke-width:32;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||
</style>
|
||||
<circle class="st0" cx="512" cy="512" r="448"/>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st1" d="M801.36,400H158.64c-16.85,0-30.64-13.79-30.64-30.64V238.64c0-16.85,13.79-30.64,30.64-30.64h642.72
|
||||
c16.85,0,30.64,13.79,30.64,30.64v130.72C832,386.21,818.21,400,801.36,400z"/>
|
||||
<line class="st2" x1="240" y1="304" x2="464" y2="304"/>
|
||||
<line class="st2" x1="560" y1="304" x2="592" y2="304"/>
|
||||
<line class="st2" x1="656" y1="304" x2="688" y2="304"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st1" d="M801.36,592H158.64c-16.85,0-30.64-13.79-30.64-30.64V430.64c0-16.85,13.79-30.64,30.64-30.64h642.72
|
||||
c16.85,0,30.64,13.79,30.64,30.64v130.72C832,578.21,818.21,592,801.36,592z"/>
|
||||
<line class="st2" x1="240" y1="496" x2="464" y2="496"/>
|
||||
<line class="st2" x1="560" y1="496" x2="592" y2="496"/>
|
||||
<line class="st2" x1="656" y1="496" x2="688" y2="496"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st1" d="M801.36,784H158.64c-16.85,0-30.64-13.79-30.64-30.64V622.64c0-16.85,13.79-30.64,30.64-30.64h642.72
|
||||
c16.85,0,30.64,13.79,30.64,30.64v130.72C832,770.21,818.21,784,801.36,784z"/>
|
||||
<line class="st3" x1="240" y1="688" x2="464" y2="688"/>
|
||||
<line class="st3" x1="560" y1="688" x2="592" y2="688"/>
|
||||
<line class="st3" x1="656" y1="688" x2="688" y2="688"/>
|
||||
</g>
|
||||
<circle class="st1" cx="736" cy="688" r="160"/>
|
||||
<line class="st4" x1="816" y1="688" x2="656" y2="688"/>
|
||||
<line class="st4" x1="736" y1="768" x2="736" y2="608"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 2.2 KiB |
@ -1,27 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 25.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="图层_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{opacity:0.1;fill:#1F8EEC;}
|
||||
.st1{fill:#FFFFFF;stroke:#1F8EEC;stroke-width:32;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||
.st2{opacity:0.5;fill:none;stroke:#1F8EEC;stroke-width:32;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.5;}
|
||||
.st4{fill:none;stroke:#1F8EEC;stroke-width:32;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||
</style>
|
||||
<circle class="st0" cx="512" cy="512" r="448"/>
|
||||
<g>
|
||||
<path class="st1" d="M904,800H120c-13.2,0-24-10.8-24-24V248c0-13.2,10.8-24,24-24h784c13.2,0,24,10.8,24,24v528
|
||||
C928,789.2,917.2,800,904,800z"/>
|
||||
<line class="st2" x1="223.47" y1="672" x2="800.53" y2="672"/>
|
||||
<g class="st3">
|
||||
<circle class="st4" cx="384" cy="532" r="12"/>
|
||||
<line class="st4" x1="384" y1="532" x2="451.88" y2="464.12"/>
|
||||
<path class="st4" d="M227.25,544.25c-2.13-10.42-3.25-21.2-3.25-32.25c0-88.37,71.63-160,160-160s160,71.63,160,160
|
||||
c0,11.05-1.12,21.83-3.25,32.25"/>
|
||||
</g>
|
||||
<line class="st2" x1="640" y1="352" x2="736.53" y2="352"/>
|
||||
<line class="st2" x1="640" y1="448" x2="800.53" y2="448"/>
|
||||
<line class="st2" x1="640" y1="544" x2="768" y2="544"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.5 KiB |
@ -1,107 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 25.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="图层_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{opacity:0.1;fill:#1F8EEC;}
|
||||
.st1{fill:#FFFFFF;stroke:#1F8EEC;stroke-width:32;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||
.st2{opacity:0.5;fill:none;stroke:#1F8EEC;stroke-width:16;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||
.st3{fill:#1F8EEC;}
|
||||
</style>
|
||||
<circle class="st0" cx="512" cy="512" r="448"/>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st1" d="M800,688H224V264c0-13.2,10.8-24,24-24h528c13.2,0,24,10.8,24,24V688z"/>
|
||||
<path class="st1" d="M832,784H192c-35.2,0-64-28.8-64-64v-32h768v32C896,755.2,867.2,784,832,784z"/>
|
||||
<path class="st2" d="M736,624H288V337.78c0-18.58,15.2-33.78,33.78-33.78h380.44c18.58,0,33.78,15.2,33.78,33.78V624z"/>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st3" d="M401.74,515.64c0-1.04,0.04-2.6,0.13-4.67c0.08-2.08,0.13-3.63,0.13-4.66c0-0.21-0.13-0.32-0.39-0.32
|
||||
c-0.27,0-0.67,0.01-1.2,0.04c-0.53,0.03-0.93,0.04-1.19,0.04c-0.27,0-0.67-0.01-1.2-0.04c-0.53-0.02-0.93-0.04-1.19-0.04
|
||||
c-0.22,0-0.34,0.14-0.34,0.42c0,0.65,0.03,1.63,0.09,2.93c0.06,1.3,0.09,2.27,0.09,2.92c0,0.31-0.11,0.5-0.32,0.55
|
||||
c-0.3,0.07-1.41,0.11-3.33,0.11c-2.06,0-3.2-0.04-3.44-0.11c-0.17-0.06-0.26-0.24-0.26-0.55c0-0.67,0.05-1.68,0.15-3.01
|
||||
c0.1-1.34,0.15-2.34,0.15-3.02c0-0.16-0.08-0.24-0.23-0.24c-0.29,0-0.72,0.01-1.3,0.04c-0.58,0.03-1.01,0.04-1.29,0.04
|
||||
c-0.28,0-0.7-0.01-1.26-0.04c-0.56-0.02-0.98-0.04-1.26-0.04c-0.19,0-0.28,0.1-0.28,0.29c0,1.04,0.04,2.6,0.13,4.68
|
||||
c0.09,2.08,0.13,3.64,0.13,4.68c0,0.98-0.05,2.44-0.14,4.39c-0.09,1.95-0.14,3.41-0.14,4.38c0,0.23,0.13,0.37,0.39,0.42
|
||||
c0.33,0.05,1.1,0.08,2.31,0.08c1.4,0,2.24-0.03,2.52-0.08c0.24-0.05,0.36-0.2,0.36-0.47c0-0.7-0.02-1.75-0.07-3.14
|
||||
c-0.04-1.39-0.07-2.43-0.07-3.13c0-0.36,0.1-0.56,0.3-0.61c0.31-0.07,1.4-0.1,3.28-0.1c1.86,0,2.94,0.03,3.25,0.1
|
||||
c0.2,0.06,0.3,0.26,0.3,0.61c0,0.71-0.03,1.77-0.1,3.19c-0.07,1.42-0.1,2.48-0.1,3.19c0,0.19,0.12,0.31,0.37,0.36
|
||||
c0.25,0.05,1.07,0.08,2.48,0.08c0.99,0,1.76-0.03,2.31-0.08c0.22-0.02,0.34-0.04,0.38-0.07c0.08-0.05,0.12-0.16,0.12-0.35
|
||||
c0-0.97-0.05-2.42-0.14-4.38C401.78,518.08,401.74,516.62,401.74,515.64z"/>
|
||||
<path class="st3" d="M431.7,506.28c0-0.2-0.13-0.29-0.39-0.29c-0.28,0-0.69,0.01-1.23,0.04c-0.54,0.03-0.95,0.04-1.23,0.04
|
||||
s-0.7-0.01-1.26-0.04c-0.56-0.02-0.98-0.04-1.25-0.04c-0.21,0-0.31,0.1-0.31,0.29c0,0.96,0.03,2.4,0.09,4.31
|
||||
c0.06,1.92,0.09,3.35,0.09,4.31c0,1.14-0.08,3.52-0.24,7.14c-0.08,1.72-0.12,2.51-0.12,2.36c0,0.22,0.13,0.36,0.39,0.42
|
||||
c0.36,0.07,1.19,0.11,2.5,0.11c0.97,0,1.75-0.04,2.33-0.11c0.22-0.03,0.33-0.05,0.35-0.05c0.08-0.05,0.12-0.16,0.12-0.34
|
||||
c0-1.06-0.03-2.64-0.08-4.77c-0.05-2.12-0.08-3.71-0.08-4.76c0-0.96,0.05-2.4,0.15-4.31
|
||||
C431.65,508.68,431.7,507.24,431.7,506.28z"/>
|
||||
<path class="st3" d="M468.48,508.14c0-0.2,0.01-0.53,0.03-1.01c0.02-0.43,0.03-0.77,0.03-1.01c-0.01-0.15-0.03-0.24-0.05-0.26
|
||||
c-0.03-0.02-0.13-0.03-0.31-0.03c-0.01,0-0.6,0.05-1.76,0.13c-2.17,0.17-3.65,0.26-4.46,0.26c-2.84,0-4.98-0.09-6.43-0.28
|
||||
c-0.11-0.01-0.17-0.01-0.19-0.01c-0.15,0-0.26,0.34-0.32,1.01c-0.04,0.42-0.07,0.84-0.09,1.26c-0.02,0.14-0.1,0.52-0.24,1.14
|
||||
c-0.13,0.57-0.19,0.92-0.19,1.03c0,0.09,0.07,0.14,0.22,0.14c1.07,0,2.49-0.09,4.28-0.27c0.07,2.42,0.11,3.97,0.11,4.67
|
||||
c0,1.06-0.04,2.64-0.13,4.75c-0.09,2.11-0.13,3.7-0.13,4.75c0,0.23,0.13,0.37,0.38,0.42c0.47,0.07,1.28,0.11,2.43,0.11
|
||||
c1.04,0,1.83-0.04,2.36-0.11c0.22-0.03,0.35-0.05,0.38-0.07c0.08-0.05,0.12-0.15,0.12-0.32c0-1.06-0.04-2.64-0.13-4.77
|
||||
c-0.08-2.12-0.13-3.71-0.13-4.76c0-0.9,0.03-2.48,0.08-4.74c2.35,0.13,3.7,0.2,4.04,0.2c0.2,0,0.3-0.09,0.3-0.27
|
||||
c0-0.21-0.03-0.54-0.09-0.97C468.51,508.69,468.48,508.36,468.48,508.14z"/>
|
||||
<path class="st3" d="M500.62,505.49c-2.77,0-5.06,0.97-6.89,2.91c-1.79,1.9-2.68,4.24-2.68,7.02c0,2.77,0.9,5.11,2.68,7
|
||||
c1.83,1.93,4.12,2.9,6.89,2.9c2.78,0,5.08-0.96,6.9-2.87c1.78-1.89,2.67-4.23,2.67-7.02c0-2.76-0.9-5.11-2.7-7.02
|
||||
C505.65,506.46,503.36,505.49,500.62,505.49z M503.84,518.77c-0.89,1.01-1.96,1.52-3.22,1.52c-1.35,0-2.45-0.48-3.29-1.44
|
||||
c-0.8-0.91-1.19-2.05-1.19-3.42c0-1.28,0.43-2.41,1.28-3.4c0.88-1.02,1.95-1.53,3.21-1.53c1.32,0,2.41,0.49,3.26,1.48
|
||||
c0.81,0.94,1.22,2.08,1.22,3.42C505.1,516.68,504.68,517.8,503.84,518.77z"/>
|
||||
<path class="st3" d="M540.05,513.45c-0.65-0.8-0.97-1.47-0.97-2.01c0-0.61,0.29-1.08,0.87-1.42c0.48-0.29,1.05-0.44,1.69-0.44
|
||||
c0.09,0,0.22,0.01,0.39,0.04c0.17,0.03,0.29,0.04,0.36,0.04c0.16,0,0.24-0.08,0.24-0.23c0-0.04-0.01-0.08-0.04-0.14
|
||||
c-0.85-1.71-1.39-2.89-1.62-3.54c-0.08-0.22-0.19-0.32-0.32-0.32c-0.05,0-0.13,0-0.23,0.01c-1.8,0.27-3.32,0.85-4.55,1.75
|
||||
c-1.51,1.08-2.27,2.44-2.27,4.08c0,1.13,0.31,2.16,0.93,3.09c0.09,0.14,0.66,0.81,1.72,2.03c0.61,0.72,0.91,1.36,0.91,1.95
|
||||
c0,0.91-0.47,1.6-1.4,2.07c-0.42,0.21-1.28,0.46-2.58,0.75c-0.13,0.03-0.2,0.09-0.2,0.19c0,0.28,0.35,1.05,1.06,2.3
|
||||
c0.71,1.26,1.16,1.89,1.37,1.89c0.05,0,0.1-0.01,0.17-0.01c1.92-0.31,3.56-1.04,4.9-2.19c1.53-1.3,2.3-2.85,2.3-4.67
|
||||
c0-0.97-0.32-1.96-0.95-2.94C541.79,515.64,541.19,514.88,540.05,513.45z"/>
|
||||
<path class="st3" d="M579.92,520.17c-0.47,0-1.17,0.04-2.1,0.13c-0.94,0.08-1.64,0.13-2.11,0.13c-1.33,0-1.98,0-1.96,0
|
||||
c-0.99-0.06-1.57-0.26-1.72-0.61c-0.09-0.2-0.13-0.63-0.13-1.32c0-0.51,0-0.79,0.01-0.83c0.06-0.18,0.28-0.27,0.65-0.27h1.42
|
||||
c1.82,0,2.98,0.03,3.49,0.08l1.21,0.14c0.26,0,0.39-0.09,0.39-0.27c0-0.72,0.03-1.43,0.11-2.15c0.16-1.56,0.24-2.24,0.24-2.05
|
||||
c0-0.21-0.11-0.31-0.32-0.31c-0.18,0-0.42,0.02-0.72,0.06c-0.4,0.04-0.64,0.06-0.74,0.07c-1.15,0.06-2.29,0.09-3.42,0.09
|
||||
c-0.17,0-0.38,0.01-0.65,0.02c-0.26,0.01-0.43,0.02-0.52,0.02c-0.43,0-0.72-0.08-0.87-0.26c-0.18-0.2-0.27-0.6-0.27-1.21
|
||||
c0-0.58,0.02-0.93,0.07-1.04c0.11-0.22,0.4-0.33,0.87-0.33c1.9,0,4.04,0.1,6.42,0.29c0.13,0.01,0.23,0.01,0.28,0.01
|
||||
c0.18,0,0.27-0.09,0.27-0.28c0-0.22-0.05-0.86-0.14-1.9c-0.09-1.04-0.16-1.67-0.21-1.87c-0.07-0.35-0.34-0.52-0.8-0.52
|
||||
c-0.65,0-1.64,0.02-2.95,0.05c-1.32,0.04-2.3,0.06-2.95,0.06c-0.66,0-1.66-0.02-2.99-0.06c-1.33-0.03-2.32-0.05-2.99-0.05
|
||||
c-0.24,0-0.35,0.1-0.34,0.31l0.01,0.19c0.07,1.42,0.12,2.49,0.15,3.21c0.11,2.78,0.16,4.69,0.16,5.71c0,1-0.06,2.51-0.17,4.52
|
||||
c-0.11,2.01-0.17,3.52-0.17,4.52c0,0.26,0.15,0.39,0.44,0.39c0.68,0,1.7,0,3.06,0.01c1.36,0.01,2.39,0.01,3.07,0.01
|
||||
c3.16,0,5.07,0.04,5.72,0.13c0.19,0.03,0.32,0.04,0.4,0.04c0.19,0,0.34-0.09,0.44-0.26c0.12-0.22,0.27-0.88,0.43-2
|
||||
c0.15-1.03,0.23-1.74,0.23-2.12C580.22,520.33,580.12,520.17,579.92,520.17z"/>
|
||||
<path class="st3" d="M617.96,515.82c-2.12-5.51-3.4-8.73-3.84-9.67c-0.14-0.29-0.3-0.44-0.47-0.44c-0.23,0-0.58,0.02-1.05,0.05
|
||||
c-0.47,0.03-0.83,0.05-1.07,0.05c-0.25,0-0.63-0.02-1.13-0.07c-0.51-0.05-0.88-0.07-1.12-0.07c-0.14,0-0.27,0.17-0.38,0.51
|
||||
c-0.19,0.59-1.38,3.85-3.57,9.79c-2.02,5.49-3.03,8.35-3.03,8.58c0,0.26,0.69,0.39,2.06,0.39c1.74,0,2.76-0.04,3.06-0.11
|
||||
c0.24-0.06,0.45-0.47,0.62-1.21c0.19-0.82,0.36-1.29,0.51-1.44c0.1-0.08,0.91-0.12,2.43-0.12c2.26,0,3.45,0.03,3.6,0.09
|
||||
c0.17,0.09,0.41,0.78,0.71,2.07c0.08,0.34,0.27,0.54,0.58,0.61c0.37,0.07,1.19,0.11,2.47,0.11c1.4,0,2.23-0.04,2.5-0.11
|
||||
c0.22-0.06,0.33-0.17,0.33-0.34C621.16,524.25,620.1,521.36,617.96,515.82z M613.12,517.36c-0.06,0.14-0.39,0.21-0.98,0.21
|
||||
c-0.64,0-1.09-0.01-1.37-0.02c-0.54-0.02-0.81-0.11-0.81-0.27c0-0.24,0.24-1.06,0.73-2.46c0.45-1.32,0.76-2.17,0.95-2.57
|
||||
c0.19,0.36,0.48,1.18,0.89,2.47c0.41,1.33,0.62,2.15,0.62,2.44C613.15,517.25,613.14,517.31,613.12,517.36z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st3" d="M609.87,419.4c-0.24,0.58-3.88-0.59-10.43-2.14c-3.27-0.75-7.31-1.52-11.95-1.81
|
||||
c-4.63-0.28-9.9,0.07-15.17,2c-5.31,1.91-10.31,5.62-15.49,10.45c-2.62,2.38-5.35,5.02-8.66,7.51
|
||||
c-3.27,2.46-7.39,4.81-12.16,5.58c-1.18,0.25-2.37,0.28-3.58,0.37c-1.84,0-2.65-0.28-3.23-0.24c-0.59,0.01-0.6,0.09-0.63,0.12
|
||||
c-0.03,0.03-0.1,0.09-0.2,0.25c-0.08,0.11-0.3,0.51-0.32,0.58c-0.01,0.1-0.02,0.08,0.03,0.17c0.12,0.29,0.53,0.89,1.1,1.49
|
||||
l0.45,0.46l0.39,0.29l0.37,0.31l0.55,0.33c0.68,0.46,1.6,0.88,2.45,1.33c3.66,1.68,7.84,3.1,12.08,4.47
|
||||
c4.26,1.37,8.66,2.67,13.15,4.03c2.73,0.83,5.44,1.66,8.16,2.58c0.68,0.22,1.36,0.46,2.04,0.71l1.88,0.67l1.19,0.41
|
||||
c0.64,0.24,1.27,0.51,1.86,0.85c1.16,0.67,2.13,1.63,2.65,2.84c0.43,1.01,0.63,2.13,0.61,3.26c0,0.53-0.07,1.22-0.11,1.59
|
||||
l-0.12,0.88c-0.13,0.97-0.19,1.95-0.2,2.92c-0.02,0.98,0.03,1.95,0.13,2.92c0.04,0.48,0.12,0.96,0.19,1.44l0.12,0.71
|
||||
c0.03,0.18,0.13,0.62,0.11,0.52c0,0.06,0.01,0.14,0.03,0.25c0.07,0.13,0.14,0.03,0.19-0.04l0.08-0.1
|
||||
c0.02-0.04-0.02,0.05,0.05-0.1l0.27-0.56l0.54-1.11c0.36-0.74,0.72-1.48,1.08-2.22c0.43-0.84,0.83-1.7,1.75-2.85
|
||||
c0.97-1.19,2.27-2.11,3.72-2.51c0.72-0.21,1.48-0.28,2.23-0.25c0.72,0.02,1.59,0.19,2.07,0.33c1.1,0.31,1.88,0.65,2.61,0.95
|
||||
c0.75,0.31,1.49,0.62,2.23,0.93c5.86,2.56,11.18,5.62,15.9,8.91c9.44,6.63,16.36,14.32,20.96,21.34
|
||||
c4.64,7.03,6.97,13.37,8.13,17.73c1.15,4.39,1.22,6.87,0.82,6.96c-0.46,0.12-1.36-2.14-3.2-6.1c-1.85-3.95-4.73-9.62-9.6-15.84
|
||||
c-4.84-6.21-11.68-12.94-20.71-18.71c-4.52-2.86-9.55-5.5-15.05-7.71c-0.69-0.26-1.39-0.53-2.09-0.8
|
||||
c-0.72-0.28-1.4-0.53-1.82-0.62c-0.28-0.06-0.19-0.03-0.26-0.04c-0.04,0-0.07,0.01-0.1,0.03c-0.06,0.03-0.12,0.08-0.14,0.14
|
||||
c-0.26,0.28-1.05,2.08-1.71,3.52c-1.08,2.35-2.18,4.72-3.28,7.11c-0.96,1.87-2.16,2.5-3.05,2.91c-0.51,0.22-1.31,0.4-2.11,0.37
|
||||
c-0.8-0.01-1.61-0.25-2.12-0.51c-1.02-0.51-2.15-1.5-2.96-3.34c-0.82-1.79-1.5-3.84-2.04-5.96l-0.25-1.11l-0.17-0.93
|
||||
c-0.1-0.62-0.21-1.25-0.27-1.88c-0.15-1.26-0.23-2.54-0.22-3.83c0-1.29,0.08-2.58,0.23-3.88l0.1-0.82
|
||||
c0.02-0.19,0.01-0.08,0.01-0.12l-0.01-0.01l-0.02,0l-0.01,0l-0.77-0.25l-2.05-0.72c-0.62-0.23-1.26-0.44-1.91-0.65
|
||||
c-2.57-0.86-5.25-1.67-7.95-2.5c-4.45-1.35-8.89-2.68-13.27-4.11c-4.39-1.46-8.71-2.93-13.03-4.98c-1.1-0.58-2.16-1.08-3.3-1.85
|
||||
l-0.83-0.54l-0.89-0.73l-0.86-0.75l-0.67-0.71c-0.88-0.99-1.8-2.12-2.51-3.81c-0.8-1.87-0.82-4.17,0-6.02
|
||||
c0.39-0.9,0.7-1.42,1.23-2.17c0.5-0.7,1.17-1.4,1.99-1.99c1.67-1.22,3.82-1.56,5.29-1.47c1.49,0.06,2.7,0.36,2.91,0.31
|
||||
c0.84-0.06,1.68-0.03,2.49-0.2c6.57-0.9,12.06-6.14,17.61-10.8c2.79-2.35,5.65-4.62,8.69-6.5c3.03-1.88,6.21-3.36,9.39-4.32
|
||||
c6.39-1.92,12.44-1.82,17.44-1.08c5.02,0.76,9.15,2.04,12.41,3.29C606.86,416.81,610.06,418.96,609.87,419.4z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 1.9 KiB |
@ -1,214 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 25.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 200 200" style="enable-background:new 0 0 200 200;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:url(#SVGID_1_);}
|
||||
.st1{enable-background:new ;}
|
||||
.st2{fill:url(#SVGID_2_);}
|
||||
.st3{fill:url(#SVGID_3_);}
|
||||
.st4{fill:#AAAAAA;}
|
||||
.st5{fill:url(#SVGID_7_);}
|
||||
.st6{fill:url(#SVGID_8_);}
|
||||
.st7{fill:#182AAE;}
|
||||
.st8{fill:#1A4BC0;}
|
||||
.st9{clip-path:url(#XMLID_3_);fill:url(#SVGID_9_);}
|
||||
.st10{clip-path:url(#XMLID_3_);fill:url(#SVGID_10_);}
|
||||
.st11{clip-path:url(#XMLID_3_);fill:url(#SVGID_11_);}
|
||||
|
||||
.st12{clip-path:url(#XMLID_5_);fill:none;stroke:#1A4BC0;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||
.st13{opacity:0.2;}
|
||||
.st14{fill:#FFFFFF;}
|
||||
.st15{filter:url(#Adobe_OpacityMaskFilter);}
|
||||
.st16{opacity:0.8;fill:url(#SVGID_13_);}
|
||||
.st17{opacity:0.8;fill:url(#SVGID_14_);}
|
||||
.st18{mask:url(#SVGID_12_);}
|
||||
.st19{fill:#64EDDC;}
|
||||
.st20{fill:#35D3BC;}
|
||||
.st21{fill:none;stroke:#FFFFFF;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||
</style>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="152.9803" y1="120.0797" x2="164.9832" y2="120.0797">
|
||||
<stop offset="0" style="stop-color:#5DCBFF"/>
|
||||
<stop offset="1" style="stop-color:#2E71DD"/>
|
||||
</linearGradient>
|
||||
<path class="st0" d="M162.8,117.7c2.6,1.1,3,3,0.9,4.3c-2.1,1.3-5.9,1.5-8.4,0.4c-2.6-1.1-3-3-0.9-4.3
|
||||
C156.4,116.8,160.2,116.6,162.8,117.7z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g class="st1">
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="154.8372" y1="98.1025" x2="163.1305" y2="98.1025">
|
||||
<stop offset="0" style="stop-color:#D1EAFE"/>
|
||||
<stop offset="0.8" style="stop-color:#79AFF0"/>
|
||||
<stop offset="1" style="stop-color:#A6D4FC"/>
|
||||
</linearGradient>
|
||||
<path class="st2" d="M163.1,119.3c0-0.1,0-0.1,0-0.2c0,0,0,0,0,0L162.8,75c0,0.1,0,0.2,0,0.3c0,0,0,0,0,0c0,0.1-0.1,0.2-0.1,0.3
|
||||
c0,0,0,0,0,0c-0.1,0.1-0.1,0.2-0.2,0.3c0,0,0,0-0.1,0.1c-0.1,0.1-0.2,0.2-0.3,0.3c-0.1,0-0.2,0.1-0.2,0.1
|
||||
c-0.2,0.1-0.3,0.2-0.5,0.2c-0.1,0-0.2,0.1-0.3,0.1c-0.2,0.1-0.4,0.1-0.5,0.2c-0.1,0-0.2,0.1-0.3,0.1c-0.1,0-0.1,0-0.2,0
|
||||
c-0.2,0-0.4,0.1-0.6,0.1c0,0,0,0,0,0c-0.3,0-0.5,0-0.8,0c0,0,0,0,0,0c-0.2,0-0.5,0-0.7-0.1c0,0,0,0-0.1,0
|
||||
c-0.2,0-0.4-0.1-0.7-0.1c0,0-0.1,0-0.1,0c-0.2-0.1-0.4-0.1-0.6-0.2c-1-0.4-1.5-1-1.5-1.6l0.3,44.1c0,0.6,0.5,1.2,1.5,1.6
|
||||
c0,0,0,0,0,0c0.1,0.1,0.3,0.1,0.4,0.1c0.1,0,0.1,0,0.2,0c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0.1,0,0.2,0,0.3,0.1
|
||||
c0.1,0,0.1,0,0.2,0c0,0,0,0,0.1,0c0,0,0.1,0,0.1,0c0.1,0,0.2,0,0.3,0c0.1,0,0.2,0,0.3,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0.1,0,0.2,0,0.4,0c0.1,0,0.3,0,0.4,0c0,0,0,0,0,0c0,0,0,0,0,0c0.1,0,0.3,0,0.4,0c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0
|
||||
c0,0,0.1,0,0.1,0c0.1,0,0.1,0,0.2,0c0.2,0,0.4-0.1,0.5-0.2c0.1,0,0.2-0.1,0.3-0.1c0.2-0.1,0.3-0.2,0.5-0.2c0,0,0.1,0,0.1-0.1
|
||||
c0,0,0.1,0,0.1-0.1c0.1-0.1,0.2-0.1,0.3-0.2c0,0,0.1-0.1,0.1-0.1c0,0,0,0,0.1-0.1c0,0,0,0,0.1-0.1c0.1-0.1,0.1-0.1,0.1-0.2
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0-0.1,0.1-0.1c0-0.1,0.1-0.1,0.1-0.2c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
C163.1,119.4,163.1,119.3,163.1,119.3z"/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="154.8372" y1="75.0175" x2="162.8384" y2="75.0175">
|
||||
<stop offset="0" style="stop-color:#5DCBFF"/>
|
||||
<stop offset="1" style="stop-color:#2E71DD"/>
|
||||
</linearGradient>
|
||||
<path class="st3" d="M161.3,73.4c1.7,0.7,2,2,0.7,2.9c-1.4,0.9-3.9,1.1-5.6,0.4c-1.7-0.7-2-2-0.7-2.9
|
||||
C157.1,72.8,159.6,72.7,161.3,73.4z"/>
|
||||
<g class="st1">
|
||||
<defs>
|
||||
<path id="SVGID_4_" class="st1" d="M161.3,73.4c1.7,0.7,2,2,0.7,2.9c-1.4,0.9-3.9,1.1-5.6,0.4c-1.7-0.7-2-2-0.7-2.9
|
||||
C157.1,72.8,159.6,72.7,161.3,73.4z"/>
|
||||
</defs>
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="154.8372" y1="75.0175" x2="162.8384" y2="75.0175">
|
||||
<stop offset="0" style="stop-color:#5DCBFF"/>
|
||||
<stop offset="1" style="stop-color:#2E71DD"/>
|
||||
</linearGradient>
|
||||
<use xlink:href="#SVGID_4_" style="overflow:visible;fill:url(#SVGID_5_);"/>
|
||||
<clipPath id="SVGID_6_">
|
||||
<use xlink:href="#SVGID_4_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<ellipse transform="matrix(1 -8.564752e-03 8.564752e-03 1 -0.3413 1.3593)" class="st4" cx="158.5" cy="40.5" rx="2" ry="1"/>
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="156.5399" y1="40.5341" x2="160.5394" y2="40.5341">
|
||||
<stop offset="0" style="stop-color:#5DCBFF"/>
|
||||
<stop offset="1" style="stop-color:#2E71DD"/>
|
||||
</linearGradient>
|
||||
<path class="st5" d="M159.8,39.7c0.9,0.4,1,1,0.3,1.5c-0.7,0.5-1.9,0.5-2.8,0.2c-0.9-0.4-1-1-0.3-1.5
|
||||
C157.7,39.4,158.9,39.4,159.8,39.7z"/>
|
||||
</g>
|
||||
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="156.5399" y1="58.1045" x2="160.8315" y2="58.1045">
|
||||
<stop offset="0" style="stop-color:#D1EAFE"/>
|
||||
<stop offset="0.8" style="stop-color:#79AFF0"/>
|
||||
<stop offset="1" style="stop-color:#A6D4FC"/>
|
||||
</linearGradient>
|
||||
<path class="st6" d="M160.8,72.9l-0.3-32.4c0,0.1,0,0.2-0.1,0.3c0,0,0,0,0,0c-0.1,0.1-0.2,0.2-0.3,0.3c-0.2,0.1-0.3,0.2-0.6,0.2
|
||||
c0,0-0.1,0-0.1,0c-0.2,0.1-0.4,0.1-0.6,0.1c0,0,0,0,0,0c-0.3,0-0.5,0-0.8,0c0,0,0,0,0,0c-0.2,0-0.5-0.1-0.7-0.2
|
||||
c-0.5-0.2-0.8-0.5-0.8-0.8l0.3,34.1c0,0.3,0.3,0.6,0.8,0.8c0,0,0,0,0,0c0.1,0,0.1,0.1,0.2,0.1c0.1,0,0.1,0,0.2,0
|
||||
c0.1,0,0.1,0,0.2,0c0,0,0.1,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0
|
||||
c0.1,0,0.1,0,0.2,0c0,0,0,0,0,0c0,0,0,0,0,0c0.1,0,0.1,0,0.2,0c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0,0.2,0c0,0,0.1,0,0.1,0
|
||||
c0.2-0.1,0.4-0.1,0.5-0.2c0,0,0,0,0,0c0,0,0.1-0.1,0.1-0.1c0,0,0.1-0.1,0.1-0.1c0,0,0.1-0.1,0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0-0.1c0,0,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0,0,0-0.1,0-0.1L160.8,72.9z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path id="XMLID_27_" class="st7" d="M170,124.1h-33.6l-50.1-18.1c-2.1-0.8-5.6-0.8-7.7,0l-14.9,5.4H30v17.2h0
|
||||
c0,0.6,0.4,1.1,1.3,1.5l81.5,29.5c2.6,1.2,6.9,1.2,9.4,0l46.3-16.8c1-0.4,1.4-1,1.3-1.5h0V124.1z"/>
|
||||
<path id="XMLID_26_" class="st8" d="M170,123.4h-33.6l-50.1-18.1c-2.1-0.8-5.6-0.8-7.7,0l-14.9,5.4H30v17.2h0
|
||||
c0,0.6,0.4,1.1,1.3,1.5l81.5,29.5c2.6,1.2,6.9,1.2,9.4,0l46.3-16.8c1-0.4,1.4-1,1.3-1.5h0V123.4z"/>
|
||||
<g>
|
||||
<defs>
|
||||
<path id="XMLID_25_" d="M170,121.5h-33.6l-50.1-18.1c-2.1-0.8-5.6-0.8-7.7,0l-14.9,5.4H30V126h0c0,0.6,0.4,1.1,1.3,1.5
|
||||
l81.5,29.5c2.6,1.2,6.9,1.2,9.4,0l46.3-16.8c1-0.4,1.4-1,1.3-1.5h0V121.5z"/>
|
||||
</defs>
|
||||
<linearGradient id="XMLID_2_" gradientUnits="userSpaceOnUse" x1="30" y1="130.3364" x2="169.9911" y2="130.3364">
|
||||
<stop offset="0" style="stop-color:#AFDAFE"/>
|
||||
<stop offset="1" style="stop-color:#6FA7EE"/>
|
||||
</linearGradient>
|
||||
<use xlink:href="#XMLID_25_" style="overflow:visible;fill:url(#XMLID_2_);"/>
|
||||
<clipPath id="XMLID_3_">
|
||||
<use xlink:href="#XMLID_25_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="111.5627" y1="149.5769" x2="121.9641" y2="149.5769">
|
||||
<stop offset="0" style="stop-color:#D0EAFE;stop-opacity:0"/>
|
||||
<stop offset="0.5" style="stop-color:#D4ECFE"/>
|
||||
<stop offset="1" style="stop-color:#D1EBFE;stop-opacity:0.1594"/>
|
||||
</linearGradient>
|
||||
<rect x="111.6" y="137.2" class="st9" width="10.4" height="24.8"/>
|
||||
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="24.7993" y1="121.0289" x2="35.2007" y2="121.0289">
|
||||
<stop offset="0" style="stop-color:#D0EAFE;stop-opacity:0"/>
|
||||
<stop offset="0.5" style="stop-color:#D4ECFE"/>
|
||||
<stop offset="1" style="stop-color:#D1EBFE;stop-opacity:0.1594"/>
|
||||
</linearGradient>
|
||||
<rect x="24.8" y="108.6" class="st10" width="10.4" height="24.8"/>
|
||||
<linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="164.7993" y1="130.0485" x2="175.2007" y2="130.0485">
|
||||
<stop offset="0" style="stop-color:#D0EAFE;stop-opacity:0"/>
|
||||
<stop offset="0.5" style="stop-color:#D4ECFE"/>
|
||||
<stop offset="1" style="stop-color:#D1EBFE;stop-opacity:0.1594"/>
|
||||
</linearGradient>
|
||||
<rect x="164.8" y="117.7" class="st11" width="10.4" height="24.8"/>
|
||||
</g>
|
||||
<g>
|
||||
<defs>
|
||||
<path id="XMLID_16_" d="M112.9,139.8l-81.5-29.5c-2.1-0.9-1.7-2.5,0.9-3.4l46.3-16.8c2.1-0.8,5.6-0.8,7.7,0l81.6,29.5
|
||||
c2.6,0.9,3,2.5,0.9,3.4l-46.3,16.8C119.7,141,115.5,141,112.9,139.8z"/>
|
||||
</defs>
|
||||
<linearGradient id="XMLID_4_" gradientUnits="userSpaceOnUse" x1="30" y1="115.1262" x2="170" y2="115.1262">
|
||||
<stop offset="0" style="stop-color:#C6E4FF"/>
|
||||
<stop offset="1" style="stop-color:#BADFFE"/>
|
||||
</linearGradient>
|
||||
<use xlink:href="#XMLID_16_" style="overflow:visible;fill:url(#XMLID_4_);"/>
|
||||
<clipPath id="XMLID_5_">
|
||||
<use xlink:href="#XMLID_16_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st12" x1="27.4" y1="109.2" x2="118.1" y2="142"/>
|
||||
</g>
|
||||
<g class="st13">
|
||||
<path class="st14" d="M82.4,89.8c1.4,0,2.8,0.2,3.8,0.6l81.6,29.5c1.3,0.5,2,1.1,2,1.7c0,0.5-0.4,0.9-1.2,1.2l-46.3,16.8
|
||||
c-1.2,0.5-2.9,0.9-4.6,0.9c-1.8,0-3.4-0.3-4.6-0.9l-81.5-29.5c-0.8-0.4-1.2-0.8-1.2-1.3c0-0.6,0.8-1.2,2-1.7l46.3-16.8
|
||||
C79.6,90,81,89.8,82.4,89.8 M82.4,89.6c-1.4,0-2.8,0.2-3.8,0.6l-46.3,16.8c-2.6,0.9-3,2.5-0.9,3.4l81.5,29.5
|
||||
c1.3,0.6,3,0.9,4.7,0.9c1.7,0,3.4-0.3,4.7-0.9l46.3-16.8c2.1-0.9,1.7-2.5-0.9-3.4L86.2,90.1C85.2,89.7,83.8,89.6,82.4,89.6
|
||||
L82.4,89.6z"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="Adobe_OpacityMaskFilter" filterUnits="userSpaceOnUse" x="30" y="89.6" width="140" height="51.1">
|
||||
<feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<mask maskUnits="userSpaceOnUse" x="30" y="89.6" width="140" height="51.1" id="SVGID_12_">
|
||||
<g class="st15">
|
||||
<linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="116.5713" y1="139.26" x2="166.4854" y2="139.26">
|
||||
<stop offset="0.2" style="stop-color:#000000"/>
|
||||
<stop offset="0.5" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="0.8" style="stop-color:#000000"/>
|
||||
</linearGradient>
|
||||
<rect x="116.6" y="121.7" class="st16" width="49.9" height="35.1"/>
|
||||
<linearGradient id="SVGID_14_" gradientUnits="userSpaceOnUse" x1="-27.4641" y1="94.3522" x2="54.731" y2="94.3522">
|
||||
<stop offset="0.2" style="stop-color:#000000"/>
|
||||
<stop offset="0.5" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="0.8" style="stop-color:#000000"/>
|
||||
</linearGradient>
|
||||
<rect x="-27.5" y="76.8" class="st17" width="82.2" height="35.1"/>
|
||||
</g>
|
||||
</mask>
|
||||
<g class="st18">
|
||||
<path class="st14" d="M82.4,90.3c1.4,0,2.7,0.2,3.6,0.5l81.6,29.5c1.2,0.4,1.7,1,1.7,1.2c0,0.2-0.3,0.5-0.9,0.8l-46.3,16.8l0,0
|
||||
l0,0c-1.1,0.5-2.8,0.8-4.4,0.8c-1.7,0-3.3-0.3-4.4-0.8l0,0l0,0l-81.5-29.5c-0.6-0.3-0.9-0.6-0.9-0.8c0-0.2,0.5-0.8,1.7-1.2
|
||||
l46.3-16.8C79.7,90.5,81,90.3,82.4,90.3 M82.4,89.6c-1.4,0-2.8,0.2-3.8,0.6l-46.3,16.8c-2.6,0.9-3,2.5-0.9,3.4l81.5,29.5
|
||||
c1.3,0.6,3,0.9,4.7,0.9c1.7,0,3.4-0.3,4.7-0.9l46.3-16.8c2.1-0.9,1.7-2.5-0.9-3.4L86.2,90.1C85.2,89.7,83.8,89.6,82.4,89.6
|
||||
L82.4,89.6z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st8" d="M102.2,139.6c1.2,0.4,2.2,2,2.2,3.6c0,1.5-0.9,2.4-2.1,2c-1.2-0.4-2.2-2-2.2-3.6
|
||||
C100.1,140,101,139.1,102.2,139.6z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st8" d="M94.2,136.7c1.2,0.4,2.2,2,2.2,3.6c0,1.5-0.9,2.4-2.1,2c-1.2-0.4-2.2-2-2.2-3.6
|
||||
C92.1,137.1,93,136.2,94.2,136.7z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st8" d="M86.5,133.8c1.2,0.4,2.2,2,2.2,3.6c0,1.5-0.9,2.4-2.1,2c-1.2-0.4-2.2-2-2.2-3.6S85.3,133.4,86.5,133.8z"/>
|
||||
</g>
|
||||
</g>
|
||||
<polygon class="st19" points="37.4,116.5 52.9,122.2 52.9,131.4 37.4,125.6 "/>
|
||||
<polygon class="st20" points="37.8,117.2 52.9,122.7 52.9,122.2 37.4,116.5 37.4,125.6 37.8,125.8 "/>
|
||||
<g>
|
||||
<line class="st21" x1="79.5" y1="117.8" x2="98.3" y2="124.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 12 KiB |
@ -1,393 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 25.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 200 200" style="enable-background:new 0 0 200 200;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#182AAE;}
|
||||
.st1{fill:#1A4BC0;}
|
||||
.st2{clip-path:url(#XMLID_3_);fill:url(#SVGID_1_);}
|
||||
.st3{clip-path:url(#XMLID_3_);fill:url(#SVGID_2_);}
|
||||
.st4{clip-path:url(#XMLID_3_);fill:url(#SVGID_3_);}
|
||||
.st5{fill:url(#SVGID_4_);}
|
||||
.st6{opacity:0.2;}
|
||||
.st7{fill:#FFFFFF;}
|
||||
.st8{filter:url(#Adobe_OpacityMaskFilter);}
|
||||
.st9{opacity:0.8;fill:url(#SVGID_6_);}
|
||||
.st10{opacity:0.8;fill:url(#SVGID_7_);}
|
||||
.st11{mask:url(#SVGID_5_);}
|
||||
.st12{fill:url(#SVGID_8_);}
|
||||
.st13{opacity:0.6;fill:#1A4BC0;}
|
||||
.st14{fill:url(#SVGID_9_);}
|
||||
.st15{enable-background:new ;}
|
||||
.st16{fill:url(#SVGID_10_);}
|
||||
.st17{fill:url(#SVGID_11_);}
|
||||
.st18{fill:#AAAAAA;}
|
||||
.st19{fill:url(#SVGID_15_);}
|
||||
.st20{fill:url(#SVGID_16_);}
|
||||
.st21{fill:#64EDDC;}
|
||||
.st22{fill:url(#SVGID_17_);}
|
||||
.st23{fill:url(#SVGID_18_);}
|
||||
.st24{fill:url(#SVGID_19_);}
|
||||
.st25{fill:url(#SVGID_23_);}
|
||||
.st26{fill:url(#SVGID_24_);}
|
||||
.st27{fill:#1459C6;}
|
||||
.st28{fill:#29F8FF;}
|
||||
.st29{filter:url(#Adobe_OpacityMaskFilter_1_);}
|
||||
.st30{fill:url(#SVGID_26_);}
|
||||
.st31{fill:url(#SVGID_27_);}
|
||||
.st32{fill:url(#SVGID_28_);}
|
||||
.st33{fill:url(#SVGID_29_);}
|
||||
.st34{mask:url(#SVGID_25_);}
|
||||
.st35{fill:#35D3BC;}
|
||||
</style>
|
||||
<g>
|
||||
<g>
|
||||
<path id="XMLID_31_" class="st0" d="M170,126.3h-33.6l-50.1-18.1c-2.1-0.8-5.6-0.8-7.7,0l-14.9,5.4H30v26.2h0
|
||||
c0,0.6,0.4,1.1,1.3,1.5l81.5,29.5c2.6,1.2,6.9,1.2,9.4,0l46.3-16.8c1-0.4,1.4-1,1.3-1.5h0V126.3z"/>
|
||||
<path id="XMLID_30_" class="st1" d="M170,125.6h-33.6l-50.1-18.1c-2.1-0.8-5.6-0.8-7.7,0l-14.9,5.4H30v26.2h0
|
||||
c0,0.6,0.4,1.1,1.3,1.5l81.5,29.5c2.6,1.2,6.9,1.2,9.4,0l46.3-16.8c1-0.4,1.4-1,1.3-1.5h0V125.6z"/>
|
||||
<g>
|
||||
<defs>
|
||||
<path id="XMLID_29_" d="M170,123.7h-33.6l-50.1-18.1c-2.1-0.8-5.6-0.8-7.7,0L63.6,111H30v26.2h0c0,0.6,0.4,1.1,1.3,1.5
|
||||
l81.5,29.5c2.6,1.2,6.9,1.2,9.4,0l46.3-16.8c1-0.4,1.4-1,1.3-1.5h0V123.7z"/>
|
||||
</defs>
|
||||
<linearGradient id="XMLID_2_" gradientUnits="userSpaceOnUse" x1="30" y1="137.0994" x2="169.9911" y2="137.0994">
|
||||
<stop offset="0" style="stop-color:#AFDAFE"/>
|
||||
<stop offset="1" style="stop-color:#6FA7EE"/>
|
||||
</linearGradient>
|
||||
<use xlink:href="#XMLID_29_" style="overflow:visible;fill:url(#XMLID_2_);"/>
|
||||
<clipPath id="XMLID_3_">
|
||||
<use xlink:href="#XMLID_29_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="111.5627" y1="156.3399" x2="121.9641" y2="156.3399">
|
||||
<stop offset="0" style="stop-color:#D0EAFE;stop-opacity:0"/>
|
||||
<stop offset="0.5" style="stop-color:#D4ECFE"/>
|
||||
<stop offset="1" style="stop-color:#D1EBFE;stop-opacity:0.1594"/>
|
||||
</linearGradient>
|
||||
<rect x="111.6" y="139.4" class="st2" width="10.4" height="33.8"/>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="24.7993" y1="127.7919" x2="35.2007" y2="127.7919">
|
||||
<stop offset="0" style="stop-color:#D0EAFE;stop-opacity:0"/>
|
||||
<stop offset="0.5" style="stop-color:#D4ECFE"/>
|
||||
<stop offset="1" style="stop-color:#D1EBFE;stop-opacity:0.1594"/>
|
||||
</linearGradient>
|
||||
<rect x="24.8" y="110.9" class="st3" width="10.4" height="33.8"/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="164.7993" y1="136.8115" x2="175.2007" y2="136.8115">
|
||||
<stop offset="0" style="stop-color:#D0EAFE;stop-opacity:0"/>
|
||||
<stop offset="0.5" style="stop-color:#D4ECFE"/>
|
||||
<stop offset="1" style="stop-color:#D1EBFE;stop-opacity:0.1594"/>
|
||||
</linearGradient>
|
||||
<rect x="164.8" y="119.9" class="st4" width="10.4" height="33.8"/>
|
||||
</g>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="30" y1="117.3892" x2="170" y2="117.3892">
|
||||
<stop offset="0" style="stop-color:#C6E4FF"/>
|
||||
<stop offset="1" style="stop-color:#BADFFE"/>
|
||||
</linearGradient>
|
||||
<path class="st5" d="M112.9,142.1l-81.5-29.5c-2.1-0.9-1.7-2.5,0.9-3.4l46.3-16.8c2.1-0.8,5.6-0.8,7.7,0l81.6,29.5
|
||||
c2.6,0.9,3,2.5,0.9,3.4l-46.3,16.8C119.7,143.3,115.5,143.3,112.9,142.1z"/>
|
||||
<g class="st6">
|
||||
<path class="st7" d="M82.4,92.1c1.4,0,2.8,0.2,3.8,0.6l81.6,29.5c1.3,0.5,2,1.1,2,1.7c0,0.5-0.4,0.9-1.2,1.2l-46.3,16.8
|
||||
c-1.2,0.5-2.9,0.9-4.6,0.9c-1.8,0-3.4-0.3-4.6-0.9l-81.5-29.5c-0.8-0.4-1.2-0.8-1.2-1.3c0-0.6,0.8-1.2,2-1.7l46.3-16.8
|
||||
C79.6,92.3,81,92.1,82.4,92.1 M82.4,91.8c-1.4,0-2.8,0.2-3.8,0.6l-46.3,16.8c-2.6,0.9-3,2.5-0.9,3.4l81.5,29.5
|
||||
c1.3,0.6,3,0.9,4.7,0.9c1.7,0,3.4-0.3,4.7-0.9l46.3-16.8c2.1-0.9,1.7-2.5-0.9-3.4L86.2,92.4C85.2,92,83.8,91.8,82.4,91.8
|
||||
L82.4,91.8z"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="Adobe_OpacityMaskFilter" filterUnits="userSpaceOnUse" x="30" y="91.8" width="140" height="51.1">
|
||||
<feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<mask maskUnits="userSpaceOnUse" x="30" y="91.8" width="140" height="51.1" id="SVGID_5_">
|
||||
<g class="st8">
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="116.5713" y1="141.523" x2="166.4854" y2="141.523">
|
||||
<stop offset="0.2" style="stop-color:#000000"/>
|
||||
<stop offset="0.5" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="0.8" style="stop-color:#000000"/>
|
||||
</linearGradient>
|
||||
<rect x="116.6" y="124" class="st9" width="49.9" height="35.1"/>
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="31.2843" y1="127.3881" x2="113.4793" y2="127.3881">
|
||||
<stop offset="0.2" style="stop-color:#000000"/>
|
||||
<stop offset="0.5" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="0.8" style="stop-color:#000000"/>
|
||||
</linearGradient>
|
||||
<rect x="31.3" y="109.8" class="st10" width="82.2" height="35.1"/>
|
||||
</g>
|
||||
</mask>
|
||||
<g class="st11">
|
||||
<path class="st7" d="M82.4,92.6c1.4,0,2.7,0.2,3.6,0.5l81.6,29.5c1.2,0.4,1.7,1,1.7,1.2c0,0.2-0.3,0.5-0.9,0.8l-46.3,16.8l0,0
|
||||
l0,0c-1.1,0.5-2.8,0.8-4.4,0.8c-1.7,0-3.3-0.3-4.4-0.8l0,0l0,0l-81.5-29.5c-0.6-0.3-0.9-0.6-0.9-0.8c0-0.2,0.5-0.8,1.7-1.2
|
||||
l46.3-16.8C79.7,92.8,81,92.6,82.4,92.6 M82.4,91.8c-1.4,0-2.8,0.2-3.8,0.6l-46.3,16.8c-2.6,0.9-3,2.5-0.9,3.4l81.5,29.5
|
||||
c1.3,0.6,3,0.9,4.7,0.9c1.7,0,3.4-0.3,4.7-0.9l46.3-16.8c2.1-0.9,1.7-2.5-0.9-3.4L86.2,92.4C85.2,92,83.8,91.8,82.4,91.8
|
||||
L82.4,91.8z"/>
|
||||
</g>
|
||||
</g>
|
||||
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="68.6327" y1="116.8154" x2="134.81" y2="116.8154">
|
||||
<stop offset="0" style="stop-color:#5DCBFF"/>
|
||||
<stop offset="1" style="stop-color:#2E71DD"/>
|
||||
</linearGradient>
|
||||
<path class="st12" d="M133.5,119.6l-26.6,9.6c-1.8,0.6-3.7,0.6-5.4,0l-31.5-11.5c-1.8-0.6-1.8-3.1,0-3.8l26.4-9.5
|
||||
c1.8-0.6,3.7-0.6,5.4,0l31.7,11.4C135.3,116.5,135.3,119,133.5,119.6z"/>
|
||||
<path class="st13" d="M70,114.6l26.4-9.5c1.8-0.6,3.7-0.6,5.4,0l31.7,11.4c0.8,0.3,1.2,0.9,1.3,1.6c0.1-0.9-0.3-1.8-1.3-2.2
|
||||
l-31.7-11.4c-1.8-0.6-3.7-0.6-5.4,0L70,114c-1,0.4-1.4,1.3-1.3,2.2C68.8,115.5,69.2,114.9,70,114.6z"/>
|
||||
<g>
|
||||
<g>
|
||||
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="143.1535" y1="123.3889" x2="155.1564" y2="123.3889">
|
||||
<stop offset="0" style="stop-color:#5DCBFF"/>
|
||||
<stop offset="1" style="stop-color:#2E71DD"/>
|
||||
</linearGradient>
|
||||
<path class="st14" d="M152.9,121c2.6,1.1,3,3,0.9,4.3c-2.1,1.3-5.9,1.5-8.4,0.4c-2.6-1.1-3-3-0.9-4.3
|
||||
C146.6,120.1,150.4,119.9,152.9,121z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g class="st15">
|
||||
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="145.0105" y1="106.4116" x2="153.3038" y2="106.4116">
|
||||
<stop offset="0" style="stop-color:#D1EAFE"/>
|
||||
<stop offset="0.8" style="stop-color:#79AFF0"/>
|
||||
<stop offset="1" style="stop-color:#A6D4FC"/>
|
||||
</linearGradient>
|
||||
<path class="st16" d="M153.3,122.6c0-0.1,0-0.1,0-0.2c0,0,0,0,0,0L153,88.3c0,0.1,0,0.2,0,0.3c0,0,0,0,0,0
|
||||
c0,0.1-0.1,0.2-0.1,0.3c0,0,0,0,0,0c-0.1,0.1-0.1,0.2-0.2,0.3c0,0,0,0-0.1,0.1c-0.1,0.1-0.2,0.2-0.3,0.3c-0.1,0-0.2,0.1-0.2,0.1
|
||||
c-0.2,0.1-0.3,0.2-0.5,0.2c-0.1,0-0.2,0.1-0.3,0.1c-0.2,0.1-0.4,0.1-0.5,0.2c-0.1,0-0.2,0.1-0.3,0.1c-0.1,0-0.1,0-0.2,0
|
||||
c-0.2,0-0.4,0.1-0.6,0.1c0,0,0,0,0,0c-0.3,0-0.5,0-0.8,0c0,0,0,0,0,0c-0.2,0-0.5,0-0.7-0.1c0,0,0,0-0.1,0
|
||||
c-0.2,0-0.4-0.1-0.7-0.1c0,0-0.1,0-0.1,0c-0.2-0.1-0.4-0.1-0.6-0.2c-1-0.4-1.5-1-1.5-1.6l0.3,34.1c0,0.6,0.5,1.2,1.5,1.6
|
||||
c0,0,0,0,0,0c0.1,0.1,0.3,0.1,0.4,0.1c0.1,0,0.1,0,0.2,0c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0.1,0,0.2,0,0.3,0.1
|
||||
c0.1,0,0.1,0,0.2,0c0,0,0,0,0.1,0c0,0,0.1,0,0.1,0c0.1,0,0.2,0,0.3,0c0.1,0,0.2,0,0.3,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0.1,0,0.2,0,0.4,0c0.1,0,0.3,0,0.4,0c0,0,0,0,0,0c0,0,0,0,0,0c0.1,0,0.3,0,0.4,0c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0
|
||||
c0,0,0.1,0,0.1,0c0.1,0,0.1,0,0.2,0c0.2,0,0.4-0.1,0.5-0.2c0.1,0,0.2-0.1,0.3-0.1c0.2-0.1,0.3-0.2,0.5-0.2c0,0,0.1,0,0.1-0.1
|
||||
c0,0,0.1,0,0.1-0.1c0.1-0.1,0.2-0.1,0.3-0.2c0,0,0.1-0.1,0.1-0.1c0,0,0,0,0.1-0.1c0,0,0,0,0.1-0.1c0.1-0.1,0.1-0.1,0.1-0.2
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0-0.1,0.1-0.1c0-0.1,0.1-0.1,0.1-0.2c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
C153.3,122.7,153.3,122.6,153.3,122.6z"/>
|
||||
<linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="145.0105" y1="88.3266" x2="153.0117" y2="88.3266">
|
||||
<stop offset="0" style="stop-color:#5DCBFF"/>
|
||||
<stop offset="1" style="stop-color:#2E71DD"/>
|
||||
</linearGradient>
|
||||
<path class="st17" d="M151.5,86.7c1.7,0.7,2,2,0.7,2.9c-1.4,0.9-3.9,1.1-5.6,0.4c-1.7-0.7-2-2-0.7-2.9
|
||||
C147.2,86.1,149.7,86,151.5,86.7z"/>
|
||||
<g class="st15">
|
||||
<defs>
|
||||
<path id="SVGID_12_" class="st15" d="M151.5,86.7c1.7,0.7,2,2,0.7,2.9c-1.4,0.9-3.9,1.1-5.6,0.4c-1.7-0.7-2-2-0.7-2.9
|
||||
C147.2,86.1,149.7,86,151.5,86.7z"/>
|
||||
</defs>
|
||||
<linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="145.0105" y1="88.3266" x2="153.0117" y2="88.3266">
|
||||
<stop offset="0" style="stop-color:#5DCBFF"/>
|
||||
<stop offset="1" style="stop-color:#2E71DD"/>
|
||||
</linearGradient>
|
||||
<use xlink:href="#SVGID_12_" style="overflow:visible;fill:url(#SVGID_13_);"/>
|
||||
<clipPath id="SVGID_14_">
|
||||
<use xlink:href="#SVGID_12_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g class="st15">
|
||||
<g>
|
||||
|
||||
<ellipse transform="matrix(1 -8.564752e-03 8.564752e-03 1 -0.4557 1.2757)" class="st18" cx="148.7" cy="53.8" rx="2" ry="1"/>
|
||||
<linearGradient id="SVGID_15_" gradientUnits="userSpaceOnUse" x1="146.7131" y1="53.8432" x2="150.7127" y2="53.8432">
|
||||
<stop offset="0" style="stop-color:#5DCBFF"/>
|
||||
<stop offset="1" style="stop-color:#2E71DD"/>
|
||||
</linearGradient>
|
||||
<path class="st19" d="M149.9,53c0.9,0.4,1,1,0.3,1.5c-0.7,0.5-1.9,0.5-2.8,0.2c-0.9-0.4-1-1-0.3-1.5
|
||||
C147.8,52.7,149.1,52.7,149.9,53z"/>
|
||||
</g>
|
||||
<linearGradient id="SVGID_16_" gradientUnits="userSpaceOnUse" x1="146.7131" y1="71.4137" x2="151.0048" y2="71.4137">
|
||||
<stop offset="0" style="stop-color:#D1EAFE"/>
|
||||
<stop offset="0.8" style="stop-color:#79AFF0"/>
|
||||
<stop offset="1" style="stop-color:#A6D4FC"/>
|
||||
</linearGradient>
|
||||
<path class="st20" d="M151,86.2l-0.3-32.4c0,0.1,0,0.2-0.1,0.3c0,0,0,0,0,0c-0.1,0.1-0.2,0.2-0.3,0.3c-0.2,0.1-0.3,0.2-0.6,0.2
|
||||
c0,0-0.1,0-0.1,0c-0.2,0.1-0.4,0.1-0.6,0.1c0,0,0,0,0,0c-0.3,0-0.5,0-0.8,0c0,0,0,0,0,0c-0.2,0-0.5-0.1-0.7-0.2
|
||||
c-0.5-0.2-0.8-0.5-0.8-0.8L147,88c0,0.3,0.3,0.6,0.8,0.8c0,0,0,0,0,0c0.1,0,0.1,0.1,0.2,0.1c0.1,0,0.1,0,0.2,0
|
||||
c0.1,0,0.1,0,0.2,0c0,0,0.1,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0
|
||||
c0.1,0,0.1,0,0.2,0c0,0,0,0,0,0c0,0,0,0,0,0c0.1,0,0.1,0,0.2,0c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0,0.2,0c0,0,0.1,0,0.1,0
|
||||
c0.2-0.1,0.4-0.1,0.5-0.2c0,0,0,0,0,0c0,0,0.1-0.1,0.1-0.1c0,0,0.1-0.1,0.1-0.1c0,0,0.1-0.1,0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0-0.1c0,0,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0,0,0-0.1,0-0.1L151,86.2z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st1" d="M102.2,143.8c1.2,0.4,2.2,2,2.2,3.6c0,1.5-0.9,2.4-2.1,2c-1.2-0.4-2.2-2-2.2-3.6
|
||||
C100.1,144.3,101,143.4,102.2,143.8z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st1" d="M94.2,140.9c1.2,0.4,2.2,2,2.2,3.6c0,1.5-0.9,2.4-2.1,2c-1.2-0.4-2.2-2-2.2-3.6
|
||||
C92.1,141.4,93,140.5,94.2,140.9z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st1" d="M86.5,138.1c1.2,0.4,2.2,2,2.2,3.6c0,1.5-0.9,2.4-2.1,2c-1.2-0.4-2.2-2-2.2-3.6
|
||||
C84.3,138.5,85.3,137.6,86.5,138.1z"/>
|
||||
</g>
|
||||
</g>
|
||||
<polygon class="st21" points="37.4,120.7 52.9,126.4 52.9,135.6 37.4,129.9 "/>
|
||||
<g>
|
||||
<g>
|
||||
<linearGradient id="SVGID_17_" gradientUnits="userSpaceOnUse" x1="77.4852" y1="98.8167" x2="89.4881" y2="98.8167">
|
||||
<stop offset="0" style="stop-color:#5DCBFF"/>
|
||||
<stop offset="1" style="stop-color:#2E71DD"/>
|
||||
</linearGradient>
|
||||
<path class="st22" d="M87.3,96.5c2.6,1.1,3,3,0.9,4.3c-2.1,1.3-5.9,1.5-8.4,0.4c-2.6-1.1-3-3-0.9-4.3
|
||||
C80.9,95.6,84.7,95.4,87.3,96.5z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g class="st15">
|
||||
<linearGradient id="SVGID_18_" gradientUnits="userSpaceOnUse" x1="79.3421" y1="81.8395" x2="87.6354" y2="81.8395">
|
||||
<stop offset="0" style="stop-color:#D1EAFE"/>
|
||||
<stop offset="0.8" style="stop-color:#79AFF0"/>
|
||||
<stop offset="1" style="stop-color:#A6D4FC"/>
|
||||
</linearGradient>
|
||||
<path class="st23" d="M87.6,98c0-0.1,0-0.1,0-0.2c0,0,0,0,0,0l-0.3-34.1c0,0.1,0,0.2,0,0.3c0,0,0,0,0,0c0,0.1-0.1,0.2-0.1,0.3
|
||||
c0,0,0,0,0,0c-0.1,0.1-0.1,0.2-0.2,0.3c0,0,0,0-0.1,0.1c-0.1,0.1-0.2,0.2-0.3,0.3c-0.1,0-0.2,0.1-0.2,0.1
|
||||
c-0.2,0.1-0.3,0.2-0.5,0.2c-0.1,0-0.2,0.1-0.3,0.1c-0.2,0.1-0.4,0.1-0.5,0.2c-0.1,0-0.2,0.1-0.3,0.1c-0.1,0-0.1,0-0.2,0
|
||||
c-0.2,0-0.4,0.1-0.6,0.1c0,0,0,0,0,0c-0.3,0-0.5,0-0.8,0c0,0,0,0,0,0c-0.2,0-0.5,0-0.7-0.1c0,0,0,0-0.1,0
|
||||
c-0.2,0-0.4-0.1-0.7-0.1c0,0-0.1,0-0.1,0c-0.2-0.1-0.4-0.1-0.6-0.2c-1-0.4-1.5-1-1.5-1.6l0.3,34.1c0,0.6,0.5,1.2,1.5,1.6
|
||||
c0,0,0,0,0,0c0.1,0.1,0.3,0.1,0.4,0.1c0.1,0,0.1,0,0.2,0c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0.1,0,0.2,0,0.3,0.1
|
||||
c0.1,0,0.1,0,0.2,0c0,0,0,0,0.1,0c0,0,0.1,0,0.1,0c0.1,0,0.2,0,0.3,0c0.1,0,0.2,0,0.3,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0.1,0,0.2,0,0.4,0c0.1,0,0.3,0,0.4,0c0,0,0,0,0,0c0,0,0,0,0,0c0.1,0,0.3,0,0.4,0c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0
|
||||
c0,0,0.1,0,0.1,0c0.1,0,0.1,0,0.2,0c0.2,0,0.4-0.1,0.5-0.2c0.1,0,0.2-0.1,0.3-0.1c0.2-0.1,0.3-0.2,0.5-0.2c0,0,0.1,0,0.1-0.1
|
||||
c0,0,0.1,0,0.1-0.1c0.1-0.1,0.2-0.1,0.3-0.2c0,0,0.1-0.1,0.1-0.1c0,0,0,0,0.1-0.1c0,0,0,0,0.1-0.1c0.1-0.1,0.1-0.1,0.1-0.2
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0-0.1,0.1-0.1c0-0.1,0.1-0.1,0.1-0.2c0,0,0,0,0,0c0,0,0,0,0,0C87.6,98.1,87.6,98.1,87.6,98z"/>
|
||||
<linearGradient id="SVGID_19_" gradientUnits="userSpaceOnUse" x1="79.3421" y1="63.7545" x2="87.3434" y2="63.7545">
|
||||
<stop offset="0" style="stop-color:#5DCBFF"/>
|
||||
<stop offset="1" style="stop-color:#2E71DD"/>
|
||||
</linearGradient>
|
||||
<path class="st24" d="M85.8,62.1c1.7,0.7,2,2,0.7,2.9c-1.4,0.9-3.9,1.1-5.6,0.4c-1.7-0.7-2-2-0.7-2.9
|
||||
C81.6,61.6,84.1,61.4,85.8,62.1z"/>
|
||||
<g class="st15">
|
||||
<defs>
|
||||
<path id="SVGID_20_" class="st15" d="M85.8,62.1c1.7,0.7,2,2,0.7,2.9c-1.4,0.9-3.9,1.1-5.6,0.4c-1.7-0.7-2-2-0.7-2.9
|
||||
C81.6,61.6,84.1,61.4,85.8,62.1z"/>
|
||||
</defs>
|
||||
<linearGradient id="SVGID_21_" gradientUnits="userSpaceOnUse" x1="79.3421" y1="63.7545" x2="87.3434" y2="63.7545">
|
||||
<stop offset="0" style="stop-color:#5DCBFF"/>
|
||||
<stop offset="1" style="stop-color:#2E71DD"/>
|
||||
</linearGradient>
|
||||
<use xlink:href="#SVGID_20_" style="overflow:visible;fill:url(#SVGID_21_);"/>
|
||||
<clipPath id="SVGID_22_">
|
||||
<use xlink:href="#SVGID_20_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g class="st15">
|
||||
<g>
|
||||
<ellipse transform="matrix(1 -8.564752e-03 8.564752e-03 1 -0.2477 0.7123)" class="st18" cx="83" cy="29.3" rx="2" ry="1"/>
|
||||
<linearGradient id="SVGID_23_" gradientUnits="userSpaceOnUse" x1="81.0448" y1="29.2711" x2="85.0444" y2="29.2711">
|
||||
<stop offset="0" style="stop-color:#5DCBFF"/>
|
||||
<stop offset="1" style="stop-color:#2E71DD"/>
|
||||
</linearGradient>
|
||||
<path class="st25" d="M84.3,28.4c0.9,0.4,1,1,0.3,1.5c-0.7,0.5-1.9,0.5-2.8,0.2c-0.9-0.4-1-1-0.3-1.5
|
||||
C82.2,28.2,83.4,28.1,84.3,28.4z"/>
|
||||
</g>
|
||||
<linearGradient id="SVGID_24_" gradientUnits="userSpaceOnUse" x1="81.0448" y1="46.8416" x2="85.3364" y2="46.8416">
|
||||
<stop offset="0" style="stop-color:#D1EAFE"/>
|
||||
<stop offset="0.8" style="stop-color:#79AFF0"/>
|
||||
<stop offset="1" style="stop-color:#A6D4FC"/>
|
||||
</linearGradient>
|
||||
<path class="st26" d="M85.3,61.7L85,29.3c0,0.1,0,0.2-0.1,0.3c0,0,0,0,0,0c-0.1,0.1-0.2,0.2-0.3,0.3c-0.2,0.1-0.3,0.2-0.6,0.2
|
||||
c0,0-0.1,0-0.1,0c-0.2,0.1-0.4,0.1-0.6,0.1c0,0,0,0,0,0c-0.3,0-0.5,0-0.8,0c0,0,0,0,0,0c-0.2,0-0.5-0.1-0.7-0.2
|
||||
c-0.5-0.2-0.8-0.5-0.8-0.8l0.3,34.1c0,0.3,0.3,0.6,0.8,0.8c0,0,0,0,0,0c0.1,0,0.1,0.1,0.2,0.1c0.1,0,0.1,0,0.2,0
|
||||
c0.1,0,0.1,0,0.2,0c0,0,0.1,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0
|
||||
c0.1,0,0.1,0,0.2,0c0,0,0,0,0,0c0,0,0,0,0,0c0.1,0,0.1,0,0.2,0c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0,0.2,0c0,0,0.1,0,0.1,0
|
||||
c0.2-0.1,0.4-0.1,0.5-0.2c0,0,0,0,0,0c0,0,0.1-0.1,0.1-0.1c0,0,0.1-0.1,0.1-0.1c0,0,0.1-0.1,0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0-0.1c0,0,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0,0,0-0.1,0-0.1L85.3,61.7z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st27" d="M108.5,112.5c1.4,0.5,1.4,1.4-0.1,2c-1.5,0.6-3.9,0.6-5.4,0.1c-1.4-0.5-1.4-1.4,0.2-2
|
||||
C104.6,112,107,111.9,108.5,112.5z M104.1,114.1c0.9,0.3,2.3,0.3,3.2,0c0.9-0.3,1-0.9,0.1-1.2c-0.9-0.3-2.3-0.3-3.2,0
|
||||
C103.2,113.2,103.2,113.8,104.1,114.1"/>
|
||||
<path class="st27" d="M93,118.6c0.9,0.5,0.7,1.3-0.6,1.8c-1.5,0.6-3.9,0.6-5.3,0.1c-1.4-0.5-1.4-1.4,0.1-2
|
||||
c1.3-0.5,3.3-0.6,4.8-0.2c-0.1,0-0.1,0.1-0.2,0.1c-0.3,0.1-0.3,0.3,0,0.4c0.3,0.1,0.8,0.1,1.1,0C92.8,118.6,92.9,118.6,93,118.6z
|
||||
M88.1,120c0.9,0.3,2.3,0.3,3.2,0c0.9-0.3,1-0.9,0.1-1.2c-0.9-0.3-2.3-0.3-3.2,0C87.3,119.1,87.2,119.7,88.1,120"/>
|
||||
<path class="st27" d="M102.6,118.6c0.1,0,0.1,0,0.1,0.1c0.1,0.1,0.1,0.2-0.2,0.3s-0.6,0.1-0.9,0.1c-0.1,0-0.1,0-0.2,0l-1.2-0.4
|
||||
c-1-0.4-2.4-0.5-3.7-0.5c-1.3,0-2.6,0.2-3.6,0.5c-0.1,0-0.1,0-0.2,0.1c-0.3,0.1-0.8,0.1-1.1,0c-0.3-0.1-0.3-0.3,0-0.4
|
||||
c0.1,0,0.1-0.1,0.2-0.1c0,0,0,0,0.1,0c1.1-0.4,2.5-0.6,3.8-0.7c2-0.1,4,0.1,5.5,0.6L102.6,118.6z"/>
|
||||
<path class="st27" d="M104,114.5l-8.2,3c-1.4,0.1-2.7,0.3-3.8,0.7l11-4L104,114.5z"/>
|
||||
<path class="st27" d="M117.2,117.3c1.4,0.5,1.4,1.4-0.1,2c-1.3,0.5-3.3,0.6-4.7,0.2c-0.2,0-0.4-0.1-0.6-0.2
|
||||
c-0.1,0-0.2-0.1-0.3-0.1c-1.2-0.5-1-1.3,0.4-1.9C113.4,116.8,115.8,116.7,117.2,117.3z M112.8,118.9c0.9,0.3,2.3,0.3,3.2,0
|
||||
c0.9-0.3,1-0.9,0.1-1.2c-0.9-0.3-2.3-0.3-3.2,0C112,118,112,118.6,112.8,118.9"/>
|
||||
<path class="st27" d="M112.3,119.5c0,0.1-0.1,0.1-0.2,0.2c-2.4,0.9-6.3,0.9-8.6,0.1l-1.7-0.6c-0.1,0-0.1,0-0.1-0.1
|
||||
c0.3,0,0.6,0,0.9-0.1s0.3-0.2,0.2-0.3c0.1,0,0.1,0,0.2,0l1.7,0.6c0.9,0.3,2,0.5,3.2,0.4c1.2,0,2.4-0.2,3.3-0.5
|
||||
c0.1,0,0.2-0.1,0.4-0.1c0.1,0,0.2,0.1,0.3,0.1C111.9,119.4,112.1,119.4,112.3,119.5z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st28" d="M108.5,112c1.4,0.5,1.4,1.4-0.1,2c-1.5,0.6-3.9,0.6-5.4,0.1c-1.4-0.5-1.4-1.4,0.2-2
|
||||
C104.6,111.5,107,111.4,108.5,112z M104.1,113.6c0.9,0.3,2.3,0.3,3.2,0c0.9-0.3,1-0.9,0.1-1.2c-0.9-0.3-2.3-0.3-3.2,0
|
||||
C103.2,112.7,103.2,113.3,104.1,113.6"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st28" d="M93,118.1c0.9,0.5,0.7,1.3-0.6,1.8c-1.5,0.6-3.9,0.6-5.3,0.1c-1.4-0.5-1.4-1.4,0.1-2
|
||||
c1.3-0.5,3.3-0.6,4.8-0.2c-0.1,0-0.1,0.1-0.2,0.1c-0.3,0.1-0.3,0.3,0,0.4c0.3,0.1,0.8,0.1,1.1,0
|
||||
C92.8,118.1,92.9,118.1,93,118.1z M88.1,119.5c0.9,0.3,2.3,0.3,3.2,0c0.9-0.3,1-0.9,0.1-1.2c-0.9-0.3-2.3-0.3-3.2,0
|
||||
C87.3,118.6,87.2,119.2,88.1,119.5"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st28" d="M102.6,118.1c0.1,0,0.1,0,0.1,0.1c0.1,0.1,0.1,0.2-0.2,0.3s-0.6,0.1-0.9,0.1c-0.1,0-0.1,0-0.2,0l-1.2-0.4
|
||||
c-1-0.4-2.4-0.5-3.7-0.5c-1.3,0-2.6,0.2-3.6,0.5c-0.1,0-0.1,0-0.2,0.1c-0.3,0.1-0.8,0.1-1.1,0c-0.3-0.1-0.3-0.3,0-0.4
|
||||
c0.1,0,0.1-0.1,0.2-0.1c0,0,0,0,0.1,0c1.1-0.4,2.5-0.6,3.8-0.7c2-0.1,4,0.1,5.5,0.6L102.6,118.1z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st28" d="M104,114l-8.2,3c-1.4,0.1-2.7,0.3-3.8,0.7l11-4L104,114z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st28" d="M117.2,116.8c1.4,0.5,1.4,1.4-0.1,2c-1.3,0.5-3.3,0.6-4.7,0.2c-0.2,0-0.4-0.1-0.6-0.2
|
||||
c-0.1,0-0.2-0.1-0.3-0.1c-1.2-0.5-1-1.3,0.4-1.9C113.4,116.3,115.8,116.2,117.2,116.8z M112.8,118.4c0.9,0.3,2.3,0.3,3.2,0
|
||||
c0.9-0.3,1-0.9,0.1-1.2c-0.9-0.3-2.3-0.3-3.2,0C112,117.5,112,118.1,112.8,118.4"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st28" d="M112.3,119c0,0.1-0.1,0.1-0.2,0.2c-2.4,0.9-6.3,0.9-8.6,0.1l-1.7-0.6c-0.1,0-0.1,0-0.1-0.1
|
||||
c0.3,0,0.6,0,0.9-0.1s0.3-0.2,0.2-0.3c0.1,0,0.1,0,0.2,0l1.7,0.6c0.9,0.3,2,0.5,3.2,0.4c1.2,0,2.4-0.2,3.3-0.5
|
||||
c0.1,0,0.2-0.1,0.4-0.1c0.1,0,0.2,0.1,0.3,0.1C111.9,118.9,112.1,118.9,112.3,119z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="Adobe_OpacityMaskFilter_1_" filterUnits="userSpaceOnUse" x="68.4" y="103.7" width="66.7" height="26.2">
|
||||
<feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<mask maskUnits="userSpaceOnUse" x="68.4" y="103.7" width="66.7" height="26.2" id="SVGID_25_">
|
||||
<g class="st29">
|
||||
<linearGradient id="SVGID_26_" gradientUnits="userSpaceOnUse" x1="104.7593" y1="110.2001" x2="124.4893" y2="110.2001">
|
||||
<stop offset="0" style="stop-color:#000000"/>
|
||||
<stop offset="0.5" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="1" style="stop-color:#000000"/>
|
||||
</linearGradient>
|
||||
<rect x="104.8" y="103.6" class="st30" width="19.7" height="13.3"/>
|
||||
<linearGradient id="SVGID_27_" gradientUnits="userSpaceOnUse" x1="108.1458" y1="125.0896" x2="127.4341" y2="125.0896">
|
||||
<stop offset="0" style="stop-color:#000000"/>
|
||||
<stop offset="0.5" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="1" style="stop-color:#000000"/>
|
||||
</linearGradient>
|
||||
<rect x="108.1" y="120.6" class="st31" width="19.3" height="9"/>
|
||||
<linearGradient id="SVGID_28_" gradientUnits="userSpaceOnUse" x1="74.1336" y1="109.243" x2="91.655" y2="109.243">
|
||||
<stop offset="0" style="stop-color:#000000"/>
|
||||
<stop offset="0.5" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="1" style="stop-color:#000000"/>
|
||||
</linearGradient>
|
||||
<rect x="74.1" y="105.6" class="st32" width="17.5" height="7.2"/>
|
||||
<linearGradient id="SVGID_29_" gradientUnits="userSpaceOnUse" x1="85.1765" y1="126.8104" x2="102.109" y2="126.8104">
|
||||
<stop offset="0" style="stop-color:#000000"/>
|
||||
<stop offset="0.5" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="1" style="stop-color:#000000"/>
|
||||
</linearGradient>
|
||||
<rect x="85.2" y="120.6" class="st33" width="16.9" height="12.4"/>
|
||||
</g>
|
||||
</mask>
|
||||
<g class="st34">
|
||||
<path class="st7" d="M99.1,104c0.9,0,1.8,0.2,2.7,0.5l31.7,11.4c1.8,0.6,1.8,3.1,0,3.8l-26.6,9.6c-0.9,0.3-1.8,0.5-2.7,0.5
|
||||
c-0.9,0-1.9-0.2-2.7-0.5l-31.5-11.5c-1.8-0.6-1.8-3.1,0-3.8l26.4-9.5C97.2,104.1,98.2,104,99.1,104 M99.1,103.7L99.1,103.7
|
||||
c-1,0-1.9,0.2-2.8,0.5l-26.4,9.5c-0.9,0.3-1.5,1.2-1.5,2.1c0,1,0.6,1.8,1.5,2.1l31.5,11.5c0.9,0.3,1.9,0.5,2.8,0.5
|
||||
c1,0,1.9-0.2,2.8-0.5l26.6-9.6c0.9-0.3,1.5-1.2,1.5-2.1s-0.6-1.8-1.5-2.1l-31.7-11.4C101,103.9,100,103.7,99.1,103.7L99.1,103.7z"
|
||||
/>
|
||||
</g>
|
||||
<polygon class="st35" points="37.8,121.4 52.9,126.9 52.9,126.4 37.4,120.7 37.4,129.9 37.8,130 "/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 23 KiB |
@ -1,503 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 25.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 200 200" style="enable-background:new 0 0 200 200;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{clip-path:url(#XMLID_3_);fill:url(#SVGID_1_);}
|
||||
.st1{clip-path:url(#XMLID_3_);fill:url(#SVGID_2_);}
|
||||
.st2{clip-path:url(#XMLID_3_);fill:url(#SVGID_3_);}
|
||||
.st3{fill:url(#SVGID_4_);}
|
||||
.st4{filter:url(#Adobe_OpacityMaskFilter);}
|
||||
.st5{fill:url(#SVGID_6_);}
|
||||
.st6{fill:url(#SVGID_7_);}
|
||||
.st7{mask:url(#SVGID_5_);fill:none;stroke:#FFFFFF;stroke-width:0.5;stroke-miterlimit:10;}
|
||||
.st8{clip-path:url(#XMLID_5_);fill:url(#SVGID_8_);}
|
||||
.st9{clip-path:url(#XMLID_5_);fill:url(#SVGID_9_);}
|
||||
.st10{clip-path:url(#XMLID_5_);fill:url(#SVGID_10_);}
|
||||
.st11{fill:url(#SVGID_11_);}
|
||||
.st12{filter:url(#Adobe_OpacityMaskFilter_1_);}
|
||||
.st13{fill:url(#SVGID_13_);}
|
||||
.st14{fill:url(#SVGID_14_);}
|
||||
.st15{mask:url(#SVGID_12_);fill:none;stroke:#FFFFFF;stroke-width:0.5;stroke-miterlimit:10;}
|
||||
.st16{clip-path:url(#XMLID_16_);fill:url(#SVGID_15_);}
|
||||
.st17{clip-path:url(#XMLID_16_);fill:url(#SVGID_16_);}
|
||||
.st18{clip-path:url(#XMLID_16_);fill:url(#SVGID_17_);}
|
||||
.st19{fill:url(#SVGID_18_);}
|
||||
.st20{filter:url(#Adobe_OpacityMaskFilter_2_);}
|
||||
.st21{fill:url(#SVGID_20_);}
|
||||
.st22{fill:url(#SVGID_21_);}
|
||||
.st23{mask:url(#SVGID_19_);fill:none;stroke:#FFFFFF;stroke-width:0.5;stroke-miterlimit:10;}
|
||||
.st24{fill:#182AAE;}
|
||||
.st25{fill:#1A4BC0;}
|
||||
.st26{clip-path:url(#XMLID_18_);fill:url(#SVGID_22_);}
|
||||
.st27{clip-path:url(#XMLID_18_);fill:url(#SVGID_23_);}
|
||||
.st28{clip-path:url(#XMLID_18_);fill:url(#SVGID_24_);}
|
||||
.st29{fill:url(#SVGID_25_);}
|
||||
.st30{opacity:0.2;}
|
||||
.st31{fill:#FFFFFF;}
|
||||
.st32{fill:none;stroke:#FFFFFF;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||
.st33{filter:url(#Adobe_OpacityMaskFilter_3_);}
|
||||
.st34{opacity:0.15;mask:url(#SVGID_26_);}
|
||||
.st35{clip-path:url(#XMLID_20_);fill:url(#SVGID_27_);}
|
||||
.st36{clip-path:url(#XMLID_20_);fill:url(#SVGID_28_);}
|
||||
.st37{clip-path:url(#XMLID_20_);fill:url(#SVGID_29_);}
|
||||
</style>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<defs>
|
||||
<path id="XMLID_15_" d="M170.7,121.3h-36l-29.9-10.8c-2.3-0.8-6-0.8-8.2,0l-29.9,10.8h-36v28.1h0c-0.1,0.6,0.4,1.2,1.4,1.6
|
||||
l63.5,23c2.8,1.2,7.3,1.2,10.1,0l63.5-23c1-0.5,1.5-1,1.4-1.6h0V121.3z"/>
|
||||
</defs>
|
||||
<linearGradient id="XMLID_2_" gradientUnits="userSpaceOnUse" x1="30.6753" y1="142.4217" x2="170.6658" y2="142.4217">
|
||||
<stop offset="0" style="stop-color:#B8DFFE"/>
|
||||
<stop offset="1" style="stop-color:#6FA7EE"/>
|
||||
</linearGradient>
|
||||
<use xlink:href="#XMLID_15_" style="overflow:visible;fill:url(#XMLID_2_);"/>
|
||||
<clipPath id="XMLID_3_">
|
||||
<use xlink:href="#XMLID_15_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="94.1984" y1="161.1925" x2="105.3304" y2="161.1925">
|
||||
<stop offset="0" style="stop-color:#D0EAFE;stop-opacity:0"/>
|
||||
<stop offset="0.5" style="stop-color:#D4ECFE"/>
|
||||
<stop offset="1" style="stop-color:#D1EBFE;stop-opacity:0.1594"/>
|
||||
</linearGradient>
|
||||
<rect x="94.2" y="143.1" class="st0" width="11.1" height="36.2"/>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="25.1093" y1="139.2525" x2="36.2413" y2="139.2525">
|
||||
<stop offset="0" style="stop-color:#D0EAFE;stop-opacity:0"/>
|
||||
<stop offset="0.5" style="stop-color:#D4ECFE"/>
|
||||
<stop offset="1" style="stop-color:#D1EBFE;stop-opacity:0.1594"/>
|
||||
</linearGradient>
|
||||
<rect x="25.1" y="121.1" class="st1" width="11.1" height="36.2"/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="165.1093" y1="135.3214" x2="176.2413" y2="135.3214">
|
||||
<stop offset="0" style="stop-color:#D0EAFE;stop-opacity:0"/>
|
||||
<stop offset="0.5" style="stop-color:#D4ECFE"/>
|
||||
<stop offset="1" style="stop-color:#D1EBFE;stop-opacity:0.1594"/>
|
||||
</linearGradient>
|
||||
<rect x="165.1" y="117.2" class="st2" width="11.1" height="36.2"/>
|
||||
</g>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="30.6753" y1="121.2843" x2="170.6753" y2="121.2843">
|
||||
<stop offset="0" style="stop-color:#5DCBFF"/>
|
||||
<stop offset="1" style="stop-color:#2E71DD"/>
|
||||
</linearGradient>
|
||||
<path class="st3" d="M95.6,145.9l-63.5-23c-2.2-1-1.8-2.6,0.9-3.6l63.5-22.9c2.3-0.8,6-0.8,8.2,0l63.5,22.9
|
||||
c2.7,1,3.2,2.6,0.9,3.6l-63.5,23C103,147.1,98.4,147.1,95.6,145.9z"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="Adobe_OpacityMaskFilter" filterUnits="userSpaceOnUse" x="30.4" y="119.1" width="140.5" height="28">
|
||||
<feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<mask maskUnits="userSpaceOnUse" x="30.4" y="119.1" width="140.5" height="28" id="SVGID_5_">
|
||||
<g class="st4">
|
||||
<g>
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="101.9032" y1="136.2926" x2="159.4903" y2="114.5927">
|
||||
<stop offset="0" style="stop-color:#000000"/>
|
||||
<stop offset="0.5" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="1" style="stop-color:#000000"/>
|
||||
</linearGradient>
|
||||
<path class="st5" d="M169.7,68.8h-62.4c-3.3,0-6,2.7-6,6v95.3c0,3.3,2.7,6,6,6h62.4c3.3,0,6-2.7,6-6V74.8
|
||||
C175.7,71.5,173,68.8,169.7,68.8z"/>
|
||||
</g>
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="41.773" y1="139.696" x2="95.0919" y2="160.3406">
|
||||
<stop offset="0" style="stop-color:#000000"/>
|
||||
<stop offset="0.5" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="1" style="stop-color:#000000"/>
|
||||
</linearGradient>
|
||||
<path class="st6" d="M94.5,204H39.5c-2.9,0-5.2-2.3-5.2-5.2v-98.7c0-2.9,2.3-5.2,5.2-5.2h54.9c2.9,0,5.2,2.3,5.2,5.2v98.7
|
||||
C99.7,201.7,97.3,204,94.5,204z"/>
|
||||
</g>
|
||||
</mask>
|
||||
<path class="st7" d="M168.3,119.3c2.7,1,3.2,2.6,0.9,3.6l-63.5,23c-2.8,1.2-7.3,1.2-10.1,0l-63.5-23c-2.2-1-1.8-2.6,0.9-3.6"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<defs>
|
||||
<path id="XMLID_14_" d="M170.7,86.3h-36l-29.9-10.8c-2.3-0.8-6-0.8-8.2,0L66.7,86.3h-36v28.1h0c-0.1,0.6,0.4,1.2,1.4,1.6
|
||||
l63.5,23c2.8,1.2,7.3,1.2,10.1,0l63.5-23c1-0.5,1.5-1,1.4-1.6h0V86.3z"/>
|
||||
</defs>
|
||||
<linearGradient id="XMLID_4_" gradientUnits="userSpaceOnUse" x1="30.6753" y1="107.4093" x2="170.6658" y2="107.4093">
|
||||
<stop offset="0" style="stop-color:#B8DFFE"/>
|
||||
<stop offset="1" style="stop-color:#6FA7EE"/>
|
||||
</linearGradient>
|
||||
<use xlink:href="#XMLID_14_" style="overflow:visible;fill:url(#XMLID_4_);"/>
|
||||
<clipPath id="XMLID_5_">
|
||||
<use xlink:href="#XMLID_14_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="94.1984" y1="126.1802" x2="105.3304" y2="126.1802">
|
||||
<stop offset="0" style="stop-color:#D0EAFE;stop-opacity:0"/>
|
||||
<stop offset="0.5" style="stop-color:#D4ECFE"/>
|
||||
<stop offset="1" style="stop-color:#D1EBFE;stop-opacity:0.1594"/>
|
||||
</linearGradient>
|
||||
<rect x="94.2" y="108.1" class="st8" width="11.1" height="36.2"/>
|
||||
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="25.1093" y1="104.2402" x2="36.2413" y2="104.2402">
|
||||
<stop offset="0" style="stop-color:#D0EAFE;stop-opacity:0"/>
|
||||
<stop offset="0.5" style="stop-color:#D4ECFE"/>
|
||||
<stop offset="1" style="stop-color:#D1EBFE;stop-opacity:0.1594"/>
|
||||
</linearGradient>
|
||||
<rect x="25.1" y="86.1" class="st9" width="11.1" height="36.2"/>
|
||||
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="165.1093" y1="100.309" x2="176.2413" y2="100.309">
|
||||
<stop offset="0" style="stop-color:#D0EAFE;stop-opacity:0"/>
|
||||
<stop offset="0.5" style="stop-color:#D4ECFE"/>
|
||||
<stop offset="1" style="stop-color:#D1EBFE;stop-opacity:0.1594"/>
|
||||
</linearGradient>
|
||||
<rect x="165.1" y="82.2" class="st10" width="11.1" height="36.2"/>
|
||||
</g>
|
||||
<linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="30.6753" y1="86.272" x2="170.6753" y2="86.272">
|
||||
<stop offset="0" style="stop-color:#5DCBFF"/>
|
||||
<stop offset="1" style="stop-color:#2E71DD"/>
|
||||
</linearGradient>
|
||||
<path class="st11" d="M95.6,110.9l-63.5-23c-2.2-1-1.8-2.6,0.9-3.6l63.5-22.9c2.3-0.8,6-0.8,8.2,0l63.5,22.9
|
||||
c2.7,1,3.2,2.6,0.9,3.6l-63.5,23C103,112.1,98.4,112.1,95.6,110.9z"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="Adobe_OpacityMaskFilter_1_" filterUnits="userSpaceOnUse" x="30.4" y="84" width="140.5" height="28">
|
||||
<feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<mask maskUnits="userSpaceOnUse" x="30.4" y="84" width="140.5" height="28" id="SVGID_12_">
|
||||
<g class="st12">
|
||||
<g>
|
||||
<linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="101.9032" y1="101.2803" x2="159.4903" y2="79.5804">
|
||||
<stop offset="0" style="stop-color:#000000"/>
|
||||
<stop offset="0.5" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="1" style="stop-color:#000000"/>
|
||||
</linearGradient>
|
||||
<path class="st13" d="M169.7,33.8h-62.4c-3.3,0-6,2.7-6,6v95.3c0,3.3,2.7,6,6,6h62.4c3.3,0,6-2.7,6-6V39.8
|
||||
C175.7,36.5,173,33.8,169.7,33.8z"/>
|
||||
</g>
|
||||
<linearGradient id="SVGID_14_" gradientUnits="userSpaceOnUse" x1="41.773" y1="104.6837" x2="95.0919" y2="125.3282">
|
||||
<stop offset="0" style="stop-color:#000000"/>
|
||||
<stop offset="0.5" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="1" style="stop-color:#000000"/>
|
||||
</linearGradient>
|
||||
<path class="st14" d="M94.5,169H39.5c-2.9,0-5.2-2.3-5.2-5.2V65.1c0-2.9,2.3-5.2,5.2-5.2h54.9c2.9,0,5.2,2.3,5.2,5.2v98.7
|
||||
C99.7,166.7,97.3,169,94.5,169z"/>
|
||||
</g>
|
||||
</mask>
|
||||
<path class="st15" d="M168.3,84.3c2.7,1,3.2,2.6,0.9,3.6l-63.5,23c-2.8,1.2-7.3,1.2-10.1,0l-63.5-23c-2.2-1-1.8-2.6,0.9-3.6"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<defs>
|
||||
<path id="XMLID_13_" d="M170.7,51.4h-36l-29.9-10.8c-2.3-0.8-6-0.8-8.2,0L66.7,51.4h-36v28.1h0c-0.1,0.6,0.4,1.2,1.4,1.6
|
||||
l63.5,23c2.8,1.2,7.3,1.2,10.1,0l63.5-23c1-0.5,1.5-1,1.4-1.6h0V51.4z"/>
|
||||
</defs>
|
||||
<linearGradient id="XMLID_6_" gradientUnits="userSpaceOnUse" x1="30.6753" y1="72.5137" x2="170.6658" y2="72.5137">
|
||||
<stop offset="0" style="stop-color:#B8DFFE"/>
|
||||
<stop offset="1" style="stop-color:#6FA7EE"/>
|
||||
</linearGradient>
|
||||
<use xlink:href="#XMLID_13_" style="overflow:visible;fill:url(#XMLID_6_);"/>
|
||||
<clipPath id="XMLID_16_">
|
||||
<use xlink:href="#XMLID_13_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<linearGradient id="SVGID_15_" gradientUnits="userSpaceOnUse" x1="94.1984" y1="91.2846" x2="105.3304" y2="91.2846">
|
||||
<stop offset="0" style="stop-color:#D0EAFE;stop-opacity:0"/>
|
||||
<stop offset="0.5" style="stop-color:#D4ECFE"/>
|
||||
<stop offset="1" style="stop-color:#D1EBFE;stop-opacity:0.1594"/>
|
||||
</linearGradient>
|
||||
<rect x="94.2" y="73.2" class="st16" width="11.1" height="36.2"/>
|
||||
<linearGradient id="SVGID_16_" gradientUnits="userSpaceOnUse" x1="25.1093" y1="69.3446" x2="36.2413" y2="69.3446">
|
||||
<stop offset="0" style="stop-color:#D0EAFE;stop-opacity:0"/>
|
||||
<stop offset="0.5" style="stop-color:#D4ECFE"/>
|
||||
<stop offset="1" style="stop-color:#D1EBFE;stop-opacity:0.1594"/>
|
||||
</linearGradient>
|
||||
<rect x="25.1" y="51.2" class="st17" width="11.1" height="36.2"/>
|
||||
<linearGradient id="SVGID_17_" gradientUnits="userSpaceOnUse" x1="165.1093" y1="65.4134" x2="176.2413" y2="65.4134">
|
||||
<stop offset="0" style="stop-color:#D0EAFE;stop-opacity:0"/>
|
||||
<stop offset="0.5" style="stop-color:#D4ECFE"/>
|
||||
<stop offset="1" style="stop-color:#D1EBFE;stop-opacity:0.1594"/>
|
||||
</linearGradient>
|
||||
<rect x="165.1" y="47.3" class="st18" width="11.1" height="36.2"/>
|
||||
</g>
|
||||
<linearGradient id="SVGID_18_" gradientUnits="userSpaceOnUse" x1="30.6753" y1="51.3763" x2="170.6753" y2="51.3763">
|
||||
<stop offset="0" style="stop-color:#5DCBFF"/>
|
||||
<stop offset="1" style="stop-color:#2E71DD"/>
|
||||
</linearGradient>
|
||||
<path class="st19" d="M95.6,76L32.1,53c-2.2-1-1.8-2.6,0.9-3.6l63.5-22.9c2.3-0.8,6-0.8,8.2,0l63.5,22.9c2.7,1,3.2,2.6,0.9,3.6
|
||||
l-63.5,23C103,77.2,98.4,77.2,95.6,76z"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="Adobe_OpacityMaskFilter_2_" filterUnits="userSpaceOnUse" x="30.4" y="49.2" width="140.5" height="28">
|
||||
<feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<mask maskUnits="userSpaceOnUse" x="30.4" y="49.2" width="140.5" height="28" id="SVGID_19_">
|
||||
<g class="st20">
|
||||
<g>
|
||||
<linearGradient id="SVGID_20_" gradientUnits="userSpaceOnUse" x1="101.9032" y1="66.3846" x2="159.4903" y2="44.6847">
|
||||
<stop offset="0" style="stop-color:#000000"/>
|
||||
<stop offset="0.5" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="1" style="stop-color:#000000"/>
|
||||
</linearGradient>
|
||||
<path class="st21" d="M169.7-1.1h-62.4c-3.3,0-6,2.7-6,6v95.3c0,3.3,2.7,6,6,6h62.4c3.3,0,6-2.7,6-6V4.9
|
||||
C175.7,1.6,173-1.1,169.7-1.1z"/>
|
||||
</g>
|
||||
<linearGradient id="SVGID_21_" gradientUnits="userSpaceOnUse" x1="41.773" y1="69.788" x2="95.0919" y2="90.4326">
|
||||
<stop offset="0" style="stop-color:#000000"/>
|
||||
<stop offset="0.5" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="1" style="stop-color:#000000"/>
|
||||
</linearGradient>
|
||||
<path class="st22" d="M94.5,134.1H39.5c-2.9,0-5.2-2.3-5.2-5.2V30.2c0-2.9,2.3-5.2,5.2-5.2h54.9c2.9,0,5.2,2.3,5.2,5.2v98.7
|
||||
C99.7,131.8,97.3,134.1,94.5,134.1z"/>
|
||||
</g>
|
||||
</mask>
|
||||
<path class="st23" d="M168.3,49.4c2.7,1,3.2,2.6,0.9,3.6l-63.5,23c-2.8,1.2-7.3,1.2-10.1,0L32.1,53c-2.2-1-1.8-2.6,0.9-3.6"/>
|
||||
</g>
|
||||
<g>
|
||||
<path id="XMLID_7_" class="st24" d="M151,41.1h-25.9l-21.5-7.8c-1.6-0.6-4.3-0.6-5.9,0l-21.5,7.8H50.4v10.2h0c0,0.4,0.3,0.9,1,1.2
|
||||
L97,69c2,0.9,5.3,0.9,7.3,0l45.6-16.5c0.7-0.3,1.1-0.8,1-1.2h0V41.1z"/>
|
||||
<path id="XMLID_12_" class="st25" d="M151,40.6h-25.9l-21.5-7.8c-1.6-0.6-4.3-0.6-5.9,0l-21.5,7.8H50.4v10.2h0
|
||||
c0,0.4,0.3,0.9,1,1.2L97,68.4c2,0.9,5.3,0.9,7.3,0l45.6-16.5c0.7-0.3,1.1-0.8,1-1.2h0V40.6z"/>
|
||||
<g>
|
||||
<defs>
|
||||
<path id="XMLID_11_" d="M151,39.1h-25.9l-21.5-7.8c-1.6-0.6-4.3-0.6-5.9,0l-21.5,7.8H50.4v10.2h0c0,0.4,0.3,0.9,1,1.2L97,67
|
||||
c2,0.9,5.3,0.9,7.3,0l45.6-16.5c0.7-0.3,1.1-0.8,1-1.2h0V39.1z"/>
|
||||
</defs>
|
||||
<linearGradient id="XMLID_17_" gradientUnits="userSpaceOnUse" x1="50.37" y1="49.2973" x2="150.9738" y2="49.2973">
|
||||
<stop offset="0" style="stop-color:#AFDAFE"/>
|
||||
<stop offset="1" style="stop-color:#6FA7EE"/>
|
||||
</linearGradient>
|
||||
<use xlink:href="#XMLID_11_" style="overflow:visible;fill:url(#XMLID_17_);"/>
|
||||
<clipPath id="XMLID_18_">
|
||||
<use xlink:href="#XMLID_11_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<linearGradient id="SVGID_22_" gradientUnits="userSpaceOnUse" x1="96.0207" y1="62.7869" x2="104.0207" y2="62.7869">
|
||||
<stop offset="0" style="stop-color:#D0EAFE;stop-opacity:0"/>
|
||||
<stop offset="0.5" style="stop-color:#D4ECFE"/>
|
||||
<stop offset="1" style="stop-color:#D1EBFE;stop-opacity:0.1594"/>
|
||||
</linearGradient>
|
||||
<rect x="96" y="54.8" class="st26" width="8" height="16"/>
|
||||
<linearGradient id="SVGID_23_" gradientUnits="userSpaceOnUse" x1="46.37" y1="47.0198" x2="54.37" y2="47.0198">
|
||||
<stop offset="0" style="stop-color:#D0EAFE;stop-opacity:0"/>
|
||||
<stop offset="0.5" style="stop-color:#D4ECFE"/>
|
||||
<stop offset="1" style="stop-color:#D1EBFE;stop-opacity:0.1594"/>
|
||||
</linearGradient>
|
||||
<rect x="46.4" y="39" class="st27" width="8" height="16"/>
|
||||
<linearGradient id="SVGID_24_" gradientUnits="userSpaceOnUse" x1="146.9807" y1="44.1947" x2="154.9807" y2="44.1947">
|
||||
<stop offset="0" style="stop-color:#D0EAFE;stop-opacity:0"/>
|
||||
<stop offset="0.5" style="stop-color:#D4ECFE"/>
|
||||
<stop offset="1" style="stop-color:#D1EBFE;stop-opacity:0.1594"/>
|
||||
</linearGradient>
|
||||
<rect x="147" y="36.2" class="st28" width="8" height="16"/>
|
||||
</g>
|
||||
<linearGradient id="SVGID_25_" gradientUnits="userSpaceOnUse" x1="50.37" y1="39.1378" x2="150.9807" y2="39.1378">
|
||||
<stop offset="0" style="stop-color:#C6E4FF"/>
|
||||
<stop offset="1" style="stop-color:#BADFFE"/>
|
||||
</linearGradient>
|
||||
<path class="st29" d="M97,56.8L51.4,40.3c-1.6-0.7-1.3-1.9,0.7-2.6l45.6-16.5c1.6-0.6,4.3-0.6,5.9,0l45.6,16.5
|
||||
c2,0.7,2.3,1.9,0.7,2.6l-45.6,16.5C102.3,57.7,99,57.7,97,56.8z"/>
|
||||
<g class="st30">
|
||||
<path class="st31" d="M100.7,21c1.1,0,2.1,0.2,2.9,0.4l45.6,16.5c0.9,0.3,1.5,0.8,1.5,1.2c0,0.3-0.3,0.6-0.9,0.9l-45.7,16.5
|
||||
c-0.9,0.4-2.2,0.6-3.5,0.6c-1.3,0-2.6-0.2-3.5-0.7L51.5,40.1c-0.6-0.3-0.9-0.6-0.9-0.9c0-0.4,0.6-0.9,1.5-1.2l45.6-16.5
|
||||
C98.6,21.2,99.6,21,100.7,21 M100.7,20.8c-1.1,0-2.1,0.1-3,0.4L52.1,37.7c-2,0.7-2.3,1.9-0.7,2.6L97,56.8c1,0.4,2.3,0.7,3.6,0.7
|
||||
c1.3,0,2.6-0.2,3.6-0.7l45.6-16.5c1.6-0.7,1.3-1.9-0.7-2.6l-45.6-16.5C102.8,20.9,101.7,20.8,100.7,20.8L100.7,20.8z"/>
|
||||
</g>
|
||||
</g>
|
||||
<line class="st32" x1="53.7" y1="46.3" x2="96.6" y2="61.8"/>
|
||||
<line class="st32" x1="148" y1="46.3" x2="105.1" y2="61.8"/>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st25" d="M163.8,62.2c-0.4,0.2-0.7,0.8-0.7,1.2l0,13c0,0.4,0.3,0.6,0.7,0.4c0.4-0.2,0.7-0.8,0.7-1.2l0-13
|
||||
C164.5,62.1,164.2,62,163.8,62.2z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st25" d="M156.5,65.1c-0.4,0.2-0.7,0.8-0.7,1.2l0,13c0,0.4,0.3,0.6,0.7,0.4c0.4-0.2,0.7-0.8,0.7-1.2l0-13
|
||||
C157.2,65,156.9,64.8,156.5,65.1z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st25" d="M149.2,67.8c-0.4,0.2-0.7,0.8-0.7,1.2l0,13c0,0.4,0.3,0.6,0.7,0.4c0.4-0.2,0.7-0.8,0.7-1.2l0-13
|
||||
C149.9,67.8,149.6,67.6,149.2,67.8z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st25" d="M142,70.4c-0.4,0.2-0.7,0.8-0.7,1.2l0,13c0,0.4,0.3,0.6,0.7,0.4c0.4-0.2,0.7-0.8,0.7-1.2l0-13
|
||||
C142.7,70.3,142.4,70.2,142,70.4z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st25" d="M134.8,73.1c-0.4,0.2-0.7,0.8-0.7,1.2l0,13c0,0.4,0.3,0.6,0.7,0.4c0.4-0.2,0.7-0.8,0.7-1.2l0-13
|
||||
C135.5,73,135.2,72.8,134.8,73.1z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st25" d="M127.4,75.8c-0.4,0.2-0.7,0.8-0.7,1.2l0,13c0,0.4,0.3,0.6,0.7,0.4c0.4-0.2,0.7-0.8,0.7-1.2l0-13
|
||||
C128.1,75.7,127.8,75.6,127.4,75.8z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st25" d="M120.3,78.5c-0.4,0.2-0.7,0.8-0.7,1.2l0,13c0,0.4,0.3,0.6,0.7,0.4c0.4-0.2,0.7-0.8,0.7-1.2l0-13
|
||||
C121,78.4,120.7,78.3,120.3,78.5z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st25" d="M113.2,81.1c-0.4,0.2-0.7,0.8-0.7,1.2l0,13c0,0.4,0.3,0.6,0.7,0.4c0.4-0.2,0.7-0.8,0.7-1.2l0-13
|
||||
C113.9,81,113.6,80.8,113.2,81.1z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st25" d="M163.8,97.1c-0.4,0.2-0.7,0.8-0.7,1.2l0,13c0,0.4,0.3,0.6,0.7,0.4c0.4-0.2,0.7-0.8,0.7-1.2l0-13
|
||||
C164.5,97,164.2,96.8,163.8,97.1z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st25" d="M156.5,99.9c-0.4,0.2-0.7,0.8-0.7,1.2l0,13c0,0.4,0.3,0.6,0.7,0.4c0.4-0.2,0.7-0.8,0.7-1.2l0-13
|
||||
C157.2,99.9,156.9,99.7,156.5,99.9z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st25" d="M149.2,102.7c-0.4,0.2-0.7,0.8-0.7,1.2l0,13c0,0.4,0.3,0.6,0.7,0.4c0.4-0.2,0.7-0.8,0.7-1.2l0-13
|
||||
C149.9,102.7,149.6,102.5,149.2,102.7z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st25" d="M142,105.3c-0.4,0.2-0.7,0.8-0.7,1.2l0,13c0,0.4,0.3,0.6,0.7,0.4c0.4-0.2,0.7-0.8,0.7-1.2l0-13
|
||||
C142.7,105.2,142.4,105.1,142,105.3z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st25" d="M134.8,107.9c-0.4,0.2-0.7,0.8-0.7,1.2l0,13c0,0.4,0.3,0.6,0.7,0.4c0.4-0.2,0.7-0.8,0.7-1.2l0-13
|
||||
C135.5,107.9,135.2,107.7,134.8,107.9z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st25" d="M127.4,110.7c-0.4,0.2-0.7,0.8-0.7,1.2l0,13c0,0.4,0.3,0.6,0.7,0.4c0.4-0.2,0.7-0.8,0.7-1.2l0-13
|
||||
C128.1,110.6,127.8,110.4,127.4,110.7z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st25" d="M120.3,113.4c-0.4,0.2-0.7,0.8-0.7,1.2l0,13c0,0.4,0.3,0.6,0.7,0.4c0.4-0.2,0.7-0.8,0.7-1.2l0-13
|
||||
C121,113.3,120.7,113.2,120.3,113.4z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st25" d="M113.2,115.9c-0.4,0.2-0.7,0.8-0.7,1.2l0,13c0,0.4,0.3,0.6,0.7,0.4c0.4-0.2,0.7-0.8,0.7-1.2l0-13
|
||||
C113.9,115.9,113.6,115.7,113.2,115.9z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st25" d="M163.8,130.8c-0.4,0.2-0.7,0.8-0.7,1.2l0,13c0,0.4,0.3,0.6,0.7,0.4c0.4-0.2,0.7-0.8,0.7-1.2l0-13
|
||||
C164.5,130.8,164.2,130.6,163.8,130.8z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st25" d="M156.5,133.7c-0.4,0.2-0.7,0.8-0.7,1.2l0,13c0,0.4,0.3,0.6,0.7,0.4c0.4-0.2,0.7-0.8,0.7-1.2l0-13
|
||||
C157.2,133.6,156.9,133.5,156.5,133.7z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st25" d="M149.2,136.5c-0.4,0.2-0.7,0.8-0.7,1.2l0,13c0,0.4,0.3,0.6,0.7,0.4c0.4-0.2,0.7-0.8,0.7-1.2l0-13
|
||||
C149.9,136.4,149.6,136.3,149.2,136.5z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st25" d="M142,139c-0.4,0.2-0.7,0.8-0.7,1.2l0,13c0,0.4,0.3,0.6,0.7,0.4c0.4-0.2,0.7-0.8,0.7-1.2l0-13
|
||||
C142.7,139,142.4,138.8,142,139z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st25" d="M134.8,141.7c-0.4,0.2-0.7,0.8-0.7,1.2l0,13c0,0.4,0.3,0.6,0.7,0.4c0.4-0.2,0.7-0.8,0.7-1.2l0-13
|
||||
C135.5,141.6,135.2,141.5,134.8,141.7z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st25" d="M127.4,144.4c-0.4,0.2-0.7,0.8-0.7,1.2l0,13c0,0.4,0.3,0.6,0.7,0.4c0.4-0.2,0.7-0.8,0.7-1.2l0-13
|
||||
C128.1,144.4,127.8,144.2,127.4,144.4z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st25" d="M120.3,147.1c-0.4,0.2-0.7,0.8-0.7,1.2l0,13c0,0.4,0.3,0.6,0.7,0.4c0.4-0.2,0.7-0.8,0.7-1.2l0-13
|
||||
C121,147.1,120.7,146.9,120.3,147.1z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st25" d="M113.2,149.7c-0.4,0.2-0.7,0.8-0.7,1.2l0,13c0,0.4,0.3,0.6,0.7,0.4c0.4-0.2,0.7-0.8,0.7-1.2l0-13
|
||||
C113.9,149.6,113.6,149.5,113.2,149.7z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st25" d="M84.3,83.1c1,0.4,1.8,1.7,1.8,3c0,1.3-0.8,2-1.8,1.7L52.6,76.1c-1-0.4-1.8-1.7-1.8-3c0-1.3,0.8-2,1.8-1.7
|
||||
L84.3,83.1z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st25" d="M40,66.7c1.2,0.4,2.2,2,2.2,3.6c0,1.5-0.9,2.4-2.1,2c-1.2-0.4-2.2-2-2.2-3.6C37.8,67.1,38.8,66.2,40,66.7z"
|
||||
/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st25" d="M45.9,70c0.6,0.2,1.1,1,1.1,1.8c0,0.8-0.5,1.2-1.1,1s-1.1-1-1.1-1.8C44.8,70.3,45.3,69.8,45.9,70z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st25" d="M84.3,118.5c1,0.4,1.8,1.7,1.8,3c0,1.3-0.8,2-1.8,1.7l-31.7-11.5c-1-0.4-1.8-1.7-1.8-3c0-1.3,0.8-2,1.8-1.7
|
||||
L84.3,118.5z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st25" d="M40,102.1c1.2,0.4,2.2,2,2.2,3.6c0,1.5-0.9,2.4-2.1,2c-1.2-0.4-2.2-2-2.2-3.6
|
||||
C37.8,102.6,38.8,101.7,40,102.1z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st25" d="M45.9,105.5c0.6,0.2,1.1,1,1.1,1.8c0,0.8-0.5,1.2-1.1,1c-0.6-0.2-1.1-1-1.1-1.8
|
||||
C44.8,105.7,45.3,105.3,45.9,105.5z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st25" d="M84.3,152.9c1,0.4,1.8,1.7,1.8,3c0,1.3-0.8,2-1.8,1.7L52.6,146c-1-0.4-1.8-1.7-1.8-3c0-1.3,0.8-2,1.8-1.7
|
||||
L84.3,152.9z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st25" d="M40,136.5c1.2,0.4,2.2,2,2.2,3.6c0,1.5-0.9,2.4-2.1,2c-1.2-0.4-2.2-2-2.2-3.6S38.8,136.1,40,136.5z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st25" d="M45.9,139.9c0.6,0.2,1.1,1,1.1,1.8c0,0.8-0.5,1.2-1.1,1c-0.6-0.2-1.1-1-1.1-1.8S45.3,139.7,45.9,139.9z"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="Adobe_OpacityMaskFilter_3_" filterUnits="userSpaceOnUse" x="46.4" y="50.6" width="108.6" height="41.5">
|
||||
<feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<mask maskUnits="userSpaceOnUse" x="46.4" y="50.6" width="108.6" height="41.5" id="SVGID_26_">
|
||||
<g class="st33">
|
||||
<path class="st31" d="M95.6,77L32.1,54c-2.2-1-1.8-2.6,0.9-3.6l63.5-22.9c2.3-0.8,6-0.8,8.2,0l63.5,22.9c2.7,1,3.2,2.6,0.9,3.6
|
||||
l-63.5,23C103,78.2,98.4,78.2,95.6,77z"/>
|
||||
</g>
|
||||
</mask>
|
||||
<g class="st34">
|
||||
<g>
|
||||
<path id="XMLID_10_" class="st24" d="M151,71.1l-25.9,20l-21.5-7.8c-1.6-0.6-4.3-0.6-5.9,0l-21.5,7.8l-25.9-20V51.3h0
|
||||
c0,0.4,0.3,0.9,1,1.2L97,69c2,0.9,5.3,0.9,7.3,0l45.6-16.5c0.7-0.3,1.1-0.8,1-1.2h0V71.1z"/>
|
||||
<path id="XMLID_9_" class="st25" d="M151,70.6l-25.9,20l-21.5-7.8c-1.6-0.6-4.3-0.6-5.9,0l-21.5,7.8l-25.9-20V50.7h0
|
||||
c0,0.4,0.3,0.9,1,1.2L97,68.4c2,0.9,5.3,0.9,7.3,0l45.6-16.5c0.7-0.3,1.1-0.8,1-1.2h0V70.6z"/>
|
||||
<g>
|
||||
<defs>
|
||||
<path id="XMLID_8_" d="M151,72.1l-25.9,20l-21.5-7.8c-1.6-0.6-4.3-0.6-5.9,0l-21.5,7.8l-25.9-20V52.3h0c0,0.4,0.3,0.9,1,1.2
|
||||
L97,70c2,0.9,5.3,0.9,7.3,0l45.6-16.5c0.7-0.3,1.1-0.8,1-1.2h0V72.1z"/>
|
||||
</defs>
|
||||
<linearGradient id="XMLID_19_" gradientUnits="userSpaceOnUse" x1="50.37" y1="72.1934" x2="150.9738" y2="72.1934">
|
||||
<stop offset="0" style="stop-color:#AFDAFE"/>
|
||||
<stop offset="1" style="stop-color:#6FA7EE"/>
|
||||
</linearGradient>
|
||||
<use xlink:href="#XMLID_8_" style="overflow:visible;fill:url(#XMLID_19_);"/>
|
||||
<clipPath id="XMLID_20_">
|
||||
<use xlink:href="#XMLID_8_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<linearGradient id="SVGID_27_" gradientUnits="userSpaceOnUse" x1="96.0207" y1="74.1138" x2="104.0207" y2="74.1138">
|
||||
<stop offset="0" style="stop-color:#D0EAFE;stop-opacity:0"/>
|
||||
<stop offset="0.5" style="stop-color:#D4ECFE"/>
|
||||
<stop offset="1" style="stop-color:#D1EBFE;stop-opacity:0.1594"/>
|
||||
</linearGradient>
|
||||
<rect x="96" y="66.1" class="st35" width="8" height="16"/>
|
||||
<linearGradient id="SVGID_28_" gradientUnits="userSpaceOnUse" x1="46.37" y1="57.6328" x2="54.37" y2="57.6328">
|
||||
<stop offset="0" style="stop-color:#D0EAFE;stop-opacity:0"/>
|
||||
<stop offset="0.5" style="stop-color:#D4ECFE"/>
|
||||
<stop offset="1" style="stop-color:#D1EBFE;stop-opacity:0.1594"/>
|
||||
</linearGradient>
|
||||
<rect x="46.4" y="50.6" class="st36" width="8" height="14"/>
|
||||
<linearGradient id="SVGID_29_" gradientUnits="userSpaceOnUse" x1="146.9807" y1="58.4731" x2="154.9807" y2="58.4731">
|
||||
<stop offset="0" style="stop-color:#D0EAFE;stop-opacity:0"/>
|
||||
<stop offset="0.5" style="stop-color:#D4ECFE"/>
|
||||
<stop offset="1" style="stop-color:#D1EBFE;stop-opacity:0.1594"/>
|
||||
</linearGradient>
|
||||
<rect x="147" y="51.5" class="st37" width="8" height="14"/>
|
||||
</g>
|
||||
<g class="st30">
|
||||
<path class="st31" d="M100.7,54c1.1,0,2.1,0.2,2.9,0.4l45.6,16.5c0.9,0.3,1.5,0.8,1.5,1.2c0,0.3-0.3,0.6-0.9,0.9l-45.7,16.5
|
||||
c-0.9,0.4-2.2,0.6-3.5,0.6c-1.3,0-2.6-0.2-3.5-0.7L51.5,73.1c-0.6-0.3-0.9-0.6-0.9-0.9c0-0.4,0.6-0.9,1.5-1.2l45.6-16.5
|
||||
C98.6,54.2,99.6,54,100.7,54 M100.7,53.8c-1.1,0-2.1,0.1-3,0.4L52.1,70.7c-2,0.7-2.3,1.9-0.7,2.6L97,89.8c1,0.4,2.3,0.7,3.6,0.7
|
||||
c1.3,0,2.6-0.2,3.6-0.7l45.6-16.5c1.6-0.7,1.3-1.9-0.7-2.6l-45.6-16.5C102.8,53.9,101.7,53.8,100.7,53.8L100.7,53.8z"/>
|
||||
</g>
|
||||
</g>
|
||||
<line class="st32" x1="53.7" y1="58.8" x2="96.6" y2="74.3"/>
|
||||
<line class="st32" x1="148" y1="58.8" x2="105.1" y2="74.3"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 25 KiB |
@ -1,384 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 25.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 200 200" style="enable-background:new 0 0 200 200;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{clip-path:url(#XMLID_3_);fill:url(#SVGID_1_);}
|
||||
.st1{clip-path:url(#XMLID_3_);fill:url(#SVGID_2_);}
|
||||
.st2{clip-path:url(#XMLID_3_);fill:url(#SVGID_3_);}
|
||||
.st3{fill:url(#SVGID_4_);}
|
||||
.st4{filter:url(#Adobe_OpacityMaskFilter);}
|
||||
.st5{fill:url(#SVGID_6_);}
|
||||
.st6{fill:url(#SVGID_7_);}
|
||||
.st7{mask:url(#SVGID_5_);fill:none;stroke:#FFFFFF;stroke-width:0.5;stroke-miterlimit:10;}
|
||||
.st8{clip-path:url(#XMLID_5_);fill:url(#SVGID_8_);}
|
||||
.st9{clip-path:url(#XMLID_5_);fill:url(#SVGID_9_);}
|
||||
.st10{clip-path:url(#XMLID_5_);fill:url(#SVGID_10_);}
|
||||
.st11{fill:url(#SVGID_11_);}
|
||||
.st12{filter:url(#Adobe_OpacityMaskFilter_1_);}
|
||||
.st13{fill:url(#SVGID_13_);}
|
||||
.st14{fill:url(#SVGID_14_);}
|
||||
.st15{mask:url(#SVGID_12_);fill:none;stroke:#FFFFFF;stroke-width:0.5;stroke-miterlimit:10;}
|
||||
.st16{fill:#182AAE;}
|
||||
.st17{fill:#1A4BC0;}
|
||||
.st18{clip-path:url(#XMLID_15_);fill:url(#SVGID_15_);}
|
||||
.st19{clip-path:url(#XMLID_15_);fill:url(#SVGID_16_);}
|
||||
.st20{clip-path:url(#XMLID_15_);fill:url(#SVGID_17_);}
|
||||
.st21{fill:url(#SVGID_18_);}
|
||||
.st22{opacity:0.2;}
|
||||
.st23{fill:#FFFFFF;}
|
||||
.st24{fill:none;stroke:#FFFFFF;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||
.st25{filter:url(#Adobe_OpacityMaskFilter_2_);}
|
||||
.st26{opacity:0.15;mask:url(#SVGID_19_);}
|
||||
.st27{clip-path:url(#XMLID_17_);fill:url(#SVGID_20_);}
|
||||
.st28{clip-path:url(#XMLID_17_);fill:url(#SVGID_21_);}
|
||||
.st29{clip-path:url(#XMLID_17_);fill:url(#SVGID_22_);}
|
||||
</style>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<defs>
|
||||
<path id="XMLID_14_" d="M170,105.9h-36l-29.9-10.8c-2.3-0.8-6-0.8-8.2,0L66,105.9H30V134h0c-0.1,0.6,0.4,1.2,1.4,1.6l63.5,23
|
||||
c2.8,1.2,7.3,1.2,10.1,0l63.5-23c1-0.5,1.5-1,1.4-1.6h0V105.9z"/>
|
||||
</defs>
|
||||
<linearGradient id="XMLID_2_" gradientUnits="userSpaceOnUse" x1="30" y1="127.0417" x2="169.9905" y2="127.0417">
|
||||
<stop offset="0" style="stop-color:#B8DFFE"/>
|
||||
<stop offset="1" style="stop-color:#6FA7EE"/>
|
||||
</linearGradient>
|
||||
<use xlink:href="#XMLID_14_" style="overflow:visible;fill:url(#XMLID_2_);"/>
|
||||
<clipPath id="XMLID_3_">
|
||||
<use xlink:href="#XMLID_14_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="93.5231" y1="145.8125" x2="104.6551" y2="145.8125">
|
||||
<stop offset="0" style="stop-color:#D0EAFE;stop-opacity:0"/>
|
||||
<stop offset="0.5" style="stop-color:#D4ECFE"/>
|
||||
<stop offset="1" style="stop-color:#D1EBFE;stop-opacity:0.1594"/>
|
||||
</linearGradient>
|
||||
<rect x="93.5" y="127.7" class="st0" width="11.1" height="36.2"/>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="24.434" y1="123.8725" x2="35.566" y2="123.8725">
|
||||
<stop offset="0" style="stop-color:#D0EAFE;stop-opacity:0"/>
|
||||
<stop offset="0.5" style="stop-color:#D4ECFE"/>
|
||||
<stop offset="1" style="stop-color:#D1EBFE;stop-opacity:0.1594"/>
|
||||
</linearGradient>
|
||||
<rect x="24.4" y="105.7" class="st1" width="11.1" height="36.2"/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="164.434" y1="119.9413" x2="175.566" y2="119.9413">
|
||||
<stop offset="0" style="stop-color:#D0EAFE;stop-opacity:0"/>
|
||||
<stop offset="0.5" style="stop-color:#D4ECFE"/>
|
||||
<stop offset="1" style="stop-color:#D1EBFE;stop-opacity:0.1594"/>
|
||||
</linearGradient>
|
||||
<rect x="164.4" y="101.8" class="st2" width="11.1" height="36.2"/>
|
||||
</g>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="30" y1="105.9043" x2="170" y2="105.9043">
|
||||
<stop offset="0" style="stop-color:#5DCBFF"/>
|
||||
<stop offset="1" style="stop-color:#2E71DD"/>
|
||||
</linearGradient>
|
||||
<path class="st3" d="M94.9,130.5l-63.5-23c-2.2-1-1.8-2.6,0.9-3.6L95.9,81c2.3-0.8,6-0.8,8.2,0l63.5,22.9c2.7,1,3.2,2.6,0.9,3.6
|
||||
l-63.5,23C102.3,131.8,97.7,131.8,94.9,130.5z"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="Adobe_OpacityMaskFilter" filterUnits="userSpaceOnUse" x="29.8" y="103.7" width="140.5" height="28">
|
||||
<feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<mask maskUnits="userSpaceOnUse" x="29.8" y="103.7" width="140.5" height="28" id="SVGID_5_">
|
||||
<g class="st4">
|
||||
<g>
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="101.2279" y1="120.9126" x2="158.8149" y2="99.2127">
|
||||
<stop offset="0" style="stop-color:#000000"/>
|
||||
<stop offset="0.5" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="1" style="stop-color:#000000"/>
|
||||
</linearGradient>
|
||||
<path class="st5" d="M169,53.5h-62.4c-3.3,0-6,2.7-6,6v95.3c0,3.3,2.7,6,6,6H169c3.3,0,6-2.7,6-6V59.5
|
||||
C175,56.2,172.3,53.5,169,53.5z"/>
|
||||
</g>
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="41.0977" y1="124.316" x2="94.4166" y2="144.9606">
|
||||
<stop offset="0" style="stop-color:#000000"/>
|
||||
<stop offset="0.5" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="1" style="stop-color:#000000"/>
|
||||
</linearGradient>
|
||||
<path class="st6" d="M93.8,188.6H38.8c-2.9,0-5.2-2.3-5.2-5.2V84.7c0-2.9,2.3-5.2,5.2-5.2h54.9c2.9,0,5.2,2.3,5.2,5.2v98.7
|
||||
C99,186.3,96.7,188.6,93.8,188.6z"/>
|
||||
</g>
|
||||
</mask>
|
||||
<path class="st7" d="M167.6,103.9c2.7,1,3.2,2.6,0.9,3.6l-63.5,23c-2.8,1.2-7.3,1.2-10.1,0l-63.5-23c-2.2-1-1.8-2.6,0.9-3.6"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<defs>
|
||||
<path id="XMLID_13_" d="M170,71h-36l-29.9-10.8c-2.3-0.8-6-0.8-8.2,0L66,71H30v28.1h0c-0.1,0.6,0.4,1.2,1.4,1.6l63.5,23
|
||||
c2.8,1.2,7.3,1.2,10.1,0l63.5-23c1-0.5,1.5-1,1.4-1.6h0V71z"/>
|
||||
</defs>
|
||||
<linearGradient id="XMLID_4_" gradientUnits="userSpaceOnUse" x1="30" y1="92.146" x2="169.9905" y2="92.146">
|
||||
<stop offset="0" style="stop-color:#B8DFFE"/>
|
||||
<stop offset="1" style="stop-color:#6FA7EE"/>
|
||||
</linearGradient>
|
||||
<use xlink:href="#XMLID_13_" style="overflow:visible;fill:url(#XMLID_4_);"/>
|
||||
<clipPath id="XMLID_5_">
|
||||
<use xlink:href="#XMLID_13_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="93.5231" y1="110.9169" x2="104.6551" y2="110.9169">
|
||||
<stop offset="0" style="stop-color:#D0EAFE;stop-opacity:0"/>
|
||||
<stop offset="0.5" style="stop-color:#D4ECFE"/>
|
||||
<stop offset="1" style="stop-color:#D1EBFE;stop-opacity:0.1594"/>
|
||||
</linearGradient>
|
||||
<rect x="93.5" y="92.8" class="st8" width="11.1" height="36.2"/>
|
||||
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="24.434" y1="88.9769" x2="35.566" y2="88.9769">
|
||||
<stop offset="0" style="stop-color:#D0EAFE;stop-opacity:0"/>
|
||||
<stop offset="0.5" style="stop-color:#D4ECFE"/>
|
||||
<stop offset="1" style="stop-color:#D1EBFE;stop-opacity:0.1594"/>
|
||||
</linearGradient>
|
||||
<rect x="24.4" y="70.9" class="st9" width="11.1" height="36.2"/>
|
||||
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="164.434" y1="85.0457" x2="175.566" y2="85.0457">
|
||||
<stop offset="0" style="stop-color:#D0EAFE;stop-opacity:0"/>
|
||||
<stop offset="0.5" style="stop-color:#D4ECFE"/>
|
||||
<stop offset="1" style="stop-color:#D1EBFE;stop-opacity:0.1594"/>
|
||||
</linearGradient>
|
||||
<rect x="164.4" y="66.9" class="st10" width="11.1" height="36.2"/>
|
||||
</g>
|
||||
<linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="30" y1="71.0087" x2="170" y2="71.0087">
|
||||
<stop offset="0" style="stop-color:#5DCBFF"/>
|
||||
<stop offset="1" style="stop-color:#2E71DD"/>
|
||||
</linearGradient>
|
||||
<path class="st11" d="M94.9,95.6l-63.5-23c-2.2-1-1.8-2.6,0.9-3.6l63.5-22.9c2.3-0.8,6-0.8,8.2,0L167.6,69c2.7,1,3.2,2.6,0.9,3.6
|
||||
l-63.5,23C102.3,96.9,97.7,96.9,94.9,95.6z"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="Adobe_OpacityMaskFilter_1_" filterUnits="userSpaceOnUse" x="29.8" y="68.8" width="140.5" height="28">
|
||||
<feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<mask maskUnits="userSpaceOnUse" x="29.8" y="68.8" width="140.5" height="28" id="SVGID_12_">
|
||||
<g class="st12">
|
||||
<g>
|
||||
<linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="101.2279" y1="86.017" x2="158.8149" y2="64.3171">
|
||||
<stop offset="0" style="stop-color:#000000"/>
|
||||
<stop offset="0.5" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="1" style="stop-color:#000000"/>
|
||||
</linearGradient>
|
||||
<path class="st13" d="M169,18.6h-62.4c-3.3,0-6,2.7-6,6v95.3c0,3.3,2.7,6,6,6H169c3.3,0,6-2.7,6-6V24.6
|
||||
C175,21.3,172.3,18.6,169,18.6z"/>
|
||||
</g>
|
||||
<linearGradient id="SVGID_14_" gradientUnits="userSpaceOnUse" x1="41.0977" y1="89.4203" x2="94.4166" y2="110.0649">
|
||||
<stop offset="0" style="stop-color:#000000"/>
|
||||
<stop offset="0.5" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="1" style="stop-color:#000000"/>
|
||||
</linearGradient>
|
||||
<path class="st14" d="M93.8,153.7H38.8c-2.9,0-5.2-2.3-5.2-5.2V49.8c0-2.9,2.3-5.2,5.2-5.2h54.9c2.9,0,5.2,2.3,5.2,5.2v98.7
|
||||
C99,151.4,96.7,153.7,93.8,153.7z"/>
|
||||
</g>
|
||||
</mask>
|
||||
<path class="st15" d="M167.6,69c2.7,1,3.2,2.6,0.9,3.6l-63.5,23c-2.8,1.2-7.3,1.2-10.1,0l-63.5-23c-2.2-1-1.8-2.6,0.9-3.6"/>
|
||||
</g>
|
||||
<g>
|
||||
<path id="XMLID_7_" class="st16" d="M150.3,60.8h-25.9L103,53c-1.6-0.6-4.3-0.6-5.9,0l-21.5,7.8H49.7v10.2h0c0,0.4,0.3,0.9,1,1.2
|
||||
l45.6,16.5c2,0.9,5.3,0.9,7.3,0l45.6-16.5c0.7-0.3,1.1-0.8,1-1.2h0V60.8z"/>
|
||||
<path id="XMLID_12_" class="st17" d="M150.3,60.2h-25.9L103,52.5c-1.6-0.6-4.3-0.6-5.9,0l-21.5,7.8H49.7v10.2h0
|
||||
c0,0.4,0.3,0.9,1,1.2l45.6,16.5c2,0.9,5.3,0.9,7.3,0l45.6-16.5c0.7-0.3,1.1-0.8,1-1.2h0V60.2z"/>
|
||||
<g>
|
||||
<defs>
|
||||
<path id="XMLID_11_" d="M150.3,58.8h-25.9L103,51c-1.6-0.6-4.3-0.6-5.9,0l-21.5,7.8H49.7v10.2h0c0,0.4,0.3,0.9,1,1.2l45.6,16.5
|
||||
c2,0.9,5.3,0.9,7.3,0l45.6-16.5c0.7-0.3,1.1-0.8,1-1.2h0V58.8z"/>
|
||||
</defs>
|
||||
<linearGradient id="XMLID_6_" gradientUnits="userSpaceOnUse" x1="49.6946" y1="68.9296" x2="150.2985" y2="68.9296">
|
||||
<stop offset="0" style="stop-color:#AFDAFE"/>
|
||||
<stop offset="1" style="stop-color:#6FA7EE"/>
|
||||
</linearGradient>
|
||||
<use xlink:href="#XMLID_11_" style="overflow:visible;fill:url(#XMLID_6_);"/>
|
||||
<clipPath id="XMLID_15_">
|
||||
<use xlink:href="#XMLID_11_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<linearGradient id="SVGID_15_" gradientUnits="userSpaceOnUse" x1="95.3454" y1="82.4193" x2="103.3454" y2="82.4193">
|
||||
<stop offset="0" style="stop-color:#D0EAFE;stop-opacity:0"/>
|
||||
<stop offset="0.5" style="stop-color:#D4ECFE"/>
|
||||
<stop offset="1" style="stop-color:#D1EBFE;stop-opacity:0.1594"/>
|
||||
</linearGradient>
|
||||
<rect x="95.3" y="74.4" class="st18" width="8" height="16"/>
|
||||
<linearGradient id="SVGID_16_" gradientUnits="userSpaceOnUse" x1="45.6946" y1="66.6521" x2="53.6946" y2="66.6521">
|
||||
<stop offset="0" style="stop-color:#D0EAFE;stop-opacity:0"/>
|
||||
<stop offset="0.5" style="stop-color:#D4ECFE"/>
|
||||
<stop offset="1" style="stop-color:#D1EBFE;stop-opacity:0.1594"/>
|
||||
</linearGradient>
|
||||
<rect x="45.7" y="58.7" class="st19" width="8" height="16"/>
|
||||
<linearGradient id="SVGID_17_" gradientUnits="userSpaceOnUse" x1="146.3054" y1="63.827" x2="154.3054" y2="63.827">
|
||||
<stop offset="0" style="stop-color:#D0EAFE;stop-opacity:0"/>
|
||||
<stop offset="0.5" style="stop-color:#D4ECFE"/>
|
||||
<stop offset="1" style="stop-color:#D1EBFE;stop-opacity:0.1594"/>
|
||||
</linearGradient>
|
||||
<rect x="146.3" y="55.8" class="st20" width="8" height="16"/>
|
||||
</g>
|
||||
<linearGradient id="SVGID_18_" gradientUnits="userSpaceOnUse" x1="49.6946" y1="58.7701" x2="150.3054" y2="58.7701">
|
||||
<stop offset="0" style="stop-color:#C6E4FF"/>
|
||||
<stop offset="1" style="stop-color:#BADFFE"/>
|
||||
</linearGradient>
|
||||
<path class="st21" d="M96.4,76.5L50.7,60c-1.6-0.7-1.3-1.9,0.7-2.6L97,40.9c1.6-0.6,4.3-0.6,5.9,0l45.6,16.5
|
||||
c2,0.7,2.3,1.9,0.7,2.6l-45.6,16.5C101.6,77.4,98.4,77.4,96.4,76.5z"/>
|
||||
<g class="st22">
|
||||
<path class="st23" d="M100,40.7c1.1,0,2.1,0.2,2.9,0.4l45.6,16.5c0.9,0.3,1.5,0.8,1.5,1.2c0,0.3-0.3,0.6-0.9,0.9l-45.7,16.5
|
||||
c-0.9,0.4-2.2,0.6-3.5,0.6c-1.3,0-2.6-0.2-3.5-0.7L50.8,59.7c-0.6-0.3-0.9-0.6-0.9-0.9c0-0.4,0.6-0.9,1.5-1.2l45.6-16.5
|
||||
C97.9,40.8,98.9,40.7,100,40.7 M100,40.4c-1.1,0-2.1,0.1-3,0.4L51.4,57.3c-2,0.7-2.3,1.9-0.7,2.6l45.6,16.5
|
||||
c1,0.4,2.3,0.7,3.6,0.7c1.3,0,2.6-0.2,3.6-0.7L149.3,60c1.6-0.7,1.3-1.9-0.7-2.6L103,40.9C102.1,40.6,101.1,40.4,100,40.4
|
||||
L100,40.4z"/>
|
||||
</g>
|
||||
</g>
|
||||
<line class="st24" x1="53.1" y1="66" x2="95.9" y2="81.4"/>
|
||||
<line class="st24" x1="147.3" y1="66" x2="104.4" y2="81.4"/>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st17" d="M163.1,81.8c-0.4,0.2-0.7,0.8-0.7,1.2l0,13c0,0.4,0.3,0.6,0.7,0.4c0.4-0.2,0.7-0.8,0.7-1.2l0-13
|
||||
C163.8,81.8,163.5,81.6,163.1,81.8z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st17" d="M155.8,84.7c-0.4,0.2-0.7,0.8-0.7,1.2l0,13c0,0.4,0.3,0.6,0.7,0.4c0.4-0.2,0.7-0.8,0.7-1.2l0-13
|
||||
C156.5,84.6,156.2,84.5,155.8,84.7z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st17" d="M148.5,87.5c-0.4,0.2-0.7,0.8-0.7,1.2l0,13c0,0.4,0.3,0.6,0.7,0.4c0.4-0.2,0.7-0.8,0.7-1.2l0-13
|
||||
C149.2,87.4,148.9,87.3,148.5,87.5z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st17" d="M141.3,90c-0.4,0.2-0.7,0.8-0.7,1.2l0,13c0,0.4,0.3,0.6,0.7,0.4c0.4-0.2,0.7-0.8,0.7-1.2l0-13
|
||||
C142,90,141.7,89.8,141.3,90z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st17" d="M134.1,92.7c-0.4,0.2-0.7,0.8-0.7,1.2l0,13c0,0.4,0.3,0.6,0.7,0.4c0.4-0.2,0.7-0.8,0.7-1.2l0-13
|
||||
C134.8,92.6,134.5,92.5,134.1,92.7z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st17" d="M126.7,95.4c-0.4,0.2-0.7,0.8-0.7,1.2l0,13c0,0.4,0.3,0.6,0.7,0.4c0.4-0.2,0.7-0.8,0.7-1.2l0-13
|
||||
C127.4,95.4,127.1,95.2,126.7,95.4z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st17" d="M119.6,98.1c-0.4,0.2-0.7,0.8-0.7,1.2l0,13c0,0.4,0.3,0.6,0.7,0.4c0.4-0.2,0.7-0.8,0.7-1.2l0-13
|
||||
C120.3,98.1,120,97.9,119.6,98.1z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st17" d="M112.5,100.7c-0.4,0.2-0.7,0.8-0.7,1.2l0,13c0,0.4,0.3,0.6,0.7,0.4c0.4-0.2,0.7-0.8,0.7-1.2l0-13
|
||||
C113.2,100.6,112.9,100.5,112.5,100.7z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st17" d="M163.1,116.7c-0.4,0.2-0.7,0.8-0.7,1.2l0,13c0,0.4,0.3,0.6,0.7,0.4c0.4-0.2,0.7-0.8,0.7-1.2l0-13
|
||||
C163.8,116.7,163.5,116.5,163.1,116.7z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st17" d="M155.8,119.6c-0.4,0.2-0.7,0.8-0.7,1.2l0,13c0,0.4,0.3,0.6,0.7,0.4c0.4-0.2,0.7-0.8,0.7-1.2l0-13
|
||||
C156.5,119.5,156.2,119.4,155.8,119.6z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st17" d="M148.5,122.4c-0.4,0.2-0.7,0.8-0.7,1.2l0,13c0,0.4,0.3,0.6,0.7,0.4c0.4-0.2,0.7-0.8,0.7-1.2l0-13
|
||||
C149.2,122.3,148.9,122.2,148.5,122.4z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st17" d="M141.3,124.9c-0.4,0.2-0.7,0.8-0.7,1.2l0,13c0,0.4,0.3,0.6,0.7,0.4c0.4-0.2,0.7-0.8,0.7-1.2l0-13
|
||||
C142,124.9,141.7,124.7,141.3,124.9z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st17" d="M134.1,127.6c-0.4,0.2-0.7,0.8-0.7,1.2l0,13c0,0.4,0.3,0.6,0.7,0.4c0.4-0.2,0.7-0.8,0.7-1.2l0-13
|
||||
C134.8,127.5,134.5,127.4,134.1,127.6z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st17" d="M126.7,130.3c-0.4,0.2-0.7,0.8-0.7,1.2l0,13c0,0.4,0.3,0.6,0.7,0.4c0.4-0.2,0.7-0.8,0.7-1.2l0-13
|
||||
C127.4,130.3,127.1,130.1,126.7,130.3z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st17" d="M119.6,133c-0.4,0.2-0.7,0.8-0.7,1.2l0,13c0,0.4,0.3,0.6,0.7,0.4c0.4-0.2,0.7-0.8,0.7-1.2l0-13
|
||||
C120.3,133,120,132.8,119.6,133z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st17" d="M112.5,135.6c-0.4,0.2-0.7,0.8-0.7,1.2l0,13c0,0.4,0.3,0.6,0.7,0.4c0.4-0.2,0.7-0.8,0.7-1.2l0-13
|
||||
C113.2,135.5,112.9,135.4,112.5,135.6z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st17" d="M83.6,102.7c1,0.4,1.8,1.7,1.8,3c0,1.3-0.8,2-1.8,1.7L51.9,95.8c-1-0.4-1.8-1.7-1.8-3c0-1.3,0.8-2,1.8-1.7
|
||||
L83.6,102.7z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st17" d="M39.3,86.3c1.2,0.4,2.2,2,2.2,3.6c0,1.5-0.9,2.4-2.1,2c-1.2-0.4-2.2-2-2.2-3.6
|
||||
C37.2,86.8,38.1,85.9,39.3,86.3z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st17" d="M45.2,89.7c0.6,0.2,1.1,1,1.1,1.8c0,0.8-0.5,1.2-1.1,1c-0.6-0.2-1.1-1-1.1-1.8
|
||||
C44.1,89.9,44.6,89.4,45.2,89.7z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st17" d="M83.6,138.1c1,0.4,1.8,1.7,1.8,3c0,1.3-0.8,2-1.8,1.7l-31.7-11.5c-1-0.4-1.8-1.7-1.8-3c0-1.3,0.8-2,1.8-1.7
|
||||
L83.6,138.1z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st17" d="M39.3,121.8c1.2,0.4,2.2,2,2.2,3.6c0,1.5-0.9,2.4-2.1,2c-1.2-0.4-2.2-2-2.2-3.6
|
||||
C37.2,122.2,38.1,121.3,39.3,121.8z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st17" d="M45.2,125.1c0.6,0.2,1.1,1,1.1,1.8c0,0.8-0.5,1.2-1.1,1s-1.1-1-1.1-1.8C44.1,125.3,44.6,124.9,45.2,125.1z"
|
||||
/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="Adobe_OpacityMaskFilter_2_" filterUnits="userSpaceOnUse" x="45.7" y="70.3" width="108.6" height="41.5">
|
||||
<feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<mask maskUnits="userSpaceOnUse" x="45.7" y="70.3" width="108.6" height="41.5" id="SVGID_19_">
|
||||
<g class="st25">
|
||||
<path class="st23" d="M94.9,96.6l-63.5-23c-2.2-1-1.8-2.6,0.9-3.6l63.5-22.9c2.3-0.8,6-0.8,8.2,0L167.6,70c2.7,1,3.2,2.6,0.9,3.6
|
||||
l-63.5,23C102.3,97.8,97.7,97.8,94.9,96.6z"/>
|
||||
</g>
|
||||
</mask>
|
||||
<g class="st26">
|
||||
<g>
|
||||
<path id="XMLID_10_" class="st16" d="M150.3,90.7l-25.9,20L103,103c-1.6-0.6-4.3-0.6-5.9,0l-21.5,7.8l-25.9-20V70.9h0
|
||||
c0,0.4,0.3,0.9,1,1.2l45.6,16.5c2,0.9,5.3,0.9,7.3,0l45.6-16.5c0.7-0.3,1.1-0.8,1-1.2h0V90.7z"/>
|
||||
<path id="XMLID_9_" class="st17" d="M150.3,90.2l-25.9,20l-21.5-7.8c-1.6-0.6-4.3-0.6-5.9,0l-21.5,7.8l-25.9-20V70.4h0
|
||||
c0,0.4,0.3,0.9,1,1.2L96.4,88c2,0.9,5.3,0.9,7.3,0l45.6-16.5c0.7-0.3,1.1-0.8,1-1.2h0V90.2z"/>
|
||||
<g>
|
||||
<defs>
|
||||
<path id="XMLID_8_" d="M150.3,91.7l-25.9,20L103,104c-1.6-0.6-4.3-0.6-5.9,0l-21.5,7.8l-25.9-20V71.9h0c0,0.4,0.3,0.9,1,1.2
|
||||
l45.6,16.5c2,0.9,5.3,0.9,7.3,0l45.6-16.5c0.7-0.3,1.1-0.8,1-1.2h0V91.7z"/>
|
||||
</defs>
|
||||
<linearGradient id="XMLID_16_" gradientUnits="userSpaceOnUse" x1="49.6946" y1="91.8257" x2="150.2985" y2="91.8257">
|
||||
<stop offset="0" style="stop-color:#AFDAFE"/>
|
||||
<stop offset="1" style="stop-color:#6FA7EE"/>
|
||||
</linearGradient>
|
||||
<use xlink:href="#XMLID_8_" style="overflow:visible;fill:url(#XMLID_16_);"/>
|
||||
<clipPath id="XMLID_17_">
|
||||
<use xlink:href="#XMLID_8_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<linearGradient id="SVGID_20_" gradientUnits="userSpaceOnUse" x1="95.3454" y1="93.7461" x2="103.3454" y2="93.7461">
|
||||
<stop offset="0" style="stop-color:#D0EAFE;stop-opacity:0"/>
|
||||
<stop offset="0.5" style="stop-color:#D4ECFE"/>
|
||||
<stop offset="1" style="stop-color:#D1EBFE;stop-opacity:0.1594"/>
|
||||
</linearGradient>
|
||||
<rect x="95.3" y="85.8" class="st27" width="8" height="16"/>
|
||||
<linearGradient id="SVGID_21_" gradientUnits="userSpaceOnUse" x1="45.6946" y1="77.2651" x2="53.6946" y2="77.2651">
|
||||
<stop offset="0" style="stop-color:#D0EAFE;stop-opacity:0"/>
|
||||
<stop offset="0.5" style="stop-color:#D4ECFE"/>
|
||||
<stop offset="1" style="stop-color:#D1EBFE;stop-opacity:0.1594"/>
|
||||
</linearGradient>
|
||||
<rect x="45.7" y="70.3" class="st28" width="8" height="14"/>
|
||||
<linearGradient id="SVGID_22_" gradientUnits="userSpaceOnUse" x1="146.3054" y1="78.1055" x2="154.3054" y2="78.1055">
|
||||
<stop offset="0" style="stop-color:#D0EAFE;stop-opacity:0"/>
|
||||
<stop offset="0.5" style="stop-color:#D4ECFE"/>
|
||||
<stop offset="1" style="stop-color:#D1EBFE;stop-opacity:0.1594"/>
|
||||
</linearGradient>
|
||||
<rect x="146.3" y="71.1" class="st29" width="8" height="14"/>
|
||||
</g>
|
||||
<g class="st22">
|
||||
<path class="st23" d="M100,73.6c1.1,0,2.1,0.2,2.9,0.4l45.6,16.5c0.9,0.3,1.5,0.8,1.5,1.2c0,0.3-0.3,0.6-0.9,0.9l-45.7,16.5
|
||||
c-0.9,0.4-2.2,0.6-3.5,0.6s-2.6-0.2-3.5-0.7L50.8,92.7c-0.6-0.3-0.9-0.6-0.9-0.9c0-0.4,0.6-0.9,1.5-1.2l45.6-16.5
|
||||
C97.9,73.8,98.9,73.6,100,73.6 M100,73.4c-1.1,0-2.1,0.1-3,0.4L51.4,90.3c-2,0.7-2.3,1.9-0.7,2.6l45.6,16.5
|
||||
c1,0.4,2.3,0.7,3.6,0.7c1.3,0,2.6-0.2,3.6-0.7l45.6-16.5c1.6-0.7,1.3-1.9-0.7-2.6L103,73.8C102.1,73.5,101.1,73.4,100,73.4
|
||||
L100,73.4z"/>
|
||||
</g>
|
||||
</g>
|
||||
<line class="st24" x1="53.1" y1="78.4" x2="95.9" y2="93.9"/>
|
||||
<line class="st24" x1="147.3" y1="78.4" x2="104.4" y2="93.9"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 4.1 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.6 KiB |
BIN
resources/assets/statics/public/images/other/avatar.png
Executable file → Normal file
Before Width: | Height: | Size: 7.4 KiB After Width: | Height: | Size: 4.3 KiB |