🤞 Sync 2024-08-01 20:32:00
58
leigod-acc/Makefile
Normal file
@ -0,0 +1,58 @@
|
||||
#
|
||||
# Copyright (C) 2015-2016 OpenWrt.org
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v3.
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=leigod-acc
|
||||
PKG_VERSION:=1.3.0.30
|
||||
PKG_RELEASE:=1
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/$(PKG_NAME)
|
||||
SECTION:=net
|
||||
CATEGORY:=Network
|
||||
TITLE:=Powerful Leigod Game Accelerater
|
||||
DEPENDS:=@(x86_64||arm||mipsel||aarch64)
|
||||
URL:=https://www.leigod.com/
|
||||
endef
|
||||
|
||||
define Package/$(PKG_NAME)/description
|
||||
leigod-acc is a powerful game accelerater
|
||||
endef
|
||||
|
||||
ifeq ($(ARCH),x86_64)
|
||||
acc-arch:=amd64
|
||||
endif
|
||||
ifeq ($(ARCH),mipsel)
|
||||
acc-arch:=mipsle
|
||||
endif
|
||||
ifeq ($(ARCH),arm)
|
||||
acc-arch:=arm
|
||||
endif
|
||||
ifeq ($(ARCH),aarch64)
|
||||
acc-arch:=arm64
|
||||
endif
|
||||
|
||||
define Build/Prepare
|
||||
endef
|
||||
|
||||
define Build/Configure
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
endef
|
||||
|
||||
define Package/$(PKG_NAME)/install
|
||||
$(INSTALL_DIR) $(1)/usr/sbin/leigod
|
||||
$(INSTALL_BIN) ./files/acc-gw.linux.$(acc-arch) $(1)/usr/sbin/leigod/acc-gw.linux.$(acc-arch)
|
||||
$(INSTALL_BIN) ./files/leigod_uninstall.sh $(1)/usr/sbin/leigod/leigod_uninstall.sh
|
||||
$(INSTALL_BIN) ./files/plugin_common.sh $(1)/usr/sbin/leigod/plugin_common.sh
|
||||
$(INSTALL_BIN) ./files/update_plugin $(1)/usr/sbin/leigod/update_plugin
|
||||
$(INSTALL_DATA) ./files/version $(1)/usr/sbin/leigod/version
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,$(PKG_NAME)))
|
BIN
leigod-acc/files/acc-gw.linux.amd64
Normal file
BIN
leigod-acc/files/acc-gw.linux.arm
Normal file
BIN
leigod-acc/files/acc-gw.linux.arm64
Normal file
BIN
leigod-acc/files/acc-gw.linux.mipsle
Normal file
24
leigod-acc/files/leigod_uninstall.sh
Normal file
@ -0,0 +1,24 @@
|
||||
#!/bin/sh
|
||||
|
||||
# this script is use to install leigod plugin
|
||||
ver_name="version"
|
||||
init_file_name="acc"
|
||||
binary_prefix="acc-gw.linux"
|
||||
common_file_name="plugin_common.sh"
|
||||
download_base_url="http://119.3.40.126/router_plugin"
|
||||
|
||||
# include common file
|
||||
. ${common_file_name}
|
||||
|
||||
# preinstall_check
|
||||
# check and set env
|
||||
preinstall_check
|
||||
|
||||
if [ ${is_openwrt} ]; then
|
||||
echo "remove openwrt config"
|
||||
remove_openwrt_series_config
|
||||
remove_openwrt_series_init
|
||||
fi
|
||||
|
||||
# remove_binary remove binary
|
||||
remove_binary
|
502
leigod-acc/files/plugin_common.sh
Normal file
@ -0,0 +1,502 @@
|
||||
# this script is use to install leigod plugin
|
||||
# sbin_dir="/usr/sbin/leigod"
|
||||
ver_name="version"
|
||||
init_file_name="acc"
|
||||
binary_prefix="acc-gw.linux"
|
||||
common_file_name="plugin_common.sh"
|
||||
uninstall_file_name="leigod_uninstall.sh"
|
||||
download_base_url="http://119.3.40.126/router_plugin"
|
||||
|
||||
# get_device_os
|
||||
# current support os: Linux
|
||||
get_device_os() {
|
||||
os=$(uname)
|
||||
if [ $? == "0" ]; then
|
||||
return 0
|
||||
fi
|
||||
echo "os cant be get"
|
||||
return -1
|
||||
}
|
||||
|
||||
# get_device_arch,
|
||||
# current support arch: arm64 arm x86_64 mips
|
||||
get_device_arch() {
|
||||
arch=$(uname -m)
|
||||
if [ $? == "0" ]; then
|
||||
return 0
|
||||
fi
|
||||
echo "arch cant be get"
|
||||
return -1
|
||||
}
|
||||
|
||||
# get_xiaomi_name check if is xiaomi
|
||||
get_xiaomi_name() {
|
||||
local name=$(uci get misc.hardware.displayName)
|
||||
if [[ $? == "0" && ${name} != "" ]]; then
|
||||
echo "router is xiaomi series, name: ${name}"
|
||||
sbin_dir="/userdisk/appdata/leigod"
|
||||
init_dir="/userdisk/appdata/leigod"
|
||||
is_xiaomi=true
|
||||
return 0
|
||||
fi
|
||||
local name=$(uci get misc.hardware.model)
|
||||
if [[ $? == "0" && ${name} != "" ]]; then
|
||||
echo "router is xiaomi series, name: ${name}"
|
||||
sbin_dir="/userdisk/appdata/leigod"
|
||||
init_dir="/userdisk/appdata/leigod"
|
||||
is_xiaomi=true
|
||||
return 0
|
||||
fi
|
||||
|
||||
local name=$(uci get misc.hardware.model)
|
||||
if [[ $? == "0" && ${name} != "" ]]; then
|
||||
echo "router is xiaomi series, name: ${name}"
|
||||
sbin_dir="/userdisk/appdata/leigod"
|
||||
init_dir="/userdisk/appdata/leigod"
|
||||
is_xiaomi=true
|
||||
return 0
|
||||
fi
|
||||
echo "router is not xiaomi, use general openwrt"
|
||||
sbin_dir="/usr/sbin/leigod"
|
||||
init_dir="/etc/init.d"
|
||||
# stop openwrt service first
|
||||
echo "stop openwrt acc service first, in casue install failed"
|
||||
/etc/init.d/acc stop
|
||||
sleep 1
|
||||
show_openwrt_suggestion
|
||||
return 0
|
||||
}
|
||||
|
||||
# get_asus_name get asus name
|
||||
get_merlin_party() {
|
||||
if [[ -d "/koolshare" ]]; then
|
||||
echo "router is merlin series, name: $(nvram get build_name)"
|
||||
nvram set 3rd-party=merlin
|
||||
is_merlin=true
|
||||
sbin_dir="/koolshare/leigod/acc"
|
||||
init_dir="/koolshare/init.d"
|
||||
echo "message"
|
||||
return 0
|
||||
elif [[ -d "/jffs/softcenter" ]]; then
|
||||
echo "router is swrt series, name: $(nvram get build_name)"
|
||||
is_swrt=true
|
||||
nvram set 3rd-party=swrt
|
||||
sbin_dir="/jffs/softcenter/leigod/acc"
|
||||
init_dir="/jffs/softcenter/init.d"
|
||||
return 0
|
||||
fi
|
||||
# check merlin
|
||||
echo "route is not merlin, use general asus"
|
||||
return 0
|
||||
}
|
||||
|
||||
# get_device_firmware get device firmware
|
||||
# current support firmware: openwrt merlin
|
||||
get_device_firmware() {
|
||||
# openwrt file exist
|
||||
if [ -f "/etc/openwrt_release" ]; then
|
||||
echo "firmware is openwrt series"
|
||||
is_openwrt=true
|
||||
get_xiaomi_name
|
||||
elif [[ -f "/etc/image_version" ]] || [[ -d "/koolshare" ]] || [[ -d "/jffs/softcenter" ]]; then
|
||||
echo "firmware is asus series"
|
||||
is_asus=true
|
||||
echo "stop asus acc service first, in casue install failed"
|
||||
PIDS=$(ps | grep acc | grep -v grep | awk '{print $1}')
|
||||
# check if process exist
|
||||
get_merlin_party
|
||||
fi
|
||||
}
|
||||
|
||||
# install_openwrt_package install openwrt
|
||||
install_binary() {
|
||||
# create sbin dir
|
||||
mkdir -p ${sbin_dir}
|
||||
# create name
|
||||
local acc_name=${binary_prefix}.${arch}
|
||||
local download_bin_url=${download_base_url}/${acc_name}
|
||||
echo "install ${acc_name} to ${sbin_dir}"
|
||||
# download file
|
||||
curl -s -o ${sbin_dir}/${acc_name} ${download_bin_url}
|
||||
if [ $? != "0" ]; then
|
||||
echo "download and install binary failed"
|
||||
return -1
|
||||
fi
|
||||
echo "install binary success"
|
||||
chmod +x ${sbin_dir}/${acc_name}
|
||||
if [ $? != "0" ]; then
|
||||
echo "add binary permission failed"
|
||||
return -1
|
||||
fi
|
||||
echo "add acc binary permission success"
|
||||
# download common file
|
||||
local download_common_url=${download_base_url}/${common_file_name}
|
||||
curl -s -o ${sbin_dir}/${common_file_name} ${download_common_url}
|
||||
if [ $? != "0" ]; then
|
||||
echo "download and install common file failed"
|
||||
return -1
|
||||
fi
|
||||
|
||||
# remote uninstall_file_name
|
||||
local remote_uninstall_file_name=${download_base_url}/"plugin_uninstall.sh"
|
||||
curl -s -o ${sbin_dir}/${uninstall_file_name} ${remote_uninstall_file_name}
|
||||
if [ $? != "0" ]; then
|
||||
echo "download and install uninstall file failed"
|
||||
return -1
|
||||
fi
|
||||
echo "add uninstall permission success"
|
||||
local ver_file=${sbin_dir}/${ver_name}
|
||||
touch ${ver_file}
|
||||
if [ $? != "0" ]; then
|
||||
echo "create version file failed"
|
||||
return -1
|
||||
fi
|
||||
# add version to file
|
||||
echo "version=1.3.0.30" > ${ver_file}
|
||||
echo "add version file success"
|
||||
}
|
||||
|
||||
# remove_binary remove binary
|
||||
remove_binary() {
|
||||
rm -r ${sbin_dir}
|
||||
}
|
||||
|
||||
# install xiaomi monitor
|
||||
install_xiaomi_monitor() {
|
||||
local cron_path="/etc/crontabs/root"
|
||||
local monitor_file_name="plugin_monitor.sh"
|
||||
local download_monitor_url=${download_base_url}/${monitor_file_name}
|
||||
curl -o ${sbin_dir}/${monitor_file_name} ${download_monitor_url}
|
||||
if [ $? != "0" ]; then
|
||||
echo "download monitor file failed"
|
||||
return -1
|
||||
fi
|
||||
chmod +x ${sbin_dir}/${monitor_file_name}
|
||||
# download
|
||||
echo "download monitor file success"
|
||||
echo "*/1 * * * * ${sbin_dir}/${monitor_file_name}" >> ${cron_path}
|
||||
if [ $? != "0" ]; then
|
||||
echo "add monitor to cron failed"
|
||||
return -1
|
||||
fi
|
||||
echo "add monitor to cron success"
|
||||
}
|
||||
|
||||
# install_openwrt_series_config save openwrt config
|
||||
install_openwrt_series_config() {
|
||||
# create accelerator config
|
||||
touch /etc/config/accelerator
|
||||
if [ $? != "0" ]; then
|
||||
echo "make acc config file failed"
|
||||
return -1
|
||||
fi
|
||||
if [ ${install_env} == "test" ]; then
|
||||
# use uci to add config
|
||||
uci set accelerator.base=system
|
||||
uci set accelerator.bind=bind
|
||||
uci set accelerator.device=hardware
|
||||
uci set accelerator.Phone=acceleration
|
||||
uci set accelerator.PC=acceleration
|
||||
uci set accelerator.Game=acceleration
|
||||
uci set accelerator.Unknown=acceleration
|
||||
uci set accelerator.base.url='https://test-opapi.nn.com/speed/router/plug/check'
|
||||
uci set accelerator.base.heart='https://test-opapi.nn.com/speed/router/heartbeat'
|
||||
uci set accelerator.base.base_url='https://test-opapi.nn.com/speed'
|
||||
uci commit accelerator
|
||||
elif [ ${install_env} == "test1" ]; then
|
||||
# use uci to add config
|
||||
uci set accelerator.base=system
|
||||
uci set accelerator.bind=bind
|
||||
uci set accelerator.device=hardware
|
||||
uci set accelerator.Phone=acceleration
|
||||
uci set accelerator.PC=acceleration
|
||||
uci set accelerator.Game=acceleration
|
||||
uci set accelerator.Unknown=acceleration
|
||||
uci set accelerator.base.url='https://test1-opapi.nn.com/speed/router/plug/check'
|
||||
uci set accelerator.base.heart='https://test1-opapi.nn.com/speed/router/heartbeat'
|
||||
uci set accelerator.base.base_url='https://test1-opapi.nn.com/speed'
|
||||
uci commit accelerator
|
||||
else
|
||||
# use uci to add config
|
||||
uci set accelerator.base=system
|
||||
uci set accelerator.bind=bind
|
||||
uci set accelerator.device=hardware
|
||||
uci set accelerator.Phone=acceleration
|
||||
uci set accelerator.PC=acceleration
|
||||
uci set accelerator.Game=acceleration
|
||||
uci set accelerator.Unknown=acceleration
|
||||
uci set accelerator.base.url='https://opapi.nn.com/speed/router/plug/check'
|
||||
uci set accelerator.base.heart='https://opapi.nn.com/speed/router/heartbeat'
|
||||
uci set accelerator.base.base_url='https://opapi.nn.com/speed'
|
||||
uci commit accelerator
|
||||
fi
|
||||
if [ $? != "0" ]; then
|
||||
echo "create openwrt config unit failed"
|
||||
return -1
|
||||
fi
|
||||
echo "create openwrt config unit success"
|
||||
}
|
||||
|
||||
# install_openwrt_series_luasrc install openwrt lua src
|
||||
install_openwrt_series_luasrc() {
|
||||
lua_base="/usr/lib/lua/luci"
|
||||
# download index file
|
||||
curl --create-dirs -o ${lua_base}/controller/acc.lua ${download_base_url}/openwrt/controller/acc.lua
|
||||
if [ $? != "0" ]; then
|
||||
echo "download acc.lua failed"
|
||||
return -1
|
||||
fi
|
||||
# download service view file
|
||||
curl --create-dirs -o ${lua_base}/model/cbi/leigod/service.lua ${download_base_url}/openwrt/model/cbi/leigod/service.lua
|
||||
if [ $? != "0" ]; then
|
||||
echo "download service.lua failed"
|
||||
return -1
|
||||
fi
|
||||
# download device view file
|
||||
curl --create-dirs -o ${lua_base}/model/cbi/leigod/device.lua ${download_base_url}/openwrt/model/cbi/leigod/device.lua
|
||||
if [ $? != "0" ]; then
|
||||
echo "download device.lua failed"
|
||||
return -1
|
||||
fi
|
||||
# download notice view file
|
||||
curl --create-dirs -o ${lua_base}/model/cbi/leigod/notice.lua ${download_base_url}/openwrt/model/cbi/leigod/notice.lua
|
||||
if [ $? != "0" ]; then
|
||||
echo "download notice.lua failed"
|
||||
return -1
|
||||
fi
|
||||
# download service view file
|
||||
curl --create-dirs -o ${lua_base}/view/leigod/notice.htm ${download_base_url}/openwrt/view/leigod/notice.htm
|
||||
if [ $? != "0" ]; then
|
||||
echo "download notice.htm failed"
|
||||
return -1
|
||||
fi
|
||||
# download service view file
|
||||
curl --create-dirs -o ${lua_base}/view/leigod/service.htm ${download_base_url}/openwrt/view/leigod/service.htm
|
||||
if [ $? != "0" ]; then
|
||||
echo "download service.htm failed"
|
||||
return -1
|
||||
fi
|
||||
# download service translate file
|
||||
curl --create-dirs -o ${lua_base}/i18n/acc.zh-cn.lmo ${download_base_url}/openwrt/po/zh-cn/acc.zh-cn.lmo
|
||||
if [ $? != "0" ]; then
|
||||
echo "download acc.zh-cn.lmo failed"
|
||||
return -1
|
||||
fi
|
||||
echo "download lua src success"
|
||||
}
|
||||
|
||||
install_openwrt_series_web() {
|
||||
local luci_base="/usr/lib/lua/luci"
|
||||
|
||||
}
|
||||
|
||||
# remove_openwrt_series_config remove openwrt config
|
||||
remove_openwrt_series_config() {
|
||||
rm /etc/config/accelerator
|
||||
}
|
||||
|
||||
# install asus series config
|
||||
install_asus_series_config() {
|
||||
mkdir -p ${sbin_dir}/config
|
||||
if [ ${install_env} == "test" ]; then
|
||||
# install test asus config
|
||||
echo "
|
||||
[base]
|
||||
url="https://test-opapi.nn.com/speed/router/plug/check"
|
||||
channel="2"
|
||||
appid="nnMobile_d0k3duup"
|
||||
heart="https://test-opapi.nn.com/speed/router/heartbeat"
|
||||
base_url="https://test-opapi.nn.com/speed"
|
||||
|
||||
[update]
|
||||
domain="https://test-opapi.nn.com/nn-version/version/plug/upgrade"
|
||||
|
||||
[device]
|
||||
" > ${sbin_dir}/config/accelerator
|
||||
elif [ ${install_env} == "test1" ]; then
|
||||
# install test1 asus config
|
||||
echo "
|
||||
[base]
|
||||
url="https://test1-opapi.nn.com/speed/router/plug/check"
|
||||
channel="2"
|
||||
appid="nnMobile_d0k3duup"
|
||||
heart="https://test1-opapi.nn.com/speed/router/heartbeat"
|
||||
base_url="https://test1-opapi.nn.com/speed"
|
||||
|
||||
[update]
|
||||
domain="https://test1-opapi.nn.com/nn-version/version/plug/upgrade"
|
||||
|
||||
[device]
|
||||
" > ${sbin_dir}/config/accelerator
|
||||
else
|
||||
# install formel asus config
|
||||
echo "
|
||||
[base]
|
||||
url="https://opapi.nn.com/speed/router/plug/check"
|
||||
channel="2"
|
||||
appid="nnMobile_d0k3duup"
|
||||
heart="https://opapi.nn.com/speed/router/heartbeat"
|
||||
base_url="https://opapi.nn.com/speed"
|
||||
|
||||
[update]
|
||||
domain="https://opapi.nn.com/nn-version/version/plug/upgrade"
|
||||
|
||||
[device]
|
||||
" > ${sbin_dir}/config/accelerator
|
||||
|
||||
fi
|
||||
|
||||
echo "create asus series config success"
|
||||
}
|
||||
|
||||
# remove_asus_series_config remove asus config
|
||||
remove_asus_series_config() {
|
||||
rm -r ${init_dir}
|
||||
}
|
||||
|
||||
# install_openwrt_init install openwrt to init
|
||||
install_openwrt_series_init() {
|
||||
local remote_init_name="openwrt_init.sh"
|
||||
local download_init_url=${download_base_url}/${remote_init_name}
|
||||
# download init file
|
||||
curl -o ${init_dir}/${init_file_name} ${download_init_url}
|
||||
if [ $? != "0" ]; then
|
||||
echo "download init file failed"
|
||||
return -1
|
||||
fi
|
||||
echo "download init file success"
|
||||
# add permission to file
|
||||
chmod +x ${init_dir}/${init_file_name}
|
||||
if [ $? != "0" ]; then
|
||||
echo "add init permission failed"
|
||||
return -1
|
||||
fi
|
||||
echo "add init file permission success"
|
||||
${init_dir}/${init_file_name} enable
|
||||
echo "set accelerator autostart success"
|
||||
${init_dir}/${init_file_name} start
|
||||
if [ $? != "0" ]; then
|
||||
echo "start accelerator failed"
|
||||
return -1
|
||||
fi
|
||||
echo "start accelerator success"
|
||||
}
|
||||
|
||||
# remove_openwrt_series_init remove openwrt init
|
||||
remove_openwrt_series_init() {
|
||||
${init_dir}/${init_file_name} disable
|
||||
${init_dir}/${init_file_name} stop
|
||||
rm ${init_dir}/${init_file_name}
|
||||
}
|
||||
|
||||
# install merlin init
|
||||
install_merlin_init() {
|
||||
local remote_init_name="asus_init.sh"
|
||||
local download_init_url=${download_base_url}/${remote_init_name}
|
||||
# download init file
|
||||
curl -o ${sbin_dir}/${init_file_name} ${download_init_url}
|
||||
if [ $? != "0" ]; then
|
||||
echo "download init file failed"
|
||||
return -1
|
||||
fi
|
||||
# add permission
|
||||
chmod +x ${sbin_dir}/${init_file_name}
|
||||
# create link
|
||||
local link_init_name="S99LeigodAcc.sh"
|
||||
local link_init_file=${init_dir}/${link_init_name}
|
||||
ln -sf ${sbin_dir}/${init_file_name} ${link_init_file}
|
||||
if [ $? != "0" ]; then
|
||||
echo "create merlin init link failed"
|
||||
return -1
|
||||
fi
|
||||
echo "create merlin link file success"
|
||||
${link_init_file} start
|
||||
echo "acc start success"
|
||||
}
|
||||
|
||||
# show_openwrt_suggestion show openwrt install suggest
|
||||
show_openwrt_suggestion() {
|
||||
echo "
|
||||
雷神OpenWrt插件安装建议:
|
||||
|
||||
当前雷神路由器支持两种加速模式,
|
||||
1. tproxy加速模式(速度更快, CPU占用率更低)
|
||||
2. tun加速模式(需要依赖少, 安装灵活)
|
||||
|
||||
需要您根据以上的加速模式, 安装对应的依赖库,
|
||||
如下列出两种模式对应的安装依赖:
|
||||
1. TProxy模式: libpcap iptables kmod-ipt-nat iptables-mod-tproxy kmod-ipt-tproxy kmod-netem(可选) tc-full(可选) kmod-ipt-ipset ipset curl
|
||||
2. Tun模式: libpcap iptables kmod-tun kmod-ipt-nat kmod-ipt-ipset ipset curl
|
||||
|
||||
如何安装依赖:
|
||||
1. 升级依赖: opkg update
|
||||
2. 安装依赖: opkg install xxx
|
||||
|
||||
为了安装方便, 请选择一个模式, 复制以下命令到终端运行:
|
||||
Tproxy模式:
|
||||
opkg update
|
||||
opkg install libpcap iptables kmod-ipt-nat iptables-mod-tproxy kmod-ipt-tproxy kmod-netem tc-full kmod-ipt-ipset ipset
|
||||
|
||||
Tun模式:
|
||||
opkg update
|
||||
opkg install libpcap iptables kmod-tun kmod-ipt-nat kmod-ipt-ipset ipset curl
|
||||
|
||||
关于steamdeck的支持说明
|
||||
steamdeck设备请选择加速电脑游戏
|
||||
|
||||
关于手机设备的支持:
|
||||
1. 安卓支持说明
|
||||
当前代理仅支持ipv4代理, 请更改dhcp配置,更改完配置请重启路由器,
|
||||
配置路径在 /etc/config/dhcp
|
||||
config dhcp 'lan'
|
||||
... 此处是一些其他配置
|
||||
ra 'disable'
|
||||
dhcpv6 'disable'
|
||||
list ra_flags 'none'
|
||||
... 此处是一些其他配置
|
||||
|
||||
2. 关于ios设备的支持说明
|
||||
ios设备, 安装完插件后, 为了精准识别, 请在ios上选择忘记wifi, 然后重新连接即可
|
||||
"
|
||||
}
|
||||
|
||||
# preinstall_check check env
|
||||
preinstall_check() {
|
||||
# check os
|
||||
get_device_os
|
||||
if [ ${os} != "Linux" ]; then
|
||||
echo "current os not support, os: ${os}"
|
||||
return -1
|
||||
fi
|
||||
# check arch
|
||||
get_device_arch
|
||||
if [[ ${arch} != "x86_64" && ${arch} != "aarch64" && ${arch} != "arm" && ${arch} != "mips" && ${arch} != "armv7l" ]];then
|
||||
echo "current arch not support, arch: ${arch}"
|
||||
return -1
|
||||
fi
|
||||
# fix arch
|
||||
if [ ${arch} == "x86_64" ]; then
|
||||
echo "match x86_64 -> amd64"
|
||||
arch="amd64"
|
||||
elif [ ${arch} == "aarch64" ]; then
|
||||
echo "match aarch64 -> arm64"
|
||||
arch="arm64"
|
||||
elif [ ${arch} == "mips" ]; then
|
||||
echo "match mips -> mipsle"
|
||||
arch="mipsle"
|
||||
elif [ ${arch} == "armv7l" ]; then
|
||||
arch="arm"
|
||||
fi
|
||||
# support plugin
|
||||
echo "current system support plugin, system: ${os}-${arch}"
|
||||
get_device_firmware
|
||||
return 0
|
||||
}
|
||||
|
||||
# show_install_success show install has been installed
|
||||
show_install_success() {
|
||||
echo "install success"
|
||||
echo "雷神路由器插件安装已完成"
|
||||
echo "请加群632342113体验"
|
||||
}
|
||||
|
175
leigod-acc/files/update_plugin
Normal file
@ -0,0 +1,175 @@
|
||||
#!/usr/bin/lua
|
||||
|
||||
local util = require "luci.util"
|
||||
local string = require "string"
|
||||
local io = require "io"
|
||||
local json = require "luci.jsonc"
|
||||
local uci = require "luci.model.uci".cursor()
|
||||
local client = require "luci.httpclient"
|
||||
local helper = require "luci.helper"
|
||||
|
||||
-- get cloud version
|
||||
function get_cloud_version()
|
||||
-- get cloud url
|
||||
local url = uci:get("easyupdate", "main", "domain")
|
||||
-- get request channel
|
||||
local channel = uci:get("easyupdate", "main", "channel")
|
||||
-- appid
|
||||
local appid = uci:get("easyupdate", "main", "appid")
|
||||
-- read brand and model from file
|
||||
local brand, model = helper.get_board_info()
|
||||
-- platfrom
|
||||
local platform = 11
|
||||
-- create http request options
|
||||
local options = {}
|
||||
-- create http request method
|
||||
options.method = "POST"
|
||||
-- create http request headers
|
||||
options.headers = {}
|
||||
options.headers['appId'] = appid
|
||||
options.headers['reqChannel'] = channel
|
||||
options.headers['Content-Type'] = 'application/json'
|
||||
-- create http request body
|
||||
local body = {
|
||||
--
|
||||
['appId'] = 'spRouterPlugin_fhem2shgq9s5',
|
||||
['brand'] = brand,
|
||||
['model'] = model,
|
||||
['platform'] = platform,
|
||||
}
|
||||
-- marshal to json
|
||||
local buf = util.serialize_json(body)
|
||||
options.body = buf
|
||||
-- begin to query
|
||||
local status, _, buffer, _ = client.request_raw(url, options)
|
||||
-- check if query success
|
||||
if not status then
|
||||
io.write("status is nil \n")
|
||||
return ""
|
||||
end
|
||||
-- check if request success
|
||||
if status ~= 200 and status ~=206 then
|
||||
io.write("status is not success, status: " .. status .. "\n")
|
||||
return ""
|
||||
end
|
||||
-- begin to parse response
|
||||
local info = json.parse(buffer)
|
||||
-- get ret data
|
||||
local data = info['retData']
|
||||
-- check if data is nil
|
||||
if data == nil then
|
||||
io.write("response ret data is nil \n")
|
||||
return ""
|
||||
end
|
||||
-- store url in config
|
||||
local fw_url = data['url']
|
||||
local version = data['versionName']
|
||||
io.write("fw_url: " .. fw_url .. ", version: " .. version .. "\n")
|
||||
-- get version success
|
||||
return version, fw_url
|
||||
end
|
||||
|
||||
-- get local version
|
||||
function get_local_version()
|
||||
-- run command to get acc version
|
||||
local cmd = 'opkg info acc'
|
||||
local buf = util.exec(cmd)
|
||||
-- check exec result
|
||||
if buf == nil then
|
||||
io.write("exec command failed \n")
|
||||
return ""
|
||||
end
|
||||
io.write("buf: " .. buf .. "\n")
|
||||
-- read line
|
||||
for line in string.gmatch(buf, "[^\r\n]+") do
|
||||
io.write("read line: " .. line .. "\n")
|
||||
line = string.gsub(line, " ", "")
|
||||
local valueSl = string.gmatch(line, "[^:]+")
|
||||
local key = valueSl()
|
||||
local value = valueSl()
|
||||
if key == "Version" then
|
||||
io.write("get local version: " .. value .. "\n")
|
||||
return value
|
||||
end
|
||||
end
|
||||
io.write("local version cant found \n")
|
||||
end
|
||||
|
||||
-- get file base name
|
||||
function get_file_base_name(filepath)
|
||||
local name = string.gmatch(filepath, "([^/]+)$")
|
||||
io.write("get file base name: " .. name .. "\n")
|
||||
return name
|
||||
end
|
||||
|
||||
-- download cloud version
|
||||
function download_cloud_app(url, name)
|
||||
io.write("download app, url: " .. url .. ", name: " .. name .. "\n")
|
||||
-- run download
|
||||
local cmd = 'curl -s -o /tmp/' .. name ..' -w %{http_code}' .. ' ' .. url
|
||||
-- exec download
|
||||
local code = util.exec(cmd)
|
||||
if code ~= "200" then
|
||||
io.write("download cloud app failed, code: " .. code .. "\n")
|
||||
return false
|
||||
end
|
||||
io.write("download cloud app success \n")
|
||||
return code
|
||||
end
|
||||
|
||||
-- install package name in tmp dir
|
||||
function install_package(name)
|
||||
io.write("install package, package name: " .. name .. "\n")
|
||||
local cmd = "opkg install " .. "/tmp/" .. name .. " " .. "--force-overwrite"
|
||||
local code = util.exec(cmd)
|
||||
io.write("install package finish, package name: " .. name .. "\n")
|
||||
return code
|
||||
end
|
||||
|
||||
-- remove pkg
|
||||
function remove_pkg(name)
|
||||
io.write("remove package, package name: " .. name .. "\n")
|
||||
local cmd = "rm -rf " .. "/tmp/" .. name
|
||||
local code = util.exec(cmd)
|
||||
io.write("remove package finish, package name: " .. name .. "\n")
|
||||
return code
|
||||
end
|
||||
|
||||
-- check network state
|
||||
io.write("check network state \n")
|
||||
while true do
|
||||
local state_code = helper.get_network_state()
|
||||
if state_code == 200 then
|
||||
io.write("network available \n")
|
||||
break
|
||||
end
|
||||
if state_code ~= nil then
|
||||
io.write("network is not available, code: " .. state_code .. "\n")
|
||||
end
|
||||
end
|
||||
io.write("network success")
|
||||
|
||||
-- exec command
|
||||
local local_version = get_local_version()
|
||||
local cloud_version, url = get_cloud_version()
|
||||
-- check if need update
|
||||
if local_version >= cloud_version then
|
||||
io.write("local version is new, dont need update, local ver: " .. local_version ..
|
||||
", cloud version:" .. cloud_version .. "\n")
|
||||
return
|
||||
end
|
||||
|
||||
-- need update
|
||||
io.write("local version is lower, need update, local version: " .. local_version ..
|
||||
", cloud version: " .. cloud_version .. "\n")
|
||||
|
||||
-- download url
|
||||
local name = "acc.ipk"
|
||||
local result = download_cloud_app(url, name)
|
||||
if not result then
|
||||
return
|
||||
end
|
||||
|
||||
-- install package
|
||||
install_package(name)
|
||||
remove_pkg(name)
|
1
leigod-acc/files/version
Normal file
@ -0,0 +1 @@
|
||||
version=1.3.0.30
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 8.5 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 8.7 KiB |
@ -1,95 +0,0 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<path style="fill:#FF4B55;" d="M473.655,423.724H38.346c-21.177,0-38.345-17.167-38.345-38.345V126.622 c0-21.177,17.167-38.345,38.345-38.345h435.309c21.177,0,38.345,17.167,38.345,38.345V385.38 C512,406.557,494.833,423.724,473.655,423.724z"/>
|
||||
<path style="fill:#41479B;" d="M0.001,126.622v120.582c0.017,4.861,3.961,8.797,8.826,8.797h238.344 c4.875,0,8.828-3.953,8.828-8.828V97.104c0-4.874-3.95-8.825-8.823-8.828H38.346C17.169,88.277,0.001,105.444,0.001,126.622z"/>
|
||||
<path style="fill:#F5F5F5;" d="M150.069,141.849V88.277h-44.138v53.573L26.845,90.035c-9.234,2.9-16.954,9.203-21.711,17.434 l65.022,42.601H0.001v44.138h70.153L0.001,240.169v7.033c0.017,4.861,3.961,8.797,8.826,8.797H24.16l81.77-53.572V256h44.138 v-53.573L231.838,256h15.333c4.875,0,8.828-3.953,8.828-8.828v-7.002l-70.155-45.963h70.155V150.07h-70.155l70.155-45.964v-7.002 c0-4.874-3.95-8.825-8.823-8.828h-15.338L150.069,141.849z"/>
|
||||
<g>
|
||||
<polygon style="fill:#FF4B55;" points="255.999,158.897 141.241,158.897 141.241,88.277 114.758,88.277 114.758,158.897 0,158.897 0,185.38 114.758,185.38 114.758,256.001 141.241,256.001 141.241,185.38 255.999,185.38 "/>
|
||||
<path style="fill:#FF4B55;" d="M8.228,102.903l72.661,47.166h16.214l-82.495-53.55C12.239,98.39,10.098,100.533,8.228,102.903z"/>
|
||||
<path style="fill:#FF4B55;" d="M166.283,150.07l88.374-57.366c-1.536-2.599-4.246-4.427-7.485-4.427h-1.909l-95.194,61.793H166.283 z"/>
|
||||
<path style="fill:#FF4B55;" d="M89.474,194.208L1.269,251.462c1.519,2.663,4.273,4.537,7.559,4.537h1.665l95.195-61.793H89.474 V194.208z"/>
|
||||
<path style="fill:#FF4B55;" d="M255.859,247.866l-82.666-53.658H156.98l93.873,60.934 C253.666,253.837,255.594,251.102,255.859,247.866z"/>
|
||||
</g>
|
||||
<path style="fill:#F5F5F5;" d="M320.945,174.03c-1.741,0-3.153,1.411-3.153,3.153v116.65c0,9.458,6.305,40.985,66.207,50.443 c59.902-9.458,66.207-40.985,66.207-50.443v-116.65c0-1.741-1.411-3.153-3.153-3.153L320.945,174.03L320.945,174.03z"/>
|
||||
<path style="fill:#73AF00;" d="M383.999,344.276c50.004-7.895,62.651-31.16,65.469-44.138H318.531 C321.348,313.115,333.995,336.38,383.999,344.276z"/>
|
||||
<path style="fill:#82AFFF;" d="M424.984,240.237c0,0,3.153-3.153,0-9.458l-40.985-1.834l-40.985,1.834c-3.153,6.305,0,9.458,0,9.458 c-3.153,3.153-3.153,6.305-3.153,6.305h6.305l6.831,11.297l31.001,17.078L415,257.84l6.831-11.297h6.305 C428.137,246.542,428.137,243.389,424.984,240.237z"/>
|
||||
<path style="fill:#F5F5F5;" d="M415.002,257.839c0,0-1.971-4.335-7.225-3.809c0,0-2.89-3.809-7.751-2.759 c0,0-5.649-3.284-8.932,2.759c0,0-10.444-1.062-11.002,6.891c0,0,16.256,24.504,16.651,24.767 c0.394,0.263,19.442,0.131,19.442,0.131l8.802-9.711l-8.671-12.489L415.002,257.839z"/>
|
||||
<path style="fill:#F0C850;" d="M384.394,265.589c0,0-13.79-22.528-15.764-24.434c-1.905-1.839-5.649-3.546-9.459-0.394 c0,0-11.428-0.919-9.853,7.751l3.284,13.137c0,0-2.89,9.064-4.204,9.984c-1.313,0.919-6.174,3.415-6.174,3.415l2.759,10.903 l36.781-1.839L384.394,265.589z"/>
|
||||
<path style="fill:#965032;" d="M400.288,255.738l-0.043,0.019l-1.017-2.401c-0.082-0.194-0.238-0.348-0.434-0.425 s-0.413-0.074-0.609,0.012l-6.842,3.017l-8.138-13.322c0.361-0.31,0.518-0.817,0.348-1.289c-0.22-0.616-0.897-0.936-1.512-0.717 l-1.814,0.649L379,237.655c-0.14-0.413-0.585-0.628-0.999-0.495c-0.413,0.141-0.634,0.588-0.494,1.001l1.236,3.654l-1.939,0.694 c-0.615,0.222-0.935,0.899-0.714,1.512c0.172,0.483,0.628,0.786,1.113,0.786c0.068,0,0.138-0.023,0.207-0.035l2.682,16.153 l-1.73,0.762c-0.377,0.167-0.564,0.597-0.424,0.985l0.981,2.732c0.024,0.46,0.022,1.236-0.135,2.218l-11.006-18.879 c0.462-0.289,0.693-0.851,0.502-1.383c-0.222-0.616-0.893-0.939-1.512-0.717l-1.814,0.649l-1.227-3.626 c-0.139-0.413-0.587-0.634-0.999-0.495c-0.413,0.141-0.634,0.588-0.494,1.001l1.236,3.654l-1.939,0.694 c-0.615,0.222-0.935,0.899-0.714,1.512c0.158,0.441,0.559,0.701,0.995,0.748l4.777,29.814c-0.617,0.259-1.222,0.522-1.901,0.764 c0,0-2.233,10.641-0.525,11.166c1.708,0.525,19.31,5.911,19.31,5.911s24.302-11.56,24.828-11.822 c0.525-0.263,1.577-7.882,1.577-7.882L400.288,255.738z M398.797,256.378l-2.035,0.874l-0.674-1.663l1.999-0.882L398.797,256.378z M386.497,259.818l1.673-0.737l0.643,1.585l-1.771,0.761L386.497,259.818z M385.588,262.05l-1.978,0.85l-0.622-1.534l2.062-0.909 L385.588,262.05z M390.26,260.045l-0.649-1.6l1.788-0.788l0.655,1.618L390.26,260.045z M392.84,257.021l1.806-0.797l0.669,1.649 l-1.814,0.779L392.84,257.021z M381.736,243.255l8.152,13.346l-3.897,1.718l-5.005-14.796L381.736,243.255z M378.922,244.262 l0.578-0.207l5.042,14.904l-2.963,1.306L378.922,244.262z M381.546,262.001l0.617,1.521l-1.945,0.835l-0.548-1.528L381.546,262.001z M366.295,249.325l11.938,20.479c-0.601,1.737-1.735,3.753-3.723,5.732l-8.797-26.004L366.295,249.325z M363.348,250.38l0.882-0.316 l9.009,26.632c-1.366,1.133-3.065,2.228-5.156,3.231L363.348,250.38z"/>
|
||||
<path style="fill:#FF4B55;" d="M427.842,226c-0.837-1.33-3.524-0.76-3.524-0.76s-0.767-1.534-2.794-1.682 c-2.027-0.148-2.399,1.657-2.399,1.657s-0.38-0.282-2.613-0.216s-1.773,3.744-1.773,3.744s-0.854,0-3.744-0.919 c-2.89-0.92-4.794-0.263-4.794-0.263c-0.131-1.511-0.919-2.627-0.919-2.627c-2.43,0.985-4.335-0.131-4.794-0.985 c-0.46-0.854,0.723-2.167,0.723-3.284s-1.544-1.067-2.086-2.052s0-1.527,1.429-2.167s2.759-3.005,1.871-4.926 s-3.448-1.577-3.448-1.577c0.887,0.148,1.625,1.823,0.198,2.167s-2.709-4.877-2.709-4.877c3.3,2.217,5.715,0.887,6.404-1.035 c0.69-1.922-1.133-3.251-1.133-3.251c-1.429,2.315-3.892,0.296-2.561-1.182c1.33-1.478,1.444-3.957,1.444-3.957 c-2.956,1.446-4.794-0.394-4.794-0.394c3.875-2.692,2.759-6.503,2.759-6.503c-1.444-0.657-4.532-0.131-4.532-0.131 c0.657-1.314,0.525-3.679,0.525-3.679c-1.642-0.263-3.481,0.788-3.481,0.788c0.525-1.838-0.198-5.057-0.198-5.057 c-1.182,0.198-3.415,0.854-3.415,0.854c-0.919-2.102-3.481-3.35-3.481-3.35s-2.561,1.248-3.481,3.35c0,0-2.233-0.657-3.415-0.854 c0,0-0.723,3.219-0.198,5.057c0,0-1.839-1.05-3.481-0.788c0,0-0.131,2.365,0.525,3.679c0,0-3.087-0.525-4.532,0.131 c0,0-1.117,3.809,2.759,6.503c0,0-1.839,1.839-4.794,0.394c0,0,0.115,2.479,1.444,3.957c1.33,1.478-1.133,3.498-2.561,1.182 c0,0-1.823,1.33-1.133,3.251s3.104,3.251,6.404,1.035c0,0-1.281,5.221-2.709,4.877s-0.69-2.019,0.198-2.167 c0,0-2.561-0.345-3.448,1.577c-0.887,1.921,0.444,4.286,1.871,4.926c1.429,0.64,1.971,1.182,1.429,2.167 c-0.542,0.985-2.086,0.936-2.086,2.052s1.182,2.43,0.723,3.284c-0.46,0.854-2.365,1.971-4.794,0.985c0,0-0.788,1.117-0.919,2.627 c0,0-1.905-0.657-4.794,0.263c-2.89,0.919-3.744,0.919-3.744,0.919s0.46-3.678-1.773-3.744s-2.613,0.216-2.613,0.216 s-0.371-1.805-2.399-1.657c-2.027,0.149-2.794,1.682-2.794,1.682s-2.687-0.569-3.524,0.76c-0.837,1.33-0.936,3.35,0.64,4.188 c1.577,0.838,5.763,4.335,5.763,4.335l5.911,2.561l20.69-9.163l10.837,2.857l10.837-2.857l20.69,9.163l5.911-2.561 c0,0,4.188-3.498,5.763-4.335C428.778,229.35,428.68,227.331,427.842,226z"/>
|
||||
<path style="fill:#F5F5F5;" d="M377.546,192.612c0,0,0.223,2.782,4.34,2.04C381.885,194.652,381.775,191.759,377.546,192.612z"/>
|
||||
<path style="fill:#FF4B55;" d="M362.313,302.503c0,0-2.956-0.098-6.009,2.167c-3.054,2.266-4.401,0.657-7.455,0.657 s-3.777,3.186-3.777,3.186s-5.911,1.478-3.546,5.813c1.495,2.742,3.576,2.684,4.908,2.272c-0.067,1.842,0.352,3.866,2.481,4.231 c4.04,0.69,5.813-1.478,4.926-4.828c0,0,0.492,3.448,3.153,3.35c2.66-0.098,4.434-1.577,4.138-5.123s4.434-1.379,8.078-6.601 L362.313,302.503z"/>
|
||||
<g>
|
||||
<path style="fill:#82AFFF;" d="M345.039,315.179c0,0-1.839,2.43-1.313,4.794c0,0-3.94-1.248-1.839-7.094 C341.886,312.88,344.58,312.158,345.039,315.179z"/>
|
||||
<path style="fill:#82AFFF;" d="M351.229,318.365c0,0-1.084,3.054,0.394,5.763c0,0-4.926-0.148-3.94-6.207 C347.683,317.922,349.259,316.296,351.229,318.365z"/>
|
||||
<path style="fill:#82AFFF;" d="M356.156,318.069c0,0,0.887,2.561,0,5.025c0,0,4.04-0.246,3.35-6.059 C359.505,317.034,357.338,316.246,356.156,318.069z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#FF4B55;" d="M352.56,259.153c-0.373-3.038-19.409-4.828-18.227,11.166c0,0-2.112-0.039-3.15,1.928 s-3.264,1.484-3.932,0.779c0,0,0.148,3.561,4.562,3.412c0,0-1.397,1.1-1.199,2.708s1.359,3.635,1.286,5.02 s-1.385,3.314-1.385,3.314s3.388-1.162,3.61-3.585s-0.321-4.451,0.346-5.687c0,0-0.321,1.706,1.187,3.858 c1.508,2.152,1.582,4.772,0.964,6.404c0,0,3.758-1.855,3.041-5.44s-1.484-3.264-1.138-5.267c0,0,3.907,3.981,3.24,7.369 c0,0,1.249-1.496,1.138-4.314s-2.068-4.715-2.068-4.715S353.84,269.596,352.56,259.153z"/>
|
||||
<path style="fill:#FF4B55;" d="M405.686,302.503c0,0,2.956-0.098,6.009,2.167c3.054,2.266,4.401,0.657,7.455,0.657 s3.777,3.186,3.777,3.186s5.911,1.478,3.546,5.813c-1.495,2.742-3.576,2.684-4.908,2.272c0.067,1.842-0.352,3.866-2.481,4.231 c-4.04,0.69-5.813-1.478-4.926-4.828c0,0-0.492,3.448-3.153,3.35c-2.66-0.098-4.434-1.577-4.138-5.123s-4.434-1.379-8.078-6.601 L405.686,302.503z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#82AFFF;" d="M422.961,315.179c0,0,1.839,2.43,1.313,4.794c0,0,3.94-1.248,1.839-7.094 C426.113,312.88,423.42,312.158,422.961,315.179z"/>
|
||||
<path style="fill:#82AFFF;" d="M416.769,318.365c0,0,1.084,3.054-0.394,5.763c0,0,4.926-0.148,3.94-6.207 C420.317,317.922,418.74,316.296,416.769,318.365z"/>
|
||||
<path style="fill:#82AFFF;" d="M411.844,318.069c0,0-0.887,2.561,0,5.025c0,0-4.04-0.246-3.35-6.059 C408.493,317.034,410.662,316.246,411.844,318.069z"/>
|
||||
</g>
|
||||
<path style="fill:#FF4B55;" d="M415.44,259.153c0.373-3.038,19.409-4.828,18.227,11.166c0,0,2.112-0.039,3.15,1.928 s3.264,1.484,3.932,0.779c0,0-0.148,3.561-4.562,3.412c0,0,1.397,1.1,1.199,2.708s-1.361,3.635-1.286,5.02 c0.074,1.385,1.385,3.314,1.385,3.314s-3.388-1.162-3.61-3.585s0.321-4.451-0.346-5.687c0,0,0.321,1.706-1.187,3.858 c-1.508,2.152-1.582,4.772-0.964,6.404c0,0-3.758-1.855-3.041-5.44s1.484-3.264,1.138-5.267c0,0-3.907,3.981-3.24,7.369 c0,0-1.249-1.496-1.138-4.314c0.111-2.819,2.068-4.715,2.068-4.715S414.159,269.596,415.44,259.153z"/>
|
||||
<path style="fill:#FFE15A;" d="M423.227,231.894c-0.724-0.487-1.703-0.284-2.185,0.447c-0.997,1.505-2.311,2.386-4.014,2.691 c-5.641,0.979-13.773-4.575-16.135-6.312c-3.423-2.516-7.651-2.953-10.458-1.224c-1.12,0.371-4.544,1.45-6.434,1.45 c-1.89,0-5.314-1.08-6.434-1.45c-2.807-1.729-7.036-1.292-10.458,1.224c-2.361,1.737-10.494,7.29-16.135,6.312 c-1.704-0.305-3.017-1.185-4.014-2.691c-0.482-0.729-1.461-0.932-2.185-0.447c-0.726,0.48-0.925,1.46-0.445,2.183 c1.478,2.236,3.527,3.599,6.091,4.057c0.648,0.117,1.31,0.169,1.984,0.169c6.016,0,12.823-4.292,16.568-7.041 c2.785-2.045,5.907-2.041,7.313-0.856c0.355,0.301,0.759,0.776,0.662,1.333c-0.052,0.305-0.253,0.579-0.587,0.81 c0.081-0.483-0.066-0.998-0.439-1.373c-0.616-0.616-1.613-0.616-2.229,0c-0.802,0.798-0.889,2.093-0.214,3.147 c0.679,1.056,2.142,1.828,3.88,1.185c0.883-0.329,1.589-0.958,2.078-1.728c2.396-0.697,4.565-0.702,4.565-0.702 s2.169,0.004,4.565,0.702c0.489,0.77,1.195,1.399,2.078,1.728c1.738,0.643,3.2-0.129,3.88-1.185 c0.675-1.053,0.588-2.349-0.214-3.147c-0.616-0.616-1.613-0.616-2.229,0c-0.373,0.375-0.519,0.889-0.439,1.373 c-0.334-0.231-0.534-0.505-0.587-0.81c-0.097-0.557,0.307-1.032,0.662-1.333c1.406-1.185,4.527-1.188,7.313,0.856 c3.745,2.75,10.552,7.041,16.568,7.041c0.674,0,1.336-0.052,1.984-0.169c2.564-0.459,4.613-1.823,6.091-4.057 C424.152,233.352,423.954,232.374,423.227,231.894z"/>
|
||||
<g>
|
||||
<path style="fill:#82AFFF;" d="M343.83,233.635c0,0-0.259-3.523-0.371-4.673s-2.262-2.003-3.079-0.853 C339.564,229.257,339.343,231.372,343.83,233.635z"/>
|
||||
<path style="fill:#82AFFF;" d="M344.591,232.503c0,0,3.104-2.513,2.709-3.842c-0.394-1.33-1.231-2.019-2.266-1.625 C343.998,227.429,343.507,229.842,344.591,232.503z"/>
|
||||
<path style="fill:#82AFFF;" d="M350.65,230.532c0.446-0.446,0.591-2.611-0.64-2.857c-1.231-0.246-2.857,1.675-2.759,4.04 C347.251,231.715,349.812,231.369,350.65,230.532z"/>
|
||||
<path style="fill:#82AFFF;" d="M349.369,231.763c-1.429,0.457-2.808,1.675-2.808,1.675s2.561,1.871,4.335,1.281 C352.67,234.128,351.833,230.976,349.369,231.763z"/>
|
||||
</g>
|
||||
<path style="fill:#F5F5F5;" d="M390.453,192.612c0,0-0.223,2.782-4.34,2.04C386.113,194.652,386.225,191.759,390.453,192.612z"/>
|
||||
<g>
|
||||
<path style="fill:#82AFFF;" d="M424.169,233.635c0,0,0.259-3.523,0.371-4.673c0.111-1.15,2.262-2.003,3.079-0.853 C428.435,229.259,428.657,231.372,424.169,233.635z"/>
|
||||
<path style="fill:#82AFFF;" d="M423.409,232.503c0,0-3.104-2.513-2.709-3.842c0.394-1.33,1.231-2.019,2.266-1.625 C424.001,227.429,424.492,229.842,423.409,232.503z"/>
|
||||
<path style="fill:#82AFFF;" d="M417.35,230.532c-0.446-0.446-0.591-2.611,0.64-2.857c1.231-0.246,2.857,1.675,2.759,4.04 C420.748,231.715,418.187,231.369,417.35,230.532z"/>
|
||||
<path style="fill:#82AFFF;" d="M418.63,231.763c1.429,0.457,2.808,1.675,2.808,1.675s-2.561,1.871-4.335,1.281 C415.329,234.128,416.167,230.976,418.63,231.763z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#464655;" d="M382.369,199.169l1.25,1.25c0.21,0.21,0.551,0.21,0.76,0l1.25-1.25 c0.339-0.339,0.099-0.918-0.381-0.918h-2.5C382.27,198.251,382.031,198.83,382.369,199.169z"/>
|
||||
<path style="fill:#464655;" d="M381.715,204.294c-0.927,0-1.729-0.332-2.274-0.946c-0.564-0.638-0.803-1.515-0.661-2.408 c0.051-0.299,0.351-0.48,0.632-0.456c0.301,0.05,0.505,0.332,0.457,0.634c-0.09,0.564,0.054,1.108,0.397,1.496 c0.354,0.397,0.895,0.581,1.559,0.573c1.386-0.055,1.618-1.41,1.628-1.465l-0.007-2.473c0-0.305,0.246-0.551,0.551-0.551 s0.551,0.246,0.551,0.551v2.559c-0.134,0.884-0.856,2.408-2.68,2.482C381.819,204.294,381.766,204.294,381.715,204.294z"/>
|
||||
<path style="fill:#464655;" d="M386.284,204.294c-0.051,0-0.103,0-0.156-0.003c-1.824-0.074-2.546-1.598-2.674-2.396l-0.007-2.645 c0-0.305,0.246-0.551,0.551-0.551s0.551,0.246,0.551,0.551v2.559c0.019,0.055,0.277,1.327,1.621,1.379 c0.683,0.012,1.204-0.169,1.559-0.573c0.343-0.388,0.488-0.932,0.397-1.496c-0.047-0.301,0.156-0.585,0.457-0.634 c0.288-0.036,0.584,0.154,0.632,0.456c0.143,0.893-0.097,1.77-0.66,2.408C388.012,203.962,387.211,204.294,386.284,204.294z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#F5F5F5;" d="M402.916,284.375c0,0-3.94-6.305-8.538-2.102c-4.598,4.204-6.305,9.327-11.56,8.932 c-2.883-0.216-4.356-1.533-5.121-2.684c1.396-1.149,2.386-2.894,1.312-5.461c-2.365-5.649-11.034-3.94-13.399,2.233 c0,0,2.759-9.064-6.831-6.042c0,0-1.182-6.305-6.699-4.598c-3,0.929-4.11,2.775-4.522,4.279c-1.161-0.27-2.652-0.262-4.017,0.843 l6.962,18.785l10.509,0.131l2.365,3.546l13.793,8.67l2.496,5.255h8.67c0,0,0.657-5.386,5.255-6.962 c4.598-1.577,12.085-4.861,12.874-7.751c0.788-2.89,0.788-2.89,0.788-2.89l8.407,0.131c0.919-0.657,7.094-10.772,7.094-10.772 l2.866-13.027C424.037,274.665,405.931,272.315,402.916,284.375z"/>
|
||||
<path style="fill:#F5F5F5;" d="M425.641,274.785l-0.024,0.109c0.073,0.01,0.156,0.023,0.156,0.023L425.641,274.785z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#FFE15A;" d="M368.424,304.516c-3.406-1.373-4.622-3.297-5.043-4.322c-0.391-0.948-0.314-1.62-0.207-1.866 c0.217-0.502,0.48-0.822,0.725-0.884c0.231-0.055,0.523,0.077,0.576,0.11c0.11,0.126,0.169,0.526,0.063,0.625 c-0.634,0.597-0.663,1.594-0.067,2.229c0.599,0.634,1.593,0.662,2.229,0.067c0.648-0.609,1.02-1.462,1.045-2.401 c0.03-1.006-0.339-2.01-0.982-2.688c-0.646-0.683-1.971-1.305-3.383-1.053c-0.291,0.051-0.619,0.17-0.954,0.332 c0.221-2.184-0.621-3.302-1.239-3.753c-1.039-0.755-2.518-0.772-3.763-0.043c-1.273,0.748-1.961,2.057-1.793,3.411 c0.108,0.865,0.975,1.383,1.821,1.266c0.864-0.105,1.543-0.997,1.437-1.859c0.179-0.163,0.414-0.218,0.406-0.256 c0.003,0.003,0.211,0.348-0.04,1.46c-0.393,1.742-1.314,2.814-2.74,3.19c-1.775,0.49-4.049-0.258-5.393-1.734 c-1.869-2.057-5.781-12.971-8.107-20.241c9.971-4.729,11.196-12.586,11.007-16.964c-0.288-6.669-4.278-13.492-8.715-14.899 c-1.746-0.551-4.361-0.665-6.259,0.314c-1.075,0.561-1.821,1.419-2.157,2.487c-0.685,2.179,0.686,3.981,2.326,4.569 c1.698,0.609,3.412-0.124,4.071-1.746c0.327-0.807-0.03-1.73-0.836-2.057c-0.811-0.335-1.694,0.058-2.019,0.862 c-0.066,0.036-0.285-0.046-0.448-0.231c-0.118-0.136-0.143-0.268-0.085-0.449c0.052-0.167,0.171-0.413,0.605-0.638 c1.03-0.538,2.752-0.456,3.852-0.108c2.539,0.803,6.246,5.77,6.516,12.029c0.161,3.741-0.974,10.598-10.388,14.505 c-0.755,0.314-1.144,1.149-0.9,1.928c0.615,1.967,6.098,19.341,9.204,22.755c1.671,1.838,4.196,2.906,6.611,2.906 c0.654,0,1.301-0.077,1.92-0.241c1.053-0.279,1.932-0.822,2.697-1.504c0.076,0.578,0.21,1.17,0.454,1.762 c0.609,1.484,2.3,4.243,7.02,6.145c9.547,3.83,10.454,6.391,10.402,7.318c-0.029,0.508-0.32,0.772-0.557,0.905 c-0.103,0.058-0.205,0.095-0.292,0.117c0.352-0.483,0.416-1.145,0.105-1.703c-0.425-0.76-1.383-1.032-2.144-0.607 c-1.073,0.6-1.821,2.014-1.18,3.559c0.5,1.201,1.671,1.928,3.023,1.928c0.217,0,0.439-0.019,0.663-0.059 c1.963-0.332,3.413-1.961,3.529-3.959C381.31,310.253,374.103,306.794,368.424,304.516z"/>
|
||||
<path style="fill:#FFE15A;" d="M399.575,304.516c3.406-1.373,4.622-3.297,5.043-4.322c0.391-0.948,0.314-1.62,0.207-1.866 c-0.217-0.502-0.48-0.822-0.725-0.884c-0.231-0.055-0.523,0.077-0.576,0.11c-0.11,0.126-0.169,0.526-0.063,0.625 c0.635,0.597,0.663,1.594,0.067,2.229c-0.599,0.634-1.593,0.662-2.229,0.067c-0.648-0.609-1.02-1.462-1.045-2.401 c-0.029-1.006,0.339-2.01,0.982-2.688c0.646-0.683,1.971-1.305,3.383-1.053c0.291,0.051,0.619,0.17,0.954,0.332 c-0.221-2.184,0.621-3.302,1.239-3.753c1.039-0.755,2.518-0.772,3.763-0.043c1.273,0.748,1.961,2.057,1.793,3.411 c-0.108,0.865-0.975,1.383-1.821,1.266c-0.864-0.105-1.543-0.997-1.437-1.859c-0.179-0.163-0.414-0.218-0.406-0.256 c-0.003,0.003-0.211,0.348,0.04,1.46c0.393,1.742,1.314,2.814,2.74,3.19c1.775,0.49,4.049-0.258,5.393-1.734 c1.869-2.057,5.781-12.971,8.107-20.241c-9.971-4.729-11.196-12.586-11.007-16.964c0.288-6.669,4.278-13.492,8.715-14.899 c1.746-0.551,4.361-0.665,6.259,0.314c1.075,0.561,1.821,1.419,2.157,2.487c0.685,2.179-0.686,3.981-2.326,4.569 c-1.698,0.609-3.412-0.124-4.071-1.746c-0.327-0.807,0.03-1.73,0.836-2.057c0.811-0.335,1.694,0.058,2.019,0.862 c0.066,0.036,0.285-0.046,0.448-0.231c0.118-0.136,0.143-0.268,0.085-0.449c-0.052-0.167-0.171-0.413-0.605-0.638 c-1.03-0.538-2.752-0.456-3.852-0.108c-2.539,0.803-6.246,5.77-6.516,12.029c-0.161,3.741,0.974,10.598,10.388,14.505 c0.755,0.314,1.144,1.149,0.9,1.928c-0.615,1.967-6.098,19.341-9.204,22.755c-1.671,1.838-4.196,2.906-6.611,2.906 c-0.654,0-1.301-0.077-1.92-0.241c-1.053-0.279-1.932-0.822-2.697-1.504c-0.076,0.578-0.21,1.17-0.454,1.762 c-0.609,1.484-2.3,4.243-7.02,6.145c-9.547,3.83-10.454,6.391-10.402,7.318c0.03,0.508,0.32,0.772,0.557,0.905 c0.103,0.058,0.205,0.095,0.292,0.117c-0.352-0.483-0.416-1.145-0.105-1.703c0.425-0.76,1.383-1.032,2.144-0.607 c1.073,0.6,1.821,2.014,1.18,3.559c-0.5,1.201-1.671,1.928-3.023,1.928c-0.217,0-0.439-0.019-0.663-0.059 c-1.963-0.332-3.413-1.961-3.529-3.959C386.688,310.253,393.896,306.794,399.575,304.516z"/>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 10 KiB |
@ -1,193 +0,0 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<path style="fill:#FF4B55;" d="M511.808,123.616c-1.472-19.776-18.112-35.328-38.208-35.328H38.272 c-20.096,0-36.608,15.488-38.208,35.328H0v264.832h0.128c1.472,19.776,18.048,35.264,38.144,35.264H473.6 c20.224,0,36.672-15.616,38.208-35.328H512V123.616H511.808z"/>
|
||||
<rect y="123.62" style="fill:#41479B;" width="512" height="264.83"/>
|
||||
<circle style="fill:#F5F5F5;" cx="256" cy="256.03" r="114.82"/>
|
||||
<g>
|
||||
<path style="fill:#82AFFF;" d="M233.984,316.32l-17.728,3.008c-2.176,0.384-4.288-1.28-4.288-3.584v-6.72h22.016L233.984,316.32 L233.984,316.32z"/>
|
||||
<path style="fill:#82AFFF;" d="M277.888,316.32l17.728,3.008c2.176,0.384,4.288-1.28,4.288-3.584v-6.72h-22.016V316.32 L277.888,316.32z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#965032;" d="M252.288,197.216h-1.472c-1.792,0-3.52-1.024-4.288-2.688l-2.688-5.376l2.496-1.216l2.688,5.376 c0.384,0.704,1.088,1.088,1.92,1.088h1.472v2.816L252.288,197.216L252.288,197.216z"/>
|
||||
|
||||
<rect x="219.945" y="195.396" transform="matrix(-0.4472 -0.8944 0.8944 -0.4472 149.6537 485.9717)" style="fill:#965032;" width="10.112" height="2.688"/>
|
||||
<path style="fill:#965032;" d="M260.992,239.52l-7.488-7.488c-1.6-1.6-2.624-3.904-2.624-6.208v-2.496 c0-0.896-0.192-1.92-0.576-2.688l-1.92-3.712c-0.384-0.832-1.216-1.28-1.984-1.28h-6.528c-1.92,0-3.584-1.088-4.48-2.816 l-2.624-5.312l2.496-1.216l2.624,5.312c0.384,0.832,1.216,1.28,1.984,1.28h6.528c1.92,0,3.584,1.088,4.48,2.816l1.92,3.712 c0.576,1.216,0.896,2.624,0.896,3.904v2.496c0,1.6,0.576,3.072,1.792,4.224l2.816,2.816v-12.8c0-3.52-1.216-6.912-3.392-9.6 c-2.624-3.2-4.032-7.232-4.032-11.328v-10.624h2.688v10.624c0,3.52,1.216,6.912,3.392,9.6c2.624,3.2,4.032,7.232,4.032,11.328 L260.992,239.52L260.992,239.52z"/>
|
||||
<path style="fill:#965032;" d="M254.4,232.416h-4.096c-2.496,0-4.8-1.6-5.696-3.904l-1.024-2.816l2.624-1.024l1.024,2.816 c0.512,1.28,1.728,2.112,3.072,2.112h4.096V232.416L254.4,232.416z"/>
|
||||
|
||||
<rect x="257.922" y="183.324" transform="matrix(-0.915 -0.4035 0.4035 -0.915 414.7991 492.3181)" style="fill:#965032;" width="2.688" height="38.271"/>
|
||||
<polygon style="fill:#965032;" points="272,215.648 258.688,215.648 258.688,212.832 269.184,212.832 269.184,199.52 272,199.52 "/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#73AF00;" d="M246.784,228.832h-11.008c-3.008,0-5.504-2.496-5.504-5.504l0,0c0-3.008,2.496-5.504,5.504-5.504 h11.008c3.008,0,5.504,2.496,5.504,5.504l0,0C252.288,226.464,249.792,228.832,246.784,228.832z"/>
|
||||
<path style="fill:#73AF00;" d="M272.384,228.832h-11.008c-3.008,0-5.504-2.496-5.504-5.504l0,0c0-3.008,2.496-5.504,5.504-5.504 h11.008c3.008,0,5.504,2.496,5.504,5.504l0,0C277.888,226.464,275.52,228.832,272.384,228.832z"/>
|
||||
<path style="fill:#73AF00;" d="M283.392,217.824H268.8c-3.008,0-5.504-2.496-5.504-5.504l0,0c0-3.008,2.496-5.504,5.504-5.504 h14.592c3.008,0,5.504,2.496,5.504,5.504l0,0C288.896,215.456,286.4,217.824,283.392,217.824z"/>
|
||||
<path style="fill:#73AF00;" d="M287.104,203.232h-25.6c-3.008,0-5.504-2.496-5.504-5.504l0,0c0-3.008,2.496-5.504,5.504-5.504h25.6 c3.008,0,5.504,2.496,5.504,5.504l0,0C292.608,200.736,290.112,203.232,287.104,203.232z"/>
|
||||
<path style="fill:#73AF00;" d="M272.384,188.64h-7.296c-3.008,0-5.504-2.496-5.504-5.504l0,0c0-3.008,2.496-5.504,5.504-5.504 h7.296c3.008,0,5.504,2.496,5.504,5.504l0,0C277.888,186.144,275.52,188.64,272.384,188.64z"/>
|
||||
<path style="fill:#73AF00;" d="M224.832,195.936h-3.712c-3.008,0-5.504-2.496-5.504-5.504l0,0c0-3.008,2.496-5.504,5.504-5.504 h3.712c3.008,0,5.504,2.496,5.504,5.504l0,0C230.272,193.44,227.904,195.936,224.832,195.936z"/>
|
||||
<path style="fill:#73AF00;" d="M250.496,192.224h-11.008c-3.008,0-5.504-2.496-5.504-5.504l0,0c0-3.008,2.496-5.504,5.504-5.504 h11.008c3.008,0,5.504,2.496,5.504,5.504l0,0C255.872,189.856,253.504,192.224,250.496,192.224z"/>
|
||||
<path style="fill:#73AF00;" d="M246.784,210.528h-22.016c-3.008,0-5.504-2.496-5.504-5.504l0,0c0-3.008,2.496-5.504,5.504-5.504 h22.016c3.008,0,5.504,2.496,5.504,5.504l0,0C252.288,208.16,249.792,210.528,246.784,210.528z"/>
|
||||
<path style="fill:#73AF00;" d="M310.912,287.136H201.024c-4.032,0-7.296,3.328-7.296,7.296s3.328,7.296,7.296,7.296h29.312 c0,4.032,3.328,7.296,7.296,7.296h36.608c4.032,0,7.296-3.328,7.296-7.296h29.312c4.032,0,7.296-3.328,7.296-7.296 C318.208,290.336,314.88,287.136,310.912,287.136z"/>
|
||||
</g>
|
||||
<path style="fill:#BE7855;" d="M328.896,222.112c-0.32-0.512-1.728,0.128-2.624-0.192c-11.072-4.096-25.92-11.584-35.584-16.704 l-1.92-3.072l-18.368-8.896c-1.216-0.576-2.624-0.128-3.2,1.024l-0.896,1.6c-0.704,1.216-0.192,2.816,1.024,3.392l17.472,9.088 l4.992-0.384l19.2,9.92c0,0,13.12,6.72,13.824,7.232s1.088,3.2,2.432,3.008C326.08,227.808,330.112,224.544,328.896,222.112z"/>
|
||||
<g>
|
||||
<path style="fill:#FFBE3C;" d="M207.616,292.512c0,0,1.216,5.376,0.128,6.016c-1.088,0.576-7.232,0.576-7.104-0.704 c0.192-1.28,1.024-5.888,1.024-5.888L207.616,292.512z"/>
|
||||
<path style="fill:#FFBE3C;" d="M217.728,289.632c0,0-1.024,4.032,1.024,4.224s13.184,0.128,13.504-0.192 c0.32-0.32,0.704-1.088,0.704-1.088l-10.432-2.88h-4.8L217.728,289.632L217.728,289.632z"/>
|
||||
</g>
|
||||
<path style="fill:#EAF3F5;" d="M206.272,239.264c0,0-2.688,6.528-3.712,28.928c-0.32,6.016,0.512,4.608-2.496,23.808l3.52,1.792 c1.024,0.512,2.304,0.512,3.328-0.128l3.392-2.112c0,0-1.728-21.504,3.776-33.92c0,0,2.88,5.312,2.88,9.28 s-0.192,22.976-0.192,22.976s6.4,1.088,9.28,0.832c0,0-1.792-41.408-3.712-51.072L206.272,239.264z"/>
|
||||
<g>
|
||||
<path style="fill:#965032;" d="M206.912,236.512c0,0-1.088,0.832-0.512,2.688c0,0,8.384,3.584,16.192,0.512 c0,0,0.896-1.28-0.192-2.816L206.912,236.512z"/>
|
||||
<path style="fill:#965032;" d="M195.712,216.736c-4.8,1.792-12.032,6.208-11.52,9.728s2.88,2.688,3.712,1.792 s3.008-3.584,3.712-4.096c0.704-0.512,11.904-6.272,11.904-6.272l29.824-15.296c0,0,0.192-1.472-1.472-2.688 C231.68,199.84,213.504,210.016,195.712,216.736z"/>
|
||||
</g>
|
||||
<path style="fill:#FFBE3C;" d="M209.728,199.456l-0.192,1.28c0,0-0.512,8.128,2.176,10.176c0,0,0.576,1.728-0.32,2.496 c-0.896,0.832-9.984,5.376-9.984,5.376s-2.304,4.928-2.304,7.616c0,0-2.176-0.896-1.984-1.92c0.192-1.088,1.472-3.904,1.088-5.312 s-1.92-1.024-1.92-1.024s-0.704,0.832,0.512,1.28l-0.384,1.728l-4.928,2.88l1.088,1.28c0,0,0.128,10.112,6.016,11.392 c0,0,3.072,0.192,6.912-6.912c0,0,1.984,3.52,1.28,6.592c0,0,6.528,3.52,15.424,0.512l0.128-6.208c0,0,1.408,9.472,6.08,8.576 c0,0,12.992-4.992,10.816-6.912c-4.992-4.416-11.072-0.704-11.072-0.704c-0.32-6.4-0.832-14.72-1.728-15.616 c-1.408-1.472-5.632-0.704-6.4-2.624c-0.832-1.92-0.576-5.312,0.32-9.216s-3.712-6.592-3.712-6.592L209.728,199.456z"/>
|
||||
<path style="fill:#464655;" d="M209.6,200.736c0,0,4.672,1.216,8.32-0.32l1.6,4.032h0.896c0,0,2.176-7.296-0.704-7.296 c0,0,0-2.432-5.12-2.304C210.176,194.912,208.576,197.856,209.6,200.736z"/>
|
||||
<g>
|
||||
<path style="fill:#965032;" d="M304.896,292.512c0,0-1.216,5.376-0.128,6.016c1.088,0.576,7.232,0.576,7.104-0.704 c-0.192-1.28-1.024-5.888-1.024-5.888L304.896,292.512z"/>
|
||||
<path style="fill:#965032;" d="M294.784,289.632c0,0,1.024,4.032-1.024,4.224c-2.048,0.192-13.184,0.128-13.504-0.192 c-0.32-0.32-0.704-1.088-0.704-1.088l10.368-2.88h4.864L294.784,289.632L294.784,289.632z"/>
|
||||
</g>
|
||||
<path style="fill:#EAF3F5;" d="M306.112,239.264c0,0,2.688,6.528,3.712,28.928c0.32,6.016-0.512,4.608,2.496,23.808l-3.52,1.792 c-1.024,0.512-2.304,0.512-3.328-0.128l-3.392-2.112c0,0,1.728-21.504-3.776-33.92c0,0-2.88,5.312-2.88,9.28 s0.192,22.976,0.192,22.976s-6.4,1.088-9.28,0.832c0,0,1.792-41.408,3.712-51.072L306.112,239.264z"/>
|
||||
<path style="fill:#BE7855;" d="M305.6,236.512c0,0,1.088,0.832,0.512,2.688c0,0-8.384,3.584-16.192,0.512 c0,0-0.896-1.28,0.192-2.816L305.6,236.512z"/>
|
||||
<path style="fill:#965032;" d="M302.784,199.456l0.192,1.28c0,0,0.512,8.128-2.176,10.176c0,0-0.576,1.728,0.32,2.496 c0.896,0.832,9.984,5.376,9.984,5.376s2.304,4.928,2.304,7.616c0,0,2.176-0.896,1.984-1.92c-0.192-1.088-1.472-3.904-1.088-5.312 c0.384-1.408,1.92-1.024,1.92-1.024s0.704,0.832-0.512,1.28l0.384,1.728l4.928,2.88l-1.088,1.28c0,0-0.128,10.112-6.016,11.392 c0,0-3.072,0.192-6.912-6.912c0,0-1.984,3.52-1.28,6.592c0,0-6.528,3.52-15.424,0.512l-0.128-6.208c0,0-1.408,9.472-6.08,8.576 c0,0-12.992-4.992-10.816-6.912c4.992-4.416,11.072-0.704,11.072-0.704c0.32-6.4,0.832-14.72,1.728-15.616 c1.408-1.472,5.632-0.704,6.4-2.624c0.832-1.92,0.576-5.312-0.32-9.216s3.712-6.592,3.712-6.592L302.784,199.456z"/>
|
||||
<path style="fill:#464655;" d="M302.912,200.736c0,0-4.672,1.216-8.32-0.32l-1.6,4.032h-0.896c0,0-2.176-7.296,0.704-7.296 c0,0,0-2.432,5.12-2.304C302.272,194.912,303.872,197.856,302.912,200.736z"/>
|
||||
<path style="fill:#EAF3F5;" d="M224.512,203.744c-0.384-0.896,0.32-1.216,0.32-1.216s4.608-2.496,5.184-2.496 c0.896,0.128,1.984,1.6,1.984,3.008c0,1.28,1.728,4.8,5.312,5.696c0,0-4.48,6.08-10.688,5.184 C226.496,213.92,226.88,209.824,224.512,203.744z"/>
|
||||
<path style="fill:#82AFFF;" d="M230.976,232.16c-1.408,0-2.496,1.216-2.496,2.624v30.272c0,7.296,3.392,33.024,27.52,40.32 c24-7.296,27.52-33.024,27.52-40.32v-30.272c0-1.472-1.088-2.624-2.496-2.624H230.976L230.976,232.16z"/>
|
||||
<path style="fill:#FFE15A;" d="M283.392,265.12v-30.272c0-1.472-1.088-2.624-2.496-2.624h-25.024v25.6L280,281.952 C282.688,274.848,283.392,268.32,283.392,265.12z"/>
|
||||
<path style="fill:#EAF3F5;" d="M228.48,265.12v-30.272c0-1.472,1.088-2.624,2.496-2.624H256v25.6l-24.128,24.128 C229.12,274.848,228.48,268.32,228.48,265.12z"/>
|
||||
<polygon style="fill:#8C5A28;" points="239.68,281.12 246.08,287.84 263.808,287.84 267.52,283.04 263.232,284.832 248.896,284.832 "/>
|
||||
<path style="fill:#F5F5F5;" d="M246.592,272.416l-1.024,9.792l-4.416-1.728C241.216,280.544,243.2,275.808,246.592,272.416z"/>
|
||||
<g>
|
||||
<rect x="255.3" y="268.64" style="fill:#8C5A28;" width="0.704" height="16.704"/>
|
||||
<rect x="261.31" y="270.05" style="fill:#8C5A28;" width="0.704" height="15.232"/>
|
||||
<rect x="249.28" y="270.05" style="fill:#8C5A28;" width="0.704" height="15.232"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#F5F5F5;" d="M257.792,283.616h-4.416c-0.32,0-0.512-0.192-0.512-0.512v-2.368c0-0.32,0.192-0.512,0.512-0.512 h4.416c0.32,0,0.512,0.192,0.512,0.512v2.368C258.432,283.424,258.112,283.616,257.792,283.616z"/>
|
||||
<path style="fill:#F5F5F5;" d="M257.792,279.008h-4.416c-0.32,0-0.512-0.192-0.512-0.512V276c0-0.32,0.192-0.512,0.512-0.512h4.416 c0.32,0,0.512,0.192,0.512,0.512v2.432C258.432,278.752,258.112,279.008,257.792,279.008z"/>
|
||||
<path style="fill:#F5F5F5;" d="M257.792,274.656h-4.416c-0.32,0-0.512-0.192-0.512-0.512v-2.368c0-0.32,0.192-0.512,0.512-0.512 h4.416c0.32,0,0.512,0.192,0.512,0.512v2.368C258.432,274.464,258.112,274.656,257.792,274.656z"/>
|
||||
<path style="fill:#F5F5F5;" d="M263.488,283.616h-3.712c-0.32,0-0.512-0.192-0.512-0.512v-2.368c0-0.32,0.192-0.512,0.512-0.512 h3.712c0.32,0,0.512,0.192,0.512,0.512v2.368C264,283.424,263.808,283.616,263.488,283.616z"/>
|
||||
<path style="fill:#F5F5F5;" d="M263.488,279.328h-3.712c-0.32,0-0.512-0.192-0.512-0.512v-1.92c0-0.32,0.192-0.512,0.512-0.512 h3.712c0.32,0,0.512,0.192,0.512,0.512v1.92C264,279.136,263.808,279.328,263.488,279.328z"/>
|
||||
<path style="fill:#F5F5F5;" d="M263.488,275.104h-3.712c-0.32,0-0.512-0.192-0.512-0.512v-1.408c0-0.32,0.192-0.512,0.512-0.512 h3.712c0.32,0,0.512,0.192,0.512,0.512v1.408C264,274.848,263.808,275.104,263.488,275.104z"/>
|
||||
<path style="fill:#F5F5F5;" d="M251.392,283.616h-3.712c-0.32,0-0.512-0.192-0.512-0.512v-2.368c0-0.32,0.192-0.512,0.512-0.512 h3.712c0.32,0,0.512,0.192,0.512,0.512v2.368C252.032,283.424,251.712,283.616,251.392,283.616z"/>
|
||||
<path style="fill:#F5F5F5;" d="M251.392,279.328h-3.712c-0.32,0-0.512-0.192-0.512-0.512v-1.92c0-0.32,0.192-0.512,0.512-0.512 h3.712c0.32,0,0.512,0.192,0.512,0.512v1.92C252.032,279.136,251.712,279.328,251.392,279.328z"/>
|
||||
<path style="fill:#F5F5F5;" d="M251.392,275.104h-3.712c-0.32,0-0.512-0.192-0.512-0.512v-1.408c0-0.32,0.192-0.512,0.512-0.512 h3.712c0.32,0,0.512,0.192,0.512,0.512v1.408C252.032,274.848,251.712,275.104,251.392,275.104z"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon style="fill:#FF4B55;" points="261.312,270.048 261.312,272.032 258.432,271.008 "/>
|
||||
<polygon style="fill:#FF4B55;" points="249.28,270.048 249.28,272.032 246.4,271.008 "/>
|
||||
<polygon style="fill:#FF4B55;" points="255.296,268.64 255.296,270.56 252.416,269.536 "/>
|
||||
</g>
|
||||
<path style="fill:#4173CD;" d="M277.696,287.136h-43.584c0.576,1.216,1.408,2.496,2.176,3.712h39.296 C276.416,289.504,277.12,288.352,277.696,287.136z"/>
|
||||
<path style="fill:#73AF00;" d="M275.584,290.72h-39.296l0,0c1.728,2.624,3.904,5.12,6.4,7.296h26.432 C271.68,295.84,273.792,293.344,275.584,290.72L275.584,290.72z"/>
|
||||
<path style="fill:#FFE15A;" d="M242.688,298.016c3.52,3.072,7.808,5.696,13.184,7.296c5.376-1.6,9.728-4.224,13.184-7.296H242.688z"/>
|
||||
<path style="fill:#BE7855;" d="M251.2,259.936c0,0-0.32,0.128-0.576,0.128c-0.192-0.128-0.704-0.128-0.384-1.024 c0.128-0.384,0.384-1.024,0.192-1.216s-0.32-0.384-0.512-0.576c-0.384-0.384-0.832-0.896-1.28-1.472 c-1.024-1.088-2.112-2.304-3.392-3.52c-0.704-0.576-1.28-1.216-1.984-1.92c-0.704-0.576-1.408-1.28-2.176-1.92 c-0.384-0.192-1.024-0.384-1.472-0.512c-0.512-0.192-0.832-0.576-1.088-0.896c-0.704-0.576-1.408-1.28-1.984-1.92 c-1.28-1.216-2.496-2.368-3.52-3.392s-1.792-1.792-2.304-2.432c-0.512-0.576-0.512-1.472,0.128-1.984l1.6-1.6 c0.576-0.512,1.472-0.512,1.984,0c0.576,0.576,1.408,1.408,2.432,2.368c1.024,0.96,2.112,2.304,3.328,3.584 c0.576,0.704,1.216,1.408,1.792,2.112c0.32,0.384,0.704,0.704,0.832,1.216c0.192,0.512,0.32,1.088,0.512,1.472 c0.512,0.832,1.216,1.472,1.792,2.176s1.216,1.408,1.792,2.112c1.216,1.408,2.304,2.624,3.392,3.584 c0.512,0.512,1.024,0.896,1.408,1.28c0.192,0.192,0.384,0.384,0.576,0.576c0.128,0.192,0.704-0.128,1.216-0.192 c0.896-0.192,0.896,0.192,0.896,0.384c0,0.32-0.128,0.576-0.128,0.576L251.2,259.936z"/>
|
||||
<path style="fill:#965032;" d="M233.28,262.816c-0.32,0-0.576-0.128-0.832-0.32c-0.576-0.512-0.704-1.28-0.32-1.92l12.992-17.728 c0.384-0.576,1.28-0.704,1.92-0.32c0.576,0.512,0.704,1.28,0.32,1.92l-12.992,17.728 C234.112,262.624,233.728,262.816,233.28,262.816z"/>
|
||||
<polygon style="fill:#F5F5F5;" points="243.712,241.76 250.496,246.24 253.376,242.208 247.104,237.152 "/>
|
||||
<path style="fill:#965032;" d="M261.824,240.032l17.408,21.504c0,0,2.432,0.128,2.112-1.792l-17.984-21.12L261.824,240.032z"/>
|
||||
<path style="fill:#EAF3F5;" d="M257.92,243.04c0,0,4.928-0.896,6.912-3.904l2.816,3.328c0,0-4.608,3.2-4.992,6.72 C262.592,249.056,258.88,248.032,257.92,243.04z"/>
|
||||
<g>
|
||||
<path style="fill:#965032;" d="M276.672,240.864c-0.32,0-0.576-0.192-0.832-0.512c-0.512-0.896-0.576-1.792-0.32-2.496 c0.512-1.024,1.472-1.28,1.728-1.408c0.512-0.128,1.024,0.192,1.088,0.576c0.128,0.512-0.192,1.024-0.576,1.088 c-0.128,0-0.384,0.192-0.512,0.384s0,0.576,0.192,1.024c0.192,0.384,0.128,1.024-0.384,1.216 C276.992,240.864,276.8,240.864,276.672,240.864z"/>
|
||||
<path style="fill:#965032;" d="M262.4,254.112c0-0.32-0.192-0.576-0.512-0.832c-0.896-0.512-1.792-0.576-2.496-0.32 c-1.024,0.512-1.28,1.472-1.408,1.728c-0.128,0.512,0.192,1.024,0.576,1.088c0.512,0.128,1.024-0.192,1.088-0.576 c0-0.128,0.192-0.384,0.384-0.512c0.192-0.128,0.576,0,1.024,0.192c0.384,0.192,1.024,0.128,1.216-0.384 C262.4,254.432,262.4,254.24,262.4,254.112z"/>
|
||||
</g>
|
||||
<polygon style="fill:#EAF3F5;" points="277.312,238.816 260.928,254.944 264.704,259.232 280.768,243.104 "/>
|
||||
<path style="fill:#FFBE3C;" d="M194.112,215.712c1.088-0.32,2.112,1.216,1.088,2.304s-3.904,3.008-4.672,2.816 C188.928,220.512,187.776,217.12,194.112,215.712z"/>
|
||||
<path style="fill:#965032;" d="M318.272,217.248c-1.024-0.32-1.92,1.216-1.024,2.304c0.896,1.088,3.584,3.008,4.416,2.816 C323.2,222.048,324.096,218.72,318.272,217.248z"/>
|
||||
<path style="fill:#464655;" d="M280.896,232.16c1.408,0,2.496,1.216,2.496,2.624v30.272c0,7.296-3.392,33.024-27.52,40.32 c-24-7.296-27.52-33.024-27.52-40.32v-30.272c0-1.472,1.088-2.624,2.496-2.624H280.896 M280.896,230.304h-49.92 c-2.432,0-4.288,1.984-4.288,4.48v30.272c0,1.728,0.192,11.008,4.928,20.928c4.992,10.624,13.184,17.92,23.872,21.12l0.512,0.192 l0.512-0.192c10.688-3.2,18.88-10.496,23.872-21.12c4.672-9.92,4.928-19.2,4.928-20.928v-30.272 C285.184,232.352,283.328,230.304,280.896,230.304L280.896,230.304z"/>
|
||||
<path style="fill:#EAF3F5;" d="M299.904,305.824c-7.808-2.624-16.128-1.408-24,3.776c-10.112,6.72-16.704,6.72-19.904,6.72 c-3.2,0-9.92,0-19.904-6.72c-7.872-5.184-16.192-6.528-24-3.776v7.808c4.928-2.304,11.776-3.328,19.904,2.112 c11.904,7.872,20.416,7.872,24,7.872c3.584,0,12.096,0,24-7.872c8.128-5.376,14.976-4.416,19.904-2.112V305.824z"/>
|
||||
<path style="fill:#965032;" d="M255.872,347.552c-51.52,0-93.376-41.92-93.376-93.376s41.92-93.376,93.376-93.376 s93.44,41.856,93.44,93.312S307.392,347.552,255.872,347.552z M255.872,164.448c-49.472,0-89.728,40.192-89.728,89.728 s40.192,89.728,89.728,89.728s89.728-40.256,89.728-89.792S305.408,164.448,255.872,164.448z"/>
|
||||
<g>
|
||||
<path style="fill:#73AF00;" d="M153.792,261.92c0,0-0.384-11.392,10.624-11.392c0,0,0.192,4.48-3.712,6.528 C157.504,258.528,153.792,261.92,153.792,261.92z"/>
|
||||
<path style="fill:#73AF00;" d="M174.976,261.92c0,0,0.384-11.392-10.624-11.392c0,0-0.192,4.48,3.712,6.528 C171.392,258.528,174.976,261.92,174.976,261.92z"/>
|
||||
<path style="fill:#73AF00;" d="M358.016,250.464c0,0,0.384,11.392-10.624,11.392c0,0-0.192-4.48,3.712-6.528 C354.304,253.856,358.016,250.464,358.016,250.464z"/>
|
||||
<path style="fill:#73AF00;" d="M336.832,250.464c0,0-0.384,11.392,10.624,11.392c0,0,0.192-4.48-3.712-6.528 C340.416,253.856,336.832,250.464,336.832,250.464z"/>
|
||||
<path style="fill:#73AF00;" d="M261.632,358.304c0,0-11.392,0.384-11.392-10.624c0,0,4.48-0.192,6.528,3.712 C258.304,354.656,261.632,358.304,261.632,358.304z"/>
|
||||
<path style="fill:#73AF00;" d="M261.632,337.056c0,0-11.392-0.384-11.392,10.624c0,0,4.48,0.192,6.528-3.712 C258.304,340.704,261.632,337.056,261.632,337.056z"/>
|
||||
<path style="fill:#73AF00;" d="M250.176,154.144c0,0,11.392-0.384,11.392,10.624c0,0-4.48,0.192-6.528-3.712 C253.504,157.728,250.176,154.144,250.176,154.144z"/>
|
||||
<path style="fill:#73AF00;" d="M250.176,175.328c0,0,11.392,0.384,11.392-10.624c0,0-4.48-0.192-6.528,3.712 C253.504,171.616,250.176,175.328,250.176,175.328z"/>
|
||||
<path style="fill:#73AF00;" d="M187.776,332.448c0,0-8.384-7.808-0.576-15.616c0,0,3.328,3.008,1.92,7.232 C188.032,327.456,187.776,332.448,187.776,332.448z"/>
|
||||
<path style="fill:#73AF00;" d="M202.816,317.408c0,0-7.808-8.384-15.616-0.576c0,0,3.008,3.328,7.232,1.92 C197.824,317.664,202.816,317.408,202.816,317.408z"/>
|
||||
<path style="fill:#73AF00;" d="M324.096,179.936c0,0,8.384,7.808,0.576,15.616c0,0-3.328-3.008-1.92-7.232 C323.776,184.928,324.096,179.936,324.096,179.936z"/>
|
||||
<path style="fill:#73AF00;" d="M309.12,194.912c0,0,7.808,8.384,15.616,0.576c0,0-3.008-3.328-7.232-1.92 C313.984,194.72,309.12,194.912,309.12,194.912z"/>
|
||||
<path style="fill:#73AF00;" d="M332.096,324.32c0,0-7.808,8.384-15.616,0.576c0,0,3.008-3.328,7.232-1.92 C327.232,324.128,332.096,324.32,332.096,324.32z"/>
|
||||
<path style="fill:#73AF00;" d="M317.12,309.344c0,0-8.384,7.808-0.576,15.616c0,0,3.328-3.008,1.92-7.232 C317.376,314.336,317.12,309.344,317.12,309.344z"/>
|
||||
<path style="fill:#73AF00;" d="M179.712,188.064c0,0,7.808-8.384,15.616-0.576c0,0-3.008,3.328-7.232,1.92 C184.576,188.256,179.712,188.064,179.712,188.064z"/>
|
||||
<path style="fill:#73AF00;" d="M194.688,203.04c0,0,8.384-7.808,0.576-15.616c0,0-3.328,3.008-1.92,7.232 C194.496,198.112,194.688,203.04,194.688,203.04z"/>
|
||||
<path style="fill:#73AF00;" d="M163.776,300.512c0,0-4.672-10.432,5.376-14.592c0,0,1.92,4.096-1.024,7.424 C165.888,296.032,163.776,300.512,163.776,300.512z"/>
|
||||
<path style="fill:#73AF00;" d="M183.424,292.448c0,0-4.032-10.688-14.208-6.528c0,0,1.472,4.224,5.888,4.608 C178.688,290.72,183.424,292.448,183.424,292.448z"/>
|
||||
<path style="fill:#73AF00;" d="M348.032,211.808c0,0,4.672,10.432-5.376,14.592c0,0-1.92-4.096,1.024-7.424 C345.92,216.352,348.032,211.808,348.032,211.808z"/>
|
||||
<path style="fill:#73AF00;" d="M328.384,219.936c0,0,4.032,10.688,14.208,6.528c0,0-1.472-4.224-5.888-4.608 C333.12,221.664,328.384,219.936,328.384,219.936z"/>
|
||||
<path style="fill:#73AF00;" d="M300.288,348.32c0,0-10.368,4.672-14.592-5.376c0,0,4.096-1.92,7.424,1.024 C295.808,346.208,300.288,348.32,300.288,348.32z"/>
|
||||
<path style="fill:#73AF00;" d="M292.096,328.736c0,0-10.688,4.032-6.528,14.208c0,0,4.224-1.472,4.608-5.888 C290.432,333.408,292.096,328.736,292.096,328.736z"/>
|
||||
<path style="fill:#73AF00;" d="M211.584,164.064c0,0,10.432-4.672,14.592,5.376c0,0-4.096,1.92-7.424-1.024 C216.128,166.112,211.584,164.064,211.584,164.064z"/>
|
||||
<path style="fill:#73AF00;" d="M219.712,183.648c0,0,10.688-4.032,6.528-14.208c0,0-4.224,1.472-4.608,5.888 C221.376,179.04,219.712,183.648,219.712,183.648z"/>
|
||||
<path style="fill:#73AF00;" d="M222.08,352.736c0,0-10.688-4.032-6.528-14.208c0,0,4.224,1.472,4.608,5.888 C220.416,348.064,222.08,352.736,222.08,352.736z"/>
|
||||
<path style="fill:#73AF00;" d="M230.208,333.152c0,0-10.432-4.672-14.592,5.376c0,0,4.096,1.92,7.424-1.024 C225.728,335.264,230.208,333.152,230.208,333.152z"/>
|
||||
<path style="fill:#73AF00;" d="M289.728,159.712c0,0,10.688,4.032,6.528,14.208c0,0-4.224-1.472-4.608-5.888 C291.392,164.32,289.728,159.712,289.728,159.712z"/>
|
||||
<path style="fill:#73AF00;" d="M281.6,179.232c0,0,10.432,4.672,14.592-5.376c0,0-4.096-1.92-7.424,1.024 C286.08,177.248,281.6,179.232,281.6,179.232z"/>
|
||||
<path style="fill:#73AF00;" d="M352.384,289.952c0,0-4.032,10.688-14.208,6.528c0,0,1.472-4.224,5.888-4.608 C347.776,291.616,352.384,289.952,352.384,289.952z"/>
|
||||
<path style="fill:#73AF00;" d="M332.8,281.824c0,0-4.672,10.432,5.376,14.592c0,0,1.92-4.096-1.024-7.424 C334.912,286.304,332.8,281.824,332.8,281.824z"/>
|
||||
<path style="fill:#73AF00;" d="M159.424,222.432c0,0,4.032-10.688,14.208-6.528c0,0-1.472,4.224-5.888,4.608 C164.096,220.704,159.424,222.432,159.424,222.432z"/>
|
||||
<path style="fill:#73AF00;" d="M179.008,230.56c0,0,4.672-10.432-5.376-14.592c0,0-1.92,4.096,1.024,7.424 C176.896,226.016,179.008,230.56,179.008,230.56z"/>
|
||||
<path style="fill:#73AF00;" d="M156.928,281.76c0,0-2.624-11.072,8.192-13.312c0,0,1.088,4.416-2.432,7.104 C159.808,277.728,156.928,281.76,156.928,281.76z"/>
|
||||
<path style="fill:#73AF00;" d="M177.728,277.664c0,0-1.92-11.328-12.608-9.216c0,0,0.704,4.48,4.928,5.632 C173.504,275.04,177.728,277.664,177.728,277.664z"/>
|
||||
<path style="fill:#73AF00;" d="M354.88,230.624c0,0,2.624,11.072-8.192,13.312c0,0-1.088-4.416,2.368-7.104 C352,234.656,354.88,230.624,354.88,230.624z"/>
|
||||
<path style="fill:#73AF00;" d="M334.08,234.848c0,0,1.92,11.328,12.608,9.216c0,0-0.704-4.48-4.928-5.632 C338.432,237.408,334.08,234.848,334.08,234.848z"/>
|
||||
<path style="fill:#73AF00;" d="M281.408,355.232c0,0-11.072,2.624-13.312-8.192c0,0,4.416-1.088,7.104,2.432 C277.376,352.224,281.408,355.232,281.408,355.232z"/>
|
||||
<path style="fill:#73AF00;" d="M277.312,334.432c0,0-11.328,1.92-9.216,12.608c0,0,4.48-0.704,5.632-4.928 C274.688,338.656,277.312,334.432,277.312,334.432z"/>
|
||||
<path style="fill:#73AF00;" d="M230.4,157.216c0,0,11.072-2.624,13.312,8.192c0,0-4.416,1.088-7.104-2.432 C234.432,160.16,230.4,157.216,230.4,157.216z"/>
|
||||
<path style="fill:#73AF00;" d="M234.496,178.016c0,0,11.328-1.92,9.216-12.608c0,0-4.48,0.704-5.632,4.928 C237.12,173.728,234.496,178.016,234.496,178.016z"/>
|
||||
<path style="fill:#73AF00;" d="M203.904,344.224c0,0-9.728-6.016-3.584-15.232c0,0,3.904,2.304,3.328,6.72 C203.2,339.36,203.904,344.224,203.904,344.224z"/>
|
||||
<path style="fill:#73AF00;" d="M215.68,326.624c0,0-9.28-6.72-15.424,2.496c0,0,3.584,2.688,7.488,0.512 C210.88,327.84,215.68,326.624,215.68,326.624z"/>
|
||||
<path style="fill:#73AF00;" d="M307.904,168.16c0,0,9.728,6.016,3.584,15.232c0,0-3.904-2.304-3.328-6.72 C308.608,173.024,307.904,168.16,307.904,168.16z"/>
|
||||
<path style="fill:#73AF00;" d="M296.128,185.76c0,0,9.28,6.72,15.424-2.496c0,0-3.584-2.688-7.488-0.512 C300.928,184.608,296.128,185.76,296.128,185.76z"/>
|
||||
<path style="fill:#73AF00;" d="M344,308.128c0,0-6.016,9.728-15.232,3.584c0,0,2.304-3.904,6.72-3.328 C339.072,308.96,344,308.128,344,308.128z"/>
|
||||
<path style="fill:#73AF00;" d="M326.272,296.352c0,0-6.72,9.28,2.496,15.424c0,0,2.688-3.584,0.512-7.488 C327.488,301.216,326.272,296.352,326.272,296.352z"/>
|
||||
<path style="fill:#73AF00;" d="M167.808,204.256c0,0,6.016-9.728,15.232-3.584c0,0-2.304,3.904-6.72,3.328 C172.672,203.424,167.808,204.256,167.808,204.256z"/>
|
||||
<path style="fill:#73AF00;" d="M185.472,216.032c0,0,6.72-9.28-2.496-15.424c0,0-2.688,3.584-0.512,7.488 C184.32,211.232,185.472,216.032,185.472,216.032z"/>
|
||||
<path style="fill:#73AF00;" d="M174.208,317.664c0,0-6.72-9.28,2.496-15.424c0,0,2.688,3.584,0.512,7.488 C175.424,312.8,174.208,317.664,174.208,317.664z"/>
|
||||
<path style="fill:#73AF00;" d="M191.808,305.952c0,0-6.016-9.728-15.232-3.584c0,0,2.304,3.904,6.72,3.328 C186.88,305.12,191.808,305.952,191.808,305.952z"/>
|
||||
<path style="fill:#73AF00;" d="M337.6,194.72c0,0,6.72,9.28-2.496,15.424c0,0-2.688-3.584-0.512-7.488 C336.384,199.52,337.6,194.72,337.6,194.72z"/>
|
||||
<path style="fill:#73AF00;" d="M320,206.56c0,0,6.016,9.728,15.232,3.584c0,0-2.304-3.904-6.72-3.328 C324.928,207.264,320,206.56,320,206.56z"/>
|
||||
<path style="fill:#73AF00;" d="M317.376,337.952c0,0-9.28,6.72-15.424-2.496c0,0,3.584-2.688,7.488-0.512 C312.576,336.736,317.376,337.952,317.376,337.952z"/>
|
||||
<path style="fill:#73AF00;" d="M305.6,320.224c0,0-9.728,6.016-3.584,15.232c0,0,3.904-2.304,3.328-6.72 C304.768,325.152,305.6,320.224,305.6,320.224z"/>
|
||||
<path style="fill:#73AF00;" d="M194.432,174.56c0,0,9.28-6.72,15.424,2.496c0,0-3.584,2.688-7.488,0.512 C199.296,175.648,194.432,174.56,194.432,174.56z"/>
|
||||
<path style="fill:#73AF00;" d="M206.208,192.16c0,0,9.728-6.016,3.584-15.232c0,0-3.904,2.304-3.328,6.72 C206.976,187.232,206.208,192.16,206.208,192.16z"/>
|
||||
<path style="fill:#73AF00;" d="M241.6,357.408c0,0-11.328-1.92-9.216-12.608c0,0,4.48,0.704,5.632,4.928 C238.976,353.248,241.6,357.408,241.6,357.408z"/>
|
||||
<path style="fill:#73AF00;" d="M245.696,336.608c0,0-11.072-2.624-13.312,8.192c0,0,4.416,1.088,7.104-2.368 C241.728,339.552,245.696,336.608,245.696,336.608z"/>
|
||||
<path style="fill:#73AF00;" d="M270.208,154.912c0,0,11.328,1.92,9.216,12.608c0,0-4.48-0.704-5.632-4.928 C272.768,159.264,270.208,154.912,270.208,154.912z"/>
|
||||
<path style="fill:#73AF00;" d="M266.112,175.712c0,0,11.072,2.624,13.312-8.192c0,0-4.416-1.088-7.104,2.432 C270.08,172.832,266.112,175.712,266.112,175.712z"/>
|
||||
<path style="fill:#73AF00;" d="M357.184,270.56c0,0-1.92,11.328-12.608,9.216c0,0,0.704-4.48,4.928-5.632 C352.896,273.056,357.184,270.56,357.184,270.56z"/>
|
||||
<path style="fill:#73AF00;" d="M336.384,266.336c0,0-2.624,11.072,8.192,13.312c0,0,1.088-4.416-2.432-7.104 C339.328,270.304,336.384,266.336,336.384,266.336z"/>
|
||||
<path style="fill:#73AF00;" d="M154.688,241.952c0,0,1.92-11.328,12.608-9.216c0,0-0.704,4.48-4.928,5.632 C158.912,239.328,154.688,241.952,154.688,241.952z"/>
|
||||
<path style="fill:#73AF00;" d="M175.488,246.048c0,0,2.624-11.072-8.192-13.312c0,0-1.088,4.416,2.432,7.104 C172.48,242.016,175.488,246.048,175.488,246.048z"/>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 9.5 KiB |
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 8.1 KiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 9.6 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 9.7 KiB |
Before Width: | Height: | Size: 35 KiB |
@ -1,81 +0,0 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 512.001 512.001" style="enable-background:new 0 0 512.001 512.001;" xml:space="preserve">
|
||||
<path style="fill:#73AF00;" d="M473.655,88.276H38.345C17.167,88.276,0,105.444,0,126.621v73.471h512v-73.471 C512,105.444,494.833,88.276,473.655,88.276z"/>
|
||||
<path style="fill:#FF4B55;" d="M0,385.38c0,21.177,17.167,38.345,38.345,38.345h435.31c21.177,0,38.345-17.167,38.345-38.345 v-73.471H0V385.38z"/>
|
||||
<g>
|
||||
<rect y="200.089" style="fill:#F5F5F5;" width="512" height="111.81"/>
|
||||
<path style="fill:#F5F5F5;" d="M1.388,194.176h0.078c0.767,0,1.389-0.621,1.389-1.388v-3.008c0-0.767,0.621-1.388,1.389-1.388 h5.827c0.767,0,1.389,0.621,1.389,1.388v3.008c0,0.767,0.621,1.388,1.389,1.388h11.502c0.767,0,1.388-0.621,1.388-1.388v-5.939 c0-0.767-0.621-1.388-1.388-1.388h-5.79c-0.767,0-1.388,0.621-1.388,1.388v0.153c0,0.767,0.621,1.388,1.388,1.388h2.935 c0.767,0,1.389,0.621,1.389,1.388v0.151c0,0.767-0.621,1.388-1.389,1.388h-5.792c-0.767,0-1.389-0.621-1.389-1.388v-3.081 c0-0.767-0.622-1.388-1.389-1.388H1.388c-0.767,0-1.388,0.621-1.388,1.388v5.939C0,193.553,0.621,194.176,1.388,194.176z M7.137,194.176h0.079c0.767,0,1.388-0.621,1.388-1.388v-0.079c0-0.767-0.621-1.388-1.388-1.388H7.137 c-0.767,0-1.389,0.622-1.389,1.388v0.079C5.748,193.553,6.37,194.176,7.137,194.176z M1.388,182.531h34.423 c0.767,0,1.389-0.621,1.389-1.388v-0.152c0-0.767-0.621-1.388-1.389-1.388H1.388c-0.767,0-1.388,0.621-1.388,1.388v0.152 C0,181.91,0.621,182.531,1.388,182.531z M35.811,194.176h-5.79c-0.767,0-1.389-0.621-1.389-1.388v-5.939 c0-0.767,0.621-1.388,1.389-1.388h8.647c0.767,0,1.389-0.622,1.389-1.388v-3.081c0-0.767,0.621-1.388,1.388-1.388h0.077 c0.767,0,1.389,0.621,1.389,1.388v8.94c0,0.767,0.621,1.388,1.388,1.388h0.079c0.767,0,1.388-0.621,1.388-1.388v-8.94 c0-0.767,0.621-1.388,1.388-1.388h0.077c0.767,0,1.389,0.621,1.389,1.388v8.94c0,0.767,0.621,1.388,1.388,1.388h0.115 c0.767,0,1.389-0.621,1.389-1.388v-8.94c0-0.767,0.621-1.388,1.388-1.388h0.042c0.767,0,1.388,0.621,1.388,1.388v11.797 c0,0.767-0.621,1.388-1.388,1.388H41.447c-0.767,0-1.388-0.621-1.388-1.388v-3.008c0-0.767-0.621-1.388-1.389-1.388h-5.79 c-0.767,0-1.389,0.621-1.389,1.388v0.151c0,0.767,0.621,1.388,1.389,1.388h2.933c0.767,0,1.389,0.622,1.389,1.388v0.079 C37.201,193.553,36.578,194.176,35.811,194.176z"/>
|
||||
<path style="fill:#F5F5F5;" d="M58.618,194.176h0.115c0.767,0,1.389-0.621,1.389-1.388v-3.008c0-0.767,0.621-1.388,1.388-1.388 h5.754c0.767,0,1.389,0.621,1.389,1.388v3.008c0,0.767,0.621,1.388,1.388,1.388h11.502c0.767,0,1.388-0.621,1.388-1.388v-5.939 c0-0.767-0.621-1.388-1.388-1.388h-5.79c-0.767,0-1.389,0.621-1.389,1.388v0.153c0,0.767,0.621,1.388,1.389,1.388h2.935 c0.767,0,1.388,0.621,1.388,1.388v0.151c0,0.767-0.621,1.388-1.388,1.388h-5.792c-0.767,0-1.388-0.621-1.388-1.388v-3.081 c0-0.767-0.621-1.388-1.388-1.388H58.618c-0.767,0-1.388,0.621-1.388,1.388v5.939C57.23,193.553,57.852,194.176,58.618,194.176z M64.331,194.176h0.078c0.767,0,1.388-0.621,1.388-1.388v-0.079c0-0.767-0.621-1.388-1.388-1.388h-0.078 c-0.767,0-1.388,0.622-1.388,1.388v0.079C62.943,193.553,63.564,194.176,64.331,194.176z M58.618,182.531h34.387 c0.767,0,1.389-0.621,1.389-1.388v-0.152c0-0.767-0.621-1.388-1.389-1.388H58.618c-0.767,0-1.388,0.621-1.388,1.388v0.152 C57.23,181.91,57.852,182.531,58.618,182.531z M93.006,194.176h-5.827c-0.767,0-1.389-0.621-1.389-1.388v-5.939 c0-0.767,0.621-1.388,1.389-1.388h8.648c0.767,0,1.388-0.622,1.388-1.388v-3.081c0-0.767,0.621-1.388,1.389-1.388h0.115 c0.767,0,1.388,0.621,1.388,1.388v8.94c0,0.767,0.621,1.388,1.389,1.388h0.115c0.767,0,1.389-0.621,1.389-1.388v-8.94 c0-0.767,0.621-1.388,1.389-1.388h0.042c0.767,0,1.388,0.621,1.388,1.388v8.94c0,0.767,0.621,1.388,1.389,1.388h0.115 c0.767,0,1.389-0.621,1.389-1.388v-8.94c0-0.767,0.621-1.388,1.388-1.388h0.078c0.767,0,1.388,0.621,1.388,1.388v11.797 c0,0.767-0.621,1.388-1.388,1.388H98.604c-0.767,0-1.389-0.621-1.389-1.388v-3.008c0-0.767-0.621-1.388-1.388-1.388h-5.754 c-0.767,0-1.388,0.621-1.388,1.388v0.151c0,0.767,0.621,1.388,1.388,1.388h2.935c0.767,0,1.389,0.622,1.389,1.388v0.079 C94.394,193.553,93.773,194.176,93.006,194.176z"/>
|
||||
<path style="fill:#F5F5F5;" d="M115.814,194.176h0.077c0.767,0,1.388-0.621,1.388-1.388v-3.008c0-0.767,0.621-1.388,1.388-1.388 h5.792c0.767,0,1.388,0.621,1.388,1.388v3.008c0,0.767,0.622,1.388,1.389,1.388h11.538c0.767,0,1.389-0.621,1.389-1.388v-5.939 c0-0.767-0.621-1.388-1.389-1.388h-5.79c-0.767,0-1.389,0.621-1.389,1.388v0.153c0,0.767,0.621,1.388,1.389,1.388h2.935 c0.767,0,1.389,0.621,1.389,1.388v0.151c0,0.767-0.621,1.388-1.389,1.388h-5.827c-0.767,0-1.388-0.621-1.388-1.388v-3.081 c0-0.767-0.621-1.388-1.388-1.388h-11.502c-0.767,0-1.388,0.621-1.388,1.388v5.939 C114.424,193.553,115.047,194.176,115.814,194.176z M121.526,194.176h0.078c0.767,0,1.388-0.621,1.388-1.388v-0.079 c0-0.767-0.621-1.388-1.388-1.388h-0.078c-0.767,0-1.388,0.622-1.388,1.388v0.079C120.137,193.553,120.759,194.176,121.526,194.176 z M115.814,182.531h34.424c0.767,0,1.389-0.621,1.389-1.388v-0.152c0-0.767-0.621-1.388-1.389-1.388h-34.424 c-0.767,0-1.388,0.621-1.388,1.388v0.152C114.424,181.91,115.047,182.531,115.814,182.531z M150.238,194.176h-5.827 c-0.767,0-1.389-0.621-1.389-1.388v-5.939c0-0.767,0.621-1.388,1.389-1.388h8.646c0.767,0,1.388-0.622,1.388-1.388v-3.081 c0-0.767,0.622-1.388,1.389-1.388h0.079c0.767,0,1.388,0.621,1.388,1.388v8.94c0,0.767,0.622,1.388,1.389,1.388h0.115 c0.767,0,1.389-0.621,1.389-1.388v-8.94c0-0.767,0.621-1.388,1.388-1.388h0.116c0.767,0,1.388,0.621,1.388,1.388v8.94 c0,0.767,0.622,1.388,1.388,1.388h0.042c0.767,0,1.389-0.621,1.389-1.388v-8.94c0-0.767,0.621-1.388,1.388-1.388h0.078 c0.767,0,1.388,0.621,1.388,1.388v11.797c0,0.767-0.622,1.388-1.388,1.388h-11.54c-0.767,0-1.389-0.621-1.389-1.388v-3.008 c0-0.767-0.621-1.388-1.388-1.388h-5.79c-0.767,0-1.389,0.621-1.389,1.388v0.151c0,0.767,0.621,1.388,1.389,1.388h2.973 c0.767,0,1.389,0.622,1.389,1.388v0.079C151.627,193.553,151.005,194.176,150.238,194.176z"/>
|
||||
<path style="fill:#F5F5F5;" d="M173.007,194.176h0.077c0.767,0,1.388-0.621,1.388-1.388v-3.008c0-0.767,0.622-1.388,1.388-1.388 h5.79c0.767,0,1.389,0.621,1.389,1.388v3.008c0,0.767,0.621,1.388,1.389,1.388h11.54c0.767,0,1.388-0.621,1.388-1.388v-5.939 c0-0.767-0.621-1.388-1.388-1.388h-5.827c-0.767,0-1.389,0.621-1.389,1.388v0.153c0,0.767,0.622,1.388,1.389,1.388h2.935 c0.767,0,1.388,0.621,1.388,1.388v0.151c0,0.767-0.621,1.388-1.388,1.388h-5.79c-0.767,0-1.388-0.621-1.388-1.388v-3.081 c0-0.767-0.622-1.388-1.389-1.388h-11.502c-0.767,0-1.389,0.621-1.389,1.388v5.939 C171.619,193.553,172.241,194.176,173.007,194.176z M178.72,194.176h0.077c0.767,0,1.388-0.621,1.388-1.388v-0.079 c0-0.767-0.621-1.388-1.388-1.388h-0.077c-0.767,0-1.389,0.622-1.389,1.388v0.079C177.331,193.553,177.953,194.176,178.72,194.176z M173.007,182.531h34.387c0.767,0,1.388-0.621,1.388-1.388v-0.152c0-0.767-0.621-1.388-1.388-1.388h-34.387 c-0.767,0-1.389,0.621-1.389,1.388v0.152C171.619,181.91,172.241,182.531,173.007,182.531z M207.395,194.176h-5.827 c-0.767,0-1.388-0.621-1.388-1.388v-5.939c0-0.767,0.621-1.388,1.388-1.388h8.721c0.767,0,1.389-0.622,1.389-1.388v-3.081 c0-0.767,0.621-1.388,1.388-1.388h0.078c0.767,0,1.388,0.621,1.388,1.388v8.94c0,0.767,0.621,1.388,1.388,1.388h0.042 c0.767,0,1.389-0.621,1.389-1.388v-8.94c0-0.767,0.621-1.388,1.388-1.388h0.116c0.767,0,1.388,0.621,1.388,1.388v8.94 c0,0.767,0.621,1.388,1.388,1.388h0.079c0.767,0,1.388-0.621,1.388-1.388v-8.94c0-0.767,0.622-1.388,1.389-1.388h0.077 c0.767,0,1.388,0.621,1.388,1.388v11.797c0,0.767-0.621,1.388-1.388,1.388h-11.501c-0.767,0-1.388-0.621-1.388-1.388v-3.008 c0-0.767-0.621-1.388-1.389-1.388h-5.827c-0.767,0-1.389,0.621-1.389,1.388v0.151c0,0.767,0.622,1.388,1.389,1.388h2.935 c0.767,0,1.388,0.622,1.388,1.388v0.079C208.783,193.553,208.162,194.176,207.395,194.176z"/>
|
||||
<path style="fill:#F5F5F5;" d="M230.2,194.176h0.079c0.767,0,1.388-0.621,1.388-1.388v-3.008c0-0.767,0.621-1.388,1.388-1.388h5.79 c0.767,0,1.388,0.621,1.388,1.388v3.008c0,0.767,0.622,1.388,1.389,1.388h11.54c0.767,0,1.388-0.621,1.388-1.388v-5.939 c0-0.767-0.621-1.388-1.388-1.388h-5.827c-0.767,0-1.389,0.621-1.389,1.388v0.153c0,0.767,0.622,1.388,1.389,1.388h2.97 c0.767,0,1.388,0.621,1.388,1.388v0.151c0,0.767-0.622,1.388-1.388,1.388h-5.79c-0.767,0-1.388-0.621-1.388-1.388v-3.081 c0-0.767-0.621-1.388-1.389-1.388h-11.54c-0.767,0-1.389,0.621-1.389,1.388v5.939C228.812,193.553,229.433,194.176,230.2,194.176z M235.95,194.176h0.042c0.767,0,1.389-0.621,1.389-1.388v-0.079c0-0.767-0.622-1.388-1.389-1.388h-0.042 c-0.767,0-1.388,0.622-1.388,1.388v0.079C234.561,193.553,235.183,194.176,235.95,194.176z M230.2,182.531h34.425 c0.767,0,1.388-0.621,1.388-1.388v-0.152c0-0.767-0.622-1.388-1.388-1.388H230.2c-0.767,0-1.389,0.621-1.389,1.388v0.152 C228.812,181.91,229.433,182.531,230.2,182.531z M264.626,194.176h-5.827c-0.767,0-1.388-0.621-1.388-1.388v-5.939 c0-0.767,0.621-1.388,1.388-1.388h8.684c0.767,0,1.388-0.622,1.388-1.388v-3.081c0-0.767,0.622-1.388,1.389-1.388h0.077 c0.767,0,1.388,0.621,1.388,1.388v8.94c0,0.767,0.622,1.388,1.388,1.388h0.079c0.767,0,1.388-0.621,1.388-1.388v-8.94 c0-0.767,0.622-1.388,1.389-1.388h0.077c0.767,0,1.388,0.621,1.388,1.388v8.94c0,0.767,0.622,1.388,1.388,1.388h0.077 c0.767,0,1.388-0.621,1.388-1.388v-8.94c0-0.767,0.622-1.388,1.389-1.388h0.079c0.767,0,1.389,0.621,1.389,1.388v11.797 c0,0.767-0.622,1.388-1.389,1.388h-11.502c-0.767,0-1.389-0.621-1.389-1.388v-3.008c0-0.767-0.621-1.388-1.388-1.388h-5.827 c-0.767,0-1.389,0.621-1.389,1.388v0.151c0,0.767,0.622,1.388,1.389,1.388h2.97c0.767,0,1.388,0.622,1.388,1.388v0.079 C266.014,193.553,265.393,194.176,264.626,194.176z"/>
|
||||
<path style="fill:#F5F5F5;" d="M287.395,194.176h0.079c0.767,0,1.389-0.621,1.389-1.388v-3.008c0-0.767,0.621-1.388,1.389-1.388 h5.79c0.767,0,1.389,0.621,1.389,1.388v3.008c0,0.767,0.622,1.388,1.388,1.388h11.54c0.767,0,1.389-0.621,1.389-1.388v-5.939 c0-0.767-0.621-1.388-1.389-1.388h-5.792c-0.767,0-1.388,0.621-1.388,1.388v0.153c0,0.767,0.621,1.388,1.388,1.388h2.9 c0.767,0,1.389,0.621,1.389,1.388v0.151c0,0.767-0.622,1.388-1.389,1.388h-5.754c-0.767,0-1.389-0.621-1.389-1.388v-3.081 c0-0.767-0.621-1.388-1.388-1.388h-11.54c-0.767,0-1.389,0.621-1.389,1.388v5.939C286.006,193.553,286.628,194.176,287.395,194.176 z M293.144,194.176h0.042c0.767,0,1.389-0.621,1.389-1.388v-0.079c0-0.767-0.622-1.388-1.389-1.388h-0.042 c-0.767,0-1.388,0.622-1.388,1.388v0.079C291.756,193.553,292.377,194.176,293.144,194.176z M287.395,182.531h34.425 c0.767,0,1.388-0.621,1.388-1.388v-0.152c0-0.767-0.622-1.388-1.388-1.388h-34.425c-0.767,0-1.389,0.621-1.389,1.388v0.152 C286.006,181.91,286.628,182.531,287.395,182.531z M321.82,194.176h-5.79c-0.767,0-1.388-0.621-1.388-1.388v-5.939 c0-0.767,0.621-1.388,1.388-1.388h8.646c0.767,0,1.388-0.622,1.388-1.388v-3.081c0-0.767,0.622-1.388,1.389-1.388h0.079 c0.767,0,1.388,0.621,1.388,1.388v8.94c0,0.767,0.621,1.388,1.389,1.388h0.077c0.767,0,1.389-0.621,1.389-1.388v-8.94 c0-0.767,0.621-1.388,1.389-1.388h0.079c0.767,0,1.389,0.621,1.389,1.388v8.94c0,0.767,0.621,1.388,1.388,1.388h0.078 c0.767,0,1.388-0.621,1.388-1.388v-8.94c0-0.767,0.622-1.388,1.389-1.388h0.079c0.767,0,1.389,0.621,1.389,1.388v11.797 c0,0.767-0.622,1.388-1.389,1.388h-11.505c-0.767,0-1.389-0.621-1.389-1.388v-3.008c0-0.767-0.621-1.388-1.388-1.388h-5.826 c-0.767,0-1.389,0.621-1.389,1.388v0.151c0,0.767,0.622,1.388,1.389,1.388h2.97c0.767,0,1.388,0.622,1.388,1.388v0.079 C323.209,193.553,322.586,194.176,321.82,194.176z"/>
|
||||
<path style="fill:#F5F5F5;" d="M344.589,194.176h0.079c0.767,0,1.389-0.621,1.389-1.388v-3.008c0-0.767,0.621-1.388,1.388-1.388 h5.826c0.767,0,1.389,0.621,1.389,1.388v3.008c0,0.767,0.621,1.388,1.388,1.388h11.505c0.767,0,1.388-0.621,1.388-1.388v-5.939 c0-0.767-0.621-1.388-1.388-1.388h-5.792c-0.767,0-1.389,0.621-1.389,1.388v0.153c0,0.767,0.621,1.388,1.389,1.388h2.973 c0.767,0,1.388,0.621,1.388,1.388v0.151c0,0.767-0.621,1.388-1.388,1.388h-5.865c-0.767,0-1.388-0.621-1.388-1.388v-3.081 c0-0.767-0.622-1.388-1.389-1.388H344.59c-0.767,0-1.389,0.621-1.389,1.388v5.939C343.2,193.553,343.822,194.176,344.589,194.176z M350.302,194.176h0.116c0.767,0,1.388-0.621,1.388-1.388v-0.079c0-0.767-0.621-1.388-1.388-1.388h-0.116 c-0.767,0-1.388,0.622-1.388,1.388v0.079C348.913,193.553,349.535,194.176,350.302,194.176z M344.589,182.531h34.424 c0.767,0,1.389-0.621,1.389-1.388v-0.152c0-0.767-0.621-1.388-1.389-1.388h-34.424c-0.767,0-1.389,0.621-1.389,1.388v0.152 C343.2,181.91,343.822,182.531,344.589,182.531z M379.015,194.176h-5.79c-0.767,0-1.389-0.621-1.389-1.388v-5.939 c0-0.767,0.621-1.388,1.389-1.388h8.646c0.767,0,1.389-0.622,1.389-1.388v-3.081c0-0.767,0.621-1.388,1.389-1.388h0.079 c0.767,0,1.389,0.621,1.389,1.388v8.94c0,0.767,0.621,1.388,1.388,1.388h0.077c0.767,0,1.389-0.621,1.389-1.388v-8.94 c0-0.767,0.622-1.388,1.389-1.388h0.079c0.767,0,1.389,0.621,1.389,1.388v8.94c0,0.767,0.621,1.388,1.389,1.388h0.115 c0.767,0,1.388-0.621,1.388-1.388v-8.94c0-0.767,0.622-1.388,1.389-1.388h0.04c0.767,0,1.389,0.621,1.389,1.388v11.797 c0,0.767-0.622,1.388-1.389,1.388h-11.502c-0.767,0-1.389-0.621-1.389-1.388v-3.008c0-0.767-0.621-1.388-1.389-1.388h-5.754 c-0.767,0-1.389,0.621-1.389,1.388v0.151c0,0.767,0.621,1.388,1.389,1.388h2.899c0.767,0,1.389,0.622,1.389,1.388v0.079 C380.403,193.553,379.782,194.176,379.015,194.176z"/>
|
||||
<path style="fill:#F5F5F5;" d="M401.82,194.176h0.042c0.767,0,1.389-0.621,1.389-1.388v-3.008c0-0.767,0.621-1.388,1.389-1.388 h5.792c0.767,0,1.389,0.621,1.389,1.388v3.008c0,0.767,0.621,1.388,1.388,1.388h11.538c0.767,0,1.389-0.621,1.389-1.388v-5.939 c0-0.767-0.622-1.388-1.389-1.388h-5.752c-0.767,0-1.389,0.621-1.389,1.388v0.153c0,0.767,0.622,1.388,1.389,1.388h2.933 c0.767,0,1.389,0.621,1.389,1.388v0.151c0,0.767-0.621,1.388-1.389,1.388h-5.825c-0.767,0-1.389-0.621-1.389-1.388v-3.081 c0-0.767-0.621-1.388-1.389-1.388H401.82c-0.767,0-1.389,0.621-1.389,1.388v5.939C400.43,193.553,401.053,194.176,401.82,194.176z M407.532,194.176h0.079c0.767,0,1.388-0.621,1.388-1.388v-0.079c0-0.767-0.621-1.388-1.388-1.388h-0.079 c-0.767,0-1.388,0.622-1.388,1.388v0.079C406.143,193.553,406.764,194.176,407.532,194.176z M401.82,182.531h34.462 c0.767,0,1.389-0.621,1.389-1.388v-0.152c0-0.767-0.621-1.388-1.389-1.388H401.82c-0.767,0-1.389,0.621-1.389,1.388v0.152 C400.43,181.91,401.053,182.531,401.82,182.531z M436.281,194.176h-5.865c-0.767,0-1.389-0.621-1.389-1.388v-5.939 c0-0.767,0.622-1.388,1.389-1.388h8.647c0.767,0,1.389-0.622,1.389-1.388v-3.081c0-0.767,0.622-1.388,1.389-1.388h0.115 c0.767,0,1.388,0.621,1.388,1.388v8.94c0,0.767,0.622,1.388,1.389,1.388h0.077c0.767,0,1.389-0.621,1.389-1.388v-8.94 c0-0.767,0.621-1.388,1.388-1.388h0.042c0.767,0,1.389,0.621,1.389,1.388v8.94c0,0.767,0.621,1.388,1.389,1.388h0.115 c0.767,0,1.388-0.621,1.388-1.388v-8.94c0-0.767,0.621-1.388,1.389-1.388h0.079c0.767,0,1.389,0.621,1.389,1.388v11.797 c0,0.767-0.621,1.388-1.389,1.388h-11.54c-0.767,0-1.389-0.621-1.389-1.388v-3.008c0-0.767-0.621-1.388-1.389-1.388h-5.79 c-0.767,0-1.389,0.621-1.389,1.388v0.151c0,0.767,0.621,1.388,1.389,1.388h3.008c0.767,0,1.389,0.622,1.389,1.388v0.079 C437.671,193.553,437.048,194.176,436.281,194.176z"/>
|
||||
<path style="fill:#F5F5F5;" d="M459.013,194.176h0.079c0.767,0,1.389-0.621,1.389-1.388v-3.008c0-0.767,0.621-1.388,1.389-1.388 h5.79c0.767,0,1.389,0.621,1.389,1.388v3.008c0,0.767,0.621,1.388,1.389,1.388h11.54c0.767,0,1.389-0.621,1.389-1.388v-5.939 c0-0.767-0.621-1.388-1.389-1.388h-5.754c-0.767,0-1.388,0.621-1.388,1.388v0.153c0,0.767,0.622,1.388,1.388,1.388h2.935 c0.767,0,1.388,0.621,1.388,1.388v0.151c0,0.767-0.622,1.388-1.388,1.388h-5.865c-0.767,0-1.389-0.621-1.389-1.388v-3.081 c0-0.767-0.621-1.388-1.388-1.388h-11.502c-0.767,0-1.389,0.621-1.389,1.388v5.939 C457.625,193.553,458.247,194.176,459.013,194.176z M464.726,194.176h0.079c0.767,0,1.389-0.621,1.389-1.388v-0.079 c0-0.767-0.621-1.388-1.389-1.388h-0.079c-0.767,0-1.388,0.622-1.388,1.388v0.079C463.338,193.553,463.959,194.176,464.726,194.176 z M459.013,182.531h34.388c0.767,0,1.389-0.621,1.389-1.388v-0.152c0-0.767-0.621-1.388-1.389-1.388h-34.388 c-0.767,0-1.389,0.621-1.389,1.388v0.152C457.625,181.91,458.247,182.531,459.013,182.531z M493.401,194.176h-5.79 c-0.767,0-1.389-0.621-1.389-1.388v-5.939c0-0.767,0.621-1.388,1.389-1.388h8.721c0.767,0,1.389-0.622,1.389-1.388v-3.081 c0-0.767,0.621-1.388,1.388-1.388h0.004c0.767,0,1.389,0.621,1.389,1.388v8.94c0,0.767,0.621,1.388,1.388,1.388h0.152 c0.767,0,1.389-0.621,1.389-1.388v-8.94c0-0.767,0.621-1.388,1.389-1.388h0.004c0.767,0,1.389,0.621,1.389,1.388v8.94 c0,0.767,0.622,1.388,1.389,1.388h0.079c0.767,0,1.389-0.621,1.389-1.388v-8.94c0-0.767,0.622-1.388,1.389-1.388h0.151 c0.767,0,1.389,0.621,1.389,1.388v11.797c0,0.767-0.622,1.388-1.389,1.388h-11.502c-0.767,0-1.388-0.621-1.388-1.388v-3.008 c0-0.767-0.622-1.388-1.389-1.388h-5.864c-0.767,0-1.388,0.621-1.388,1.388v0.151c0,0.767,0.621,1.388,1.388,1.388h2.933 c0.767,0,1.389,0.622,1.389,1.388v0.079C494.79,193.553,494.168,194.176,493.401,194.176z"/>
|
||||
<path style="fill:#F5F5F5;" d="M1.388,203.035h22.963c0.767,0,1.388-0.621,1.388-1.388v-3.081c0-0.767-0.621-1.388-1.388-1.388 H1.388C0.621,197.178,0,197.8,0,198.566v3.081C0,202.414,0.621,203.035,1.388,203.035z M30.022,203.035h22.927 c0.767,0,1.388-0.621,1.388-1.388v-3.081c0-0.767-0.621-1.388-1.388-1.388H30.022c-0.767,0-1.389,0.622-1.389,1.388v3.081 C28.632,202.414,29.255,203.035,30.022,203.035z"/>
|
||||
<path style="fill:#F5F5F5;" d="M58.618,203.035h22.927c0.767,0,1.388-0.621,1.388-1.388v-3.081c0-0.767-0.621-1.388-1.388-1.388 H58.618c-0.767,0-1.388,0.622-1.388,1.388v3.081C57.23,202.414,57.852,203.035,58.618,203.035z M87.179,203.035h23 c0.767,0,1.388-0.621,1.388-1.388v-3.081c0-0.767-0.621-1.388-1.388-1.388h-23c-0.767,0-1.389,0.622-1.389,1.388v3.081 C85.79,202.414,86.412,203.035,87.179,203.035z"/>
|
||||
<path style="fill:#F5F5F5;" d="M115.814,203.035h22.963c0.767,0,1.389-0.621,1.389-1.388v-3.081c0-0.767-0.621-1.388-1.389-1.388 h-22.963c-0.767,0-1.388,0.622-1.388,1.388v3.081C114.424,202.414,115.047,203.035,115.814,203.035z M144.41,203.035h22.963 c0.767,0,1.388-0.621,1.388-1.388v-3.081c0-0.767-0.622-1.388-1.388-1.388H144.41c-0.767,0-1.389,0.622-1.389,1.388v3.081 C143.021,202.414,143.644,203.035,144.41,203.035z"/>
|
||||
<path style="fill:#F5F5F5;" d="M173.007,203.035h22.963c0.767,0,1.388-0.621,1.388-1.388v-3.081c0-0.767-0.621-1.388-1.388-1.388 h-22.963c-0.767,0-1.389,0.622-1.389,1.388v3.081C171.619,202.414,172.241,203.035,173.007,203.035z M201.568,203.035h23 c0.767,0,1.388-0.621,1.388-1.388v-3.081c0-0.767-0.621-1.388-1.388-1.388h-23c-0.767,0-1.388,0.622-1.388,1.388v3.081 C200.179,202.414,200.8,203.035,201.568,203.035z"/>
|
||||
<path style="fill:#F5F5F5;" d="M230.2,203.035h22.965c0.767,0,1.388-0.621,1.388-1.388v-3.081c0-0.767-0.621-1.388-1.388-1.388 H230.2c-0.767,0-1.389,0.622-1.389,1.388v3.081C228.812,202.414,229.433,203.035,230.2,203.035z M258.797,203.035h22.965 c0.767,0,1.389-0.621,1.389-1.388v-3.081c0-0.767-0.622-1.388-1.389-1.388h-22.965c-0.767,0-1.388,0.622-1.388,1.388v3.081 C257.409,202.414,258.03,203.035,258.797,203.035z"/>
|
||||
<path style="fill:#F5F5F5;" d="M287.395,203.035h22.965c0.767,0,1.389-0.621,1.389-1.388v-3.081c0-0.767-0.621-1.388-1.389-1.388 h-22.965c-0.767,0-1.389,0.622-1.389,1.388v3.081C286.006,202.414,286.628,203.035,287.395,203.035z M316.03,203.035h22.927 c0.767,0,1.389-0.621,1.389-1.388v-3.081c0-0.767-0.622-1.388-1.389-1.388H316.03c-0.767,0-1.388,0.622-1.388,1.388v3.081 C314.641,202.414,315.263,203.035,316.03,203.035z"/>
|
||||
<path style="fill:#F5F5F5;" d="M344.589,203.035h22.965c0.767,0,1.388-0.621,1.388-1.388v-3.081c0-0.767-0.621-1.388-1.388-1.388 h-22.965c-0.767,0-1.389,0.622-1.389,1.388v3.081C343.2,202.414,343.822,203.035,344.589,203.035z M373.224,203.035h22.925 c0.767,0,1.389-0.621,1.389-1.388v-3.081c0-0.767-0.622-1.388-1.389-1.388h-22.925c-0.767,0-1.389,0.622-1.389,1.388v3.081 C371.836,202.414,372.457,203.035,373.224,203.035z"/>
|
||||
<path style="fill:#F5F5F5;" d="M401.82,203.035h22.927c0.767,0,1.389-0.621,1.389-1.388v-3.081c0-0.767-0.622-1.388-1.389-1.388 H401.82c-0.767,0-1.389,0.622-1.389,1.388v3.081C400.43,202.414,401.053,203.035,401.82,203.035z M430.417,203.035h22.965 c0.767,0,1.389-0.621,1.389-1.388v-3.081c0-0.767-0.621-1.388-1.389-1.388h-22.965c-0.767,0-1.389,0.622-1.389,1.388v3.081 C429.027,202.414,429.65,203.035,430.417,203.035z"/>
|
||||
<path style="fill:#F5F5F5;" d="M459.013,203.035h22.965c0.767,0,1.389-0.621,1.389-1.388v-3.081c0-0.767-0.621-1.388-1.389-1.388 h-22.965c-0.767,0-1.389,0.622-1.389,1.388v3.081C457.625,202.414,458.247,203.035,459.013,203.035z M487.612,203.035h23 c0.767,0,1.389-0.621,1.389-1.388v-3.081c0-0.767-0.622-1.388-1.389-1.388h-23c-0.767,0-1.389,0.622-1.389,1.388v3.081 C486.222,202.414,486.844,203.035,487.612,203.035z"/>
|
||||
<path style="fill:#F5F5F5;" d="M510.611,317.826h-0.077c-0.767,0-1.388,0.621-1.388,1.388v3.008c0,0.767-0.622,1.389-1.389,1.389 h-5.827c-0.767,0-1.389-0.622-1.389-1.389v-3.008c0-0.767-0.621-1.388-1.389-1.388H487.65c-0.767,0-1.388,0.621-1.388,1.388v5.939 c0,0.767,0.621,1.389,1.388,1.389h5.79c0.767,0,1.388-0.622,1.388-1.389v-0.152c0-0.767-0.621-1.388-1.388-1.388h-2.935 c-0.767,0-1.389-0.622-1.389-1.389v-0.151c0-0.767,0.622-1.388,1.389-1.388h5.792c0.767,0,1.388,0.621,1.388,1.388v3.081 c0,0.767,0.622,1.389,1.389,1.389h11.538c0.767,0,1.389-0.622,1.389-1.389v-5.939C512,318.448,511.378,317.826,510.611,317.826z M504.863,317.826h-0.079c-0.767,0-1.389,0.621-1.389,1.388v0.079c0,0.767,0.621,1.389,1.389,1.389h0.079 c0.767,0,1.389-0.622,1.389-1.389v-0.079C506.252,318.448,505.63,317.826,504.863,317.826z M510.611,329.47h-34.423 c-0.767,0-1.389,0.621-1.389,1.388v0.153c0,0.767,0.622,1.388,1.389,1.388h34.423c0.767,0,1.389-0.622,1.389-1.388v-0.153 C512,330.092,511.378,329.47,510.611,329.47z M476.189,317.826h5.79c0.767,0,1.389,0.621,1.389,1.388v5.939 c0,0.767-0.621,1.389-1.389,1.389h-8.647c-0.767,0-1.388,0.621-1.388,1.388v3.081c0,0.767-0.622,1.388-1.389,1.388h-0.077 c-0.767,0-1.389-0.622-1.389-1.388v-8.94c0-0.767-0.621-1.388-1.388-1.388h-0.079c-0.767,0-1.389,0.621-1.389,1.388v8.94 c0,0.767-0.622,1.388-1.388,1.388h-0.078c-0.767,0-1.389-0.622-1.389-1.388v-8.94c0-0.767-0.621-1.388-1.389-1.388h-0.115 c-0.767,0-1.389,0.621-1.389,1.388v8.94c0,0.767-0.621,1.388-1.389,1.388h-0.042c-0.767,0-1.388-0.622-1.388-1.388v-11.797 c0-0.767,0.621-1.388,1.388-1.388h11.502c0.767,0,1.389,0.621,1.389,1.388v3.008c0,0.767,0.621,1.389,1.388,1.389h5.79 c0.767,0,1.388-0.622,1.388-1.389v-0.151c0-0.767-0.621-1.388-1.388-1.388h-2.933c-0.767,0-1.389-0.622-1.389-1.389v-0.079 C474.799,318.448,475.422,317.826,476.189,317.826z"/>
|
||||
<path style="fill:#F5F5F5;" d="M453.382,317.826h-0.115c-0.767,0-1.388,0.621-1.388,1.388v3.008c0,0.767-0.622,1.389-1.389,1.389 h-5.754c-0.767,0-1.389-0.622-1.389-1.389v-3.008c0-0.767-0.621-1.388-1.388-1.388h-11.502c-0.767,0-1.389,0.621-1.389,1.388v5.939 c0,0.767,0.622,1.389,1.389,1.389h5.79c0.767,0,1.389-0.622,1.389-1.389v-0.152c0-0.767-0.622-1.388-1.389-1.388h-2.935 c-0.767,0-1.388-0.622-1.388-1.389v-0.151c0-0.767,0.621-1.388,1.388-1.388h5.792c0.767,0,1.388,0.621,1.388,1.388v3.081 c0,0.767,0.622,1.389,1.389,1.389h11.502c0.767,0,1.389-0.622,1.389-1.389v-5.939C454.77,318.448,454.148,317.826,453.382,317.826z M447.669,317.826h-0.077c-0.767,0-1.389,0.621-1.389,1.388v0.079c0,0.767,0.622,1.389,1.389,1.389h0.077 c0.767,0,1.389-0.622,1.389-1.389v-0.079C449.057,318.448,448.436,317.826,447.669,317.826z M453.382,329.47h-34.387 c-0.767,0-1.389,0.621-1.389,1.388v0.153c0,0.767,0.622,1.388,1.389,1.388h34.387c0.767,0,1.389-0.622,1.389-1.388v-0.153 C454.77,330.092,454.148,329.47,453.382,329.47z M418.994,317.826h5.827c0.767,0,1.389,0.621,1.389,1.388v5.939 c0,0.767-0.622,1.389-1.389,1.389h-8.647c-0.767,0-1.389,0.621-1.389,1.388v3.081c0,0.767-0.621,1.388-1.389,1.388h-0.115 c-0.767,0-1.389-0.622-1.389-1.388v-8.94c0-0.767-0.622-1.388-1.389-1.388h-0.115c-0.767,0-1.389,0.621-1.389,1.388v8.94 c0,0.767-0.621,1.388-1.388,1.388h-0.042c-0.767,0-1.388-0.622-1.388-1.388v-8.94c0-0.767-0.622-1.388-1.389-1.388h-0.115 c-0.767,0-1.389,0.621-1.389,1.388v8.94c0,0.767-0.621,1.388-1.388,1.388h-0.078c-0.767,0-1.388-0.622-1.388-1.388v-11.797 c0-0.767,0.622-1.388,1.388-1.388h11.575c0.767,0,1.389,0.621,1.389,1.388v3.008c0,0.767,0.621,1.389,1.389,1.389h5.754 c0.767,0,1.389-0.622,1.389-1.389v-0.151c0-0.767-0.621-1.388-1.389-1.388h-2.935c-0.767,0-1.389-0.622-1.389-1.389v-0.079 C417.605,318.448,418.227,317.826,418.994,317.826z"/>
|
||||
<path style="fill:#F5F5F5;" d="M396.186,317.826h-0.077c-0.767,0-1.389,0.621-1.389,1.388v3.008c0,0.767-0.621,1.389-1.388,1.389 h-5.792c-0.767,0-1.389-0.622-1.389-1.389v-3.008c0-0.767-0.622-1.388-1.389-1.388h-11.538c-0.767,0-1.389,0.621-1.389,1.388v5.939 c0,0.767,0.621,1.389,1.389,1.389h5.79c0.767,0,1.389-0.622,1.389-1.389v-0.152c0-0.767-0.621-1.388-1.389-1.388h-2.935 c-0.767,0-1.389-0.622-1.389-1.389v-0.151c0-0.767,0.622-1.388,1.389-1.388h5.827c0.767,0,1.389,0.621,1.389,1.388v3.081 c0,0.767,0.621,1.389,1.388,1.389h11.502c0.767,0,1.389-0.622,1.389-1.389v-5.939C397.576,318.448,396.953,317.826,396.186,317.826 z M390.474,317.826h-0.077c-0.767,0-1.389,0.621-1.389,1.388v0.079c0,0.767,0.622,1.389,1.389,1.389h0.077 c0.767,0,1.388-0.622,1.388-1.389v-0.079C391.863,318.448,391.242,317.826,390.474,317.826z M396.186,329.47h-34.424 c-0.767,0-1.389,0.621-1.389,1.388v0.153c0,0.767,0.621,1.388,1.389,1.388h34.424c0.767,0,1.389-0.622,1.389-1.388v-0.153 C397.576,330.092,396.953,329.47,396.186,329.47z M361.762,317.826h5.827c0.767,0,1.389,0.621,1.389,1.388v5.939 c0,0.767-0.622,1.389-1.389,1.389h-8.646c-0.767,0-1.388,0.621-1.388,1.388v3.081c0,0.767-0.622,1.388-1.389,1.388h-0.079 c-0.767,0-1.388-0.622-1.388-1.388v-8.94c0-0.767-0.622-1.388-1.389-1.388h-0.115c-0.767,0-1.389,0.621-1.389,1.388v8.94 c0,0.767-0.621,1.388-1.388,1.388h-0.116c-0.767,0-1.388-0.622-1.388-1.388v-8.94c0-0.767-0.622-1.388-1.389-1.388h-0.042 c-0.767,0-1.389,0.621-1.389,1.388v8.94c0,0.767-0.621,1.388-1.389,1.388h-0.077c-0.767,0-1.388-0.622-1.388-1.388v-11.797 c0-0.767,0.621-1.388,1.388-1.388h11.54c0.767,0,1.389,0.621,1.389,1.388v3.008c0,0.767,0.621,1.389,1.388,1.389h5.79 c0.767,0,1.388-0.622,1.388-1.389v-0.151c0-0.767-0.621-1.388-1.388-1.388h-2.973c-0.767,0-1.389-0.622-1.389-1.389v-0.079 C360.373,318.448,360.995,317.826,361.762,317.826z"/>
|
||||
<path style="fill:#F5F5F5;" d="M338.993,317.826h-0.077c-0.767,0-1.389,0.621-1.389,1.388v3.008c0,0.767-0.622,1.389-1.388,1.389 h-5.79c-0.767,0-1.388-0.622-1.388-1.389v-3.008c0-0.767-0.622-1.388-1.389-1.388h-11.54c-0.767,0-1.388,0.621-1.388,1.388v5.939 c0,0.767,0.621,1.389,1.388,1.389h5.827c0.767,0,1.389-0.622,1.389-1.389v-0.152c0-0.767-0.622-1.388-1.389-1.388h-2.935 c-0.767,0-1.388-0.622-1.388-1.389v-0.151c0-0.767,0.621-1.388,1.388-1.388h5.79c0.767,0,1.388,0.621,1.388,1.388v3.081 c0,0.767,0.622,1.389,1.389,1.389h11.502c0.767,0,1.389-0.622,1.389-1.389v-5.939C340.381,318.448,339.759,317.826,338.993,317.826 z M333.28,317.826h-0.077c-0.767,0-1.388,0.621-1.388,1.388v0.079c0,0.767,0.622,1.389,1.388,1.389h0.077 c0.767,0,1.389-0.622,1.389-1.389v-0.079C334.668,318.448,334.047,317.826,333.28,317.826z M338.993,329.47h-34.388 c-0.767,0-1.388,0.621-1.388,1.388v0.153c0,0.767,0.621,1.388,1.388,1.388h34.388c0.767,0,1.389-0.622,1.389-1.388v-0.153 C340.381,330.092,339.759,329.47,338.993,329.47z M304.605,317.826h5.827c0.767,0,1.389,0.621,1.389,1.388v5.939 c0,0.767-0.622,1.389-1.389,1.389h-8.721c-0.767,0-1.389,0.621-1.389,1.388v3.081c0,0.767-0.621,1.388-1.388,1.388h-0.077 c-0.767,0-1.389-0.622-1.389-1.388v-8.94c0-0.767-0.622-1.388-1.389-1.388h-0.042c-0.767,0-1.389,0.621-1.389,1.388v8.94 c0,0.767-0.621,1.388-1.389,1.388h-0.115c-0.767,0-1.388-0.622-1.388-1.388v-8.94c0-0.767-0.622-1.388-1.389-1.388h-0.079 c-0.767,0-1.388,0.621-1.388,1.388v8.94c0,0.767-0.622,1.388-1.389,1.388h-0.077c-0.767,0-1.389-0.622-1.389-1.388v-11.797 c0-0.767,0.622-1.388,1.389-1.388h11.502c0.767,0,1.388,0.621,1.388,1.388v3.008c0,0.767,0.622,1.389,1.389,1.389h5.827 c0.767,0,1.389-0.622,1.389-1.389v-0.151c0-0.767-0.621-1.388-1.389-1.388h-2.935c-0.767,0-1.388-0.622-1.388-1.389v-0.079 C303.217,318.448,303.838,317.826,304.605,317.826z"/>
|
||||
<path style="fill:#F5F5F5;" d="M281.8,317.826h-0.079c-0.767,0-1.388,0.621-1.388,1.388v3.008c0,0.767-0.621,1.389-1.388,1.389 h-5.79c-0.767,0-1.388-0.622-1.388-1.389v-3.008c0-0.767-0.622-1.388-1.389-1.388h-11.54c-0.767,0-1.388,0.621-1.388,1.388v5.939 c0,0.767,0.621,1.389,1.388,1.389h5.827c0.767,0,1.389-0.622,1.389-1.389v-0.152c0-0.767-0.622-1.388-1.389-1.388h-2.97 c-0.767,0-1.388-0.622-1.388-1.389v-0.151c0-0.767,0.622-1.388,1.388-1.388h5.79c0.767,0,1.388,0.621,1.388,1.388v3.081 c0,0.767,0.622,1.389,1.389,1.389h11.54c0.767,0,1.389-0.622,1.389-1.389v-5.939C283.188,318.448,282.567,317.826,281.8,317.826z M276.05,317.826h-0.042c-0.767,0-1.389,0.621-1.389,1.388v0.079c0,0.767,0.621,1.389,1.389,1.389h0.042 c0.767,0,1.388-0.622,1.388-1.389v-0.079C277.439,318.448,276.817,317.826,276.05,317.826z M281.8,329.47h-34.424 c-0.767,0-1.388,0.621-1.388,1.388v0.153c0,0.767,0.622,1.388,1.388,1.388H281.8c0.767,0,1.389-0.622,1.389-1.388v-0.153 C283.188,330.092,282.567,329.47,281.8,329.47z M247.374,317.826h5.827c0.767,0,1.388,0.621,1.388,1.388v5.939 c0,0.767-0.621,1.389-1.388,1.389h-8.684c-0.767,0-1.388,0.621-1.388,1.388v3.081c0,0.767-0.621,1.388-1.389,1.388h-0.077 c-0.767,0-1.389-0.622-1.389-1.388v-8.94c0-0.767-0.621-1.388-1.388-1.388h-0.079c-0.767,0-1.388,0.621-1.388,1.388v8.94 c0,0.767-0.622,1.388-1.389,1.388h-0.077c-0.767,0-1.388-0.622-1.388-1.388v-8.94c0-0.767-0.622-1.388-1.388-1.388h-0.078 c-0.767,0-1.388,0.621-1.388,1.388v8.94c0,0.767-0.621,1.388-1.389,1.388h-0.079c-0.767,0-1.389-0.622-1.389-1.388v-11.797 c0-0.767,0.621-1.388,1.389-1.388h11.502c0.767,0,1.389,0.621,1.389,1.388v3.008c0,0.767,0.621,1.389,1.388,1.389h5.827 c0.767,0,1.389-0.622,1.389-1.389v-0.151c0-0.767-0.622-1.388-1.389-1.388h-2.97c-0.767,0-1.388-0.622-1.388-1.389v-0.079 C245.986,318.448,246.607,317.826,247.374,317.826z"/>
|
||||
<path style="fill:#F5F5F5;" d="M224.605,317.826h-0.079c-0.767,0-1.389,0.621-1.389,1.388v3.008c0,0.767-0.621,1.389-1.388,1.389 h-5.79c-0.767,0-1.388-0.622-1.388-1.389v-3.008c0-0.767-0.622-1.388-1.388-1.388h-11.54c-0.767,0-1.388,0.621-1.388,1.388v5.939 c0,0.767,0.621,1.389,1.388,1.389h5.792c0.767,0,1.388-0.622,1.388-1.389v-0.152c0-0.767-0.621-1.388-1.388-1.388h-2.899 c-0.767,0-1.389-0.622-1.389-1.389v-0.151c0-0.767,0.622-1.388,1.389-1.388h5.754c0.767,0,1.389,0.621,1.389,1.388v3.081 c0,0.767,0.621,1.389,1.388,1.389h11.54c0.767,0,1.389-0.622,1.389-1.389v-5.939C225.994,318.448,225.372,317.826,224.605,317.826z M218.856,317.826h-0.042c-0.767,0-1.389,0.621-1.389,1.388v0.079c0,0.767,0.622,1.389,1.389,1.389h0.042 c0.767,0,1.388-0.622,1.388-1.389v-0.079C220.244,318.448,219.623,317.826,218.856,317.826z M224.605,329.47H190.18 c-0.767,0-1.388,0.621-1.388,1.388v0.153c0,0.767,0.621,1.388,1.388,1.388h34.424c0.767,0,1.389-0.622,1.389-1.388v-0.153 C225.994,330.092,225.372,329.47,224.605,329.47z M190.18,317.826h5.79c0.767,0,1.388,0.621,1.388,1.388v5.939 c0,0.767-0.621,1.389-1.388,1.389h-8.646c-0.767,0-1.388,0.621-1.388,1.388v3.081c0,0.767-0.621,1.388-1.389,1.388h-0.079 c-0.767,0-1.388-0.622-1.388-1.388v-8.94c0-0.767-0.621-1.388-1.388-1.388h-0.078c-0.767,0-1.388,0.621-1.388,1.388v8.94 c0,0.767-0.621,1.388-1.389,1.388h-0.079c-0.767,0-1.389-0.622-1.389-1.388v-8.94c0-0.767-0.621-1.388-1.388-1.388h-0.077 c-0.767,0-1.388,0.621-1.388,1.388v8.94c0,0.767-0.622,1.388-1.389,1.388h-0.079c-0.767,0-1.389-0.622-1.389-1.388v-11.797 c0-0.767,0.622-1.388,1.389-1.388h11.505c0.767,0,1.389,0.621,1.389,1.388v3.008c0,0.767,0.621,1.389,1.388,1.389h5.825 c0.767,0,1.389-0.622,1.389-1.389v-0.151c0-0.767-0.621-1.388-1.389-1.388h-2.97c-0.767,0-1.388-0.622-1.388-1.389v-0.079 C188.791,318.448,189.414,317.826,190.18,317.826z"/>
|
||||
<path style="fill:#F5F5F5;" d="M167.411,317.826h-0.079c-0.767,0-1.389,0.621-1.389,1.388v3.008c0,0.767-0.621,1.389-1.388,1.389 h-5.826c-0.767,0-1.389-0.622-1.389-1.389v-3.008c0-0.767-0.621-1.388-1.388-1.388h-11.505c-0.767,0-1.389,0.621-1.389,1.388v5.939 c0,0.767,0.621,1.389,1.389,1.389h5.792c0.767,0,1.389-0.622,1.389-1.389v-0.152c0-0.767-0.621-1.388-1.389-1.388h-2.973 c-0.767,0-1.389-0.622-1.389-1.389v-0.151c0-0.767,0.621-1.388,1.389-1.388h5.865c0.767,0,1.388,0.621,1.388,1.388v3.081 c0,0.767,0.622,1.389,1.389,1.389h11.502c0.767,0,1.389-0.622,1.389-1.389v-5.939C168.8,318.448,168.178,317.826,167.411,317.826z M161.698,317.826h-0.116c-0.767,0-1.388,0.621-1.388,1.388v0.079c0,0.767,0.621,1.389,1.388,1.389h0.116 c0.767,0,1.388-0.622,1.388-1.389v-0.079C163.087,318.448,162.465,317.826,161.698,317.826z M167.411,329.47h-34.424 c-0.767,0-1.389,0.621-1.389,1.388v0.153c0,0.767,0.621,1.388,1.389,1.388h34.424c0.767,0,1.389-0.622,1.389-1.388v-0.153 C168.8,330.092,168.178,329.47,167.411,329.47z M132.985,317.826h5.79c0.767,0,1.389,0.621,1.389,1.388v5.939 c0,0.767-0.621,1.389-1.389,1.389h-8.646c-0.767,0-1.388,0.621-1.388,1.388v3.081c0,0.767-0.621,1.388-1.389,1.388h-0.079 c-0.767,0-1.389-0.622-1.389-1.388v-8.94c0-0.767-0.621-1.388-1.388-1.388h-0.078c-0.767,0-1.388,0.621-1.388,1.388v8.94 c0,0.767-0.621,1.388-1.389,1.388h-0.079c-0.767,0-1.389-0.622-1.389-1.388v-8.94c0-0.767-0.621-1.388-1.389-1.388h-0.115 c-0.767,0-1.388,0.621-1.388,1.388v8.94c0,0.767-0.621,1.388-1.388,1.388h-0.04c-0.767,0-1.389-0.622-1.389-1.388v-11.797 c0-0.767,0.621-1.388,1.389-1.388h11.502c0.767,0,1.389,0.621,1.389,1.388v3.008c0,0.767,0.621,1.389,1.388,1.389h5.754 c0.767,0,1.389-0.622,1.389-1.389v-0.151c0-0.767-0.621-1.388-1.389-1.388h-2.899c-0.767,0-1.389-0.622-1.389-1.389v-0.079 C131.597,318.448,132.218,317.826,132.985,317.826z"/>
|
||||
<path style="fill:#F5F5F5;" d="M110.18,317.826h-0.042c-0.767,0-1.389,0.621-1.389,1.388v3.008c0,0.767-0.621,1.389-1.388,1.389 h-5.792c-0.767,0-1.388-0.622-1.388-1.389v-3.008c0-0.767-0.621-1.388-1.388-1.388H87.254c-0.767,0-1.388,0.621-1.388,1.388v5.939 c0,0.767,0.621,1.389,1.388,1.389h5.752c0.767,0,1.389-0.622,1.389-1.389v-0.152c0-0.767-0.621-1.388-1.389-1.388h-2.933 c-0.767,0-1.388-0.622-1.388-1.389v-0.151c0-0.767,0.621-1.388,1.388-1.388H95.9c0.767,0,1.389,0.621,1.389,1.388v3.081 c0,0.767,0.621,1.389,1.388,1.389h11.505c0.767,0,1.389-0.622,1.389-1.389v-5.939C111.57,318.448,110.947,317.826,110.18,317.826z M104.468,317.826h-0.079c-0.767,0-1.389,0.621-1.389,1.388v0.079c0,0.767,0.621,1.389,1.389,1.389h0.079 c0.767,0,1.388-0.622,1.388-1.389v-0.079C105.857,318.448,105.235,317.826,104.468,317.826z M110.18,329.47H75.719 c-0.767,0-1.388,0.621-1.388,1.388v0.153c0,0.767,0.621,1.388,1.388,1.388h34.462c0.767,0,1.389-0.622,1.389-1.388v-0.153 C111.57,330.092,110.947,329.47,110.18,329.47z M75.719,317.826h5.865c0.767,0,1.389,0.621,1.389,1.388v5.939 c0,0.767-0.621,1.389-1.389,1.389h-8.648c-0.767,0-1.388,0.621-1.388,1.388v3.081c0,0.767-0.621,1.388-1.389,1.388h-0.115 c-0.767,0-1.388-0.622-1.388-1.388v-8.94c0-0.767-0.621-1.388-1.389-1.388H67.19c-0.767,0-1.389,0.621-1.389,1.388v8.94 c0,0.767-0.621,1.388-1.388,1.388H64.37c-0.767,0-1.389-0.622-1.389-1.388v-8.94c0-0.767-0.621-1.388-1.388-1.388h-0.115 c-0.767,0-1.389,0.621-1.389,1.388v8.94c0,0.767-0.621,1.388-1.388,1.388h-0.079c-0.767,0-1.388-0.622-1.388-1.388v-11.797 c0-0.767,0.621-1.388,1.388-1.388h11.54c0.767,0,1.389,0.621,1.389,1.388v3.008c0,0.767,0.621,1.389,1.388,1.389h5.79 c0.767,0,1.388-0.622,1.388-1.389v-0.151c0-0.767-0.621-1.388-1.388-1.388H75.72c-0.767,0-1.388-0.622-1.388-1.389v-0.079 C74.329,318.448,74.952,317.826,75.719,317.826z"/>
|
||||
<path style="fill:#F5F5F5;" d="M52.986,317.826h-0.079c-0.767,0-1.388,0.621-1.388,1.388v3.008c0,0.767-0.621,1.389-1.389,1.389 h-5.79c-0.767,0-1.389-0.622-1.389-1.389v-3.008c0-0.767-0.621-1.388-1.388-1.388H30.022c-0.767,0-1.389,0.621-1.389,1.388v5.939 c0,0.767,0.621,1.389,1.389,1.389h5.754c0.767,0,1.388-0.622,1.388-1.389v-0.152c0-0.767-0.621-1.388-1.388-1.388h-2.935 c-0.767,0-1.389-0.622-1.389-1.389v-0.151c0-0.767,0.622-1.388,1.389-1.388h5.865c0.767,0,1.389,0.621,1.389,1.388v3.081 c0,0.767,0.621,1.389,1.388,1.389h11.502c0.767,0,1.388-0.622,1.388-1.389v-5.939C54.375,318.448,53.753,317.826,52.986,317.826z M47.274,317.826h-0.079c-0.767,0-1.388,0.621-1.388,1.388v0.079c0,0.767,0.621,1.389,1.388,1.389h0.079 c0.767,0,1.388-0.622,1.388-1.389v-0.079C48.662,318.448,48.041,317.826,47.274,317.826z M52.986,329.47H18.599 c-0.767,0-1.389,0.621-1.389,1.388v0.153c0,0.767,0.622,1.388,1.389,1.388h34.387c0.767,0,1.388-0.622,1.388-1.388v-0.153 C54.375,330.092,53.753,329.47,52.986,329.47z M18.599,317.826h5.79c0.767,0,1.389,0.621,1.389,1.388v5.939 c0,0.767-0.621,1.389-1.389,1.389H15.67c-0.767,0-1.389,0.621-1.389,1.388v3.081c0,0.767-0.621,1.388-1.389,1.388h-0.004 c-0.767,0-1.389-0.622-1.389-1.388v-8.94c0-0.767-0.621-1.388-1.389-1.388H9.956c-0.767,0-1.389,0.621-1.389,1.388v8.94 c0,0.767-0.621,1.388-1.389,1.388H7.175c-0.767,0-1.388-0.622-1.388-1.388v-8.94c0-0.767-0.622-1.388-1.389-1.388H4.317 c-0.767,0-1.389,0.621-1.389,1.388v8.94c0,0.767-0.621,1.388-1.388,1.388H1.388c-0.767,0-1.388-0.622-1.388-1.388v-11.797 c0-0.767,0.621-1.388,1.388-1.388H12.89c0.767,0,1.389,0.621,1.389,1.388v3.008c0,0.767,0.621,1.389,1.389,1.389h5.864 c0.767,0,1.388-0.622,1.388-1.389v-0.151c0-0.767-0.621-1.388-1.388-1.388H18.6c-0.767,0-1.389-0.622-1.389-1.389v-0.079 C17.21,318.448,17.832,317.826,18.599,317.826z"/>
|
||||
<path style="fill:#F5F5F5;" d="M510.611,308.966h-22.963c-0.767,0-1.388,0.622-1.388,1.389v3.081c0,0.767,0.621,1.388,1.388,1.388 h22.963c0.767,0,1.389-0.621,1.389-1.388v-3.081C512,309.588,511.378,308.966,510.611,308.966z M481.978,308.966h-22.927 c-0.767,0-1.388,0.622-1.388,1.389v3.081c0,0.767,0.621,1.388,1.388,1.388h22.927c0.767,0,1.389-0.621,1.389-1.388v-3.081 C483.367,309.588,482.745,308.966,481.978,308.966z"/>
|
||||
<path style="fill:#F5F5F5;" d="M453.382,308.966h-22.927c-0.767,0-1.389,0.622-1.389,1.389v3.081c0,0.767,0.622,1.388,1.389,1.388 h22.927c0.767,0,1.389-0.621,1.389-1.388v-3.081C454.77,309.588,454.148,308.966,453.382,308.966z M424.821,308.966h-23 c-0.767,0-1.388,0.622-1.388,1.389v3.081c0,0.767,0.622,1.388,1.388,1.388h23c0.767,0,1.389-0.621,1.389-1.388v-3.081 C426.21,309.588,425.588,308.966,424.821,308.966z"/>
|
||||
<path style="fill:#F5F5F5;" d="M396.186,308.966h-22.963c-0.767,0-1.389,0.622-1.389,1.389v3.081c0,0.767,0.621,1.388,1.389,1.388 h22.963c0.767,0,1.389-0.621,1.389-1.388v-3.081C397.576,309.588,396.953,308.966,396.186,308.966z M367.59,308.966h-22.963 c-0.767,0-1.388,0.622-1.388,1.389v3.081c0,0.767,0.621,1.388,1.388,1.388h22.963c0.767,0,1.389-0.621,1.389-1.388v-3.081 C368.979,309.588,368.356,308.966,367.59,308.966z"/>
|
||||
<path style="fill:#F5F5F5;" d="M338.993,308.966H316.03c-0.767,0-1.388,0.622-1.388,1.389v3.081c0,0.767,0.621,1.388,1.388,1.388 h22.963c0.767,0,1.389-0.621,1.389-1.388v-3.081C340.381,309.588,339.759,308.966,338.993,308.966z M310.432,308.966h-23 c-0.767,0-1.389,0.622-1.389,1.389v3.081c0,0.767,0.622,1.388,1.389,1.388h23c0.767,0,1.389-0.621,1.389-1.388v-3.081 C311.821,309.588,311.2,308.966,310.432,308.966z"/>
|
||||
<path style="fill:#F5F5F5;" d="M281.8,308.966h-22.965c-0.767,0-1.388,0.622-1.388,1.389v3.081c0,0.767,0.621,1.388,1.388,1.388 H281.8c0.767,0,1.389-0.621,1.389-1.388v-3.081C283.188,309.588,282.567,308.966,281.8,308.966z M253.203,308.966h-22.965 c-0.767,0-1.389,0.622-1.389,1.389v3.081c0,0.767,0.621,1.388,1.389,1.388h22.965c0.767,0,1.388-0.621,1.388-1.388v-3.081 C254.591,309.588,253.97,308.966,253.203,308.966z"/>
|
||||
<path style="fill:#F5F5F5;" d="M224.605,308.966H201.64c-0.767,0-1.388,0.622-1.388,1.389v3.081c0,0.767,0.621,1.388,1.388,1.388 h22.965c0.767,0,1.389-0.621,1.389-1.388v-3.081C225.994,309.588,225.372,308.966,224.605,308.966z M195.97,308.966h-22.927 c-0.767,0-1.389,0.622-1.389,1.389v3.081c0,0.767,0.622,1.388,1.389,1.388h22.927c0.767,0,1.388-0.621,1.388-1.388v-3.081 C197.359,309.588,196.737,308.966,195.97,308.966z"/>
|
||||
<path style="fill:#F5F5F5;" d="M167.411,308.966h-22.965c-0.767,0-1.389,0.622-1.389,1.389v3.081c0,0.767,0.621,1.388,1.389,1.388 h22.965c0.767,0,1.389-0.621,1.389-1.388v-3.081C168.8,309.588,168.178,308.966,167.411,308.966z M138.776,308.966h-22.925 c-0.767,0-1.389,0.622-1.389,1.389v3.081c0,0.767,0.621,1.388,1.389,1.388h22.925c0.767,0,1.389-0.621,1.389-1.388v-3.081 C140.164,309.588,139.543,308.966,138.776,308.966z"/>
|
||||
<path style="fill:#F5F5F5;" d="M110.18,308.966H87.254c-0.767,0-1.388,0.622-1.388,1.389v3.081c0,0.767,0.621,1.388,1.388,1.388 h22.927c0.767,0,1.389-0.621,1.389-1.388v-3.081C111.57,309.588,110.947,308.966,110.18,308.966z M81.583,308.966H58.618 c-0.767,0-1.388,0.622-1.388,1.389v3.081c0,0.767,0.621,1.388,1.388,1.388h22.965c0.767,0,1.389-0.621,1.389-1.388v-3.081 C82.972,309.588,82.35,308.966,81.583,308.966z"/>
|
||||
<path style="fill:#F5F5F5;" d="M52.986,308.966H30.022c-0.767,0-1.389,0.622-1.389,1.389v3.081c0,0.767,0.621,1.388,1.389,1.388 h22.965c0.767,0,1.388-0.621,1.388-1.388v-3.081C54.375,309.588,53.753,308.966,52.986,308.966z M24.388,308.966h-23 c-0.767,0-1.388,0.622-1.388,1.389v3.081c0,0.767,0.621,1.388,1.388,1.388h23c0.767,0,1.389-0.621,1.389-1.388v-3.081 C25.778,309.588,25.156,308.966,24.388,308.966z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#FF4B55;" d="M248.698,214.275c2.62,0.698,5.414-0.071,7.334-2.026c2.898,2.934,7.647,3.004,10.649,0.141 c1.956-1.886,2.759-4.75,2.06-7.334c-2.548,4.121-7.925,5.448-12.046,2.863c-0.21-0.141-0.489-0.28-0.663-0.419 c-3.875,2.863-9.357,2.095-12.291-1.745c-0.106-0.211-0.314-0.49-0.454-0.698C242.239,209.107,244.683,213.296,248.698,214.275z"/>
|
||||
<path style="fill:#FF4B55;" d="M264.966,295.855c9.386-5.153,17.219-13.272,21.514-23.966c7.314-18.33,2.708-39.02-11.283-52.44 c-0.481-0.461-1.212,0.156-0.863,0.724c13.799,22.503,8.363,52.074-12.99,68.278l1.021-65.367c0.014-0.887-0.382-1.732-1.071-2.291 l-3.473-2.807c-1.064-0.86-2.584-0.855-3.642,0.01l-3.422,2.797c-0.683,0.558-1.073,1.398-1.059,2.28l0.992,65.414 c-21.356-16.195-26.804-45.794-13.026-68.312c0.348-0.568-0.383-1.185-0.863-0.723c-13.964,13.42-18.599,34.109-11.286,52.438 c4.295,10.692,12.127,18.812,21.516,23.965c-5.975,2.047-12.255,3.134-18.605,2.952c-0.671-0.019-0.806,0.925-0.163,1.119 c8.068,2.449,16.366,2.617,24.168,0.868l3.063,5.943c0.212,0.41,0.799,0.412,1.012,0.001l3.084-5.941 c7.802,1.746,16.103,1.575,24.177-0.874c0.642-0.194,0.508-1.138-0.163-1.119C277.246,298.988,270.951,297.902,264.966,295.855z"/>
|
||||
<path style="fill:#FF4B55;" d="M303.171,235.086c-4.804-8.975-12.782-15.778-22.28-19.111c-0.595-0.209-1.059,0.577-0.573,0.978 c20.966,17.271,25.169,48.032,8.954,70.302c-0.839,1.118-1.747,2.305-2.62,3.281C306.559,279.852,313.927,254.99,303.171,235.086z"/>
|
||||
<path style="fill:#FF4B55;" d="M222.755,287.255c-16.213-22.27-12.044-53.03,8.918-70.301c0.487-0.401,0.022-1.186-0.573-0.978 c-9.485,3.334-17.408,10.135-22.243,19.11c-10.824,19.904-3.386,44.765,16.552,55.449 C224.467,289.559,223.559,288.373,222.755,287.255z"/>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 42 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 9.8 KiB |
@ -1,131 +0,0 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<path style="fill:#41479B;" d="M473.655,423.75H38.345C17.167,423.75,0,406.582,0,385.405V126.646 c0-21.177,17.167-38.345,38.345-38.345h435.31c21.177,0,38.345,17.167,38.345,38.345v258.759 C512,406.582,494.833,423.75,473.655,423.75z"/>
|
||||
<path style="fill:#F5F5F5;" d="M8.828,255.975h15.334l81.77-53.574v53.574h44.138v-53.574l81.77,53.574h15.334 c4.875,0,8.828-3.953,8.828-8.828v-7.002l-70.155-45.963H256v-44.138h-70.155L256,104.081v-7.002c0-4.559-3.456-8.309-7.891-8.777 h-16.348l-81.693,53.523V88.301H105.93v53.523L26.894,90.041c-9.242,2.888-16.973,9.186-21.741,17.415l65.002,42.588H0v44.138 h70.155L0,240.145v7.002C0,252.022,3.953,255.975,8.828,255.975z"/>
|
||||
<g>
|
||||
<polygon style="fill:#FF4B55;" points="256,158.871 141.241,158.871 141.241,88.25 114.759,88.25 114.759,158.871 0,158.871 0,185.354 114.759,185.354 114.759,255.975 141.241,255.975 141.241,185.354 256,185.354 "/>
|
||||
<path style="fill:#FF4B55;" d="M8.254,102.894l72.636,47.149h16.214L14.643,96.516C12.271,98.385,10.126,100.525,8.254,102.894z"/>
|
||||
<path style="fill:#FF4B55;" d="M166.283,150.044l88.374-57.366c-1.536-2.599-4.246-4.427-7.485-4.427h-1.909l-95.194,61.793 H166.283z"/>
|
||||
<path style="fill:#FF4B55;" d="M89.474,194.182L1.269,251.437c1.519,2.663,4.273,4.537,7.559,4.537h1.665l95.196-61.793H89.474 V194.182z"/>
|
||||
<path style="fill:#FF4B55;" d="M255.86,247.841l-82.666-53.658H156.98l93.874,60.935 C253.666,253.812,255.595,251.076,255.86,247.841z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#FFE15A;" d="M383.828,172.193c0,0-3.691-14.766-14.766-22.15c0,0,11.074,18.457,11.074,33.224L383.828,172.193z"/>
|
||||
<path style="fill:#FFE15A;" d="M366.754,156.158c0,0,7.73,4.729,11.882,12.459l-3.346,7.73 C375.292,176.345,372.523,165.387,366.754,156.158z"/>
|
||||
<path style="fill:#FFE15A;" d="M358.218,157.888c0,0,13.382,4.153,19.726,12.806l-3.807,5.768 C374.137,176.461,369.062,166.656,358.218,157.888z"/>
|
||||
<path style="fill:#FFE15A;" d="M356.257,164.579c0,0,14.074,2.191,20.419,8.883l-1.615,6.345 C375.061,179.807,367.331,170.578,356.257,164.579z"/>
|
||||
<path style="fill:#FFE15A;" d="M356.718,169.194c0,0,13.612,1.385,19.842,8.536c6.229,7.153-2.307,4.96-2.307,4.96 S367.101,174.5,356.718,169.194z"/>
|
||||
<path style="fill:#FFE15A;" d="M383.828,172.193c0,0,3.691-14.766,14.766-22.15c0,0-11.074,18.457-11.074,33.224L383.828,172.193z"/>
|
||||
<path style="fill:#FFE15A;" d="M400.901,156.158c0,0-7.73,4.729-11.882,12.459l3.346,7.73 C392.365,176.345,395.134,165.387,400.901,156.158z"/>
|
||||
<path style="fill:#FFE15A;" d="M409.438,157.888c0,0-13.382,4.153-19.726,12.806l3.807,5.768 C393.518,176.461,398.594,166.656,409.438,157.888z"/>
|
||||
<path style="fill:#FFE15A;" d="M411.4,164.579c0,0-14.074,2.191-20.419,8.883l1.615,6.345 C392.596,179.807,400.324,170.578,411.4,164.579z"/>
|
||||
<path style="fill:#FFE15A;" d="M410.937,169.194c0,0-13.612,1.385-19.842,8.536c-6.229,7.153,2.307,4.96,2.307,4.96 S400.555,174.5,410.937,169.194z"/>
|
||||
<path style="fill:#FFE15A;" d="M383.828,150.044c0,0-3.691,7.767,0,11.651C387.52,157.811,383.828,150.044,383.828,150.044z"/>
|
||||
<path style="fill:#FFE15A;" d="M380.15,151.972c0,0-0.495,8.586,4.386,10.794C386.495,157.779,380.15,151.972,380.15,151.972z"/>
|
||||
<path style="fill:#FFE15A;" d="M387.506,151.972c0,0,0.495,8.586-4.386,10.794C381.161,157.779,387.506,151.972,387.506,151.972z"/>
|
||||
<path style="fill:#FFE15A;" d="M388.715,156.925c0,0-3.221,7.975-8.578,7.884C380.498,159.463,388.715,156.925,388.715,156.925z"/>
|
||||
<path style="fill:#FFE15A;" d="M378.941,156.925c0,0,3.221,7.975,8.578,7.884C387.158,159.463,378.941,156.925,378.941,156.925z"/>
|
||||
</g>
|
||||
<ellipse style="fill:#FFD255;" cx="383.82" cy="175.89" rx="11.08" ry="14.766"/>
|
||||
<g>
|
||||
<path style="fill:#73AF00;" d="M358.526,190.958l-2.538-3.923c0,0-7.383,1.769-9.152-3.768l-2.846-0.231 c0,0,0.384-3.768,3.691-4.307c0,0,1.999-2.461,5.537-1.999c3.538,0.461,5.384,3.46,7.422,4.23c2.038,0.769,2.269,3.307,2.269,3.307 l15.535,15.919c0,0-4.46,5.692-8.46,7.537S351.296,200.572,358.526,190.958z"/>
|
||||
<path style="fill:#73AF00;" d="M408.977,193.88c0,0,6.461,4.384,6.691,16.497h-10.729c0,0,0.116-8.191-1.961-12.574L408.977,193.88 z"/>
|
||||
<path style="fill:#73AF00;" d="M407.593,194.343c0,0,8.075,2.654,13.036-3.691l-8.422-1.153L407.593,194.343z"/>
|
||||
<path style="fill:#73AF00;" d="M405.17,185.46l8.2,2.764c1.034,0.349,1.399,1.629,0.674,2.445 c-3.111,3.505-12.397,11.903-27.37,11.903c-19.496,0-24.533-12.267-24.764-13.19c-0.231-0.922-1.269-8.422-1.269-8.422l8.306-0.922 L405.17,185.46z"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon style="fill:#FF4B55;" points="325.44,298.403 346.913,298.403 335.838,319.854 324.764,305.088 "/>
|
||||
<polygon style="fill:#FF4B55;" points="442.216,298.403 420.744,298.403 431.818,319.854 442.892,305.088 "/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#FFD25A;" d="M325.351,334.621c-10.593,0-18.699-5.685-19.117-5.981l8.536-12.052 c0.071,0.046,7.223,4.906,14.516,2.697c7.38-2.228,12.225-10.937,14.991-17.856l13.71,5.486 c-5.816,14.542-14.112,23.479-24.651,26.569C330.58,334.293,327.893,334.621,325.351,334.621z"/>
|
||||
<path style="fill:#FFD25A;" d="M442.305,334.621c10.593,0,18.699-5.685,19.117-5.981l-8.536-12.052 c-0.071,0.046-7.223,4.906-14.516,2.697c-7.38-2.228-12.225-10.937-14.991-17.856l-13.71,5.486 c5.816,14.542,14.112,23.479,24.651,26.569C437.076,334.293,439.764,334.621,442.305,334.621z"/>
|
||||
</g>
|
||||
<path style="fill:#FF4B55;" d="M431.818,257.098h-95.98v-35.47c0-4.875,3.953-8.828,8.828-8.828h78.325 c4.875,0,8.828,3.953,8.828,8.828L431.818,257.098L431.818,257.098z"/>
|
||||
<g>
|
||||
<path style="fill:#FFE15A;" d="M362.025,238.641l-1.153-7.383c-5.422-0.231-8.536-6.575-8.536-6.575l-4.384,2.422 C352.565,238.179,362.025,238.641,362.025,238.641z"/>
|
||||
<path style="fill:#FFE15A;" d="M419.82,231.027c1.615-1.23,5.153-1.692,5.153-1.692c-2.538-2.615-5.306-0.769-5.306-0.769 c2.307-2.153,1-5.229,1-5.229c0,1-1.615,1.692-1.615,1.692c0.077-1.999-1.999-3.923-1.999-3.923l-1.077,1.769 c-0.692-1.692-3.153-2.999-3.153-2.999l-1,4.153c-2.307-1.999-6.383-1.846-6.383-1.846l0.769,1.923 c-2.461,0.076-9.152,1.461-13.075,1.922s-7.075-0.615-7.075-2.383c0-1.482,3.428-1.665,4.911-1.687 c1.049,0.234,2.368,0.612,4.222,1.169c3.46,1.038,5.487-0.466,5.487-0.466c-1.212-0.461-1.346-1-1.346-1 c2.595-1.5,5.03-1.13,5.03-1.13c-0.865-1.903-4.615-1.788-4.615-1.788c0.981-0.519,1.73-2.134,1.73-2.134 c-0.231,0.231-2.362,0.754-5.272,1.144c-2.19,0.295-4.247,1.96-5.097,2.73c-2.31-0.177-8.342-0.25-7.281,3.933 c1.308,5.153,11.69,3.307,18.073,2.307s9.69-0.153,11.074,0.692c1.385,0.846-0.589,3.712-7.075,2.538 c-5.605-1.014-8.692-1.043-10.387-0.865c-1.879,0.12-3.481,0.626-4.61,0.865c-2.538,0.538-12.306,3.999-14.151-1 c-1.846-5-10.844,8.152-10.844,8.152l0.703,0.836l-2.395-0.567c-3.23,4.326-12.92,5.653-12.92,5.653s-1.442-2.595-2.654-2.942 c-1.212-0.346-1.73,1.557-1.73,1.557s-1.442,0.057-1.557,1.385c-0.116,1.326,1.038,1.442,1.038,1.442s-1.385,2.019,0.922,2.595 c0,0-0.173,2.826,3.23,0.865c10.11,1.274,17.482-3.917,20.674-6.749c2.087,0.134,5.339,0.067,7.839-1.23 c3.999-2.077,8.614-4.692,11.305-3.691c0,0,2.154,6.614-6.306,6.767c0,0-1.251-1.582-2.51-1.582c-0.543,0-1.108,0.652-0.934,1.238 c0,0-1.476-0.087-1.737,0.782c-0.213,0.708,0.303,1.519,1.389,1.389c0,0-0.738,1.086,0,1.737s1.651,0,1.651,0 s-0.391,1.346,0.521,1.476c0.78,0.111,1.813-1.163,2.109-1.55c1.354,0.211,10.591,1.276,12.586-8.413c0,0,4.615,1.999,9.152,1.615 s8.999,0.308,8.614,2.538c-0.503,1.617-1.495,1.51-1.495,1.51c-1.086-0.435-2.91-0.391-3.17,1.173 c-0.26,1.564,1.867,1.607,1.867,1.607c0.608,1.433,2.345,0.825,2.345,0.825c1.519,1.086,2.519-0.087,2.519-0.087 c0.652,0.565,1.324,0.67,1.954,0.13c0.608-0.521,0.267-3.996,0.209-5.236c-0.096-2.063-0.385-7.459-3.384-7.537 c-2.999-0.077-6.845,1.692-12.151-2.769c-0.277-0.233-0.547-0.381-0.821-0.579c2.511,0.233,4.31,0.914,6.051,1.194 C411.207,232.873,418.206,232.257,419.82,231.027z"/>
|
||||
<path style="fill:#FFE15A;" d="M347.95,227.104c0,0-1.471,0.04-2.191-0.173c-1.235-0.364-1.385-2.307-0.057-2.654 c0,0-1.597-1.085-0.865-2.307c0.586-0.978,2.079-0.975,2.598-0.398c0,0-0.487-1.609,0.921-2.14c1.12-0.423,2.019,0.865,2.019,2.538 c0,0,1.674-1.362,2.538-0.461c0.602,0.628,0.429,1.453-0.577,3.172C351.309,226.436,347.95,227.104,347.95,227.104z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#41479B;" d="M346.131,226.393c0,0-0.781,1.346-3.04,0.521c0,0,1.954-0.913,2.215-1.694L346.131,226.393z"/>
|
||||
<path style="fill:#41479B;" d="M345.305,222.441c0,0-1.216-0.781-2.562-0.738c0,0,1.997-1.476,3.691-0.173L345.305,222.441z"/>
|
||||
<path style="fill:#41479B;" d="M348.129,220.356c0,0,0.391-1.433-0.391-2.215c0,0,1.607,0.695,1.824,1.997L348.129,220.356z"/>
|
||||
<path style="fill:#41479B;" d="M351.69,221.833c0,0,0.781-1.737,0.087-2.562c0,0,2.084,1.216,1.216,3.214L351.69,221.833z"/>
|
||||
<path style="fill:#41479B;" d="M347.62,241.134c0,0-0.836-1.711-1.914-1.705c0,0,2.268-0.825,3.249,1.12L347.62,241.134z"/>
|
||||
<path style="fill:#41479B;" d="M345.793,243.315c0,0-1.491-1.186-2.462-0.716c0,0,1.693-1.72,3.414-0.386L345.793,243.315z"/>
|
||||
<path style="fill:#41479B;" d="M346.84,246.391c0,0-1.905-0.021-2.383,0.946c0,0,0.28-2.397,2.458-2.4L346.84,246.391z"/>
|
||||
<path style="fill:#41479B;" d="M348.582,248.37c0,0-0.781,1.346-3.04,0.521c0,0,1.954-0.913,2.215-1.694L348.582,248.37z"/>
|
||||
<path style="fill:#41479B;" d="M382.909,247.686c0,0-0.64,1.102-2.49,0.427c0,0,1.502-0.536,1.715-1.177L382.909,247.686z"/>
|
||||
</g>
|
||||
<path style="fill:#FFD255;" d="M363.372,223.874c0,0-4.154,7.075-3.155,17.304c0,0,12.247-1.788,17.554-14.016 c0,0,1.293-0.523,1.797-1.779c0.429-1.068,0.394-2.827-1.663-2.817c0,0,0.616-1.23,1.365-1.519c0,0-1.326-0.519-2.884-0.173 c0,0,1.212-1.212,1.212-2.769c0,0-1.846,1.212-2.999,1.326c0,0-0.116-1.903,0.346-2.134c0,0-2.422,0.231-3.634,1.5 c0,0-0.808-1.096-0.75-2.25c0,0-2.25,0.981-3.115,2.422c0,0-0.692-0.75-0.634-1.5c0,0-1.615,1.961-1.961,2.999 c0,0-1.522-0.418-2.191,0.808C362.176,222.163,362.286,223.136,363.372,223.874z"/>
|
||||
<g>
|
||||
<path style="fill:#41479B;" d="M381.063,242.535c0,0-0.492-0.927-1.969-1.129c0,0,1.882-0.868,3.069,0.376L381.063,242.535z"/>
|
||||
<path style="fill:#41479B;" d="M411.595,246.052c0,0-1.079,0.341-1.585,1.867c0,0-0.553-2.167,1.001-3.182L411.595,246.052z"/>
|
||||
<path style="fill:#41479B;" d="M413.859,246.849c0,0-1.022,0.993-0.973,2.601c0,0-1.261-1.847-0.149-3.332L413.859,246.849z"/>
|
||||
<path style="fill:#41479B;" d="M418.745,246.762c0,0-0.309,1.052,0.625,2.174c0,0-1.933-0.615-1.97-2.298L418.745,246.762z"/>
|
||||
<path style="fill:#41479B;" d="M416.449,247.171c0,0-0.82,0.78-0.602,2.374c0,0-1.525-1.34-0.575-2.934L416.449,247.171z"/>
|
||||
<path style="fill:#41479B;" d="M379.489,244.431c0,0-0.988-0.354-2.216,0.49c0,0,0.807-1.909,2.522-1.788L379.489,244.431z"/>
|
||||
<path style="fill:#41479B;" d="M380.839,246.531c0,0-1.015-0.266-2.165,0.682c0,0,0.177-1.842,1.897-1.87L380.839,246.531z"/>
|
||||
</g>
|
||||
<path style="fill:#F5F5F5;" d="M431.818,263.047c-8.006,0-8.006,7.221-16.011,7.221s-8.006-7.221-16.011-7.221 c-8,0-8,7.221-16,7.221c-7.993,0-7.993-7.221-15.986-7.221s-7.992,7.221-15.983,7.221c-7.994,0-7.994-7.221-15.989-7.221v-13.332 c7.994,0,7.994,7.221,15.989,7.221c7.992,0,7.992-7.221,15.983-7.221c7.993,0,7.993,7.221,15.986,7.221c8,0,8-7.221,16-7.221 c8.006,0,8.006,7.221,16.011,7.221s8.006-7.221,16.011-7.221V263.047z"/>
|
||||
<path style="fill:#41479B;" d="M415.807,270.269c-8.006,0-8.006-7.221-16.011-7.221c-8,0-8,7.221-16,7.221 c-7.993,0-7.993-7.221-15.986-7.221s-7.992,7.221-15.983,7.221c-7.978,0-8-7.186-15.944-7.217c0.11,3.192,0.477,7.93,1.412,13.497 c6.494,0.86,7.085,7.051,14.531,7.051c7.992,0,7.992-7.222,15.983-7.222c7.993,0,7.993,7.222,15.986,7.222c8,0,8-7.222,16-7.222 c8.006,0,8.006,7.222,16.011,7.222c7.457,0,8.05-6.193,14.553-7.051c0.936-5.567,1.302-10.305,1.412-13.497 C423.818,263.083,423.796,270.269,415.807,270.269z"/>
|
||||
<path style="fill:#F5F5F5;" d="M415.807,283.601c-8.006,0-8.006-7.222-16.011-7.222c-8,0-8,7.222-16,7.222 c-7.993,0-7.993-7.222-15.986-7.222s-7.992,7.222-15.983,7.222c-7.446,0-8.038-6.191-14.531-7.051 c0.742,4.412,1.848,9.331,3.479,14.418c3.599,2.066,5.166,5.965,11.052,5.965c7.992,0,7.992-7.221,15.983-7.221 c7.993,0,7.993,7.221,15.986,7.221c8,0,8-7.221,16-7.221c8.006,0,8.006,7.221,16.011,7.221c5.899,0,7.465-3.907,11.076-5.971 c1.63-5.085,2.735-10.003,3.478-14.412C423.857,277.408,423.264,283.601,415.807,283.601z"/>
|
||||
<path style="fill:#41479B;" d="M415.807,296.932c-8.006,0-8.006-7.221-16.011-7.221c-8,0-8,7.221-16,7.221 c-7.993,0-7.993-7.221-15.986-7.221s-7.992,7.221-15.983,7.221c-5.885,0-7.453-3.9-11.052-5.965 c2.031,6.338,4.884,12.911,8.866,19.041c0.671,0.138,1.363,0.256,2.186,0.256c7.992,0,7.992-7.222,15.983-7.222 c7.993,0,7.993,7.222,15.986,7.222c8,0,8-7.222,16-7.222c8.006,0,8.006,7.222,16.011,7.222c0.832,0,1.533-0.118,2.21-0.258 c3.982-6.132,6.835-12.706,8.866-19.044C423.273,293.025,421.706,296.932,415.807,296.932z"/>
|
||||
<path style="fill:#F5F5F5;" d="M415.807,310.264c-8.006,0-8.006-7.222-16.011-7.222c-8,0-8,7.222-16,7.222 c-7.993,0-7.993-7.222-15.986-7.222s-7.992,7.222-15.983,7.222c-0.823,0-1.515-0.118-2.186-0.256 c2.53,3.895,5.526,7.599,9.054,10.951c2.444-2.065,4.386-4.585,9.116-4.585c7.993,0,7.993,7.221,15.986,7.221c8,0,8-7.221,16-7.221 c4.749,0,6.691,2.532,9.149,4.6c3.535-3.357,6.537-7.066,9.071-10.968C417.34,310.146,416.639,310.264,415.807,310.264z"/>
|
||||
<path style="fill:#41479B;" d="M408.945,320.974c-2.457-2.068-4.399-4.6-9.149-4.6c-8,0-8,7.221-16,7.221 c-7.993,0-7.993-7.221-15.986-7.221c-4.73,0-6.671,2.52-9.116,4.585c6.43,6.11,14.628,11.034,25.133,13.661 C394.324,331.997,402.517,327.078,408.945,320.974z"/>
|
||||
<g>
|
||||
<path style="fill:#F5F5F5;" d="M399.796,249.715c-8,0-8,7.221-16,7.221c-7.993,0-7.993-7.221-15.986-7.221 s-7.992,7.221-15.983,7.221c-7.994,0-7.994-7.221-15.989-7.221c0,4.555,0,8.511,0,11.074c0,0.625,0.014,1.395,0.044,2.262 c7.944,0.031,7.967,7.217,15.944,7.217c7.992,0,7.992-7.221,15.983-7.221c7.993,0,7.993,7.221,15.986,7.221c8,0,8-7.221,16-7.221 c8.006,0,8.006,7.221,16.011,7.221c7.989,0,8.011-7.186,15.967-7.217c0.03-0.868,0.044-1.638,0.044-2.262c0-2.563,0-6.52,0-11.074 c-8.006,0-8.006,7.221-16.011,7.221C407.801,256.937,407.801,249.715,399.796,249.715z"/>
|
||||
<path style="fill:#F5F5F5;" d="M428.127,212.8c2.039,0,3.691,1.653,3.691,3.691v33.224v7.383c0,1.399,0,2.678,0,3.691 c0,0.625-0.014,1.395-0.044,2.262c-0.11,3.192-0.477,7.93-1.412,13.497c-0.742,4.409-1.848,9.327-3.478,14.412 c-2.031,6.339-4.884,12.914-8.866,19.044c-2.535,3.903-5.537,7.613-9.071,10.968c-6.428,6.103-14.621,11.022-25.117,13.646 c-10.505-2.626-18.703-7.551-25.133-13.661c-3.528-3.352-6.524-7.055-9.054-10.951c-3.982-6.131-6.835-12.703-8.866-19.041 c-1.631-5.087-2.738-10.007-3.479-14.418c-0.936-5.567-1.302-10.305-1.412-13.497c-0.03-0.868-0.044-1.638-0.044-2.262 c0-1.013,0-2.293,0-3.691v-7.383V216.49c0-2.039,1.653-3.691,3.691-3.691h88.596 M428.127,210.031H339.53 c-3.562,0-6.461,2.898-6.461,6.461v33.224v7.383v3.691c0,0.651,0.014,1.453,0.046,2.358c0.105,3.014,0.441,7.863,1.449,13.86 c0.858,5.106,2.061,10.086,3.573,14.804c2.34,7.299,5.429,13.929,9.181,19.704c2.763,4.253,5.949,8.106,9.468,11.451 c7.342,6.977,16.214,11.801,26.369,14.34l0.672,0.168l0.671-0.168c10.147-2.537,19.013-7.357,26.353-14.325 c3.528-3.35,6.72-7.208,9.487-11.468c3.753-5.777,6.841-12.407,9.181-19.709c1.512-4.714,2.713-9.693,3.572-14.797 c1.009-5.997,1.345-10.848,1.449-13.86c0.031-0.905,0.046-1.707,0.046-2.358v-3.691v-7.383v-33.224 C434.586,212.929,431.689,210.031,428.127,210.031L428.127,210.031z"/>
|
||||
</g>
|
||||
<polygon style="fill:#73AF00;" points="383.828,312.296 373.698,319.345 377.272,307.532 367.438,300.077 379.775,299.827 383.828,288.169 387.881,299.827 400.217,300.077 390.385,307.532 393.959,319.345 "/>
|
||||
<path style="fill:#FFE15A;" d="M383.828,290.447l3.517,10.115l10.708,0.218l-8.535,6.47l3.102,10.251l-8.791-6.116l-8.791,6.116 l3.102-10.251l-8.534-6.47l10.708-0.218L383.828,290.447 M383.828,285.892l-1.412,4.064l-3.175,9.133l-9.667,0.198l-4.301,0.087 l3.428,2.6l7.704,5.842l-2.799,9.255l-1.246,4.118l3.532-2.457l7.936-5.523l7.936,5.523l3.532,2.457l-1.246-4.118l-2.799-9.255 l7.704-5.842l3.428-2.6l-4.301-0.087l-9.667-0.198l-3.175-9.133L383.828,285.892L383.828,285.892z"/>
|
||||
<polygon style="fill:#73AF00;" points="361.581,283.502 351.451,290.551 355.025,278.739 345.191,271.284 357.528,271.032 361.581,259.374 365.633,271.032 377.971,271.284 368.137,278.739 371.711,290.551 "/>
|
||||
<path style="fill:#FFE15A;" d="M361.581,261.653l3.517,10.115l10.708,0.218l-8.534,6.47l3.102,10.251l-8.791-6.116l-8.791,6.116 l3.102-10.251l-8.534-6.47l10.708-0.218L361.581,261.653 M361.581,257.098l-1.412,4.064l-3.175,9.133l-9.667,0.198l-4.301,0.087 l3.428,2.6l7.704,5.842l-2.799,9.255l-1.246,4.118l3.532-2.457l7.936-5.523l7.936,5.523l3.532,2.457l-1.246-4.118l-2.799-9.255 l7.704-5.842l3.428-2.6l-4.301-0.087l-9.667-0.198l-3.175-9.133L361.581,257.098L361.581,257.098z"/>
|
||||
<polygon style="fill:#73AF00;" points="405.879,283.502 395.75,290.551 399.322,278.739 389.49,271.284 401.826,271.032 405.879,259.374 409.932,271.032 422.269,271.284 412.436,278.739 416.009,290.551 "/>
|
||||
<g>
|
||||
<path style="fill:#FFE15A;" d="M405.879,261.653l3.517,10.115l10.707,0.218l-8.534,6.47l3.102,10.251l-8.791-6.116l-8.791,6.116 l3.102-10.251l-8.534-6.47l10.708-0.218L405.879,261.653 M405.879,257.098l-1.412,4.064l-3.175,9.133l-9.667,0.198l-4.301,0.087 l3.428,2.6l7.704,5.842l-2.799,9.255l-1.246,4.118l3.532-2.457l7.936-5.523l7.936,5.523l3.532,2.457l-1.246-4.118l-2.799-9.255 l7.704-5.842l3.428-2.6l-4.301-0.087l-9.667-0.198l-3.175-9.133L405.879,257.098L405.879,257.098z"/>
|
||||
<path style="fill:#FFE15A;" d="M442.216,298.403c-9.161,23.326-31.85,39.908-58.388,39.908s-49.227-16.583-58.388-39.908 l-13.738,5.375c11.317,28.814,39.345,49.3,72.126,49.3s60.809-20.486,72.126-49.3L442.216,298.403z"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon style="fill:#F5F5F5;" points="391.211,212.8 380.137,212.8 376.445,201.725 387.52,201.725 "/>
|
||||
<path style="fill:#F5F5F5;" d="M409.668,212.8h-7.383l-2.461-7.383h3.37c2.397,0,4.524,1.534,5.282,3.807L409.668,212.8z"/>
|
||||
<path style="fill:#F5F5F5;" d="M369.062,212.8h-7.383l-0.842-2.525c-0.797-2.39,0.982-4.858,3.502-4.858h2.261L369.062,212.8z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#41479B;" d="M402.285,212.8h-11.074l-3.691-11.074h8.414c1.589,0,2.999,1.016,3.502,2.525L402.285,212.8z"/>
|
||||
<path style="fill:#41479B;" d="M380.137,212.8h-11.074l-2.494-7.48c-0.589-1.768,0.727-3.594,2.591-3.594h7.286L380.137,212.8z"/>
|
||||
</g>
|
||||
<path style="fill:#509664;" d="M410.937,187.19c-2.884,4.153-10.959,9.113-24.11,9.113c-10.836,0-17.805-6.543-20.132-9.123 c-0.567-0.628-0.863-1.431-0.863-2.278v-2.518c0-1.084,0.562-2.07,1.498-2.614c2.344-1.364,7.762-3.54,18.458-3.54 C399.055,176.231,410.937,187.19,410.937,187.19z"/>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 50 KiB |
Before Width: | Height: | Size: 44 KiB After Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 10 KiB |
@ -1,113 +0,0 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<path style="fill:#41479B;" d="M473.655,423.724H38.345C17.167,423.724,0,406.557,0,385.379V126.621 c0-21.177,17.167-38.345,38.345-38.345h435.31c21.177,0,38.345,17.167,38.345,38.345V385.38 C512,406.557,494.833,423.724,473.655,423.724z"/>
|
||||
<path style="fill:#F5F5F5;" d="M8.828,256h15.334l81.77-53.574V256h44.138v-53.574L231.839,256h15.334 c4.875,0,8.828-3.953,8.828-8.828v-7.002l-70.154-45.963H256v-44.138h-70.155L256,104.106v-7.002c0-4.875-3.95-8.826-8.825-8.828 h-15.337l-81.769,53.574V88.276h-44.138v53.574L26.844,90.034c-2.287,0.718-4.482,1.647-6.562,2.761 c-0.02,0.011-0.041,0.021-0.062,0.032c-0.471,0.253-0.936,0.52-1.395,0.792c-0.056,0.033-0.114,0.064-0.17,0.097 c-0.445,0.267-0.882,0.546-1.314,0.83c-0.066,0.044-0.135,0.085-0.201,0.129c-0.431,0.287-0.854,0.585-1.273,0.889 c-0.062,0.045-0.126,0.088-0.188,0.134c-0.423,0.31-0.836,0.631-1.246,0.958c-0.053,0.043-0.108,0.084-0.161,0.127 c-0.414,0.334-0.82,0.68-1.22,1.031c-0.043,0.039-0.088,0.075-0.131,0.115c-0.405,0.36-0.801,0.728-1.191,1.103 c-0.034,0.033-0.07,0.066-0.105,0.099c-0.395,0.385-0.781,0.778-1.16,1.178c-0.025,0.026-0.051,0.053-0.076,0.081 c-0.384,0.409-0.76,0.828-1.127,1.255c-0.017,0.02-0.033,0.039-0.05,0.058c-0.372,0.435-0.735,0.877-1.087,1.33 c-0.009,0.011-0.019,0.023-0.028,0.035c-0.356,0.458-0.704,0.924-1.039,1.398c-0.004,0.007-0.01,0.013-0.014,0.021 c-0.34,0.479-0.669,0.966-0.985,1.461c-0.001,0.001-0.002,0.003-0.003,0.004c-0.32,0.499-0.628,1.005-0.925,1.518l65.024,42.599H0 v44.138h70.154L0,240.17v7.008C0.003,252.051,3.954,256,8.828,256z"/>
|
||||
<g>
|
||||
<polygon style="fill:#FF4B55;" points="256,158.897 141.241,158.897 141.241,88.276 114.759,88.276 114.759,158.897 0,158.897 0,185.379 114.759,185.379 114.759,256 141.241,256 141.241,185.379 256,185.379 "/>
|
||||
<path style="fill:#FF4B55;" d="M8.228,102.903l72.661,47.166h16.214l-82.496-53.55C12.238,98.389,10.098,100.533,8.228,102.903z"/>
|
||||
<path style="fill:#FF4B55;" d="M166.283,150.069l88.374-57.366c-1.536-2.599-4.246-4.427-7.485-4.427h-1.909l-95.194,61.793 H166.283z"/>
|
||||
<path style="fill:#FF4B55;" d="M89.474,194.207L1.269,251.463C2.79,254.125,5.542,256,8.828,256h1.665l95.196-61.793H89.474z"/>
|
||||
<path style="fill:#FF4B55;" d="M255.86,247.866l-82.666-53.66H156.98l93.874,60.935 C253.666,253.837,255.595,251.102,255.86,247.866z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#73AF00;" d="M387.207,177.365c-0.199,0-0.402-0.063-0.575-0.193c-0.138-0.106-13.838-10.783-5.769-28.879 c0.214-0.48,0.777-0.692,1.259-0.482c0.48,0.216,0.695,0.777,0.482,1.259c-7.443,16.687,4.662,26.19,5.181,26.586 c0.418,0.318,0.499,0.915,0.18,1.333C387.777,177.235,387.495,177.365,387.207,177.365z"/>
|
||||
<path style="fill:#73AF00;" d="M379.316,161.734c-0.038,0-0.074-0.002-0.111-0.006c-0.523-0.062-0.896-0.534-0.836-1.056 c0.396-3.422,1.683-5.81,3.828-7.096c3.449-2.073,7.761-0.417,7.941-0.344c0.489,0.192,0.729,0.742,0.537,1.231 c-0.192,0.489-0.746,0.733-1.231,0.541c-0.038-0.014-3.638-1.382-6.276,0.209c-1.604,0.969-2.583,2.879-2.905,5.679 C380.205,161.377,379.791,161.734,379.316,161.734z"/>
|
||||
<path style="fill:#73AF00;" d="M381.902,149.46c-0.082-0.21-2.141-5.098-11.447-3.018c-10.539,2.361-10.661,16.264-10.661,16.403 c0,0.478,0.355,0.884,0.831,0.945c0.041,0.006,0.082,0.008,0.121,0.008c0.428,0,0.811-0.288,0.92-0.711 c3.928-14.962,18.557-12.449,19.178-12.34c0.352,0.063,0.69-0.067,0.907-0.331C381.973,150.147,382.031,149.781,381.902,149.46z"/>
|
||||
<path style="fill:#73AF00;" d="M379.71,157.21c0,0-6.348-4.046-8.967,1.111c-2.618,5.158-0.634,10.712,0.397,12.934 c0,0,3.784-4.183,7.38-4.761c4.444-0.714,5.555-6.269,2.46-9.046C377.282,154.131,379.71,157.21,379.71,157.21z"/>
|
||||
<path style="fill:#73AF00;" d="M386.645,147.731c-0.09,5.554,3.005,6.282,3.005,6.282 C391.651,148.914,386.645,147.731,386.645,147.731z"/>
|
||||
<path style="fill:#73AF00;" d="M385.676,159.396c0.042-5.27,3.616-5.863,3.616-5.863 C391.458,158.433,385.676,159.396,385.676,159.396z"/>
|
||||
</g>
|
||||
<path style="fill:#FF4B55;" d="M406.292,155.147c0,0-5.054-0.747-6.993-1.663c-1.613-0.761-3.719-2.599-6.444-2.24 c-2.083,0-3.772,1.688-3.772,3.772c0,2.083,1.431,4.579,8.917,4.025c3.629-0.269,6.721,1.389,6.721,1.389 C404.246,158.446,406.292,155.147,406.292,155.147z"/>
|
||||
<path style="fill:#FFE15A;" d="M401.047,156.801c0,0-7.752,0.537-9.454-0.717c-1.571-1.158-1.161-3.002,0.448-3.181 C394.461,152.633,401.047,156.801,401.047,156.801z"/>
|
||||
<path style="fill:#B49B91;" d="M416.131,165.581l-17.14,10.712l-1.964-1.905l9.402-9.106l2.201,0.893l2.143-2.857l-5.118-2.678 c0,0-13.569,12.794-25.113,13.866c-3.884,0.361-7.842,0.107-10.929-1.164l-6.925,9.972l14.52,12.378l21.305-0.833l17.615-23.924 l3.094,1.428l2.618-3.094L416.131,165.581z"/>
|
||||
<path style="fill:#9B8278;" d="M368.365,194.424c-4.768,0-8.648-3.88-8.648-8.646c0-4.768,3.88-8.648,8.648-8.648 c4.767,0,8.646,3.88,8.646,8.648C377.012,190.545,373.132,194.424,368.365,194.424z M368.365,179.987 c-3.193,0-5.791,2.598-5.791,5.791s2.598,5.79,5.791,5.79s5.79-2.596,5.79-5.79S371.559,179.987,368.365,179.987z"/>
|
||||
<g>
|
||||
<path style="fill:#73AF00;" d="M404.387,202.439c0,0,1.587-1.032,3.174-5.871l-3.253,0.476c0,0,0.634-2.698-0.079-4.682 l-3.65,2.857c0,0-1.666-3.491-2.38-3.967c0,0-2.539,3.571-3.967,4.046c0,0-1.428-5.158-2.857-6.189l-2.46,3.491l-3.65-2.857 c0,0,0,2.46-0.079,3.016c-0.079,0.555-4.761-4.919-4.761-4.919s-2.063,0.873-4.84,5.316l-3.491-3.571l-1.428,4.682l-4.84-1.27 l0.793,2.777l-4.205-0.318c0,0,0.714,4.126,2.777,5.555L404.387,202.439z"/>
|
||||
<path style="fill:#73AF00;" d="M362.333,220.094c0,0-13.092,16.663-37.849,14.759l26.899,3.69l13.806-13.092L362.333,220.094z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#FFE15A;" d="M319.604,232.353c2.618,1.905,18.806,6.547,30.47,0.952c0,0,0.238,2.738-1.071,4.285 c0,0,8.569-3.452,13.212-9.879s-9.641,13.806-9.641,13.806l-21.9,4.046l-8.927-7.38L319.604,232.353z"/>
|
||||
<path style="fill:#FFE15A;" d="M317.882,172.349c-2.908,0.244-6.053,1.995-7.662,4.122c-0.876-0.372-2.823-0.537-4.436,0.537 c-2.148,1.432-6.118,6.604-9.45,5.236c0,0-0.298,4.879,4.879,4.702c0,0-1.31,2.024-1.071,5.237 c0.238,3.213-2.083,5.356-2.083,5.356s10.474,1.487,10.891-6.665c0.051-0.996,0.102-1.874,0.15-2.657 c5.466,2.952,7.617-1.215,7.617-1.215s-3.285-3.103,0.059-7.52c3.343-4.418,12.533,5.996,12.533,5.996 C329.489,181.311,329.115,171.405,317.882,172.349z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#73AF00;" d="M358.365,199.82c0,0-3.015,2.063-12.378,0.159c0,0,2.063-4.602,1.111-7.3 c0,0-2.539,2.38-8.728,4.761s-13.806,9.998-16.029,14.918c0,0,13.92-32.088,2.738-35.35c-3.836-1.119-7.135,0.695-8.302,2.474 c0.564,0.666,1.106,1.615,1.161,2.882c0.119,2.738-2.618,21.186-6.665,33.921c0,0-1.191-4.404-3.094-6.547 c-1.903-2.143-3.332-5.594-3.332-5.594s-3.213,2.143-2.738,6.07c0,0-1.785-1.428-5.237-0.476s-4.761-1.31-4.761-1.31 s-2.857,7.617,5.594,11.545c0,0-2.261,1.071-3.332,1.905c-1.071,0.833-2.738,0.833-2.738,0.833s2.976,5.475,9.283,6.07 c6.308,0.595,9.207,2.393,11.188,5.633c6.428,10.514,18.727,18.488,38.802,6.189c0,0-28.565,8.887-29.835-9.363 c-1.111-15.965,16.345-19.202,18.091-15.711s-0.159,6.507-0.159,6.507s9.522-2.221,4.919-10.951 C343.924,211.087,353.287,212.516,358.365,199.82z"/>
|
||||
<path style="fill:#73AF00;" d="M450.052,232.353c-2.618,1.905-19.162,9.046-30.589-2.38 c-11.426-11.426-15.882-28.582-15.235-26.662h-11.426l3.809,34.279l42.372,7.975l8.927-7.38L450.052,232.353z"/>
|
||||
<path style="fill:#73AF00;" d="M451.774,172.349c2.908,0.244,6.053,1.995,7.662,4.122c0.876-0.372,2.823-0.537,4.436,0.537 c2.148,1.432,6.118,6.604,9.45,5.236c0,0,0.298,4.879-4.879,4.702c0,0,1.31,2.024,1.071,5.237 c-0.238,3.213,2.083,5.356,2.083,5.356s-10.474,1.487-10.891-6.665c-0.051-0.996-0.102-1.874-0.15-2.657 c-5.466,2.952-7.617-1.215-7.617-1.215s3.284-3.103-0.059-7.52c-3.343-4.418-12.533,5.996-12.533,5.996 C440.168,181.311,440.542,171.405,451.774,172.349z"/>
|
||||
</g>
|
||||
<path style="fill:#FFE15A;" d="M411.29,199.82c0,0,3.015,2.063,12.378,0.159c0,0-2.063-4.602-1.111-7.3c0,0,2.539,2.38,8.728,4.761 s13.806,9.998,16.029,14.918c0,0-13.92-32.088-2.738-35.35c3.836-1.119,7.135,0.695,8.302,2.474 c-0.564,0.666-1.106,1.615-1.161,2.882c-0.119,2.738,2.618,21.186,6.665,33.921c0,0,1.191-4.404,3.094-6.547 s3.332-5.594,3.332-5.594s3.213,2.143,2.738,6.07c0,0,1.785-1.428,5.237-0.476s4.761-1.31,4.761-1.31s2.857,7.617-5.594,11.545 c0,0,2.261,1.071,3.332,1.905c1.071,0.833,2.738,0.833,2.738,0.833s-2.976,5.475-9.283,6.07c-6.308,0.595-9.207,2.393-11.188,5.633 c-6.428,10.514-18.727,18.488-38.802,6.189c0,0,28.565,8.887,29.835-9.363c1.111-15.965-16.345-19.202-18.091-15.711 s0.159,6.507,0.159,6.507s-9.522-2.221-4.919-10.951C425.732,211.087,416.369,212.516,411.29,199.82z"/>
|
||||
<g>
|
||||
<path style="fill:#73AF00;" d="M403.197,226.482c4.682,6.824,11.188,13.013,30.073,18.884s23.933,6.744,33.829,14.749 c0,0,1.88,1.985,2.6,5.167c0.845,3.738-4.919,14.52-4.919,14.52s0.555-2.539-2.936-7.458s-24.122-13.806-34.913-16.504 c-10.792-2.698-29.439-15.215-24.28-24.598L403.197,226.482z"/>
|
||||
<path style="fill:#73AF00;" d="M467.082,260.086c0.008,0.01,0.011,0.02,0.019,0.03c-0.012-0.013-0.022-0.026-0.034-0.039 L467.082,260.086z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#FFE15A;" d="M466.605,283.295c0,0,0.476,3.452-2.38,6.428c-2.857,2.976-4.879,5.118-4.761,7.617 c0,0-4.285-3.094-3.571-9.998c0,0-5.594,4.642-14.045,0.119c0,0,0.833-8.45,11.784-9.522c0,0-4.285-3.332,1.31-8.45 c0,0,0.65,2.289,5.713,3.452c4.404,1.012,12.239-4.511,6.445-12.824C477.079,271.393,471.961,279.129,466.605,283.295z"/>
|
||||
<path style="fill:#FFE15A;" d="M399.111,220.213c0,0,2.413,3.945,8.689,7.776c7.538,4.602,8.213,6.744,8.213,6.744l-5.118-0.119 c0,0,6.547,3.571,8.332,8.094c0,0-2.738,0.476-5.832-0.358c0,0,2.499,2.261,1.31,9.522h-12.736L399.111,220.213z"/>
|
||||
</g>
|
||||
<path style="fill:#73AF00;" d="M373.759,252.825v-30.47c0,0-10.342,17.693-19.275,30.47H373.759z"/>
|
||||
<path style="fill:#FFE15A;" d="M364.863,221.72c-2.539,4.602-10.474,19.758-29.359,25.63c-18.886,5.871-22.337,4.761-32.234,12.765 c0,0-1.88,1.985-2.6,5.167c-0.845,3.738,4.919,14.52,4.919,14.52s-0.555-2.539,2.936-7.458s24.006-14.324,34.913-16.504 c15.085-3.016,28.733-19.202,26.511-29.676C367.729,215.69,364.863,221.72,364.863,221.72z"/>
|
||||
<g>
|
||||
<path style="fill:#73AF00;" d="M303.288,260.086c-0.008,0.01-0.011,0.02-0.019,0.03c0.012-0.013,0.022-0.026,0.034-0.039 L303.288,260.086z"/>
|
||||
<path style="fill:#73AF00;" d="M303.765,283.295c0,0-0.476,3.452,2.38,6.428c2.857,2.976,4.879,5.118,4.761,7.617 c0,0,4.285-3.094,3.571-9.998c0,0,5.594,4.642,14.045,0.119c0,0-0.833-8.45-11.784-9.522c0,0,4.285-3.332-1.309-8.45 c0,0-0.65,2.289-5.713,3.452c-4.404,1.012-12.239-4.511-6.445-12.824C293.291,271.393,298.409,279.129,303.765,283.295z"/>
|
||||
</g>
|
||||
<path style="fill:#FFE15A;" d="M330.118,334.078c0,0,2.698,12.14,2.857,24.678c0,0,11.823,0.397,17.536-8.49 c0,0-11.426-5.951-17.536-17.457L330.118,334.078z"/>
|
||||
<path style="fill:#73AF00;" d="M327.578,307.258c-0.476-5.713,2.063-20.155,13.647-30.628l0.284-12.826c0,0-3.451,0.359-6.511,3.038 l-6.547,10.145l-6.07,22.972L327.578,307.258z"/>
|
||||
<path style="fill:#FFE15A;" d="M327.895,311.384c0,0,0,12.22,5.078,21.425l-2.857,1.269c0,0-10.236-8.054-12.378-24.598 c0,0-9.165,6.07-12.537-6.348c0,0,9.839,3.968,13.013-5.078c2.863-8.162,5.758-23.02,16.783-31.212 c-5.241,8.055-13.133,28.673-7.023,35.974c1.618,1.933,6.269,3.571,11.359,1.397C339.001,308.273,337.065,314.477,327.895,311.384z"/>
|
||||
<path style="fill:#FFCE5A;" d="M329.378,336.245l-1.672-3.072c-0.292-0.537-0.094-1.21,0.444-1.503l3.051-1.658 c0.537-0.292,1.209-0.094,1.502,0.444l1.672,3.072c0.292,0.537,0.094,1.21-0.444,1.503l-3.051,1.658 C330.343,336.981,329.671,336.782,329.378,336.245z"/>
|
||||
<g>
|
||||
<path style="fill:#FFE15A;" d="M432.636,334.078c0,0-2.698,12.14-2.857,24.678c0,0-11.823,0.397-17.536-8.49 c0,0,11.426-5.951,17.536-17.457L432.636,334.078z"/>
|
||||
<path style="fill:#FFE15A;" d="M435.175,307.258c0.476-5.713-2.063-20.155-13.647-30.628l-0.284-12.826 c0,0,3.451,0.359,6.511,3.038l6.547,10.145l6.07,22.972L435.175,307.258z"/>
|
||||
</g>
|
||||
<path style="fill:#73AF00;" d="M423.42,304.212c5.09,2.174,9.741,0.536,11.359-1.397c6.11-7.3-1.782-27.918-7.023-35.974 c11.026,8.192,13.919,23.05,16.783,31.212c3.174,9.046,13.013,5.078,13.013,5.078c-3.372,12.418-12.537,6.348-12.537,6.348 c-2.143,16.544-12.378,24.598-12.378,24.598l-2.857-1.269c5.078-9.205,5.078-21.425,5.078-21.425 C425.688,314.477,423.752,308.273,423.42,304.212z"/>
|
||||
<path style="fill:#FFCE5A;" d="M433.375,336.245l1.672-3.072c0.292-0.537,0.094-1.21-0.444-1.503l-3.051-1.658 c-0.537-0.292-1.209-0.094-1.502,0.444l-1.672,3.072c-0.292,0.537-0.094,1.21,0.444,1.503l3.051,1.658 C432.41,336.981,433.082,336.782,433.375,336.245z"/>
|
||||
<path style="fill:#4173CD;" d="M343.289,249.016c-2.103,0-3.809,1.705-3.809,3.809v41.896c0,11.426,3.809,53.322,41.896,68.557 c38.088-15.235,41.896-57.131,41.896-68.557v-41.896c0-2.103-1.705-3.809-3.809-3.809H343.289z"/>
|
||||
<path style="fill:#FFE15A;" d="M379.068,249.016l-36.121,69.231c0.904,3.202,2.031,6.516,3.446,9.864l34.984-67.053l34.984,67.053 c1.415-3.349,2.542-6.663,3.446-9.864l-36.121-69.231H379.068L379.068,249.016z"/>
|
||||
<path style="fill:#73AF00;" d="M416.36,328.111l-34.984-67.053l-34.984,67.053l0,0c5.762,13.639,16.188,27.649,34.984,35.167 C400.172,355.761,410.599,341.75,416.36,328.111L416.36,328.111z"/>
|
||||
<path style="fill:#FFE15A;" d="M395.54,332.451l2.304,1.105c-0.966,1.428-2.977,3.738-6.823,5.831 c-2.905,1.581-5.713,3.452-7.741,4.886V312.84l9.522-0.979v-3.809l-9.522-0.979v-4.734c0-1.052-0.853-1.905-1.905-1.905 c-0.897,0-1.614,0.633-1.816,1.469c-0.633-0.454-1.367-0.777-2.202-0.777c-2.131,0-3.866,1.735-3.866,3.866 c0,1.003,0.407,1.9,1.037,2.589l-4.578,0.471v3.809l9.522,0.979v31.433c-2.027-1.433-4.835-3.305-7.741-4.886 c-3.847-2.092-5.857-4.403-6.823-5.831l2.304-1.105l-8.689-11.069v15.235l2.929-1.405c1.159,1.867,3.608,4.881,8.46,7.519 c4.059,2.209,7.998,5.079,9.559,6.254l1.905,1.476l1.905-1.476c1.561-1.175,5.501-4.045,9.559-6.254 c4.852-2.638,7.302-5.652,8.46-7.519l2.929,1.405v-15.235L395.54,332.451z M377.357,306.955c-1.082,0-1.962-0.879-1.962-1.962 s0.879-1.962,1.962-1.962s1.962,0.879,1.962,1.962S378.44,306.955,377.357,306.955z"/>
|
||||
<path style="fill:#F5F5F5;" d="M384.319,298.53h-5.885c-1.53,0-2.771-1.24-2.771-2.771v-9.694c0-1.53,1.24-2.771,2.771-2.771h5.885 c1.53,0,2.771,1.24,2.771,2.771v9.694C387.09,297.29,385.849,298.53,384.319,298.53z"/>
|
||||
<path style="fill:#B49B91;" d="M408.038,249.016c-7.617-11.426-7.617-34.279-7.617-34.279s0-15.235-19.043-15.235 c-9.647,0-14.398,3.91-16.746,7.767c-9.14,3.672-13.724,11.276-13.724,11.276c3.896,1.949,7.339,2.877,10.463,3.115 c6.209,7.389,8.275,14.524,8.824,19.656c-3.576,3.652-5.559,12.46-0.243,19.125c0,0,11.267-2.618,20.779-11.426h17.306v0.001 H408.038z"/>
|
||||
<g>
|
||||
<path style="fill:#9B8278;" d="M390.729,249.016h14.215C404.228,241.994,397.325,243.125,390.729,249.016z"/>
|
||||
<path style="fill:#9B8278;" d="M404.589,241.826c-4.163-11.818-4.169-27.089-4.169-27.089s-0.001-0.248-0.04-0.675 c-4.959-0.673-10.035-0.308-19.956,3.532c-10.563,4.088-15.734,4.205-19.055,4.067c6.209,7.389,8.275,14.524,8.824,19.656 l0.153,8.096c0,0,5.951,0.873,19.043-6.666C395.921,238.988,401.457,238.666,404.589,241.826z"/>
|
||||
<path style="fill:#9B8278;" d="M384.312,213.071c7.725-1.931,12.654-1.732,15.83-0.605c-0.851-4.243-4.349-12.964-18.765-12.964 c-9.647,0-14.398,3.91-16.746,7.767l-5.789,8.103C358.841,215.373,366.082,217.629,384.312,213.071z"/>
|
||||
</g>
|
||||
<path style="fill:#FFE15A;" d="M368.79,197.837c0.75,0.748,2.988,6.144,2.527,6.946c-0.297,0.515-6.257,1.997-7.223,1.241 c-0.862-0.674-1.87-6.486-1.293-7.157C363.324,198.261,368.163,197.213,368.79,197.837z"/>
|
||||
<path style="fill:#73AF00;" d="M376.454,197.549c0.692,0.793,2.26,6.068,1.639,6.741c-0.399,0.433-7.042,0.957-7.965,0.127 c-0.822-0.74-1.004-6.227-0.278-6.761C370.506,197.171,375.876,196.887,376.454,197.549z"/>
|
||||
<path style="fill:#FFE15A;" d="M383.706,197.348c0.717,0.747,2.353,5.707,1.711,6.337c-0.413,0.405-7.284,0.882-8.241,0.099 c-0.853-0.698-1.054-5.852-0.305-6.353C377.553,196.979,383.108,196.725,383.706,197.348z"/>
|
||||
<g>
|
||||
<path style="fill:#73AF00;" d="M391.078,197.694c0.634,0.815,1.831,6.019,1.165,6.623c-0.428,0.387-7.09,0.405-7.951-0.465 c-0.768-0.776-0.568-6.08,0.193-6.542C385.172,196.892,390.548,197.013,391.078,197.694z"/>
|
||||
<path style="fill:#73AF00;" d="M406.29,200.847c0.491,0.909,0.444,5.743-0.313,6.228c-0.487,0.311-6.485-0.758-7.191-1.758 c-0.63-0.892,0.444-6.09,1.271-6.421C400.803,198.598,405.88,200.088,406.29,200.847z"/>
|
||||
</g>
|
||||
<path style="fill:#FFE15A;" d="M399.299,198.786c0.601,0.828,1.059,5.681,0.334,6.194c-0.466,0.33-7.33-0.234-8.162-1.131 c-0.743-0.801-0.2-5.803,0.614-6.175C392.822,197.336,398.797,198.095,399.299,198.786z"/>
|
||||
<circle style="fill:#9B8278;" cx="368.36" cy="185.78" r="2.59"/>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 11 KiB |
@ -1,96 +0,0 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<path style="fill:#F5F5F5;" d="M473.655,88.275H256v335.448h217.655c21.177,0,38.345-17.167,38.345-38.345V126.62 C512,105.442,494.833,88.275,473.655,88.275z"/>
|
||||
<path style="fill:#FFE15A;" d="M38.345,88.275C17.167,88.275,0,105.442,0,126.62V385.38c0,21.177,17.167,38.345,38.345,38.345H256 V88.275H38.345z"/>
|
||||
<g>
|
||||
<path style="fill:#EBEBEB;" d="M408.267,174.751l-0.587,1.173c1.895,0.97,2.978,2.074,2.978,3.25l-0.295-5.831 C409.969,174.126,409.196,174.688,408.267,174.751z"/>
|
||||
<path style="fill:#EBEBEB;" d="M362.438,175.924l-0.587-1.173c-0.928-0.064-1.7-0.625-2.098-1.408l-0.294,5.831 C359.459,178.001,360.543,176.895,362.438,175.924z"/>
|
||||
<path style="fill:#EBEBEB;" d="M362.019,169.665c1.414,0,2.56,1.146,2.56,2.56c0,0.512-0.189,0.962-0.448,1.362l0.674,1.347 c1.932-0.679,4.312-1.256,7.027-1.703l-0.288-1.152c-1.058-0.314-1.845-1.256-1.845-2.415c0-1.414,1.146-2.56,2.56-2.56 s2.56,1.146,2.56,2.56c0,0.722-0.303,1.367-0.783,1.833l0.342,1.367c1.427-0.179,2.922-0.32,4.474-0.426 c-0.116-0.481-0.193-0.978-0.193-1.494c0-3.534,2.866-6.4,6.4-6.4s6.4,2.866,6.4,6.4c0,0.518-0.077,1.013-0.193,1.494 c1.554,0.105,3.049,0.247,4.474,0.426l0.342-1.367c-0.48-0.466-0.783-1.111-0.783-1.833c0-1.414,1.146-2.56,2.56-2.56 s2.56,1.146,2.56,2.56c0,1.16-0.787,2.101-1.845,2.415l-0.288,1.152c2.714,0.446,5.095,1.023,7.027,1.703l0.674-1.347 c-0.259-0.401-0.448-0.85-0.448-1.362c0-1.414,1.146-2.56,2.56-2.56c0.921,0,1.693,0.513,2.143,1.244l-0.196-3.904 c-2.528-2.87-12.746-5.02-24.987-5.02s-22.458,2.148-24.986,5.02l-0.196,3.904C360.327,170.178,361.098,169.665,362.019,169.665z"/>
|
||||
</g>
|
||||
<path style="fill:#E6B432;" d="M389.056,139.55c0.693-0.874,1.123-1.964,1.123-3.165c0-2.383-1.635-4.367-3.84-4.939v-3.134 c0.751-0.446,1.28-1.23,1.28-2.167c0-1.414-1.146-2.56-2.56-2.56s-2.56,1.146-2.56,2.56c0,0.937,0.529,1.721,1.28,2.167v3.134 c-2.205,0.57-3.84,2.556-3.84,4.939c0,1.202,0.431,2.292,1.123,3.165c1.302-0.356,2.628-0.605,3.997-0.605 S387.753,139.193,389.056,139.55z"/>
|
||||
<path style="fill:#EBEBEB;" d="M374.332,152.51l-0.227-0.909c-1.058-0.314-1.845-1.256-1.845-2.415c0-1.414,1.146-2.56,2.56-2.56 s2.56,1.146,2.56,2.56c0,0.722-0.303,1.367-0.783,1.833l0.289,1.154c2.505-0.274,5.267-0.427,8.174-0.427 c-2.121,0-3.84-1.719-3.84-3.84s1.719-3.84,3.84-3.84s3.84,1.719,3.84,3.84s-1.719,3.84-3.84,3.84c2.908,0,5.67,0.153,8.174,0.427 l0.289-1.154c-0.48-0.466-0.783-1.111-0.783-1.833c0-1.414,1.146-2.56,2.56-2.56s2.56,1.146,2.56,2.56 c0,1.16-0.787,2.101-1.845,2.415l-0.227,0.909c1.301,0.201,2.511,0.434,3.597,0.7l1.887-3.774 c-3.265-5.059-7.484-8.589-12.216-9.885c-1.302-0.356-2.628-0.605-3.997-0.605c-1.368,0-2.694,0.248-3.997,0.605 c-4.733,1.295-8.951,4.825-12.216,9.885l1.887,3.774C371.82,152.945,373.031,152.712,374.332,152.51z"/>
|
||||
<g>
|
||||
<path style="fill:#E6B432;" d="M382.499,362.135v-5.59c0-0.599,0.084-1.175,0.214-1.734c-0.068-0.044-0.143-0.075-0.214-0.116 c-0.756-0.439-1.623-0.71-2.56-0.71s-1.804,0.27-2.56,0.71c-1.524,0.887-2.56,2.519-2.56,4.41c0,1.377,0.551,2.622,1.434,3.541 c1.098-0.606,2.343-0.981,3.685-0.981C380.842,361.665,381.695,361.849,382.499,362.135z"/>
|
||||
<path style="fill:#E6B432;" d="M387.619,341.896c-1.524,0.887-2.56,2.519-2.56,4.41c0,1.377,0.551,2.622,1.434,3.541 c1.098-0.606,2.343-0.981,3.686-0.981c1.343,0,2.586,0.375,3.686,0.981c0.884-0.92,1.434-2.164,1.434-3.541 c0-1.89-1.036-3.523-2.56-4.41c-0.756-0.439-1.623-0.71-2.56-0.71C389.242,341.185,388.375,341.456,387.619,341.896z"/>
|
||||
</g>
|
||||
<path style="fill:#FF4B57;" d="M386.494,349.846c-1.88,1.037-3.283,2.817-3.78,4.966c-0.129,0.559-0.214,1.135-0.214,1.734v5.59 c-0.804-0.286-1.657-0.47-2.56-0.47c-1.343,0-2.588,0.375-3.686,0.981c-2.37,1.308-3.994,3.8-3.994,6.699v10.24h15.36v-10.24 c0-0.903-0.184-1.756-0.47-2.56h10.71v-10.24c0-2.898-1.624-5.391-3.994-6.699c-1.098-0.606-2.343-0.981-3.686-0.981 S387.592,349.24,386.494,349.846z"/>
|
||||
<g>
|
||||
<path style="fill:#E6B432;" d="M387.619,246.896l4.374,4.375l1.496-1.496c0.355-0.355,0.797-0.538,1.254-0.641l21.651-21.656 l13.868,13.868l9.05-9.05l-3.62-3.62l-1.811,1.81l-3.62-3.62l1.81-1.81l-1.81-1.811l3.62-3.62l1.811,1.81l1.81-1.81l3.62,3.62 l-1.81,1.811l3.62,3.62l9.05-9.05l-13.871-13.871l9.492-9.495c-0.458-0.188-0.888-0.465-1.26-0.836l-5.12-5.12 c-0.382-0.382-0.661-0.825-0.849-1.297l-53.333,53.347c0.341,0.435,0.577,0.958,0.577,1.554L387.619,246.896L387.619,246.896z"/>
|
||||
<path style="fill:#E6B432;" d="M381.747,262.133l-7.241-7.241l-22.507,22.514c-1.998,2.001-1.998,5.242,0.001,7.24 c1,1,2.31,1.5,3.62,1.5s2.622-0.5,3.622-1.5l17.592-17.597L381.747,262.133z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#D2D2D2;" d="M311.864,288.704c0.142-0.402,0.235-0.828,0.235-1.279c0-2.121-1.719-3.84-3.84-3.84 s-3.84,1.719-3.84,3.84c0,2.121,1.719,3.84,3.84,3.84c0.451,0,0.877-0.092,1.279-0.235 C310.264,290.206,311.04,289.43,311.864,288.704z"/>
|
||||
<path style="fill:#D2D2D2;" d="M309.538,324.781c-0.402-0.142-0.828-0.235-1.279-0.235c-2.121,0-3.84,1.719-3.84,3.84 c0,2.121,1.719,3.84,3.84,3.84s3.84-1.719,3.84-3.84c0-0.45-0.092-0.877-0.235-1.279 C311.04,326.381,310.264,325.604,309.538,324.781z"/>
|
||||
<path style="fill:#D2D2D2;" d="M347.94,291.031c0.402,0.142,0.828,0.235,1.279,0.235c2.121,0,3.84-1.719,3.84-3.84 c0-2.121-1.719-3.84-3.84-3.84s-3.84,1.719-3.84,3.84c0,0.451,0.092,0.877,0.235,1.279 C346.439,289.43,347.214,290.206,347.94,291.031z"/>
|
||||
<path style="fill:#D2D2D2;" d="M345.379,328.385c0,2.121,1.719,3.84,3.84,3.84c1.183,0,2.227-0.546,2.932-1.387 c-2.407-0.871-4.655-1.841-6.727-2.903C345.407,328.086,345.379,328.232,345.379,328.385z"/>
|
||||
</g>
|
||||
<path style="fill:#E6B432;" d="M340.033,324.678c-0.539-0.391-0.862-0.957-0.987-1.561c-0.435,0.094-0.884,0.149-1.347,0.149 c-3.04,0-5.581-2.135-6.23-4.983c-0.696,0.705-1.662,1.143-2.73,1.143c-1.069,0-2.035-0.438-2.73-1.143 c-0.648,2.848-3.189,4.983-6.23,4.983c-3.529,0-6.4-2.87-6.4-6.4c0-3.041,2.136-5.581,4.983-6.23 c-0.705-0.696-1.143-1.662-1.143-2.73c0-1.069,0.438-2.035,1.143-2.73c-2.847-0.648-4.983-3.189-4.983-6.23 c0-3.53,2.871-6.4,6.4-6.4c3.04,0,5.581,2.135,6.23,4.983c0.696-0.705,1.662-1.143,2.73-1.143c1.069,0,2.035,0.438,2.73,1.143 c0.648-2.848,3.189-4.983,6.23-4.983c3.529,0,6.4,2.87,6.4,6.4c0,3.041-2.136,5.581-4.983,6.23c0.705,0.696,1.143,1.662,1.143,2.73 c0,1.069-0.438,2.035-1.143,2.73c2.847,0.648,4.983,3.189,4.983,6.23c0,1.35-0.425,2.599-1.141,3.633 c0.024,0.017,0.053,0.018,0.077,0.035c1.656,1.199,3.565,2.314,5.685,3.333c0.638-0.797,1.218-1.639,1.758-2.509 c1.687-2.717,2.879-5.763,3.451-9.027c0.253-1.44,0.409-2.912,0.409-4.424c0-6.466-2.43-12.364-6.399-16.875 c-0.726-0.824-1.502-1.601-2.326-2.326c-4.511-3.969-10.408-6.399-16.875-6.399s-12.364,2.43-16.875,6.399 c-0.824,0.726-1.601,1.502-2.326,2.326c-3.969,4.511-6.399,10.408-6.399,16.875c0,6.467,2.43,12.364,6.399,16.875 c0.726,0.824,1.502,1.601,2.326,2.326c4.511,3.969,10.408,6.399,16.875,6.399c6.152,0,11.8-2.184,16.22-5.813 C343.177,326.753,341.516,325.753,340.033,324.678z M348.53,302.727c0.435,1.657,0.69,3.387,0.69,5.178s-0.255,3.521-0.69,5.178 c-0.723-2.062-2.005-3.839-3.679-5.178C346.525,306.566,347.807,304.789,348.53,302.727z M333.918,288.115 c-2.062,0.723-3.839,2.005-5.178,3.679c-1.34-1.674-3.116-2.956-5.178-3.679c1.657-0.435,3.386-0.69,5.178-0.69 S332.26,287.68,333.918,288.115z M308.949,302.727c0.723,2.062,2.005,3.84,3.679,5.178c-1.674,1.34-2.956,3.116-3.679,5.178 c-0.435-1.657-0.69-3.386-0.69-5.178C308.259,306.113,308.514,304.385,308.949,302.727z M323.561,327.696 c2.062-0.723,3.839-2.005,5.178-3.679c1.34,1.674,3.116,2.957,5.178,3.679c-1.657,0.435-3.386,0.69-5.178,0.69 S325.218,328.13,323.561,327.696z"/>
|
||||
<g>
|
||||
<path style="fill:#F0C814;" d="M324.899,307.906c0-2.121-1.719-3.84-3.84-3.84c-1.052,0-2.004,0.425-2.697,1.11 c-0.705,0.696-1.143,1.662-1.143,2.73c0,1.069,0.438,2.035,1.143,2.73c0.694,0.685,1.645,1.11,2.697,1.11 C323.18,311.745,324.899,310.026,324.899,307.906z"/>
|
||||
<path style="fill:#F0C814;" d="M332.579,307.906c0,2.121,1.719,3.84,3.84,3.84c1.052,0,2.004-0.425,2.697-1.11 c0.705-0.696,1.143-1.662,1.143-2.73c0-1.069-0.438-2.035-1.143-2.73c-0.694-0.685-1.645-1.11-2.697-1.11 C334.298,304.065,332.579,305.784,332.579,307.906z"/>
|
||||
<path style="fill:#F0C814;" d="M328.739,304.065c2.121,0,3.84-1.719,3.84-3.84c0-1.052-0.425-2.004-1.11-2.697 c-0.696-0.705-1.662-1.143-2.73-1.143c-1.069,0-2.035,0.438-2.73,1.143c-0.685,0.694-1.11,1.645-1.11,2.697 C324.899,302.346,326.618,304.065,328.739,304.065z"/>
|
||||
<path style="fill:#F0C814;" d="M328.739,311.745c-2.121,0-3.84,1.719-3.84,3.84c0,1.052,0.425,2.004,1.11,2.697 c0.696,0.705,1.662,1.143,2.73,1.143c1.069,0,2.035-0.438,2.73-1.143c0.685-0.693,1.11-1.645,1.11-2.697 C332.579,313.464,330.86,311.745,328.739,311.745z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#D2D2D2;" d="M446.345,195.421c0.372,0.372,0.802,0.65,1.26,0.836c0.466,0.191,0.96,0.288,1.455,0.288 c0.982,0,1.965-0.375,2.714-1.126c1.331-1.331,1.411-3.361,0.381-4.857l1.416-5.661c0.201,0.051,0.393,0.122,0.609,0.122 c1.414,0,2.56-1.146,2.56-2.56s-1.146-2.56-2.56-2.56s-2.56,1.146-2.56,2.56c0,0.216,0.073,0.408,0.122,0.609l-5.661,1.416 c-1.496-1.031-3.527-0.95-4.857,0.381c-1.118,1.118-1.398,2.752-0.849,4.134c0.188,0.471,0.467,0.915,0.849,1.297L446.345,195.421z "/>
|
||||
<path style="fill:#D2D2D2;" d="M382.499,255.645v-1.5v-10.24c0-0.596,0.236-1.119,0.577-1.554l-53.333-53.347 c-0.188,0.471-0.467,0.915-0.849,1.297l-5.12,5.12c-0.372,0.372-0.802,0.65-1.26,0.836l9.492,9.495l-13.871,13.871l9.05,9.05 l3.62-3.62l-1.81-1.811l3.62-3.62l1.81,1.81l1.811-1.81l3.62,3.62l-1.81,1.811l1.81,1.81l-3.62,3.62l-1.811-1.81l-3.62,3.62 l9.05,9.05l13.868-13.868l21.651,21.656c0.457,0.103,0.898,0.286,1.254,0.641L382.499,255.645z"/>
|
||||
<path style="fill:#D2D2D2;" d="M388.372,262.133l4.914,4.915l17.592,17.597c1,1,2.309,1.5,3.622,1.5c1.31,0,2.62-0.5,3.62-1.5 c2.001-1.997,2.001-5.24,0.001-7.24l-22.507-22.514L388.372,262.133z"/>
|
||||
<polygon style="fill:#D2D2D2;" points="387.619,254.145 387.619,255.645 391.993,251.271 387.619,246.896 "/>
|
||||
<path style="fill:#D2D2D2;" d="M460.58,291.031c0.402,0.142,0.828,0.235,1.279,0.235c2.121,0,3.84-1.719,3.84-3.84 c0-2.121-1.719-3.84-3.84-3.84s-3.84,1.719-3.84,3.84c0,0.451,0.092,0.877,0.235,1.279 C459.079,289.43,459.854,290.206,460.58,291.031z"/>
|
||||
<path style="fill:#D2D2D2;" d="M461.859,324.545c-0.451,0-0.877,0.092-1.279,0.235c-0.726,0.824-1.502,1.601-2.326,2.326 c-0.142,0.402-0.235,0.828-0.235,1.279c0,2.121,1.719,3.84,3.84,3.84s3.84-1.719,3.84-3.84 C465.699,326.265,463.98,324.545,461.859,324.545z"/>
|
||||
<path style="fill:#D2D2D2;" d="M424.504,288.704c0.142-0.402,0.235-0.828,0.235-1.279c0-2.121-1.719-3.84-3.84-3.84 s-3.84,1.719-3.84,3.84c0,2.121,1.719,3.84,3.84,3.84c0.451,0,0.877-0.092,1.279-0.235 C422.904,290.206,423.68,289.43,424.504,288.704z"/>
|
||||
<path style="fill:#D2D2D2;" d="M420.899,332.226c2.121,0,3.84-1.719,3.84-3.84c0-0.154-0.028-0.3-0.045-0.45 c-2.07,1.063-4.32,2.033-6.726,2.904C418.673,331.68,419.716,332.226,420.899,332.226z"/>
|
||||
</g>
|
||||
<path style="fill:#E6B432;" d="M460.58,324.781c3.969-4.511,6.399-10.408,6.399-16.875c0-6.467-2.43-12.364-6.399-16.875 c-0.726-0.824-1.502-1.601-2.326-2.326c-4.511-3.969-10.408-6.399-16.875-6.399s-12.364,2.43-16.875,6.399 c-0.824,0.726-1.601,1.502-2.326,2.326c-3.969,4.511-6.399,10.408-6.399,16.875c0,1.519,0.158,3,0.413,4.448 c0.574,3.256,1.764,6.294,3.447,9.004c0.541,0.871,1.12,1.711,1.758,2.509c2.118-1.018,4.025-2.132,5.681-3.33 c0.025-0.019,0.056-0.02,0.082-0.038c-0.716-1.033-1.141-2.283-1.141-3.633c0-3.041,2.136-5.581,4.983-6.23 c-0.705-0.696-1.143-1.662-1.143-2.73c0-1.069,0.438-2.035,1.143-2.73c-2.847-0.648-4.983-3.189-4.983-6.23 c0-3.53,2.871-6.4,6.4-6.4c3.04,0,5.581,2.135,6.23,4.983c0.696-0.705,1.662-1.143,2.73-1.143c1.068,0,2.035,0.438,2.73,1.143 c0.649-2.848,3.189-4.983,6.23-4.983c3.529,0,6.4,2.87,6.4,6.4c0,3.041-2.136,5.581-4.983,6.23c0.705,0.696,1.143,1.662,1.143,2.73 c0,1.069-0.438,2.035-1.143,2.73c2.847,0.648,4.983,3.189,4.983,6.23c0,3.53-2.871,6.4-6.4,6.4c-3.04,0-5.581-2.135-6.23-4.983 c-0.696,0.705-1.662,1.143-2.73,1.143c-1.068,0-2.035-0.438-2.73-1.143c-0.649,2.848-3.189,4.983-6.23,4.983 c-0.463,0-0.914-0.055-1.351-0.149c-0.124,0.606-0.448,1.174-0.989,1.565c-1.482,1.074-3.14,2.073-4.921,3.012 c4.419,3.629,10.069,5.813,16.22,5.813c6.467,0,12.364-2.43,16.875-6.399C459.079,326.381,459.854,325.604,460.58,324.781z M421.589,313.084c-0.435-1.657-0.69-3.386-0.69-5.178c0-1.792,0.255-3.521,0.69-5.178c0.723,2.062,2.005,3.84,3.679,5.178 C423.594,309.245,422.312,311.021,421.589,313.084z M441.379,291.794c-1.34-1.674-3.116-2.956-5.178-3.679 c1.657-0.435,3.386-0.69,5.178-0.69s3.521,0.255,5.178,0.69C444.495,288.839,442.719,290.12,441.379,291.794z M461.17,302.727 c0.435,1.657,0.69,3.387,0.69,5.178s-0.255,3.521-0.69,5.178c-0.723-2.062-2.005-3.839-3.679-5.178 C459.165,306.566,460.447,304.789,461.17,302.727z M436.201,327.696c2.062-0.723,3.839-2.005,5.178-3.679 c1.34,1.674,3.116,2.957,5.178,3.679c-1.657,0.435-3.386,0.69-5.178,0.69S437.858,328.13,436.201,327.696z"/>
|
||||
<g>
|
||||
<path style="fill:#F0C814;" d="M445.219,307.906c0,2.121,1.719,3.84,3.84,3.84c1.052,0,2.004-0.425,2.697-1.11 c0.705-0.696,1.143-1.662,1.143-2.73c0-1.069-0.438-2.035-1.143-2.73c-0.694-0.685-1.645-1.11-2.697-1.11 C446.938,304.065,445.219,305.784,445.219,307.906z"/>
|
||||
<path style="fill:#F0C814;" d="M437.539,307.906c0-2.121-1.719-3.84-3.84-3.84c-1.052,0-2.004,0.425-2.697,1.11 c-0.705,0.696-1.143,1.662-1.143,2.73c0,1.069,0.438,2.035,1.143,2.73c0.694,0.685,1.645,1.11,2.697,1.11 C435.82,311.745,437.539,310.026,437.539,307.906z"/>
|
||||
<path style="fill:#F0C814;" d="M441.379,304.065c2.121,0,3.84-1.719,3.84-3.84c0-1.052-0.425-2.004-1.11-2.697 c-0.696-0.705-1.662-1.143-2.73-1.143s-2.035,0.438-2.73,1.143c-0.685,0.694-1.11,1.645-1.11,2.697 C437.539,302.346,439.258,304.065,441.379,304.065z"/>
|
||||
<path style="fill:#F0C814;" d="M441.379,311.745c-2.121,0-3.84,1.719-3.84,3.84c0,1.052,0.425,2.004,1.11,2.697 c0.696,0.705,1.662,1.143,2.73,1.143s2.035-0.438,2.73-1.143c0.685-0.693,1.11-1.645,1.11-2.697 C445.219,313.464,443.5,311.745,441.379,311.745z"/>
|
||||
</g>
|
||||
<path style="fill:#F7B518;" d="M328.894,190.3c0.382-0.382,0.661-0.825,0.849-1.297c0.548-1.382,0.269-3.015-0.849-4.134 c-1.331-1.331-3.361-1.411-4.857-0.381l-5.661-1.416c0.051-0.201,0.122-0.393,0.122-0.609c0-1.414-1.146-2.56-2.56-2.56 s-2.56,1.146-2.56,2.56s1.146,2.56,2.56,2.56c0.216,0,0.408-0.073,0.609-0.122l1.416,5.661c-1.031,1.496-0.95,3.527,0.381,4.857 c0.75,0.75,1.732,1.126,2.714,1.126c0.495,0,0.99-0.098,1.455-0.288c0.458-0.188,0.888-0.465,1.26-0.836L328.894,190.3z"/>
|
||||
<path style="fill:#FF4B55;" d="M430.08,324.68c0.541-0.391,0.864-0.959,0.989-1.565c0.139-0.679,0.022-1.406-0.416-2.01 c-0.811-1.117-2.353-1.375-3.492-0.608c-0.026,0.018-0.056,0.019-0.082,0.038c-1.655,1.198-3.563,2.312-5.681,3.33 c-7.506,3.611-17.667,6.019-28.658,6.798v-35.958c11.172,15.257,22.054,23.457,26.9,26.652c-1.683-2.71-2.873-5.748-3.447-9.004 c-6.196-5.126-14.957-13.736-23.453-26.718V268.24c0.181-0.399,0.366-0.788,0.546-1.192l-4.914-4.915l7.241-7.241l1.496-1.496 c1-1,1-2.62,0-3.62c-0.644-0.644-1.539-0.828-2.367-0.641c-0.457,0.103-0.897,0.286-1.254,0.641l-1.496,1.496l-4.374,4.374v-1.5 v-7.25v-2.99c0-0.596-0.236-1.119-0.577-1.554c-0.469-0.598-1.165-1.006-1.983-1.006c-0.819,0-1.514,0.408-1.983,1.006 c-0.341,0.435-0.577,0.958-0.577,1.554v10.24v1.5l-5.87-5.87c-0.355-0.355-0.797-0.538-1.254-0.641 c-0.828-0.186-1.722-0.003-2.367,0.641c-1,1-1,2.62,0,3.62l1.496,1.496l7.241,7.241l-4.914,4.915 c0.18,0.405,0.365,0.792,0.546,1.192v17.374c-8.487,12.956-17.25,21.576-23.449,26.714c-0.573,3.265-1.763,6.312-3.451,9.027 c4.846-3.194,15.727-11.394,26.9-26.652v35.958c-10.991-0.778-21.152-3.187-28.659-6.797c-2.12-1.02-4.029-2.134-5.685-3.333 c-0.024-0.018-0.053-0.019-0.077-0.035c-1.139-0.77-2.684-0.511-3.498,0.605c-0.439,0.606-0.555,1.334-0.414,2.014 c0.125,0.604,0.448,1.171,0.986,1.561c1.484,1.075,3.144,2.076,4.926,3.015c0.155,0.082,0.309,0.162,0.466,0.243 c2.07,1.063,4.32,2.033,6.727,2.903c7.27,2.631,15.932,4.351,25.228,4.966v18.891c0.756-0.439,1.623-0.71,2.56-0.71 s1.804,0.27,2.56,0.71v-18.667c0.851,0.018,1.702,0.036,2.56,0.036s1.709-0.019,2.56-0.036v5.867c0.756-0.439,1.623-0.71,2.56-0.71 s1.804,0.27,2.56,0.71v-6.091c9.297-0.615,17.96-2.335,25.229-4.966c2.407-0.871,4.655-1.841,6.726-2.904 c0.157-0.081,0.311-0.161,0.466-0.243C426.94,326.755,428.598,325.753,430.08,324.68z M385.059,330.945 c-0.856,0-1.709-0.018-2.56-0.038v-43.691c0.858-1.347,1.711-2.749,2.56-4.185c0.849,1.437,1.702,2.838,2.56,4.185v43.691 C386.769,330.928,385.916,330.945,385.059,330.945z"/>
|
||||
<g>
|
||||
<path style="fill:#E6B432;" d="M385.059,184.456c14.138,0,25.6,2.42,25.6,5.405c0-5.022,0-9.922,0-10.687 c0-1.174-1.084-2.28-2.978-3.25l0.587-1.173c0.928-0.064,1.7-0.625,2.098-1.408c0.172-0.34,0.295-0.708,0.295-1.118 c0-0.492-0.175-0.926-0.417-1.316c-0.451-0.73-1.221-1.244-2.143-1.244c-1.414,0-2.56,1.146-2.56,2.56 c0,0.512,0.189,0.962,0.448,1.362l-0.674,1.347c-1.932-0.679-4.312-1.256-7.027-1.703l0.288-1.152 c1.058-0.314,1.845-1.256,1.845-2.415c0-1.414-1.146-2.56-2.56-2.56s-2.56,1.146-2.56,2.56c0,0.722,0.303,1.367,0.783,1.833 l-0.342,1.367c-1.427-0.179-2.922-0.32-4.474-0.426c0.116-0.481,0.193-0.978,0.193-1.494c0-3.534-2.866-6.4-6.4-6.4 s-6.4,2.866-6.4,6.4c0,0.518,0.077,1.013,0.193,1.494c-1.554,0.105-3.049,0.247-4.474,0.426l-0.342-1.367 c0.48-0.466,0.783-1.111,0.783-1.833c0-1.414-1.146-2.56-2.56-2.56s-2.56,1.146-2.56,2.56c0,1.16,0.787,2.101,1.845,2.415 l0.288,1.152c-2.714,0.446-5.095,1.023-7.027,1.703l-0.674-1.347c0.259-0.401,0.448-0.85,0.448-1.362c0-1.414-1.146-2.56-2.56-2.56 c-0.921,0-1.693,0.513-2.143,1.244c-0.241,0.391-0.417,0.824-0.417,1.316c0,0.409,0.121,0.778,0.294,1.118 c0.397,0.783,1.17,1.344,2.098,1.408l0.587,1.173c-1.895,0.97-2.978,2.074-2.978,3.25c0,0.766,0,5.665,0,10.687 C359.459,186.876,370.921,184.456,385.059,184.456z"/>
|
||||
<path style="fill:#E6B432;" d="M359.459,190.145l0.032-0.013c-0.008-0.086-0.032-0.202-0.032-0.271 C359.459,189.957,359.459,190.05,359.459,190.145z"/>
|
||||
<path style="fill:#E6B432;" d="M410.659,190.145c0-0.095,0-0.189,0-0.285c0,0.07-0.024,0.186-0.032,0.271L410.659,190.145z"/>
|
||||
</g>
|
||||
<path style="fill:#EBEBEB;" d="M364.579,195.266c0,0.512-0.189,0.962-0.448,1.362l0.97,1.941c1.694-0.84,4.008-1.561,6.775-2.114 l-0.333-1.333c-1.058-0.314-1.845-1.256-1.845-2.415c0-1.414,1.146-2.56,2.56-2.56s2.56,1.146,2.56,2.56 c0,0.722-0.303,1.367-0.783,1.833l0.37,1.476c2.47-0.369,5.198-0.615,8.094-0.706v-2.319c-0.78-0.703-1.28-1.71-1.28-2.844 c0-2.121,1.719-3.84,3.84-3.84s3.84,1.719,3.84,3.84c0,1.133-0.5,2.141-1.28,2.844v2.319c2.895,0.092,5.624,0.338,8.094,0.706 l0.37-1.476c-0.48-0.466-0.783-1.111-0.783-1.833c0-1.414,1.146-2.56,2.56-2.56s2.56,1.146,2.56,2.56 c0,1.16-0.787,2.101-1.845,2.415l-0.333,1.333c2.767,0.553,5.082,1.276,6.775,2.114l0.97-1.941c-0.259-0.401-0.448-0.85-0.448-1.362 c0-1.414,1.146-2.56,2.56-2.56c0.612,0,1.152,0.245,1.592,0.604c0.57-1.399,0.873-2.51,0.936-3.176 c0.008-0.086,0.032-0.202,0.032-0.271c0-2.985-11.462-5.405-25.6-5.405s-25.6,2.42-25.6,5.405c0,0.07,0.024,0.186,0.032,0.271 c0.062,0.666,0.365,1.777,0.935,3.176c0.44-0.359,0.98-0.604,1.592-0.604C363.433,192.705,364.579,193.852,364.579,195.266z"/>
|
||||
<path style="fill:#E6B432;" d="M359.459,195.266c0,1.354,1.06,2.435,2.391,2.526l1.105,2.209c-0.599,0.587-0.937,1.205-0.937,1.847 c0,0.738,0.445,1.447,1.23,2.11l3.89,6.668c0-2.828,8.023-5.12,17.92-5.12s17.92,2.292,17.92,5.12l3.89-6.668 c0.786-0.663,1.23-1.37,1.23-2.11c0-0.642-0.337-1.26-0.937-1.847l1.105-2.209c1.331-0.092,2.392-1.172,2.392-2.526 c0-0.801-0.391-1.487-0.968-1.956c-0.44-0.359-0.98-0.604-1.592-0.604c-1.414,0-2.56,1.146-2.56,2.56 c0,0.512,0.189,0.962,0.448,1.362l-0.97,1.941c-1.694-0.84-4.008-1.561-6.775-2.114l0.333-1.333 c1.058-0.314,1.845-1.256,1.845-2.415c0-1.414-1.146-2.56-2.56-2.56s-2.56,1.146-2.56,2.56c0,0.722,0.303,1.367,0.783,1.833 l-0.37,1.476c-2.47-0.369-5.198-0.615-8.094-0.706v-2.319c0.78-0.703,1.28-1.71,1.28-2.844c0-2.121-1.719-3.84-3.84-3.84 s-3.84,1.719-3.84,3.84c0,1.133,0.5,2.141,1.28,2.844v2.319c-2.895,0.092-5.624,0.338-8.094,0.706l-0.37-1.476 c0.48-0.466,0.783-1.111,0.783-1.833c0-1.414-1.146-2.56-2.56-2.56s-2.56,1.146-2.56,2.56c0,1.16,0.787,2.101,1.845,2.415 l0.333,1.333c-2.767,0.553-5.082,1.276-6.775,2.114l-0.97-1.941c0.259-0.401,0.448-0.85,0.448-1.362c0-1.414-1.146-2.56-2.56-2.56 c-0.612,0-1.152,0.245-1.592,0.604C359.85,193.779,359.459,194.464,359.459,195.266z"/>
|
||||
<ellipse style="fill:#EBEBEB;" cx="385.06" cy="210.63" rx="17.92" ry="5.12"/>
|
||||
<g>
|
||||
<path style="fill:#E6B432;" d="M410.046,167.005l-4.507-10.14c0-0.64-0.491-1.25-1.35-1.815l3.639-7.279 c0.632-1.265,0.12-2.803-1.145-3.435c-1.268-0.628-2.803-0.117-3.435,1.145l-1.977,3.955l-1.887,3.774 c-1.086-0.266-2.297-0.499-3.597-0.7l0.227-0.909c1.058-0.314,1.845-1.256,1.845-2.415c0-1.414-1.146-2.56-2.56-2.56 s-2.56,1.146-2.56,2.56c0,0.722,0.303,1.367,0.783,1.833l-0.289,1.154c-2.505-0.274-5.267-0.427-8.174-0.427 c-2.908,0-5.67,0.153-8.174,0.427l-0.289-1.154c0.48-0.466,0.783-1.111,0.783-1.833c0-1.414-1.146-2.56-2.56-2.56 s-2.56,1.146-2.56,2.56c0,1.16,0.787,2.101,1.845,2.415l0.227,0.909c-1.301,0.201-2.511,0.434-3.598,0.7l-1.887-3.774l-1.977-3.955 c-0.633-1.262-2.166-1.772-3.435-1.145c-1.265,0.632-1.778,2.17-1.145,3.435l3.639,7.279c-0.858,0.565-1.35,1.175-1.35,1.815 l-4.507,10.14c2.528-2.87,12.746-5.02,24.987-5.02C397.3,161.985,407.518,164.134,410.046,167.005z"/>
|
||||
<circle style="fill:#E6B432;" cx="385.06" cy="147.91" r="3.84"/>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 21 KiB |
@ -1,81 +0,0 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<path style="fill:#41479B;" d="M473.655,423.724H38.346c-21.177,0-38.345-17.167-38.345-38.345V126.622 c0-21.177,17.167-38.345,38.345-38.345h435.309c21.177,0,38.345,17.167,38.345,38.345V385.38 C512,406.557,494.833,423.724,473.655,423.724z"/>
|
||||
<path style="fill:#F5F5F5;" d="M150.069,141.849V88.277h-44.138v53.573L26.845,90.035c-9.234,2.9-16.954,9.203-21.711,17.434 l65.022,42.601H0.001v44.138h70.153L0.001,240.169v7.033c0.017,4.861,3.961,8.797,8.826,8.797H24.16l81.77-53.572V256h44.138 v-53.573L231.838,256h15.333c4.875,0,8.828-3.953,8.828-8.828v-7.002l-70.155-45.963h70.155V150.07h-70.155l70.155-45.964v-7.002 c0-4.874-3.95-8.825-8.823-8.828h-15.338L150.069,141.849z"/>
|
||||
<g>
|
||||
<polygon style="fill:#FF4B55;" points="255.999,158.897 141.241,158.897 141.241,88.277 114.758,88.277 114.758,158.897 0,158.897 0,185.38 114.758,185.38 114.758,256.001 141.241,256.001 141.241,185.38 255.999,185.38 "/>
|
||||
<path style="fill:#FF4B55;" d="M8.228,102.903l72.661,47.166h16.214l-82.495-53.55C12.239,98.39,10.098,100.533,8.228,102.903z"/>
|
||||
<path style="fill:#FF4B55;" d="M166.283,150.07l88.374-57.366c-1.536-2.599-4.246-4.427-7.485-4.427h-1.909l-95.194,61.793H166.283 z"/>
|
||||
<path style="fill:#FF4B55;" d="M89.474,194.208L1.269,251.462c1.519,2.663,4.273,4.537,7.559,4.537h1.665l95.195-61.793H89.474 V194.208z"/>
|
||||
<path style="fill:#FF4B55;" d="M255.859,247.866l-82.666-53.658H156.98l93.873,60.934 C253.666,253.837,255.594,251.102,255.859,247.866z"/>
|
||||
</g>
|
||||
<path style="fill:#73AF00;" d="M387.75,171.125h-57.796c0,0,0,74.795,0,105.393c0,23.798,57.796,47.597,57.796,47.597 s57.796-23.798,57.796-47.597c0-30.599,0-105.393,0-105.393H387.75L387.75,171.125z"/>
|
||||
<path style="fill:#FF4B55;" d="M353.913,251.543c0,0-0.324-1.119-0.036-2.13c0.289-1.011-0.454-1.938-0.614-2.815 c-0.433-2.382,1.588-2.996,1.696-5.124c0,0,1.443,1.48,0.903,2.888c-0.541,1.408,0.794,1.624,0.614,2.959 c-0.181,1.335-1.661,2.743-1.516,3.934L353.913,251.543z"/>
|
||||
<path style="fill:#FFE15A;" d="M376.637,249.281c-1.181-1.476-3.252,0.114-4.768,1.27c-0.211,0.162-0.39,0.286-0.577,0.422 l-5.592-8.259c0.157-0.236,0.27-0.503,0.27-0.807c0-0.823-0.666-1.49-1.49-1.49s-1.49,0.666-1.49,1.49 c0,0.305,0.114,0.572,0.27,0.807l-5.769,8.519h-4.085c0,0-0.169,2.539,4.291,2.847c0.575,0.871,1.395,1.564,2.377,1.956 c-0.461,0.075-0.833,0.431-0.833,0.914v0.597c0,0.038,0.036,0.06,0.04,0.097h10.391c0.004-0.036,0.04-0.059,0.04-0.097v-0.597 c0-0.488-0.378-0.852-0.847-0.919c1.739-0.7,2.961-2.327,3.167-4.26c0.162-0.12,0.313-0.23,0.489-0.363 c1.097-0.842,2.749-2.124,3.276-1.453c0.131,0.164,0.118,0.255,0.113,0.288c-0.06,0.39-0.893,0.95-1.562,1.399 c-1.053,0.707-2.142,1.441-2.228,2.481c-0.025,0.297,0.194,0.554,0.49,0.581c0.015,0,0.032,0,0.045,0 c0.277,0,0.512-0.213,0.535-0.491c0.043-0.527,0.993-1.165,1.757-1.677c0.973-0.657,1.892-1.273,2.024-2.127 C377.032,250.014,376.919,249.637,376.637,249.281z M367.078,251.231c-0.308-1.174-1.034-2.302-1.941-2.71 c0.48-0.247,0.819-0.734,0.819-1.311c0-0.822-0.666-1.49-1.49-1.49c-0.822,0-1.49,0.666-1.49,1.49c0,0.577,0.338,1.064,0.819,1.311 c-0.907,0.407-1.634,1.535-1.941,2.71h-3.065l5.353-7.905c0.111,0.026,0.219,0.068,0.339,0.068s0.227-0.042,0.339-0.068l5.353,7.905 H367.078z"/>
|
||||
<path style="fill:#FFC8B9;" d="M384.066,201.156c0,0-5.383-1.593-7.791,17.247c0,0-13.174,16.751-13.599,17.742 c-0.425,0.992-0.035,8.11,1.382,7.543s3.967-3.86,3.825-6.269s0.945-3.752,2.018-4.958c2.018-2.266,13.387-12.536,13.812-14.803 C384.137,215.393,384.066,201.156,384.066,201.156z"/>
|
||||
<g>
|
||||
<path style="fill:#F5F5F5;" d="M392.425,197.579c0,0,8.322-1.098,10.766,7.402c0,0-6.835,3.754-5.985,8.641 S397.1,240.82,397.1,240.82c-13.068,4.249-19.974-1.063-19.974-1.063s3.4-12.643,2.869-22.948c0,0-3.081-2.337-2.337-4.993 c0.744-2.656,2.656-5.631,3.294-7.862s2.337-5.95,6.481-6.269C391.574,197.367,392.425,197.579,392.425,197.579z"/>
|
||||
<path style="fill:#F5F5F5;" d="M379.534,237.278c0,0-6.516,24.649-4.249,58.221c0,0,20.328,2.691,31.378-1.346 c0,0-5.737-40.16-11.262-55.884L379.534,237.278z"/>
|
||||
</g>
|
||||
<path style="fill:#FFC8B9;" d="M383.358,183.061v10.211c0,1.121,0.909,2.03,2.03,2.03h0.182c0.793,0,1.437,0.643,1.437,1.437v2.441 c0,0,1.368,3.574,6.691-0.608v-15.435L383.358,183.061z"/>
|
||||
<path style="fill:#8C5A28;" d="M382.154,180.97c-0.33,0.825,0.018,3.063,2.053,2.904c2.543-0.199,5.613-0.213,6.304,2.603 c0.642,2.617,0.213,9.154,3.046,9.58c2.834,0.425,6.046-1.458,5.985-7.083c-0.053-4.958-3.294-10.89-7.827-9.987 c0,0-4.02-2.816-6.375,0.354C385.342,179.341,382.863,179.199,382.154,180.97z"/>
|
||||
<path style="fill:#FFC8B9;" d="M403.19,204.981c0,0,2.9,19.104,2.762,20.682c-0.141,1.629-10.27,17.282-9.704,18.983 c0.567,1.7,1.133,3.967-1.983,4.817s-2.797-4.126-1.948-6.676s7.968-16.131,7.968-17.689s-4.038-11.616-3.046-15.583 C398.232,205.547,403.19,204.981,403.19,204.981z"/>
|
||||
<path style="fill:#FF4B55;" d="M341.163,191.262c0,0-0.324-1.119-0.036-2.13c0.289-1.011-0.454-1.938-0.613-2.815 c-0.433-2.382,1.588-2.996,1.696-5.124c0,0,1.443,1.48,0.903,2.888c-0.542,1.408,0.794,1.624,0.614,2.959s-1.661,2.743-1.516,3.934 L341.163,191.262z"/>
|
||||
<path style="fill:#FFE15A;" d="M363.888,189c-1.181-1.476-3.252,0.114-4.768,1.27c-0.211,0.162-0.39,0.286-0.577,0.422l-5.592-8.259 c0.157-0.236,0.27-0.503,0.27-0.807c0-0.823-0.666-1.49-1.49-1.49s-1.49,0.666-1.49,1.49c0,0.305,0.114,0.572,0.27,0.807 l-5.769,8.519h-4.085c0,0-0.169,2.539,4.291,2.847c0.575,0.871,1.395,1.564,2.377,1.956c-0.461,0.075-0.833,0.431-0.833,0.914v0.597 c0,0.038,0.036,0.06,0.04,0.097h10.391c0.004-0.036,0.04-0.058,0.04-0.097v-0.597c0-0.488-0.378-0.852-0.847-0.919 c1.739-0.7,2.961-2.327,3.167-4.26c0.162-0.12,0.313-0.23,0.489-0.363c1.097-0.842,2.749-2.124,3.276-1.453 c0.131,0.164,0.118,0.255,0.113,0.288c-0.06,0.39-0.893,0.95-1.562,1.399c-1.053,0.707-2.142,1.441-2.228,2.481 c-0.025,0.297,0.194,0.554,0.49,0.582c0.015,0,0.032,0,0.045,0c0.277,0,0.512-0.213,0.535-0.491 c0.043-0.527,0.993-1.165,1.757-1.677c0.973-0.657,1.892-1.273,2.024-2.127C364.283,189.734,364.17,189.357,363.888,189z M354.329,190.951c-0.308-1.174-1.034-2.302-1.941-2.71c0.48-0.247,0.819-0.734,0.819-1.311c0-0.822-0.666-1.49-1.49-1.49 c-0.822,0-1.49,0.666-1.49,1.49c0,0.577,0.338,1.064,0.819,1.311c-0.907,0.407-1.634,1.535-1.941,2.71h-3.065l5.353-7.905 c0.111,0.026,0.218,0.068,0.339,0.068c0.12,0,0.227-0.042,0.339-0.068l5.353,7.905H354.329z"/>
|
||||
<path style="fill:#FF4B55;" d="M341.163,211.355c0,0-0.324-1.119-0.036-2.13c0.289-1.011-0.454-1.938-0.613-2.815 c-0.433-2.382,1.588-2.996,1.696-5.124c0,0,1.443,1.48,0.903,2.888c-0.541,1.408,0.794,1.624,0.614,2.959s-1.661,2.743-1.516,3.934 L341.163,211.355z"/>
|
||||
<path style="fill:#FFE15A;" d="M363.888,209.094c-1.181-1.476-3.252,0.114-4.768,1.27c-0.211,0.162-0.39,0.286-0.577,0.422 l-5.592-8.259c0.157-0.236,0.27-0.503,0.27-0.807c0-0.823-0.666-1.49-1.49-1.49s-1.49,0.666-1.49,1.49 c0,0.305,0.114,0.572,0.27,0.807l-5.769,8.519h-4.085c0,0-0.169,2.539,4.291,2.847c0.575,0.871,1.395,1.564,2.377,1.956 c-0.461,0.075-0.833,0.431-0.833,0.914v0.597c0,0.038,0.036,0.06,0.04,0.097h10.391c0.004-0.036,0.04-0.058,0.04-0.097v-0.597 c0-0.488-0.378-0.852-0.847-0.92c1.739-0.7,2.961-2.327,3.167-4.26c0.162-0.12,0.313-0.23,0.489-0.363 c1.097-0.842,2.749-2.124,3.276-1.453c0.131,0.164,0.118,0.255,0.113,0.288c-0.06,0.39-0.893,0.95-1.562,1.399 c-1.053,0.707-2.142,1.441-2.228,2.481c-0.025,0.297,0.194,0.554,0.49,0.581c0.015,0,0.032,0,0.045,0 c0.277,0,0.512-0.213,0.535-0.491c0.043-0.527,0.993-1.165,1.757-1.677c0.973-0.657,1.892-1.273,2.024-2.127 C364.283,209.828,364.17,209.451,363.888,209.094z M354.329,211.045c-0.308-1.174-1.034-2.302-1.941-2.71 c0.48-0.247,0.819-0.734,0.819-1.311c0-0.822-0.666-1.49-1.49-1.49c-0.822,0-1.49,0.666-1.49,1.49c0,0.577,0.338,1.064,0.819,1.311 c-0.907,0.407-1.634,1.535-1.941,2.71h-3.065l5.353-7.905c0.111,0.026,0.218,0.068,0.339,0.068c0.12,0,0.227-0.042,0.339-0.068 l5.353,7.905H354.329z"/>
|
||||
<path style="fill:#FF4B55;" d="M341.163,231.449c0,0-0.324-1.119-0.036-2.13c0.289-1.011-0.454-1.938-0.613-2.815 c-0.433-2.382,1.588-2.996,1.696-5.124c0,0,1.443,1.48,0.903,2.888c-0.542,1.408,0.794,1.624,0.614,2.959s-1.661,2.743-1.516,3.934 L341.163,231.449z"/>
|
||||
<path style="fill:#FFE15A;" d="M363.888,229.187c-1.181-1.476-3.252,0.114-4.768,1.27c-0.211,0.162-0.39,0.286-0.577,0.422 l-5.592-8.259c0.157-0.236,0.27-0.503,0.27-0.807c0-0.823-0.666-1.49-1.49-1.49s-1.49,0.666-1.49,1.49 c0,0.305,0.114,0.572,0.27,0.807l-5.769,8.519h-4.085c0,0-0.169,2.539,4.291,2.847c0.575,0.871,1.395,1.564,2.377,1.956 c-0.461,0.075-0.833,0.431-0.833,0.914v0.597c0,0.038,0.036,0.06,0.04,0.097h10.391c0.004-0.036,0.04-0.058,0.04-0.097v-0.597 c0-0.488-0.378-0.852-0.847-0.919c1.739-0.7,2.961-2.327,3.167-4.26c0.162-0.12,0.313-0.23,0.489-0.363 c1.097-0.842,2.749-2.124,3.276-1.453c0.131,0.164,0.118,0.255,0.113,0.288c-0.06,0.39-0.893,0.95-1.562,1.399 c-1.053,0.707-2.142,1.441-2.228,2.481c-0.025,0.297,0.194,0.554,0.49,0.582c0.015,0,0.032,0,0.045,0 c0.277,0,0.512-0.213,0.535-0.491c0.043-0.527,0.993-1.165,1.757-1.677c0.973-0.657,1.892-1.273,2.024-2.127 C364.283,229.921,364.17,229.543,363.888,229.187z M354.329,231.139c-0.308-1.174-1.034-2.302-1.941-2.71 c0.48-0.247,0.819-0.734,0.819-1.311c0-0.822-0.666-1.49-1.49-1.49c-0.822,0-1.49,0.666-1.49,1.49c0,0.577,0.338,1.064,0.819,1.311 c-0.907,0.407-1.634,1.535-1.941,2.71h-3.065l5.353-7.905c0.111,0.026,0.218,0.068,0.339,0.068c0.12,0,0.227-0.042,0.339-0.068 l5.353,7.905H354.329z"/>
|
||||
<path style="fill:#FF4B55;" d="M341.163,271.635c0,0-0.324-1.119-0.036-2.13c0.289-1.011-0.454-1.938-0.613-2.815 c-0.433-2.382,1.588-2.996,1.696-5.124c0,0,1.443,1.48,0.903,2.888s0.794,1.624,0.614,2.959s-1.661,2.743-1.516,3.934 L341.163,271.635z"/>
|
||||
<path style="fill:#FFE15A;" d="M363.888,269.374c-1.181-1.476-3.252,0.114-4.768,1.27c-0.211,0.162-0.39,0.286-0.577,0.422 l-5.592-8.258c0.157-0.236,0.27-0.503,0.27-0.807c0-0.823-0.666-1.49-1.49-1.49s-1.49,0.666-1.49,1.49 c0,0.305,0.114,0.572,0.27,0.807l-5.769,8.519h-4.085c0,0-0.169,2.539,4.291,2.847c0.575,0.871,1.395,1.564,2.377,1.956 c-0.461,0.075-0.833,0.431-0.833,0.914v0.597c0,0.038,0.036,0.06,0.04,0.097h10.391c0.004-0.036,0.04-0.058,0.04-0.097v-0.597 c0-0.488-0.378-0.852-0.847-0.919c1.739-0.7,2.961-2.327,3.167-4.26c0.162-0.12,0.313-0.23,0.489-0.363 c1.097-0.842,2.749-2.124,3.276-1.453c0.131,0.164,0.118,0.255,0.113,0.288c-0.06,0.389-0.893,0.95-1.562,1.399 c-1.053,0.707-2.142,1.441-2.228,2.481c-0.025,0.297,0.194,0.554,0.49,0.582c0.015,0,0.032,0,0.045,0 c0.277,0,0.512-0.213,0.535-0.491c0.043-0.527,0.993-1.165,1.757-1.677c0.973-0.657,1.892-1.273,2.024-2.127 C364.283,270.108,364.17,269.731,363.888,269.374z M354.329,271.325c-0.308-1.174-1.034-2.302-1.941-2.71 c0.48-0.247,0.819-0.734,0.819-1.311c0-0.822-0.666-1.49-1.49-1.49c-0.822,0-1.49,0.666-1.49,1.49c0,0.577,0.338,1.064,0.819,1.311 c-0.907,0.407-1.634,1.535-1.941,2.71h-3.065l5.353-7.905c0.111,0.026,0.218,0.068,0.339,0.068c0.12,0,0.227-0.042,0.339-0.068 l5.353,7.905H354.329z"/>
|
||||
<path style="fill:#FF4B55;" d="M341.163,291.729c0,0-0.324-1.119-0.036-2.13c0.289-1.011-0.454-1.938-0.613-2.815 c-0.433-2.382,1.588-2.996,1.696-5.124c0,0,1.443,1.48,0.903,2.888c-0.542,1.408,0.794,1.624,0.614,2.959 c-0.181,1.335-1.661,2.743-1.516,3.934L341.163,291.729z"/>
|
||||
<path style="fill:#FFE15A;" d="M363.888,289.467c-1.181-1.476-3.252,0.114-4.768,1.27c-0.211,0.162-0.39,0.286-0.577,0.422 l-5.592-8.258c0.157-0.236,0.27-0.503,0.27-0.807c0-0.823-0.666-1.49-1.49-1.49s-1.49,0.666-1.49,1.49 c0,0.305,0.114,0.572,0.27,0.807l-5.769,8.519h-4.085c0,0-0.169,2.539,4.291,2.847c0.575,0.871,1.395,1.564,2.377,1.956 c-0.461,0.075-0.833,0.431-0.833,0.914v0.597c0,0.038,0.036,0.06,0.04,0.097h10.391c0.004-0.036,0.04-0.058,0.04-0.097v-0.597 c0-0.488-0.378-0.852-0.847-0.919c1.739-0.7,2.961-2.327,3.167-4.26c0.162-0.12,0.313-0.23,0.489-0.363 c1.097-0.842,2.749-2.124,3.276-1.453c0.131,0.164,0.118,0.255,0.113,0.288c-0.06,0.39-0.893,0.95-1.562,1.399 c-1.053,0.707-2.142,1.441-2.228,2.481c-0.025,0.297,0.194,0.554,0.49,0.582c0.015,0,0.032,0,0.045,0 c0.277,0,0.512-0.213,0.535-0.491c0.043-0.527,0.993-1.165,1.757-1.677c0.973-0.657,1.892-1.273,2.024-2.127 C364.283,290.202,364.17,289.823,363.888,289.467z M354.329,291.419c-0.308-1.174-1.034-2.302-1.941-2.71 c0.48-0.247,0.819-0.734,0.819-1.311c0-0.822-0.666-1.49-1.49-1.49c-0.822,0-1.49,0.667-1.49,1.49c0,0.577,0.338,1.064,0.819,1.311 c-0.907,0.407-1.634,1.535-1.941,2.71h-3.065l5.353-7.905c0.111,0.026,0.218,0.068,0.339,0.068c0.12,0,0.227-0.042,0.339-0.068 l5.353,7.905H354.329z"/>
|
||||
<path style="fill:#FF4B55;" d="M411.071,191.262c0,0-0.324-1.119-0.036-2.13c0.289-1.011-0.455-1.938-0.613-2.815 c-0.433-2.382,1.588-2.996,1.696-5.124c0,0,1.443,1.48,0.903,2.888c-0.542,1.408,0.794,1.624,0.614,2.959s-1.661,2.743-1.516,3.934 L411.071,191.262z"/>
|
||||
<path style="fill:#FFE15A;" d="M433.795,189c-1.181-1.476-3.252,0.114-4.768,1.27c-0.211,0.162-0.39,0.286-0.577,0.422l-5.592-8.259 c0.157-0.236,0.27-0.503,0.27-0.807c0-0.823-0.666-1.49-1.49-1.49s-1.49,0.666-1.49,1.49c0,0.305,0.114,0.572,0.27,0.807 l-5.769,8.519h-4.085c0,0-0.169,2.539,4.291,2.847c0.575,0.871,1.395,1.564,2.377,1.956c-0.461,0.075-0.833,0.431-0.833,0.914v0.597 c0,0.038,0.036,0.06,0.04,0.097h10.391c0.004-0.036,0.04-0.058,0.04-0.097v-0.597c0-0.488-0.378-0.852-0.847-0.919 c1.739-0.7,2.961-2.327,3.167-4.26c0.162-0.12,0.313-0.23,0.489-0.363c1.097-0.842,2.749-2.124,3.276-1.453 c0.131,0.164,0.118,0.255,0.113,0.288c-0.06,0.39-0.893,0.95-1.562,1.399c-1.053,0.707-2.142,1.441-2.228,2.481 c-0.025,0.297,0.194,0.554,0.49,0.582c0.015,0,0.032,0,0.045,0c0.277,0,0.512-0.213,0.535-0.491 c0.043-0.527,0.993-1.165,1.757-1.677c0.973-0.657,1.892-1.273,2.024-2.127C434.19,189.734,434.079,189.357,433.795,189z M424.237,190.951c-0.308-1.174-1.034-2.302-1.941-2.71c0.48-0.247,0.819-0.734,0.819-1.311c0-0.822-0.667-1.49-1.49-1.49 c-0.822,0-1.49,0.666-1.49,1.49c0,0.577,0.338,1.064,0.819,1.311c-0.907,0.407-1.634,1.535-1.941,2.71h-3.065l5.353-7.905 c0.111,0.026,0.218,0.068,0.339,0.068c0.12,0,0.227-0.042,0.339-0.068l5.353,7.905H424.237z"/>
|
||||
<path style="fill:#FF4B55;" d="M411.071,211.355c0,0-0.324-1.119-0.036-2.13c0.289-1.011-0.455-1.938-0.613-2.815 c-0.433-2.382,1.588-2.996,1.696-5.124c0,0,1.443,1.48,0.903,2.888c-0.542,1.408,0.794,1.624,0.614,2.959s-1.661,2.743-1.516,3.934 L411.071,211.355z"/>
|
||||
<path style="fill:#FFE15A;" d="M433.795,209.094c-1.181-1.476-3.252,0.114-4.768,1.27c-0.211,0.162-0.39,0.286-0.577,0.422 l-5.592-8.259c0.157-0.236,0.27-0.503,0.27-0.807c0-0.823-0.666-1.49-1.49-1.49s-1.49,0.666-1.49,1.49 c0,0.305,0.114,0.572,0.27,0.807l-5.769,8.519h-4.085c0,0-0.169,2.539,4.291,2.847c0.575,0.871,1.395,1.564,2.377,1.956 c-0.461,0.075-0.833,0.431-0.833,0.914v0.597c0,0.038,0.036,0.06,0.04,0.097h10.391c0.004-0.036,0.04-0.058,0.04-0.097v-0.597 c0-0.488-0.378-0.852-0.847-0.92c1.739-0.7,2.961-2.327,3.167-4.26c0.162-0.12,0.313-0.23,0.489-0.363 c1.097-0.842,2.749-2.124,3.276-1.453c0.131,0.164,0.118,0.255,0.113,0.288c-0.06,0.39-0.893,0.95-1.562,1.399 c-1.053,0.707-2.142,1.441-2.228,2.481c-0.025,0.297,0.194,0.554,0.49,0.581c0.015,0,0.032,0,0.045,0 c0.277,0,0.512-0.213,0.535-0.491c0.043-0.527,0.993-1.165,1.757-1.677c0.973-0.657,1.892-1.273,2.024-2.127 C434.19,209.828,434.079,209.451,433.795,209.094z M424.237,211.045c-0.308-1.174-1.034-2.302-1.941-2.71 c0.48-0.247,0.819-0.734,0.819-1.311c0-0.822-0.667-1.49-1.49-1.49c-0.822,0-1.49,0.666-1.49,1.49c0,0.577,0.338,1.064,0.819,1.311 c-0.907,0.407-1.634,1.535-1.941,2.71h-3.065l5.353-7.905c0.111,0.026,0.218,0.068,0.339,0.068c0.12,0,0.227-0.042,0.339-0.068 l5.353,7.905H424.237z"/>
|
||||
<path style="fill:#FF4B55;" d="M411.071,231.449c0,0-0.324-1.119-0.036-2.13c0.289-1.011-0.455-1.938-0.613-2.815 c-0.433-2.382,1.588-2.996,1.696-5.124c0,0,1.443,1.48,0.903,2.888c-0.542,1.408,0.794,1.624,0.614,2.959s-1.661,2.743-1.516,3.934 L411.071,231.449z"/>
|
||||
<path style="fill:#FFE15A;" d="M433.795,229.187c-1.181-1.476-3.252,0.114-4.768,1.27c-0.211,0.162-0.39,0.286-0.577,0.422 l-5.592-8.259c0.157-0.236,0.27-0.503,0.27-0.807c0-0.823-0.666-1.49-1.49-1.49s-1.49,0.666-1.49,1.49 c0,0.305,0.114,0.572,0.27,0.807l-5.769,8.519h-4.085c0,0-0.169,2.539,4.291,2.847c0.575,0.871,1.395,1.564,2.377,1.956 c-0.461,0.075-0.833,0.431-0.833,0.914v0.597c0,0.038,0.036,0.06,0.04,0.097h10.391c0.004-0.036,0.04-0.058,0.04-0.097v-0.597 c0-0.488-0.378-0.852-0.847-0.919c1.739-0.7,2.961-2.327,3.167-4.26c0.162-0.12,0.313-0.23,0.489-0.363 c1.097-0.842,2.749-2.124,3.276-1.453c0.131,0.164,0.118,0.255,0.113,0.288c-0.06,0.39-0.893,0.95-1.562,1.399 c-1.053,0.707-2.142,1.441-2.228,2.481c-0.025,0.297,0.194,0.554,0.49,0.582c0.015,0,0.032,0,0.045,0 c0.277,0,0.512-0.213,0.535-0.491c0.043-0.527,0.993-1.165,1.757-1.677c0.973-0.657,1.892-1.273,2.024-2.127 C434.19,229.921,434.079,229.543,433.795,229.187z M424.237,231.139c-0.308-1.174-1.034-2.302-1.941-2.71 c0.48-0.247,0.819-0.734,0.819-1.311c0-0.822-0.667-1.49-1.49-1.49c-0.822,0-1.49,0.666-1.49,1.49c0,0.577,0.338,1.064,0.819,1.311 c-0.907,0.407-1.634,1.535-1.941,2.71h-3.065l5.353-7.905c0.111,0.026,0.218,0.068,0.339,0.068c0.12,0,0.227-0.042,0.339-0.068 l5.353,7.905H424.237z"/>
|
||||
<path style="fill:#FF4B55;" d="M411.071,251.543c0,0-0.324-1.119-0.036-2.13c0.289-1.011-0.455-1.938-0.613-2.815 c-0.433-2.382,1.588-2.996,1.696-5.124c0,0,1.443,1.48,0.903,2.888c-0.542,1.408,0.794,1.624,0.614,2.959 c-0.181,1.335-1.661,2.743-1.516,3.934L411.071,251.543z"/>
|
||||
<path style="fill:#FFE15A;" d="M433.795,249.281c-1.181-1.476-3.252,0.114-4.768,1.27c-0.211,0.162-0.39,0.286-0.577,0.422 l-5.592-8.259c0.157-0.236,0.27-0.503,0.27-0.807c0-0.823-0.666-1.49-1.49-1.49s-1.49,0.666-1.49,1.49 c0,0.305,0.114,0.572,0.27,0.807l-5.769,8.519h-4.085c0,0-0.169,2.539,4.291,2.847c0.575,0.871,1.395,1.564,2.377,1.956 c-0.461,0.075-0.833,0.431-0.833,0.914v0.597c0,0.038,0.036,0.06,0.04,0.097h10.391c0.004-0.036,0.04-0.059,0.04-0.097v-0.597 c0-0.488-0.378-0.852-0.847-0.919c1.739-0.7,2.961-2.327,3.167-4.26c0.162-0.12,0.313-0.23,0.489-0.363 c1.097-0.842,2.749-2.124,3.276-1.453c0.131,0.164,0.118,0.255,0.113,0.288c-0.06,0.39-0.893,0.95-1.562,1.399 c-1.053,0.707-2.142,1.441-2.228,2.481c-0.025,0.297,0.194,0.554,0.49,0.581c0.015,0,0.032,0,0.045,0 c0.277,0,0.512-0.213,0.535-0.491c0.043-0.527,0.993-1.165,1.757-1.677c0.973-0.657,1.892-1.273,2.024-2.127 C434.19,250.014,434.079,249.637,433.795,249.281z M424.237,251.231c-0.308-1.174-1.034-2.302-1.941-2.71 c0.48-0.247,0.819-0.734,0.819-1.311c0-0.822-0.667-1.49-1.49-1.49c-0.822,0-1.49,0.666-1.49,1.49c0,0.577,0.338,1.064,0.819,1.311 c-0.907,0.407-1.634,1.535-1.941,2.71h-3.065l5.353-7.905c0.111,0.026,0.218,0.068,0.339,0.068c0.12,0,0.227-0.042,0.339-0.068 l5.353,7.905H424.237z"/>
|
||||
<path style="fill:#FF4B55;" d="M411.071,271.635c0,0-0.324-1.119-0.036-2.13c0.289-1.011-0.455-1.938-0.613-2.815 c-0.433-2.382,1.588-2.996,1.696-5.124c0,0,1.443,1.48,0.903,2.888c-0.542,1.408,0.794,1.624,0.614,2.959s-1.661,2.743-1.516,3.934 L411.071,271.635z"/>
|
||||
<path style="fill:#FFE15A;" d="M433.795,269.374c-1.181-1.476-3.252,0.114-4.768,1.27c-0.211,0.162-0.39,0.286-0.577,0.422 l-5.592-8.258c0.157-0.236,0.27-0.503,0.27-0.807c0-0.823-0.666-1.49-1.49-1.49s-1.49,0.666-1.49,1.49 c0,0.305,0.114,0.572,0.27,0.807l-5.769,8.519h-4.085c0,0-0.169,2.539,4.291,2.847c0.575,0.871,1.395,1.564,2.377,1.956 c-0.461,0.075-0.833,0.431-0.833,0.914v0.597c0,0.038,0.036,0.06,0.04,0.097h10.391c0.004-0.036,0.04-0.058,0.04-0.097v-0.597 c0-0.488-0.378-0.852-0.847-0.919c1.739-0.7,2.961-2.327,3.167-4.26c0.162-0.12,0.313-0.23,0.489-0.363 c1.097-0.842,2.749-2.124,3.276-1.453c0.131,0.164,0.118,0.255,0.113,0.288c-0.06,0.389-0.893,0.95-1.562,1.399 c-1.053,0.707-2.142,1.441-2.228,2.481c-0.025,0.297,0.194,0.554,0.49,0.582c0.015,0,0.032,0,0.045,0 c0.277,0,0.512-0.213,0.535-0.491c0.043-0.527,0.993-1.165,1.757-1.677c0.973-0.657,1.892-1.273,2.024-2.127 C434.19,270.108,434.079,269.731,433.795,269.374z M424.237,271.325c-0.308-1.174-1.034-2.302-1.941-2.71 c0.48-0.247,0.819-0.734,0.819-1.311c0-0.822-0.667-1.49-1.49-1.49c-0.822,0-1.49,0.666-1.49,1.49c0,0.577,0.338,1.064,0.819,1.311 c-0.907,0.407-1.634,1.535-1.941,2.71h-3.065l5.353-7.905c0.111,0.026,0.218,0.068,0.339,0.068c0.12,0,0.227-0.042,0.339-0.068 l5.353,7.905H424.237z"/>
|
||||
<path style="fill:#FF4B55;" d="M411.071,291.729c0,0-0.324-1.119-0.036-2.13c0.289-1.011-0.455-1.938-0.613-2.815 c-0.433-2.382,1.588-2.996,1.696-5.124c0,0,1.443,1.48,0.903,2.888c-0.542,1.408,0.794,1.624,0.614,2.959 c-0.181,1.335-1.661,2.743-1.516,3.934L411.071,291.729z"/>
|
||||
<path style="fill:#FFE15A;" d="M433.795,289.467c-1.181-1.476-3.252,0.114-4.768,1.27c-0.211,0.162-0.39,0.286-0.577,0.422 l-5.592-8.258c0.157-0.236,0.27-0.503,0.27-0.807c0-0.823-0.666-1.49-1.49-1.49s-1.49,0.666-1.49,1.49 c0,0.305,0.114,0.572,0.27,0.807l-5.769,8.519h-4.085c0,0-0.169,2.539,4.291,2.847c0.575,0.871,1.395,1.564,2.377,1.956 c-0.461,0.075-0.833,0.431-0.833,0.914v0.597c0,0.038,0.036,0.06,0.04,0.097h10.391c0.004-0.036,0.04-0.058,0.04-0.097v-0.597 c0-0.488-0.378-0.852-0.847-0.919c1.739-0.7,2.961-2.327,3.167-4.26c0.162-0.12,0.313-0.23,0.489-0.363 c1.097-0.842,2.749-2.124,3.276-1.453c0.131,0.164,0.118,0.255,0.113,0.288c-0.06,0.39-0.893,0.95-1.562,1.399 c-1.053,0.707-2.142,1.441-2.228,2.481c-0.025,0.297,0.194,0.554,0.49,0.582c0.015,0,0.032,0,0.045,0 c0.277,0,0.512-0.213,0.535-0.491c0.043-0.527,0.993-1.165,1.757-1.677c0.973-0.657,1.892-1.273,2.024-2.127 C434.19,290.202,434.079,289.823,433.795,289.467z M424.237,291.419c-0.308-1.174-1.034-2.302-1.941-2.71 c0.48-0.247,0.819-0.734,0.819-1.311c0-0.822-0.667-1.49-1.49-1.49c-0.822,0-1.49,0.667-1.49,1.49c0,0.577,0.338,1.064,0.819,1.311 c-0.907,0.407-1.634,1.535-1.941,2.71h-3.065l5.353-7.905c0.111,0.026,0.218,0.068,0.339,0.068c0.12,0,0.227-0.042,0.339-0.068 l5.353,7.905H424.237z"/>
|
||||
<g>
|
||||
<path style="fill:#F5F5F5;" d="M445.546,171.125c0,0,0,74.795,0,105.393c0,23.798-57.796,47.597-57.796,47.597 s-57.796-23.798-57.796-47.597c0-30.599,0-105.393,0-105.393h57.796H445.546 M448.946,167.725h-3.4H387.75h-57.796h-3.4v3.4 v105.393c0,11.128,10.265,23.111,30.511,35.616c14.518,8.967,28.79,14.878,29.39,15.125l1.294,0.533l1.294-0.533 c0.6-0.247,14.872-6.158,29.39-15.125c20.246-12.505,30.511-24.488,30.511-35.616V171.125L448.946,167.725L448.946,167.725z"/>
|
||||
<path style="fill:#F5F5F5;" d="M449.437,295.262l15.412,10.629c-17.901,22.963-45.794,37.772-77.1,37.772 c-31.305,0-59.198-14.81-77.1-37.772l15.412-10.629c14.498,18.089,36.756,29.703,61.687,29.703 C412.681,324.965,434.939,313.351,449.437,295.262 M448.763,290.668l-1.978,2.468c-14.48,18.067-35.998,28.429-59.034,28.429 s-44.554-10.362-59.034-28.429l-1.978-2.468l-2.604,1.796l-15.412,10.629l-2.967,2.046l2.216,2.842 c19.363,24.836,48.442,39.082,79.78,39.082s60.418-14.244,79.78-39.082l2.216-2.842l-2.967-2.046l-15.412-10.629L448.763,290.668 L448.763,290.668z"/>
|
||||
</g>
|
||||
<path style="fill:#FFE15A;" d="M387.75,343.664c31.305,0,59.198-14.81,77.1-37.772l-15.412-10.629 c-14.498,18.089-36.756,29.703-61.687,29.703s-47.189-11.614-61.687-29.703l-15.412,10.629 C328.552,328.853,356.445,343.664,387.75,343.664z"/>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 18 KiB |
16
luci-app-leigod-acc/Makefile
Normal file
@ -0,0 +1,16 @@
|
||||
#
|
||||
# Copyright (C) 2008-2014 The LuCI Team <luci@lists.subsignal.org>
|
||||
#
|
||||
# This is free software, licensed under the Apache License, Version 2.0 .
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
LUCI_TITLE:=Luci for Leigod Game Accelerater
|
||||
LUCI_PKGARCH:=all
|
||||
LUCI_DEPENDS:=+libpcap +iptables +kmod-ipt-nat +iptables-mod-tproxy +kmod-ipt-tproxy +kmod-tun +kmod-netem +tc-full +kmod-ipt-ipset +ipset +curl +miniupnpd +leigod-acc
|
||||
|
||||
include $(TOPDIR)/feeds/luci/luci.mk
|
||||
|
||||
# call BuildPackage - OpenWrt buildroot signature
|
||||
|
74
luci-app-leigod-acc/luasrc/controller/acc.lua
Normal file
@ -0,0 +1,74 @@
|
||||
module("luci.controller.acc", package.seeall)
|
||||
|
||||
function index()
|
||||
require("luci.i18n")
|
||||
entry({ "admin", "services", "acc" }, alias("admin", "services", "acc", "service"), translate("Leigod Acc"), 50)
|
||||
entry({ "admin", "services", "acc", "service" }, cbi("leigod/service"), translate("Leigod Service"), 30).i18n = "acc"
|
||||
entry({ "admin", "services", "acc", "device" }, cbi("leigod/device"), translate("Leigod Device"), 50).i18n = "acc"
|
||||
entry({ "admin", "services", "acc", "notice" }, cbi("leigod/notice"), translate("Leigod Notice"), 80).i18n = "acc"
|
||||
entry({ "admin", "services", "acc", "status" }, call("get_acc_status")).leaf = true
|
||||
entry({ "admin", "services", "acc", "start_acc_service" }, call("start_acc_service"))
|
||||
entry({ "admin", "services", "acc", "stop_acc_service" }, call("stop_acc_service"))
|
||||
end
|
||||
|
||||
-- get_acc_status get acc status
|
||||
function get_acc_status()
|
||||
-- util module
|
||||
local util = require "luci.util"
|
||||
local uci = require "luci.model.uci".cursor()
|
||||
local translate = luci.i18n.translate
|
||||
-- init result
|
||||
local resp = {}
|
||||
-- init state
|
||||
resp.service = translate("Acc Service Disabled")
|
||||
resp.state = {}
|
||||
-- check if exist
|
||||
local exist = util.exec("ps | grep acc-gw | grep -v grep")
|
||||
-- check if program is running
|
||||
if exist ~= "" then
|
||||
resp.service = translate("Acc Service Enabled")
|
||||
end
|
||||
-- get uci
|
||||
local results = uci:get_all("accelerator")
|
||||
for _, typ in pairs({ "Phone", "PC", "Game", "Unknown" }) do
|
||||
local state = uci:get("accelerator", typ, "state")
|
||||
-- check state
|
||||
local state_text = "None"
|
||||
if state == nil or state == '0' then
|
||||
elseif state == '1' then
|
||||
state_text = translate("Acc Catalog Started")
|
||||
elseif state == '2' then
|
||||
state_text = translate("Acc Catalog Stopped")
|
||||
elseif state == '3' then
|
||||
state_text = translate("Acc Catalog Paused")
|
||||
end
|
||||
-- store text
|
||||
resp.state[translate(typ .. "_Catalog")] = state_text
|
||||
end
|
||||
luci.http.prepare_content("application/json")
|
||||
luci.http.write_json(resp)
|
||||
end
|
||||
|
||||
-- start_acc_service
|
||||
function start_acc_service()
|
||||
-- util module
|
||||
local util = require "luci.util"
|
||||
util.exec("/etc/init.d/acc enable")
|
||||
util.exec("/etc/init.d/acc restart")
|
||||
local resp = {}
|
||||
resp.result = "OK"
|
||||
luci.http.prepare_content("application/json")
|
||||
luci.http.write_json(resp)
|
||||
end
|
||||
|
||||
-- start_acc_service
|
||||
function stop_acc_service()
|
||||
-- util module
|
||||
local util = require "luci.util"
|
||||
util.exec("/etc/init.d/acc stop")
|
||||
util.exec("/etc/init.d/acc disable")
|
||||
local resp = {}
|
||||
resp.result = "OK"
|
||||
luci.http.prepare_content("application/json")
|
||||
luci.http.write_json(resp)
|
||||
end
|
157
luci-app-leigod-acc/luasrc/model/cbi/leigod/device.lua
Normal file
@ -0,0 +1,157 @@
|
||||
local uci = require "luci.model.uci".cursor()
|
||||
local util = require "luci.util"
|
||||
local fs = require "nixio.fs"
|
||||
local pairs = pairs
|
||||
local io = io
|
||||
|
||||
-- config
|
||||
m = Map("accelerator")
|
||||
m.title = translate("Leigod Device Config")
|
||||
m.description = translate("Control Device Config")
|
||||
|
||||
-- get neigh info
|
||||
neigh = m:section(NamedSection, "base", "system", translate("Neigh Device"))
|
||||
neigh_tab = neigh:option(ListValue, "neigh", translate("acc interface"))
|
||||
local sys_dir = util.exec("ls /sys/class/net")
|
||||
if sys_dir ~= nil then
|
||||
neigh_tab:value("br-lan")
|
||||
for ifc in string.gmatch(sys_dir, "[^\n]+") do
|
||||
neigh_tab:value(ifc)
|
||||
end
|
||||
end
|
||||
|
||||
-- range all device
|
||||
device = m:section(NamedSection, "device", "hardware", translate("Device Info"))
|
||||
device:tab("none_catalog", translate("None_Catalog"))
|
||||
device:tab("phone_catalog", translate("Phone_Catalog"))
|
||||
device:tab("pc_catalog", translate("PC_Catalog"))
|
||||
device:tab("game_catalog", translate("Game_Catalog"))
|
||||
device:tab("vr_catalog", translate("VR_Catalog"))
|
||||
device:tab("unknown_catalog", translate("Unknown_Catalog"))
|
||||
|
||||
|
||||
local dhcp_map = {}
|
||||
-- check dhcp file
|
||||
if fs.access("/tmp/dhcp.leases") then
|
||||
for line in io.lines("/tmp/dhcp.leases") do
|
||||
-- check if read empty line
|
||||
if line == "" then
|
||||
break
|
||||
end
|
||||
-- split line
|
||||
local valueSl = string.gmatch(line, "[^ ]+")
|
||||
-- read time
|
||||
valueSl()
|
||||
-- read mac
|
||||
local mac = valueSl()
|
||||
-- get ip
|
||||
local ip = valueSl()
|
||||
-- get host name
|
||||
local hostname = valueSl()
|
||||
-- key
|
||||
local key = string.gsub(mac, ":", "")
|
||||
-- store key
|
||||
dhcp_map[key] = {
|
||||
["key"] = key,
|
||||
["mac"] = mac,
|
||||
["ip"] = ip,
|
||||
["name"] = hostname
|
||||
}
|
||||
end
|
||||
end
|
||||
|
||||
ifc = uci:get("accelerator", "base", "neigh")
|
||||
if ifc == nil then
|
||||
ifc = "br-lan"
|
||||
end
|
||||
|
||||
local arp_map = {}
|
||||
-- check if arp exist
|
||||
if fs.access("/proc/net/arp") then
|
||||
-- read all item from arp
|
||||
for line in io.lines("/proc/net/arp") do
|
||||
-- check if line is not exist
|
||||
if line == "" then
|
||||
break
|
||||
end
|
||||
-- split item
|
||||
local valueSl = string.gmatch(line, "[^ ]+")
|
||||
-- get ip
|
||||
local ip = valueSl()
|
||||
-- get type
|
||||
valueSl()
|
||||
-- get flag
|
||||
local flag = valueSl()
|
||||
-- get mac
|
||||
local mac = valueSl()
|
||||
-- get mask
|
||||
valueSl()
|
||||
-- get device
|
||||
local dev = valueSl()
|
||||
-- get key
|
||||
local key = string.gsub(mac, ":", "")
|
||||
-- check if device and flag state
|
||||
if dev == ifc and flag == "0x2" then
|
||||
-- get current name
|
||||
local name = mac
|
||||
if dhcp_map[key] ~= nil and dhcp_map[key] ~= "*" then
|
||||
name = dhcp_map[key].name
|
||||
end
|
||||
arp_map[key] = {
|
||||
["key"] = key,
|
||||
["mac"] = mac,
|
||||
["ip"] = ip,
|
||||
["name"] = name
|
||||
}
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
-- get device config
|
||||
for key, item in pairs(arp_map) do
|
||||
local typ = uci:get("accelerator", "device", key)
|
||||
-- get device catalog from type
|
||||
local catalog = "none_catalog"
|
||||
-- default to unknown device
|
||||
if typ == nil then
|
||||
typ = 9
|
||||
else
|
||||
typ = tonumber(typ)
|
||||
end
|
||||
|
||||
if typ == nil then
|
||||
catalog = "unknown_catalog"
|
||||
elseif typ >= 1 and typ <= 3 then
|
||||
catalog = "game_catalog"
|
||||
elseif typ >= 4 and typ <= 6 then
|
||||
catalog = "pc_catalog"
|
||||
elseif typ >= 7 and typ <= 8 then
|
||||
catalog = "phone_catalog"
|
||||
elseif typ >= 20 and typ <= 21 then
|
||||
catalog = "vr_catalog"
|
||||
else
|
||||
catalog = "unknown_catalog"
|
||||
end
|
||||
-- device type
|
||||
device_typ = device:taboption(catalog, ListValue, key, item.name)
|
||||
device_typ:value("0", "None")
|
||||
device_typ:value("1", "XBox")
|
||||
device_typ:value("2", "Switch")
|
||||
device_typ:value("3", "Play Station")
|
||||
device_typ:value("4", "Steam Deck")
|
||||
device_typ:value("5", "Windows")
|
||||
device_typ:value("6", "MacBook")
|
||||
device_typ:value("7", "Android")
|
||||
device_typ:value("8", "iPhone")
|
||||
device_typ:value("20", "Oculus")
|
||||
device_typ:value("21", "HTC Vive")
|
||||
device_typ:value("22", "Pico")
|
||||
device_typ:value("9", "Unknown")
|
||||
end
|
||||
|
||||
-- set
|
||||
device.write = function()
|
||||
util.exec("/etc/init.d/acc restart")
|
||||
end
|
||||
|
||||
return m
|
10
luci-app-leigod-acc/luasrc/model/cbi/leigod/notice.lua
Normal file
@ -0,0 +1,10 @@
|
||||
local uci = require "luci.model.uci".cursor()
|
||||
|
||||
-- config
|
||||
m = Map("accelerator")
|
||||
m.title = translate("Leigod Notice")
|
||||
m.description = translate("Leigod Accelerator Usage")
|
||||
|
||||
m:section(SimpleSection).template = "leigod/notice"
|
||||
|
||||
return m
|
10
luci-app-leigod-acc/luasrc/model/cbi/leigod/service.lua
Normal file
@ -0,0 +1,10 @@
|
||||
local uci = require "luci.model.uci".cursor()
|
||||
|
||||
-- config
|
||||
m = Map("accelerator")
|
||||
m.title = translate("Leigod Accelerator Config")
|
||||
m.description = translate("Control Accelerator Config")
|
||||
|
||||
m:section(SimpleSection).template = "leigod/service"
|
||||
|
||||
return m
|
74
luci-app-leigod-acc/luasrc/view/leigod/notice.htm
Normal file
@ -0,0 +1,74 @@
|
||||
<fieldset>
|
||||
<legend><%:Declare%></legend>
|
||||
此插件为 LEDE/QWRT 官方合作版插件, 需要配合雷神手机APP使用
|
||||
</p>
|
||||
<legend><%:Upgrade Info%></legend>
|
||||
<p>
|
||||
2024-8-1 <br>
|
||||
支持LEDE/QWRT性能优化 <br>
|
||||
2024-7-25 <br>
|
||||
支持非桥接模式下的旁路由 <br>
|
||||
2024-6-5 <br>
|
||||
扩充ipset容量, 以支持大容量代理ip库 <br>
|
||||
2024-1-22 <br>
|
||||
新增自动选择低延迟线路 <br>
|
||||
新增下载不限速(switch除外) <br>
|
||||
设备名为*时, 显示mac地址 <br>
|
||||
<hr/>
|
||||
2023-11-28 <br>
|
||||
新增对mips设备的支持 <br>
|
||||
新增对旁路由的支持 <br>
|
||||
解决翻译异常的问题 <br>
|
||||
设备管理页面可以显示未识别设备 <br>
|
||||
</p>
|
||||
<legend><%:Install Dependence%></legend>
|
||||
<p>
|
||||
插件运行需要借助一些依赖才能运行, 一般第三方固件默认已经集成了大部分的依赖, <br>
|
||||
如果使用的是openwrt官方的固件, 则需要确保依赖安装好了, 以下列出依赖包和注意事项 <br>
|
||||
libpcap <br>
|
||||
iptables <br>
|
||||
kmod-ipt-nat <br>
|
||||
iptables-mod-tproxy <br>
|
||||
kmod-ipt-tproxy <br>
|
||||
kmod-netem(非必须, 针对于一些icmp测速的游戏使用, 只影响界面显示, 实际游戏效果不影响) <br>
|
||||
tc-full(非必须, 同kmod-netem) <br>
|
||||
kmod-ipt-ipset <br>
|
||||
ipset <br>
|
||||
curl(谨慎更新, 某些三方固件升级curl, 会导致curl出现问题) <br>
|
||||
</p>
|
||||
<legend><%:Bridge Mode%></legend>
|
||||
<p>
|
||||
加速插件无法探知当前插件应该使用什么模式, <br>
|
||||
当前默认使用网桥作为流量转发的设备, <br>
|
||||
如果使用旁路由模式或者docker时, 此时默认设备不是网桥, <br>
|
||||
此时需要手动调整接口, <br>
|
||||
改变接口的地址在 设备管理->路由设备, 选择对应的设备 <br>
|
||||
</p>
|
||||
<legend><%:Acc Mode%></legend>
|
||||
<p>
|
||||
当前雷神路由器支持两种加速模式, tproxy 和 tun <br>
|
||||
当前默认采用的是tproxy模式, 原因在于tproxy有更好的性能<br>
|
||||
tun模式暂时屏蔽, 后续luci会完善一键切换模式
|
||||
</p>
|
||||
<legend><%:Acc Usage%></legend>
|
||||
<p>
|
||||
当前雷神加速插件是根据设备类型进行加速的, 也就是说, 如果加速了相应的类型后, 理论上只要连接该路由器的设备都将获得加速效果<br>
|
||||
当前支持的设备类型有以下几种: <br>
|
||||
手机: Android iPhone <br>
|
||||
电脑: Windows MacOS SteamDeck <br>
|
||||
主机: XBox Switch PlayStation <br>
|
||||
未识别: Others <br>
|
||||
可以在设备管理中, 插件自己的设备是否被成功识别成对应的设备, 如果不是, 可以选择对应的设备, 这样设备就能成功加速了 <br>
|
||||
</p>
|
||||
<p>
|
||||
一些特殊的说明: <br>
|
||||
关于ios设备, 最好是在安装插件之前, 先忘记网络, 等安装完插件后, 再重新连接网络 <br>
|
||||
关于android设备, 需要关闭dhcpv6后, 手机重连网络, 以下给出一个 /etc/config/dhcp 的配置 <br>
|
||||
config dhcp 'lan' <br>
|
||||
... 此处是一些其他配置 <br>
|
||||
ra 'disable' <br>
|
||||
dhcpv6 'disable' <br>
|
||||
list ra_flags 'none' <br>
|
||||
... 此处是一些其他配置 <br>
|
||||
</p>
|
||||
</fieldset>
|
61
luci-app-leigod-acc/luasrc/view/leigod/service.htm
Normal file
@ -0,0 +1,61 @@
|
||||
<!-- acc service state -->
|
||||
<fieldset class="cbi-section">
|
||||
<table class="cbi-section-table" id="acc_service_state_table">
|
||||
<tr class="cbi-section-table-title">
|
||||
<th class="cbi-section-table-cell"><%:Acc_Service_Name%></th>
|
||||
<th class="cbi-section-table-cell"><%:Acc_Service_Status%></th>
|
||||
<th class="cbi-section-table-cell"><%:Acc_Service_Operate%></th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><%:Acc_Service%></td>
|
||||
<td id="acc_service_state_cell"><%:Acc_Service_Status%></td>
|
||||
<td id="acc_service_state_button"><%:Acc_Service_Operate%></td>
|
||||
</tr>
|
||||
</table>
|
||||
</fieldset>
|
||||
|
||||
<!-- acc catalog state -->
|
||||
<fieldset class="cbi-section">
|
||||
<legend><%:Acc Catalog State%></legend>
|
||||
<table class="cbi-section-table" id="acc_catalog_state_table">
|
||||
<tr class="cbi-section-table-title">
|
||||
<th class="cbi-section-table-cell"><%:Acc_Catalog%></th>
|
||||
<th class="cbi-section-table-cell"><%:Acc_Catalog_Status%></th>
|
||||
</tr>
|
||||
</table>
|
||||
</fieldset>
|
||||
|
||||
|
||||
<script type="text/javascript">//<![CDATA[
|
||||
// start acc service
|
||||
function start_acc_service() {
|
||||
XHR.get('<%=luci.dispatcher.build_url("admin", "services", "acc", "start_acc_service")%>', null, function(x) {});
|
||||
}
|
||||
// start acc service
|
||||
function stop_acc_service() {
|
||||
XHR.get('<%=luci.dispatcher.build_url("admin", "services", "acc", "stop_acc_service")%>', null, function(x) {});
|
||||
}
|
||||
|
||||
XHR.poll(5, '<%=url('admin/services/acc/status')%>', null, function(x, st) {
|
||||
var service_cell = document.getElementById("acc_service_state_cell");
|
||||
var button_cell = document.getElementById("acc_service_state_button");
|
||||
if (st && service_cell && button_cell) {
|
||||
service_cell.innerHTML = st["service"];
|
||||
if (st["service"] == "Acc Service Enabled" || st["service"] == "已启动" || st["service"] == "加速服务已启动")
|
||||
button_cell.innerHTML = '<input type="button" class="btn cbi-button cbi-button-apply" value="<%:Stop Acc Service%>" onclick="return stop_acc_service()"/>';
|
||||
else
|
||||
button_cell.innerHTML = '<input type="button" class="btn cbi-button cbi-button-apply" value="<%:Start Acc Service%>" onclick="return start_acc_service()"/>';
|
||||
}
|
||||
var catalog_table = document.getElementById("acc_catalog_state_table");
|
||||
if (st && catalog_table) {
|
||||
while(catalog_table.rows.length > 1)
|
||||
catalog_table.deleteRow(1);
|
||||
var status_map = st["state"];
|
||||
for (var typ in status_map) {
|
||||
var tr = catalog_table.insertRow(-1);
|
||||
tr.insertCell(-1).innerHTML = typ;
|
||||
tr.insertCell(-1).innerHTML = status_map[typ];
|
||||
}
|
||||
}
|
||||
});
|
||||
//]]></script>
|
120
luci-app-leigod-acc/po/zh-cn/leigo-acc.po
Normal file
@ -0,0 +1,120 @@
|
||||
|
||||
msgid "Leigod Acc"
|
||||
msgstr "雷神加速器"
|
||||
|
||||
msgid "Leigod Service"
|
||||
msgstr "服务控制"
|
||||
|
||||
msgid "Leigod Device"
|
||||
msgstr "设备管理"
|
||||
|
||||
msgid "Leigod Notice"
|
||||
msgstr "加速公告"
|
||||
|
||||
msgid "Leigod Accelerator Config"
|
||||
msgstr "加速器配置"
|
||||
|
||||
msgid "Control Accelerator Config"
|
||||
msgstr "控制加速配置选项"
|
||||
|
||||
msgid "Acc_Service_Name"
|
||||
msgstr "服务名称"
|
||||
|
||||
msgid "Acc_Service_Status"
|
||||
msgstr "启动状态"
|
||||
|
||||
msgid "Acc_Service_Operate"
|
||||
msgstr "加速设置"
|
||||
|
||||
msgid "Acc Catalog State"
|
||||
msgstr "加速状态"
|
||||
|
||||
msgid "Acc_Catalog"
|
||||
msgstr "加速设备"
|
||||
|
||||
msgid "Acc_Catalog_Status"
|
||||
msgstr "加速状态"
|
||||
|
||||
msgid "Declare"
|
||||
msgstr "说明"
|
||||
|
||||
msgid "Upgrade Info"
|
||||
msgstr "更新内容"
|
||||
|
||||
msgid "Install Dependence"
|
||||
msgstr "安装依赖"
|
||||
|
||||
msgid "Bridge Mode"
|
||||
msgstr "旁路由模式"
|
||||
|
||||
msgid "Acc Mode"
|
||||
msgstr "加速模式"
|
||||
|
||||
msgid "Acc Usage"
|
||||
msgstr "使用说明"
|
||||
|
||||
msgid "Leigod Accelerator Usage"
|
||||
msgstr "雷神加速插件使用"
|
||||
|
||||
msgid "Leigod Device Config"
|
||||
msgstr "设备管理配置"
|
||||
|
||||
msgid "Control Device Config"
|
||||
msgstr "控制和改变设备类型"
|
||||
|
||||
msgid "Neigh Device"
|
||||
msgstr "路由设置"
|
||||
|
||||
msgid "acc interface"
|
||||
msgstr "代理接口"
|
||||
|
||||
msgid "Device Info"
|
||||
msgstr "设备信息"
|
||||
|
||||
msgid "None_Catalog"
|
||||
msgstr "未分类设备"
|
||||
|
||||
msgid "Phone_Catalog"
|
||||
msgstr "手机设备"
|
||||
|
||||
msgid "None_Catalog"
|
||||
msgstr "未分类设备"
|
||||
|
||||
msgid "PC_Catalog"
|
||||
msgstr "PC设备"
|
||||
|
||||
msgid "Game_Catalog"
|
||||
msgstr "游戏机"
|
||||
|
||||
msgid "VR_Catalog"
|
||||
msgstr "VR设备"
|
||||
|
||||
msgid "Unknown_Catalog"
|
||||
msgstr "未识别设备"
|
||||
|
||||
msgid "acc_service"
|
||||
msgstr "雷神加速器服务"
|
||||
|
||||
msgid "Acc_Service"
|
||||
msgstr "雷神加速器服务"
|
||||
|
||||
msgid "Stop Acc Service"
|
||||
msgstr "停止加速服务"
|
||||
|
||||
msgid "Start Acc Service"
|
||||
msgstr "启动加速服务"
|
||||
|
||||
msgid "Acc Service Disabled"
|
||||
msgstr "加速服务已被禁用"
|
||||
|
||||
msgid "Acc Service Enabled"
|
||||
msgstr "已启动"
|
||||
|
||||
msgid "Acc Catalog Started"
|
||||
msgstr "已禁用"
|
||||
|
||||
msgid "Acc Catalog Stopped"
|
||||
msgstr "该设备类别加速已停止"
|
||||
|
||||
msgid "Acc Catalog Paused"
|
||||
msgstr "该设备类别加速已暂停"
|
1
luci-app-leigod-acc/po/zh_Hans
Symbolic link
@ -0,0 +1 @@
|
||||
zh-cn
|
18
luci-app-leigod-acc/root/etc/config/accelerator
Normal file
@ -0,0 +1,18 @@
|
||||
|
||||
config system 'base'
|
||||
option url 'https://opapi.nn.com/speed/router/plug/check'
|
||||
option heart 'https://opapi.nn.com/speed/router/heartbeat'
|
||||
option base_url 'https://opapi.nn.com/speed'
|
||||
|
||||
config bind 'bind'
|
||||
|
||||
config hardware 'device'
|
||||
|
||||
config acceleration 'Phone'
|
||||
|
||||
config acceleration 'PC'
|
||||
|
||||
config acceleration 'Game'
|
||||
|
||||
config acceleration 'Unknown'
|
||||
|
162
luci-app-leigod-acc/root/etc/init.d/acc
Executable file
@ -0,0 +1,162 @@
|
||||
#!/bin/sh /etc/rc.common
|
||||
|
||||
# start prio
|
||||
START=50
|
||||
# use proc to start service
|
||||
USE_PROCD=1
|
||||
# package name
|
||||
PACKAGE_NAME="acc.ipk"
|
||||
# binary dir
|
||||
sbin_dir="/usr/sbin/leigod"
|
||||
# binary name
|
||||
binary_prefix="acc-gw.linux"
|
||||
|
||||
|
||||
# download acceleration binary
|
||||
download_acc_binary() {
|
||||
echo "begin to download file... ..."
|
||||
# create download
|
||||
local url="http://119.3.40.126/${PACKAGE_NAME}"
|
||||
echo "download path: ${url}"
|
||||
local path="/tmp/${PACKAGE_NAME}"
|
||||
local code=$(curl --connect-timeout 2 -L -s -k -o "${path}" -w "%{http_code}" "${url}")
|
||||
for i in $(seq 1 2)
|
||||
do
|
||||
if [ "$?" != "0" -o "${code}" != "200" -o ! -f "${path}" ]; then
|
||||
echo "download failed: ${code}"
|
||||
rm -f ${path}
|
||||
sleep 5
|
||||
continue
|
||||
fi
|
||||
echo "download success"
|
||||
break
|
||||
done
|
||||
|
||||
echo "download file success... ..."
|
||||
}
|
||||
|
||||
# mkdir acc dir
|
||||
mk_acc_dir() {
|
||||
echo "begin to mkdir... ..."
|
||||
# should make sure dir exist
|
||||
local cmd="mkdir -p ${BINARY_DIR}"
|
||||
echo "exec mkdir dir: ${cmd}"
|
||||
local code=`$cmd`
|
||||
echo "mkdir success... ..."
|
||||
}
|
||||
|
||||
# decompress file
|
||||
decompress_file() {
|
||||
echo "begin to decompress file... ..."
|
||||
# compress file path
|
||||
local path="/tmp/${PACKAGE_NAME}"
|
||||
# decompress command
|
||||
local cmd="tar -zxvf ${path} -C ${BINARY_DIR}"
|
||||
local code=`${cmd}`
|
||||
echo "decompress file success... ..."
|
||||
}
|
||||
|
||||
# install ipk
|
||||
install_package() {
|
||||
echo "begin to overwrite package"
|
||||
# local cmd = "opkg install /tmp/${PACKAGE_NAME} --force-overwrite"
|
||||
# `$cmd`
|
||||
echo "overwrite finish, begin to start"
|
||||
}
|
||||
|
||||
# main
|
||||
prepare_env() {
|
||||
# mkdir
|
||||
mk_acc_dir
|
||||
# download file
|
||||
download_acc_binary
|
||||
# decompress file
|
||||
install_package
|
||||
}
|
||||
|
||||
main() {
|
||||
prepare_env
|
||||
}
|
||||
|
||||
# get_device_arch,
|
||||
# current support arch: arm64 arm x86_64 mips
|
||||
get_device_arch() {
|
||||
arch=$(uname -m)
|
||||
if [ $? != "0" ]; then
|
||||
echo "arch cant be get"
|
||||
return -1
|
||||
fi
|
||||
# fix arch
|
||||
if [ ${arch} == "x86_64" ]; then
|
||||
echo "match x86_64 -> amd64"
|
||||
arch="amd64"
|
||||
elif [ ${arch} == "aarch64" ]; then
|
||||
echo "match aarch64 -> arm64"
|
||||
arch="arm64"
|
||||
elif [ ${arch} == "mips" ]; then
|
||||
echo "match mips -> mipsle"
|
||||
arch="mipsle"
|
||||
elif [ ${arch} == "armv7l" ]; then
|
||||
echo "match armv7l -> arm"
|
||||
arch="arm"
|
||||
fi
|
||||
return 0
|
||||
}
|
||||
|
||||
# get_xiaomi_name check if is xiaomi
|
||||
get_xiaomi_name() {
|
||||
local name=$(uci get misc.hardware.displayName)
|
||||
if [[ $? == "0" && ${name} != "" ]]; then
|
||||
echo "router is xiaomi series, name: ${name}"
|
||||
sbin_dir="/userdisk/appdata/leigod"
|
||||
init_dir="/userdisk/appdata/leigod"
|
||||
args="--mode tun"
|
||||
is_xiaomi=true
|
||||
return 0
|
||||
fi
|
||||
local name=$(uci get misc.hardware.model)
|
||||
if [[ $? == "0" && ${name} != "" ]]; then
|
||||
echo "router is xiaomi series, name: ${name}"
|
||||
sbin_dir="/userdisk/appdata/leigod"
|
||||
init_dir="/userdisk/appdata/leigod"
|
||||
args="--mode tun"
|
||||
is_xiaomi=true
|
||||
return 0
|
||||
fi
|
||||
echo "router is not xiaomi, use general openwrt"
|
||||
sbin_dir="/usr/sbin/leigod"
|
||||
init_dir="/etc/init.d"
|
||||
show_openwrt_suggestion
|
||||
return 0
|
||||
}
|
||||
|
||||
# run service as daemon
|
||||
start_service_daemon() {
|
||||
# open once instance
|
||||
procd_open_instance
|
||||
# run binary
|
||||
local cmd="${sbin_dir}/${binary_prefix}.${arch} ${args}"
|
||||
echo "start service: ${cmd}"
|
||||
procd_set_param command ${cmd}
|
||||
# auto start when failed
|
||||
procd_set_param respawn
|
||||
# close instance
|
||||
procd_close_instance
|
||||
# start check update
|
||||
# update_plugin &
|
||||
# start led light
|
||||
# /etc/init.d/internetled start
|
||||
}
|
||||
|
||||
|
||||
# proc start service
|
||||
start_service() {
|
||||
# prepare env
|
||||
# prepare_env
|
||||
# run service as daemon
|
||||
get_device_arch
|
||||
get_xiaomi_name
|
||||
start_service_daemon
|
||||
}
|
||||
|
||||
|
24
luci-app-leigod-acc/root/etc/uci-defaults/99-accelerator-config
Executable file
@ -0,0 +1,24 @@
|
||||
#!/bin/sh
|
||||
|
||||
# check if file exist
|
||||
if [ ! -f /etc/config/accelerator ]; then
|
||||
echo "file not exist, should create..."
|
||||
touch /etc/config/accelerator
|
||||
uci set accelerator.base=system
|
||||
uci set accelerator.device=hardware
|
||||
uci set accelerator.Phone=acceleration
|
||||
uci set accelerator.PC=acceleration
|
||||
uci set accelerator.Game=acceleration
|
||||
uci set accelerator.Unknown=acceleration
|
||||
uci commit accelerator
|
||||
fi
|
||||
|
||||
uci set accelerator.base.url='https://opapi.nn.com/speed/router/plug/check'
|
||||
uci set accelerator.base.heart='https://opapi.nn.com/speed/router/heartbeat'
|
||||
uci set accelerator.base.base_url='https://opapi.nn.com/speed'
|
||||
uci commit accelerator
|
||||
|
||||
echo "Fistboot Disable "
|
||||
|
||||
/etc/init.d/acc stop
|
||||
/etc/init.d/acc disable
|
@ -0,0 +1,11 @@
|
||||
{
|
||||
"luci-app-leigod-acc": {
|
||||
"description": "Grant UCI access for luci-app-leigod-acc",
|
||||
"read": {
|
||||
"uci": [ "accelerator" ]
|
||||
},
|
||||
"write": {
|
||||
"uci": [ "accelerator" ]
|
||||
}
|
||||
}
|
||||
}
|
@ -157,90 +157,95 @@ return view.extend({
|
||||
o = s.option(form.Flag, 'mixin', _('Mixin'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.option(form.Flag, 'test_profile', _('Test Profile'));
|
||||
o.rmempty = false;
|
||||
|
||||
s = m.section(form.NamedSection, 'proxy', 'proxy', _('Proxy Config'));
|
||||
|
||||
o = s.option(form.Flag, 'transparent_proxy', _('Transparent Proxy'));
|
||||
s.tab('transparent_proxy', _('Transparent Proxy'));
|
||||
|
||||
o = s.taboption('transparent_proxy', form.Flag, 'transparent_proxy', _('Enable'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.option(form.Flag, 'ipv4_proxy', _('IPv4 Proxy'));
|
||||
o = s.taboption('transparent_proxy', form.ListValue, 'transparent_proxy_mode', _('Mode'));
|
||||
o.retain = true;
|
||||
o.rmempty = false;
|
||||
o.depends('transparent_proxy', '1');
|
||||
o.value('tproxy', _('TPROXY Mode'));
|
||||
o.value('tun', _('TUN Mode'));
|
||||
|
||||
o = s.option(form.Flag, 'ipv6_proxy', _('IPv6 Proxy'));
|
||||
o = s.taboption('transparent_proxy', form.Flag, 'ipv4_proxy', _('IPv4 Proxy'));
|
||||
o.retain = true;
|
||||
o.rmempty = false;
|
||||
o.depends('transparent_proxy', '1');
|
||||
|
||||
o = s.option(form.Flag, 'router_proxy', _('Router Proxy'));
|
||||
o = s.taboption('transparent_proxy', form.Flag, 'ipv6_proxy', _('IPv6 Proxy'));
|
||||
o.retain = true;
|
||||
o.rmempty = false;
|
||||
o.depends('transparent_proxy', '1');
|
||||
|
||||
o = s.option(form.ListValue, 'access_control_mode', _('Access Control Mode'));
|
||||
o = s.taboption('transparent_proxy', form.Flag, 'router_proxy', _('Router Proxy'));
|
||||
o.retain = true;
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.taboption('transparent_proxy', form.Flag, 'dns_hijack', _('DNS Hijack'));
|
||||
o.retain = true;
|
||||
o.rmempty = false;
|
||||
|
||||
s.tab('access_control', _('Access Control'));
|
||||
|
||||
o = s.taboption('access_control', form.ListValue, 'access_control_mode', _('Mode'));
|
||||
o.retain = true;
|
||||
o.rmempty = false;
|
||||
o.value('all', _('All Mode'));
|
||||
o.value('allow', _('Allow Mode'));
|
||||
o.value('block', _('Block Mode'));
|
||||
o.value('forbid', _('Forbid Mode'));
|
||||
o.depends('transparent_proxy', '1');
|
||||
|
||||
o = s.option(form.DynamicList, 'acl_ip', _('Access Control IP'));
|
||||
o = s.taboption('access_control', form.DynamicList, 'acl_ip', 'IP');
|
||||
o.datatype = 'ipmask4';
|
||||
o.retain = true;
|
||||
o.depends({ 'transparent_proxy': '1', 'access_control_mode': 'allow' });
|
||||
o.depends({ 'transparent_proxy': '1', 'access_control_mode': 'block' });
|
||||
o.depends('access_control_mode', 'allow');
|
||||
o.depends('access_control_mode', 'block');
|
||||
|
||||
o = s.option(form.DynamicList, 'acl_ip6', _('Access Control IP6'));
|
||||
o = s.taboption('access_control', form.DynamicList, 'acl_ip6', 'IP6');
|
||||
o.datatype = 'ipmask6';
|
||||
o.retain = true;
|
||||
o.depends({ 'transparent_proxy': '1', 'access_control_mode': 'allow' });
|
||||
o.depends({ 'transparent_proxy': '1', 'access_control_mode': 'block' });
|
||||
o.depends('access_control_mode', 'allow');
|
||||
o.depends('access_control_mode', 'block');
|
||||
|
||||
o = s.option(form.DynamicList, 'acl_mac', _('Access Control MAC'));
|
||||
o = s.taboption('access_control', form.DynamicList, 'acl_mac', 'MAC');
|
||||
o.datatype = 'macaddr';
|
||||
o.retain = true;
|
||||
o.depends({ 'transparent_proxy': '1', 'access_control_mode': 'allow' });
|
||||
o.depends({ 'transparent_proxy': '1', 'access_control_mode': 'block' });
|
||||
o.depends('access_control_mode', 'allow');
|
||||
o.depends('access_control_mode', 'block');
|
||||
|
||||
o = s.option(form.Flag, 'dns_hijack', _('DNS Hijack'));
|
||||
s.tab('bypass', _('Bypass'));
|
||||
|
||||
o = s.taboption('bypass', form.Flag, 'bypass_china_mainland_ip', _('Bypass China Mainland IP'));
|
||||
o.retain = true;
|
||||
o.rmempty = false;
|
||||
o.depends('transparent_proxy', '1');
|
||||
|
||||
o = s.option(form.Flag, 'bypass_china_mainland_ip', _('Bypass China Mainland IP'));
|
||||
o.retain = true;
|
||||
o.rmempty = false;
|
||||
o.depends('transparent_proxy', '1');
|
||||
|
||||
o = s.option(form.Value, 'acl_tcp_dport', _('Destination TCP Port to Proxy'));
|
||||
o = s.taboption('bypass', form.Value, 'acl_tcp_dport', _('Destination TCP Port to Proxy'));
|
||||
o.retain = true;
|
||||
o.rmempty = false;
|
||||
o.value('1-65535', _('All Port'));
|
||||
o.value('21 22 80 110 143 194 443 465 993 995 8080 8443', _('Commonly Used Port'));
|
||||
o.depends('transparent_proxy', '1');
|
||||
|
||||
o = s.option(form.Value, 'acl_udp_dport', _('Destination UDP Port to Proxy'));
|
||||
o = s.taboption('bypass', form.Value, 'acl_udp_dport', _('Destination UDP Port to Proxy'));
|
||||
o.retain = true;
|
||||
o.rmempty = false;
|
||||
o.value('1-65535', _('All Port'));
|
||||
o.value('123 443 8443', _('Commonly Used Port'));
|
||||
o.depends('transparent_proxy', '1');
|
||||
|
||||
o = s.option(widgets.NetworkSelect, 'wan_interfaces', _('WAN Interfaces'));
|
||||
o = s.taboption('bypass', widgets.NetworkSelect, 'wan_interfaces', _('WAN Interfaces'));
|
||||
o.multiple = true;
|
||||
o.optional = false;
|
||||
o.retain = true;
|
||||
o.rmempty = false;
|
||||
o.depends('transparent_proxy', '1');
|
||||
|
||||
o = s.option(widgets.NetworkSelect, 'wan6_interfaces', _('WAN6 Interfaces'));
|
||||
o = s.taboption('bypass', widgets.NetworkSelect, 'wan6_interfaces', _('WAN6 Interfaces'));
|
||||
o.multiple = true;
|
||||
o.optional = true;
|
||||
o.retain = true;
|
||||
o.rmempty = false;
|
||||
o.depends('transparent_proxy', '1');
|
||||
|
||||
s = m.section(form.TableSection, 'subscription', _('Subscription Config'));
|
||||
s.addremove = true;
|
||||
@ -262,9 +267,9 @@ return view.extend({
|
||||
o.value('direct', _('Direct Mode'));
|
||||
|
||||
o = s.taboption('general', form.ListValue, 'match_process', _('Match Process'));
|
||||
o.value('always');
|
||||
o.value('strict');
|
||||
o.value('off');
|
||||
o.value('strict', _('Auto'));
|
||||
o.value('always', _('Enable'));
|
||||
o.value('off', _('Disable'));
|
||||
|
||||
o = s.taboption('general', widgets.NetworkSelect, 'outbound_interface', _('Outbound Interface'));
|
||||
o.optional = true;
|
||||
@ -373,6 +378,31 @@ return view.extend({
|
||||
so = o.subsection.option(form.Value, 'password', _('Password'));
|
||||
so.rmempty = false;
|
||||
|
||||
s.tab('tun', _('TUN Config'));
|
||||
|
||||
o = s.taboption('tun', form.ListValue, 'tun_stack', _('Stack'));
|
||||
o.retain = true;
|
||||
o.value('system', 'System');
|
||||
o.value('gvisor', 'gVisor');
|
||||
o.value('mixed', 'Mixed');
|
||||
|
||||
o = s.taboption('tun', form.Value, 'tun_mtu', _('MTU'));
|
||||
o.placeholder = '9000';
|
||||
o.retain = true;
|
||||
|
||||
o = s.taboption('tun', form.Flag, 'tun_gso', _('GSO'));
|
||||
o.retain = true;
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.taboption('tun', form.Value, 'tun_gso_max_size', _('GSO Max Size'));
|
||||
o.placeholder = '65536';
|
||||
o.retain = true;
|
||||
o.depends('tun_gso', '1');
|
||||
|
||||
o = s.taboption('tun', form.Flag, 'tun_endpoint_independent_nat', _('Endpoint Independent NAT'));
|
||||
o.retain = true;
|
||||
o.rmempty = false;
|
||||
|
||||
s.tab('dns', _('DNS Config'));
|
||||
|
||||
o = s.taboption('dns', form.Value, 'dns_port', _('DNS Port'));
|
||||
@ -380,8 +410,8 @@ return view.extend({
|
||||
o.placeholder = '1053';
|
||||
|
||||
o = s.taboption('dns', form.ListValue, 'dns_mode', _('DNS Mode'));
|
||||
o.value('fake-ip', _('Fake-IP'));
|
||||
o.value('redir-host', _('Redir-Host'));
|
||||
o.value('fake-ip', 'Fake-IP');
|
||||
o.value('redir-host', 'Redir-Host');
|
||||
|
||||
o = s.taboption('dns', form.Value, 'fake_ip_range', _('Fake-IP Range'));
|
||||
o.datatype = 'cidr4';
|
||||
|
@ -31,6 +31,21 @@ msgstr "未在运行"
|
||||
msgid "Enable"
|
||||
msgstr "启用"
|
||||
|
||||
msgid "Disable"
|
||||
msgstr "禁用"
|
||||
|
||||
msgid "Auto"
|
||||
msgstr "自动"
|
||||
|
||||
msgid "Mode"
|
||||
msgstr "模式"
|
||||
|
||||
msgid "Type"
|
||||
msgstr "类型"
|
||||
|
||||
msgid "Value"
|
||||
msgstr "值"
|
||||
|
||||
msgid "Scheduled Restart"
|
||||
msgstr "定时重启"
|
||||
|
||||
@ -52,12 +67,21 @@ msgstr "上传配置文件"
|
||||
msgid "Mixin"
|
||||
msgstr "混入"
|
||||
|
||||
msgid "Test Profile"
|
||||
msgstr "检查配置文件"
|
||||
|
||||
msgid "Proxy Config"
|
||||
msgstr "代理配置"
|
||||
|
||||
msgid "Transparent Proxy"
|
||||
msgstr "透明代理"
|
||||
|
||||
msgid "TPROXY Mode"
|
||||
msgstr "TPROXY 模式"
|
||||
|
||||
msgid "TUN Mode"
|
||||
msgstr "TUN 模式"
|
||||
|
||||
msgid "IPv4 Proxy"
|
||||
msgstr "IPv4 代理"
|
||||
|
||||
@ -67,8 +91,11 @@ msgstr "IPv6 代理"
|
||||
msgid "Router Proxy"
|
||||
msgstr "路由器代理"
|
||||
|
||||
msgid "Access Control Mode"
|
||||
msgstr "访问控制模式"
|
||||
msgid "DNS Hijack"
|
||||
msgstr "DNS 劫持"
|
||||
|
||||
msgid "Access Control"
|
||||
msgstr "访问控制"
|
||||
|
||||
msgid "All Mode"
|
||||
msgstr "全部模式"
|
||||
@ -82,17 +109,8 @@ msgstr "黑名单模式"
|
||||
msgid "Forbid Mode"
|
||||
msgstr "禁止模式"
|
||||
|
||||
msgid "Access Control IP"
|
||||
msgstr "访问控制 IP"
|
||||
|
||||
msgid "Access Control IP6"
|
||||
msgstr "访问控制 IP6"
|
||||
|
||||
msgid "Access Control MAC"
|
||||
msgstr "访问控制 MAC"
|
||||
|
||||
msgid "DNS Hijack"
|
||||
msgstr "DNS 劫持"
|
||||
msgid "Bypass"
|
||||
msgstr "绕过"
|
||||
|
||||
msgid "Bypass China Mainland IP"
|
||||
msgstr "绕过中国大陆 IP"
|
||||
@ -232,6 +250,24 @@ msgstr "用户名"
|
||||
msgid "password"
|
||||
msgstr "密码"
|
||||
|
||||
msgid "TUN Config"
|
||||
msgstr "TUN 配置"
|
||||
|
||||
msgid "Stack"
|
||||
msgstr "栈"
|
||||
|
||||
msgid "Device"
|
||||
msgstr "设备"
|
||||
|
||||
msgid "GSO"
|
||||
msgstr "通用分段卸载"
|
||||
|
||||
msgid "GSO Max Size"
|
||||
msgstr "分段最大长度"
|
||||
|
||||
msgid "Endpoint Independent NAT"
|
||||
msgstr "独立于端点的 NAT"
|
||||
|
||||
msgid "DNS Config"
|
||||
msgstr "DNS 配置"
|
||||
|
||||
@ -241,12 +277,6 @@ msgstr "DNS 端口"
|
||||
msgid "DNS Mode"
|
||||
msgstr "DNS 模式"
|
||||
|
||||
msgid "Fake-IP"
|
||||
msgstr "Fake-IP"
|
||||
|
||||
msgid "Redir-Host"
|
||||
msgstr "Redir-Host"
|
||||
|
||||
msgid "Fake-IP Range"
|
||||
msgstr "Fake-IP 范围"
|
||||
|
||||
@ -277,9 +307,6 @@ msgstr "覆盖 DNS 服务器"
|
||||
msgid "Edit Nameservers"
|
||||
msgstr "编辑 DNS 服务器"
|
||||
|
||||
msgid "Type"
|
||||
msgstr "类型"
|
||||
|
||||
msgid "Nameserver"
|
||||
msgstr "DNS 服务器"
|
||||
|
||||
@ -289,9 +316,6 @@ msgstr "覆盖 Fallback 过滤列表"
|
||||
msgid "Edit Fallback Filters"
|
||||
msgstr "编辑 Fallback 过滤列表"
|
||||
|
||||
msgid "Value"
|
||||
msgstr "值"
|
||||
|
||||
msgid "Overwrite Nameserver Policy"
|
||||
msgstr "覆盖 DNS 服务器查询策略"
|
||||
|
||||
|
@ -1,11 +1,6 @@
|
||||
#!/bin/sh
|
||||
|
||||
# paths
|
||||
home_dir="/etc/mihomo"
|
||||
run_dir="$home_dir/run"
|
||||
run_app_log_path="$run_dir/app.log"
|
||||
run_core_log_path="$run_dir/core.log"
|
||||
run_profile_path="$run_dir/config.yaml"
|
||||
. $IPKG_INSTROOT/etc/mihomo/scripts/constants.sh
|
||||
|
||||
action=$1
|
||||
shift
|
||||
@ -14,17 +9,17 @@ case "$action" in
|
||||
clear)
|
||||
case "$1" in
|
||||
app_log)
|
||||
echo -n > "$run_app_log_path"
|
||||
echo -n > "$RUN_APP_LOG_PATH"
|
||||
;;
|
||||
core_log)
|
||||
echo -n > "$run_core_log_path"
|
||||
echo -n > "$RUN_CORE_LOG_PATH"
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
load)
|
||||
case "$1" in
|
||||
profile)
|
||||
yq -M -o json < "$run_profile_path"
|
||||
yq -M -o json < "$RUN_PROFILE_PATH"
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 8.5 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 8.7 KiB |
@ -1,95 +0,0 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<path style="fill:#FF4B55;" d="M473.655,423.724H38.346c-21.177,0-38.345-17.167-38.345-38.345V126.622 c0-21.177,17.167-38.345,38.345-38.345h435.309c21.177,0,38.345,17.167,38.345,38.345V385.38 C512,406.557,494.833,423.724,473.655,423.724z"/>
|
||||
<path style="fill:#41479B;" d="M0.001,126.622v120.582c0.017,4.861,3.961,8.797,8.826,8.797h238.344 c4.875,0,8.828-3.953,8.828-8.828V97.104c0-4.874-3.95-8.825-8.823-8.828H38.346C17.169,88.277,0.001,105.444,0.001,126.622z"/>
|
||||
<path style="fill:#F5F5F5;" d="M150.069,141.849V88.277h-44.138v53.573L26.845,90.035c-9.234,2.9-16.954,9.203-21.711,17.434 l65.022,42.601H0.001v44.138h70.153L0.001,240.169v7.033c0.017,4.861,3.961,8.797,8.826,8.797H24.16l81.77-53.572V256h44.138 v-53.573L231.838,256h15.333c4.875,0,8.828-3.953,8.828-8.828v-7.002l-70.155-45.963h70.155V150.07h-70.155l70.155-45.964v-7.002 c0-4.874-3.95-8.825-8.823-8.828h-15.338L150.069,141.849z"/>
|
||||
<g>
|
||||
<polygon style="fill:#FF4B55;" points="255.999,158.897 141.241,158.897 141.241,88.277 114.758,88.277 114.758,158.897 0,158.897 0,185.38 114.758,185.38 114.758,256.001 141.241,256.001 141.241,185.38 255.999,185.38 "/>
|
||||
<path style="fill:#FF4B55;" d="M8.228,102.903l72.661,47.166h16.214l-82.495-53.55C12.239,98.39,10.098,100.533,8.228,102.903z"/>
|
||||
<path style="fill:#FF4B55;" d="M166.283,150.07l88.374-57.366c-1.536-2.599-4.246-4.427-7.485-4.427h-1.909l-95.194,61.793H166.283 z"/>
|
||||
<path style="fill:#FF4B55;" d="M89.474,194.208L1.269,251.462c1.519,2.663,4.273,4.537,7.559,4.537h1.665l95.195-61.793H89.474 V194.208z"/>
|
||||
<path style="fill:#FF4B55;" d="M255.859,247.866l-82.666-53.658H156.98l93.873,60.934 C253.666,253.837,255.594,251.102,255.859,247.866z"/>
|
||||
</g>
|
||||
<path style="fill:#F5F5F5;" d="M320.945,174.03c-1.741,0-3.153,1.411-3.153,3.153v116.65c0,9.458,6.305,40.985,66.207,50.443 c59.902-9.458,66.207-40.985,66.207-50.443v-116.65c0-1.741-1.411-3.153-3.153-3.153L320.945,174.03L320.945,174.03z"/>
|
||||
<path style="fill:#73AF00;" d="M383.999,344.276c50.004-7.895,62.651-31.16,65.469-44.138H318.531 C321.348,313.115,333.995,336.38,383.999,344.276z"/>
|
||||
<path style="fill:#82AFFF;" d="M424.984,240.237c0,0,3.153-3.153,0-9.458l-40.985-1.834l-40.985,1.834c-3.153,6.305,0,9.458,0,9.458 c-3.153,3.153-3.153,6.305-3.153,6.305h6.305l6.831,11.297l31.001,17.078L415,257.84l6.831-11.297h6.305 C428.137,246.542,428.137,243.389,424.984,240.237z"/>
|
||||
<path style="fill:#F5F5F5;" d="M415.002,257.839c0,0-1.971-4.335-7.225-3.809c0,0-2.89-3.809-7.751-2.759 c0,0-5.649-3.284-8.932,2.759c0,0-10.444-1.062-11.002,6.891c0,0,16.256,24.504,16.651,24.767 c0.394,0.263,19.442,0.131,19.442,0.131l8.802-9.711l-8.671-12.489L415.002,257.839z"/>
|
||||
<path style="fill:#F0C850;" d="M384.394,265.589c0,0-13.79-22.528-15.764-24.434c-1.905-1.839-5.649-3.546-9.459-0.394 c0,0-11.428-0.919-9.853,7.751l3.284,13.137c0,0-2.89,9.064-4.204,9.984c-1.313,0.919-6.174,3.415-6.174,3.415l2.759,10.903 l36.781-1.839L384.394,265.589z"/>
|
||||
<path style="fill:#965032;" d="M400.288,255.738l-0.043,0.019l-1.017-2.401c-0.082-0.194-0.238-0.348-0.434-0.425 s-0.413-0.074-0.609,0.012l-6.842,3.017l-8.138-13.322c0.361-0.31,0.518-0.817,0.348-1.289c-0.22-0.616-0.897-0.936-1.512-0.717 l-1.814,0.649L379,237.655c-0.14-0.413-0.585-0.628-0.999-0.495c-0.413,0.141-0.634,0.588-0.494,1.001l1.236,3.654l-1.939,0.694 c-0.615,0.222-0.935,0.899-0.714,1.512c0.172,0.483,0.628,0.786,1.113,0.786c0.068,0,0.138-0.023,0.207-0.035l2.682,16.153 l-1.73,0.762c-0.377,0.167-0.564,0.597-0.424,0.985l0.981,2.732c0.024,0.46,0.022,1.236-0.135,2.218l-11.006-18.879 c0.462-0.289,0.693-0.851,0.502-1.383c-0.222-0.616-0.893-0.939-1.512-0.717l-1.814,0.649l-1.227-3.626 c-0.139-0.413-0.587-0.634-0.999-0.495c-0.413,0.141-0.634,0.588-0.494,1.001l1.236,3.654l-1.939,0.694 c-0.615,0.222-0.935,0.899-0.714,1.512c0.158,0.441,0.559,0.701,0.995,0.748l4.777,29.814c-0.617,0.259-1.222,0.522-1.901,0.764 c0,0-2.233,10.641-0.525,11.166c1.708,0.525,19.31,5.911,19.31,5.911s24.302-11.56,24.828-11.822 c0.525-0.263,1.577-7.882,1.577-7.882L400.288,255.738z M398.797,256.378l-2.035,0.874l-0.674-1.663l1.999-0.882L398.797,256.378z M386.497,259.818l1.673-0.737l0.643,1.585l-1.771,0.761L386.497,259.818z M385.588,262.05l-1.978,0.85l-0.622-1.534l2.062-0.909 L385.588,262.05z M390.26,260.045l-0.649-1.6l1.788-0.788l0.655,1.618L390.26,260.045z M392.84,257.021l1.806-0.797l0.669,1.649 l-1.814,0.779L392.84,257.021z M381.736,243.255l8.152,13.346l-3.897,1.718l-5.005-14.796L381.736,243.255z M378.922,244.262 l0.578-0.207l5.042,14.904l-2.963,1.306L378.922,244.262z M381.546,262.001l0.617,1.521l-1.945,0.835l-0.548-1.528L381.546,262.001z M366.295,249.325l11.938,20.479c-0.601,1.737-1.735,3.753-3.723,5.732l-8.797-26.004L366.295,249.325z M363.348,250.38l0.882-0.316 l9.009,26.632c-1.366,1.133-3.065,2.228-5.156,3.231L363.348,250.38z"/>
|
||||
<path style="fill:#FF4B55;" d="M427.842,226c-0.837-1.33-3.524-0.76-3.524-0.76s-0.767-1.534-2.794-1.682 c-2.027-0.148-2.399,1.657-2.399,1.657s-0.38-0.282-2.613-0.216s-1.773,3.744-1.773,3.744s-0.854,0-3.744-0.919 c-2.89-0.92-4.794-0.263-4.794-0.263c-0.131-1.511-0.919-2.627-0.919-2.627c-2.43,0.985-4.335-0.131-4.794-0.985 c-0.46-0.854,0.723-2.167,0.723-3.284s-1.544-1.067-2.086-2.052s0-1.527,1.429-2.167s2.759-3.005,1.871-4.926 s-3.448-1.577-3.448-1.577c0.887,0.148,1.625,1.823,0.198,2.167s-2.709-4.877-2.709-4.877c3.3,2.217,5.715,0.887,6.404-1.035 c0.69-1.922-1.133-3.251-1.133-3.251c-1.429,2.315-3.892,0.296-2.561-1.182c1.33-1.478,1.444-3.957,1.444-3.957 c-2.956,1.446-4.794-0.394-4.794-0.394c3.875-2.692,2.759-6.503,2.759-6.503c-1.444-0.657-4.532-0.131-4.532-0.131 c0.657-1.314,0.525-3.679,0.525-3.679c-1.642-0.263-3.481,0.788-3.481,0.788c0.525-1.838-0.198-5.057-0.198-5.057 c-1.182,0.198-3.415,0.854-3.415,0.854c-0.919-2.102-3.481-3.35-3.481-3.35s-2.561,1.248-3.481,3.35c0,0-2.233-0.657-3.415-0.854 c0,0-0.723,3.219-0.198,5.057c0,0-1.839-1.05-3.481-0.788c0,0-0.131,2.365,0.525,3.679c0,0-3.087-0.525-4.532,0.131 c0,0-1.117,3.809,2.759,6.503c0,0-1.839,1.839-4.794,0.394c0,0,0.115,2.479,1.444,3.957c1.33,1.478-1.133,3.498-2.561,1.182 c0,0-1.823,1.33-1.133,3.251s3.104,3.251,6.404,1.035c0,0-1.281,5.221-2.709,4.877s-0.69-2.019,0.198-2.167 c0,0-2.561-0.345-3.448,1.577c-0.887,1.921,0.444,4.286,1.871,4.926c1.429,0.64,1.971,1.182,1.429,2.167 c-0.542,0.985-2.086,0.936-2.086,2.052s1.182,2.43,0.723,3.284c-0.46,0.854-2.365,1.971-4.794,0.985c0,0-0.788,1.117-0.919,2.627 c0,0-1.905-0.657-4.794,0.263c-2.89,0.919-3.744,0.919-3.744,0.919s0.46-3.678-1.773-3.744s-2.613,0.216-2.613,0.216 s-0.371-1.805-2.399-1.657c-2.027,0.149-2.794,1.682-2.794,1.682s-2.687-0.569-3.524,0.76c-0.837,1.33-0.936,3.35,0.64,4.188 c1.577,0.838,5.763,4.335,5.763,4.335l5.911,2.561l20.69-9.163l10.837,2.857l10.837-2.857l20.69,9.163l5.911-2.561 c0,0,4.188-3.498,5.763-4.335C428.778,229.35,428.68,227.331,427.842,226z"/>
|
||||
<path style="fill:#F5F5F5;" d="M377.546,192.612c0,0,0.223,2.782,4.34,2.04C381.885,194.652,381.775,191.759,377.546,192.612z"/>
|
||||
<path style="fill:#FF4B55;" d="M362.313,302.503c0,0-2.956-0.098-6.009,2.167c-3.054,2.266-4.401,0.657-7.455,0.657 s-3.777,3.186-3.777,3.186s-5.911,1.478-3.546,5.813c1.495,2.742,3.576,2.684,4.908,2.272c-0.067,1.842,0.352,3.866,2.481,4.231 c4.04,0.69,5.813-1.478,4.926-4.828c0,0,0.492,3.448,3.153,3.35c2.66-0.098,4.434-1.577,4.138-5.123s4.434-1.379,8.078-6.601 L362.313,302.503z"/>
|
||||
<g>
|
||||
<path style="fill:#82AFFF;" d="M345.039,315.179c0,0-1.839,2.43-1.313,4.794c0,0-3.94-1.248-1.839-7.094 C341.886,312.88,344.58,312.158,345.039,315.179z"/>
|
||||
<path style="fill:#82AFFF;" d="M351.229,318.365c0,0-1.084,3.054,0.394,5.763c0,0-4.926-0.148-3.94-6.207 C347.683,317.922,349.259,316.296,351.229,318.365z"/>
|
||||
<path style="fill:#82AFFF;" d="M356.156,318.069c0,0,0.887,2.561,0,5.025c0,0,4.04-0.246,3.35-6.059 C359.505,317.034,357.338,316.246,356.156,318.069z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#FF4B55;" d="M352.56,259.153c-0.373-3.038-19.409-4.828-18.227,11.166c0,0-2.112-0.039-3.15,1.928 s-3.264,1.484-3.932,0.779c0,0,0.148,3.561,4.562,3.412c0,0-1.397,1.1-1.199,2.708s1.359,3.635,1.286,5.02 s-1.385,3.314-1.385,3.314s3.388-1.162,3.61-3.585s-0.321-4.451,0.346-5.687c0,0-0.321,1.706,1.187,3.858 c1.508,2.152,1.582,4.772,0.964,6.404c0,0,3.758-1.855,3.041-5.44s-1.484-3.264-1.138-5.267c0,0,3.907,3.981,3.24,7.369 c0,0,1.249-1.496,1.138-4.314s-2.068-4.715-2.068-4.715S353.84,269.596,352.56,259.153z"/>
|
||||
<path style="fill:#FF4B55;" d="M405.686,302.503c0,0,2.956-0.098,6.009,2.167c3.054,2.266,4.401,0.657,7.455,0.657 s3.777,3.186,3.777,3.186s5.911,1.478,3.546,5.813c-1.495,2.742-3.576,2.684-4.908,2.272c0.067,1.842-0.352,3.866-2.481,4.231 c-4.04,0.69-5.813-1.478-4.926-4.828c0,0-0.492,3.448-3.153,3.35c-2.66-0.098-4.434-1.577-4.138-5.123s-4.434-1.379-8.078-6.601 L405.686,302.503z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#82AFFF;" d="M422.961,315.179c0,0,1.839,2.43,1.313,4.794c0,0,3.94-1.248,1.839-7.094 C426.113,312.88,423.42,312.158,422.961,315.179z"/>
|
||||
<path style="fill:#82AFFF;" d="M416.769,318.365c0,0,1.084,3.054-0.394,5.763c0,0,4.926-0.148,3.94-6.207 C420.317,317.922,418.74,316.296,416.769,318.365z"/>
|
||||
<path style="fill:#82AFFF;" d="M411.844,318.069c0,0-0.887,2.561,0,5.025c0,0-4.04-0.246-3.35-6.059 C408.493,317.034,410.662,316.246,411.844,318.069z"/>
|
||||
</g>
|
||||
<path style="fill:#FF4B55;" d="M415.44,259.153c0.373-3.038,19.409-4.828,18.227,11.166c0,0,2.112-0.039,3.15,1.928 s3.264,1.484,3.932,0.779c0,0-0.148,3.561-4.562,3.412c0,0,1.397,1.1,1.199,2.708s-1.361,3.635-1.286,5.02 c0.074,1.385,1.385,3.314,1.385,3.314s-3.388-1.162-3.61-3.585s0.321-4.451-0.346-5.687c0,0,0.321,1.706-1.187,3.858 c-1.508,2.152-1.582,4.772-0.964,6.404c0,0-3.758-1.855-3.041-5.44s1.484-3.264,1.138-5.267c0,0-3.907,3.981-3.24,7.369 c0,0-1.249-1.496-1.138-4.314c0.111-2.819,2.068-4.715,2.068-4.715S414.159,269.596,415.44,259.153z"/>
|
||||
<path style="fill:#FFE15A;" d="M423.227,231.894c-0.724-0.487-1.703-0.284-2.185,0.447c-0.997,1.505-2.311,2.386-4.014,2.691 c-5.641,0.979-13.773-4.575-16.135-6.312c-3.423-2.516-7.651-2.953-10.458-1.224c-1.12,0.371-4.544,1.45-6.434,1.45 c-1.89,0-5.314-1.08-6.434-1.45c-2.807-1.729-7.036-1.292-10.458,1.224c-2.361,1.737-10.494,7.29-16.135,6.312 c-1.704-0.305-3.017-1.185-4.014-2.691c-0.482-0.729-1.461-0.932-2.185-0.447c-0.726,0.48-0.925,1.46-0.445,2.183 c1.478,2.236,3.527,3.599,6.091,4.057c0.648,0.117,1.31,0.169,1.984,0.169c6.016,0,12.823-4.292,16.568-7.041 c2.785-2.045,5.907-2.041,7.313-0.856c0.355,0.301,0.759,0.776,0.662,1.333c-0.052,0.305-0.253,0.579-0.587,0.81 c0.081-0.483-0.066-0.998-0.439-1.373c-0.616-0.616-1.613-0.616-2.229,0c-0.802,0.798-0.889,2.093-0.214,3.147 c0.679,1.056,2.142,1.828,3.88,1.185c0.883-0.329,1.589-0.958,2.078-1.728c2.396-0.697,4.565-0.702,4.565-0.702 s2.169,0.004,4.565,0.702c0.489,0.77,1.195,1.399,2.078,1.728c1.738,0.643,3.2-0.129,3.88-1.185 c0.675-1.053,0.588-2.349-0.214-3.147c-0.616-0.616-1.613-0.616-2.229,0c-0.373,0.375-0.519,0.889-0.439,1.373 c-0.334-0.231-0.534-0.505-0.587-0.81c-0.097-0.557,0.307-1.032,0.662-1.333c1.406-1.185,4.527-1.188,7.313,0.856 c3.745,2.75,10.552,7.041,16.568,7.041c0.674,0,1.336-0.052,1.984-0.169c2.564-0.459,4.613-1.823,6.091-4.057 C424.152,233.352,423.954,232.374,423.227,231.894z"/>
|
||||
<g>
|
||||
<path style="fill:#82AFFF;" d="M343.83,233.635c0,0-0.259-3.523-0.371-4.673s-2.262-2.003-3.079-0.853 C339.564,229.257,339.343,231.372,343.83,233.635z"/>
|
||||
<path style="fill:#82AFFF;" d="M344.591,232.503c0,0,3.104-2.513,2.709-3.842c-0.394-1.33-1.231-2.019-2.266-1.625 C343.998,227.429,343.507,229.842,344.591,232.503z"/>
|
||||
<path style="fill:#82AFFF;" d="M350.65,230.532c0.446-0.446,0.591-2.611-0.64-2.857c-1.231-0.246-2.857,1.675-2.759,4.04 C347.251,231.715,349.812,231.369,350.65,230.532z"/>
|
||||
<path style="fill:#82AFFF;" d="M349.369,231.763c-1.429,0.457-2.808,1.675-2.808,1.675s2.561,1.871,4.335,1.281 C352.67,234.128,351.833,230.976,349.369,231.763z"/>
|
||||
</g>
|
||||
<path style="fill:#F5F5F5;" d="M390.453,192.612c0,0-0.223,2.782-4.34,2.04C386.113,194.652,386.225,191.759,390.453,192.612z"/>
|
||||
<g>
|
||||
<path style="fill:#82AFFF;" d="M424.169,233.635c0,0,0.259-3.523,0.371-4.673c0.111-1.15,2.262-2.003,3.079-0.853 C428.435,229.259,428.657,231.372,424.169,233.635z"/>
|
||||
<path style="fill:#82AFFF;" d="M423.409,232.503c0,0-3.104-2.513-2.709-3.842c0.394-1.33,1.231-2.019,2.266-1.625 C424.001,227.429,424.492,229.842,423.409,232.503z"/>
|
||||
<path style="fill:#82AFFF;" d="M417.35,230.532c-0.446-0.446-0.591-2.611,0.64-2.857c1.231-0.246,2.857,1.675,2.759,4.04 C420.748,231.715,418.187,231.369,417.35,230.532z"/>
|
||||
<path style="fill:#82AFFF;" d="M418.63,231.763c1.429,0.457,2.808,1.675,2.808,1.675s-2.561,1.871-4.335,1.281 C415.329,234.128,416.167,230.976,418.63,231.763z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#464655;" d="M382.369,199.169l1.25,1.25c0.21,0.21,0.551,0.21,0.76,0l1.25-1.25 c0.339-0.339,0.099-0.918-0.381-0.918h-2.5C382.27,198.251,382.031,198.83,382.369,199.169z"/>
|
||||
<path style="fill:#464655;" d="M381.715,204.294c-0.927,0-1.729-0.332-2.274-0.946c-0.564-0.638-0.803-1.515-0.661-2.408 c0.051-0.299,0.351-0.48,0.632-0.456c0.301,0.05,0.505,0.332,0.457,0.634c-0.09,0.564,0.054,1.108,0.397,1.496 c0.354,0.397,0.895,0.581,1.559,0.573c1.386-0.055,1.618-1.41,1.628-1.465l-0.007-2.473c0-0.305,0.246-0.551,0.551-0.551 s0.551,0.246,0.551,0.551v2.559c-0.134,0.884-0.856,2.408-2.68,2.482C381.819,204.294,381.766,204.294,381.715,204.294z"/>
|
||||
<path style="fill:#464655;" d="M386.284,204.294c-0.051,0-0.103,0-0.156-0.003c-1.824-0.074-2.546-1.598-2.674-2.396l-0.007-2.645 c0-0.305,0.246-0.551,0.551-0.551s0.551,0.246,0.551,0.551v2.559c0.019,0.055,0.277,1.327,1.621,1.379 c0.683,0.012,1.204-0.169,1.559-0.573c0.343-0.388,0.488-0.932,0.397-1.496c-0.047-0.301,0.156-0.585,0.457-0.634 c0.288-0.036,0.584,0.154,0.632,0.456c0.143,0.893-0.097,1.77-0.66,2.408C388.012,203.962,387.211,204.294,386.284,204.294z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#F5F5F5;" d="M402.916,284.375c0,0-3.94-6.305-8.538-2.102c-4.598,4.204-6.305,9.327-11.56,8.932 c-2.883-0.216-4.356-1.533-5.121-2.684c1.396-1.149,2.386-2.894,1.312-5.461c-2.365-5.649-11.034-3.94-13.399,2.233 c0,0,2.759-9.064-6.831-6.042c0,0-1.182-6.305-6.699-4.598c-3,0.929-4.11,2.775-4.522,4.279c-1.161-0.27-2.652-0.262-4.017,0.843 l6.962,18.785l10.509,0.131l2.365,3.546l13.793,8.67l2.496,5.255h8.67c0,0,0.657-5.386,5.255-6.962 c4.598-1.577,12.085-4.861,12.874-7.751c0.788-2.89,0.788-2.89,0.788-2.89l8.407,0.131c0.919-0.657,7.094-10.772,7.094-10.772 l2.866-13.027C424.037,274.665,405.931,272.315,402.916,284.375z"/>
|
||||
<path style="fill:#F5F5F5;" d="M425.641,274.785l-0.024,0.109c0.073,0.01,0.156,0.023,0.156,0.023L425.641,274.785z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#FFE15A;" d="M368.424,304.516c-3.406-1.373-4.622-3.297-5.043-4.322c-0.391-0.948-0.314-1.62-0.207-1.866 c0.217-0.502,0.48-0.822,0.725-0.884c0.231-0.055,0.523,0.077,0.576,0.11c0.11,0.126,0.169,0.526,0.063,0.625 c-0.634,0.597-0.663,1.594-0.067,2.229c0.599,0.634,1.593,0.662,2.229,0.067c0.648-0.609,1.02-1.462,1.045-2.401 c0.03-1.006-0.339-2.01-0.982-2.688c-0.646-0.683-1.971-1.305-3.383-1.053c-0.291,0.051-0.619,0.17-0.954,0.332 c0.221-2.184-0.621-3.302-1.239-3.753c-1.039-0.755-2.518-0.772-3.763-0.043c-1.273,0.748-1.961,2.057-1.793,3.411 c0.108,0.865,0.975,1.383,1.821,1.266c0.864-0.105,1.543-0.997,1.437-1.859c0.179-0.163,0.414-0.218,0.406-0.256 c0.003,0.003,0.211,0.348-0.04,1.46c-0.393,1.742-1.314,2.814-2.74,3.19c-1.775,0.49-4.049-0.258-5.393-1.734 c-1.869-2.057-5.781-12.971-8.107-20.241c9.971-4.729,11.196-12.586,11.007-16.964c-0.288-6.669-4.278-13.492-8.715-14.899 c-1.746-0.551-4.361-0.665-6.259,0.314c-1.075,0.561-1.821,1.419-2.157,2.487c-0.685,2.179,0.686,3.981,2.326,4.569 c1.698,0.609,3.412-0.124,4.071-1.746c0.327-0.807-0.03-1.73-0.836-2.057c-0.811-0.335-1.694,0.058-2.019,0.862 c-0.066,0.036-0.285-0.046-0.448-0.231c-0.118-0.136-0.143-0.268-0.085-0.449c0.052-0.167,0.171-0.413,0.605-0.638 c1.03-0.538,2.752-0.456,3.852-0.108c2.539,0.803,6.246,5.77,6.516,12.029c0.161,3.741-0.974,10.598-10.388,14.505 c-0.755,0.314-1.144,1.149-0.9,1.928c0.615,1.967,6.098,19.341,9.204,22.755c1.671,1.838,4.196,2.906,6.611,2.906 c0.654,0,1.301-0.077,1.92-0.241c1.053-0.279,1.932-0.822,2.697-1.504c0.076,0.578,0.21,1.17,0.454,1.762 c0.609,1.484,2.3,4.243,7.02,6.145c9.547,3.83,10.454,6.391,10.402,7.318c-0.029,0.508-0.32,0.772-0.557,0.905 c-0.103,0.058-0.205,0.095-0.292,0.117c0.352-0.483,0.416-1.145,0.105-1.703c-0.425-0.76-1.383-1.032-2.144-0.607 c-1.073,0.6-1.821,2.014-1.18,3.559c0.5,1.201,1.671,1.928,3.023,1.928c0.217,0,0.439-0.019,0.663-0.059 c1.963-0.332,3.413-1.961,3.529-3.959C381.31,310.253,374.103,306.794,368.424,304.516z"/>
|
||||
<path style="fill:#FFE15A;" d="M399.575,304.516c3.406-1.373,4.622-3.297,5.043-4.322c0.391-0.948,0.314-1.62,0.207-1.866 c-0.217-0.502-0.48-0.822-0.725-0.884c-0.231-0.055-0.523,0.077-0.576,0.11c-0.11,0.126-0.169,0.526-0.063,0.625 c0.635,0.597,0.663,1.594,0.067,2.229c-0.599,0.634-1.593,0.662-2.229,0.067c-0.648-0.609-1.02-1.462-1.045-2.401 c-0.029-1.006,0.339-2.01,0.982-2.688c0.646-0.683,1.971-1.305,3.383-1.053c0.291,0.051,0.619,0.17,0.954,0.332 c-0.221-2.184,0.621-3.302,1.239-3.753c1.039-0.755,2.518-0.772,3.763-0.043c1.273,0.748,1.961,2.057,1.793,3.411 c-0.108,0.865-0.975,1.383-1.821,1.266c-0.864-0.105-1.543-0.997-1.437-1.859c-0.179-0.163-0.414-0.218-0.406-0.256 c-0.003,0.003-0.211,0.348,0.04,1.46c0.393,1.742,1.314,2.814,2.74,3.19c1.775,0.49,4.049-0.258,5.393-1.734 c1.869-2.057,5.781-12.971,8.107-20.241c-9.971-4.729-11.196-12.586-11.007-16.964c0.288-6.669,4.278-13.492,8.715-14.899 c1.746-0.551,4.361-0.665,6.259,0.314c1.075,0.561,1.821,1.419,2.157,2.487c0.685,2.179-0.686,3.981-2.326,4.569 c-1.698,0.609-3.412-0.124-4.071-1.746c-0.327-0.807,0.03-1.73,0.836-2.057c0.811-0.335,1.694,0.058,2.019,0.862 c0.066,0.036,0.285-0.046,0.448-0.231c0.118-0.136,0.143-0.268,0.085-0.449c-0.052-0.167-0.171-0.413-0.605-0.638 c-1.03-0.538-2.752-0.456-3.852-0.108c-2.539,0.803-6.246,5.77-6.516,12.029c-0.161,3.741,0.974,10.598,10.388,14.505 c0.755,0.314,1.144,1.149,0.9,1.928c-0.615,1.967-6.098,19.341-9.204,22.755c-1.671,1.838-4.196,2.906-6.611,2.906 c-0.654,0-1.301-0.077-1.92-0.241c-1.053-0.279-1.932-0.822-2.697-1.504c-0.076,0.578-0.21,1.17-0.454,1.762 c-0.609,1.484-2.3,4.243-7.02,6.145c-9.547,3.83-10.454,6.391-10.402,7.318c0.03,0.508,0.32,0.772,0.557,0.905 c0.103,0.058,0.205,0.095,0.292,0.117c-0.352-0.483-0.416-1.145-0.105-1.703c0.425-0.76,1.383-1.032,2.144-0.607 c1.073,0.6,1.821,2.014,1.18,3.559c-0.5,1.201-1.671,1.928-3.023,1.928c-0.217,0-0.439-0.019-0.663-0.059 c-1.963-0.332-3.413-1.961-3.529-3.959C386.688,310.253,393.896,306.794,399.575,304.516z"/>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 10 KiB |
@ -1,193 +0,0 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<path style="fill:#FF4B55;" d="M511.808,123.616c-1.472-19.776-18.112-35.328-38.208-35.328H38.272 c-20.096,0-36.608,15.488-38.208,35.328H0v264.832h0.128c1.472,19.776,18.048,35.264,38.144,35.264H473.6 c20.224,0,36.672-15.616,38.208-35.328H512V123.616H511.808z"/>
|
||||
<rect y="123.62" style="fill:#41479B;" width="512" height="264.83"/>
|
||||
<circle style="fill:#F5F5F5;" cx="256" cy="256.03" r="114.82"/>
|
||||
<g>
|
||||
<path style="fill:#82AFFF;" d="M233.984,316.32l-17.728,3.008c-2.176,0.384-4.288-1.28-4.288-3.584v-6.72h22.016L233.984,316.32 L233.984,316.32z"/>
|
||||
<path style="fill:#82AFFF;" d="M277.888,316.32l17.728,3.008c2.176,0.384,4.288-1.28,4.288-3.584v-6.72h-22.016V316.32 L277.888,316.32z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#965032;" d="M252.288,197.216h-1.472c-1.792,0-3.52-1.024-4.288-2.688l-2.688-5.376l2.496-1.216l2.688,5.376 c0.384,0.704,1.088,1.088,1.92,1.088h1.472v2.816L252.288,197.216L252.288,197.216z"/>
|
||||
|
||||
<rect x="219.945" y="195.396" transform="matrix(-0.4472 -0.8944 0.8944 -0.4472 149.6537 485.9717)" style="fill:#965032;" width="10.112" height="2.688"/>
|
||||
<path style="fill:#965032;" d="M260.992,239.52l-7.488-7.488c-1.6-1.6-2.624-3.904-2.624-6.208v-2.496 c0-0.896-0.192-1.92-0.576-2.688l-1.92-3.712c-0.384-0.832-1.216-1.28-1.984-1.28h-6.528c-1.92,0-3.584-1.088-4.48-2.816 l-2.624-5.312l2.496-1.216l2.624,5.312c0.384,0.832,1.216,1.28,1.984,1.28h6.528c1.92,0,3.584,1.088,4.48,2.816l1.92,3.712 c0.576,1.216,0.896,2.624,0.896,3.904v2.496c0,1.6,0.576,3.072,1.792,4.224l2.816,2.816v-12.8c0-3.52-1.216-6.912-3.392-9.6 c-2.624-3.2-4.032-7.232-4.032-11.328v-10.624h2.688v10.624c0,3.52,1.216,6.912,3.392,9.6c2.624,3.2,4.032,7.232,4.032,11.328 L260.992,239.52L260.992,239.52z"/>
|
||||
<path style="fill:#965032;" d="M254.4,232.416h-4.096c-2.496,0-4.8-1.6-5.696-3.904l-1.024-2.816l2.624-1.024l1.024,2.816 c0.512,1.28,1.728,2.112,3.072,2.112h4.096V232.416L254.4,232.416z"/>
|
||||
|
||||
<rect x="257.922" y="183.324" transform="matrix(-0.915 -0.4035 0.4035 -0.915 414.7991 492.3181)" style="fill:#965032;" width="2.688" height="38.271"/>
|
||||
<polygon style="fill:#965032;" points="272,215.648 258.688,215.648 258.688,212.832 269.184,212.832 269.184,199.52 272,199.52 "/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#73AF00;" d="M246.784,228.832h-11.008c-3.008,0-5.504-2.496-5.504-5.504l0,0c0-3.008,2.496-5.504,5.504-5.504 h11.008c3.008,0,5.504,2.496,5.504,5.504l0,0C252.288,226.464,249.792,228.832,246.784,228.832z"/>
|
||||
<path style="fill:#73AF00;" d="M272.384,228.832h-11.008c-3.008,0-5.504-2.496-5.504-5.504l0,0c0-3.008,2.496-5.504,5.504-5.504 h11.008c3.008,0,5.504,2.496,5.504,5.504l0,0C277.888,226.464,275.52,228.832,272.384,228.832z"/>
|
||||
<path style="fill:#73AF00;" d="M283.392,217.824H268.8c-3.008,0-5.504-2.496-5.504-5.504l0,0c0-3.008,2.496-5.504,5.504-5.504 h14.592c3.008,0,5.504,2.496,5.504,5.504l0,0C288.896,215.456,286.4,217.824,283.392,217.824z"/>
|
||||
<path style="fill:#73AF00;" d="M287.104,203.232h-25.6c-3.008,0-5.504-2.496-5.504-5.504l0,0c0-3.008,2.496-5.504,5.504-5.504h25.6 c3.008,0,5.504,2.496,5.504,5.504l0,0C292.608,200.736,290.112,203.232,287.104,203.232z"/>
|
||||
<path style="fill:#73AF00;" d="M272.384,188.64h-7.296c-3.008,0-5.504-2.496-5.504-5.504l0,0c0-3.008,2.496-5.504,5.504-5.504 h7.296c3.008,0,5.504,2.496,5.504,5.504l0,0C277.888,186.144,275.52,188.64,272.384,188.64z"/>
|
||||
<path style="fill:#73AF00;" d="M224.832,195.936h-3.712c-3.008,0-5.504-2.496-5.504-5.504l0,0c0-3.008,2.496-5.504,5.504-5.504 h3.712c3.008,0,5.504,2.496,5.504,5.504l0,0C230.272,193.44,227.904,195.936,224.832,195.936z"/>
|
||||
<path style="fill:#73AF00;" d="M250.496,192.224h-11.008c-3.008,0-5.504-2.496-5.504-5.504l0,0c0-3.008,2.496-5.504,5.504-5.504 h11.008c3.008,0,5.504,2.496,5.504,5.504l0,0C255.872,189.856,253.504,192.224,250.496,192.224z"/>
|
||||
<path style="fill:#73AF00;" d="M246.784,210.528h-22.016c-3.008,0-5.504-2.496-5.504-5.504l0,0c0-3.008,2.496-5.504,5.504-5.504 h22.016c3.008,0,5.504,2.496,5.504,5.504l0,0C252.288,208.16,249.792,210.528,246.784,210.528z"/>
|
||||
<path style="fill:#73AF00;" d="M310.912,287.136H201.024c-4.032,0-7.296,3.328-7.296,7.296s3.328,7.296,7.296,7.296h29.312 c0,4.032,3.328,7.296,7.296,7.296h36.608c4.032,0,7.296-3.328,7.296-7.296h29.312c4.032,0,7.296-3.328,7.296-7.296 C318.208,290.336,314.88,287.136,310.912,287.136z"/>
|
||||
</g>
|
||||
<path style="fill:#BE7855;" d="M328.896,222.112c-0.32-0.512-1.728,0.128-2.624-0.192c-11.072-4.096-25.92-11.584-35.584-16.704 l-1.92-3.072l-18.368-8.896c-1.216-0.576-2.624-0.128-3.2,1.024l-0.896,1.6c-0.704,1.216-0.192,2.816,1.024,3.392l17.472,9.088 l4.992-0.384l19.2,9.92c0,0,13.12,6.72,13.824,7.232s1.088,3.2,2.432,3.008C326.08,227.808,330.112,224.544,328.896,222.112z"/>
|
||||
<g>
|
||||
<path style="fill:#FFBE3C;" d="M207.616,292.512c0,0,1.216,5.376,0.128,6.016c-1.088,0.576-7.232,0.576-7.104-0.704 c0.192-1.28,1.024-5.888,1.024-5.888L207.616,292.512z"/>
|
||||
<path style="fill:#FFBE3C;" d="M217.728,289.632c0,0-1.024,4.032,1.024,4.224s13.184,0.128,13.504-0.192 c0.32-0.32,0.704-1.088,0.704-1.088l-10.432-2.88h-4.8L217.728,289.632L217.728,289.632z"/>
|
||||
</g>
|
||||
<path style="fill:#EAF3F5;" d="M206.272,239.264c0,0-2.688,6.528-3.712,28.928c-0.32,6.016,0.512,4.608-2.496,23.808l3.52,1.792 c1.024,0.512,2.304,0.512,3.328-0.128l3.392-2.112c0,0-1.728-21.504,3.776-33.92c0,0,2.88,5.312,2.88,9.28 s-0.192,22.976-0.192,22.976s6.4,1.088,9.28,0.832c0,0-1.792-41.408-3.712-51.072L206.272,239.264z"/>
|
||||
<g>
|
||||
<path style="fill:#965032;" d="M206.912,236.512c0,0-1.088,0.832-0.512,2.688c0,0,8.384,3.584,16.192,0.512 c0,0,0.896-1.28-0.192-2.816L206.912,236.512z"/>
|
||||
<path style="fill:#965032;" d="M195.712,216.736c-4.8,1.792-12.032,6.208-11.52,9.728s2.88,2.688,3.712,1.792 s3.008-3.584,3.712-4.096c0.704-0.512,11.904-6.272,11.904-6.272l29.824-15.296c0,0,0.192-1.472-1.472-2.688 C231.68,199.84,213.504,210.016,195.712,216.736z"/>
|
||||
</g>
|
||||
<path style="fill:#FFBE3C;" d="M209.728,199.456l-0.192,1.28c0,0-0.512,8.128,2.176,10.176c0,0,0.576,1.728-0.32,2.496 c-0.896,0.832-9.984,5.376-9.984,5.376s-2.304,4.928-2.304,7.616c0,0-2.176-0.896-1.984-1.92c0.192-1.088,1.472-3.904,1.088-5.312 s-1.92-1.024-1.92-1.024s-0.704,0.832,0.512,1.28l-0.384,1.728l-4.928,2.88l1.088,1.28c0,0,0.128,10.112,6.016,11.392 c0,0,3.072,0.192,6.912-6.912c0,0,1.984,3.52,1.28,6.592c0,0,6.528,3.52,15.424,0.512l0.128-6.208c0,0,1.408,9.472,6.08,8.576 c0,0,12.992-4.992,10.816-6.912c-4.992-4.416-11.072-0.704-11.072-0.704c-0.32-6.4-0.832-14.72-1.728-15.616 c-1.408-1.472-5.632-0.704-6.4-2.624c-0.832-1.92-0.576-5.312,0.32-9.216s-3.712-6.592-3.712-6.592L209.728,199.456z"/>
|
||||
<path style="fill:#464655;" d="M209.6,200.736c0,0,4.672,1.216,8.32-0.32l1.6,4.032h0.896c0,0,2.176-7.296-0.704-7.296 c0,0,0-2.432-5.12-2.304C210.176,194.912,208.576,197.856,209.6,200.736z"/>
|
||||
<g>
|
||||
<path style="fill:#965032;" d="M304.896,292.512c0,0-1.216,5.376-0.128,6.016c1.088,0.576,7.232,0.576,7.104-0.704 c-0.192-1.28-1.024-5.888-1.024-5.888L304.896,292.512z"/>
|
||||
<path style="fill:#965032;" d="M294.784,289.632c0,0,1.024,4.032-1.024,4.224c-2.048,0.192-13.184,0.128-13.504-0.192 c-0.32-0.32-0.704-1.088-0.704-1.088l10.368-2.88h4.864L294.784,289.632L294.784,289.632z"/>
|
||||
</g>
|
||||
<path style="fill:#EAF3F5;" d="M306.112,239.264c0,0,2.688,6.528,3.712,28.928c0.32,6.016-0.512,4.608,2.496,23.808l-3.52,1.792 c-1.024,0.512-2.304,0.512-3.328-0.128l-3.392-2.112c0,0,1.728-21.504-3.776-33.92c0,0-2.88,5.312-2.88,9.28 s0.192,22.976,0.192,22.976s-6.4,1.088-9.28,0.832c0,0,1.792-41.408,3.712-51.072L306.112,239.264z"/>
|
||||
<path style="fill:#BE7855;" d="M305.6,236.512c0,0,1.088,0.832,0.512,2.688c0,0-8.384,3.584-16.192,0.512 c0,0-0.896-1.28,0.192-2.816L305.6,236.512z"/>
|
||||
<path style="fill:#965032;" d="M302.784,199.456l0.192,1.28c0,0,0.512,8.128-2.176,10.176c0,0-0.576,1.728,0.32,2.496 c0.896,0.832,9.984,5.376,9.984,5.376s2.304,4.928,2.304,7.616c0,0,2.176-0.896,1.984-1.92c-0.192-1.088-1.472-3.904-1.088-5.312 c0.384-1.408,1.92-1.024,1.92-1.024s0.704,0.832-0.512,1.28l0.384,1.728l4.928,2.88l-1.088,1.28c0,0-0.128,10.112-6.016,11.392 c0,0-3.072,0.192-6.912-6.912c0,0-1.984,3.52-1.28,6.592c0,0-6.528,3.52-15.424,0.512l-0.128-6.208c0,0-1.408,9.472-6.08,8.576 c0,0-12.992-4.992-10.816-6.912c4.992-4.416,11.072-0.704,11.072-0.704c0.32-6.4,0.832-14.72,1.728-15.616 c1.408-1.472,5.632-0.704,6.4-2.624c0.832-1.92,0.576-5.312-0.32-9.216s3.712-6.592,3.712-6.592L302.784,199.456z"/>
|
||||
<path style="fill:#464655;" d="M302.912,200.736c0,0-4.672,1.216-8.32-0.32l-1.6,4.032h-0.896c0,0-2.176-7.296,0.704-7.296 c0,0,0-2.432,5.12-2.304C302.272,194.912,303.872,197.856,302.912,200.736z"/>
|
||||
<path style="fill:#EAF3F5;" d="M224.512,203.744c-0.384-0.896,0.32-1.216,0.32-1.216s4.608-2.496,5.184-2.496 c0.896,0.128,1.984,1.6,1.984,3.008c0,1.28,1.728,4.8,5.312,5.696c0,0-4.48,6.08-10.688,5.184 C226.496,213.92,226.88,209.824,224.512,203.744z"/>
|
||||
<path style="fill:#82AFFF;" d="M230.976,232.16c-1.408,0-2.496,1.216-2.496,2.624v30.272c0,7.296,3.392,33.024,27.52,40.32 c24-7.296,27.52-33.024,27.52-40.32v-30.272c0-1.472-1.088-2.624-2.496-2.624H230.976L230.976,232.16z"/>
|
||||
<path style="fill:#FFE15A;" d="M283.392,265.12v-30.272c0-1.472-1.088-2.624-2.496-2.624h-25.024v25.6L280,281.952 C282.688,274.848,283.392,268.32,283.392,265.12z"/>
|
||||
<path style="fill:#EAF3F5;" d="M228.48,265.12v-30.272c0-1.472,1.088-2.624,2.496-2.624H256v25.6l-24.128,24.128 C229.12,274.848,228.48,268.32,228.48,265.12z"/>
|
||||
<polygon style="fill:#8C5A28;" points="239.68,281.12 246.08,287.84 263.808,287.84 267.52,283.04 263.232,284.832 248.896,284.832 "/>
|
||||
<path style="fill:#F5F5F5;" d="M246.592,272.416l-1.024,9.792l-4.416-1.728C241.216,280.544,243.2,275.808,246.592,272.416z"/>
|
||||
<g>
|
||||
<rect x="255.3" y="268.64" style="fill:#8C5A28;" width="0.704" height="16.704"/>
|
||||
<rect x="261.31" y="270.05" style="fill:#8C5A28;" width="0.704" height="15.232"/>
|
||||
<rect x="249.28" y="270.05" style="fill:#8C5A28;" width="0.704" height="15.232"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#F5F5F5;" d="M257.792,283.616h-4.416c-0.32,0-0.512-0.192-0.512-0.512v-2.368c0-0.32,0.192-0.512,0.512-0.512 h4.416c0.32,0,0.512,0.192,0.512,0.512v2.368C258.432,283.424,258.112,283.616,257.792,283.616z"/>
|
||||
<path style="fill:#F5F5F5;" d="M257.792,279.008h-4.416c-0.32,0-0.512-0.192-0.512-0.512V276c0-0.32,0.192-0.512,0.512-0.512h4.416 c0.32,0,0.512,0.192,0.512,0.512v2.432C258.432,278.752,258.112,279.008,257.792,279.008z"/>
|
||||
<path style="fill:#F5F5F5;" d="M257.792,274.656h-4.416c-0.32,0-0.512-0.192-0.512-0.512v-2.368c0-0.32,0.192-0.512,0.512-0.512 h4.416c0.32,0,0.512,0.192,0.512,0.512v2.368C258.432,274.464,258.112,274.656,257.792,274.656z"/>
|
||||
<path style="fill:#F5F5F5;" d="M263.488,283.616h-3.712c-0.32,0-0.512-0.192-0.512-0.512v-2.368c0-0.32,0.192-0.512,0.512-0.512 h3.712c0.32,0,0.512,0.192,0.512,0.512v2.368C264,283.424,263.808,283.616,263.488,283.616z"/>
|
||||
<path style="fill:#F5F5F5;" d="M263.488,279.328h-3.712c-0.32,0-0.512-0.192-0.512-0.512v-1.92c0-0.32,0.192-0.512,0.512-0.512 h3.712c0.32,0,0.512,0.192,0.512,0.512v1.92C264,279.136,263.808,279.328,263.488,279.328z"/>
|
||||
<path style="fill:#F5F5F5;" d="M263.488,275.104h-3.712c-0.32,0-0.512-0.192-0.512-0.512v-1.408c0-0.32,0.192-0.512,0.512-0.512 h3.712c0.32,0,0.512,0.192,0.512,0.512v1.408C264,274.848,263.808,275.104,263.488,275.104z"/>
|
||||
<path style="fill:#F5F5F5;" d="M251.392,283.616h-3.712c-0.32,0-0.512-0.192-0.512-0.512v-2.368c0-0.32,0.192-0.512,0.512-0.512 h3.712c0.32,0,0.512,0.192,0.512,0.512v2.368C252.032,283.424,251.712,283.616,251.392,283.616z"/>
|
||||
<path style="fill:#F5F5F5;" d="M251.392,279.328h-3.712c-0.32,0-0.512-0.192-0.512-0.512v-1.92c0-0.32,0.192-0.512,0.512-0.512 h3.712c0.32,0,0.512,0.192,0.512,0.512v1.92C252.032,279.136,251.712,279.328,251.392,279.328z"/>
|
||||
<path style="fill:#F5F5F5;" d="M251.392,275.104h-3.712c-0.32,0-0.512-0.192-0.512-0.512v-1.408c0-0.32,0.192-0.512,0.512-0.512 h3.712c0.32,0,0.512,0.192,0.512,0.512v1.408C252.032,274.848,251.712,275.104,251.392,275.104z"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon style="fill:#FF4B55;" points="261.312,270.048 261.312,272.032 258.432,271.008 "/>
|
||||
<polygon style="fill:#FF4B55;" points="249.28,270.048 249.28,272.032 246.4,271.008 "/>
|
||||
<polygon style="fill:#FF4B55;" points="255.296,268.64 255.296,270.56 252.416,269.536 "/>
|
||||
</g>
|
||||
<path style="fill:#4173CD;" d="M277.696,287.136h-43.584c0.576,1.216,1.408,2.496,2.176,3.712h39.296 C276.416,289.504,277.12,288.352,277.696,287.136z"/>
|
||||
<path style="fill:#73AF00;" d="M275.584,290.72h-39.296l0,0c1.728,2.624,3.904,5.12,6.4,7.296h26.432 C271.68,295.84,273.792,293.344,275.584,290.72L275.584,290.72z"/>
|
||||
<path style="fill:#FFE15A;" d="M242.688,298.016c3.52,3.072,7.808,5.696,13.184,7.296c5.376-1.6,9.728-4.224,13.184-7.296H242.688z"/>
|
||||
<path style="fill:#BE7855;" d="M251.2,259.936c0,0-0.32,0.128-0.576,0.128c-0.192-0.128-0.704-0.128-0.384-1.024 c0.128-0.384,0.384-1.024,0.192-1.216s-0.32-0.384-0.512-0.576c-0.384-0.384-0.832-0.896-1.28-1.472 c-1.024-1.088-2.112-2.304-3.392-3.52c-0.704-0.576-1.28-1.216-1.984-1.92c-0.704-0.576-1.408-1.28-2.176-1.92 c-0.384-0.192-1.024-0.384-1.472-0.512c-0.512-0.192-0.832-0.576-1.088-0.896c-0.704-0.576-1.408-1.28-1.984-1.92 c-1.28-1.216-2.496-2.368-3.52-3.392s-1.792-1.792-2.304-2.432c-0.512-0.576-0.512-1.472,0.128-1.984l1.6-1.6 c0.576-0.512,1.472-0.512,1.984,0c0.576,0.576,1.408,1.408,2.432,2.368c1.024,0.96,2.112,2.304,3.328,3.584 c0.576,0.704,1.216,1.408,1.792,2.112c0.32,0.384,0.704,0.704,0.832,1.216c0.192,0.512,0.32,1.088,0.512,1.472 c0.512,0.832,1.216,1.472,1.792,2.176s1.216,1.408,1.792,2.112c1.216,1.408,2.304,2.624,3.392,3.584 c0.512,0.512,1.024,0.896,1.408,1.28c0.192,0.192,0.384,0.384,0.576,0.576c0.128,0.192,0.704-0.128,1.216-0.192 c0.896-0.192,0.896,0.192,0.896,0.384c0,0.32-0.128,0.576-0.128,0.576L251.2,259.936z"/>
|
||||
<path style="fill:#965032;" d="M233.28,262.816c-0.32,0-0.576-0.128-0.832-0.32c-0.576-0.512-0.704-1.28-0.32-1.92l12.992-17.728 c0.384-0.576,1.28-0.704,1.92-0.32c0.576,0.512,0.704,1.28,0.32,1.92l-12.992,17.728 C234.112,262.624,233.728,262.816,233.28,262.816z"/>
|
||||
<polygon style="fill:#F5F5F5;" points="243.712,241.76 250.496,246.24 253.376,242.208 247.104,237.152 "/>
|
||||
<path style="fill:#965032;" d="M261.824,240.032l17.408,21.504c0,0,2.432,0.128,2.112-1.792l-17.984-21.12L261.824,240.032z"/>
|
||||
<path style="fill:#EAF3F5;" d="M257.92,243.04c0,0,4.928-0.896,6.912-3.904l2.816,3.328c0,0-4.608,3.2-4.992,6.72 C262.592,249.056,258.88,248.032,257.92,243.04z"/>
|
||||
<g>
|
||||
<path style="fill:#965032;" d="M276.672,240.864c-0.32,0-0.576-0.192-0.832-0.512c-0.512-0.896-0.576-1.792-0.32-2.496 c0.512-1.024,1.472-1.28,1.728-1.408c0.512-0.128,1.024,0.192,1.088,0.576c0.128,0.512-0.192,1.024-0.576,1.088 c-0.128,0-0.384,0.192-0.512,0.384s0,0.576,0.192,1.024c0.192,0.384,0.128,1.024-0.384,1.216 C276.992,240.864,276.8,240.864,276.672,240.864z"/>
|
||||
<path style="fill:#965032;" d="M262.4,254.112c0-0.32-0.192-0.576-0.512-0.832c-0.896-0.512-1.792-0.576-2.496-0.32 c-1.024,0.512-1.28,1.472-1.408,1.728c-0.128,0.512,0.192,1.024,0.576,1.088c0.512,0.128,1.024-0.192,1.088-0.576 c0-0.128,0.192-0.384,0.384-0.512c0.192-0.128,0.576,0,1.024,0.192c0.384,0.192,1.024,0.128,1.216-0.384 C262.4,254.432,262.4,254.24,262.4,254.112z"/>
|
||||
</g>
|
||||
<polygon style="fill:#EAF3F5;" points="277.312,238.816 260.928,254.944 264.704,259.232 280.768,243.104 "/>
|
||||
<path style="fill:#FFBE3C;" d="M194.112,215.712c1.088-0.32,2.112,1.216,1.088,2.304s-3.904,3.008-4.672,2.816 C188.928,220.512,187.776,217.12,194.112,215.712z"/>
|
||||
<path style="fill:#965032;" d="M318.272,217.248c-1.024-0.32-1.92,1.216-1.024,2.304c0.896,1.088,3.584,3.008,4.416,2.816 C323.2,222.048,324.096,218.72,318.272,217.248z"/>
|
||||
<path style="fill:#464655;" d="M280.896,232.16c1.408,0,2.496,1.216,2.496,2.624v30.272c0,7.296-3.392,33.024-27.52,40.32 c-24-7.296-27.52-33.024-27.52-40.32v-30.272c0-1.472,1.088-2.624,2.496-2.624H280.896 M280.896,230.304h-49.92 c-2.432,0-4.288,1.984-4.288,4.48v30.272c0,1.728,0.192,11.008,4.928,20.928c4.992,10.624,13.184,17.92,23.872,21.12l0.512,0.192 l0.512-0.192c10.688-3.2,18.88-10.496,23.872-21.12c4.672-9.92,4.928-19.2,4.928-20.928v-30.272 C285.184,232.352,283.328,230.304,280.896,230.304L280.896,230.304z"/>
|
||||
<path style="fill:#EAF3F5;" d="M299.904,305.824c-7.808-2.624-16.128-1.408-24,3.776c-10.112,6.72-16.704,6.72-19.904,6.72 c-3.2,0-9.92,0-19.904-6.72c-7.872-5.184-16.192-6.528-24-3.776v7.808c4.928-2.304,11.776-3.328,19.904,2.112 c11.904,7.872,20.416,7.872,24,7.872c3.584,0,12.096,0,24-7.872c8.128-5.376,14.976-4.416,19.904-2.112V305.824z"/>
|
||||
<path style="fill:#965032;" d="M255.872,347.552c-51.52,0-93.376-41.92-93.376-93.376s41.92-93.376,93.376-93.376 s93.44,41.856,93.44,93.312S307.392,347.552,255.872,347.552z M255.872,164.448c-49.472,0-89.728,40.192-89.728,89.728 s40.192,89.728,89.728,89.728s89.728-40.256,89.728-89.792S305.408,164.448,255.872,164.448z"/>
|
||||
<g>
|
||||
<path style="fill:#73AF00;" d="M153.792,261.92c0,0-0.384-11.392,10.624-11.392c0,0,0.192,4.48-3.712,6.528 C157.504,258.528,153.792,261.92,153.792,261.92z"/>
|
||||
<path style="fill:#73AF00;" d="M174.976,261.92c0,0,0.384-11.392-10.624-11.392c0,0-0.192,4.48,3.712,6.528 C171.392,258.528,174.976,261.92,174.976,261.92z"/>
|
||||
<path style="fill:#73AF00;" d="M358.016,250.464c0,0,0.384,11.392-10.624,11.392c0,0-0.192-4.48,3.712-6.528 C354.304,253.856,358.016,250.464,358.016,250.464z"/>
|
||||
<path style="fill:#73AF00;" d="M336.832,250.464c0,0-0.384,11.392,10.624,11.392c0,0,0.192-4.48-3.712-6.528 C340.416,253.856,336.832,250.464,336.832,250.464z"/>
|
||||
<path style="fill:#73AF00;" d="M261.632,358.304c0,0-11.392,0.384-11.392-10.624c0,0,4.48-0.192,6.528,3.712 C258.304,354.656,261.632,358.304,261.632,358.304z"/>
|
||||
<path style="fill:#73AF00;" d="M261.632,337.056c0,0-11.392-0.384-11.392,10.624c0,0,4.48,0.192,6.528-3.712 C258.304,340.704,261.632,337.056,261.632,337.056z"/>
|
||||
<path style="fill:#73AF00;" d="M250.176,154.144c0,0,11.392-0.384,11.392,10.624c0,0-4.48,0.192-6.528-3.712 C253.504,157.728,250.176,154.144,250.176,154.144z"/>
|
||||
<path style="fill:#73AF00;" d="M250.176,175.328c0,0,11.392,0.384,11.392-10.624c0,0-4.48-0.192-6.528,3.712 C253.504,171.616,250.176,175.328,250.176,175.328z"/>
|
||||
<path style="fill:#73AF00;" d="M187.776,332.448c0,0-8.384-7.808-0.576-15.616c0,0,3.328,3.008,1.92,7.232 C188.032,327.456,187.776,332.448,187.776,332.448z"/>
|
||||
<path style="fill:#73AF00;" d="M202.816,317.408c0,0-7.808-8.384-15.616-0.576c0,0,3.008,3.328,7.232,1.92 C197.824,317.664,202.816,317.408,202.816,317.408z"/>
|
||||
<path style="fill:#73AF00;" d="M324.096,179.936c0,0,8.384,7.808,0.576,15.616c0,0-3.328-3.008-1.92-7.232 C323.776,184.928,324.096,179.936,324.096,179.936z"/>
|
||||
<path style="fill:#73AF00;" d="M309.12,194.912c0,0,7.808,8.384,15.616,0.576c0,0-3.008-3.328-7.232-1.92 C313.984,194.72,309.12,194.912,309.12,194.912z"/>
|
||||
<path style="fill:#73AF00;" d="M332.096,324.32c0,0-7.808,8.384-15.616,0.576c0,0,3.008-3.328,7.232-1.92 C327.232,324.128,332.096,324.32,332.096,324.32z"/>
|
||||
<path style="fill:#73AF00;" d="M317.12,309.344c0,0-8.384,7.808-0.576,15.616c0,0,3.328-3.008,1.92-7.232 C317.376,314.336,317.12,309.344,317.12,309.344z"/>
|
||||
<path style="fill:#73AF00;" d="M179.712,188.064c0,0,7.808-8.384,15.616-0.576c0,0-3.008,3.328-7.232,1.92 C184.576,188.256,179.712,188.064,179.712,188.064z"/>
|
||||
<path style="fill:#73AF00;" d="M194.688,203.04c0,0,8.384-7.808,0.576-15.616c0,0-3.328,3.008-1.92,7.232 C194.496,198.112,194.688,203.04,194.688,203.04z"/>
|
||||
<path style="fill:#73AF00;" d="M163.776,300.512c0,0-4.672-10.432,5.376-14.592c0,0,1.92,4.096-1.024,7.424 C165.888,296.032,163.776,300.512,163.776,300.512z"/>
|
||||
<path style="fill:#73AF00;" d="M183.424,292.448c0,0-4.032-10.688-14.208-6.528c0,0,1.472,4.224,5.888,4.608 C178.688,290.72,183.424,292.448,183.424,292.448z"/>
|
||||
<path style="fill:#73AF00;" d="M348.032,211.808c0,0,4.672,10.432-5.376,14.592c0,0-1.92-4.096,1.024-7.424 C345.92,216.352,348.032,211.808,348.032,211.808z"/>
|
||||
<path style="fill:#73AF00;" d="M328.384,219.936c0,0,4.032,10.688,14.208,6.528c0,0-1.472-4.224-5.888-4.608 C333.12,221.664,328.384,219.936,328.384,219.936z"/>
|
||||
<path style="fill:#73AF00;" d="M300.288,348.32c0,0-10.368,4.672-14.592-5.376c0,0,4.096-1.92,7.424,1.024 C295.808,346.208,300.288,348.32,300.288,348.32z"/>
|
||||
<path style="fill:#73AF00;" d="M292.096,328.736c0,0-10.688,4.032-6.528,14.208c0,0,4.224-1.472,4.608-5.888 C290.432,333.408,292.096,328.736,292.096,328.736z"/>
|
||||
<path style="fill:#73AF00;" d="M211.584,164.064c0,0,10.432-4.672,14.592,5.376c0,0-4.096,1.92-7.424-1.024 C216.128,166.112,211.584,164.064,211.584,164.064z"/>
|
||||
<path style="fill:#73AF00;" d="M219.712,183.648c0,0,10.688-4.032,6.528-14.208c0,0-4.224,1.472-4.608,5.888 C221.376,179.04,219.712,183.648,219.712,183.648z"/>
|
||||
<path style="fill:#73AF00;" d="M222.08,352.736c0,0-10.688-4.032-6.528-14.208c0,0,4.224,1.472,4.608,5.888 C220.416,348.064,222.08,352.736,222.08,352.736z"/>
|
||||
<path style="fill:#73AF00;" d="M230.208,333.152c0,0-10.432-4.672-14.592,5.376c0,0,4.096,1.92,7.424-1.024 C225.728,335.264,230.208,333.152,230.208,333.152z"/>
|
||||
<path style="fill:#73AF00;" d="M289.728,159.712c0,0,10.688,4.032,6.528,14.208c0,0-4.224-1.472-4.608-5.888 C291.392,164.32,289.728,159.712,289.728,159.712z"/>
|
||||
<path style="fill:#73AF00;" d="M281.6,179.232c0,0,10.432,4.672,14.592-5.376c0,0-4.096-1.92-7.424,1.024 C286.08,177.248,281.6,179.232,281.6,179.232z"/>
|
||||
<path style="fill:#73AF00;" d="M352.384,289.952c0,0-4.032,10.688-14.208,6.528c0,0,1.472-4.224,5.888-4.608 C347.776,291.616,352.384,289.952,352.384,289.952z"/>
|
||||
<path style="fill:#73AF00;" d="M332.8,281.824c0,0-4.672,10.432,5.376,14.592c0,0,1.92-4.096-1.024-7.424 C334.912,286.304,332.8,281.824,332.8,281.824z"/>
|
||||
<path style="fill:#73AF00;" d="M159.424,222.432c0,0,4.032-10.688,14.208-6.528c0,0-1.472,4.224-5.888,4.608 C164.096,220.704,159.424,222.432,159.424,222.432z"/>
|
||||
<path style="fill:#73AF00;" d="M179.008,230.56c0,0,4.672-10.432-5.376-14.592c0,0-1.92,4.096,1.024,7.424 C176.896,226.016,179.008,230.56,179.008,230.56z"/>
|
||||
<path style="fill:#73AF00;" d="M156.928,281.76c0,0-2.624-11.072,8.192-13.312c0,0,1.088,4.416-2.432,7.104 C159.808,277.728,156.928,281.76,156.928,281.76z"/>
|
||||
<path style="fill:#73AF00;" d="M177.728,277.664c0,0-1.92-11.328-12.608-9.216c0,0,0.704,4.48,4.928,5.632 C173.504,275.04,177.728,277.664,177.728,277.664z"/>
|
||||
<path style="fill:#73AF00;" d="M354.88,230.624c0,0,2.624,11.072-8.192,13.312c0,0-1.088-4.416,2.368-7.104 C352,234.656,354.88,230.624,354.88,230.624z"/>
|
||||
<path style="fill:#73AF00;" d="M334.08,234.848c0,0,1.92,11.328,12.608,9.216c0,0-0.704-4.48-4.928-5.632 C338.432,237.408,334.08,234.848,334.08,234.848z"/>
|
||||
<path style="fill:#73AF00;" d="M281.408,355.232c0,0-11.072,2.624-13.312-8.192c0,0,4.416-1.088,7.104,2.432 C277.376,352.224,281.408,355.232,281.408,355.232z"/>
|
||||
<path style="fill:#73AF00;" d="M277.312,334.432c0,0-11.328,1.92-9.216,12.608c0,0,4.48-0.704,5.632-4.928 C274.688,338.656,277.312,334.432,277.312,334.432z"/>
|
||||
<path style="fill:#73AF00;" d="M230.4,157.216c0,0,11.072-2.624,13.312,8.192c0,0-4.416,1.088-7.104-2.432 C234.432,160.16,230.4,157.216,230.4,157.216z"/>
|
||||
<path style="fill:#73AF00;" d="M234.496,178.016c0,0,11.328-1.92,9.216-12.608c0,0-4.48,0.704-5.632,4.928 C237.12,173.728,234.496,178.016,234.496,178.016z"/>
|
||||
<path style="fill:#73AF00;" d="M203.904,344.224c0,0-9.728-6.016-3.584-15.232c0,0,3.904,2.304,3.328,6.72 C203.2,339.36,203.904,344.224,203.904,344.224z"/>
|
||||
<path style="fill:#73AF00;" d="M215.68,326.624c0,0-9.28-6.72-15.424,2.496c0,0,3.584,2.688,7.488,0.512 C210.88,327.84,215.68,326.624,215.68,326.624z"/>
|
||||
<path style="fill:#73AF00;" d="M307.904,168.16c0,0,9.728,6.016,3.584,15.232c0,0-3.904-2.304-3.328-6.72 C308.608,173.024,307.904,168.16,307.904,168.16z"/>
|
||||
<path style="fill:#73AF00;" d="M296.128,185.76c0,0,9.28,6.72,15.424-2.496c0,0-3.584-2.688-7.488-0.512 C300.928,184.608,296.128,185.76,296.128,185.76z"/>
|
||||
<path style="fill:#73AF00;" d="M344,308.128c0,0-6.016,9.728-15.232,3.584c0,0,2.304-3.904,6.72-3.328 C339.072,308.96,344,308.128,344,308.128z"/>
|
||||
<path style="fill:#73AF00;" d="M326.272,296.352c0,0-6.72,9.28,2.496,15.424c0,0,2.688-3.584,0.512-7.488 C327.488,301.216,326.272,296.352,326.272,296.352z"/>
|
||||
<path style="fill:#73AF00;" d="M167.808,204.256c0,0,6.016-9.728,15.232-3.584c0,0-2.304,3.904-6.72,3.328 C172.672,203.424,167.808,204.256,167.808,204.256z"/>
|
||||
<path style="fill:#73AF00;" d="M185.472,216.032c0,0,6.72-9.28-2.496-15.424c0,0-2.688,3.584-0.512,7.488 C184.32,211.232,185.472,216.032,185.472,216.032z"/>
|
||||
<path style="fill:#73AF00;" d="M174.208,317.664c0,0-6.72-9.28,2.496-15.424c0,0,2.688,3.584,0.512,7.488 C175.424,312.8,174.208,317.664,174.208,317.664z"/>
|
||||
<path style="fill:#73AF00;" d="M191.808,305.952c0,0-6.016-9.728-15.232-3.584c0,0,2.304,3.904,6.72,3.328 C186.88,305.12,191.808,305.952,191.808,305.952z"/>
|
||||
<path style="fill:#73AF00;" d="M337.6,194.72c0,0,6.72,9.28-2.496,15.424c0,0-2.688-3.584-0.512-7.488 C336.384,199.52,337.6,194.72,337.6,194.72z"/>
|
||||
<path style="fill:#73AF00;" d="M320,206.56c0,0,6.016,9.728,15.232,3.584c0,0-2.304-3.904-6.72-3.328 C324.928,207.264,320,206.56,320,206.56z"/>
|
||||
<path style="fill:#73AF00;" d="M317.376,337.952c0,0-9.28,6.72-15.424-2.496c0,0,3.584-2.688,7.488-0.512 C312.576,336.736,317.376,337.952,317.376,337.952z"/>
|
||||
<path style="fill:#73AF00;" d="M305.6,320.224c0,0-9.728,6.016-3.584,15.232c0,0,3.904-2.304,3.328-6.72 C304.768,325.152,305.6,320.224,305.6,320.224z"/>
|
||||
<path style="fill:#73AF00;" d="M194.432,174.56c0,0,9.28-6.72,15.424,2.496c0,0-3.584,2.688-7.488,0.512 C199.296,175.648,194.432,174.56,194.432,174.56z"/>
|
||||
<path style="fill:#73AF00;" d="M206.208,192.16c0,0,9.728-6.016,3.584-15.232c0,0-3.904,2.304-3.328,6.72 C206.976,187.232,206.208,192.16,206.208,192.16z"/>
|
||||
<path style="fill:#73AF00;" d="M241.6,357.408c0,0-11.328-1.92-9.216-12.608c0,0,4.48,0.704,5.632,4.928 C238.976,353.248,241.6,357.408,241.6,357.408z"/>
|
||||
<path style="fill:#73AF00;" d="M245.696,336.608c0,0-11.072-2.624-13.312,8.192c0,0,4.416,1.088,7.104-2.368 C241.728,339.552,245.696,336.608,245.696,336.608z"/>
|
||||
<path style="fill:#73AF00;" d="M270.208,154.912c0,0,11.328,1.92,9.216,12.608c0,0-4.48-0.704-5.632-4.928 C272.768,159.264,270.208,154.912,270.208,154.912z"/>
|
||||
<path style="fill:#73AF00;" d="M266.112,175.712c0,0,11.072,2.624,13.312-8.192c0,0-4.416-1.088-7.104,2.432 C270.08,172.832,266.112,175.712,266.112,175.712z"/>
|
||||
<path style="fill:#73AF00;" d="M357.184,270.56c0,0-1.92,11.328-12.608,9.216c0,0,0.704-4.48,4.928-5.632 C352.896,273.056,357.184,270.56,357.184,270.56z"/>
|
||||
<path style="fill:#73AF00;" d="M336.384,266.336c0,0-2.624,11.072,8.192,13.312c0,0,1.088-4.416-2.432-7.104 C339.328,270.304,336.384,266.336,336.384,266.336z"/>
|
||||
<path style="fill:#73AF00;" d="M154.688,241.952c0,0,1.92-11.328,12.608-9.216c0,0-0.704,4.48-4.928,5.632 C158.912,239.328,154.688,241.952,154.688,241.952z"/>
|
||||
<path style="fill:#73AF00;" d="M175.488,246.048c0,0,2.624-11.072-8.192-13.312c0,0-1.088,4.416,2.432,7.104 C172.48,242.016,175.488,246.048,175.488,246.048z"/>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 9.5 KiB |
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 8.1 KiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 9.6 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 9.7 KiB |
Before Width: | Height: | Size: 35 KiB |
@ -1,81 +0,0 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 512.001 512.001" style="enable-background:new 0 0 512.001 512.001;" xml:space="preserve">
|
||||
<path style="fill:#73AF00;" d="M473.655,88.276H38.345C17.167,88.276,0,105.444,0,126.621v73.471h512v-73.471 C512,105.444,494.833,88.276,473.655,88.276z"/>
|
||||
<path style="fill:#FF4B55;" d="M0,385.38c0,21.177,17.167,38.345,38.345,38.345h435.31c21.177,0,38.345-17.167,38.345-38.345 v-73.471H0V385.38z"/>
|
||||
<g>
|
||||
<rect y="200.089" style="fill:#F5F5F5;" width="512" height="111.81"/>
|
||||
<path style="fill:#F5F5F5;" d="M1.388,194.176h0.078c0.767,0,1.389-0.621,1.389-1.388v-3.008c0-0.767,0.621-1.388,1.389-1.388 h5.827c0.767,0,1.389,0.621,1.389,1.388v3.008c0,0.767,0.621,1.388,1.389,1.388h11.502c0.767,0,1.388-0.621,1.388-1.388v-5.939 c0-0.767-0.621-1.388-1.388-1.388h-5.79c-0.767,0-1.388,0.621-1.388,1.388v0.153c0,0.767,0.621,1.388,1.388,1.388h2.935 c0.767,0,1.389,0.621,1.389,1.388v0.151c0,0.767-0.621,1.388-1.389,1.388h-5.792c-0.767,0-1.389-0.621-1.389-1.388v-3.081 c0-0.767-0.622-1.388-1.389-1.388H1.388c-0.767,0-1.388,0.621-1.388,1.388v5.939C0,193.553,0.621,194.176,1.388,194.176z M7.137,194.176h0.079c0.767,0,1.388-0.621,1.388-1.388v-0.079c0-0.767-0.621-1.388-1.388-1.388H7.137 c-0.767,0-1.389,0.622-1.389,1.388v0.079C5.748,193.553,6.37,194.176,7.137,194.176z M1.388,182.531h34.423 c0.767,0,1.389-0.621,1.389-1.388v-0.152c0-0.767-0.621-1.388-1.389-1.388H1.388c-0.767,0-1.388,0.621-1.388,1.388v0.152 C0,181.91,0.621,182.531,1.388,182.531z M35.811,194.176h-5.79c-0.767,0-1.389-0.621-1.389-1.388v-5.939 c0-0.767,0.621-1.388,1.389-1.388h8.647c0.767,0,1.389-0.622,1.389-1.388v-3.081c0-0.767,0.621-1.388,1.388-1.388h0.077 c0.767,0,1.389,0.621,1.389,1.388v8.94c0,0.767,0.621,1.388,1.388,1.388h0.079c0.767,0,1.388-0.621,1.388-1.388v-8.94 c0-0.767,0.621-1.388,1.388-1.388h0.077c0.767,0,1.389,0.621,1.389,1.388v8.94c0,0.767,0.621,1.388,1.388,1.388h0.115 c0.767,0,1.389-0.621,1.389-1.388v-8.94c0-0.767,0.621-1.388,1.388-1.388h0.042c0.767,0,1.388,0.621,1.388,1.388v11.797 c0,0.767-0.621,1.388-1.388,1.388H41.447c-0.767,0-1.388-0.621-1.388-1.388v-3.008c0-0.767-0.621-1.388-1.389-1.388h-5.79 c-0.767,0-1.389,0.621-1.389,1.388v0.151c0,0.767,0.621,1.388,1.389,1.388h2.933c0.767,0,1.389,0.622,1.389,1.388v0.079 C37.201,193.553,36.578,194.176,35.811,194.176z"/>
|
||||
<path style="fill:#F5F5F5;" d="M58.618,194.176h0.115c0.767,0,1.389-0.621,1.389-1.388v-3.008c0-0.767,0.621-1.388,1.388-1.388 h5.754c0.767,0,1.389,0.621,1.389,1.388v3.008c0,0.767,0.621,1.388,1.388,1.388h11.502c0.767,0,1.388-0.621,1.388-1.388v-5.939 c0-0.767-0.621-1.388-1.388-1.388h-5.79c-0.767,0-1.389,0.621-1.389,1.388v0.153c0,0.767,0.621,1.388,1.389,1.388h2.935 c0.767,0,1.388,0.621,1.388,1.388v0.151c0,0.767-0.621,1.388-1.388,1.388h-5.792c-0.767,0-1.388-0.621-1.388-1.388v-3.081 c0-0.767-0.621-1.388-1.388-1.388H58.618c-0.767,0-1.388,0.621-1.388,1.388v5.939C57.23,193.553,57.852,194.176,58.618,194.176z M64.331,194.176h0.078c0.767,0,1.388-0.621,1.388-1.388v-0.079c0-0.767-0.621-1.388-1.388-1.388h-0.078 c-0.767,0-1.388,0.622-1.388,1.388v0.079C62.943,193.553,63.564,194.176,64.331,194.176z M58.618,182.531h34.387 c0.767,0,1.389-0.621,1.389-1.388v-0.152c0-0.767-0.621-1.388-1.389-1.388H58.618c-0.767,0-1.388,0.621-1.388,1.388v0.152 C57.23,181.91,57.852,182.531,58.618,182.531z M93.006,194.176h-5.827c-0.767,0-1.389-0.621-1.389-1.388v-5.939 c0-0.767,0.621-1.388,1.389-1.388h8.648c0.767,0,1.388-0.622,1.388-1.388v-3.081c0-0.767,0.621-1.388,1.389-1.388h0.115 c0.767,0,1.388,0.621,1.388,1.388v8.94c0,0.767,0.621,1.388,1.389,1.388h0.115c0.767,0,1.389-0.621,1.389-1.388v-8.94 c0-0.767,0.621-1.388,1.389-1.388h0.042c0.767,0,1.388,0.621,1.388,1.388v8.94c0,0.767,0.621,1.388,1.389,1.388h0.115 c0.767,0,1.389-0.621,1.389-1.388v-8.94c0-0.767,0.621-1.388,1.388-1.388h0.078c0.767,0,1.388,0.621,1.388,1.388v11.797 c0,0.767-0.621,1.388-1.388,1.388H98.604c-0.767,0-1.389-0.621-1.389-1.388v-3.008c0-0.767-0.621-1.388-1.388-1.388h-5.754 c-0.767,0-1.388,0.621-1.388,1.388v0.151c0,0.767,0.621,1.388,1.388,1.388h2.935c0.767,0,1.389,0.622,1.389,1.388v0.079 C94.394,193.553,93.773,194.176,93.006,194.176z"/>
|
||||
<path style="fill:#F5F5F5;" d="M115.814,194.176h0.077c0.767,0,1.388-0.621,1.388-1.388v-3.008c0-0.767,0.621-1.388,1.388-1.388 h5.792c0.767,0,1.388,0.621,1.388,1.388v3.008c0,0.767,0.622,1.388,1.389,1.388h11.538c0.767,0,1.389-0.621,1.389-1.388v-5.939 c0-0.767-0.621-1.388-1.389-1.388h-5.79c-0.767,0-1.389,0.621-1.389,1.388v0.153c0,0.767,0.621,1.388,1.389,1.388h2.935 c0.767,0,1.389,0.621,1.389,1.388v0.151c0,0.767-0.621,1.388-1.389,1.388h-5.827c-0.767,0-1.388-0.621-1.388-1.388v-3.081 c0-0.767-0.621-1.388-1.388-1.388h-11.502c-0.767,0-1.388,0.621-1.388,1.388v5.939 C114.424,193.553,115.047,194.176,115.814,194.176z M121.526,194.176h0.078c0.767,0,1.388-0.621,1.388-1.388v-0.079 c0-0.767-0.621-1.388-1.388-1.388h-0.078c-0.767,0-1.388,0.622-1.388,1.388v0.079C120.137,193.553,120.759,194.176,121.526,194.176 z M115.814,182.531h34.424c0.767,0,1.389-0.621,1.389-1.388v-0.152c0-0.767-0.621-1.388-1.389-1.388h-34.424 c-0.767,0-1.388,0.621-1.388,1.388v0.152C114.424,181.91,115.047,182.531,115.814,182.531z M150.238,194.176h-5.827 c-0.767,0-1.389-0.621-1.389-1.388v-5.939c0-0.767,0.621-1.388,1.389-1.388h8.646c0.767,0,1.388-0.622,1.388-1.388v-3.081 c0-0.767,0.622-1.388,1.389-1.388h0.079c0.767,0,1.388,0.621,1.388,1.388v8.94c0,0.767,0.622,1.388,1.389,1.388h0.115 c0.767,0,1.389-0.621,1.389-1.388v-8.94c0-0.767,0.621-1.388,1.388-1.388h0.116c0.767,0,1.388,0.621,1.388,1.388v8.94 c0,0.767,0.622,1.388,1.388,1.388h0.042c0.767,0,1.389-0.621,1.389-1.388v-8.94c0-0.767,0.621-1.388,1.388-1.388h0.078 c0.767,0,1.388,0.621,1.388,1.388v11.797c0,0.767-0.622,1.388-1.388,1.388h-11.54c-0.767,0-1.389-0.621-1.389-1.388v-3.008 c0-0.767-0.621-1.388-1.388-1.388h-5.79c-0.767,0-1.389,0.621-1.389,1.388v0.151c0,0.767,0.621,1.388,1.389,1.388h2.973 c0.767,0,1.389,0.622,1.389,1.388v0.079C151.627,193.553,151.005,194.176,150.238,194.176z"/>
|
||||
<path style="fill:#F5F5F5;" d="M173.007,194.176h0.077c0.767,0,1.388-0.621,1.388-1.388v-3.008c0-0.767,0.622-1.388,1.388-1.388 h5.79c0.767,0,1.389,0.621,1.389,1.388v3.008c0,0.767,0.621,1.388,1.389,1.388h11.54c0.767,0,1.388-0.621,1.388-1.388v-5.939 c0-0.767-0.621-1.388-1.388-1.388h-5.827c-0.767,0-1.389,0.621-1.389,1.388v0.153c0,0.767,0.622,1.388,1.389,1.388h2.935 c0.767,0,1.388,0.621,1.388,1.388v0.151c0,0.767-0.621,1.388-1.388,1.388h-5.79c-0.767,0-1.388-0.621-1.388-1.388v-3.081 c0-0.767-0.622-1.388-1.389-1.388h-11.502c-0.767,0-1.389,0.621-1.389,1.388v5.939 C171.619,193.553,172.241,194.176,173.007,194.176z M178.72,194.176h0.077c0.767,0,1.388-0.621,1.388-1.388v-0.079 c0-0.767-0.621-1.388-1.388-1.388h-0.077c-0.767,0-1.389,0.622-1.389,1.388v0.079C177.331,193.553,177.953,194.176,178.72,194.176z M173.007,182.531h34.387c0.767,0,1.388-0.621,1.388-1.388v-0.152c0-0.767-0.621-1.388-1.388-1.388h-34.387 c-0.767,0-1.389,0.621-1.389,1.388v0.152C171.619,181.91,172.241,182.531,173.007,182.531z M207.395,194.176h-5.827 c-0.767,0-1.388-0.621-1.388-1.388v-5.939c0-0.767,0.621-1.388,1.388-1.388h8.721c0.767,0,1.389-0.622,1.389-1.388v-3.081 c0-0.767,0.621-1.388,1.388-1.388h0.078c0.767,0,1.388,0.621,1.388,1.388v8.94c0,0.767,0.621,1.388,1.388,1.388h0.042 c0.767,0,1.389-0.621,1.389-1.388v-8.94c0-0.767,0.621-1.388,1.388-1.388h0.116c0.767,0,1.388,0.621,1.388,1.388v8.94 c0,0.767,0.621,1.388,1.388,1.388h0.079c0.767,0,1.388-0.621,1.388-1.388v-8.94c0-0.767,0.622-1.388,1.389-1.388h0.077 c0.767,0,1.388,0.621,1.388,1.388v11.797c0,0.767-0.621,1.388-1.388,1.388h-11.501c-0.767,0-1.388-0.621-1.388-1.388v-3.008 c0-0.767-0.621-1.388-1.389-1.388h-5.827c-0.767,0-1.389,0.621-1.389,1.388v0.151c0,0.767,0.622,1.388,1.389,1.388h2.935 c0.767,0,1.388,0.622,1.388,1.388v0.079C208.783,193.553,208.162,194.176,207.395,194.176z"/>
|
||||
<path style="fill:#F5F5F5;" d="M230.2,194.176h0.079c0.767,0,1.388-0.621,1.388-1.388v-3.008c0-0.767,0.621-1.388,1.388-1.388h5.79 c0.767,0,1.388,0.621,1.388,1.388v3.008c0,0.767,0.622,1.388,1.389,1.388h11.54c0.767,0,1.388-0.621,1.388-1.388v-5.939 c0-0.767-0.621-1.388-1.388-1.388h-5.827c-0.767,0-1.389,0.621-1.389,1.388v0.153c0,0.767,0.622,1.388,1.389,1.388h2.97 c0.767,0,1.388,0.621,1.388,1.388v0.151c0,0.767-0.622,1.388-1.388,1.388h-5.79c-0.767,0-1.388-0.621-1.388-1.388v-3.081 c0-0.767-0.621-1.388-1.389-1.388h-11.54c-0.767,0-1.389,0.621-1.389,1.388v5.939C228.812,193.553,229.433,194.176,230.2,194.176z M235.95,194.176h0.042c0.767,0,1.389-0.621,1.389-1.388v-0.079c0-0.767-0.622-1.388-1.389-1.388h-0.042 c-0.767,0-1.388,0.622-1.388,1.388v0.079C234.561,193.553,235.183,194.176,235.95,194.176z M230.2,182.531h34.425 c0.767,0,1.388-0.621,1.388-1.388v-0.152c0-0.767-0.622-1.388-1.388-1.388H230.2c-0.767,0-1.389,0.621-1.389,1.388v0.152 C228.812,181.91,229.433,182.531,230.2,182.531z M264.626,194.176h-5.827c-0.767,0-1.388-0.621-1.388-1.388v-5.939 c0-0.767,0.621-1.388,1.388-1.388h8.684c0.767,0,1.388-0.622,1.388-1.388v-3.081c0-0.767,0.622-1.388,1.389-1.388h0.077 c0.767,0,1.388,0.621,1.388,1.388v8.94c0,0.767,0.622,1.388,1.388,1.388h0.079c0.767,0,1.388-0.621,1.388-1.388v-8.94 c0-0.767,0.622-1.388,1.389-1.388h0.077c0.767,0,1.388,0.621,1.388,1.388v8.94c0,0.767,0.622,1.388,1.388,1.388h0.077 c0.767,0,1.388-0.621,1.388-1.388v-8.94c0-0.767,0.622-1.388,1.389-1.388h0.079c0.767,0,1.389,0.621,1.389,1.388v11.797 c0,0.767-0.622,1.388-1.389,1.388h-11.502c-0.767,0-1.389-0.621-1.389-1.388v-3.008c0-0.767-0.621-1.388-1.388-1.388h-5.827 c-0.767,0-1.389,0.621-1.389,1.388v0.151c0,0.767,0.622,1.388,1.389,1.388h2.97c0.767,0,1.388,0.622,1.388,1.388v0.079 C266.014,193.553,265.393,194.176,264.626,194.176z"/>
|
||||
<path style="fill:#F5F5F5;" d="M287.395,194.176h0.079c0.767,0,1.389-0.621,1.389-1.388v-3.008c0-0.767,0.621-1.388,1.389-1.388 h5.79c0.767,0,1.389,0.621,1.389,1.388v3.008c0,0.767,0.622,1.388,1.388,1.388h11.54c0.767,0,1.389-0.621,1.389-1.388v-5.939 c0-0.767-0.621-1.388-1.389-1.388h-5.792c-0.767,0-1.388,0.621-1.388,1.388v0.153c0,0.767,0.621,1.388,1.388,1.388h2.9 c0.767,0,1.389,0.621,1.389,1.388v0.151c0,0.767-0.622,1.388-1.389,1.388h-5.754c-0.767,0-1.389-0.621-1.389-1.388v-3.081 c0-0.767-0.621-1.388-1.388-1.388h-11.54c-0.767,0-1.389,0.621-1.389,1.388v5.939C286.006,193.553,286.628,194.176,287.395,194.176 z M293.144,194.176h0.042c0.767,0,1.389-0.621,1.389-1.388v-0.079c0-0.767-0.622-1.388-1.389-1.388h-0.042 c-0.767,0-1.388,0.622-1.388,1.388v0.079C291.756,193.553,292.377,194.176,293.144,194.176z M287.395,182.531h34.425 c0.767,0,1.388-0.621,1.388-1.388v-0.152c0-0.767-0.622-1.388-1.388-1.388h-34.425c-0.767,0-1.389,0.621-1.389,1.388v0.152 C286.006,181.91,286.628,182.531,287.395,182.531z M321.82,194.176h-5.79c-0.767,0-1.388-0.621-1.388-1.388v-5.939 c0-0.767,0.621-1.388,1.388-1.388h8.646c0.767,0,1.388-0.622,1.388-1.388v-3.081c0-0.767,0.622-1.388,1.389-1.388h0.079 c0.767,0,1.388,0.621,1.388,1.388v8.94c0,0.767,0.621,1.388,1.389,1.388h0.077c0.767,0,1.389-0.621,1.389-1.388v-8.94 c0-0.767,0.621-1.388,1.389-1.388h0.079c0.767,0,1.389,0.621,1.389,1.388v8.94c0,0.767,0.621,1.388,1.388,1.388h0.078 c0.767,0,1.388-0.621,1.388-1.388v-8.94c0-0.767,0.622-1.388,1.389-1.388h0.079c0.767,0,1.389,0.621,1.389,1.388v11.797 c0,0.767-0.622,1.388-1.389,1.388h-11.505c-0.767,0-1.389-0.621-1.389-1.388v-3.008c0-0.767-0.621-1.388-1.388-1.388h-5.826 c-0.767,0-1.389,0.621-1.389,1.388v0.151c0,0.767,0.622,1.388,1.389,1.388h2.97c0.767,0,1.388,0.622,1.388,1.388v0.079 C323.209,193.553,322.586,194.176,321.82,194.176z"/>
|
||||
<path style="fill:#F5F5F5;" d="M344.589,194.176h0.079c0.767,0,1.389-0.621,1.389-1.388v-3.008c0-0.767,0.621-1.388,1.388-1.388 h5.826c0.767,0,1.389,0.621,1.389,1.388v3.008c0,0.767,0.621,1.388,1.388,1.388h11.505c0.767,0,1.388-0.621,1.388-1.388v-5.939 c0-0.767-0.621-1.388-1.388-1.388h-5.792c-0.767,0-1.389,0.621-1.389,1.388v0.153c0,0.767,0.621,1.388,1.389,1.388h2.973 c0.767,0,1.388,0.621,1.388,1.388v0.151c0,0.767-0.621,1.388-1.388,1.388h-5.865c-0.767,0-1.388-0.621-1.388-1.388v-3.081 c0-0.767-0.622-1.388-1.389-1.388H344.59c-0.767,0-1.389,0.621-1.389,1.388v5.939C343.2,193.553,343.822,194.176,344.589,194.176z M350.302,194.176h0.116c0.767,0,1.388-0.621,1.388-1.388v-0.079c0-0.767-0.621-1.388-1.388-1.388h-0.116 c-0.767,0-1.388,0.622-1.388,1.388v0.079C348.913,193.553,349.535,194.176,350.302,194.176z M344.589,182.531h34.424 c0.767,0,1.389-0.621,1.389-1.388v-0.152c0-0.767-0.621-1.388-1.389-1.388h-34.424c-0.767,0-1.389,0.621-1.389,1.388v0.152 C343.2,181.91,343.822,182.531,344.589,182.531z M379.015,194.176h-5.79c-0.767,0-1.389-0.621-1.389-1.388v-5.939 c0-0.767,0.621-1.388,1.389-1.388h8.646c0.767,0,1.389-0.622,1.389-1.388v-3.081c0-0.767,0.621-1.388,1.389-1.388h0.079 c0.767,0,1.389,0.621,1.389,1.388v8.94c0,0.767,0.621,1.388,1.388,1.388h0.077c0.767,0,1.389-0.621,1.389-1.388v-8.94 c0-0.767,0.622-1.388,1.389-1.388h0.079c0.767,0,1.389,0.621,1.389,1.388v8.94c0,0.767,0.621,1.388,1.389,1.388h0.115 c0.767,0,1.388-0.621,1.388-1.388v-8.94c0-0.767,0.622-1.388,1.389-1.388h0.04c0.767,0,1.389,0.621,1.389,1.388v11.797 c0,0.767-0.622,1.388-1.389,1.388h-11.502c-0.767,0-1.389-0.621-1.389-1.388v-3.008c0-0.767-0.621-1.388-1.389-1.388h-5.754 c-0.767,0-1.389,0.621-1.389,1.388v0.151c0,0.767,0.621,1.388,1.389,1.388h2.899c0.767,0,1.389,0.622,1.389,1.388v0.079 C380.403,193.553,379.782,194.176,379.015,194.176z"/>
|
||||
<path style="fill:#F5F5F5;" d="M401.82,194.176h0.042c0.767,0,1.389-0.621,1.389-1.388v-3.008c0-0.767,0.621-1.388,1.389-1.388 h5.792c0.767,0,1.389,0.621,1.389,1.388v3.008c0,0.767,0.621,1.388,1.388,1.388h11.538c0.767,0,1.389-0.621,1.389-1.388v-5.939 c0-0.767-0.622-1.388-1.389-1.388h-5.752c-0.767,0-1.389,0.621-1.389,1.388v0.153c0,0.767,0.622,1.388,1.389,1.388h2.933 c0.767,0,1.389,0.621,1.389,1.388v0.151c0,0.767-0.621,1.388-1.389,1.388h-5.825c-0.767,0-1.389-0.621-1.389-1.388v-3.081 c0-0.767-0.621-1.388-1.389-1.388H401.82c-0.767,0-1.389,0.621-1.389,1.388v5.939C400.43,193.553,401.053,194.176,401.82,194.176z M407.532,194.176h0.079c0.767,0,1.388-0.621,1.388-1.388v-0.079c0-0.767-0.621-1.388-1.388-1.388h-0.079 c-0.767,0-1.388,0.622-1.388,1.388v0.079C406.143,193.553,406.764,194.176,407.532,194.176z M401.82,182.531h34.462 c0.767,0,1.389-0.621,1.389-1.388v-0.152c0-0.767-0.621-1.388-1.389-1.388H401.82c-0.767,0-1.389,0.621-1.389,1.388v0.152 C400.43,181.91,401.053,182.531,401.82,182.531z M436.281,194.176h-5.865c-0.767,0-1.389-0.621-1.389-1.388v-5.939 c0-0.767,0.622-1.388,1.389-1.388h8.647c0.767,0,1.389-0.622,1.389-1.388v-3.081c0-0.767,0.622-1.388,1.389-1.388h0.115 c0.767,0,1.388,0.621,1.388,1.388v8.94c0,0.767,0.622,1.388,1.389,1.388h0.077c0.767,0,1.389-0.621,1.389-1.388v-8.94 c0-0.767,0.621-1.388,1.388-1.388h0.042c0.767,0,1.389,0.621,1.389,1.388v8.94c0,0.767,0.621,1.388,1.389,1.388h0.115 c0.767,0,1.388-0.621,1.388-1.388v-8.94c0-0.767,0.621-1.388,1.389-1.388h0.079c0.767,0,1.389,0.621,1.389,1.388v11.797 c0,0.767-0.621,1.388-1.389,1.388h-11.54c-0.767,0-1.389-0.621-1.389-1.388v-3.008c0-0.767-0.621-1.388-1.389-1.388h-5.79 c-0.767,0-1.389,0.621-1.389,1.388v0.151c0,0.767,0.621,1.388,1.389,1.388h3.008c0.767,0,1.389,0.622,1.389,1.388v0.079 C437.671,193.553,437.048,194.176,436.281,194.176z"/>
|
||||
<path style="fill:#F5F5F5;" d="M459.013,194.176h0.079c0.767,0,1.389-0.621,1.389-1.388v-3.008c0-0.767,0.621-1.388,1.389-1.388 h5.79c0.767,0,1.389,0.621,1.389,1.388v3.008c0,0.767,0.621,1.388,1.389,1.388h11.54c0.767,0,1.389-0.621,1.389-1.388v-5.939 c0-0.767-0.621-1.388-1.389-1.388h-5.754c-0.767,0-1.388,0.621-1.388,1.388v0.153c0,0.767,0.622,1.388,1.388,1.388h2.935 c0.767,0,1.388,0.621,1.388,1.388v0.151c0,0.767-0.622,1.388-1.388,1.388h-5.865c-0.767,0-1.389-0.621-1.389-1.388v-3.081 c0-0.767-0.621-1.388-1.388-1.388h-11.502c-0.767,0-1.389,0.621-1.389,1.388v5.939 C457.625,193.553,458.247,194.176,459.013,194.176z M464.726,194.176h0.079c0.767,0,1.389-0.621,1.389-1.388v-0.079 c0-0.767-0.621-1.388-1.389-1.388h-0.079c-0.767,0-1.388,0.622-1.388,1.388v0.079C463.338,193.553,463.959,194.176,464.726,194.176 z M459.013,182.531h34.388c0.767,0,1.389-0.621,1.389-1.388v-0.152c0-0.767-0.621-1.388-1.389-1.388h-34.388 c-0.767,0-1.389,0.621-1.389,1.388v0.152C457.625,181.91,458.247,182.531,459.013,182.531z M493.401,194.176h-5.79 c-0.767,0-1.389-0.621-1.389-1.388v-5.939c0-0.767,0.621-1.388,1.389-1.388h8.721c0.767,0,1.389-0.622,1.389-1.388v-3.081 c0-0.767,0.621-1.388,1.388-1.388h0.004c0.767,0,1.389,0.621,1.389,1.388v8.94c0,0.767,0.621,1.388,1.388,1.388h0.152 c0.767,0,1.389-0.621,1.389-1.388v-8.94c0-0.767,0.621-1.388,1.389-1.388h0.004c0.767,0,1.389,0.621,1.389,1.388v8.94 c0,0.767,0.622,1.388,1.389,1.388h0.079c0.767,0,1.389-0.621,1.389-1.388v-8.94c0-0.767,0.622-1.388,1.389-1.388h0.151 c0.767,0,1.389,0.621,1.389,1.388v11.797c0,0.767-0.622,1.388-1.389,1.388h-11.502c-0.767,0-1.388-0.621-1.388-1.388v-3.008 c0-0.767-0.622-1.388-1.389-1.388h-5.864c-0.767,0-1.388,0.621-1.388,1.388v0.151c0,0.767,0.621,1.388,1.388,1.388h2.933 c0.767,0,1.389,0.622,1.389,1.388v0.079C494.79,193.553,494.168,194.176,493.401,194.176z"/>
|
||||
<path style="fill:#F5F5F5;" d="M1.388,203.035h22.963c0.767,0,1.388-0.621,1.388-1.388v-3.081c0-0.767-0.621-1.388-1.388-1.388 H1.388C0.621,197.178,0,197.8,0,198.566v3.081C0,202.414,0.621,203.035,1.388,203.035z M30.022,203.035h22.927 c0.767,0,1.388-0.621,1.388-1.388v-3.081c0-0.767-0.621-1.388-1.388-1.388H30.022c-0.767,0-1.389,0.622-1.389,1.388v3.081 C28.632,202.414,29.255,203.035,30.022,203.035z"/>
|
||||
<path style="fill:#F5F5F5;" d="M58.618,203.035h22.927c0.767,0,1.388-0.621,1.388-1.388v-3.081c0-0.767-0.621-1.388-1.388-1.388 H58.618c-0.767,0-1.388,0.622-1.388,1.388v3.081C57.23,202.414,57.852,203.035,58.618,203.035z M87.179,203.035h23 c0.767,0,1.388-0.621,1.388-1.388v-3.081c0-0.767-0.621-1.388-1.388-1.388h-23c-0.767,0-1.389,0.622-1.389,1.388v3.081 C85.79,202.414,86.412,203.035,87.179,203.035z"/>
|
||||
<path style="fill:#F5F5F5;" d="M115.814,203.035h22.963c0.767,0,1.389-0.621,1.389-1.388v-3.081c0-0.767-0.621-1.388-1.389-1.388 h-22.963c-0.767,0-1.388,0.622-1.388,1.388v3.081C114.424,202.414,115.047,203.035,115.814,203.035z M144.41,203.035h22.963 c0.767,0,1.388-0.621,1.388-1.388v-3.081c0-0.767-0.622-1.388-1.388-1.388H144.41c-0.767,0-1.389,0.622-1.389,1.388v3.081 C143.021,202.414,143.644,203.035,144.41,203.035z"/>
|
||||
<path style="fill:#F5F5F5;" d="M173.007,203.035h22.963c0.767,0,1.388-0.621,1.388-1.388v-3.081c0-0.767-0.621-1.388-1.388-1.388 h-22.963c-0.767,0-1.389,0.622-1.389,1.388v3.081C171.619,202.414,172.241,203.035,173.007,203.035z M201.568,203.035h23 c0.767,0,1.388-0.621,1.388-1.388v-3.081c0-0.767-0.621-1.388-1.388-1.388h-23c-0.767,0-1.388,0.622-1.388,1.388v3.081 C200.179,202.414,200.8,203.035,201.568,203.035z"/>
|
||||
<path style="fill:#F5F5F5;" d="M230.2,203.035h22.965c0.767,0,1.388-0.621,1.388-1.388v-3.081c0-0.767-0.621-1.388-1.388-1.388 H230.2c-0.767,0-1.389,0.622-1.389,1.388v3.081C228.812,202.414,229.433,203.035,230.2,203.035z M258.797,203.035h22.965 c0.767,0,1.389-0.621,1.389-1.388v-3.081c0-0.767-0.622-1.388-1.389-1.388h-22.965c-0.767,0-1.388,0.622-1.388,1.388v3.081 C257.409,202.414,258.03,203.035,258.797,203.035z"/>
|
||||
<path style="fill:#F5F5F5;" d="M287.395,203.035h22.965c0.767,0,1.389-0.621,1.389-1.388v-3.081c0-0.767-0.621-1.388-1.389-1.388 h-22.965c-0.767,0-1.389,0.622-1.389,1.388v3.081C286.006,202.414,286.628,203.035,287.395,203.035z M316.03,203.035h22.927 c0.767,0,1.389-0.621,1.389-1.388v-3.081c0-0.767-0.622-1.388-1.389-1.388H316.03c-0.767,0-1.388,0.622-1.388,1.388v3.081 C314.641,202.414,315.263,203.035,316.03,203.035z"/>
|
||||
<path style="fill:#F5F5F5;" d="M344.589,203.035h22.965c0.767,0,1.388-0.621,1.388-1.388v-3.081c0-0.767-0.621-1.388-1.388-1.388 h-22.965c-0.767,0-1.389,0.622-1.389,1.388v3.081C343.2,202.414,343.822,203.035,344.589,203.035z M373.224,203.035h22.925 c0.767,0,1.389-0.621,1.389-1.388v-3.081c0-0.767-0.622-1.388-1.389-1.388h-22.925c-0.767,0-1.389,0.622-1.389,1.388v3.081 C371.836,202.414,372.457,203.035,373.224,203.035z"/>
|
||||
<path style="fill:#F5F5F5;" d="M401.82,203.035h22.927c0.767,0,1.389-0.621,1.389-1.388v-3.081c0-0.767-0.622-1.388-1.389-1.388 H401.82c-0.767,0-1.389,0.622-1.389,1.388v3.081C400.43,202.414,401.053,203.035,401.82,203.035z M430.417,203.035h22.965 c0.767,0,1.389-0.621,1.389-1.388v-3.081c0-0.767-0.621-1.388-1.389-1.388h-22.965c-0.767,0-1.389,0.622-1.389,1.388v3.081 C429.027,202.414,429.65,203.035,430.417,203.035z"/>
|
||||
<path style="fill:#F5F5F5;" d="M459.013,203.035h22.965c0.767,0,1.389-0.621,1.389-1.388v-3.081c0-0.767-0.621-1.388-1.389-1.388 h-22.965c-0.767,0-1.389,0.622-1.389,1.388v3.081C457.625,202.414,458.247,203.035,459.013,203.035z M487.612,203.035h23 c0.767,0,1.389-0.621,1.389-1.388v-3.081c0-0.767-0.622-1.388-1.389-1.388h-23c-0.767,0-1.389,0.622-1.389,1.388v3.081 C486.222,202.414,486.844,203.035,487.612,203.035z"/>
|
||||
<path style="fill:#F5F5F5;" d="M510.611,317.826h-0.077c-0.767,0-1.388,0.621-1.388,1.388v3.008c0,0.767-0.622,1.389-1.389,1.389 h-5.827c-0.767,0-1.389-0.622-1.389-1.389v-3.008c0-0.767-0.621-1.388-1.389-1.388H487.65c-0.767,0-1.388,0.621-1.388,1.388v5.939 c0,0.767,0.621,1.389,1.388,1.389h5.79c0.767,0,1.388-0.622,1.388-1.389v-0.152c0-0.767-0.621-1.388-1.388-1.388h-2.935 c-0.767,0-1.389-0.622-1.389-1.389v-0.151c0-0.767,0.622-1.388,1.389-1.388h5.792c0.767,0,1.388,0.621,1.388,1.388v3.081 c0,0.767,0.622,1.389,1.389,1.389h11.538c0.767,0,1.389-0.622,1.389-1.389v-5.939C512,318.448,511.378,317.826,510.611,317.826z M504.863,317.826h-0.079c-0.767,0-1.389,0.621-1.389,1.388v0.079c0,0.767,0.621,1.389,1.389,1.389h0.079 c0.767,0,1.389-0.622,1.389-1.389v-0.079C506.252,318.448,505.63,317.826,504.863,317.826z M510.611,329.47h-34.423 c-0.767,0-1.389,0.621-1.389,1.388v0.153c0,0.767,0.622,1.388,1.389,1.388h34.423c0.767,0,1.389-0.622,1.389-1.388v-0.153 C512,330.092,511.378,329.47,510.611,329.47z M476.189,317.826h5.79c0.767,0,1.389,0.621,1.389,1.388v5.939 c0,0.767-0.621,1.389-1.389,1.389h-8.647c-0.767,0-1.388,0.621-1.388,1.388v3.081c0,0.767-0.622,1.388-1.389,1.388h-0.077 c-0.767,0-1.389-0.622-1.389-1.388v-8.94c0-0.767-0.621-1.388-1.388-1.388h-0.079c-0.767,0-1.389,0.621-1.389,1.388v8.94 c0,0.767-0.622,1.388-1.388,1.388h-0.078c-0.767,0-1.389-0.622-1.389-1.388v-8.94c0-0.767-0.621-1.388-1.389-1.388h-0.115 c-0.767,0-1.389,0.621-1.389,1.388v8.94c0,0.767-0.621,1.388-1.389,1.388h-0.042c-0.767,0-1.388-0.622-1.388-1.388v-11.797 c0-0.767,0.621-1.388,1.388-1.388h11.502c0.767,0,1.389,0.621,1.389,1.388v3.008c0,0.767,0.621,1.389,1.388,1.389h5.79 c0.767,0,1.388-0.622,1.388-1.389v-0.151c0-0.767-0.621-1.388-1.388-1.388h-2.933c-0.767,0-1.389-0.622-1.389-1.389v-0.079 C474.799,318.448,475.422,317.826,476.189,317.826z"/>
|
||||
<path style="fill:#F5F5F5;" d="M453.382,317.826h-0.115c-0.767,0-1.388,0.621-1.388,1.388v3.008c0,0.767-0.622,1.389-1.389,1.389 h-5.754c-0.767,0-1.389-0.622-1.389-1.389v-3.008c0-0.767-0.621-1.388-1.388-1.388h-11.502c-0.767,0-1.389,0.621-1.389,1.388v5.939 c0,0.767,0.622,1.389,1.389,1.389h5.79c0.767,0,1.389-0.622,1.389-1.389v-0.152c0-0.767-0.622-1.388-1.389-1.388h-2.935 c-0.767,0-1.388-0.622-1.388-1.389v-0.151c0-0.767,0.621-1.388,1.388-1.388h5.792c0.767,0,1.388,0.621,1.388,1.388v3.081 c0,0.767,0.622,1.389,1.389,1.389h11.502c0.767,0,1.389-0.622,1.389-1.389v-5.939C454.77,318.448,454.148,317.826,453.382,317.826z M447.669,317.826h-0.077c-0.767,0-1.389,0.621-1.389,1.388v0.079c0,0.767,0.622,1.389,1.389,1.389h0.077 c0.767,0,1.389-0.622,1.389-1.389v-0.079C449.057,318.448,448.436,317.826,447.669,317.826z M453.382,329.47h-34.387 c-0.767,0-1.389,0.621-1.389,1.388v0.153c0,0.767,0.622,1.388,1.389,1.388h34.387c0.767,0,1.389-0.622,1.389-1.388v-0.153 C454.77,330.092,454.148,329.47,453.382,329.47z M418.994,317.826h5.827c0.767,0,1.389,0.621,1.389,1.388v5.939 c0,0.767-0.622,1.389-1.389,1.389h-8.647c-0.767,0-1.389,0.621-1.389,1.388v3.081c0,0.767-0.621,1.388-1.389,1.388h-0.115 c-0.767,0-1.389-0.622-1.389-1.388v-8.94c0-0.767-0.622-1.388-1.389-1.388h-0.115c-0.767,0-1.389,0.621-1.389,1.388v8.94 c0,0.767-0.621,1.388-1.388,1.388h-0.042c-0.767,0-1.388-0.622-1.388-1.388v-8.94c0-0.767-0.622-1.388-1.389-1.388h-0.115 c-0.767,0-1.389,0.621-1.389,1.388v8.94c0,0.767-0.621,1.388-1.388,1.388h-0.078c-0.767,0-1.388-0.622-1.388-1.388v-11.797 c0-0.767,0.622-1.388,1.388-1.388h11.575c0.767,0,1.389,0.621,1.389,1.388v3.008c0,0.767,0.621,1.389,1.389,1.389h5.754 c0.767,0,1.389-0.622,1.389-1.389v-0.151c0-0.767-0.621-1.388-1.389-1.388h-2.935c-0.767,0-1.389-0.622-1.389-1.389v-0.079 C417.605,318.448,418.227,317.826,418.994,317.826z"/>
|
||||
<path style="fill:#F5F5F5;" d="M396.186,317.826h-0.077c-0.767,0-1.389,0.621-1.389,1.388v3.008c0,0.767-0.621,1.389-1.388,1.389 h-5.792c-0.767,0-1.389-0.622-1.389-1.389v-3.008c0-0.767-0.622-1.388-1.389-1.388h-11.538c-0.767,0-1.389,0.621-1.389,1.388v5.939 c0,0.767,0.621,1.389,1.389,1.389h5.79c0.767,0,1.389-0.622,1.389-1.389v-0.152c0-0.767-0.621-1.388-1.389-1.388h-2.935 c-0.767,0-1.389-0.622-1.389-1.389v-0.151c0-0.767,0.622-1.388,1.389-1.388h5.827c0.767,0,1.389,0.621,1.389,1.388v3.081 c0,0.767,0.621,1.389,1.388,1.389h11.502c0.767,0,1.389-0.622,1.389-1.389v-5.939C397.576,318.448,396.953,317.826,396.186,317.826 z M390.474,317.826h-0.077c-0.767,0-1.389,0.621-1.389,1.388v0.079c0,0.767,0.622,1.389,1.389,1.389h0.077 c0.767,0,1.388-0.622,1.388-1.389v-0.079C391.863,318.448,391.242,317.826,390.474,317.826z M396.186,329.47h-34.424 c-0.767,0-1.389,0.621-1.389,1.388v0.153c0,0.767,0.621,1.388,1.389,1.388h34.424c0.767,0,1.389-0.622,1.389-1.388v-0.153 C397.576,330.092,396.953,329.47,396.186,329.47z M361.762,317.826h5.827c0.767,0,1.389,0.621,1.389,1.388v5.939 c0,0.767-0.622,1.389-1.389,1.389h-8.646c-0.767,0-1.388,0.621-1.388,1.388v3.081c0,0.767-0.622,1.388-1.389,1.388h-0.079 c-0.767,0-1.388-0.622-1.388-1.388v-8.94c0-0.767-0.622-1.388-1.389-1.388h-0.115c-0.767,0-1.389,0.621-1.389,1.388v8.94 c0,0.767-0.621,1.388-1.388,1.388h-0.116c-0.767,0-1.388-0.622-1.388-1.388v-8.94c0-0.767-0.622-1.388-1.389-1.388h-0.042 c-0.767,0-1.389,0.621-1.389,1.388v8.94c0,0.767-0.621,1.388-1.389,1.388h-0.077c-0.767,0-1.388-0.622-1.388-1.388v-11.797 c0-0.767,0.621-1.388,1.388-1.388h11.54c0.767,0,1.389,0.621,1.389,1.388v3.008c0,0.767,0.621,1.389,1.388,1.389h5.79 c0.767,0,1.388-0.622,1.388-1.389v-0.151c0-0.767-0.621-1.388-1.388-1.388h-2.973c-0.767,0-1.389-0.622-1.389-1.389v-0.079 C360.373,318.448,360.995,317.826,361.762,317.826z"/>
|
||||
<path style="fill:#F5F5F5;" d="M338.993,317.826h-0.077c-0.767,0-1.389,0.621-1.389,1.388v3.008c0,0.767-0.622,1.389-1.388,1.389 h-5.79c-0.767,0-1.388-0.622-1.388-1.389v-3.008c0-0.767-0.622-1.388-1.389-1.388h-11.54c-0.767,0-1.388,0.621-1.388,1.388v5.939 c0,0.767,0.621,1.389,1.388,1.389h5.827c0.767,0,1.389-0.622,1.389-1.389v-0.152c0-0.767-0.622-1.388-1.389-1.388h-2.935 c-0.767,0-1.388-0.622-1.388-1.389v-0.151c0-0.767,0.621-1.388,1.388-1.388h5.79c0.767,0,1.388,0.621,1.388,1.388v3.081 c0,0.767,0.622,1.389,1.389,1.389h11.502c0.767,0,1.389-0.622,1.389-1.389v-5.939C340.381,318.448,339.759,317.826,338.993,317.826 z M333.28,317.826h-0.077c-0.767,0-1.388,0.621-1.388,1.388v0.079c0,0.767,0.622,1.389,1.388,1.389h0.077 c0.767,0,1.389-0.622,1.389-1.389v-0.079C334.668,318.448,334.047,317.826,333.28,317.826z M338.993,329.47h-34.388 c-0.767,0-1.388,0.621-1.388,1.388v0.153c0,0.767,0.621,1.388,1.388,1.388h34.388c0.767,0,1.389-0.622,1.389-1.388v-0.153 C340.381,330.092,339.759,329.47,338.993,329.47z M304.605,317.826h5.827c0.767,0,1.389,0.621,1.389,1.388v5.939 c0,0.767-0.622,1.389-1.389,1.389h-8.721c-0.767,0-1.389,0.621-1.389,1.388v3.081c0,0.767-0.621,1.388-1.388,1.388h-0.077 c-0.767,0-1.389-0.622-1.389-1.388v-8.94c0-0.767-0.622-1.388-1.389-1.388h-0.042c-0.767,0-1.389,0.621-1.389,1.388v8.94 c0,0.767-0.621,1.388-1.389,1.388h-0.115c-0.767,0-1.388-0.622-1.388-1.388v-8.94c0-0.767-0.622-1.388-1.389-1.388h-0.079 c-0.767,0-1.388,0.621-1.388,1.388v8.94c0,0.767-0.622,1.388-1.389,1.388h-0.077c-0.767,0-1.389-0.622-1.389-1.388v-11.797 c0-0.767,0.622-1.388,1.389-1.388h11.502c0.767,0,1.388,0.621,1.388,1.388v3.008c0,0.767,0.622,1.389,1.389,1.389h5.827 c0.767,0,1.389-0.622,1.389-1.389v-0.151c0-0.767-0.621-1.388-1.389-1.388h-2.935c-0.767,0-1.388-0.622-1.388-1.389v-0.079 C303.217,318.448,303.838,317.826,304.605,317.826z"/>
|
||||
<path style="fill:#F5F5F5;" d="M281.8,317.826h-0.079c-0.767,0-1.388,0.621-1.388,1.388v3.008c0,0.767-0.621,1.389-1.388,1.389 h-5.79c-0.767,0-1.388-0.622-1.388-1.389v-3.008c0-0.767-0.622-1.388-1.389-1.388h-11.54c-0.767,0-1.388,0.621-1.388,1.388v5.939 c0,0.767,0.621,1.389,1.388,1.389h5.827c0.767,0,1.389-0.622,1.389-1.389v-0.152c0-0.767-0.622-1.388-1.389-1.388h-2.97 c-0.767,0-1.388-0.622-1.388-1.389v-0.151c0-0.767,0.622-1.388,1.388-1.388h5.79c0.767,0,1.388,0.621,1.388,1.388v3.081 c0,0.767,0.622,1.389,1.389,1.389h11.54c0.767,0,1.389-0.622,1.389-1.389v-5.939C283.188,318.448,282.567,317.826,281.8,317.826z M276.05,317.826h-0.042c-0.767,0-1.389,0.621-1.389,1.388v0.079c0,0.767,0.621,1.389,1.389,1.389h0.042 c0.767,0,1.388-0.622,1.388-1.389v-0.079C277.439,318.448,276.817,317.826,276.05,317.826z M281.8,329.47h-34.424 c-0.767,0-1.388,0.621-1.388,1.388v0.153c0,0.767,0.622,1.388,1.388,1.388H281.8c0.767,0,1.389-0.622,1.389-1.388v-0.153 C283.188,330.092,282.567,329.47,281.8,329.47z M247.374,317.826h5.827c0.767,0,1.388,0.621,1.388,1.388v5.939 c0,0.767-0.621,1.389-1.388,1.389h-8.684c-0.767,0-1.388,0.621-1.388,1.388v3.081c0,0.767-0.621,1.388-1.389,1.388h-0.077 c-0.767,0-1.389-0.622-1.389-1.388v-8.94c0-0.767-0.621-1.388-1.388-1.388h-0.079c-0.767,0-1.388,0.621-1.388,1.388v8.94 c0,0.767-0.622,1.388-1.389,1.388h-0.077c-0.767,0-1.388-0.622-1.388-1.388v-8.94c0-0.767-0.622-1.388-1.388-1.388h-0.078 c-0.767,0-1.388,0.621-1.388,1.388v8.94c0,0.767-0.621,1.388-1.389,1.388h-0.079c-0.767,0-1.389-0.622-1.389-1.388v-11.797 c0-0.767,0.621-1.388,1.389-1.388h11.502c0.767,0,1.389,0.621,1.389,1.388v3.008c0,0.767,0.621,1.389,1.388,1.389h5.827 c0.767,0,1.389-0.622,1.389-1.389v-0.151c0-0.767-0.622-1.388-1.389-1.388h-2.97c-0.767,0-1.388-0.622-1.388-1.389v-0.079 C245.986,318.448,246.607,317.826,247.374,317.826z"/>
|
||||
<path style="fill:#F5F5F5;" d="M224.605,317.826h-0.079c-0.767,0-1.389,0.621-1.389,1.388v3.008c0,0.767-0.621,1.389-1.388,1.389 h-5.79c-0.767,0-1.388-0.622-1.388-1.389v-3.008c0-0.767-0.622-1.388-1.388-1.388h-11.54c-0.767,0-1.388,0.621-1.388,1.388v5.939 c0,0.767,0.621,1.389,1.388,1.389h5.792c0.767,0,1.388-0.622,1.388-1.389v-0.152c0-0.767-0.621-1.388-1.388-1.388h-2.899 c-0.767,0-1.389-0.622-1.389-1.389v-0.151c0-0.767,0.622-1.388,1.389-1.388h5.754c0.767,0,1.389,0.621,1.389,1.388v3.081 c0,0.767,0.621,1.389,1.388,1.389h11.54c0.767,0,1.389-0.622,1.389-1.389v-5.939C225.994,318.448,225.372,317.826,224.605,317.826z M218.856,317.826h-0.042c-0.767,0-1.389,0.621-1.389,1.388v0.079c0,0.767,0.622,1.389,1.389,1.389h0.042 c0.767,0,1.388-0.622,1.388-1.389v-0.079C220.244,318.448,219.623,317.826,218.856,317.826z M224.605,329.47H190.18 c-0.767,0-1.388,0.621-1.388,1.388v0.153c0,0.767,0.621,1.388,1.388,1.388h34.424c0.767,0,1.389-0.622,1.389-1.388v-0.153 C225.994,330.092,225.372,329.47,224.605,329.47z M190.18,317.826h5.79c0.767,0,1.388,0.621,1.388,1.388v5.939 c0,0.767-0.621,1.389-1.388,1.389h-8.646c-0.767,0-1.388,0.621-1.388,1.388v3.081c0,0.767-0.621,1.388-1.389,1.388h-0.079 c-0.767,0-1.388-0.622-1.388-1.388v-8.94c0-0.767-0.621-1.388-1.388-1.388h-0.078c-0.767,0-1.388,0.621-1.388,1.388v8.94 c0,0.767-0.621,1.388-1.389,1.388h-0.079c-0.767,0-1.389-0.622-1.389-1.388v-8.94c0-0.767-0.621-1.388-1.388-1.388h-0.077 c-0.767,0-1.388,0.621-1.388,1.388v8.94c0,0.767-0.622,1.388-1.389,1.388h-0.079c-0.767,0-1.389-0.622-1.389-1.388v-11.797 c0-0.767,0.622-1.388,1.389-1.388h11.505c0.767,0,1.389,0.621,1.389,1.388v3.008c0,0.767,0.621,1.389,1.388,1.389h5.825 c0.767,0,1.389-0.622,1.389-1.389v-0.151c0-0.767-0.621-1.388-1.389-1.388h-2.97c-0.767,0-1.388-0.622-1.388-1.389v-0.079 C188.791,318.448,189.414,317.826,190.18,317.826z"/>
|
||||
<path style="fill:#F5F5F5;" d="M167.411,317.826h-0.079c-0.767,0-1.389,0.621-1.389,1.388v3.008c0,0.767-0.621,1.389-1.388,1.389 h-5.826c-0.767,0-1.389-0.622-1.389-1.389v-3.008c0-0.767-0.621-1.388-1.388-1.388h-11.505c-0.767,0-1.389,0.621-1.389,1.388v5.939 c0,0.767,0.621,1.389,1.389,1.389h5.792c0.767,0,1.389-0.622,1.389-1.389v-0.152c0-0.767-0.621-1.388-1.389-1.388h-2.973 c-0.767,0-1.389-0.622-1.389-1.389v-0.151c0-0.767,0.621-1.388,1.389-1.388h5.865c0.767,0,1.388,0.621,1.388,1.388v3.081 c0,0.767,0.622,1.389,1.389,1.389h11.502c0.767,0,1.389-0.622,1.389-1.389v-5.939C168.8,318.448,168.178,317.826,167.411,317.826z M161.698,317.826h-0.116c-0.767,0-1.388,0.621-1.388,1.388v0.079c0,0.767,0.621,1.389,1.388,1.389h0.116 c0.767,0,1.388-0.622,1.388-1.389v-0.079C163.087,318.448,162.465,317.826,161.698,317.826z M167.411,329.47h-34.424 c-0.767,0-1.389,0.621-1.389,1.388v0.153c0,0.767,0.621,1.388,1.389,1.388h34.424c0.767,0,1.389-0.622,1.389-1.388v-0.153 C168.8,330.092,168.178,329.47,167.411,329.47z M132.985,317.826h5.79c0.767,0,1.389,0.621,1.389,1.388v5.939 c0,0.767-0.621,1.389-1.389,1.389h-8.646c-0.767,0-1.388,0.621-1.388,1.388v3.081c0,0.767-0.621,1.388-1.389,1.388h-0.079 c-0.767,0-1.389-0.622-1.389-1.388v-8.94c0-0.767-0.621-1.388-1.388-1.388h-0.078c-0.767,0-1.388,0.621-1.388,1.388v8.94 c0,0.767-0.621,1.388-1.389,1.388h-0.079c-0.767,0-1.389-0.622-1.389-1.388v-8.94c0-0.767-0.621-1.388-1.389-1.388h-0.115 c-0.767,0-1.388,0.621-1.388,1.388v8.94c0,0.767-0.621,1.388-1.388,1.388h-0.04c-0.767,0-1.389-0.622-1.389-1.388v-11.797 c0-0.767,0.621-1.388,1.389-1.388h11.502c0.767,0,1.389,0.621,1.389,1.388v3.008c0,0.767,0.621,1.389,1.388,1.389h5.754 c0.767,0,1.389-0.622,1.389-1.389v-0.151c0-0.767-0.621-1.388-1.389-1.388h-2.899c-0.767,0-1.389-0.622-1.389-1.389v-0.079 C131.597,318.448,132.218,317.826,132.985,317.826z"/>
|
||||
<path style="fill:#F5F5F5;" d="M110.18,317.826h-0.042c-0.767,0-1.389,0.621-1.389,1.388v3.008c0,0.767-0.621,1.389-1.388,1.389 h-5.792c-0.767,0-1.388-0.622-1.388-1.389v-3.008c0-0.767-0.621-1.388-1.388-1.388H87.254c-0.767,0-1.388,0.621-1.388,1.388v5.939 c0,0.767,0.621,1.389,1.388,1.389h5.752c0.767,0,1.389-0.622,1.389-1.389v-0.152c0-0.767-0.621-1.388-1.389-1.388h-2.933 c-0.767,0-1.388-0.622-1.388-1.389v-0.151c0-0.767,0.621-1.388,1.388-1.388H95.9c0.767,0,1.389,0.621,1.389,1.388v3.081 c0,0.767,0.621,1.389,1.388,1.389h11.505c0.767,0,1.389-0.622,1.389-1.389v-5.939C111.57,318.448,110.947,317.826,110.18,317.826z M104.468,317.826h-0.079c-0.767,0-1.389,0.621-1.389,1.388v0.079c0,0.767,0.621,1.389,1.389,1.389h0.079 c0.767,0,1.388-0.622,1.388-1.389v-0.079C105.857,318.448,105.235,317.826,104.468,317.826z M110.18,329.47H75.719 c-0.767,0-1.388,0.621-1.388,1.388v0.153c0,0.767,0.621,1.388,1.388,1.388h34.462c0.767,0,1.389-0.622,1.389-1.388v-0.153 C111.57,330.092,110.947,329.47,110.18,329.47z M75.719,317.826h5.865c0.767,0,1.389,0.621,1.389,1.388v5.939 c0,0.767-0.621,1.389-1.389,1.389h-8.648c-0.767,0-1.388,0.621-1.388,1.388v3.081c0,0.767-0.621,1.388-1.389,1.388h-0.115 c-0.767,0-1.388-0.622-1.388-1.388v-8.94c0-0.767-0.621-1.388-1.389-1.388H67.19c-0.767,0-1.389,0.621-1.389,1.388v8.94 c0,0.767-0.621,1.388-1.388,1.388H64.37c-0.767,0-1.389-0.622-1.389-1.388v-8.94c0-0.767-0.621-1.388-1.388-1.388h-0.115 c-0.767,0-1.389,0.621-1.389,1.388v8.94c0,0.767-0.621,1.388-1.388,1.388h-0.079c-0.767,0-1.388-0.622-1.388-1.388v-11.797 c0-0.767,0.621-1.388,1.388-1.388h11.54c0.767,0,1.389,0.621,1.389,1.388v3.008c0,0.767,0.621,1.389,1.388,1.389h5.79 c0.767,0,1.388-0.622,1.388-1.389v-0.151c0-0.767-0.621-1.388-1.388-1.388H75.72c-0.767,0-1.388-0.622-1.388-1.389v-0.079 C74.329,318.448,74.952,317.826,75.719,317.826z"/>
|
||||
<path style="fill:#F5F5F5;" d="M52.986,317.826h-0.079c-0.767,0-1.388,0.621-1.388,1.388v3.008c0,0.767-0.621,1.389-1.389,1.389 h-5.79c-0.767,0-1.389-0.622-1.389-1.389v-3.008c0-0.767-0.621-1.388-1.388-1.388H30.022c-0.767,0-1.389,0.621-1.389,1.388v5.939 c0,0.767,0.621,1.389,1.389,1.389h5.754c0.767,0,1.388-0.622,1.388-1.389v-0.152c0-0.767-0.621-1.388-1.388-1.388h-2.935 c-0.767,0-1.389-0.622-1.389-1.389v-0.151c0-0.767,0.622-1.388,1.389-1.388h5.865c0.767,0,1.389,0.621,1.389,1.388v3.081 c0,0.767,0.621,1.389,1.388,1.389h11.502c0.767,0,1.388-0.622,1.388-1.389v-5.939C54.375,318.448,53.753,317.826,52.986,317.826z M47.274,317.826h-0.079c-0.767,0-1.388,0.621-1.388,1.388v0.079c0,0.767,0.621,1.389,1.388,1.389h0.079 c0.767,0,1.388-0.622,1.388-1.389v-0.079C48.662,318.448,48.041,317.826,47.274,317.826z M52.986,329.47H18.599 c-0.767,0-1.389,0.621-1.389,1.388v0.153c0,0.767,0.622,1.388,1.389,1.388h34.387c0.767,0,1.388-0.622,1.388-1.388v-0.153 C54.375,330.092,53.753,329.47,52.986,329.47z M18.599,317.826h5.79c0.767,0,1.389,0.621,1.389,1.388v5.939 c0,0.767-0.621,1.389-1.389,1.389H15.67c-0.767,0-1.389,0.621-1.389,1.388v3.081c0,0.767-0.621,1.388-1.389,1.388h-0.004 c-0.767,0-1.389-0.622-1.389-1.388v-8.94c0-0.767-0.621-1.388-1.389-1.388H9.956c-0.767,0-1.389,0.621-1.389,1.388v8.94 c0,0.767-0.621,1.388-1.389,1.388H7.175c-0.767,0-1.388-0.622-1.388-1.388v-8.94c0-0.767-0.622-1.388-1.389-1.388H4.317 c-0.767,0-1.389,0.621-1.389,1.388v8.94c0,0.767-0.621,1.388-1.388,1.388H1.388c-0.767,0-1.388-0.622-1.388-1.388v-11.797 c0-0.767,0.621-1.388,1.388-1.388H12.89c0.767,0,1.389,0.621,1.389,1.388v3.008c0,0.767,0.621,1.389,1.389,1.389h5.864 c0.767,0,1.388-0.622,1.388-1.389v-0.151c0-0.767-0.621-1.388-1.388-1.388H18.6c-0.767,0-1.389-0.622-1.389-1.389v-0.079 C17.21,318.448,17.832,317.826,18.599,317.826z"/>
|
||||
<path style="fill:#F5F5F5;" d="M510.611,308.966h-22.963c-0.767,0-1.388,0.622-1.388,1.389v3.081c0,0.767,0.621,1.388,1.388,1.388 h22.963c0.767,0,1.389-0.621,1.389-1.388v-3.081C512,309.588,511.378,308.966,510.611,308.966z M481.978,308.966h-22.927 c-0.767,0-1.388,0.622-1.388,1.389v3.081c0,0.767,0.621,1.388,1.388,1.388h22.927c0.767,0,1.389-0.621,1.389-1.388v-3.081 C483.367,309.588,482.745,308.966,481.978,308.966z"/>
|
||||
<path style="fill:#F5F5F5;" d="M453.382,308.966h-22.927c-0.767,0-1.389,0.622-1.389,1.389v3.081c0,0.767,0.622,1.388,1.389,1.388 h22.927c0.767,0,1.389-0.621,1.389-1.388v-3.081C454.77,309.588,454.148,308.966,453.382,308.966z M424.821,308.966h-23 c-0.767,0-1.388,0.622-1.388,1.389v3.081c0,0.767,0.622,1.388,1.388,1.388h23c0.767,0,1.389-0.621,1.389-1.388v-3.081 C426.21,309.588,425.588,308.966,424.821,308.966z"/>
|
||||
<path style="fill:#F5F5F5;" d="M396.186,308.966h-22.963c-0.767,0-1.389,0.622-1.389,1.389v3.081c0,0.767,0.621,1.388,1.389,1.388 h22.963c0.767,0,1.389-0.621,1.389-1.388v-3.081C397.576,309.588,396.953,308.966,396.186,308.966z M367.59,308.966h-22.963 c-0.767,0-1.388,0.622-1.388,1.389v3.081c0,0.767,0.621,1.388,1.388,1.388h22.963c0.767,0,1.389-0.621,1.389-1.388v-3.081 C368.979,309.588,368.356,308.966,367.59,308.966z"/>
|
||||
<path style="fill:#F5F5F5;" d="M338.993,308.966H316.03c-0.767,0-1.388,0.622-1.388,1.389v3.081c0,0.767,0.621,1.388,1.388,1.388 h22.963c0.767,0,1.389-0.621,1.389-1.388v-3.081C340.381,309.588,339.759,308.966,338.993,308.966z M310.432,308.966h-23 c-0.767,0-1.389,0.622-1.389,1.389v3.081c0,0.767,0.622,1.388,1.389,1.388h23c0.767,0,1.389-0.621,1.389-1.388v-3.081 C311.821,309.588,311.2,308.966,310.432,308.966z"/>
|
||||
<path style="fill:#F5F5F5;" d="M281.8,308.966h-22.965c-0.767,0-1.388,0.622-1.388,1.389v3.081c0,0.767,0.621,1.388,1.388,1.388 H281.8c0.767,0,1.389-0.621,1.389-1.388v-3.081C283.188,309.588,282.567,308.966,281.8,308.966z M253.203,308.966h-22.965 c-0.767,0-1.389,0.622-1.389,1.389v3.081c0,0.767,0.621,1.388,1.389,1.388h22.965c0.767,0,1.388-0.621,1.388-1.388v-3.081 C254.591,309.588,253.97,308.966,253.203,308.966z"/>
|
||||
<path style="fill:#F5F5F5;" d="M224.605,308.966H201.64c-0.767,0-1.388,0.622-1.388,1.389v3.081c0,0.767,0.621,1.388,1.388,1.388 h22.965c0.767,0,1.389-0.621,1.389-1.388v-3.081C225.994,309.588,225.372,308.966,224.605,308.966z M195.97,308.966h-22.927 c-0.767,0-1.389,0.622-1.389,1.389v3.081c0,0.767,0.622,1.388,1.389,1.388h22.927c0.767,0,1.388-0.621,1.388-1.388v-3.081 C197.359,309.588,196.737,308.966,195.97,308.966z"/>
|
||||
<path style="fill:#F5F5F5;" d="M167.411,308.966h-22.965c-0.767,0-1.389,0.622-1.389,1.389v3.081c0,0.767,0.621,1.388,1.389,1.388 h22.965c0.767,0,1.389-0.621,1.389-1.388v-3.081C168.8,309.588,168.178,308.966,167.411,308.966z M138.776,308.966h-22.925 c-0.767,0-1.389,0.622-1.389,1.389v3.081c0,0.767,0.621,1.388,1.389,1.388h22.925c0.767,0,1.389-0.621,1.389-1.388v-3.081 C140.164,309.588,139.543,308.966,138.776,308.966z"/>
|
||||
<path style="fill:#F5F5F5;" d="M110.18,308.966H87.254c-0.767,0-1.388,0.622-1.388,1.389v3.081c0,0.767,0.621,1.388,1.388,1.388 h22.927c0.767,0,1.389-0.621,1.389-1.388v-3.081C111.57,309.588,110.947,308.966,110.18,308.966z M81.583,308.966H58.618 c-0.767,0-1.388,0.622-1.388,1.389v3.081c0,0.767,0.621,1.388,1.388,1.388h22.965c0.767,0,1.389-0.621,1.389-1.388v-3.081 C82.972,309.588,82.35,308.966,81.583,308.966z"/>
|
||||
<path style="fill:#F5F5F5;" d="M52.986,308.966H30.022c-0.767,0-1.389,0.622-1.389,1.389v3.081c0,0.767,0.621,1.388,1.389,1.388 h22.965c0.767,0,1.388-0.621,1.388-1.388v-3.081C54.375,309.588,53.753,308.966,52.986,308.966z M24.388,308.966h-23 c-0.767,0-1.388,0.622-1.388,1.389v3.081c0,0.767,0.621,1.388,1.388,1.388h23c0.767,0,1.389-0.621,1.389-1.388v-3.081 C25.778,309.588,25.156,308.966,24.388,308.966z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#FF4B55;" d="M248.698,214.275c2.62,0.698,5.414-0.071,7.334-2.026c2.898,2.934,7.647,3.004,10.649,0.141 c1.956-1.886,2.759-4.75,2.06-7.334c-2.548,4.121-7.925,5.448-12.046,2.863c-0.21-0.141-0.489-0.28-0.663-0.419 c-3.875,2.863-9.357,2.095-12.291-1.745c-0.106-0.211-0.314-0.49-0.454-0.698C242.239,209.107,244.683,213.296,248.698,214.275z"/>
|
||||
<path style="fill:#FF4B55;" d="M264.966,295.855c9.386-5.153,17.219-13.272,21.514-23.966c7.314-18.33,2.708-39.02-11.283-52.44 c-0.481-0.461-1.212,0.156-0.863,0.724c13.799,22.503,8.363,52.074-12.99,68.278l1.021-65.367c0.014-0.887-0.382-1.732-1.071-2.291 l-3.473-2.807c-1.064-0.86-2.584-0.855-3.642,0.01l-3.422,2.797c-0.683,0.558-1.073,1.398-1.059,2.28l0.992,65.414 c-21.356-16.195-26.804-45.794-13.026-68.312c0.348-0.568-0.383-1.185-0.863-0.723c-13.964,13.42-18.599,34.109-11.286,52.438 c4.295,10.692,12.127,18.812,21.516,23.965c-5.975,2.047-12.255,3.134-18.605,2.952c-0.671-0.019-0.806,0.925-0.163,1.119 c8.068,2.449,16.366,2.617,24.168,0.868l3.063,5.943c0.212,0.41,0.799,0.412,1.012,0.001l3.084-5.941 c7.802,1.746,16.103,1.575,24.177-0.874c0.642-0.194,0.508-1.138-0.163-1.119C277.246,298.988,270.951,297.902,264.966,295.855z"/>
|
||||
<path style="fill:#FF4B55;" d="M303.171,235.086c-4.804-8.975-12.782-15.778-22.28-19.111c-0.595-0.209-1.059,0.577-0.573,0.978 c20.966,17.271,25.169,48.032,8.954,70.302c-0.839,1.118-1.747,2.305-2.62,3.281C306.559,279.852,313.927,254.99,303.171,235.086z"/>
|
||||
<path style="fill:#FF4B55;" d="M222.755,287.255c-16.213-22.27-12.044-53.03,8.918-70.301c0.487-0.401,0.022-1.186-0.573-0.978 c-9.485,3.334-17.408,10.135-22.243,19.11c-10.824,19.904-3.386,44.765,16.552,55.449 C224.467,289.559,223.559,288.373,222.755,287.255z"/>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 42 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 9.8 KiB |
@ -1,131 +0,0 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<path style="fill:#41479B;" d="M473.655,423.75H38.345C17.167,423.75,0,406.582,0,385.405V126.646 c0-21.177,17.167-38.345,38.345-38.345h435.31c21.177,0,38.345,17.167,38.345,38.345v258.759 C512,406.582,494.833,423.75,473.655,423.75z"/>
|
||||
<path style="fill:#F5F5F5;" d="M8.828,255.975h15.334l81.77-53.574v53.574h44.138v-53.574l81.77,53.574h15.334 c4.875,0,8.828-3.953,8.828-8.828v-7.002l-70.155-45.963H256v-44.138h-70.155L256,104.081v-7.002c0-4.559-3.456-8.309-7.891-8.777 h-16.348l-81.693,53.523V88.301H105.93v53.523L26.894,90.041c-9.242,2.888-16.973,9.186-21.741,17.415l65.002,42.588H0v44.138 h70.155L0,240.145v7.002C0,252.022,3.953,255.975,8.828,255.975z"/>
|
||||
<g>
|
||||
<polygon style="fill:#FF4B55;" points="256,158.871 141.241,158.871 141.241,88.25 114.759,88.25 114.759,158.871 0,158.871 0,185.354 114.759,185.354 114.759,255.975 141.241,255.975 141.241,185.354 256,185.354 "/>
|
||||
<path style="fill:#FF4B55;" d="M8.254,102.894l72.636,47.149h16.214L14.643,96.516C12.271,98.385,10.126,100.525,8.254,102.894z"/>
|
||||
<path style="fill:#FF4B55;" d="M166.283,150.044l88.374-57.366c-1.536-2.599-4.246-4.427-7.485-4.427h-1.909l-95.194,61.793 H166.283z"/>
|
||||
<path style="fill:#FF4B55;" d="M89.474,194.182L1.269,251.437c1.519,2.663,4.273,4.537,7.559,4.537h1.665l95.196-61.793H89.474 V194.182z"/>
|
||||
<path style="fill:#FF4B55;" d="M255.86,247.841l-82.666-53.658H156.98l93.874,60.935 C253.666,253.812,255.595,251.076,255.86,247.841z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#FFE15A;" d="M383.828,172.193c0,0-3.691-14.766-14.766-22.15c0,0,11.074,18.457,11.074,33.224L383.828,172.193z"/>
|
||||
<path style="fill:#FFE15A;" d="M366.754,156.158c0,0,7.73,4.729,11.882,12.459l-3.346,7.73 C375.292,176.345,372.523,165.387,366.754,156.158z"/>
|
||||
<path style="fill:#FFE15A;" d="M358.218,157.888c0,0,13.382,4.153,19.726,12.806l-3.807,5.768 C374.137,176.461,369.062,166.656,358.218,157.888z"/>
|
||||
<path style="fill:#FFE15A;" d="M356.257,164.579c0,0,14.074,2.191,20.419,8.883l-1.615,6.345 C375.061,179.807,367.331,170.578,356.257,164.579z"/>
|
||||
<path style="fill:#FFE15A;" d="M356.718,169.194c0,0,13.612,1.385,19.842,8.536c6.229,7.153-2.307,4.96-2.307,4.96 S367.101,174.5,356.718,169.194z"/>
|
||||
<path style="fill:#FFE15A;" d="M383.828,172.193c0,0,3.691-14.766,14.766-22.15c0,0-11.074,18.457-11.074,33.224L383.828,172.193z"/>
|
||||
<path style="fill:#FFE15A;" d="M400.901,156.158c0,0-7.73,4.729-11.882,12.459l3.346,7.73 C392.365,176.345,395.134,165.387,400.901,156.158z"/>
|
||||
<path style="fill:#FFE15A;" d="M409.438,157.888c0,0-13.382,4.153-19.726,12.806l3.807,5.768 C393.518,176.461,398.594,166.656,409.438,157.888z"/>
|
||||
<path style="fill:#FFE15A;" d="M411.4,164.579c0,0-14.074,2.191-20.419,8.883l1.615,6.345 C392.596,179.807,400.324,170.578,411.4,164.579z"/>
|
||||
<path style="fill:#FFE15A;" d="M410.937,169.194c0,0-13.612,1.385-19.842,8.536c-6.229,7.153,2.307,4.96,2.307,4.96 S400.555,174.5,410.937,169.194z"/>
|
||||
<path style="fill:#FFE15A;" d="M383.828,150.044c0,0-3.691,7.767,0,11.651C387.52,157.811,383.828,150.044,383.828,150.044z"/>
|
||||
<path style="fill:#FFE15A;" d="M380.15,151.972c0,0-0.495,8.586,4.386,10.794C386.495,157.779,380.15,151.972,380.15,151.972z"/>
|
||||
<path style="fill:#FFE15A;" d="M387.506,151.972c0,0,0.495,8.586-4.386,10.794C381.161,157.779,387.506,151.972,387.506,151.972z"/>
|
||||
<path style="fill:#FFE15A;" d="M388.715,156.925c0,0-3.221,7.975-8.578,7.884C380.498,159.463,388.715,156.925,388.715,156.925z"/>
|
||||
<path style="fill:#FFE15A;" d="M378.941,156.925c0,0,3.221,7.975,8.578,7.884C387.158,159.463,378.941,156.925,378.941,156.925z"/>
|
||||
</g>
|
||||
<ellipse style="fill:#FFD255;" cx="383.82" cy="175.89" rx="11.08" ry="14.766"/>
|
||||
<g>
|
||||
<path style="fill:#73AF00;" d="M358.526,190.958l-2.538-3.923c0,0-7.383,1.769-9.152-3.768l-2.846-0.231 c0,0,0.384-3.768,3.691-4.307c0,0,1.999-2.461,5.537-1.999c3.538,0.461,5.384,3.46,7.422,4.23c2.038,0.769,2.269,3.307,2.269,3.307 l15.535,15.919c0,0-4.46,5.692-8.46,7.537S351.296,200.572,358.526,190.958z"/>
|
||||
<path style="fill:#73AF00;" d="M408.977,193.88c0,0,6.461,4.384,6.691,16.497h-10.729c0,0,0.116-8.191-1.961-12.574L408.977,193.88 z"/>
|
||||
<path style="fill:#73AF00;" d="M407.593,194.343c0,0,8.075,2.654,13.036-3.691l-8.422-1.153L407.593,194.343z"/>
|
||||
<path style="fill:#73AF00;" d="M405.17,185.46l8.2,2.764c1.034,0.349,1.399,1.629,0.674,2.445 c-3.111,3.505-12.397,11.903-27.37,11.903c-19.496,0-24.533-12.267-24.764-13.19c-0.231-0.922-1.269-8.422-1.269-8.422l8.306-0.922 L405.17,185.46z"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon style="fill:#FF4B55;" points="325.44,298.403 346.913,298.403 335.838,319.854 324.764,305.088 "/>
|
||||
<polygon style="fill:#FF4B55;" points="442.216,298.403 420.744,298.403 431.818,319.854 442.892,305.088 "/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#FFD25A;" d="M325.351,334.621c-10.593,0-18.699-5.685-19.117-5.981l8.536-12.052 c0.071,0.046,7.223,4.906,14.516,2.697c7.38-2.228,12.225-10.937,14.991-17.856l13.71,5.486 c-5.816,14.542-14.112,23.479-24.651,26.569C330.58,334.293,327.893,334.621,325.351,334.621z"/>
|
||||
<path style="fill:#FFD25A;" d="M442.305,334.621c10.593,0,18.699-5.685,19.117-5.981l-8.536-12.052 c-0.071,0.046-7.223,4.906-14.516,2.697c-7.38-2.228-12.225-10.937-14.991-17.856l-13.71,5.486 c5.816,14.542,14.112,23.479,24.651,26.569C437.076,334.293,439.764,334.621,442.305,334.621z"/>
|
||||
</g>
|
||||
<path style="fill:#FF4B55;" d="M431.818,257.098h-95.98v-35.47c0-4.875,3.953-8.828,8.828-8.828h78.325 c4.875,0,8.828,3.953,8.828,8.828L431.818,257.098L431.818,257.098z"/>
|
||||
<g>
|
||||
<path style="fill:#FFE15A;" d="M362.025,238.641l-1.153-7.383c-5.422-0.231-8.536-6.575-8.536-6.575l-4.384,2.422 C352.565,238.179,362.025,238.641,362.025,238.641z"/>
|
||||
<path style="fill:#FFE15A;" d="M419.82,231.027c1.615-1.23,5.153-1.692,5.153-1.692c-2.538-2.615-5.306-0.769-5.306-0.769 c2.307-2.153,1-5.229,1-5.229c0,1-1.615,1.692-1.615,1.692c0.077-1.999-1.999-3.923-1.999-3.923l-1.077,1.769 c-0.692-1.692-3.153-2.999-3.153-2.999l-1,4.153c-2.307-1.999-6.383-1.846-6.383-1.846l0.769,1.923 c-2.461,0.076-9.152,1.461-13.075,1.922s-7.075-0.615-7.075-2.383c0-1.482,3.428-1.665,4.911-1.687 c1.049,0.234,2.368,0.612,4.222,1.169c3.46,1.038,5.487-0.466,5.487-0.466c-1.212-0.461-1.346-1-1.346-1 c2.595-1.5,5.03-1.13,5.03-1.13c-0.865-1.903-4.615-1.788-4.615-1.788c0.981-0.519,1.73-2.134,1.73-2.134 c-0.231,0.231-2.362,0.754-5.272,1.144c-2.19,0.295-4.247,1.96-5.097,2.73c-2.31-0.177-8.342-0.25-7.281,3.933 c1.308,5.153,11.69,3.307,18.073,2.307s9.69-0.153,11.074,0.692c1.385,0.846-0.589,3.712-7.075,2.538 c-5.605-1.014-8.692-1.043-10.387-0.865c-1.879,0.12-3.481,0.626-4.61,0.865c-2.538,0.538-12.306,3.999-14.151-1 c-1.846-5-10.844,8.152-10.844,8.152l0.703,0.836l-2.395-0.567c-3.23,4.326-12.92,5.653-12.92,5.653s-1.442-2.595-2.654-2.942 c-1.212-0.346-1.73,1.557-1.73,1.557s-1.442,0.057-1.557,1.385c-0.116,1.326,1.038,1.442,1.038,1.442s-1.385,2.019,0.922,2.595 c0,0-0.173,2.826,3.23,0.865c10.11,1.274,17.482-3.917,20.674-6.749c2.087,0.134,5.339,0.067,7.839-1.23 c3.999-2.077,8.614-4.692,11.305-3.691c0,0,2.154,6.614-6.306,6.767c0,0-1.251-1.582-2.51-1.582c-0.543,0-1.108,0.652-0.934,1.238 c0,0-1.476-0.087-1.737,0.782c-0.213,0.708,0.303,1.519,1.389,1.389c0,0-0.738,1.086,0,1.737s1.651,0,1.651,0 s-0.391,1.346,0.521,1.476c0.78,0.111,1.813-1.163,2.109-1.55c1.354,0.211,10.591,1.276,12.586-8.413c0,0,4.615,1.999,9.152,1.615 s8.999,0.308,8.614,2.538c-0.503,1.617-1.495,1.51-1.495,1.51c-1.086-0.435-2.91-0.391-3.17,1.173 c-0.26,1.564,1.867,1.607,1.867,1.607c0.608,1.433,2.345,0.825,2.345,0.825c1.519,1.086,2.519-0.087,2.519-0.087 c0.652,0.565,1.324,0.67,1.954,0.13c0.608-0.521,0.267-3.996,0.209-5.236c-0.096-2.063-0.385-7.459-3.384-7.537 c-2.999-0.077-6.845,1.692-12.151-2.769c-0.277-0.233-0.547-0.381-0.821-0.579c2.511,0.233,4.31,0.914,6.051,1.194 C411.207,232.873,418.206,232.257,419.82,231.027z"/>
|
||||
<path style="fill:#FFE15A;" d="M347.95,227.104c0,0-1.471,0.04-2.191-0.173c-1.235-0.364-1.385-2.307-0.057-2.654 c0,0-1.597-1.085-0.865-2.307c0.586-0.978,2.079-0.975,2.598-0.398c0,0-0.487-1.609,0.921-2.14c1.12-0.423,2.019,0.865,2.019,2.538 c0,0,1.674-1.362,2.538-0.461c0.602,0.628,0.429,1.453-0.577,3.172C351.309,226.436,347.95,227.104,347.95,227.104z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#41479B;" d="M346.131,226.393c0,0-0.781,1.346-3.04,0.521c0,0,1.954-0.913,2.215-1.694L346.131,226.393z"/>
|
||||
<path style="fill:#41479B;" d="M345.305,222.441c0,0-1.216-0.781-2.562-0.738c0,0,1.997-1.476,3.691-0.173L345.305,222.441z"/>
|
||||
<path style="fill:#41479B;" d="M348.129,220.356c0,0,0.391-1.433-0.391-2.215c0,0,1.607,0.695,1.824,1.997L348.129,220.356z"/>
|
||||
<path style="fill:#41479B;" d="M351.69,221.833c0,0,0.781-1.737,0.087-2.562c0,0,2.084,1.216,1.216,3.214L351.69,221.833z"/>
|
||||
<path style="fill:#41479B;" d="M347.62,241.134c0,0-0.836-1.711-1.914-1.705c0,0,2.268-0.825,3.249,1.12L347.62,241.134z"/>
|
||||
<path style="fill:#41479B;" d="M345.793,243.315c0,0-1.491-1.186-2.462-0.716c0,0,1.693-1.72,3.414-0.386L345.793,243.315z"/>
|
||||
<path style="fill:#41479B;" d="M346.84,246.391c0,0-1.905-0.021-2.383,0.946c0,0,0.28-2.397,2.458-2.4L346.84,246.391z"/>
|
||||
<path style="fill:#41479B;" d="M348.582,248.37c0,0-0.781,1.346-3.04,0.521c0,0,1.954-0.913,2.215-1.694L348.582,248.37z"/>
|
||||
<path style="fill:#41479B;" d="M382.909,247.686c0,0-0.64,1.102-2.49,0.427c0,0,1.502-0.536,1.715-1.177L382.909,247.686z"/>
|
||||
</g>
|
||||
<path style="fill:#FFD255;" d="M363.372,223.874c0,0-4.154,7.075-3.155,17.304c0,0,12.247-1.788,17.554-14.016 c0,0,1.293-0.523,1.797-1.779c0.429-1.068,0.394-2.827-1.663-2.817c0,0,0.616-1.23,1.365-1.519c0,0-1.326-0.519-2.884-0.173 c0,0,1.212-1.212,1.212-2.769c0,0-1.846,1.212-2.999,1.326c0,0-0.116-1.903,0.346-2.134c0,0-2.422,0.231-3.634,1.5 c0,0-0.808-1.096-0.75-2.25c0,0-2.25,0.981-3.115,2.422c0,0-0.692-0.75-0.634-1.5c0,0-1.615,1.961-1.961,2.999 c0,0-1.522-0.418-2.191,0.808C362.176,222.163,362.286,223.136,363.372,223.874z"/>
|
||||
<g>
|
||||
<path style="fill:#41479B;" d="M381.063,242.535c0,0-0.492-0.927-1.969-1.129c0,0,1.882-0.868,3.069,0.376L381.063,242.535z"/>
|
||||
<path style="fill:#41479B;" d="M411.595,246.052c0,0-1.079,0.341-1.585,1.867c0,0-0.553-2.167,1.001-3.182L411.595,246.052z"/>
|
||||
<path style="fill:#41479B;" d="M413.859,246.849c0,0-1.022,0.993-0.973,2.601c0,0-1.261-1.847-0.149-3.332L413.859,246.849z"/>
|
||||
<path style="fill:#41479B;" d="M418.745,246.762c0,0-0.309,1.052,0.625,2.174c0,0-1.933-0.615-1.97-2.298L418.745,246.762z"/>
|
||||
<path style="fill:#41479B;" d="M416.449,247.171c0,0-0.82,0.78-0.602,2.374c0,0-1.525-1.34-0.575-2.934L416.449,247.171z"/>
|
||||
<path style="fill:#41479B;" d="M379.489,244.431c0,0-0.988-0.354-2.216,0.49c0,0,0.807-1.909,2.522-1.788L379.489,244.431z"/>
|
||||
<path style="fill:#41479B;" d="M380.839,246.531c0,0-1.015-0.266-2.165,0.682c0,0,0.177-1.842,1.897-1.87L380.839,246.531z"/>
|
||||
</g>
|
||||
<path style="fill:#F5F5F5;" d="M431.818,263.047c-8.006,0-8.006,7.221-16.011,7.221s-8.006-7.221-16.011-7.221 c-8,0-8,7.221-16,7.221c-7.993,0-7.993-7.221-15.986-7.221s-7.992,7.221-15.983,7.221c-7.994,0-7.994-7.221-15.989-7.221v-13.332 c7.994,0,7.994,7.221,15.989,7.221c7.992,0,7.992-7.221,15.983-7.221c7.993,0,7.993,7.221,15.986,7.221c8,0,8-7.221,16-7.221 c8.006,0,8.006,7.221,16.011,7.221s8.006-7.221,16.011-7.221V263.047z"/>
|
||||
<path style="fill:#41479B;" d="M415.807,270.269c-8.006,0-8.006-7.221-16.011-7.221c-8,0-8,7.221-16,7.221 c-7.993,0-7.993-7.221-15.986-7.221s-7.992,7.221-15.983,7.221c-7.978,0-8-7.186-15.944-7.217c0.11,3.192,0.477,7.93,1.412,13.497 c6.494,0.86,7.085,7.051,14.531,7.051c7.992,0,7.992-7.222,15.983-7.222c7.993,0,7.993,7.222,15.986,7.222c8,0,8-7.222,16-7.222 c8.006,0,8.006,7.222,16.011,7.222c7.457,0,8.05-6.193,14.553-7.051c0.936-5.567,1.302-10.305,1.412-13.497 C423.818,263.083,423.796,270.269,415.807,270.269z"/>
|
||||
<path style="fill:#F5F5F5;" d="M415.807,283.601c-8.006,0-8.006-7.222-16.011-7.222c-8,0-8,7.222-16,7.222 c-7.993,0-7.993-7.222-15.986-7.222s-7.992,7.222-15.983,7.222c-7.446,0-8.038-6.191-14.531-7.051 c0.742,4.412,1.848,9.331,3.479,14.418c3.599,2.066,5.166,5.965,11.052,5.965c7.992,0,7.992-7.221,15.983-7.221 c7.993,0,7.993,7.221,15.986,7.221c8,0,8-7.221,16-7.221c8.006,0,8.006,7.221,16.011,7.221c5.899,0,7.465-3.907,11.076-5.971 c1.63-5.085,2.735-10.003,3.478-14.412C423.857,277.408,423.264,283.601,415.807,283.601z"/>
|
||||
<path style="fill:#41479B;" d="M415.807,296.932c-8.006,0-8.006-7.221-16.011-7.221c-8,0-8,7.221-16,7.221 c-7.993,0-7.993-7.221-15.986-7.221s-7.992,7.221-15.983,7.221c-5.885,0-7.453-3.9-11.052-5.965 c2.031,6.338,4.884,12.911,8.866,19.041c0.671,0.138,1.363,0.256,2.186,0.256c7.992,0,7.992-7.222,15.983-7.222 c7.993,0,7.993,7.222,15.986,7.222c8,0,8-7.222,16-7.222c8.006,0,8.006,7.222,16.011,7.222c0.832,0,1.533-0.118,2.21-0.258 c3.982-6.132,6.835-12.706,8.866-19.044C423.273,293.025,421.706,296.932,415.807,296.932z"/>
|
||||
<path style="fill:#F5F5F5;" d="M415.807,310.264c-8.006,0-8.006-7.222-16.011-7.222c-8,0-8,7.222-16,7.222 c-7.993,0-7.993-7.222-15.986-7.222s-7.992,7.222-15.983,7.222c-0.823,0-1.515-0.118-2.186-0.256 c2.53,3.895,5.526,7.599,9.054,10.951c2.444-2.065,4.386-4.585,9.116-4.585c7.993,0,7.993,7.221,15.986,7.221c8,0,8-7.221,16-7.221 c4.749,0,6.691,2.532,9.149,4.6c3.535-3.357,6.537-7.066,9.071-10.968C417.34,310.146,416.639,310.264,415.807,310.264z"/>
|
||||
<path style="fill:#41479B;" d="M408.945,320.974c-2.457-2.068-4.399-4.6-9.149-4.6c-8,0-8,7.221-16,7.221 c-7.993,0-7.993-7.221-15.986-7.221c-4.73,0-6.671,2.52-9.116,4.585c6.43,6.11,14.628,11.034,25.133,13.661 C394.324,331.997,402.517,327.078,408.945,320.974z"/>
|
||||
<g>
|
||||
<path style="fill:#F5F5F5;" d="M399.796,249.715c-8,0-8,7.221-16,7.221c-7.993,0-7.993-7.221-15.986-7.221 s-7.992,7.221-15.983,7.221c-7.994,0-7.994-7.221-15.989-7.221c0,4.555,0,8.511,0,11.074c0,0.625,0.014,1.395,0.044,2.262 c7.944,0.031,7.967,7.217,15.944,7.217c7.992,0,7.992-7.221,15.983-7.221c7.993,0,7.993,7.221,15.986,7.221c8,0,8-7.221,16-7.221 c8.006,0,8.006,7.221,16.011,7.221c7.989,0,8.011-7.186,15.967-7.217c0.03-0.868,0.044-1.638,0.044-2.262c0-2.563,0-6.52,0-11.074 c-8.006,0-8.006,7.221-16.011,7.221C407.801,256.937,407.801,249.715,399.796,249.715z"/>
|
||||
<path style="fill:#F5F5F5;" d="M428.127,212.8c2.039,0,3.691,1.653,3.691,3.691v33.224v7.383c0,1.399,0,2.678,0,3.691 c0,0.625-0.014,1.395-0.044,2.262c-0.11,3.192-0.477,7.93-1.412,13.497c-0.742,4.409-1.848,9.327-3.478,14.412 c-2.031,6.339-4.884,12.914-8.866,19.044c-2.535,3.903-5.537,7.613-9.071,10.968c-6.428,6.103-14.621,11.022-25.117,13.646 c-10.505-2.626-18.703-7.551-25.133-13.661c-3.528-3.352-6.524-7.055-9.054-10.951c-3.982-6.131-6.835-12.703-8.866-19.041 c-1.631-5.087-2.738-10.007-3.479-14.418c-0.936-5.567-1.302-10.305-1.412-13.497c-0.03-0.868-0.044-1.638-0.044-2.262 c0-1.013,0-2.293,0-3.691v-7.383V216.49c0-2.039,1.653-3.691,3.691-3.691h88.596 M428.127,210.031H339.53 c-3.562,0-6.461,2.898-6.461,6.461v33.224v7.383v3.691c0,0.651,0.014,1.453,0.046,2.358c0.105,3.014,0.441,7.863,1.449,13.86 c0.858,5.106,2.061,10.086,3.573,14.804c2.34,7.299,5.429,13.929,9.181,19.704c2.763,4.253,5.949,8.106,9.468,11.451 c7.342,6.977,16.214,11.801,26.369,14.34l0.672,0.168l0.671-0.168c10.147-2.537,19.013-7.357,26.353-14.325 c3.528-3.35,6.72-7.208,9.487-11.468c3.753-5.777,6.841-12.407,9.181-19.709c1.512-4.714,2.713-9.693,3.572-14.797 c1.009-5.997,1.345-10.848,1.449-13.86c0.031-0.905,0.046-1.707,0.046-2.358v-3.691v-7.383v-33.224 C434.586,212.929,431.689,210.031,428.127,210.031L428.127,210.031z"/>
|
||||
</g>
|
||||
<polygon style="fill:#73AF00;" points="383.828,312.296 373.698,319.345 377.272,307.532 367.438,300.077 379.775,299.827 383.828,288.169 387.881,299.827 400.217,300.077 390.385,307.532 393.959,319.345 "/>
|
||||
<path style="fill:#FFE15A;" d="M383.828,290.447l3.517,10.115l10.708,0.218l-8.535,6.47l3.102,10.251l-8.791-6.116l-8.791,6.116 l3.102-10.251l-8.534-6.47l10.708-0.218L383.828,290.447 M383.828,285.892l-1.412,4.064l-3.175,9.133l-9.667,0.198l-4.301,0.087 l3.428,2.6l7.704,5.842l-2.799,9.255l-1.246,4.118l3.532-2.457l7.936-5.523l7.936,5.523l3.532,2.457l-1.246-4.118l-2.799-9.255 l7.704-5.842l3.428-2.6l-4.301-0.087l-9.667-0.198l-3.175-9.133L383.828,285.892L383.828,285.892z"/>
|
||||
<polygon style="fill:#73AF00;" points="361.581,283.502 351.451,290.551 355.025,278.739 345.191,271.284 357.528,271.032 361.581,259.374 365.633,271.032 377.971,271.284 368.137,278.739 371.711,290.551 "/>
|
||||
<path style="fill:#FFE15A;" d="M361.581,261.653l3.517,10.115l10.708,0.218l-8.534,6.47l3.102,10.251l-8.791-6.116l-8.791,6.116 l3.102-10.251l-8.534-6.47l10.708-0.218L361.581,261.653 M361.581,257.098l-1.412,4.064l-3.175,9.133l-9.667,0.198l-4.301,0.087 l3.428,2.6l7.704,5.842l-2.799,9.255l-1.246,4.118l3.532-2.457l7.936-5.523l7.936,5.523l3.532,2.457l-1.246-4.118l-2.799-9.255 l7.704-5.842l3.428-2.6l-4.301-0.087l-9.667-0.198l-3.175-9.133L361.581,257.098L361.581,257.098z"/>
|
||||
<polygon style="fill:#73AF00;" points="405.879,283.502 395.75,290.551 399.322,278.739 389.49,271.284 401.826,271.032 405.879,259.374 409.932,271.032 422.269,271.284 412.436,278.739 416.009,290.551 "/>
|
||||
<g>
|
||||
<path style="fill:#FFE15A;" d="M405.879,261.653l3.517,10.115l10.707,0.218l-8.534,6.47l3.102,10.251l-8.791-6.116l-8.791,6.116 l3.102-10.251l-8.534-6.47l10.708-0.218L405.879,261.653 M405.879,257.098l-1.412,4.064l-3.175,9.133l-9.667,0.198l-4.301,0.087 l3.428,2.6l7.704,5.842l-2.799,9.255l-1.246,4.118l3.532-2.457l7.936-5.523l7.936,5.523l3.532,2.457l-1.246-4.118l-2.799-9.255 l7.704-5.842l3.428-2.6l-4.301-0.087l-9.667-0.198l-3.175-9.133L405.879,257.098L405.879,257.098z"/>
|
||||
<path style="fill:#FFE15A;" d="M442.216,298.403c-9.161,23.326-31.85,39.908-58.388,39.908s-49.227-16.583-58.388-39.908 l-13.738,5.375c11.317,28.814,39.345,49.3,72.126,49.3s60.809-20.486,72.126-49.3L442.216,298.403z"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon style="fill:#F5F5F5;" points="391.211,212.8 380.137,212.8 376.445,201.725 387.52,201.725 "/>
|
||||
<path style="fill:#F5F5F5;" d="M409.668,212.8h-7.383l-2.461-7.383h3.37c2.397,0,4.524,1.534,5.282,3.807L409.668,212.8z"/>
|
||||
<path style="fill:#F5F5F5;" d="M369.062,212.8h-7.383l-0.842-2.525c-0.797-2.39,0.982-4.858,3.502-4.858h2.261L369.062,212.8z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#41479B;" d="M402.285,212.8h-11.074l-3.691-11.074h8.414c1.589,0,2.999,1.016,3.502,2.525L402.285,212.8z"/>
|
||||
<path style="fill:#41479B;" d="M380.137,212.8h-11.074l-2.494-7.48c-0.589-1.768,0.727-3.594,2.591-3.594h7.286L380.137,212.8z"/>
|
||||
</g>
|
||||
<path style="fill:#509664;" d="M410.937,187.19c-2.884,4.153-10.959,9.113-24.11,9.113c-10.836,0-17.805-6.543-20.132-9.123 c-0.567-0.628-0.863-1.431-0.863-2.278v-2.518c0-1.084,0.562-2.07,1.498-2.614c2.344-1.364,7.762-3.54,18.458-3.54 C399.055,176.231,410.937,187.19,410.937,187.19z"/>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 50 KiB |
Before Width: | Height: | Size: 44 KiB After Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 10 KiB |
@ -1,113 +0,0 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<path style="fill:#41479B;" d="M473.655,423.724H38.345C17.167,423.724,0,406.557,0,385.379V126.621 c0-21.177,17.167-38.345,38.345-38.345h435.31c21.177,0,38.345,17.167,38.345,38.345V385.38 C512,406.557,494.833,423.724,473.655,423.724z"/>
|
||||
<path style="fill:#F5F5F5;" d="M8.828,256h15.334l81.77-53.574V256h44.138v-53.574L231.839,256h15.334 c4.875,0,8.828-3.953,8.828-8.828v-7.002l-70.154-45.963H256v-44.138h-70.155L256,104.106v-7.002c0-4.875-3.95-8.826-8.825-8.828 h-15.337l-81.769,53.574V88.276h-44.138v53.574L26.844,90.034c-2.287,0.718-4.482,1.647-6.562,2.761 c-0.02,0.011-0.041,0.021-0.062,0.032c-0.471,0.253-0.936,0.52-1.395,0.792c-0.056,0.033-0.114,0.064-0.17,0.097 c-0.445,0.267-0.882,0.546-1.314,0.83c-0.066,0.044-0.135,0.085-0.201,0.129c-0.431,0.287-0.854,0.585-1.273,0.889 c-0.062,0.045-0.126,0.088-0.188,0.134c-0.423,0.31-0.836,0.631-1.246,0.958c-0.053,0.043-0.108,0.084-0.161,0.127 c-0.414,0.334-0.82,0.68-1.22,1.031c-0.043,0.039-0.088,0.075-0.131,0.115c-0.405,0.36-0.801,0.728-1.191,1.103 c-0.034,0.033-0.07,0.066-0.105,0.099c-0.395,0.385-0.781,0.778-1.16,1.178c-0.025,0.026-0.051,0.053-0.076,0.081 c-0.384,0.409-0.76,0.828-1.127,1.255c-0.017,0.02-0.033,0.039-0.05,0.058c-0.372,0.435-0.735,0.877-1.087,1.33 c-0.009,0.011-0.019,0.023-0.028,0.035c-0.356,0.458-0.704,0.924-1.039,1.398c-0.004,0.007-0.01,0.013-0.014,0.021 c-0.34,0.479-0.669,0.966-0.985,1.461c-0.001,0.001-0.002,0.003-0.003,0.004c-0.32,0.499-0.628,1.005-0.925,1.518l65.024,42.599H0 v44.138h70.154L0,240.17v7.008C0.003,252.051,3.954,256,8.828,256z"/>
|
||||
<g>
|
||||
<polygon style="fill:#FF4B55;" points="256,158.897 141.241,158.897 141.241,88.276 114.759,88.276 114.759,158.897 0,158.897 0,185.379 114.759,185.379 114.759,256 141.241,256 141.241,185.379 256,185.379 "/>
|
||||
<path style="fill:#FF4B55;" d="M8.228,102.903l72.661,47.166h16.214l-82.496-53.55C12.238,98.389,10.098,100.533,8.228,102.903z"/>
|
||||
<path style="fill:#FF4B55;" d="M166.283,150.069l88.374-57.366c-1.536-2.599-4.246-4.427-7.485-4.427h-1.909l-95.194,61.793 H166.283z"/>
|
||||
<path style="fill:#FF4B55;" d="M89.474,194.207L1.269,251.463C2.79,254.125,5.542,256,8.828,256h1.665l95.196-61.793H89.474z"/>
|
||||
<path style="fill:#FF4B55;" d="M255.86,247.866l-82.666-53.66H156.98l93.874,60.935 C253.666,253.837,255.595,251.102,255.86,247.866z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#73AF00;" d="M387.207,177.365c-0.199,0-0.402-0.063-0.575-0.193c-0.138-0.106-13.838-10.783-5.769-28.879 c0.214-0.48,0.777-0.692,1.259-0.482c0.48,0.216,0.695,0.777,0.482,1.259c-7.443,16.687,4.662,26.19,5.181,26.586 c0.418,0.318,0.499,0.915,0.18,1.333C387.777,177.235,387.495,177.365,387.207,177.365z"/>
|
||||
<path style="fill:#73AF00;" d="M379.316,161.734c-0.038,0-0.074-0.002-0.111-0.006c-0.523-0.062-0.896-0.534-0.836-1.056 c0.396-3.422,1.683-5.81,3.828-7.096c3.449-2.073,7.761-0.417,7.941-0.344c0.489,0.192,0.729,0.742,0.537,1.231 c-0.192,0.489-0.746,0.733-1.231,0.541c-0.038-0.014-3.638-1.382-6.276,0.209c-1.604,0.969-2.583,2.879-2.905,5.679 C380.205,161.377,379.791,161.734,379.316,161.734z"/>
|
||||
<path style="fill:#73AF00;" d="M381.902,149.46c-0.082-0.21-2.141-5.098-11.447-3.018c-10.539,2.361-10.661,16.264-10.661,16.403 c0,0.478,0.355,0.884,0.831,0.945c0.041,0.006,0.082,0.008,0.121,0.008c0.428,0,0.811-0.288,0.92-0.711 c3.928-14.962,18.557-12.449,19.178-12.34c0.352,0.063,0.69-0.067,0.907-0.331C381.973,150.147,382.031,149.781,381.902,149.46z"/>
|
||||
<path style="fill:#73AF00;" d="M379.71,157.21c0,0-6.348-4.046-8.967,1.111c-2.618,5.158-0.634,10.712,0.397,12.934 c0,0,3.784-4.183,7.38-4.761c4.444-0.714,5.555-6.269,2.46-9.046C377.282,154.131,379.71,157.21,379.71,157.21z"/>
|
||||
<path style="fill:#73AF00;" d="M386.645,147.731c-0.09,5.554,3.005,6.282,3.005,6.282 C391.651,148.914,386.645,147.731,386.645,147.731z"/>
|
||||
<path style="fill:#73AF00;" d="M385.676,159.396c0.042-5.27,3.616-5.863,3.616-5.863 C391.458,158.433,385.676,159.396,385.676,159.396z"/>
|
||||
</g>
|
||||
<path style="fill:#FF4B55;" d="M406.292,155.147c0,0-5.054-0.747-6.993-1.663c-1.613-0.761-3.719-2.599-6.444-2.24 c-2.083,0-3.772,1.688-3.772,3.772c0,2.083,1.431,4.579,8.917,4.025c3.629-0.269,6.721,1.389,6.721,1.389 C404.246,158.446,406.292,155.147,406.292,155.147z"/>
|
||||
<path style="fill:#FFE15A;" d="M401.047,156.801c0,0-7.752,0.537-9.454-0.717c-1.571-1.158-1.161-3.002,0.448-3.181 C394.461,152.633,401.047,156.801,401.047,156.801z"/>
|
||||
<path style="fill:#B49B91;" d="M416.131,165.581l-17.14,10.712l-1.964-1.905l9.402-9.106l2.201,0.893l2.143-2.857l-5.118-2.678 c0,0-13.569,12.794-25.113,13.866c-3.884,0.361-7.842,0.107-10.929-1.164l-6.925,9.972l14.52,12.378l21.305-0.833l17.615-23.924 l3.094,1.428l2.618-3.094L416.131,165.581z"/>
|
||||
<path style="fill:#9B8278;" d="M368.365,194.424c-4.768,0-8.648-3.88-8.648-8.646c0-4.768,3.88-8.648,8.648-8.648 c4.767,0,8.646,3.88,8.646,8.648C377.012,190.545,373.132,194.424,368.365,194.424z M368.365,179.987 c-3.193,0-5.791,2.598-5.791,5.791s2.598,5.79,5.791,5.79s5.79-2.596,5.79-5.79S371.559,179.987,368.365,179.987z"/>
|
||||
<g>
|
||||
<path style="fill:#73AF00;" d="M404.387,202.439c0,0,1.587-1.032,3.174-5.871l-3.253,0.476c0,0,0.634-2.698-0.079-4.682 l-3.65,2.857c0,0-1.666-3.491-2.38-3.967c0,0-2.539,3.571-3.967,4.046c0,0-1.428-5.158-2.857-6.189l-2.46,3.491l-3.65-2.857 c0,0,0,2.46-0.079,3.016c-0.079,0.555-4.761-4.919-4.761-4.919s-2.063,0.873-4.84,5.316l-3.491-3.571l-1.428,4.682l-4.84-1.27 l0.793,2.777l-4.205-0.318c0,0,0.714,4.126,2.777,5.555L404.387,202.439z"/>
|
||||
<path style="fill:#73AF00;" d="M362.333,220.094c0,0-13.092,16.663-37.849,14.759l26.899,3.69l13.806-13.092L362.333,220.094z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#FFE15A;" d="M319.604,232.353c2.618,1.905,18.806,6.547,30.47,0.952c0,0,0.238,2.738-1.071,4.285 c0,0,8.569-3.452,13.212-9.879s-9.641,13.806-9.641,13.806l-21.9,4.046l-8.927-7.38L319.604,232.353z"/>
|
||||
<path style="fill:#FFE15A;" d="M317.882,172.349c-2.908,0.244-6.053,1.995-7.662,4.122c-0.876-0.372-2.823-0.537-4.436,0.537 c-2.148,1.432-6.118,6.604-9.45,5.236c0,0-0.298,4.879,4.879,4.702c0,0-1.31,2.024-1.071,5.237 c0.238,3.213-2.083,5.356-2.083,5.356s10.474,1.487,10.891-6.665c0.051-0.996,0.102-1.874,0.15-2.657 c5.466,2.952,7.617-1.215,7.617-1.215s-3.285-3.103,0.059-7.52c3.343-4.418,12.533,5.996,12.533,5.996 C329.489,181.311,329.115,171.405,317.882,172.349z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#73AF00;" d="M358.365,199.82c0,0-3.015,2.063-12.378,0.159c0,0,2.063-4.602,1.111-7.3 c0,0-2.539,2.38-8.728,4.761s-13.806,9.998-16.029,14.918c0,0,13.92-32.088,2.738-35.35c-3.836-1.119-7.135,0.695-8.302,2.474 c0.564,0.666,1.106,1.615,1.161,2.882c0.119,2.738-2.618,21.186-6.665,33.921c0,0-1.191-4.404-3.094-6.547 c-1.903-2.143-3.332-5.594-3.332-5.594s-3.213,2.143-2.738,6.07c0,0-1.785-1.428-5.237-0.476s-4.761-1.31-4.761-1.31 s-2.857,7.617,5.594,11.545c0,0-2.261,1.071-3.332,1.905c-1.071,0.833-2.738,0.833-2.738,0.833s2.976,5.475,9.283,6.07 c6.308,0.595,9.207,2.393,11.188,5.633c6.428,10.514,18.727,18.488,38.802,6.189c0,0-28.565,8.887-29.835-9.363 c-1.111-15.965,16.345-19.202,18.091-15.711s-0.159,6.507-0.159,6.507s9.522-2.221,4.919-10.951 C343.924,211.087,353.287,212.516,358.365,199.82z"/>
|
||||
<path style="fill:#73AF00;" d="M450.052,232.353c-2.618,1.905-19.162,9.046-30.589-2.38 c-11.426-11.426-15.882-28.582-15.235-26.662h-11.426l3.809,34.279l42.372,7.975l8.927-7.38L450.052,232.353z"/>
|
||||
<path style="fill:#73AF00;" d="M451.774,172.349c2.908,0.244,6.053,1.995,7.662,4.122c0.876-0.372,2.823-0.537,4.436,0.537 c2.148,1.432,6.118,6.604,9.45,5.236c0,0,0.298,4.879-4.879,4.702c0,0,1.31,2.024,1.071,5.237 c-0.238,3.213,2.083,5.356,2.083,5.356s-10.474,1.487-10.891-6.665c-0.051-0.996-0.102-1.874-0.15-2.657 c-5.466,2.952-7.617-1.215-7.617-1.215s3.284-3.103-0.059-7.52c-3.343-4.418-12.533,5.996-12.533,5.996 C440.168,181.311,440.542,171.405,451.774,172.349z"/>
|
||||
</g>
|
||||
<path style="fill:#FFE15A;" d="M411.29,199.82c0,0,3.015,2.063,12.378,0.159c0,0-2.063-4.602-1.111-7.3c0,0,2.539,2.38,8.728,4.761 s13.806,9.998,16.029,14.918c0,0-13.92-32.088-2.738-35.35c3.836-1.119,7.135,0.695,8.302,2.474 c-0.564,0.666-1.106,1.615-1.161,2.882c-0.119,2.738,2.618,21.186,6.665,33.921c0,0,1.191-4.404,3.094-6.547 s3.332-5.594,3.332-5.594s3.213,2.143,2.738,6.07c0,0,1.785-1.428,5.237-0.476s4.761-1.31,4.761-1.31s2.857,7.617-5.594,11.545 c0,0,2.261,1.071,3.332,1.905c1.071,0.833,2.738,0.833,2.738,0.833s-2.976,5.475-9.283,6.07c-6.308,0.595-9.207,2.393-11.188,5.633 c-6.428,10.514-18.727,18.488-38.802,6.189c0,0,28.565,8.887,29.835-9.363c1.111-15.965-16.345-19.202-18.091-15.711 s0.159,6.507,0.159,6.507s-9.522-2.221-4.919-10.951C425.732,211.087,416.369,212.516,411.29,199.82z"/>
|
||||
<g>
|
||||
<path style="fill:#73AF00;" d="M403.197,226.482c4.682,6.824,11.188,13.013,30.073,18.884s23.933,6.744,33.829,14.749 c0,0,1.88,1.985,2.6,5.167c0.845,3.738-4.919,14.52-4.919,14.52s0.555-2.539-2.936-7.458s-24.122-13.806-34.913-16.504 c-10.792-2.698-29.439-15.215-24.28-24.598L403.197,226.482z"/>
|
||||
<path style="fill:#73AF00;" d="M467.082,260.086c0.008,0.01,0.011,0.02,0.019,0.03c-0.012-0.013-0.022-0.026-0.034-0.039 L467.082,260.086z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#FFE15A;" d="M466.605,283.295c0,0,0.476,3.452-2.38,6.428c-2.857,2.976-4.879,5.118-4.761,7.617 c0,0-4.285-3.094-3.571-9.998c0,0-5.594,4.642-14.045,0.119c0,0,0.833-8.45,11.784-9.522c0,0-4.285-3.332,1.31-8.45 c0,0,0.65,2.289,5.713,3.452c4.404,1.012,12.239-4.511,6.445-12.824C477.079,271.393,471.961,279.129,466.605,283.295z"/>
|
||||
<path style="fill:#FFE15A;" d="M399.111,220.213c0,0,2.413,3.945,8.689,7.776c7.538,4.602,8.213,6.744,8.213,6.744l-5.118-0.119 c0,0,6.547,3.571,8.332,8.094c0,0-2.738,0.476-5.832-0.358c0,0,2.499,2.261,1.31,9.522h-12.736L399.111,220.213z"/>
|
||||
</g>
|
||||
<path style="fill:#73AF00;" d="M373.759,252.825v-30.47c0,0-10.342,17.693-19.275,30.47H373.759z"/>
|
||||
<path style="fill:#FFE15A;" d="M364.863,221.72c-2.539,4.602-10.474,19.758-29.359,25.63c-18.886,5.871-22.337,4.761-32.234,12.765 c0,0-1.88,1.985-2.6,5.167c-0.845,3.738,4.919,14.52,4.919,14.52s-0.555-2.539,2.936-7.458s24.006-14.324,34.913-16.504 c15.085-3.016,28.733-19.202,26.511-29.676C367.729,215.69,364.863,221.72,364.863,221.72z"/>
|
||||
<g>
|
||||
<path style="fill:#73AF00;" d="M303.288,260.086c-0.008,0.01-0.011,0.02-0.019,0.03c0.012-0.013,0.022-0.026,0.034-0.039 L303.288,260.086z"/>
|
||||
<path style="fill:#73AF00;" d="M303.765,283.295c0,0-0.476,3.452,2.38,6.428c2.857,2.976,4.879,5.118,4.761,7.617 c0,0,4.285-3.094,3.571-9.998c0,0,5.594,4.642,14.045,0.119c0,0-0.833-8.45-11.784-9.522c0,0,4.285-3.332-1.309-8.45 c0,0-0.65,2.289-5.713,3.452c-4.404,1.012-12.239-4.511-6.445-12.824C293.291,271.393,298.409,279.129,303.765,283.295z"/>
|
||||
</g>
|
||||
<path style="fill:#FFE15A;" d="M330.118,334.078c0,0,2.698,12.14,2.857,24.678c0,0,11.823,0.397,17.536-8.49 c0,0-11.426-5.951-17.536-17.457L330.118,334.078z"/>
|
||||
<path style="fill:#73AF00;" d="M327.578,307.258c-0.476-5.713,2.063-20.155,13.647-30.628l0.284-12.826c0,0-3.451,0.359-6.511,3.038 l-6.547,10.145l-6.07,22.972L327.578,307.258z"/>
|
||||
<path style="fill:#FFE15A;" d="M327.895,311.384c0,0,0,12.22,5.078,21.425l-2.857,1.269c0,0-10.236-8.054-12.378-24.598 c0,0-9.165,6.07-12.537-6.348c0,0,9.839,3.968,13.013-5.078c2.863-8.162,5.758-23.02,16.783-31.212 c-5.241,8.055-13.133,28.673-7.023,35.974c1.618,1.933,6.269,3.571,11.359,1.397C339.001,308.273,337.065,314.477,327.895,311.384z"/>
|
||||
<path style="fill:#FFCE5A;" d="M329.378,336.245l-1.672-3.072c-0.292-0.537-0.094-1.21,0.444-1.503l3.051-1.658 c0.537-0.292,1.209-0.094,1.502,0.444l1.672,3.072c0.292,0.537,0.094,1.21-0.444,1.503l-3.051,1.658 C330.343,336.981,329.671,336.782,329.378,336.245z"/>
|
||||
<g>
|
||||
<path style="fill:#FFE15A;" d="M432.636,334.078c0,0-2.698,12.14-2.857,24.678c0,0-11.823,0.397-17.536-8.49 c0,0,11.426-5.951,17.536-17.457L432.636,334.078z"/>
|
||||
<path style="fill:#FFE15A;" d="M435.175,307.258c0.476-5.713-2.063-20.155-13.647-30.628l-0.284-12.826 c0,0,3.451,0.359,6.511,3.038l6.547,10.145l6.07,22.972L435.175,307.258z"/>
|
||||
</g>
|
||||
<path style="fill:#73AF00;" d="M423.42,304.212c5.09,2.174,9.741,0.536,11.359-1.397c6.11-7.3-1.782-27.918-7.023-35.974 c11.026,8.192,13.919,23.05,16.783,31.212c3.174,9.046,13.013,5.078,13.013,5.078c-3.372,12.418-12.537,6.348-12.537,6.348 c-2.143,16.544-12.378,24.598-12.378,24.598l-2.857-1.269c5.078-9.205,5.078-21.425,5.078-21.425 C425.688,314.477,423.752,308.273,423.42,304.212z"/>
|
||||
<path style="fill:#FFCE5A;" d="M433.375,336.245l1.672-3.072c0.292-0.537,0.094-1.21-0.444-1.503l-3.051-1.658 c-0.537-0.292-1.209-0.094-1.502,0.444l-1.672,3.072c-0.292,0.537-0.094,1.21,0.444,1.503l3.051,1.658 C432.41,336.981,433.082,336.782,433.375,336.245z"/>
|
||||
<path style="fill:#4173CD;" d="M343.289,249.016c-2.103,0-3.809,1.705-3.809,3.809v41.896c0,11.426,3.809,53.322,41.896,68.557 c38.088-15.235,41.896-57.131,41.896-68.557v-41.896c0-2.103-1.705-3.809-3.809-3.809H343.289z"/>
|
||||
<path style="fill:#FFE15A;" d="M379.068,249.016l-36.121,69.231c0.904,3.202,2.031,6.516,3.446,9.864l34.984-67.053l34.984,67.053 c1.415-3.349,2.542-6.663,3.446-9.864l-36.121-69.231H379.068L379.068,249.016z"/>
|
||||
<path style="fill:#73AF00;" d="M416.36,328.111l-34.984-67.053l-34.984,67.053l0,0c5.762,13.639,16.188,27.649,34.984,35.167 C400.172,355.761,410.599,341.75,416.36,328.111L416.36,328.111z"/>
|
||||
<path style="fill:#FFE15A;" d="M395.54,332.451l2.304,1.105c-0.966,1.428-2.977,3.738-6.823,5.831 c-2.905,1.581-5.713,3.452-7.741,4.886V312.84l9.522-0.979v-3.809l-9.522-0.979v-4.734c0-1.052-0.853-1.905-1.905-1.905 c-0.897,0-1.614,0.633-1.816,1.469c-0.633-0.454-1.367-0.777-2.202-0.777c-2.131,0-3.866,1.735-3.866,3.866 c0,1.003,0.407,1.9,1.037,2.589l-4.578,0.471v3.809l9.522,0.979v31.433c-2.027-1.433-4.835-3.305-7.741-4.886 c-3.847-2.092-5.857-4.403-6.823-5.831l2.304-1.105l-8.689-11.069v15.235l2.929-1.405c1.159,1.867,3.608,4.881,8.46,7.519 c4.059,2.209,7.998,5.079,9.559,6.254l1.905,1.476l1.905-1.476c1.561-1.175,5.501-4.045,9.559-6.254 c4.852-2.638,7.302-5.652,8.46-7.519l2.929,1.405v-15.235L395.54,332.451z M377.357,306.955c-1.082,0-1.962-0.879-1.962-1.962 s0.879-1.962,1.962-1.962s1.962,0.879,1.962,1.962S378.44,306.955,377.357,306.955z"/>
|
||||
<path style="fill:#F5F5F5;" d="M384.319,298.53h-5.885c-1.53,0-2.771-1.24-2.771-2.771v-9.694c0-1.53,1.24-2.771,2.771-2.771h5.885 c1.53,0,2.771,1.24,2.771,2.771v9.694C387.09,297.29,385.849,298.53,384.319,298.53z"/>
|
||||
<path style="fill:#B49B91;" d="M408.038,249.016c-7.617-11.426-7.617-34.279-7.617-34.279s0-15.235-19.043-15.235 c-9.647,0-14.398,3.91-16.746,7.767c-9.14,3.672-13.724,11.276-13.724,11.276c3.896,1.949,7.339,2.877,10.463,3.115 c6.209,7.389,8.275,14.524,8.824,19.656c-3.576,3.652-5.559,12.46-0.243,19.125c0,0,11.267-2.618,20.779-11.426h17.306v0.001 H408.038z"/>
|
||||
<g>
|
||||
<path style="fill:#9B8278;" d="M390.729,249.016h14.215C404.228,241.994,397.325,243.125,390.729,249.016z"/>
|
||||
<path style="fill:#9B8278;" d="M404.589,241.826c-4.163-11.818-4.169-27.089-4.169-27.089s-0.001-0.248-0.04-0.675 c-4.959-0.673-10.035-0.308-19.956,3.532c-10.563,4.088-15.734,4.205-19.055,4.067c6.209,7.389,8.275,14.524,8.824,19.656 l0.153,8.096c0,0,5.951,0.873,19.043-6.666C395.921,238.988,401.457,238.666,404.589,241.826z"/>
|
||||
<path style="fill:#9B8278;" d="M384.312,213.071c7.725-1.931,12.654-1.732,15.83-0.605c-0.851-4.243-4.349-12.964-18.765-12.964 c-9.647,0-14.398,3.91-16.746,7.767l-5.789,8.103C358.841,215.373,366.082,217.629,384.312,213.071z"/>
|
||||
</g>
|
||||
<path style="fill:#FFE15A;" d="M368.79,197.837c0.75,0.748,2.988,6.144,2.527,6.946c-0.297,0.515-6.257,1.997-7.223,1.241 c-0.862-0.674-1.87-6.486-1.293-7.157C363.324,198.261,368.163,197.213,368.79,197.837z"/>
|
||||
<path style="fill:#73AF00;" d="M376.454,197.549c0.692,0.793,2.26,6.068,1.639,6.741c-0.399,0.433-7.042,0.957-7.965,0.127 c-0.822-0.74-1.004-6.227-0.278-6.761C370.506,197.171,375.876,196.887,376.454,197.549z"/>
|
||||
<path style="fill:#FFE15A;" d="M383.706,197.348c0.717,0.747,2.353,5.707,1.711,6.337c-0.413,0.405-7.284,0.882-8.241,0.099 c-0.853-0.698-1.054-5.852-0.305-6.353C377.553,196.979,383.108,196.725,383.706,197.348z"/>
|
||||
<g>
|
||||
<path style="fill:#73AF00;" d="M391.078,197.694c0.634,0.815,1.831,6.019,1.165,6.623c-0.428,0.387-7.09,0.405-7.951-0.465 c-0.768-0.776-0.568-6.08,0.193-6.542C385.172,196.892,390.548,197.013,391.078,197.694z"/>
|
||||
<path style="fill:#73AF00;" d="M406.29,200.847c0.491,0.909,0.444,5.743-0.313,6.228c-0.487,0.311-6.485-0.758-7.191-1.758 c-0.63-0.892,0.444-6.09,1.271-6.421C400.803,198.598,405.88,200.088,406.29,200.847z"/>
|
||||
</g>
|
||||
<path style="fill:#FFE15A;" d="M399.299,198.786c0.601,0.828,1.059,5.681,0.334,6.194c-0.466,0.33-7.33-0.234-8.162-1.131 c-0.743-0.801-0.2-5.803,0.614-6.175C392.822,197.336,398.797,198.095,399.299,198.786z"/>
|
||||
<circle style="fill:#9B8278;" cx="368.36" cy="185.78" r="2.59"/>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 11 KiB |
@ -1,96 +0,0 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<path style="fill:#F5F5F5;" d="M473.655,88.275H256v335.448h217.655c21.177,0,38.345-17.167,38.345-38.345V126.62 C512,105.442,494.833,88.275,473.655,88.275z"/>
|
||||
<path style="fill:#FFE15A;" d="M38.345,88.275C17.167,88.275,0,105.442,0,126.62V385.38c0,21.177,17.167,38.345,38.345,38.345H256 V88.275H38.345z"/>
|
||||
<g>
|
||||
<path style="fill:#EBEBEB;" d="M408.267,174.751l-0.587,1.173c1.895,0.97,2.978,2.074,2.978,3.25l-0.295-5.831 C409.969,174.126,409.196,174.688,408.267,174.751z"/>
|
||||
<path style="fill:#EBEBEB;" d="M362.438,175.924l-0.587-1.173c-0.928-0.064-1.7-0.625-2.098-1.408l-0.294,5.831 C359.459,178.001,360.543,176.895,362.438,175.924z"/>
|
||||
<path style="fill:#EBEBEB;" d="M362.019,169.665c1.414,0,2.56,1.146,2.56,2.56c0,0.512-0.189,0.962-0.448,1.362l0.674,1.347 c1.932-0.679,4.312-1.256,7.027-1.703l-0.288-1.152c-1.058-0.314-1.845-1.256-1.845-2.415c0-1.414,1.146-2.56,2.56-2.56 s2.56,1.146,2.56,2.56c0,0.722-0.303,1.367-0.783,1.833l0.342,1.367c1.427-0.179,2.922-0.32,4.474-0.426 c-0.116-0.481-0.193-0.978-0.193-1.494c0-3.534,2.866-6.4,6.4-6.4s6.4,2.866,6.4,6.4c0,0.518-0.077,1.013-0.193,1.494 c1.554,0.105,3.049,0.247,4.474,0.426l0.342-1.367c-0.48-0.466-0.783-1.111-0.783-1.833c0-1.414,1.146-2.56,2.56-2.56 s2.56,1.146,2.56,2.56c0,1.16-0.787,2.101-1.845,2.415l-0.288,1.152c2.714,0.446,5.095,1.023,7.027,1.703l0.674-1.347 c-0.259-0.401-0.448-0.85-0.448-1.362c0-1.414,1.146-2.56,2.56-2.56c0.921,0,1.693,0.513,2.143,1.244l-0.196-3.904 c-2.528-2.87-12.746-5.02-24.987-5.02s-22.458,2.148-24.986,5.02l-0.196,3.904C360.327,170.178,361.098,169.665,362.019,169.665z"/>
|
||||
</g>
|
||||
<path style="fill:#E6B432;" d="M389.056,139.55c0.693-0.874,1.123-1.964,1.123-3.165c0-2.383-1.635-4.367-3.84-4.939v-3.134 c0.751-0.446,1.28-1.23,1.28-2.167c0-1.414-1.146-2.56-2.56-2.56s-2.56,1.146-2.56,2.56c0,0.937,0.529,1.721,1.28,2.167v3.134 c-2.205,0.57-3.84,2.556-3.84,4.939c0,1.202,0.431,2.292,1.123,3.165c1.302-0.356,2.628-0.605,3.997-0.605 S387.753,139.193,389.056,139.55z"/>
|
||||
<path style="fill:#EBEBEB;" d="M374.332,152.51l-0.227-0.909c-1.058-0.314-1.845-1.256-1.845-2.415c0-1.414,1.146-2.56,2.56-2.56 s2.56,1.146,2.56,2.56c0,0.722-0.303,1.367-0.783,1.833l0.289,1.154c2.505-0.274,5.267-0.427,8.174-0.427 c-2.121,0-3.84-1.719-3.84-3.84s1.719-3.84,3.84-3.84s3.84,1.719,3.84,3.84s-1.719,3.84-3.84,3.84c2.908,0,5.67,0.153,8.174,0.427 l0.289-1.154c-0.48-0.466-0.783-1.111-0.783-1.833c0-1.414,1.146-2.56,2.56-2.56s2.56,1.146,2.56,2.56 c0,1.16-0.787,2.101-1.845,2.415l-0.227,0.909c1.301,0.201,2.511,0.434,3.597,0.7l1.887-3.774 c-3.265-5.059-7.484-8.589-12.216-9.885c-1.302-0.356-2.628-0.605-3.997-0.605c-1.368,0-2.694,0.248-3.997,0.605 c-4.733,1.295-8.951,4.825-12.216,9.885l1.887,3.774C371.82,152.945,373.031,152.712,374.332,152.51z"/>
|
||||
<g>
|
||||
<path style="fill:#E6B432;" d="M382.499,362.135v-5.59c0-0.599,0.084-1.175,0.214-1.734c-0.068-0.044-0.143-0.075-0.214-0.116 c-0.756-0.439-1.623-0.71-2.56-0.71s-1.804,0.27-2.56,0.71c-1.524,0.887-2.56,2.519-2.56,4.41c0,1.377,0.551,2.622,1.434,3.541 c1.098-0.606,2.343-0.981,3.685-0.981C380.842,361.665,381.695,361.849,382.499,362.135z"/>
|
||||
<path style="fill:#E6B432;" d="M387.619,341.896c-1.524,0.887-2.56,2.519-2.56,4.41c0,1.377,0.551,2.622,1.434,3.541 c1.098-0.606,2.343-0.981,3.686-0.981c1.343,0,2.586,0.375,3.686,0.981c0.884-0.92,1.434-2.164,1.434-3.541 c0-1.89-1.036-3.523-2.56-4.41c-0.756-0.439-1.623-0.71-2.56-0.71C389.242,341.185,388.375,341.456,387.619,341.896z"/>
|
||||
</g>
|
||||
<path style="fill:#FF4B57;" d="M386.494,349.846c-1.88,1.037-3.283,2.817-3.78,4.966c-0.129,0.559-0.214,1.135-0.214,1.734v5.59 c-0.804-0.286-1.657-0.47-2.56-0.47c-1.343,0-2.588,0.375-3.686,0.981c-2.37,1.308-3.994,3.8-3.994,6.699v10.24h15.36v-10.24 c0-0.903-0.184-1.756-0.47-2.56h10.71v-10.24c0-2.898-1.624-5.391-3.994-6.699c-1.098-0.606-2.343-0.981-3.686-0.981 S387.592,349.24,386.494,349.846z"/>
|
||||
<g>
|
||||
<path style="fill:#E6B432;" d="M387.619,246.896l4.374,4.375l1.496-1.496c0.355-0.355,0.797-0.538,1.254-0.641l21.651-21.656 l13.868,13.868l9.05-9.05l-3.62-3.62l-1.811,1.81l-3.62-3.62l1.81-1.81l-1.81-1.811l3.62-3.62l1.811,1.81l1.81-1.81l3.62,3.62 l-1.81,1.811l3.62,3.62l9.05-9.05l-13.871-13.871l9.492-9.495c-0.458-0.188-0.888-0.465-1.26-0.836l-5.12-5.12 c-0.382-0.382-0.661-0.825-0.849-1.297l-53.333,53.347c0.341,0.435,0.577,0.958,0.577,1.554L387.619,246.896L387.619,246.896z"/>
|
||||
<path style="fill:#E6B432;" d="M381.747,262.133l-7.241-7.241l-22.507,22.514c-1.998,2.001-1.998,5.242,0.001,7.24 c1,1,2.31,1.5,3.62,1.5s2.622-0.5,3.622-1.5l17.592-17.597L381.747,262.133z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#D2D2D2;" d="M311.864,288.704c0.142-0.402,0.235-0.828,0.235-1.279c0-2.121-1.719-3.84-3.84-3.84 s-3.84,1.719-3.84,3.84c0,2.121,1.719,3.84,3.84,3.84c0.451,0,0.877-0.092,1.279-0.235 C310.264,290.206,311.04,289.43,311.864,288.704z"/>
|
||||
<path style="fill:#D2D2D2;" d="M309.538,324.781c-0.402-0.142-0.828-0.235-1.279-0.235c-2.121,0-3.84,1.719-3.84,3.84 c0,2.121,1.719,3.84,3.84,3.84s3.84-1.719,3.84-3.84c0-0.45-0.092-0.877-0.235-1.279 C311.04,326.381,310.264,325.604,309.538,324.781z"/>
|
||||
<path style="fill:#D2D2D2;" d="M347.94,291.031c0.402,0.142,0.828,0.235,1.279,0.235c2.121,0,3.84-1.719,3.84-3.84 c0-2.121-1.719-3.84-3.84-3.84s-3.84,1.719-3.84,3.84c0,0.451,0.092,0.877,0.235,1.279 C346.439,289.43,347.214,290.206,347.94,291.031z"/>
|
||||
<path style="fill:#D2D2D2;" d="M345.379,328.385c0,2.121,1.719,3.84,3.84,3.84c1.183,0,2.227-0.546,2.932-1.387 c-2.407-0.871-4.655-1.841-6.727-2.903C345.407,328.086,345.379,328.232,345.379,328.385z"/>
|
||||
</g>
|
||||
<path style="fill:#E6B432;" d="M340.033,324.678c-0.539-0.391-0.862-0.957-0.987-1.561c-0.435,0.094-0.884,0.149-1.347,0.149 c-3.04,0-5.581-2.135-6.23-4.983c-0.696,0.705-1.662,1.143-2.73,1.143c-1.069,0-2.035-0.438-2.73-1.143 c-0.648,2.848-3.189,4.983-6.23,4.983c-3.529,0-6.4-2.87-6.4-6.4c0-3.041,2.136-5.581,4.983-6.23 c-0.705-0.696-1.143-1.662-1.143-2.73c0-1.069,0.438-2.035,1.143-2.73c-2.847-0.648-4.983-3.189-4.983-6.23 c0-3.53,2.871-6.4,6.4-6.4c3.04,0,5.581,2.135,6.23,4.983c0.696-0.705,1.662-1.143,2.73-1.143c1.069,0,2.035,0.438,2.73,1.143 c0.648-2.848,3.189-4.983,6.23-4.983c3.529,0,6.4,2.87,6.4,6.4c0,3.041-2.136,5.581-4.983,6.23c0.705,0.696,1.143,1.662,1.143,2.73 c0,1.069-0.438,2.035-1.143,2.73c2.847,0.648,4.983,3.189,4.983,6.23c0,1.35-0.425,2.599-1.141,3.633 c0.024,0.017,0.053,0.018,0.077,0.035c1.656,1.199,3.565,2.314,5.685,3.333c0.638-0.797,1.218-1.639,1.758-2.509 c1.687-2.717,2.879-5.763,3.451-9.027c0.253-1.44,0.409-2.912,0.409-4.424c0-6.466-2.43-12.364-6.399-16.875 c-0.726-0.824-1.502-1.601-2.326-2.326c-4.511-3.969-10.408-6.399-16.875-6.399s-12.364,2.43-16.875,6.399 c-0.824,0.726-1.601,1.502-2.326,2.326c-3.969,4.511-6.399,10.408-6.399,16.875c0,6.467,2.43,12.364,6.399,16.875 c0.726,0.824,1.502,1.601,2.326,2.326c4.511,3.969,10.408,6.399,16.875,6.399c6.152,0,11.8-2.184,16.22-5.813 C343.177,326.753,341.516,325.753,340.033,324.678z M348.53,302.727c0.435,1.657,0.69,3.387,0.69,5.178s-0.255,3.521-0.69,5.178 c-0.723-2.062-2.005-3.839-3.679-5.178C346.525,306.566,347.807,304.789,348.53,302.727z M333.918,288.115 c-2.062,0.723-3.839,2.005-5.178,3.679c-1.34-1.674-3.116-2.956-5.178-3.679c1.657-0.435,3.386-0.69,5.178-0.69 S332.26,287.68,333.918,288.115z M308.949,302.727c0.723,2.062,2.005,3.84,3.679,5.178c-1.674,1.34-2.956,3.116-3.679,5.178 c-0.435-1.657-0.69-3.386-0.69-5.178C308.259,306.113,308.514,304.385,308.949,302.727z M323.561,327.696 c2.062-0.723,3.839-2.005,5.178-3.679c1.34,1.674,3.116,2.957,5.178,3.679c-1.657,0.435-3.386,0.69-5.178,0.69 S325.218,328.13,323.561,327.696z"/>
|
||||
<g>
|
||||
<path style="fill:#F0C814;" d="M324.899,307.906c0-2.121-1.719-3.84-3.84-3.84c-1.052,0-2.004,0.425-2.697,1.11 c-0.705,0.696-1.143,1.662-1.143,2.73c0,1.069,0.438,2.035,1.143,2.73c0.694,0.685,1.645,1.11,2.697,1.11 C323.18,311.745,324.899,310.026,324.899,307.906z"/>
|
||||
<path style="fill:#F0C814;" d="M332.579,307.906c0,2.121,1.719,3.84,3.84,3.84c1.052,0,2.004-0.425,2.697-1.11 c0.705-0.696,1.143-1.662,1.143-2.73c0-1.069-0.438-2.035-1.143-2.73c-0.694-0.685-1.645-1.11-2.697-1.11 C334.298,304.065,332.579,305.784,332.579,307.906z"/>
|
||||
<path style="fill:#F0C814;" d="M328.739,304.065c2.121,0,3.84-1.719,3.84-3.84c0-1.052-0.425-2.004-1.11-2.697 c-0.696-0.705-1.662-1.143-2.73-1.143c-1.069,0-2.035,0.438-2.73,1.143c-0.685,0.694-1.11,1.645-1.11,2.697 C324.899,302.346,326.618,304.065,328.739,304.065z"/>
|
||||
<path style="fill:#F0C814;" d="M328.739,311.745c-2.121,0-3.84,1.719-3.84,3.84c0,1.052,0.425,2.004,1.11,2.697 c0.696,0.705,1.662,1.143,2.73,1.143c1.069,0,2.035-0.438,2.73-1.143c0.685-0.693,1.11-1.645,1.11-2.697 C332.579,313.464,330.86,311.745,328.739,311.745z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#D2D2D2;" d="M446.345,195.421c0.372,0.372,0.802,0.65,1.26,0.836c0.466,0.191,0.96,0.288,1.455,0.288 c0.982,0,1.965-0.375,2.714-1.126c1.331-1.331,1.411-3.361,0.381-4.857l1.416-5.661c0.201,0.051,0.393,0.122,0.609,0.122 c1.414,0,2.56-1.146,2.56-2.56s-1.146-2.56-2.56-2.56s-2.56,1.146-2.56,2.56c0,0.216,0.073,0.408,0.122,0.609l-5.661,1.416 c-1.496-1.031-3.527-0.95-4.857,0.381c-1.118,1.118-1.398,2.752-0.849,4.134c0.188,0.471,0.467,0.915,0.849,1.297L446.345,195.421z "/>
|
||||
<path style="fill:#D2D2D2;" d="M382.499,255.645v-1.5v-10.24c0-0.596,0.236-1.119,0.577-1.554l-53.333-53.347 c-0.188,0.471-0.467,0.915-0.849,1.297l-5.12,5.12c-0.372,0.372-0.802,0.65-1.26,0.836l9.492,9.495l-13.871,13.871l9.05,9.05 l3.62-3.62l-1.81-1.811l3.62-3.62l1.81,1.81l1.811-1.81l3.62,3.62l-1.81,1.811l1.81,1.81l-3.62,3.62l-1.811-1.81l-3.62,3.62 l9.05,9.05l13.868-13.868l21.651,21.656c0.457,0.103,0.898,0.286,1.254,0.641L382.499,255.645z"/>
|
||||
<path style="fill:#D2D2D2;" d="M388.372,262.133l4.914,4.915l17.592,17.597c1,1,2.309,1.5,3.622,1.5c1.31,0,2.62-0.5,3.62-1.5 c2.001-1.997,2.001-5.24,0.001-7.24l-22.507-22.514L388.372,262.133z"/>
|
||||
<polygon style="fill:#D2D2D2;" points="387.619,254.145 387.619,255.645 391.993,251.271 387.619,246.896 "/>
|
||||
<path style="fill:#D2D2D2;" d="M460.58,291.031c0.402,0.142,0.828,0.235,1.279,0.235c2.121,0,3.84-1.719,3.84-3.84 c0-2.121-1.719-3.84-3.84-3.84s-3.84,1.719-3.84,3.84c0,0.451,0.092,0.877,0.235,1.279 C459.079,289.43,459.854,290.206,460.58,291.031z"/>
|
||||
<path style="fill:#D2D2D2;" d="M461.859,324.545c-0.451,0-0.877,0.092-1.279,0.235c-0.726,0.824-1.502,1.601-2.326,2.326 c-0.142,0.402-0.235,0.828-0.235,1.279c0,2.121,1.719,3.84,3.84,3.84s3.84-1.719,3.84-3.84 C465.699,326.265,463.98,324.545,461.859,324.545z"/>
|
||||
<path style="fill:#D2D2D2;" d="M424.504,288.704c0.142-0.402,0.235-0.828,0.235-1.279c0-2.121-1.719-3.84-3.84-3.84 s-3.84,1.719-3.84,3.84c0,2.121,1.719,3.84,3.84,3.84c0.451,0,0.877-0.092,1.279-0.235 C422.904,290.206,423.68,289.43,424.504,288.704z"/>
|
||||
<path style="fill:#D2D2D2;" d="M420.899,332.226c2.121,0,3.84-1.719,3.84-3.84c0-0.154-0.028-0.3-0.045-0.45 c-2.07,1.063-4.32,2.033-6.726,2.904C418.673,331.68,419.716,332.226,420.899,332.226z"/>
|
||||
</g>
|
||||
<path style="fill:#E6B432;" d="M460.58,324.781c3.969-4.511,6.399-10.408,6.399-16.875c0-6.467-2.43-12.364-6.399-16.875 c-0.726-0.824-1.502-1.601-2.326-2.326c-4.511-3.969-10.408-6.399-16.875-6.399s-12.364,2.43-16.875,6.399 c-0.824,0.726-1.601,1.502-2.326,2.326c-3.969,4.511-6.399,10.408-6.399,16.875c0,1.519,0.158,3,0.413,4.448 c0.574,3.256,1.764,6.294,3.447,9.004c0.541,0.871,1.12,1.711,1.758,2.509c2.118-1.018,4.025-2.132,5.681-3.33 c0.025-0.019,0.056-0.02,0.082-0.038c-0.716-1.033-1.141-2.283-1.141-3.633c0-3.041,2.136-5.581,4.983-6.23 c-0.705-0.696-1.143-1.662-1.143-2.73c0-1.069,0.438-2.035,1.143-2.73c-2.847-0.648-4.983-3.189-4.983-6.23 c0-3.53,2.871-6.4,6.4-6.4c3.04,0,5.581,2.135,6.23,4.983c0.696-0.705,1.662-1.143,2.73-1.143c1.068,0,2.035,0.438,2.73,1.143 c0.649-2.848,3.189-4.983,6.23-4.983c3.529,0,6.4,2.87,6.4,6.4c0,3.041-2.136,5.581-4.983,6.23c0.705,0.696,1.143,1.662,1.143,2.73 c0,1.069-0.438,2.035-1.143,2.73c2.847,0.648,4.983,3.189,4.983,6.23c0,3.53-2.871,6.4-6.4,6.4c-3.04,0-5.581-2.135-6.23-4.983 c-0.696,0.705-1.662,1.143-2.73,1.143c-1.068,0-2.035-0.438-2.73-1.143c-0.649,2.848-3.189,4.983-6.23,4.983 c-0.463,0-0.914-0.055-1.351-0.149c-0.124,0.606-0.448,1.174-0.989,1.565c-1.482,1.074-3.14,2.073-4.921,3.012 c4.419,3.629,10.069,5.813,16.22,5.813c6.467,0,12.364-2.43,16.875-6.399C459.079,326.381,459.854,325.604,460.58,324.781z M421.589,313.084c-0.435-1.657-0.69-3.386-0.69-5.178c0-1.792,0.255-3.521,0.69-5.178c0.723,2.062,2.005,3.84,3.679,5.178 C423.594,309.245,422.312,311.021,421.589,313.084z M441.379,291.794c-1.34-1.674-3.116-2.956-5.178-3.679 c1.657-0.435,3.386-0.69,5.178-0.69s3.521,0.255,5.178,0.69C444.495,288.839,442.719,290.12,441.379,291.794z M461.17,302.727 c0.435,1.657,0.69,3.387,0.69,5.178s-0.255,3.521-0.69,5.178c-0.723-2.062-2.005-3.839-3.679-5.178 C459.165,306.566,460.447,304.789,461.17,302.727z M436.201,327.696c2.062-0.723,3.839-2.005,5.178-3.679 c1.34,1.674,3.116,2.957,5.178,3.679c-1.657,0.435-3.386,0.69-5.178,0.69S437.858,328.13,436.201,327.696z"/>
|
||||
<g>
|
||||
<path style="fill:#F0C814;" d="M445.219,307.906c0,2.121,1.719,3.84,3.84,3.84c1.052,0,2.004-0.425,2.697-1.11 c0.705-0.696,1.143-1.662,1.143-2.73c0-1.069-0.438-2.035-1.143-2.73c-0.694-0.685-1.645-1.11-2.697-1.11 C446.938,304.065,445.219,305.784,445.219,307.906z"/>
|
||||
<path style="fill:#F0C814;" d="M437.539,307.906c0-2.121-1.719-3.84-3.84-3.84c-1.052,0-2.004,0.425-2.697,1.11 c-0.705,0.696-1.143,1.662-1.143,2.73c0,1.069,0.438,2.035,1.143,2.73c0.694,0.685,1.645,1.11,2.697,1.11 C435.82,311.745,437.539,310.026,437.539,307.906z"/>
|
||||
<path style="fill:#F0C814;" d="M441.379,304.065c2.121,0,3.84-1.719,3.84-3.84c0-1.052-0.425-2.004-1.11-2.697 c-0.696-0.705-1.662-1.143-2.73-1.143s-2.035,0.438-2.73,1.143c-0.685,0.694-1.11,1.645-1.11,2.697 C437.539,302.346,439.258,304.065,441.379,304.065z"/>
|
||||
<path style="fill:#F0C814;" d="M441.379,311.745c-2.121,0-3.84,1.719-3.84,3.84c0,1.052,0.425,2.004,1.11,2.697 c0.696,0.705,1.662,1.143,2.73,1.143s2.035-0.438,2.73-1.143c0.685-0.693,1.11-1.645,1.11-2.697 C445.219,313.464,443.5,311.745,441.379,311.745z"/>
|
||||
</g>
|
||||
<path style="fill:#F7B518;" d="M328.894,190.3c0.382-0.382,0.661-0.825,0.849-1.297c0.548-1.382,0.269-3.015-0.849-4.134 c-1.331-1.331-3.361-1.411-4.857-0.381l-5.661-1.416c0.051-0.201,0.122-0.393,0.122-0.609c0-1.414-1.146-2.56-2.56-2.56 s-2.56,1.146-2.56,2.56s1.146,2.56,2.56,2.56c0.216,0,0.408-0.073,0.609-0.122l1.416,5.661c-1.031,1.496-0.95,3.527,0.381,4.857 c0.75,0.75,1.732,1.126,2.714,1.126c0.495,0,0.99-0.098,1.455-0.288c0.458-0.188,0.888-0.465,1.26-0.836L328.894,190.3z"/>
|
||||
<path style="fill:#FF4B55;" d="M430.08,324.68c0.541-0.391,0.864-0.959,0.989-1.565c0.139-0.679,0.022-1.406-0.416-2.01 c-0.811-1.117-2.353-1.375-3.492-0.608c-0.026,0.018-0.056,0.019-0.082,0.038c-1.655,1.198-3.563,2.312-5.681,3.33 c-7.506,3.611-17.667,6.019-28.658,6.798v-35.958c11.172,15.257,22.054,23.457,26.9,26.652c-1.683-2.71-2.873-5.748-3.447-9.004 c-6.196-5.126-14.957-13.736-23.453-26.718V268.24c0.181-0.399,0.366-0.788,0.546-1.192l-4.914-4.915l7.241-7.241l1.496-1.496 c1-1,1-2.62,0-3.62c-0.644-0.644-1.539-0.828-2.367-0.641c-0.457,0.103-0.897,0.286-1.254,0.641l-1.496,1.496l-4.374,4.374v-1.5 v-7.25v-2.99c0-0.596-0.236-1.119-0.577-1.554c-0.469-0.598-1.165-1.006-1.983-1.006c-0.819,0-1.514,0.408-1.983,1.006 c-0.341,0.435-0.577,0.958-0.577,1.554v10.24v1.5l-5.87-5.87c-0.355-0.355-0.797-0.538-1.254-0.641 c-0.828-0.186-1.722-0.003-2.367,0.641c-1,1-1,2.62,0,3.62l1.496,1.496l7.241,7.241l-4.914,4.915 c0.18,0.405,0.365,0.792,0.546,1.192v17.374c-8.487,12.956-17.25,21.576-23.449,26.714c-0.573,3.265-1.763,6.312-3.451,9.027 c4.846-3.194,15.727-11.394,26.9-26.652v35.958c-10.991-0.778-21.152-3.187-28.659-6.797c-2.12-1.02-4.029-2.134-5.685-3.333 c-0.024-0.018-0.053-0.019-0.077-0.035c-1.139-0.77-2.684-0.511-3.498,0.605c-0.439,0.606-0.555,1.334-0.414,2.014 c0.125,0.604,0.448,1.171,0.986,1.561c1.484,1.075,3.144,2.076,4.926,3.015c0.155,0.082,0.309,0.162,0.466,0.243 c2.07,1.063,4.32,2.033,6.727,2.903c7.27,2.631,15.932,4.351,25.228,4.966v18.891c0.756-0.439,1.623-0.71,2.56-0.71 s1.804,0.27,2.56,0.71v-18.667c0.851,0.018,1.702,0.036,2.56,0.036s1.709-0.019,2.56-0.036v5.867c0.756-0.439,1.623-0.71,2.56-0.71 s1.804,0.27,2.56,0.71v-6.091c9.297-0.615,17.96-2.335,25.229-4.966c2.407-0.871,4.655-1.841,6.726-2.904 c0.157-0.081,0.311-0.161,0.466-0.243C426.94,326.755,428.598,325.753,430.08,324.68z M385.059,330.945 c-0.856,0-1.709-0.018-2.56-0.038v-43.691c0.858-1.347,1.711-2.749,2.56-4.185c0.849,1.437,1.702,2.838,2.56,4.185v43.691 C386.769,330.928,385.916,330.945,385.059,330.945z"/>
|
||||
<g>
|
||||
<path style="fill:#E6B432;" d="M385.059,184.456c14.138,0,25.6,2.42,25.6,5.405c0-5.022,0-9.922,0-10.687 c0-1.174-1.084-2.28-2.978-3.25l0.587-1.173c0.928-0.064,1.7-0.625,2.098-1.408c0.172-0.34,0.295-0.708,0.295-1.118 c0-0.492-0.175-0.926-0.417-1.316c-0.451-0.73-1.221-1.244-2.143-1.244c-1.414,0-2.56,1.146-2.56,2.56 c0,0.512,0.189,0.962,0.448,1.362l-0.674,1.347c-1.932-0.679-4.312-1.256-7.027-1.703l0.288-1.152 c1.058-0.314,1.845-1.256,1.845-2.415c0-1.414-1.146-2.56-2.56-2.56s-2.56,1.146-2.56,2.56c0,0.722,0.303,1.367,0.783,1.833 l-0.342,1.367c-1.427-0.179-2.922-0.32-4.474-0.426c0.116-0.481,0.193-0.978,0.193-1.494c0-3.534-2.866-6.4-6.4-6.4 s-6.4,2.866-6.4,6.4c0,0.518,0.077,1.013,0.193,1.494c-1.554,0.105-3.049,0.247-4.474,0.426l-0.342-1.367 c0.48-0.466,0.783-1.111,0.783-1.833c0-1.414-1.146-2.56-2.56-2.56s-2.56,1.146-2.56,2.56c0,1.16,0.787,2.101,1.845,2.415 l0.288,1.152c-2.714,0.446-5.095,1.023-7.027,1.703l-0.674-1.347c0.259-0.401,0.448-0.85,0.448-1.362c0-1.414-1.146-2.56-2.56-2.56 c-0.921,0-1.693,0.513-2.143,1.244c-0.241,0.391-0.417,0.824-0.417,1.316c0,0.409,0.121,0.778,0.294,1.118 c0.397,0.783,1.17,1.344,2.098,1.408l0.587,1.173c-1.895,0.97-2.978,2.074-2.978,3.25c0,0.766,0,5.665,0,10.687 C359.459,186.876,370.921,184.456,385.059,184.456z"/>
|
||||
<path style="fill:#E6B432;" d="M359.459,190.145l0.032-0.013c-0.008-0.086-0.032-0.202-0.032-0.271 C359.459,189.957,359.459,190.05,359.459,190.145z"/>
|
||||
<path style="fill:#E6B432;" d="M410.659,190.145c0-0.095,0-0.189,0-0.285c0,0.07-0.024,0.186-0.032,0.271L410.659,190.145z"/>
|
||||
</g>
|
||||
<path style="fill:#EBEBEB;" d="M364.579,195.266c0,0.512-0.189,0.962-0.448,1.362l0.97,1.941c1.694-0.84,4.008-1.561,6.775-2.114 l-0.333-1.333c-1.058-0.314-1.845-1.256-1.845-2.415c0-1.414,1.146-2.56,2.56-2.56s2.56,1.146,2.56,2.56 c0,0.722-0.303,1.367-0.783,1.833l0.37,1.476c2.47-0.369,5.198-0.615,8.094-0.706v-2.319c-0.78-0.703-1.28-1.71-1.28-2.844 c0-2.121,1.719-3.84,3.84-3.84s3.84,1.719,3.84,3.84c0,1.133-0.5,2.141-1.28,2.844v2.319c2.895,0.092,5.624,0.338,8.094,0.706 l0.37-1.476c-0.48-0.466-0.783-1.111-0.783-1.833c0-1.414,1.146-2.56,2.56-2.56s2.56,1.146,2.56,2.56 c0,1.16-0.787,2.101-1.845,2.415l-0.333,1.333c2.767,0.553,5.082,1.276,6.775,2.114l0.97-1.941c-0.259-0.401-0.448-0.85-0.448-1.362 c0-1.414,1.146-2.56,2.56-2.56c0.612,0,1.152,0.245,1.592,0.604c0.57-1.399,0.873-2.51,0.936-3.176 c0.008-0.086,0.032-0.202,0.032-0.271c0-2.985-11.462-5.405-25.6-5.405s-25.6,2.42-25.6,5.405c0,0.07,0.024,0.186,0.032,0.271 c0.062,0.666,0.365,1.777,0.935,3.176c0.44-0.359,0.98-0.604,1.592-0.604C363.433,192.705,364.579,193.852,364.579,195.266z"/>
|
||||
<path style="fill:#E6B432;" d="M359.459,195.266c0,1.354,1.06,2.435,2.391,2.526l1.105,2.209c-0.599,0.587-0.937,1.205-0.937,1.847 c0,0.738,0.445,1.447,1.23,2.11l3.89,6.668c0-2.828,8.023-5.12,17.92-5.12s17.92,2.292,17.92,5.12l3.89-6.668 c0.786-0.663,1.23-1.37,1.23-2.11c0-0.642-0.337-1.26-0.937-1.847l1.105-2.209c1.331-0.092,2.392-1.172,2.392-2.526 c0-0.801-0.391-1.487-0.968-1.956c-0.44-0.359-0.98-0.604-1.592-0.604c-1.414,0-2.56,1.146-2.56,2.56 c0,0.512,0.189,0.962,0.448,1.362l-0.97,1.941c-1.694-0.84-4.008-1.561-6.775-2.114l0.333-1.333 c1.058-0.314,1.845-1.256,1.845-2.415c0-1.414-1.146-2.56-2.56-2.56s-2.56,1.146-2.56,2.56c0,0.722,0.303,1.367,0.783,1.833 l-0.37,1.476c-2.47-0.369-5.198-0.615-8.094-0.706v-2.319c0.78-0.703,1.28-1.71,1.28-2.844c0-2.121-1.719-3.84-3.84-3.84 s-3.84,1.719-3.84,3.84c0,1.133,0.5,2.141,1.28,2.844v2.319c-2.895,0.092-5.624,0.338-8.094,0.706l-0.37-1.476 c0.48-0.466,0.783-1.111,0.783-1.833c0-1.414-1.146-2.56-2.56-2.56s-2.56,1.146-2.56,2.56c0,1.16,0.787,2.101,1.845,2.415 l0.333,1.333c-2.767,0.553-5.082,1.276-6.775,2.114l-0.97-1.941c0.259-0.401,0.448-0.85,0.448-1.362c0-1.414-1.146-2.56-2.56-2.56 c-0.612,0-1.152,0.245-1.592,0.604C359.85,193.779,359.459,194.464,359.459,195.266z"/>
|
||||
<ellipse style="fill:#EBEBEB;" cx="385.06" cy="210.63" rx="17.92" ry="5.12"/>
|
||||
<g>
|
||||
<path style="fill:#E6B432;" d="M410.046,167.005l-4.507-10.14c0-0.64-0.491-1.25-1.35-1.815l3.639-7.279 c0.632-1.265,0.12-2.803-1.145-3.435c-1.268-0.628-2.803-0.117-3.435,1.145l-1.977,3.955l-1.887,3.774 c-1.086-0.266-2.297-0.499-3.597-0.7l0.227-0.909c1.058-0.314,1.845-1.256,1.845-2.415c0-1.414-1.146-2.56-2.56-2.56 s-2.56,1.146-2.56,2.56c0,0.722,0.303,1.367,0.783,1.833l-0.289,1.154c-2.505-0.274-5.267-0.427-8.174-0.427 c-2.908,0-5.67,0.153-8.174,0.427l-0.289-1.154c0.48-0.466,0.783-1.111,0.783-1.833c0-1.414-1.146-2.56-2.56-2.56 s-2.56,1.146-2.56,2.56c0,1.16,0.787,2.101,1.845,2.415l0.227,0.909c-1.301,0.201-2.511,0.434-3.598,0.7l-1.887-3.774l-1.977-3.955 c-0.633-1.262-2.166-1.772-3.435-1.145c-1.265,0.632-1.778,2.17-1.145,3.435l3.639,7.279c-0.858,0.565-1.35,1.175-1.35,1.815 l-4.507,10.14c2.528-2.87,12.746-5.02,24.987-5.02C397.3,161.985,407.518,164.134,410.046,167.005z"/>
|
||||
<circle style="fill:#E6B432;" cx="385.06" cy="147.91" r="3.84"/>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 21 KiB |
@ -1,81 +0,0 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<path style="fill:#41479B;" d="M473.655,423.724H38.346c-21.177,0-38.345-17.167-38.345-38.345V126.622 c0-21.177,17.167-38.345,38.345-38.345h435.309c21.177,0,38.345,17.167,38.345,38.345V385.38 C512,406.557,494.833,423.724,473.655,423.724z"/>
|
||||
<path style="fill:#F5F5F5;" d="M150.069,141.849V88.277h-44.138v53.573L26.845,90.035c-9.234,2.9-16.954,9.203-21.711,17.434 l65.022,42.601H0.001v44.138h70.153L0.001,240.169v7.033c0.017,4.861,3.961,8.797,8.826,8.797H24.16l81.77-53.572V256h44.138 v-53.573L231.838,256h15.333c4.875,0,8.828-3.953,8.828-8.828v-7.002l-70.155-45.963h70.155V150.07h-70.155l70.155-45.964v-7.002 c0-4.874-3.95-8.825-8.823-8.828h-15.338L150.069,141.849z"/>
|
||||
<g>
|
||||
<polygon style="fill:#FF4B55;" points="255.999,158.897 141.241,158.897 141.241,88.277 114.758,88.277 114.758,158.897 0,158.897 0,185.38 114.758,185.38 114.758,256.001 141.241,256.001 141.241,185.38 255.999,185.38 "/>
|
||||
<path style="fill:#FF4B55;" d="M8.228,102.903l72.661,47.166h16.214l-82.495-53.55C12.239,98.39,10.098,100.533,8.228,102.903z"/>
|
||||
<path style="fill:#FF4B55;" d="M166.283,150.07l88.374-57.366c-1.536-2.599-4.246-4.427-7.485-4.427h-1.909l-95.194,61.793H166.283 z"/>
|
||||
<path style="fill:#FF4B55;" d="M89.474,194.208L1.269,251.462c1.519,2.663,4.273,4.537,7.559,4.537h1.665l95.195-61.793H89.474 V194.208z"/>
|
||||
<path style="fill:#FF4B55;" d="M255.859,247.866l-82.666-53.658H156.98l93.873,60.934 C253.666,253.837,255.594,251.102,255.859,247.866z"/>
|
||||
</g>
|
||||
<path style="fill:#73AF00;" d="M387.75,171.125h-57.796c0,0,0,74.795,0,105.393c0,23.798,57.796,47.597,57.796,47.597 s57.796-23.798,57.796-47.597c0-30.599,0-105.393,0-105.393H387.75L387.75,171.125z"/>
|
||||
<path style="fill:#FF4B55;" d="M353.913,251.543c0,0-0.324-1.119-0.036-2.13c0.289-1.011-0.454-1.938-0.614-2.815 c-0.433-2.382,1.588-2.996,1.696-5.124c0,0,1.443,1.48,0.903,2.888c-0.541,1.408,0.794,1.624,0.614,2.959 c-0.181,1.335-1.661,2.743-1.516,3.934L353.913,251.543z"/>
|
||||
<path style="fill:#FFE15A;" d="M376.637,249.281c-1.181-1.476-3.252,0.114-4.768,1.27c-0.211,0.162-0.39,0.286-0.577,0.422 l-5.592-8.259c0.157-0.236,0.27-0.503,0.27-0.807c0-0.823-0.666-1.49-1.49-1.49s-1.49,0.666-1.49,1.49 c0,0.305,0.114,0.572,0.27,0.807l-5.769,8.519h-4.085c0,0-0.169,2.539,4.291,2.847c0.575,0.871,1.395,1.564,2.377,1.956 c-0.461,0.075-0.833,0.431-0.833,0.914v0.597c0,0.038,0.036,0.06,0.04,0.097h10.391c0.004-0.036,0.04-0.059,0.04-0.097v-0.597 c0-0.488-0.378-0.852-0.847-0.919c1.739-0.7,2.961-2.327,3.167-4.26c0.162-0.12,0.313-0.23,0.489-0.363 c1.097-0.842,2.749-2.124,3.276-1.453c0.131,0.164,0.118,0.255,0.113,0.288c-0.06,0.39-0.893,0.95-1.562,1.399 c-1.053,0.707-2.142,1.441-2.228,2.481c-0.025,0.297,0.194,0.554,0.49,0.581c0.015,0,0.032,0,0.045,0 c0.277,0,0.512-0.213,0.535-0.491c0.043-0.527,0.993-1.165,1.757-1.677c0.973-0.657,1.892-1.273,2.024-2.127 C377.032,250.014,376.919,249.637,376.637,249.281z M367.078,251.231c-0.308-1.174-1.034-2.302-1.941-2.71 c0.48-0.247,0.819-0.734,0.819-1.311c0-0.822-0.666-1.49-1.49-1.49c-0.822,0-1.49,0.666-1.49,1.49c0,0.577,0.338,1.064,0.819,1.311 c-0.907,0.407-1.634,1.535-1.941,2.71h-3.065l5.353-7.905c0.111,0.026,0.219,0.068,0.339,0.068s0.227-0.042,0.339-0.068l5.353,7.905 H367.078z"/>
|
||||
<path style="fill:#FFC8B9;" d="M384.066,201.156c0,0-5.383-1.593-7.791,17.247c0,0-13.174,16.751-13.599,17.742 c-0.425,0.992-0.035,8.11,1.382,7.543s3.967-3.86,3.825-6.269s0.945-3.752,2.018-4.958c2.018-2.266,13.387-12.536,13.812-14.803 C384.137,215.393,384.066,201.156,384.066,201.156z"/>
|
||||
<g>
|
||||
<path style="fill:#F5F5F5;" d="M392.425,197.579c0,0,8.322-1.098,10.766,7.402c0,0-6.835,3.754-5.985,8.641 S397.1,240.82,397.1,240.82c-13.068,4.249-19.974-1.063-19.974-1.063s3.4-12.643,2.869-22.948c0,0-3.081-2.337-2.337-4.993 c0.744-2.656,2.656-5.631,3.294-7.862s2.337-5.95,6.481-6.269C391.574,197.367,392.425,197.579,392.425,197.579z"/>
|
||||
<path style="fill:#F5F5F5;" d="M379.534,237.278c0,0-6.516,24.649-4.249,58.221c0,0,20.328,2.691,31.378-1.346 c0,0-5.737-40.16-11.262-55.884L379.534,237.278z"/>
|
||||
</g>
|
||||
<path style="fill:#FFC8B9;" d="M383.358,183.061v10.211c0,1.121,0.909,2.03,2.03,2.03h0.182c0.793,0,1.437,0.643,1.437,1.437v2.441 c0,0,1.368,3.574,6.691-0.608v-15.435L383.358,183.061z"/>
|
||||
<path style="fill:#8C5A28;" d="M382.154,180.97c-0.33,0.825,0.018,3.063,2.053,2.904c2.543-0.199,5.613-0.213,6.304,2.603 c0.642,2.617,0.213,9.154,3.046,9.58c2.834,0.425,6.046-1.458,5.985-7.083c-0.053-4.958-3.294-10.89-7.827-9.987 c0,0-4.02-2.816-6.375,0.354C385.342,179.341,382.863,179.199,382.154,180.97z"/>
|
||||
<path style="fill:#FFC8B9;" d="M403.19,204.981c0,0,2.9,19.104,2.762,20.682c-0.141,1.629-10.27,17.282-9.704,18.983 c0.567,1.7,1.133,3.967-1.983,4.817s-2.797-4.126-1.948-6.676s7.968-16.131,7.968-17.689s-4.038-11.616-3.046-15.583 C398.232,205.547,403.19,204.981,403.19,204.981z"/>
|
||||
<path style="fill:#FF4B55;" d="M341.163,191.262c0,0-0.324-1.119-0.036-2.13c0.289-1.011-0.454-1.938-0.613-2.815 c-0.433-2.382,1.588-2.996,1.696-5.124c0,0,1.443,1.48,0.903,2.888c-0.542,1.408,0.794,1.624,0.614,2.959s-1.661,2.743-1.516,3.934 L341.163,191.262z"/>
|
||||
<path style="fill:#FFE15A;" d="M363.888,189c-1.181-1.476-3.252,0.114-4.768,1.27c-0.211,0.162-0.39,0.286-0.577,0.422l-5.592-8.259 c0.157-0.236,0.27-0.503,0.27-0.807c0-0.823-0.666-1.49-1.49-1.49s-1.49,0.666-1.49,1.49c0,0.305,0.114,0.572,0.27,0.807 l-5.769,8.519h-4.085c0,0-0.169,2.539,4.291,2.847c0.575,0.871,1.395,1.564,2.377,1.956c-0.461,0.075-0.833,0.431-0.833,0.914v0.597 c0,0.038,0.036,0.06,0.04,0.097h10.391c0.004-0.036,0.04-0.058,0.04-0.097v-0.597c0-0.488-0.378-0.852-0.847-0.919 c1.739-0.7,2.961-2.327,3.167-4.26c0.162-0.12,0.313-0.23,0.489-0.363c1.097-0.842,2.749-2.124,3.276-1.453 c0.131,0.164,0.118,0.255,0.113,0.288c-0.06,0.39-0.893,0.95-1.562,1.399c-1.053,0.707-2.142,1.441-2.228,2.481 c-0.025,0.297,0.194,0.554,0.49,0.582c0.015,0,0.032,0,0.045,0c0.277,0,0.512-0.213,0.535-0.491 c0.043-0.527,0.993-1.165,1.757-1.677c0.973-0.657,1.892-1.273,2.024-2.127C364.283,189.734,364.17,189.357,363.888,189z M354.329,190.951c-0.308-1.174-1.034-2.302-1.941-2.71c0.48-0.247,0.819-0.734,0.819-1.311c0-0.822-0.666-1.49-1.49-1.49 c-0.822,0-1.49,0.666-1.49,1.49c0,0.577,0.338,1.064,0.819,1.311c-0.907,0.407-1.634,1.535-1.941,2.71h-3.065l5.353-7.905 c0.111,0.026,0.218,0.068,0.339,0.068c0.12,0,0.227-0.042,0.339-0.068l5.353,7.905H354.329z"/>
|
||||
<path style="fill:#FF4B55;" d="M341.163,211.355c0,0-0.324-1.119-0.036-2.13c0.289-1.011-0.454-1.938-0.613-2.815 c-0.433-2.382,1.588-2.996,1.696-5.124c0,0,1.443,1.48,0.903,2.888c-0.541,1.408,0.794,1.624,0.614,2.959s-1.661,2.743-1.516,3.934 L341.163,211.355z"/>
|
||||
<path style="fill:#FFE15A;" d="M363.888,209.094c-1.181-1.476-3.252,0.114-4.768,1.27c-0.211,0.162-0.39,0.286-0.577,0.422 l-5.592-8.259c0.157-0.236,0.27-0.503,0.27-0.807c0-0.823-0.666-1.49-1.49-1.49s-1.49,0.666-1.49,1.49 c0,0.305,0.114,0.572,0.27,0.807l-5.769,8.519h-4.085c0,0-0.169,2.539,4.291,2.847c0.575,0.871,1.395,1.564,2.377,1.956 c-0.461,0.075-0.833,0.431-0.833,0.914v0.597c0,0.038,0.036,0.06,0.04,0.097h10.391c0.004-0.036,0.04-0.058,0.04-0.097v-0.597 c0-0.488-0.378-0.852-0.847-0.92c1.739-0.7,2.961-2.327,3.167-4.26c0.162-0.12,0.313-0.23,0.489-0.363 c1.097-0.842,2.749-2.124,3.276-1.453c0.131,0.164,0.118,0.255,0.113,0.288c-0.06,0.39-0.893,0.95-1.562,1.399 c-1.053,0.707-2.142,1.441-2.228,2.481c-0.025,0.297,0.194,0.554,0.49,0.581c0.015,0,0.032,0,0.045,0 c0.277,0,0.512-0.213,0.535-0.491c0.043-0.527,0.993-1.165,1.757-1.677c0.973-0.657,1.892-1.273,2.024-2.127 C364.283,209.828,364.17,209.451,363.888,209.094z M354.329,211.045c-0.308-1.174-1.034-2.302-1.941-2.71 c0.48-0.247,0.819-0.734,0.819-1.311c0-0.822-0.666-1.49-1.49-1.49c-0.822,0-1.49,0.666-1.49,1.49c0,0.577,0.338,1.064,0.819,1.311 c-0.907,0.407-1.634,1.535-1.941,2.71h-3.065l5.353-7.905c0.111,0.026,0.218,0.068,0.339,0.068c0.12,0,0.227-0.042,0.339-0.068 l5.353,7.905H354.329z"/>
|
||||
<path style="fill:#FF4B55;" d="M341.163,231.449c0,0-0.324-1.119-0.036-2.13c0.289-1.011-0.454-1.938-0.613-2.815 c-0.433-2.382,1.588-2.996,1.696-5.124c0,0,1.443,1.48,0.903,2.888c-0.542,1.408,0.794,1.624,0.614,2.959s-1.661,2.743-1.516,3.934 L341.163,231.449z"/>
|
||||
<path style="fill:#FFE15A;" d="M363.888,229.187c-1.181-1.476-3.252,0.114-4.768,1.27c-0.211,0.162-0.39,0.286-0.577,0.422 l-5.592-8.259c0.157-0.236,0.27-0.503,0.27-0.807c0-0.823-0.666-1.49-1.49-1.49s-1.49,0.666-1.49,1.49 c0,0.305,0.114,0.572,0.27,0.807l-5.769,8.519h-4.085c0,0-0.169,2.539,4.291,2.847c0.575,0.871,1.395,1.564,2.377,1.956 c-0.461,0.075-0.833,0.431-0.833,0.914v0.597c0,0.038,0.036,0.06,0.04,0.097h10.391c0.004-0.036,0.04-0.058,0.04-0.097v-0.597 c0-0.488-0.378-0.852-0.847-0.919c1.739-0.7,2.961-2.327,3.167-4.26c0.162-0.12,0.313-0.23,0.489-0.363 c1.097-0.842,2.749-2.124,3.276-1.453c0.131,0.164,0.118,0.255,0.113,0.288c-0.06,0.39-0.893,0.95-1.562,1.399 c-1.053,0.707-2.142,1.441-2.228,2.481c-0.025,0.297,0.194,0.554,0.49,0.582c0.015,0,0.032,0,0.045,0 c0.277,0,0.512-0.213,0.535-0.491c0.043-0.527,0.993-1.165,1.757-1.677c0.973-0.657,1.892-1.273,2.024-2.127 C364.283,229.921,364.17,229.543,363.888,229.187z M354.329,231.139c-0.308-1.174-1.034-2.302-1.941-2.71 c0.48-0.247,0.819-0.734,0.819-1.311c0-0.822-0.666-1.49-1.49-1.49c-0.822,0-1.49,0.666-1.49,1.49c0,0.577,0.338,1.064,0.819,1.311 c-0.907,0.407-1.634,1.535-1.941,2.71h-3.065l5.353-7.905c0.111,0.026,0.218,0.068,0.339,0.068c0.12,0,0.227-0.042,0.339-0.068 l5.353,7.905H354.329z"/>
|
||||
<path style="fill:#FF4B55;" d="M341.163,271.635c0,0-0.324-1.119-0.036-2.13c0.289-1.011-0.454-1.938-0.613-2.815 c-0.433-2.382,1.588-2.996,1.696-5.124c0,0,1.443,1.48,0.903,2.888s0.794,1.624,0.614,2.959s-1.661,2.743-1.516,3.934 L341.163,271.635z"/>
|
||||
<path style="fill:#FFE15A;" d="M363.888,269.374c-1.181-1.476-3.252,0.114-4.768,1.27c-0.211,0.162-0.39,0.286-0.577,0.422 l-5.592-8.258c0.157-0.236,0.27-0.503,0.27-0.807c0-0.823-0.666-1.49-1.49-1.49s-1.49,0.666-1.49,1.49 c0,0.305,0.114,0.572,0.27,0.807l-5.769,8.519h-4.085c0,0-0.169,2.539,4.291,2.847c0.575,0.871,1.395,1.564,2.377,1.956 c-0.461,0.075-0.833,0.431-0.833,0.914v0.597c0,0.038,0.036,0.06,0.04,0.097h10.391c0.004-0.036,0.04-0.058,0.04-0.097v-0.597 c0-0.488-0.378-0.852-0.847-0.919c1.739-0.7,2.961-2.327,3.167-4.26c0.162-0.12,0.313-0.23,0.489-0.363 c1.097-0.842,2.749-2.124,3.276-1.453c0.131,0.164,0.118,0.255,0.113,0.288c-0.06,0.389-0.893,0.95-1.562,1.399 c-1.053,0.707-2.142,1.441-2.228,2.481c-0.025,0.297,0.194,0.554,0.49,0.582c0.015,0,0.032,0,0.045,0 c0.277,0,0.512-0.213,0.535-0.491c0.043-0.527,0.993-1.165,1.757-1.677c0.973-0.657,1.892-1.273,2.024-2.127 C364.283,270.108,364.17,269.731,363.888,269.374z M354.329,271.325c-0.308-1.174-1.034-2.302-1.941-2.71 c0.48-0.247,0.819-0.734,0.819-1.311c0-0.822-0.666-1.49-1.49-1.49c-0.822,0-1.49,0.666-1.49,1.49c0,0.577,0.338,1.064,0.819,1.311 c-0.907,0.407-1.634,1.535-1.941,2.71h-3.065l5.353-7.905c0.111,0.026,0.218,0.068,0.339,0.068c0.12,0,0.227-0.042,0.339-0.068 l5.353,7.905H354.329z"/>
|
||||
<path style="fill:#FF4B55;" d="M341.163,291.729c0,0-0.324-1.119-0.036-2.13c0.289-1.011-0.454-1.938-0.613-2.815 c-0.433-2.382,1.588-2.996,1.696-5.124c0,0,1.443,1.48,0.903,2.888c-0.542,1.408,0.794,1.624,0.614,2.959 c-0.181,1.335-1.661,2.743-1.516,3.934L341.163,291.729z"/>
|
||||
<path style="fill:#FFE15A;" d="M363.888,289.467c-1.181-1.476-3.252,0.114-4.768,1.27c-0.211,0.162-0.39,0.286-0.577,0.422 l-5.592-8.258c0.157-0.236,0.27-0.503,0.27-0.807c0-0.823-0.666-1.49-1.49-1.49s-1.49,0.666-1.49,1.49 c0,0.305,0.114,0.572,0.27,0.807l-5.769,8.519h-4.085c0,0-0.169,2.539,4.291,2.847c0.575,0.871,1.395,1.564,2.377,1.956 c-0.461,0.075-0.833,0.431-0.833,0.914v0.597c0,0.038,0.036,0.06,0.04,0.097h10.391c0.004-0.036,0.04-0.058,0.04-0.097v-0.597 c0-0.488-0.378-0.852-0.847-0.919c1.739-0.7,2.961-2.327,3.167-4.26c0.162-0.12,0.313-0.23,0.489-0.363 c1.097-0.842,2.749-2.124,3.276-1.453c0.131,0.164,0.118,0.255,0.113,0.288c-0.06,0.39-0.893,0.95-1.562,1.399 c-1.053,0.707-2.142,1.441-2.228,2.481c-0.025,0.297,0.194,0.554,0.49,0.582c0.015,0,0.032,0,0.045,0 c0.277,0,0.512-0.213,0.535-0.491c0.043-0.527,0.993-1.165,1.757-1.677c0.973-0.657,1.892-1.273,2.024-2.127 C364.283,290.202,364.17,289.823,363.888,289.467z M354.329,291.419c-0.308-1.174-1.034-2.302-1.941-2.71 c0.48-0.247,0.819-0.734,0.819-1.311c0-0.822-0.666-1.49-1.49-1.49c-0.822,0-1.49,0.667-1.49,1.49c0,0.577,0.338,1.064,0.819,1.311 c-0.907,0.407-1.634,1.535-1.941,2.71h-3.065l5.353-7.905c0.111,0.026,0.218,0.068,0.339,0.068c0.12,0,0.227-0.042,0.339-0.068 l5.353,7.905H354.329z"/>
|
||||
<path style="fill:#FF4B55;" d="M411.071,191.262c0,0-0.324-1.119-0.036-2.13c0.289-1.011-0.455-1.938-0.613-2.815 c-0.433-2.382,1.588-2.996,1.696-5.124c0,0,1.443,1.48,0.903,2.888c-0.542,1.408,0.794,1.624,0.614,2.959s-1.661,2.743-1.516,3.934 L411.071,191.262z"/>
|
||||
<path style="fill:#FFE15A;" d="M433.795,189c-1.181-1.476-3.252,0.114-4.768,1.27c-0.211,0.162-0.39,0.286-0.577,0.422l-5.592-8.259 c0.157-0.236,0.27-0.503,0.27-0.807c0-0.823-0.666-1.49-1.49-1.49s-1.49,0.666-1.49,1.49c0,0.305,0.114,0.572,0.27,0.807 l-5.769,8.519h-4.085c0,0-0.169,2.539,4.291,2.847c0.575,0.871,1.395,1.564,2.377,1.956c-0.461,0.075-0.833,0.431-0.833,0.914v0.597 c0,0.038,0.036,0.06,0.04,0.097h10.391c0.004-0.036,0.04-0.058,0.04-0.097v-0.597c0-0.488-0.378-0.852-0.847-0.919 c1.739-0.7,2.961-2.327,3.167-4.26c0.162-0.12,0.313-0.23,0.489-0.363c1.097-0.842,2.749-2.124,3.276-1.453 c0.131,0.164,0.118,0.255,0.113,0.288c-0.06,0.39-0.893,0.95-1.562,1.399c-1.053,0.707-2.142,1.441-2.228,2.481 c-0.025,0.297,0.194,0.554,0.49,0.582c0.015,0,0.032,0,0.045,0c0.277,0,0.512-0.213,0.535-0.491 c0.043-0.527,0.993-1.165,1.757-1.677c0.973-0.657,1.892-1.273,2.024-2.127C434.19,189.734,434.079,189.357,433.795,189z M424.237,190.951c-0.308-1.174-1.034-2.302-1.941-2.71c0.48-0.247,0.819-0.734,0.819-1.311c0-0.822-0.667-1.49-1.49-1.49 c-0.822,0-1.49,0.666-1.49,1.49c0,0.577,0.338,1.064,0.819,1.311c-0.907,0.407-1.634,1.535-1.941,2.71h-3.065l5.353-7.905 c0.111,0.026,0.218,0.068,0.339,0.068c0.12,0,0.227-0.042,0.339-0.068l5.353,7.905H424.237z"/>
|
||||
<path style="fill:#FF4B55;" d="M411.071,211.355c0,0-0.324-1.119-0.036-2.13c0.289-1.011-0.455-1.938-0.613-2.815 c-0.433-2.382,1.588-2.996,1.696-5.124c0,0,1.443,1.48,0.903,2.888c-0.542,1.408,0.794,1.624,0.614,2.959s-1.661,2.743-1.516,3.934 L411.071,211.355z"/>
|
||||
<path style="fill:#FFE15A;" d="M433.795,209.094c-1.181-1.476-3.252,0.114-4.768,1.27c-0.211,0.162-0.39,0.286-0.577,0.422 l-5.592-8.259c0.157-0.236,0.27-0.503,0.27-0.807c0-0.823-0.666-1.49-1.49-1.49s-1.49,0.666-1.49,1.49 c0,0.305,0.114,0.572,0.27,0.807l-5.769,8.519h-4.085c0,0-0.169,2.539,4.291,2.847c0.575,0.871,1.395,1.564,2.377,1.956 c-0.461,0.075-0.833,0.431-0.833,0.914v0.597c0,0.038,0.036,0.06,0.04,0.097h10.391c0.004-0.036,0.04-0.058,0.04-0.097v-0.597 c0-0.488-0.378-0.852-0.847-0.92c1.739-0.7,2.961-2.327,3.167-4.26c0.162-0.12,0.313-0.23,0.489-0.363 c1.097-0.842,2.749-2.124,3.276-1.453c0.131,0.164,0.118,0.255,0.113,0.288c-0.06,0.39-0.893,0.95-1.562,1.399 c-1.053,0.707-2.142,1.441-2.228,2.481c-0.025,0.297,0.194,0.554,0.49,0.581c0.015,0,0.032,0,0.045,0 c0.277,0,0.512-0.213,0.535-0.491c0.043-0.527,0.993-1.165,1.757-1.677c0.973-0.657,1.892-1.273,2.024-2.127 C434.19,209.828,434.079,209.451,433.795,209.094z M424.237,211.045c-0.308-1.174-1.034-2.302-1.941-2.71 c0.48-0.247,0.819-0.734,0.819-1.311c0-0.822-0.667-1.49-1.49-1.49c-0.822,0-1.49,0.666-1.49,1.49c0,0.577,0.338,1.064,0.819,1.311 c-0.907,0.407-1.634,1.535-1.941,2.71h-3.065l5.353-7.905c0.111,0.026,0.218,0.068,0.339,0.068c0.12,0,0.227-0.042,0.339-0.068 l5.353,7.905H424.237z"/>
|
||||
<path style="fill:#FF4B55;" d="M411.071,231.449c0,0-0.324-1.119-0.036-2.13c0.289-1.011-0.455-1.938-0.613-2.815 c-0.433-2.382,1.588-2.996,1.696-5.124c0,0,1.443,1.48,0.903,2.888c-0.542,1.408,0.794,1.624,0.614,2.959s-1.661,2.743-1.516,3.934 L411.071,231.449z"/>
|
||||
<path style="fill:#FFE15A;" d="M433.795,229.187c-1.181-1.476-3.252,0.114-4.768,1.27c-0.211,0.162-0.39,0.286-0.577,0.422 l-5.592-8.259c0.157-0.236,0.27-0.503,0.27-0.807c0-0.823-0.666-1.49-1.49-1.49s-1.49,0.666-1.49,1.49 c0,0.305,0.114,0.572,0.27,0.807l-5.769,8.519h-4.085c0,0-0.169,2.539,4.291,2.847c0.575,0.871,1.395,1.564,2.377,1.956 c-0.461,0.075-0.833,0.431-0.833,0.914v0.597c0,0.038,0.036,0.06,0.04,0.097h10.391c0.004-0.036,0.04-0.058,0.04-0.097v-0.597 c0-0.488-0.378-0.852-0.847-0.919c1.739-0.7,2.961-2.327,3.167-4.26c0.162-0.12,0.313-0.23,0.489-0.363 c1.097-0.842,2.749-2.124,3.276-1.453c0.131,0.164,0.118,0.255,0.113,0.288c-0.06,0.39-0.893,0.95-1.562,1.399 c-1.053,0.707-2.142,1.441-2.228,2.481c-0.025,0.297,0.194,0.554,0.49,0.582c0.015,0,0.032,0,0.045,0 c0.277,0,0.512-0.213,0.535-0.491c0.043-0.527,0.993-1.165,1.757-1.677c0.973-0.657,1.892-1.273,2.024-2.127 C434.19,229.921,434.079,229.543,433.795,229.187z M424.237,231.139c-0.308-1.174-1.034-2.302-1.941-2.71 c0.48-0.247,0.819-0.734,0.819-1.311c0-0.822-0.667-1.49-1.49-1.49c-0.822,0-1.49,0.666-1.49,1.49c0,0.577,0.338,1.064,0.819,1.311 c-0.907,0.407-1.634,1.535-1.941,2.71h-3.065l5.353-7.905c0.111,0.026,0.218,0.068,0.339,0.068c0.12,0,0.227-0.042,0.339-0.068 l5.353,7.905H424.237z"/>
|
||||
<path style="fill:#FF4B55;" d="M411.071,251.543c0,0-0.324-1.119-0.036-2.13c0.289-1.011-0.455-1.938-0.613-2.815 c-0.433-2.382,1.588-2.996,1.696-5.124c0,0,1.443,1.48,0.903,2.888c-0.542,1.408,0.794,1.624,0.614,2.959 c-0.181,1.335-1.661,2.743-1.516,3.934L411.071,251.543z"/>
|
||||
<path style="fill:#FFE15A;" d="M433.795,249.281c-1.181-1.476-3.252,0.114-4.768,1.27c-0.211,0.162-0.39,0.286-0.577,0.422 l-5.592-8.259c0.157-0.236,0.27-0.503,0.27-0.807c0-0.823-0.666-1.49-1.49-1.49s-1.49,0.666-1.49,1.49 c0,0.305,0.114,0.572,0.27,0.807l-5.769,8.519h-4.085c0,0-0.169,2.539,4.291,2.847c0.575,0.871,1.395,1.564,2.377,1.956 c-0.461,0.075-0.833,0.431-0.833,0.914v0.597c0,0.038,0.036,0.06,0.04,0.097h10.391c0.004-0.036,0.04-0.059,0.04-0.097v-0.597 c0-0.488-0.378-0.852-0.847-0.919c1.739-0.7,2.961-2.327,3.167-4.26c0.162-0.12,0.313-0.23,0.489-0.363 c1.097-0.842,2.749-2.124,3.276-1.453c0.131,0.164,0.118,0.255,0.113,0.288c-0.06,0.39-0.893,0.95-1.562,1.399 c-1.053,0.707-2.142,1.441-2.228,2.481c-0.025,0.297,0.194,0.554,0.49,0.581c0.015,0,0.032,0,0.045,0 c0.277,0,0.512-0.213,0.535-0.491c0.043-0.527,0.993-1.165,1.757-1.677c0.973-0.657,1.892-1.273,2.024-2.127 C434.19,250.014,434.079,249.637,433.795,249.281z M424.237,251.231c-0.308-1.174-1.034-2.302-1.941-2.71 c0.48-0.247,0.819-0.734,0.819-1.311c0-0.822-0.667-1.49-1.49-1.49c-0.822,0-1.49,0.666-1.49,1.49c0,0.577,0.338,1.064,0.819,1.311 c-0.907,0.407-1.634,1.535-1.941,2.71h-3.065l5.353-7.905c0.111,0.026,0.218,0.068,0.339,0.068c0.12,0,0.227-0.042,0.339-0.068 l5.353,7.905H424.237z"/>
|
||||
<path style="fill:#FF4B55;" d="M411.071,271.635c0,0-0.324-1.119-0.036-2.13c0.289-1.011-0.455-1.938-0.613-2.815 c-0.433-2.382,1.588-2.996,1.696-5.124c0,0,1.443,1.48,0.903,2.888c-0.542,1.408,0.794,1.624,0.614,2.959s-1.661,2.743-1.516,3.934 L411.071,271.635z"/>
|
||||
<path style="fill:#FFE15A;" d="M433.795,269.374c-1.181-1.476-3.252,0.114-4.768,1.27c-0.211,0.162-0.39,0.286-0.577,0.422 l-5.592-8.258c0.157-0.236,0.27-0.503,0.27-0.807c0-0.823-0.666-1.49-1.49-1.49s-1.49,0.666-1.49,1.49 c0,0.305,0.114,0.572,0.27,0.807l-5.769,8.519h-4.085c0,0-0.169,2.539,4.291,2.847c0.575,0.871,1.395,1.564,2.377,1.956 c-0.461,0.075-0.833,0.431-0.833,0.914v0.597c0,0.038,0.036,0.06,0.04,0.097h10.391c0.004-0.036,0.04-0.058,0.04-0.097v-0.597 c0-0.488-0.378-0.852-0.847-0.919c1.739-0.7,2.961-2.327,3.167-4.26c0.162-0.12,0.313-0.23,0.489-0.363 c1.097-0.842,2.749-2.124,3.276-1.453c0.131,0.164,0.118,0.255,0.113,0.288c-0.06,0.389-0.893,0.95-1.562,1.399 c-1.053,0.707-2.142,1.441-2.228,2.481c-0.025,0.297,0.194,0.554,0.49,0.582c0.015,0,0.032,0,0.045,0 c0.277,0,0.512-0.213,0.535-0.491c0.043-0.527,0.993-1.165,1.757-1.677c0.973-0.657,1.892-1.273,2.024-2.127 C434.19,270.108,434.079,269.731,433.795,269.374z M424.237,271.325c-0.308-1.174-1.034-2.302-1.941-2.71 c0.48-0.247,0.819-0.734,0.819-1.311c0-0.822-0.667-1.49-1.49-1.49c-0.822,0-1.49,0.666-1.49,1.49c0,0.577,0.338,1.064,0.819,1.311 c-0.907,0.407-1.634,1.535-1.941,2.71h-3.065l5.353-7.905c0.111,0.026,0.218,0.068,0.339,0.068c0.12,0,0.227-0.042,0.339-0.068 l5.353,7.905H424.237z"/>
|
||||
<path style="fill:#FF4B55;" d="M411.071,291.729c0,0-0.324-1.119-0.036-2.13c0.289-1.011-0.455-1.938-0.613-2.815 c-0.433-2.382,1.588-2.996,1.696-5.124c0,0,1.443,1.48,0.903,2.888c-0.542,1.408,0.794,1.624,0.614,2.959 c-0.181,1.335-1.661,2.743-1.516,3.934L411.071,291.729z"/>
|
||||
<path style="fill:#FFE15A;" d="M433.795,289.467c-1.181-1.476-3.252,0.114-4.768,1.27c-0.211,0.162-0.39,0.286-0.577,0.422 l-5.592-8.258c0.157-0.236,0.27-0.503,0.27-0.807c0-0.823-0.666-1.49-1.49-1.49s-1.49,0.666-1.49,1.49 c0,0.305,0.114,0.572,0.27,0.807l-5.769,8.519h-4.085c0,0-0.169,2.539,4.291,2.847c0.575,0.871,1.395,1.564,2.377,1.956 c-0.461,0.075-0.833,0.431-0.833,0.914v0.597c0,0.038,0.036,0.06,0.04,0.097h10.391c0.004-0.036,0.04-0.058,0.04-0.097v-0.597 c0-0.488-0.378-0.852-0.847-0.919c1.739-0.7,2.961-2.327,3.167-4.26c0.162-0.12,0.313-0.23,0.489-0.363 c1.097-0.842,2.749-2.124,3.276-1.453c0.131,0.164,0.118,0.255,0.113,0.288c-0.06,0.39-0.893,0.95-1.562,1.399 c-1.053,0.707-2.142,1.441-2.228,2.481c-0.025,0.297,0.194,0.554,0.49,0.582c0.015,0,0.032,0,0.045,0 c0.277,0,0.512-0.213,0.535-0.491c0.043-0.527,0.993-1.165,1.757-1.677c0.973-0.657,1.892-1.273,2.024-2.127 C434.19,290.202,434.079,289.823,433.795,289.467z M424.237,291.419c-0.308-1.174-1.034-2.302-1.941-2.71 c0.48-0.247,0.819-0.734,0.819-1.311c0-0.822-0.667-1.49-1.49-1.49c-0.822,0-1.49,0.667-1.49,1.49c0,0.577,0.338,1.064,0.819,1.311 c-0.907,0.407-1.634,1.535-1.941,2.71h-3.065l5.353-7.905c0.111,0.026,0.218,0.068,0.339,0.068c0.12,0,0.227-0.042,0.339-0.068 l5.353,7.905H424.237z"/>
|
||||
<g>
|
||||
<path style="fill:#F5F5F5;" d="M445.546,171.125c0,0,0,74.795,0,105.393c0,23.798-57.796,47.597-57.796,47.597 s-57.796-23.798-57.796-47.597c0-30.599,0-105.393,0-105.393h57.796H445.546 M448.946,167.725h-3.4H387.75h-57.796h-3.4v3.4 v105.393c0,11.128,10.265,23.111,30.511,35.616c14.518,8.967,28.79,14.878,29.39,15.125l1.294,0.533l1.294-0.533 c0.6-0.247,14.872-6.158,29.39-15.125c20.246-12.505,30.511-24.488,30.511-35.616V171.125L448.946,167.725L448.946,167.725z"/>
|
||||
<path style="fill:#F5F5F5;" d="M449.437,295.262l15.412,10.629c-17.901,22.963-45.794,37.772-77.1,37.772 c-31.305,0-59.198-14.81-77.1-37.772l15.412-10.629c14.498,18.089,36.756,29.703,61.687,29.703 C412.681,324.965,434.939,313.351,449.437,295.262 M448.763,290.668l-1.978,2.468c-14.48,18.067-35.998,28.429-59.034,28.429 s-44.554-10.362-59.034-28.429l-1.978-2.468l-2.604,1.796l-15.412,10.629l-2.967,2.046l2.216,2.842 c19.363,24.836,48.442,39.082,79.78,39.082s60.418-14.244,79.78-39.082l2.216-2.842l-2.967-2.046l-15.412-10.629L448.763,290.668 L448.763,290.668z"/>
|
||||
</g>
|
||||
<path style="fill:#FFE15A;" d="M387.75,343.664c31.305,0,59.198-14.81,77.1-37.772l-15.412-10.629 c-14.498,18.089-36.756,29.703-61.687,29.703s-47.189-11.614-61.687-29.703l-15.412,10.629 C328.552,328.853,356.445,343.664,387.75,343.664z"/>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 18 KiB |
@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=mihomo
|
||||
PKG_VERSION:=1.18.7
|
||||
PKG_RELEASE:=22
|
||||
PKG_RELEASE:=23
|
||||
PKG_BUILD_TIME=$(shell date -u -Iseconds)
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
@ -25,7 +25,7 @@ define Package/mihomo
|
||||
CATEGORY:=Network
|
||||
TITLE:=A rule based proxy in Go.
|
||||
URL:=https://wiki.metacubex.one
|
||||
DEPENDS:=$(GO_ARCH_DEPENDS) +ca-bundle +curl +inotifywait +yq firewall4 +kmod-nft-tproxy
|
||||
DEPENDS:=$(GO_ARCH_DEPENDS) +ca-bundle +curl +inotifywait +yq firewall4 +kmod-nft-tproxy +ip-full +kmod-tun
|
||||
USERID:=mihomo=7890:mihomo=7890
|
||||
endef
|
||||
|
||||
@ -41,19 +41,27 @@ define Package/mihomo/install
|
||||
$(call GoPackage/Package/Install/Bin,$(1))
|
||||
|
||||
$(INSTALL_DIR) $(1)/etc/mihomo
|
||||
$(INSTALL_DIR) $(1)/etc/mihomo/scripts
|
||||
$(INSTALL_DIR) $(1)/etc/mihomo/nftables
|
||||
$(INSTALL_DIR) $(1)/etc/mihomo/profiles
|
||||
$(INSTALL_DIR) $(1)/etc/mihomo/run
|
||||
$(INSTALL_DIR) $(1)/etc/mihomo/run/rules
|
||||
$(INSTALL_DIR) $(1)/etc/mihomo/run/ui
|
||||
|
||||
$(INSTALL_BIN) $(CURDIR)/files/profile_watcher.sh $(1)/etc/mihomo/profile_watcher.sh
|
||||
$(INSTALL_BIN) $(CURDIR)/files/upnp_lease_watcher.sh $(1)/etc/mihomo/upnp_lease_watcher.sh
|
||||
$(INSTALL_BIN) $(CURDIR)/files/hijack.nft $(1)/etc/mihomo/hijack.nft
|
||||
$(INSTALL_BIN) $(CURDIR)/files/hijack6.nft $(1)/etc/mihomo/hijack6.nft
|
||||
$(INSTALL_BIN) $(CURDIR)/files/geoip-cn.nft $(1)/etc/mihomo/geoip-cn.nft
|
||||
$(INSTALL_BIN) $(CURDIR)/files/geoip6-cn.nft $(1)/etc/mihomo/geoip6-cn.nft
|
||||
$(INSTALL_DATA) $(CURDIR)/files/mixin.yaml $(1)/etc/mihomo/mixin.yaml
|
||||
|
||||
$(INSTALL_BIN) $(CURDIR)/files/scripts/constants.sh $(1)/etc/mihomo/scripts/constants.sh
|
||||
$(INSTALL_BIN) $(CURDIR)/files/scripts/profile_watcher.sh $(1)/etc/mihomo/scripts/profile_watcher.sh
|
||||
$(INSTALL_BIN) $(CURDIR)/files/scripts/upnp_watcher.sh $(1)/etc/mihomo/scripts/upnp_watcher.sh
|
||||
$(INSTALL_BIN) $(CURDIR)/files/scripts/tun.sh $(1)/etc/mihomo/scripts/tun.sh
|
||||
|
||||
$(INSTALL_BIN) $(CURDIR)/files/nftables/hijack.nft $(1)/etc/mihomo/nftables/hijack.nft
|
||||
$(INSTALL_BIN) $(CURDIR)/files/nftables/hijack6.nft $(1)/etc/mihomo/nftables/hijack6.nft
|
||||
$(INSTALL_BIN) $(CURDIR)/files/nftables/hijack_tun.nft $(1)/etc/mihomo/nftables/hijack_tun.nft
|
||||
$(INSTALL_BIN) $(CURDIR)/files/nftables/hijack6_tun.nft $(1)/etc/mihomo/nftables/hijack6_tun.nft
|
||||
$(INSTALL_BIN) $(CURDIR)/files/nftables/geoip_cn.nft $(1)/etc/mihomo/nftables/geoip_cn.nft
|
||||
$(INSTALL_BIN) $(CURDIR)/files/nftables/geoip6_cn.nft $(1)/etc/mihomo/nftables/geoip6_cn.nft
|
||||
|
||||
$(INSTALL_DIR) $(1)/etc/config
|
||||
$(INSTALL_CONF) $(CURDIR)/files/mihomo.conf $(1)/etc/config/mihomo
|
||||
|
||||
@ -61,8 +69,8 @@ define Package/mihomo/install
|
||||
$(INSTALL_BIN) $(CURDIR)/files/mihomo.init $(1)/etc/init.d/mihomo
|
||||
|
||||
$(INSTALL_DIR) $(1)/etc/uci-defaults
|
||||
$(INSTALL_BIN) $(CURDIR)/files/init.sh $(1)/etc/uci-defaults/99_init-mihomo
|
||||
$(INSTALL_BIN) $(CURDIR)/files/migrate.sh $(1)/etc/uci-defaults/99_migrate-mihomo
|
||||
$(INSTALL_BIN) $(CURDIR)/files/uci-defaults/init.sh $(1)/etc/uci-defaults/99_init_mihomo
|
||||
$(INSTALL_BIN) $(CURDIR)/files/uci-defaults/migrate.sh $(1)/etc/uci-defaults/99_migrate_mihomo
|
||||
|
||||
$(INSTALL_DIR) $(1)/etc/capabilities
|
||||
$(INSTALL_DATA) $(CURDIR)/files/capabilities.json $(1)/etc/capabilities/mihomo.json
|
||||
|
@ -7,9 +7,11 @@ config config 'config'
|
||||
option 'cron_expression' '0 3 * * *'
|
||||
option 'profile' 'http://example.com/default.yaml'
|
||||
option 'mixin' '1'
|
||||
option 'test_profile' '1'
|
||||
|
||||
config proxy 'proxy'
|
||||
option 'transparent_proxy' '1'
|
||||
option 'transparent_proxy_mode' 'tproxy'
|
||||
option 'ipv4_proxy' '1'
|
||||
option 'ipv6_proxy' '0'
|
||||
option 'router_proxy' '1'
|
||||
@ -52,6 +54,11 @@ config mixin 'mixin'
|
||||
option 'redir_port' '7891'
|
||||
option 'tproxy_port' '7892'
|
||||
option 'authentication' '1'
|
||||
option 'tun_stack' 'system'
|
||||
option 'tun_mtu' '9000'
|
||||
option 'tun_gso' '1'
|
||||
option 'tun_gso_max_size' '65536'
|
||||
option 'tun_endpoint_independent_nat' '0'
|
||||
option 'dns_port' '1053'
|
||||
option 'dns_mode' 'fake-ip'
|
||||
option 'fake_ip_range' '198.18.0.1/16'
|
||||
|
@ -3,27 +3,10 @@
|
||||
START=99
|
||||
USE_PROCD=1
|
||||
|
||||
# permission
|
||||
mihomo_user="mihomo"
|
||||
mihomo_group="mihomo"
|
||||
|
||||
# routing
|
||||
fw_table=80
|
||||
fw_mark=80
|
||||
|
||||
# paths
|
||||
home_dir="/etc/mihomo"
|
||||
run_dir="$home_dir/run"
|
||||
run_app_log_path="$run_dir/app.log"
|
||||
run_core_log_path="$run_dir/core.log"
|
||||
run_profile_path="$run_dir/config.yaml"
|
||||
run_ui_dir="$run_dir/ui"
|
||||
mixin_path="$home_dir/mixin.yaml"
|
||||
profile_watcher="$home_dir/profile_watcher.sh"
|
||||
upnp_lease_watcher="$home_dir/upnp_lease_watcher.sh"
|
||||
. $IPKG_INSTROOT/lib/functions/network.sh
|
||||
. $IPKG_INSTROOT/etc/mihomo/scripts/constants.sh
|
||||
|
||||
start_service() {
|
||||
. /lib/functions/network.sh
|
||||
# clear log
|
||||
clear_all_log
|
||||
# load config
|
||||
@ -38,11 +21,87 @@ start_service() {
|
||||
fi
|
||||
log "App is enabled."
|
||||
log "Starting..."
|
||||
# get config
|
||||
## app config
|
||||
local scheduled_restart cron_expression profile mixin test_profile
|
||||
config_get scheduled_restart "config" "scheduled_restart"
|
||||
config_get cron_expression "config" "cron_expression"
|
||||
config_get profile "config" "profile"
|
||||
config_get_bool mixin "config" "mixin" 0
|
||||
config_get_bool test_profile "config" "test_profile" 0
|
||||
## mixin config
|
||||
### general
|
||||
local mode match_process outbound_interface unify_delay tcp_concurrent tcp_keep_alive_interval log_level
|
||||
config_get mode "mixin" "mode"
|
||||
config_get match_process "mixin" "match_process"
|
||||
config_get outbound_interface "mixin" "outbound_interface"
|
||||
config_get_bool unify_delay "mixin" "unify_delay" 0
|
||||
config_get_bool tcp_concurrent "mixin" "tcp_concurrent" 0
|
||||
config_get tcp_keep_alive_interval "mixin" "tcp_keep_alive_interval" 600
|
||||
config_get log_level "mixin" "log_level"
|
||||
#### api
|
||||
local api_port api_secret selection_cache
|
||||
config_get api_port "mixin" "api_port" "9090"
|
||||
config_get api_secret "mixin" "api_secret" "666666"
|
||||
config_get_bool selection_cache "mixin" "selection_cache" 0
|
||||
### inbound
|
||||
local allow_lan http_port socks_port mixed_port redir_port tproxy_port authentication
|
||||
config_get_bool allow_lan "mixin" "allow_lan" 0
|
||||
config_get http_port "mixin" "http_port" "8080"
|
||||
config_get socks_port "mixin" "socks_port" "1080"
|
||||
config_get mixed_port "mixin" "mixed_port" "7890"
|
||||
config_get redir_port "mixin" "redir_port" "7891"
|
||||
config_get tproxy_port "mixin" "tproxy_port" "7892"
|
||||
config_get_bool authentication "mixin" "authentication" 0
|
||||
### tun
|
||||
local tun_stack tun_mtu tun_gso tun_gso_max_size tun_endpoint_independent_nat
|
||||
config_get tun_stack "mixin" "tun_stack"
|
||||
config_get tun_mtu "mixin" "tun_mtu" "9000"
|
||||
config_get_bool tun_gso "mixin" "tun_gso" 0
|
||||
config_get tun_gso_max_size "mixin" "tun_gso_max_size" "65536"
|
||||
config_get_bool tun_endpoint_independent_nat "mixin" "tun_endpoint_independent_nat" 0
|
||||
### dns
|
||||
local dns_port dns_mode fake_ip_range fake_ip_cache fake_ip_filter dns_system_hosts dns_hosts dns_nameserver dns_fallback_filter dns_nameserver_policy
|
||||
config_get dns_port "mixin" "dns_port" "1053"
|
||||
config_get dns_mode "mixin" "dns_mode"
|
||||
config_get fake_ip_range "mixin" "fake_ip_range" "198.18.0.1/16"
|
||||
config_get_bool fake_ip_cache "mixin" "fake_ip_cache" 0
|
||||
config_get_bool fake_ip_filter "mixin" "fake_ip_filter" 0
|
||||
config_get_bool dns_system_hosts "mixin" "dns_system_hosts" 0
|
||||
config_get_bool dns_hosts "mixin" "dns_hosts" 0
|
||||
config_get_bool dns_nameserver "mixin" "dns_nameserver" 0
|
||||
config_get_bool dns_fallback_filter "mixin" "dns_fallback_filter" 0
|
||||
config_get_bool dns_nameserver_policy "mixin" "dns_nameserver_policy" 0
|
||||
### sniffer
|
||||
local sniffer sniff_dns_mapping sniff_pure_ip sniffer_overwrite_dest
|
||||
config_get_bool sniffer "mixin" "sniffer" 0
|
||||
config_get_bool sniff_dns_mapping "mixin" "sniff_dns_mapping" 0
|
||||
config_get_bool sniff_pure_ip "mixin" "sniff_pure_ip" 0
|
||||
config_get_bool sniffer_overwrite_dest "mixin" "sniffer_overwrite_dest" 0
|
||||
### geox
|
||||
local geoip_format geodata_loader geoip_mmdb_url geoip_dat_url geosite_url geox_auto_update geox_update_interval
|
||||
config_get geoip_format "mixin" "geoip_format"
|
||||
config_get geodata_loader "mixin" "geodata_loader"
|
||||
config_get geoip_mmdb_url "mixin" "geoip_mmdb_url"
|
||||
config_get geoip_dat_url "mixin" "geoip_dat_url"
|
||||
config_get geosite_url "mixin" "geosite_url"
|
||||
config_get_bool geox_auto_update "mixin" "geox_auto_update" 0
|
||||
config_get geox_update_interval "mixin" "geox_update_interval" "24"
|
||||
## proxy config
|
||||
local transparent_proxy transparent_proxy_mode ipv4_proxy ipv6_proxy router_proxy access_control_mode dns_hijack bypass_china_mainland_ip acl_tcp_dport acl_udp_dport
|
||||
config_get_bool transparent_proxy "proxy" "transparent_proxy" 0
|
||||
config_get transparent_proxy_mode "proxy" "transparent_proxy_mode"
|
||||
config_get_bool ipv4_proxy "proxy" "ipv4_proxy" 0
|
||||
config_get_bool ipv6_proxy "proxy" "ipv6_proxy" 0
|
||||
config_get_bool router_proxy "proxy" "router_proxy" 0
|
||||
config_get access_control_mode "proxy" "access_control_mode"
|
||||
config_get_bool dns_hijack "proxy" "dns_hijack" 0
|
||||
config_get_bool bypass_china_mainland_ip "proxy" "bypass_china_mainland_ip" 0
|
||||
config_get acl_tcp_dport "proxy" "acl_tcp_dport" "1-65535"
|
||||
config_get acl_udp_dport "proxy" "acl_udp_dport" "1-65535"
|
||||
# download profile
|
||||
log "Download profile."
|
||||
local profile
|
||||
config_get profile "config" "profile"
|
||||
curl -s -L -o "$run_profile_path" "$profile"
|
||||
curl -s -L -o "$RUN_PROFILE_PATH" "$profile"
|
||||
# download ui
|
||||
log "Download UI."
|
||||
local ui_razord ui_razord_url ui_yacd ui_yacd_url ui_metacubexd ui_metacubexd_url
|
||||
@ -52,107 +111,32 @@ start_service() {
|
||||
config_get ui_yacd_url "mixin" "ui_yacd_url"
|
||||
config_get_bool ui_metacubexd "mixin" "ui_metacubexd" 0
|
||||
config_get ui_metacubexd_url "mixin" "ui_metacubexd_url"
|
||||
download_ui "$ui_razord" "$ui_razord_url" "$run_ui_dir" "Razord-meta-gh-pages" "razord"
|
||||
download_ui "$ui_yacd" "$ui_yacd_url" "$run_ui_dir" "Yacd-meta-gh-pages" "yacd"
|
||||
download_ui "$ui_metacubexd" "$ui_metacubexd_url" "$run_ui_dir" "metacubexd-gh-pages" "metacubexd"
|
||||
download_ui "$ui_razord" "$ui_razord_url" "$RUN_UI_DIR" "Razord-meta-gh-pages" "razord"
|
||||
download_ui "$ui_yacd" "$ui_yacd_url" "$RUN_UI_DIR" "Yacd-meta-gh-pages" "yacd"
|
||||
download_ui "$ui_metacubexd" "$ui_metacubexd_url" "$RUN_UI_DIR" "metacubexd-gh-pages" "metacubexd"
|
||||
# mixin
|
||||
local mixin
|
||||
config_get_bool mixin "config" "mixin" 1
|
||||
if [ "$mixin" == 0 ]; then
|
||||
log "Mixin is disabled, only mixin neccesary config."
|
||||
# general
|
||||
local outbound_interface log_level
|
||||
config_get outbound_interface "mixin" "outbound_interface"
|
||||
config_get log_level "mixin" "log_level"
|
||||
# api
|
||||
local api_port api_secret
|
||||
config_get api_port "mixin" "api_port" "9090"
|
||||
config_get api_secret "mixin" "api_secret"
|
||||
# inbound
|
||||
local http_port socks_port mixed_port redir_port tproxy_port
|
||||
config_get http_port "mixin" "http_port" "8080"
|
||||
config_get socks_port "mixin" "socks_port" "1080"
|
||||
config_get mixed_port "mixin" "mixed_port" "7890"
|
||||
config_get redir_port "mixin" "redir_port" "7891"
|
||||
config_get tproxy_port "mixin" "tproxy_port" "7892"
|
||||
# dns
|
||||
local dns_port
|
||||
config_get dns_port "mixin" "dns_port" "1053"
|
||||
# do mixin
|
||||
log_level="$log_level" \
|
||||
ui_path="ui" api_listen="0.0.0.0:$api_port" api_secret="$api_secret" \
|
||||
http_port="$http_port" socks_port="$socks_port" mixed_port="$mixed_port" redir_port="$redir_port" tproxy_port="$tproxy_port" \
|
||||
tun_stack="$tun_stack" tun_device="$TUN_DEVICE" tun_mtu="$tun_mtu" tun_gso="$tun_gso" tun_gso_max_size="$tun_gso_max_size" tun_endpoint_independent_nat="$tun_endpoint_independent_nat" \
|
||||
dns_enable="true" dns_listen="0.0.0.0:$dns_port" \
|
||||
yq -M -i '
|
||||
.log-level = env(log_level) |
|
||||
.external-ui = env(ui_path) | .external-controller = env(api_listen) | .secret = env(api_secret) |
|
||||
.port = env(http_port) | .socks-port = env(socks_port) | .mixed-port = env(mixed_port) | .redir-port = env(redir_port) | .tproxy-port = env(tproxy_port) |
|
||||
.tun.stack = env(tun_stack) | .tun.device = env(tun_device) | .tun.mtu = env(tun_mtu) | .tun.gso = env(tun_gso) == 1 | .tun.gso-max-size = env(tun_gso_max_size) | .tun.endpoint-independent-nat = env(tun_endpoint_independent_nat) == 1 |
|
||||
.dns.enable = env(dns_enable) | .dns.listen = env(dns_listen)
|
||||
' "$run_profile_path"
|
||||
|
||||
if [ -n "$outbound_interface" ]; then
|
||||
local outbound_device
|
||||
network_get_device outbound_device "$outbound_interface"
|
||||
if [ -n "$outbound_device" ]; then
|
||||
outbound_device="$outbound_device" yq -M -i '.interface-name = env(outbound_device)' "$run_profile_path"
|
||||
fi
|
||||
fi
|
||||
' "$RUN_PROFILE_PATH"
|
||||
else
|
||||
log "Mixin is enabled, mixin all config."
|
||||
# general
|
||||
local mode match_process outbound_interface unify_delay tcp_concurrent tcp_keep_alive_interval log_level
|
||||
config_get mode "mixin" "mode"
|
||||
config_get match_process "mixin" "match_process"
|
||||
config_get outbound_interface "mixin" "outbound_interface"
|
||||
config_get_bool unify_delay "mixin" "unify_delay" 0
|
||||
config_get_bool tcp_concurrent "mixin" "tcp_concurrent" 0
|
||||
config_get tcp_keep_alive_interval "mixin" "tcp_keep_alive_interval" 600
|
||||
config_get log_level "mixin" "log_level"
|
||||
# api
|
||||
local api_port api_secret selection_cache
|
||||
config_get api_port "mixin" "api_port" "9090"
|
||||
config_get api_secret "mixin" "api_secret" "666666"
|
||||
config_get_bool selection_cache "mixin" "selection_cache" 0
|
||||
# inbound
|
||||
local allow_lan http_port socks_port mixed_port redir_port tproxy_port authentication
|
||||
config_get_bool allow_lan "mixin" "allow_lan" 0
|
||||
config_get http_port "mixin" "http_port" "8080"
|
||||
config_get socks_port "mixin" "socks_port" "1080"
|
||||
config_get mixed_port "mixin" "mixed_port" "7890"
|
||||
config_get redir_port "mixin" "redir_port" "7891"
|
||||
config_get tproxy_port "mixin" "tproxy_port" "7892"
|
||||
config_get_bool authentication "mixin" "authentication" 0
|
||||
# dns
|
||||
local dns_port dns_mode fake_ip_range fake_ip_cache fake_ip_filter dns_system_hosts dns_hosts dns_nameserver dns_fallback_filter dns_nameserver_policy
|
||||
config_get dns_port "mixin" "dns_port" "1053"
|
||||
config_get dns_mode "mixin" "dns_mode"
|
||||
config_get fake_ip_range "mixin" "fake_ip_range" "198.18.0.1/16"
|
||||
config_get_bool fake_ip_cache "mixin" "fake_ip_cache" 0
|
||||
config_get_bool fake_ip_filter "mixin" "fake_ip_filter" 0
|
||||
config_get_bool dns_system_hosts "mixin" "dns_system_hosts" 0
|
||||
config_get_bool dns_hosts "mixin" "dns_hosts" 0
|
||||
config_get_bool dns_nameserver "mixin" "dns_nameserver" 0
|
||||
config_get_bool dns_fallback_filter "mixin" "dns_fallback_filter" 0
|
||||
config_get_bool dns_nameserver_policy "mixin" "dns_nameserver_policy" 0
|
||||
# sniffer
|
||||
local sniffer sniff_dns_mapping sniff_pure_ip sniffer_overwrite_dest
|
||||
config_get_bool sniffer "mixin" "sniffer" 0
|
||||
config_get_bool sniff_dns_mapping "mixin" "sniff_dns_mapping" 0
|
||||
config_get_bool sniff_pure_ip "mixin" "sniff_pure_ip" 0
|
||||
config_get_bool sniffer_overwrite_dest "mixin" "sniffer_overwrite_dest" 0
|
||||
# geox
|
||||
local geoip_format geodata_loader geoip_mmdb_url geoip_dat_url geosite_url geox_auto_update geox_update_interval
|
||||
config_get geoip_format "mixin" "geoip_format"
|
||||
config_get geodata_loader "mixin" "geodata_loader"
|
||||
config_get geoip_mmdb_url "mixin" "geoip_mmdb_url"
|
||||
config_get geoip_dat_url "mixin" "geoip_dat_url"
|
||||
config_get geosite_url "mixin" "geosite_url"
|
||||
config_get_bool geox_auto_update "mixin" "geox_auto_update" 0
|
||||
config_get geox_update_interval "mixin" "geox_update_interval" "24"
|
||||
# do mixin
|
||||
mode="$mode" match_process="$match_process" unify_delay="$unify_delay" tcp_concurrent="$tcp_concurrent" tcp_keep_alive_interval="$tcp_keep_alive_interval" log_level="$log_level" \
|
||||
ui_path="ui" api_listen="0.0.0.0:$api_port" api_secret="$api_secret" selection_cache="$selection_cache" \
|
||||
allow_lan="$allow_lan" http_port="$http_port" socks_port="$socks_port" mixed_port="$mixed_port" redir_port="$redir_port" tproxy_port="$tproxy_port" \
|
||||
tun_stack="$tun_stack" tun_device="$TUN_DEVICE" tun_mtu="$tun_mtu" tun_gso="$tun_gso" tun_gso_max_size="$tun_gso_max_size" tun_endpoint_independent_nat="$tun_endpoint_independent_nat" \
|
||||
dns_enable="true" dns_listen="0.0.0.0:$dns_port" dns_mode="$dns_mode" fake_ip_range="$fake_ip_range" fake_ip_cache="$fake_ip_cache" \
|
||||
dns_system_hosts="$dns_system_hosts" dns_hosts="$dns_hosts" \
|
||||
sniffer="$sniffer" sniff_dns_mapping="$sniff_dns_mapping" sniff_pure_ip="$sniff_pure_ip" sniffer_overwrite_dest="$sniffer_overwrite_dest" \
|
||||
@ -162,125 +146,136 @@ start_service() {
|
||||
.mode = env(mode) | .find-process-mode = env(match_process) | .unified-delay = env(unify_delay) == 1 | .tcp-concurrent = env(tcp_concurrent) == 1 | .keep-alive-interval = env(tcp_keep_alive_interval) | .log-level = env(log_level) |
|
||||
.external-ui = env(ui_path) | .external-controller = env(api_listen) | .secret = env(api_secret) | .profile.store-selected = env(selection_cache) == 1 |
|
||||
.allow-lan = env(allow_lan) == 1 | .port = env(http_port) | .socks-port = env(socks_port) | .mixed-port = env(mixed_port) | .redir-port = env(redir_port) | .tproxy-port = env(tproxy_port) |
|
||||
.tun.stack = env(tun_stack) | .tun.device = env(tun_device) | .tun.mtu = env(tun_mtu) | .tun.gso = env(tun_gso) == 1 | .tun.gso-max-size = env(tun_gso_max_size) | .tun.endpoint-independent-nat = env(tun_endpoint_independent_nat) == 1 |
|
||||
.dns.enable = env(dns_enable) | .dns.listen = env(dns_listen) | .dns.enhanced-mode = env(dns_mode) | .dns.fake-ip-range = env(fake_ip_range) | .profile.store-fake-ip = env(fake_ip_cache) == 1 |
|
||||
.dns.use-system-hosts = env(dns_system_hosts) == 1 | .dns.use-hosts = env(dns_hosts) == 1 |
|
||||
.sniffer.enable = env(sniffer) == 1 | .sniffer.force-dns-mapping = env(sniff_dns_mapping) == 1 | .sniffer.parse-pure-ip = env(sniff_pure_ip) == 1 | .sniffer.override-destination = env(sniffer_overwrite_dest) == 1 |
|
||||
.geodata-mode = env(geoip_format) == "dat" | .geodata-loader = env(geodata_loader) | .geox-url.mmdb = env(geoip_mmdb_url) | .geox-url.geoip = env(geoip_dat_url) | .geox-url.geosite = env(geosite_url) |
|
||||
.geo-auto-update = env(geox_auto_update) == 1 | .geo-update-interval = env(geox_update_interval)
|
||||
' "$run_profile_path"
|
||||
' "$RUN_PROFILE_PATH"
|
||||
|
||||
if [ -n "$outbound_interface" ]; then
|
||||
local outbound_device
|
||||
network_get_device outbound_device "$outbound_interface"
|
||||
if [ -n "$outbound_device" ]; then
|
||||
outbound_device="$outbound_device" yq -M -i '.interface-name = env(outbound_device)' "$run_profile_path"
|
||||
fi
|
||||
fi
|
||||
if [ "$authentication" == 1 ]; then
|
||||
yq -M -i 'del(.authentication)' "$run_profile_path"
|
||||
yq -M -i 'del(.authentication)' "$RUN_PROFILE_PATH"
|
||||
config_foreach mixin_authentication "authentication"
|
||||
fi
|
||||
if [ "$fake_ip_filter" == 1 ]; then
|
||||
yq -M -i 'del(.dns.fake-ip-filter)' "$run_profile_path"
|
||||
yq -M -i 'del(.dns.fake-ip-filter)' "$RUN_PROFILE_PATH"
|
||||
config_list_foreach "mixin" "fake_ip_filters" mixin_fake_ip_filter
|
||||
fi
|
||||
if [ "$dns_hosts" == 1 ]; then
|
||||
yq -M -i 'del(.hosts)' "$run_profile_path"
|
||||
yq -M -i 'del(.hosts)' "$RUN_PROFILE_PATH"
|
||||
config_foreach mixin_host "host"
|
||||
fi
|
||||
if [ "$dns_nameserver" == 1 ]; then
|
||||
yq -M -i 'del(.dns.default-nameserver) | del(.dns.proxy-server-nameserver) | del(.dns.nameserver) | del(.dns.fallback)' "$run_profile_path"
|
||||
yq -M -i 'del(.dns.default-nameserver) | del(.dns.proxy-server-nameserver) | del(.dns.nameserver) | del(.dns.fallback)' "$RUN_PROFILE_PATH"
|
||||
config_foreach mixin_nameserver "nameserver"
|
||||
fi
|
||||
if [ "$dns_fallback_filter" == 1 ]; then
|
||||
yq -M -i '.dns.fallback-filter.geoip = true | del(.dns.fallback-filter.geoip-code) | del(.dns.fallback-filter.geosite) | del(.dns.fallback-filter.ipcidr) | del(.dns.fallback-filter.domain)' "$run_profile_path"
|
||||
yq -M -i '.dns.fallback-filter.geoip = true | del(.dns.fallback-filter.geoip-code) | del(.dns.fallback-filter.geosite) | del(.dns.fallback-filter.ipcidr) | del(.dns.fallback-filter.domain)' "$RUN_PROFILE_PATH"
|
||||
config_foreach mixin_fallback_filter "fallback_filter"
|
||||
fi
|
||||
if [ "$dns_nameserver_policy" == 1 ]; then
|
||||
yq -M -i 'del(.dns.nameserver-policy)' "$run_profile_path"
|
||||
yq -M -i 'del(.dns.nameserver-policy)' "$RUN_PROFILE_PATH"
|
||||
config_foreach mixin_nameserver_policy "nameserver_policy"
|
||||
fi
|
||||
if [ "$sniffer" == 1 ]; then
|
||||
yq -M -i 'del(.sniffer.force-domain) | del(.sniffer.skip-domain) | del(.sniffer.sniff)' "$run_profile_path"
|
||||
yq -M -i 'del(.sniffer.force-domain) | del(.sniffer.skip-domain) | del(.sniffer.sniff)' "$RUN_PROFILE_PATH"
|
||||
config_list_foreach "mixin" "sniffer_force_domain_name" mixin_sniffer_domain_name "force-domain"
|
||||
config_list_foreach "mixin" "sniffer_ignore_domain_name" mixin_sniffer_domain_name "skip-domain"
|
||||
config_foreach mixin_sniff "sniff"
|
||||
fi
|
||||
# mixin file
|
||||
if [ -s "$mixin_path" ]; then
|
||||
yq ea -M -i 'select(fi == 0) * select(fi == 1)' "$run_profile_path" "$mixin_path"
|
||||
if [ -s "$MIXIN_FILE_PATH" ]; then
|
||||
yq ea -M -i 'select(fi == 0) * select(fi == 1)' "$RUN_PROFILE_PATH" "$MIXIN_FILE_PATH"
|
||||
fi
|
||||
fi
|
||||
if [ "$transparent_proxy_mode" == "tproxy" ]; then
|
||||
yq -M -i '.tun.enable = false' "$RUN_PROFILE_PATH"
|
||||
elif [ "$transparent_proxy_mode" == "tun" ]; then
|
||||
yq -M -i '.tun.enable = true | .tun.auto-route = false | .tun.auto-redirect = false' "$RUN_PROFILE_PATH"
|
||||
fi
|
||||
if [ -n "$outbound_interface" ]; then
|
||||
local outbound_device
|
||||
network_get_device outbound_device "$outbound_interface"
|
||||
if [ -n "$outbound_device" ]; then
|
||||
outbound_device="$outbound_device" yq -M -i '.interface-name = env(outbound_device)' "$RUN_PROFILE_PATH"
|
||||
fi
|
||||
fi
|
||||
yq -M -i 'del(.tun)' "$run_profile_path"
|
||||
# test profile
|
||||
log "Profile testing..."
|
||||
if (/usr/bin/mihomo -d "$run_dir" -t >> "$run_core_log_path" 2>&1); then
|
||||
log "Profile test passed!"
|
||||
else
|
||||
log "Profile test failed! Exiting..."
|
||||
return
|
||||
if [ "$test_profile" == 1 ]; then
|
||||
log "Profile testing..."
|
||||
if ($PROG -d "$RUN_DIR" -t >> "$RUN_CORE_LOG_PATH" 2>&1); then
|
||||
log "Profile test passed!"
|
||||
else
|
||||
log "Profile test failed! Exiting..."
|
||||
return
|
||||
fi
|
||||
fi
|
||||
# start core
|
||||
procd_open_instance core
|
||||
|
||||
procd_set_param command /bin/sh -c "/usr/bin/mihomo -d $run_dir >> $run_core_log_path 2>&1"
|
||||
procd_set_param file "$run_profile_path"
|
||||
procd_set_param command /bin/sh -c "$PROG -d $RUN_DIR >> $RUN_CORE_LOG_PATH 2>&1"
|
||||
procd_set_param file "$RUN_PROFILE_PATH"
|
||||
procd_set_param reload_signal HUP
|
||||
procd_set_param respawn
|
||||
|
||||
procd_add_jail core procfs
|
||||
procd_add_jail_mount /usr/bin/mihomo
|
||||
procd_add_jail_mount "$PROG"
|
||||
procd_add_jail_mount /etc/TZ /etc/hosts /etc/ssl/certs
|
||||
procd_add_jail_mount_rw "$run_dir"
|
||||
procd_add_jail_mount_rw "$RUN_DIR"
|
||||
procd_add_jail_mount_rw /dev/net
|
||||
procd_set_param capabilities /etc/capabilities/mihomo.json
|
||||
procd_set_param user "$mihomo_user"
|
||||
procd_set_param group "$mihomo_group"
|
||||
procd_set_param user "$MIHOMO_USER"
|
||||
procd_set_param group "$MIHOMO_GROUP"
|
||||
procd_set_param no_new_privs 1
|
||||
|
||||
procd_close_instance
|
||||
# start profile watcher
|
||||
procd_open_instance profile_watcher
|
||||
procd_set_param command /bin/sh -c "$profile_watcher"
|
||||
procd_set_param command /bin/sh -c "$PROFILE_WATCHER_SH"
|
||||
procd_set_param respawn 3600 5 0
|
||||
procd_close_instance
|
||||
# hijack
|
||||
local transparent_proxy ipv4_proxy ipv6_proxy
|
||||
config_get_bool transparent_proxy "proxy" "transparent_proxy" 0
|
||||
config_get_bool ipv4_proxy "proxy" "ipv4_proxy" 0
|
||||
config_get_bool ipv6_proxy "proxy" "ipv6_proxy" 0
|
||||
if [ "$transparent_proxy" == 1 ]; then
|
||||
log "Transparent Proxy is enabled."
|
||||
# transparent proxy
|
||||
log "Transparent Proxy: Start hijack."
|
||||
ip rule add fwmark "$fw_mark" table "$fw_table"
|
||||
ip route add local default dev lo table "$fw_table"
|
||||
if [ "$ipv4_proxy" == 1 ]; then
|
||||
nft -f "$home_dir/hijack.nft" -D FW_MARK="$fw_mark" -D MIHOMO_USER="$mihomo_user" -D TPROXY_PORT="$tproxy_port" -D DNS_PORT="$dns_port"
|
||||
fi
|
||||
if [ "$ipv6_proxy" == 1 ]; then
|
||||
nft -f "$home_dir/hijack6.nft" -D FW_MARK="$fw_mark" -D MIHOMO_USER="$mihomo_user" -D TPROXY_PORT="$tproxy_port" -D DNS_PORT="$dns_port"
|
||||
if [ "$transparent_proxy_mode" == "tproxy" ]; then
|
||||
ip route add local default dev lo table "$FW_TABLE"
|
||||
ip rule add fwmark "$FW_MARK" table "$FW_TABLE"
|
||||
if [ "$ipv4_proxy" == 1 ]; then
|
||||
nft -f "$HIJACK_NFT" -D FW_MARK="$FW_MARK" -D MIHOMO_USER="$MIHOMO_USER" -D TPROXY_PORT="$tproxy_port" -D DNS_PORT="$dns_port"
|
||||
fi
|
||||
if [ "$ipv6_proxy" == 1 ]; then
|
||||
nft -f "$HIJACK6_NFT" -D FW_MARK="$FW_MARK" -D MIHOMO_USER="$MIHOMO_USER" -D TPROXY_PORT="$tproxy_port" -D DNS_PORT="$dns_port"
|
||||
fi
|
||||
elif [ "$transparent_proxy_mode" == "tun" ]; then
|
||||
ip tuntap add dev "$TUN_DEVICE" mode tun vnet_hdr
|
||||
ip link set "$TUN_DEVICE" up
|
||||
ip route add unicast default dev "$TUN_DEVICE" table "$FW_TABLE"
|
||||
ip rule add fwmark "$FW_MARK" table "$FW_TABLE"
|
||||
$TUN_SH
|
||||
if [ "$ipv4_proxy" == 1 ]; then
|
||||
nft -f "$HIJACK_TUN_NFT" -D FW_MARK="$FW_MARK" -D TUN_DEVICE="$TUN_DEVICE" -D MIHOMO_USER="$MIHOMO_USER" -D TPROXY_PORT="$tproxy_port" -D DNS_PORT="$dns_port"
|
||||
fi
|
||||
if [ "$ipv6_proxy" == 1 ]; then
|
||||
nft -f "$HIJACK6_TUN_NFT" -D FW_MARK="$FW_MARK" -D TUN_DEVICE="$TUN_DEVICE" -D MIHOMO_USER="$MIHOMO_USER" -D TPROXY_PORT="$tproxy_port" -D DNS_PORT="$dns_port"
|
||||
fi
|
||||
fi
|
||||
# dns hijack
|
||||
local dns_hijack
|
||||
config_get_bool dns_hijack "proxy" "dns_hijack" 0
|
||||
if [ "$dns_hijack" == 0 ]; then
|
||||
log "DNS Hijack is disabled, dns request will not redirect to the core."
|
||||
fi
|
||||
# bypass china mainland ip
|
||||
local bypass_china_mainland_ip
|
||||
config_get_bool bypass_china_mainland_ip "proxy" "bypass_china_mainland_ip" 0
|
||||
if [ "$bypass_china_mainland_ip" == 1 ]; then
|
||||
log "Transparent Proxy: Bypass china mainland ip is enabled."
|
||||
if [ "$ipv4_proxy" == 1 ]; then
|
||||
nft -f "$home_dir/geoip-cn.nft"
|
||||
nft -f "$GEOIP_CN_NFT"
|
||||
fi
|
||||
if [ "$ipv6_proxy" == 1 ]; then
|
||||
nft -f "$home_dir/geoip6-cn.nft"
|
||||
nft -f "$GEOIP6_CN_NFT"
|
||||
fi
|
||||
fi
|
||||
# destination port to proxy
|
||||
config_get acl_tcp_dport "proxy" "acl_tcp_dport" "1-65535"
|
||||
config_get acl_udp_dport "proxy" "acl_udp_dport" "1-65535"
|
||||
log "Transparent Proxy: Destination TCP Port to Proxy: $acl_tcp_dport."
|
||||
log "Transparent Proxy: Destination UDP Port to Proxy: $acl_udp_dport."
|
||||
nft add element ip mihomo fake_ip \{ "$fake_ip_range" \}
|
||||
@ -315,8 +310,6 @@ start_service() {
|
||||
# reload config
|
||||
config_load mihomo
|
||||
# router proxy
|
||||
local router_proxy
|
||||
config_get_bool router_proxy "proxy" "router_proxy" 0
|
||||
if [ "$router_proxy" == 1 ]; then
|
||||
log "Transparent Proxy: Router Proxy is enabled, set proxy for router."
|
||||
if [ "$ipv4_proxy" == 1 ]; then
|
||||
@ -333,8 +326,6 @@ start_service() {
|
||||
fi
|
||||
fi
|
||||
# access control
|
||||
local access_control_mode
|
||||
config_get access_control_mode "proxy" "access_control_mode"
|
||||
if [ "$access_control_mode" == "all" ]; then
|
||||
log "Transparent Proxy: Access Control is using all mode, set proxy for all client."
|
||||
elif [ "$access_control_mode" == "allow" ]; then
|
||||
@ -362,9 +353,6 @@ start_service() {
|
||||
fi
|
||||
fi
|
||||
# cron
|
||||
local scheduled_restart cron_expression
|
||||
config_get scheduled_restart "config" "scheduled_restart"
|
||||
config_get cron_expression "config" "cron_expression"
|
||||
if [[ "$scheduled_restart" == 1 && -n "$cron_expression" ]]; then
|
||||
log "Add crontab for scheduled restart."
|
||||
echo "$cron_expression /etc/init.d/mihomo restart #mihomo" >> "/etc/crontabs/root"
|
||||
@ -372,7 +360,7 @@ start_service() {
|
||||
log "Start Successful!"
|
||||
}
|
||||
|
||||
stop_service() {
|
||||
service_stopped() {
|
||||
cleanup
|
||||
}
|
||||
|
||||
@ -386,6 +374,7 @@ service_triggers() {
|
||||
|
||||
config_load mihomo
|
||||
config_list_foreach "proxy" "wan_interfaces" add_reload_interface_trigger
|
||||
config_list_foreach "proxy" "wan6_interfaces" add_reload_interface_trigger
|
||||
}
|
||||
|
||||
add_reload_interface_trigger() {
|
||||
@ -394,29 +383,39 @@ add_reload_interface_trigger() {
|
||||
|
||||
cleanup() {
|
||||
# delete hijack
|
||||
ip rule del table $fw_table > /dev/null 2>&1
|
||||
ip route del local default dev lo table "$fw_table" > /dev/null 2>&1
|
||||
ip rule del table "$FW_TABLE" > /dev/null 2>&1
|
||||
ip route flush table "$FW_TABLE" > /dev/null 2>&1
|
||||
ip tuntap del dev "$TUN_DEVICE" mode tun > /dev/null 2>&1
|
||||
nft delete table ip mihomo > /dev/null 2>&1
|
||||
nft delete table ip6 mihomo > /dev/null 2>&1
|
||||
local handles handle
|
||||
handles=$(nft --json list table inet fw4 | yq '.nftables[] | select(has("rule")) | .rule | select(.family == "inet" and .table == "fw4" and .chain == "input" and .expr[0].match.right == "tun") | .handle')
|
||||
for handle in $handles; do
|
||||
nft delete rule inet fw4 input handle "$handle"
|
||||
done
|
||||
handles=$(nft --json list table inet fw4 | yq '.nftables[] | select(has("rule")) | .rule | select(.family == "inet" and .table == "fw4" and .chain == "forward" and .expr[0].match.right == "tun") | .handle')
|
||||
for handle in $handles; do
|
||||
nft delete rule inet fw4 forward handle "$handle"
|
||||
done
|
||||
# delete cron
|
||||
sed -i '/#mihomo/d' "/etc/crontabs/root" > /dev/null 2>&1
|
||||
}
|
||||
|
||||
log() {
|
||||
echo "[$(date '+%Y-%m-%d %H:%M:%S')] $1" >> "$run_app_log_path"
|
||||
echo "[$(date '+%Y-%m-%d %H:%M:%S')] $1" >> "$RUN_APP_LOG_PATH"
|
||||
}
|
||||
|
||||
clear_all_log() {
|
||||
echo -n > "$run_app_log_path"
|
||||
echo -n > "$run_core_log_path"
|
||||
echo -n > "$RUN_APP_LOG_PATH"
|
||||
echo -n > "$RUN_CORE_LOG_PATH"
|
||||
}
|
||||
|
||||
download_ui() {
|
||||
local enabled=$1
|
||||
local url=$2
|
||||
local file_dir=$3
|
||||
local src_dir_name=$4
|
||||
local dest_dir_name=$5
|
||||
local enabled="$1"
|
||||
local url="$2"
|
||||
local file_dir="$3"
|
||||
local src_dir_name="$4"
|
||||
local dest_dir_name="$5"
|
||||
local file_path="$file_dir/$src_dir_name.tar.gz"
|
||||
local src_dir="$file_dir/$src_dir_name"
|
||||
local dest_dir="$file_dir/$dest_dir_name"
|
||||
@ -435,7 +434,7 @@ download_ui() {
|
||||
}
|
||||
|
||||
mixin_authentication() {
|
||||
local section=$1
|
||||
local section="$1"
|
||||
|
||||
local enabled username password
|
||||
config_get_bool enabled "$section" "enabled" 0
|
||||
@ -446,15 +445,15 @@ mixin_authentication() {
|
||||
return
|
||||
fi
|
||||
|
||||
authentication="$username:$password" yq -M -i '.authentication += [env(authentication)]' "$run_profile_path"
|
||||
authentication="$username:$password" yq -M -i '.authentication += [env(authentication)]' "$RUN_PROFILE_PATH"
|
||||
}
|
||||
|
||||
mixin_fake_ip_filter() {
|
||||
domain_name="$1" yq -M -i '.dns.fake-ip-filter += [env(domain_name)]' "$run_profile_path"
|
||||
domain_name="$1" yq -M -i '.dns.fake-ip-filter += [env(domain_name)]' "$RUN_PROFILE_PATH"
|
||||
}
|
||||
|
||||
mixin_host() {
|
||||
local section=$1
|
||||
local section="$1"
|
||||
|
||||
local enabled domain_name
|
||||
config_get_bool enabled "$section" "enabled" 0
|
||||
@ -468,11 +467,11 @@ mixin_host() {
|
||||
}
|
||||
|
||||
do_mixin_host() {
|
||||
ip="$1" domain_name="$2" yq -M -i '.hosts.[env(domain_name)] += [env(ip)]' "$run_profile_path"
|
||||
ip="$1" domain_name="$2" yq -M -i '.hosts.[env(domain_name)] += [env(ip)]' "$RUN_PROFILE_PATH"
|
||||
}
|
||||
|
||||
mixin_nameserver() {
|
||||
local section=$1
|
||||
local section="$1"
|
||||
|
||||
local enabled type
|
||||
config_get_bool enabled "$section" "enabled" 0
|
||||
@ -486,11 +485,11 @@ mixin_nameserver() {
|
||||
}
|
||||
|
||||
do_mixin_nameserver() {
|
||||
nameserver=$1 type=$2 yq -M -i '.dns.[env(type)] += [env(nameserver)]' "$run_profile_path"
|
||||
nameserver="$1" type="$2" yq -M -i '.dns.[env(type)] += [env(nameserver)]' "$RUN_PROFILE_PATH"
|
||||
}
|
||||
|
||||
mixin_fallback_filter() {
|
||||
local section=$1
|
||||
local section="$1"
|
||||
|
||||
local enabled
|
||||
config_get_bool enabled "$section" "enabled" 0
|
||||
@ -504,11 +503,11 @@ mixin_fallback_filter() {
|
||||
}
|
||||
|
||||
do_mixin_fallback_filter() {
|
||||
value=$1 type=$2 yq -M -i '.dns.fallback-filter.[env(type)] += [env(value)]' "$run_profile_path"
|
||||
value="$1" type="$2" yq -M -i '.dns.fallback-filter.[env(type)] += [env(value)]' "$RUN_PROFILE_PATH"
|
||||
}
|
||||
|
||||
mixin_nameserver_policy() {
|
||||
local section=$1
|
||||
local section="$1"
|
||||
|
||||
local enabled matcher
|
||||
config_get_bool enabled "$section" "enabled" 0
|
||||
@ -522,31 +521,31 @@ mixin_nameserver_policy() {
|
||||
}
|
||||
|
||||
do_mixin_nameserver_policy() {
|
||||
nameserver=$1 matcher=$2 yq -M -i '.dns.nameserver-policy.[env(matcher)] += [env(nameserver)]' "$run_profile_path"
|
||||
nameserver="$1" matcher="$2" yq -M -i '.dns.nameserver-policy.[env(matcher)] += [env(nameserver)]' "$RUN_PROFILE_PATH"
|
||||
}
|
||||
|
||||
mixin_sniffer_domain_name() {
|
||||
domain_name=$1 type=$2 yq -M -i '.sniffer.[env(type)] += [env(domain_name)]' "$run_profile_path"
|
||||
domain_name="$1" type="$2" yq -M -i '.sniffer.[env(type)] += [env(domain_name)]' "$RUN_PROFILE_PATH"
|
||||
}
|
||||
|
||||
mixin_sniff() {
|
||||
local section=$1
|
||||
local section="$1"
|
||||
|
||||
local enabled protocol overwrite_dest
|
||||
config_get_bool enabled "$section" "enabled" 0
|
||||
config_get protocol "$section" "protocol"
|
||||
config_get_bool overwrite_dest "$section" "overwrite_dest"
|
||||
config_get_bool overwrite_dest "$section" "overwrite_dest" 0
|
||||
|
||||
if [ "$enabled" == 0 ]; then
|
||||
return
|
||||
fi
|
||||
|
||||
protocol="$protocol" overwrite_dest="$overwrite_dest" yq -M -i '.sniffer.sniff.[env(protocol)].override-destination = env(overwrite_dest) == 1' "$run_profile_path"
|
||||
protocol="$protocol" overwrite_dest="$overwrite_dest" yq -M -i '.sniffer.sniff.[env(protocol)].override-destination = env(overwrite_dest) == 1' "$RUN_PROFILE_PATH"
|
||||
config_list_foreach "$section" "port" do_mixin_sniff "$protocol"
|
||||
}
|
||||
|
||||
do_mixin_sniff() {
|
||||
port=$1 protocol=$2 yq -M -i '.sniffer.sniff.[env(protocol)].ports += [env(port)]' "$run_profile_path"
|
||||
port="$1" protocol="$2" yq -M -i '.sniffer.sniff.[env(protocol)].ports += [env(port)]' "$RUN_PROFILE_PATH"
|
||||
}
|
||||
|
||||
add_acl_ip() {
|
||||
@ -674,8 +673,8 @@ add_firewall_redirect_exclusion() {
|
||||
}
|
||||
|
||||
add_upnp_exclusion() {
|
||||
procd_open_instance upnp_lease_watcher
|
||||
procd_set_param command /bin/sh -c "$upnp_lease_watcher"
|
||||
procd_open_instance upnp_watcher
|
||||
procd_set_param command /bin/sh -c "$UPNP_WATCHER_SH"
|
||||
procd_set_param data timestamp=$(date +%s)
|
||||
procd_set_param respawn 3600 5 0
|
||||
procd_close_instance
|
||||
|
136
mihomo/files/nftables/hijack6_tun.nft
Normal file
@ -0,0 +1,136 @@
|
||||
#!/usr/sbin/nft -f
|
||||
|
||||
table ip6 mihomo {
|
||||
set china_ip {
|
||||
type ipv6_addr
|
||||
flags interval
|
||||
}
|
||||
|
||||
set reserved_ip {
|
||||
type ipv6_addr
|
||||
flags interval
|
||||
auto-merge
|
||||
elements = {
|
||||
::/128,
|
||||
::1/128,
|
||||
::ffff:0:0/96,
|
||||
100::/64,
|
||||
64:ff9b::/96,
|
||||
2001::/32,
|
||||
2001:10::/28,
|
||||
2001:20::/28,
|
||||
2001:db8::/32,
|
||||
2002::/16,
|
||||
fc00::/7,
|
||||
fe80::/10,
|
||||
ff00::/8
|
||||
}
|
||||
}
|
||||
|
||||
set wan_ip {
|
||||
type ipv6_addr
|
||||
flags interval
|
||||
auto-merge
|
||||
}
|
||||
|
||||
set acl_dport {
|
||||
type inet_proto . inet_service
|
||||
flags interval
|
||||
auto-merge
|
||||
}
|
||||
|
||||
set acl_ip {
|
||||
type ipv6_addr
|
||||
flags interval
|
||||
auto-merge
|
||||
}
|
||||
|
||||
set acl_mac {
|
||||
type ether_addr
|
||||
flags interval
|
||||
auto-merge
|
||||
}
|
||||
|
||||
set router_exclusion {
|
||||
type inet_proto . inet_service
|
||||
flags interval
|
||||
auto-merge
|
||||
}
|
||||
|
||||
chain dns_hijack {
|
||||
|
||||
}
|
||||
|
||||
chain all_dns_hijack {
|
||||
meta l4proto { tcp, udp } th dport 53 counter redirect to :$DNS_PORT
|
||||
}
|
||||
|
||||
chain allow_dns_hijack {
|
||||
meta l4proto { tcp, udp } th dport 53 ip6 saddr @acl_ip counter redirect to :$DNS_PORT
|
||||
meta l4proto { tcp, udp } th dport 53 ether saddr @acl_mac counter redirect to :$DNS_PORT
|
||||
}
|
||||
|
||||
chain block_dns_hijack {
|
||||
meta l4proto { tcp, udp } th dport 53 ip6 saddr @acl_ip counter return
|
||||
meta l4proto { tcp, udp } th dport 53 ether saddr @acl_mac counter return
|
||||
meta l4proto { tcp, udp } th dport 53 counter redirect to :$DNS_PORT
|
||||
}
|
||||
|
||||
chain router_dns_hijack {
|
||||
meta l4proto { tcp, udp } th dport 53 ip6 daddr [::1] meta skuid != $MIHOMO_USER counter redirect to :$DNS_PORT
|
||||
}
|
||||
|
||||
chain proxy {
|
||||
|
||||
}
|
||||
|
||||
chain all_proxy {
|
||||
meta l4proto { tcp, udp } meta mark set $FW_MARK counter
|
||||
}
|
||||
|
||||
chain allow_proxy {
|
||||
meta l4proto { tcp, udp } ip6 saddr @acl_ip meta mark set $FW_MARK counter
|
||||
meta l4proto { tcp, udp } ether saddr @acl_mac meta mark set $FW_MARK counter
|
||||
}
|
||||
|
||||
chain block_proxy {
|
||||
meta l4proto { tcp, udp } ip6 saddr @acl_ip counter return
|
||||
meta l4proto { tcp, udp } ether saddr @acl_mac counter return
|
||||
meta l4proto { tcp, udp } meta mark set $FW_MARK counter
|
||||
}
|
||||
|
||||
chain router_proxy {
|
||||
meta l4proto { tcp, udp } meta mark set $FW_MARK counter accept
|
||||
}
|
||||
|
||||
chain dstnat {
|
||||
type nat hook prerouting priority dstnat + 1; policy accept;
|
||||
jump dns_hijack
|
||||
}
|
||||
|
||||
chain nat_output {
|
||||
type nat hook output priority filter; policy accept;
|
||||
}
|
||||
|
||||
chain mangle_prerouting {
|
||||
type filter hook prerouting priority mangle; policy accept;
|
||||
meta l4proto { tcp, udp } iifname $TUN_DEVICE counter return
|
||||
ip6 daddr @reserved_ip counter return
|
||||
ip6 daddr @wan_ip counter return
|
||||
ip6 daddr @china_ip counter return
|
||||
meta l4proto . th dport != @acl_dport counter return
|
||||
meta l4proto { tcp, udp } th dport 53 counter return
|
||||
jump proxy
|
||||
}
|
||||
|
||||
chain mangle_output {
|
||||
type route hook output priority mangle; policy accept;
|
||||
meta skuid $MIHOMO_USER counter return
|
||||
ip6 daddr @reserved_ip counter return
|
||||
ip6 daddr @wan_ip counter return
|
||||
ip6 daddr @china_ip counter return
|
||||
meta l4proto . th dport != @acl_dport counter return
|
||||
meta l4proto { tcp, udp } th dport 53 counter return
|
||||
meta l4proto . th sport @router_exclusion counter return
|
||||
}
|
||||
}
|
151
mihomo/files/nftables/hijack_tun.nft
Normal file
@ -0,0 +1,151 @@
|
||||
#!/usr/sbin/nft -f
|
||||
|
||||
table ip mihomo {
|
||||
set china_ip {
|
||||
type ipv4_addr
|
||||
flags interval
|
||||
}
|
||||
|
||||
set reserved_ip {
|
||||
type ipv4_addr
|
||||
flags interval
|
||||
auto-merge
|
||||
elements = {
|
||||
0.0.0.0/8,
|
||||
10.0.0.0/8,
|
||||
127.0.0.0/8,
|
||||
100.64.0.0/10,
|
||||
169.254.0.0/16,
|
||||
172.16.0.0/12,
|
||||
192.168.0.0/16,
|
||||
224.0.0.0/4,
|
||||
240.0.0.0/4
|
||||
}
|
||||
}
|
||||
|
||||
set wan_ip {
|
||||
type ipv4_addr
|
||||
flags interval
|
||||
auto-merge
|
||||
}
|
||||
|
||||
set fake_ip {
|
||||
type ipv4_addr
|
||||
flags interval
|
||||
}
|
||||
|
||||
set acl_dport {
|
||||
type inet_proto . inet_service
|
||||
flags interval
|
||||
auto-merge
|
||||
}
|
||||
|
||||
set acl_ip {
|
||||
type ipv4_addr
|
||||
flags interval
|
||||
auto-merge
|
||||
}
|
||||
|
||||
set acl_mac {
|
||||
type ether_addr
|
||||
flags interval
|
||||
auto-merge
|
||||
}
|
||||
|
||||
set redirect_exclusion {
|
||||
type inet_proto . ipv4_addr . inet_service
|
||||
flags interval
|
||||
auto-merge
|
||||
}
|
||||
|
||||
set upnp_exclusion {
|
||||
type inet_proto . ipv4_addr . inet_service
|
||||
flags interval, timeout
|
||||
auto-merge
|
||||
}
|
||||
|
||||
set router_exclusion {
|
||||
type inet_proto . inet_service
|
||||
flags interval
|
||||
auto-merge
|
||||
}
|
||||
|
||||
chain dns_hijack {
|
||||
|
||||
}
|
||||
|
||||
chain all_dns_hijack {
|
||||
meta l4proto { tcp, udp } th dport 53 counter redirect to :$DNS_PORT
|
||||
}
|
||||
|
||||
chain allow_dns_hijack {
|
||||
meta l4proto { tcp, udp } th dport 53 ip saddr @acl_ip counter redirect to :$DNS_PORT
|
||||
meta l4proto { tcp, udp } th dport 53 ether saddr @acl_mac counter redirect to :$DNS_PORT
|
||||
}
|
||||
|
||||
chain block_dns_hijack {
|
||||
meta l4proto { tcp, udp } th dport 53 ip saddr @acl_ip counter return
|
||||
meta l4proto { tcp, udp } th dport 53 ether saddr @acl_mac counter return
|
||||
meta l4proto { tcp, udp } th dport 53 counter redirect to :$DNS_PORT
|
||||
}
|
||||
|
||||
chain router_dns_hijack {
|
||||
meta l4proto { tcp, udp } th dport 53 ip daddr 127.0.0.1 meta skuid != $MIHOMO_USER counter redirect to :$DNS_PORT
|
||||
}
|
||||
|
||||
chain proxy {
|
||||
|
||||
}
|
||||
|
||||
chain all_proxy {
|
||||
meta l4proto { tcp, udp } meta mark set $FW_MARK counter
|
||||
}
|
||||
|
||||
chain allow_proxy {
|
||||
meta l4proto { tcp, udp } ip saddr @acl_ip meta mark set $FW_MARK counter
|
||||
meta l4proto { tcp, udp } ether saddr @acl_mac meta mark set $FW_MARK counter
|
||||
}
|
||||
|
||||
chain block_proxy {
|
||||
meta l4proto { tcp, udp } ip saddr @acl_ip counter return
|
||||
meta l4proto { tcp, udp } ether saddr @acl_mac counter return
|
||||
meta l4proto { tcp, udp } meta mark set $FW_MARK counter
|
||||
}
|
||||
|
||||
chain router_proxy {
|
||||
meta l4proto { tcp, udp } meta mark set $FW_MARK counter
|
||||
}
|
||||
|
||||
chain dstnat {
|
||||
type nat hook prerouting priority dstnat + 1; policy accept;
|
||||
jump dns_hijack
|
||||
}
|
||||
|
||||
chain nat_output {
|
||||
type nat hook output priority filter; policy accept;
|
||||
}
|
||||
|
||||
chain mangle_prerouting {
|
||||
type filter hook prerouting priority mangle; policy accept;
|
||||
meta l4proto { tcp, udp } iifname $TUN_DEVICE counter return
|
||||
ip daddr @reserved_ip counter return
|
||||
ip daddr @wan_ip counter return
|
||||
ip daddr @china_ip counter return
|
||||
ip daddr != @fake_ip meta l4proto . th dport != @acl_dport counter return
|
||||
meta l4proto { tcp, udp } th dport 53 counter return
|
||||
meta l4proto . ip saddr . th sport @redirect_exclusion counter return
|
||||
meta l4proto . ip saddr . th sport @upnp_exclusion counter return
|
||||
jump proxy
|
||||
}
|
||||
|
||||
chain mangle_output {
|
||||
type route hook output priority mangle; policy accept;
|
||||
meta skuid $MIHOMO_USER counter return
|
||||
ip daddr @reserved_ip counter return
|
||||
ip daddr @wan_ip counter return
|
||||
ip daddr @china_ip counter return
|
||||
ip daddr != @fake_ip meta l4proto . th dport != @acl_dport counter return
|
||||
meta l4proto { tcp, udp } th dport 53 counter return
|
||||
meta l4proto . th sport @router_exclusion counter return
|
||||
}
|
||||
}
|
35
mihomo/files/scripts/constants.sh
Normal file
@ -0,0 +1,35 @@
|
||||
#!/bin/sh
|
||||
|
||||
# permission
|
||||
MIHOMO_USER="mihomo"
|
||||
MIHOMO_GROUP="mihomo"
|
||||
|
||||
# routing
|
||||
FW_TABLE=80
|
||||
FW_MARK=80
|
||||
TUN_DEVICE="tun"
|
||||
|
||||
# paths
|
||||
PROG="/usr/bin/mihomo"
|
||||
HOME_DIR="/etc/mihomo"
|
||||
RUN_DIR="$HOME_DIR/run"
|
||||
RUN_APP_LOG_PATH="$RUN_DIR/app.log"
|
||||
RUN_CORE_LOG_PATH="$RUN_DIR/core.log"
|
||||
RUN_PROFILE_PATH="$RUN_DIR/config.yaml"
|
||||
RUN_UI_DIR="$RUN_DIR/ui"
|
||||
MIXIN_FILE_PATH="$HOME_DIR/mixin.yaml"
|
||||
|
||||
# scripts
|
||||
SH_DIR="$HOME_DIR/scripts"
|
||||
PROFILE_WATCHER_SH="$SH_DIR/profile_watcher.sh"
|
||||
UPNP_WATCHER_SH="$SH_DIR/upnp_watcher.sh"
|
||||
TUN_SH="$SH_DIR/tun.sh"
|
||||
|
||||
# nftables
|
||||
NFT_DIR="$HOME_DIR/nftables"
|
||||
HIJACK_NFT="$NFT_DIR/hijack.nft"
|
||||
HIJACK6_NFT="$NFT_DIR/hijack6.nft"
|
||||
HIJACK_TUN_NFT="$NFT_DIR/hijack_tun.nft"
|
||||
HIJACK6_TUN_NFT="$NFT_DIR/hijack6_tun.nft"
|
||||
GEOIP_CN_NFT="$NFT_DIR/geoip_cn.nft"
|
||||
GEOIP6_CN_NFT="$NFT_DIR/geoip6_cn.nft"
|
@ -1,6 +1,6 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions.sh
|
||||
. $IPKG_INSTROOT/lib/functions.sh
|
||||
|
||||
load_config() {
|
||||
config_load mihomo
|
23
mihomo/files/scripts/tun.sh
Normal file
@ -0,0 +1,23 @@
|
||||
#!/bin/sh
|
||||
|
||||
. $IPKG_INSTROOT/lib/functions.sh
|
||||
. $IPKG_INSTROOT/etc/mihomo/scripts/constants.sh
|
||||
|
||||
load_config() {
|
||||
config_load mihomo
|
||||
config_get enabled "config" "enabled" 0
|
||||
config_get transparent_proxy_mode "proxy" "transparent_proxy_mode"
|
||||
}
|
||||
|
||||
accept_tun() {
|
||||
nft insert rule inet fw4 input iifname "$TUN_DEVICE" counter accept
|
||||
nft insert rule inet fw4 forward oifname "$TUN_DEVICE" counter accept
|
||||
nft insert rule inet fw4 forward iifname "$TUN_DEVICE" counter accept
|
||||
}
|
||||
|
||||
load_config
|
||||
if [[ "$enabled" == 0 || "$transparent_proxy_mode" != "tun" ]]; then
|
||||
return
|
||||
fi
|
||||
|
||||
accept_tun
|
@ -1,6 +1,6 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions.sh
|
||||
. $IPKG_INSTROOT/lib/functions.sh
|
||||
|
||||
load_config() {
|
||||
config_load upnpd
|
@ -1,6 +1,17 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions/network.sh
|
||||
. $IPKG_INSTROOT/lib/functions/network.sh
|
||||
. $IPKG_INSTROOT/etc/mihomo/scripts/constants.sh
|
||||
|
||||
# add firewall include for tun
|
||||
uci -q batch <<-EOF > /dev/null
|
||||
delete firewall.mihomo
|
||||
set firewall.mihomo=include
|
||||
set firewall.mihomo.type=script
|
||||
set firewall.mihomo.path=$TUN_SH
|
||||
set firewall.mihomo.fw4_compatible=1
|
||||
commit firewall
|
||||
EOF
|
||||
|
||||
# check mihomo.config.init
|
||||
init=$(uci -q get mihomo.config.init); [ -z "$init" ] && return
|
||||
@ -8,24 +19,18 @@ init=$(uci -q get mihomo.config.init); [ -z "$init" ] && return
|
||||
# generate random string for api secret and authentication password
|
||||
random=$(awk 'BEGIN{srand(); print int(rand() * 1000000)}')
|
||||
|
||||
# get wan interface
|
||||
network_find_wan wan_interface
|
||||
|
||||
# set mihomo.mixin.api_secret
|
||||
uci set mihomo.mixin.api_secret="$random"
|
||||
|
||||
# set mihomo.@authentication[0].password
|
||||
uci set mihomo.@authentication[0].password="$random"
|
||||
|
||||
# get wan interface
|
||||
network_find_wan wan_interface
|
||||
network_find_wan6 wan6_interface
|
||||
|
||||
# set mihomo.proxy.wan_interfaces
|
||||
uci del mihomo.proxy.wan_interfaces
|
||||
uci add_list mihomo.proxy.wan_interfaces="$wan_interface"
|
||||
|
||||
# set mihomo.proxy.wan6_interfaces
|
||||
uci del mihomo.proxy.wan6_interfaces
|
||||
uci add_list mihomo.proxy.wan6_interfaces="$wan6_interface"
|
||||
|
||||
# set mihomo.mixin.outbound_interface
|
||||
uci set mihomo.mixin.outbound_interface="$wan_interface"
|
||||
|
@ -1,6 +1,6 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions/network.sh
|
||||
. $IPKG_INSTROOT/lib/functions/network.sh
|
||||
|
||||
# delete mihomo.proxy.routing_mark
|
||||
routing_mark=$(uci -q get mihomo.proxy.routing_mark); [ -n "$routing_mark" ] && uci del mihomo.proxy.routing_mark
|
||||
@ -16,11 +16,11 @@ log_level=$(uci -q get mihomo.mixin.log_level); [ -z "$log_level" ] && uci set m
|
||||
|
||||
# add mihomo.mixin.authentication
|
||||
authentication=$(uci -q get mihomo.mixin.authentication); [ -z "$authentication" ] && {
|
||||
uci set mihomo.mixin.authentication=1
|
||||
uci add mihomo.authentication
|
||||
uci set mihomo.@authentication[-1].enabled=1
|
||||
uci set mihomo.@authentication[-1].username=mihomo
|
||||
uci set mihomo.@authentication[-1].password=$(awk 'BEGIN{srand(); print int(rand() * 1000000)}')
|
||||
uci set mihomo.mixin.authentication=1
|
||||
uci add mihomo.authentication
|
||||
uci set mihomo.@authentication[-1].enabled=1
|
||||
uci set mihomo.@authentication[-1].username=mihomo
|
||||
uci set mihomo.@authentication[-1].password=$(awk 'BEGIN{srand(); print int(rand() * 1000000)}')
|
||||
}
|
||||
|
||||
# add mihomo.status
|
||||
@ -37,14 +37,10 @@ bypass_china_mainland_ip=$(uci -q get mihomo.proxy.bypass_china_mainland_ip); [
|
||||
|
||||
# get wan interface
|
||||
network_find_wan wan_interface
|
||||
network_find_wan6 wan6_interface
|
||||
|
||||
# add mihomo.proxy.wan_interfaces
|
||||
wan_interfaces=$(uci -q get mihomo.proxy.wan_interfaces); [ -z "$wan_interfaces" ] && uci add_list mihomo.proxy.wan_interfaces="$wan_interface"
|
||||
|
||||
# add mihomo.proxy.wan6_interfaces
|
||||
wan6_interfaces=$(uci -q get mihomo.proxy.wan6_interfaces); [ -z "$wan6_interfaces" ] && uci add_list mihomo.proxy.wan6_interfaces="$wan6_interface"
|
||||
|
||||
# add mihomo.mixin.outbound_interface
|
||||
outbound_interface=$(uci -q get mihomo.mixin.outbound_interface); [ -z "$outbound_interface" ] && uci set mihomo.mixin.outbound_interface="$wan_interface"
|
||||
|
||||
@ -63,6 +59,27 @@ ipv6_proxy=$(uci -q get mihomo.proxy.ipv6_proxy); [ -z "$ipv6_proxy" ] && uci se
|
||||
# set mihomo.proxy.access_control_mode
|
||||
access_control_mode=$(uci -q get mihomo.proxy.access_control_mode); [ -z "$access_control_mode" ] && uci set mihomo.proxy.access_control_mode="all"
|
||||
|
||||
# add mihomo.proxy.transparent_proxy_mode
|
||||
transparent_proxy_mode=$(uci -q get mihomo.proxy.transparent_proxy_mode); [ -z "$transparent_proxy_mode" ] && uci set mihomo.proxy.transparent_proxy_mode="tproxy"
|
||||
|
||||
# add mihomo.mixin.tun_stack
|
||||
tun_stack=$(uci -q get mihomo.mixin.tun_stack); [ -z "$tun_stack" ] && uci set mihomo.mixin.tun_stack="system"
|
||||
|
||||
# add mihomo.mixin.tun_mtu
|
||||
tun_mtu=$(uci -q get mihomo.mixin.tun_mtu); [ -z "$tun_mtu" ] && uci set mihomo.mixin.tun_mtu="9000"
|
||||
|
||||
# add mihomo.mixin.tun_gso
|
||||
tun_gso=$(uci -q get mihomo.mixin.tun_gso); [ -z "$tun_gso" ] && uci set mihomo.mixin.tun_gso=1
|
||||
|
||||
# add mihomo.mixin.tun_gso_max_size
|
||||
tun_gso_max_size=$(uci -q get mihomo.mixin.tun_gso_max_size); [ -z "$tun_gso_max_size" ] && uci set mihomo.mixin.tun_gso_max_size="65536"
|
||||
|
||||
# add mihomo.mixin.tun_endpoint_independent_nat
|
||||
tun_endpoint_independent_nat=$(uci -q get mihomo.mixin.tun_endpoint_independent_nat); [ -z "$tun_endpoint_independent_nat" ] && uci set mihomo.mixin.tun_endpoint_independent_nat=0
|
||||
|
||||
# add mihomo.config.test_profile
|
||||
test_profile=$(uci -q get mihomo.config.test_profile); [ -z "$test_profile" ] && uci set mihomo.config.test_profile=1
|
||||
|
||||
# commit
|
||||
uci commit mihomo
|
||||
|
@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=modeminfo
|
||||
PKG_VERSION:=0.4.2
|
||||
PKG_RELEASE:=68
|
||||
PKG_RELEASE:=69
|
||||
PKG_MAINTAINER:=Konstantine Shevlakov <shevlakov@132lan.ru>
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
@ -1,10 +1,10 @@
|
||||
modem_data(){
|
||||
# hwinfo
|
||||
O=$(echo "$O" | grep -Ev 'OK|^$')
|
||||
MANUF=$(echo "$O" | grep -i $FAMILY)
|
||||
MODEL=$(echo "$O" | grep -A1 -i $FAMILY | tail -1)
|
||||
O=$(echo "$O" | grep -Ev '^OK|^$|^NO|^ERR')
|
||||
MANUF=$(echo "$O" | awk 'c&&! --c;/CEREG/{c=1}')
|
||||
MODEL=$(echo "$O" | awk 'c&&! --c;/CEREG/{c=2}')
|
||||
DEVICE="$MANUF $MODEL"
|
||||
FW=$(echo "$O" | grep -A2 -i $FAMILY | tail -1)
|
||||
FW=$(echo "$O" | awk 'c&&! --c;/CEREG/{c=3}')
|
||||
ICCID=$(echo "$O" | awk -F [:] '/ICCID:/{gsub("\r","");print $2}')
|
||||
IMEI=$(echo "$O" | awk 'c&&! --c;/ICCID/{c=1}')
|
||||
IMSI=$(echo "$O" | awk 'c&&! --c;/ICCID/{c=2}')
|
||||
@ -12,7 +12,7 @@ modem_data(){
|
||||
if [ "$MODE" = "LTE" ]; then
|
||||
LAC=$(echo "$O" | awk -F [,] '/\+CEREG/{gsub("\"","");print $3}')
|
||||
CID=$(echo "$O" | awk -F [,] '/\+CEREG/{gsub("\"","");print $4}')
|
||||
EARFCN=$(echo "$O" | awk -F [\:/\ ] '/pcell:/{getline;print $2}')
|
||||
EARFCN=$(echo "$O" | grep 'pcell:' -A2 |awk -F [\:/\ ] '/channel:/{print $2}')
|
||||
PCI=$(echo "$O" | awk -F [\:/\ ] '/pcell:/{getline;print $4}')
|
||||
RSRP=$(echo "$O" | awk -F [\:/\ ,] '/pcell:/{getline;getline;gsub("dB|dBm","");printf "%.0f\n", $2}')
|
||||
CSQ_RSSI=$(echo "$O" | awk -F [\:/\ ,] '/pcell:/{getline;getline;getline;gsub("dB|dBm","");printf "%.0f\n", $2}')
|
||||
@ -24,7 +24,8 @@ modem_data(){
|
||||
ENBx=$(echo $CID | sed -e 's/..$//')
|
||||
CELL=$(printf %d 0x${CID: -2})
|
||||
ENBID=$(printf %d 0x$ENBx)
|
||||
BWDx=$(echo "$O" | awk '/PCC info/{printf "%.0f\n",$8}')
|
||||
#BWDx=$(echo "$O" | awk '/PCC info/{printf "%.0f\n",$8}')
|
||||
BWDx=$(echo "$O" | awk -F [\:/\ ,] '/pcell:/{gsub("MHz","");printf "%.0f\n", $6}')
|
||||
LTE_CA=$(echo "$O" | awk '/SCC/{print $0}' | wc -l)
|
||||
case $BWDx in
|
||||
3) BWDL=1 ;;
|
||||
|