update 2024-10-26 10:38:22

This commit is contained in:
kenzok8 2024-10-26 10:38:22 +08:00
parent 55eea9c50e
commit 25a0842b39
534 changed files with 126162 additions and 0 deletions

View File

@ -0,0 +1,47 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=luci-app-autoshell
PKG_VERSION:=1.2.3
PKG_RELEASE:=1
PKG_MAINTAINER:=Brukamen <169296793@qq.com>
PKG_LICENSE:=GPL-3.0-or-later
include $(INCLUDE_DIR)/package.mk
define Package/luci-app-autoshell
SECTION:=luci
CATEGORY:=LuCI
SUBMENU:=3. Applications
TITLE:=LuCI support for autoshell
DEPENDS:=+curl
endef
define Build/Prepare
endef
define Build/Compile
endef
define Package/luci-app-autoshell/install
$(INSTALL_DIR) $(1)/etc/config
$(INSTALL_DATA) ./autoshell $(1)/etc/config/
$(INSTALL_DIR) $(1)/usr/lib/lua/luci/controller
$(INSTALL_DATA) ./controller/autoshell.lua $(1)/usr/lib/lua/luci/controller/
$(INSTALL_DIR) $(1)/usr/lib/lua/luci/model/cbi/
$(INSTALL_DATA) ./cbi/autoshell.lua $(1)/usr/lib/lua/luci/model/cbi/
$(INSTALL_DATA) ./cbi/autoshell_log.lua $(1)/usr/lib/lua/luci/model/cbi/
$(INSTALL_DIR) $(1)/etc/init.d/
$(foreach file,$(wildcard ./init.d/*), \
$(INSTALL_BIN) $(file) $(1)/etc/init.d/$(notdir $(file)); \
)
$(INSTALL_DIR) $(1)/etc
$(INSTALL_BIN) ./etc/autoshells.sh $(1)/etc/
chmod +x $(1)/etc/autoshells.sh
endef
$(eval $(call BuildPackage,$(PKG_NAME)))

View File

@ -0,0 +1,13 @@
要在Microsoft Edge浏览器中使用自带的开发工具来抓取cURL命令您可以按照以下步骤操作
1. 打开Microsoft Edge浏览器并导航到需要进行登录的网页校园网认证页
2. 按下`F12`键或右键点击页面上的任何元素,然后选择"检查"选项来打开开发者工具。
3. 在开发者工具窗口中,切换到"网络"选项卡。在开发者工具的"网络"选项卡中勾选保留日志。
4. 在浏览器中进行登录操作,填写用户名和密码,并点击登录按钮。
5. 您将看到网页加载过程中的所有网络请求和响应信息。
6. 找到包含登录请求的条目,通常是名为"login"、"signin"或类似的条目如果找不到就选第一个条目。右键该条目以复制我们要的curlcmd内容。
将curl粘贴到此处覆盖此说明点击下方"保存抓包",然后就可以点击生成脚本了,创建成功后就可以启动脚本开始认证了。
请注意Microsoft Edge开发者工具的界面可能因不同版本而有所不同但通常您应该能够在"网络"选项卡中找到登录请求并获取相应的cURL命令。
记住在复制curl时不要搞错一定选择复制curlcmd否则脚本可能无法发送正确请求
=====================================================================================================================================
在本输入框输入"禁用"并保存可以停用认证功能,届时重启后将不再进行自动认证以及网络守护【仍然可以手动认证】

View File

@ -0,0 +1,56 @@
local fs = require "nixio.fs"
local uci = require "luci.model.uci".cursor()
local conffile = "/etc/config/autoshell"
f = SimpleForm("logview", translate("web抓包认证"), translate("在这里粘贴你抓包的curl系统将自动生成对应请求脚本并实时保持网络在线。"))
f.reset = false
f.submit = translate("保存抓包")
t = f:field(TextValue, "conf")
t.rmempty = true
t.rows = 20
function t.cfgvalue()
local value = fs.readfile(conffile)
return value or ""
end
function t.write(self, section, value)
if value then
fs.writefile(conffile, value)
end
end
btn_generate = f:field(Button, "generate", "")
btn_generate.inputtitle = "生成脚本"
function btn_generate.write()
local scriptExist = luci.sys.call("[ -f /etc/autoshell.sh ]") == 0
if scriptExist then
luci.http.write('<script>alert("脚本已更新!!");</script>')
os.execute("sh /etc/autoshells.sh")
else
luci.http.write('<script>alert("脚本创建成功!!");</script>')
os.execute("sh /etc/autoshells.sh")
end
end
local pid = luci.sys.exec("pgrep -f '/etc/autoshell.sh'")
if pid == "" then
btn_authenticate = f:field(Button, "authenticate", "")
btn_authenticate.inputtitle = "开始认证"
function btn_authenticate.write()
luci.http.redirect(luci.dispatcher.build_url("admin", "services", "webauto"))
os.execute("sh /etc/autoshell.sh &")
end
else
btn_stop = f:field(Button, "stop", "")
btn_stop.inputtitle = "停止脚本"
function btn_stop.write()
os.execute("killall sh /etc/autoshell.sh")
luci.http.redirect(luci.dispatcher.build_url("admin", "services", "webauto"))
end
end
return f

View File

@ -0,0 +1,32 @@
local fs = require "nixio.fs"
local conffile = "/tmp/log/autoshell.log"
f = SimpleForm("logview", translate("日志"), translate("日志不能实时更新,需要手动刷新界面"))
f.reset = false
f.submit = false
t = f:field(TextValue, "conf")
t.rmempty = true
t.rows = 20
function t.cfgvalue()
return fs.readfile(conffile) or ""
end
t.readonly="readonly"
btn_clear = f:field(Button, "clear", "")
btn_clear.inputtitle = "清除日志"
function btn_clear.write()
fs.writefile(conffile, "日志已清除")
luci.http.redirect(luci.dispatcher.build_url("admin", "services", "webauto", "log"))
end
btn_read = f:field(Button, "read", "")
btn_read.inputtitle = "刷新日志"
function btn_read.write()
t.value = fs.readfile(conffile) or ""
end
return f

View File

@ -0,0 +1,7 @@
module("luci.controller.autoshell", package.seeall)
function index()
entry({"admin", "services", "webauto"}, alias("admin", "services", "webauto", "settings"), _("Web认证"), 99).index = true
entry({"admin", "services", "webauto", "settings"}, cbi("autoshell"), _("认证设置"), 1)
entry({"admin", "services", "webauto", "log"}, cbi("autoshell_log"), _("认证日志"), 2)
end

View File

@ -0,0 +1,77 @@
#!/bin/sh
conffile="/etc/config/autoshell"
output_file="/etc/autoshell.sh"
url=""
headers=""
data=""
while read -r line; do
if [[ "$line" =~ "curl" ]]; then
url=$(echo "$line" | grep -oE 'curl "([^"]+)"' | cut -d'"' -f2)
elif [[ "$line" =~ "-H" ]]; then
header=$(echo "$line" | grep -oE '^ *-H "[^"]+"' | cut -d'"' -f2)
headers="$headers\n$header"
elif [[ "$line" =~ "--data-raw" ]]; then
data=$(echo "$line" | grep -oE '\-\-data-raw "[^"]+"' | cut -d'"' -f2)
data=$(echo "$data" | tr -d '^')
fi
done < "$conffile"
headers=$(echo -e "$headers")
headers=$(echo "$headers" | sed 's/\^\%\^/^/g')
cat <<EOF > "$output_file"
#!/bin/sh
url="$url"
headers="$headers"
data="$data"
log_file="/tmp/log/autoshell.log"
log_time=\$(date '+%Y-%m-%d %H:%M:%S')
echo "[\$log_time] 开始运行" >> "\$log_file"
while true; do
while true; do
log_time=\$(date '+%Y-%m-%d %H:%M:%S')
if ping -c 1 8.8.8.8 >/dev/null; then
echo "[\$log_time] 网络守护日志输出-目前网络正常" >> "\$log_file"
log_line_count=\$(wc -l < "\$log_file")
if [ "\$log_line_count" -gt 100 ]; then
echo "[\$log_time] 日志达到上限,已覆盖" > "\$log_file"
fi
sleep 30
else
echo "[\$log_time] 网络异常,进行二次网络监测,避免误测" >> "\$log_file"
sleep 3
break
fi
done
while true; do
log_time=\$(date '+%Y-%m-%d %H:%M:%S')
if ping -c 1 8.8.8.8 >/dev/null; then
break
else
echo "[\$log_time] 确认网络异常,将发起认证请求!" >> "\$log_file"
response=\$(curl -s -X POST -H "\$(echo "\$headers" | tr '\n' '\r\n')" -d "\$data" "\$url")
sleep 5
if [ \${#response} -lt 1 ]; then
echo "[\$log_time] 服务器未返回信息,等待网络检测结果" >> "\$log_file"
else
result=\$(echo "\$response" | grep -o '"result":"[^"]*"' | sed 's/"result":"\([^"]*\)"/\1/')
message=\$(echo "\$response" | grep -o '"message":"[^"]*"' | sed 's/"message":"\([^"]*\)"/\1/')
echo "[\$log_time] 服务器返回:\$response" >> "\$log_file"
fi
fi
done
done
EOF
chmod +x "$output_file"
exit 0

View File

@ -0,0 +1,40 @@
#!/bin/sh /etc/rc.common
START=90
run_reboot()
{
local enable
config_get_bool enable $1 enable
if [ $enable ]; then
local minute
local hour
config_get minute $1 minute
config_get hour $1 hour
sed '/reboot/ d' /etc/crontabs/root > /tmp/crontab_root_tmp
cp /tmp/crontab_root_tmp /etc/crontabs/root
echo "$minute $hour * * * reboot &" >> /etc/crontabs/root
echo "Auto REBOOT has started."
/etc/init.d/cron restart
else
sed '/reboot/ d' /etc/crontabs/root > /tmp/crontab_root_tmp
cp /tmp/crontab_root_tmp /etc/crontabs/root
echo "Auto REBOOT has started."
/etc/init.d/cron restart
fi
}
start()
{
config_load autoreboot
config_foreach run_reboot login
}
stop()
{
echo "Auto REBOOT has stoped."
}

View File

@ -0,0 +1,35 @@
#!/bin/sh /etc/rc.common
START=99
log_file="/tmp/log/autoshell.log"
start() {
state=$(pgrep -f "/etc/autoshell.sh")
config_content=$(cat /etc/config/autoshell)
if echo "$config_content" | grep -q "禁用"; then
echo "[$(date "+%Y-%m-%d %H:%M:%S")]: 脚本已禁用" >> "$log_file"
return 1
else
/etc/autoshell.sh &
echo "[$(date "+%Y-%m-%d %H:%M:%S")]: 已启动认证脚本" >> "$log_file"
fi
}
stop() {
kill -9 $(pgrep -f "/etc/autoshell.sh") 2>/dev/null
echo "$(date "+%Y-%m-%d %H:%M:%S"): 已停止认证" >>
}
restart() {
stop
sleep 1
start
echo "$(date "+%Y-%m-%d %H:%M:%S"): 已重新启动 /etc/autoshell.sh"
}
disable() {
echo "禁用功能未实现"
}

View File

@ -0,0 +1,22 @@
#
# 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:=chongyoung for luci
LUCI_DEPENDS:=
LUCI_PKGARCH:=all
PKG_VERSION:=4.1.1
PKG_RELEASE:=4
define Package/luci-app-chongyoung/postinst
#!/bin/sh
chmod +x $(1)/etc/init.d/*
exit 0
endef
include $(TOPDIR)/feeds/luci/luci.mk
# call BuildPackage - OpenWrt buildroot signature

View File

@ -0,0 +1,8 @@
module("luci.controller.chongyoung", package.seeall)
function index()
entry({"admin", "school", "chongyoung"}, alias("admin", "school", "chongyoung", "settings"), _("飞young"), 100).index = true
entry({"admin", "school", "chongyoung", "settings"}, cbi("chongyoung"), _("认证设置"), 1)
entry({"admin", "school", "chongyoung", "passwd"}, cbi("chongyoung2"), _("密码管理"), 2)
entry({"admin", "school", "chongyoung", "log"}, cbi("chongyoung_log"), _("认证日志"), 3)
end

View File

@ -0,0 +1,16 @@
m = Map("chongyoung", translate("湖北飞young认证--冲young"))
s = m:section(TypedSection, "chongyoung", "")
s.anonymous = true
enabled = s:option(Flag, "enabled", "启用")
user = s:option(Value, "user", "账号")
time = s:option(Value, "time", "网络监测间隔/秒")
local apply = luci.http.formvalue("cbi.apply")
if apply then
io.popen("/etc/init.d/chongyoung start")
end
return m

View File

@ -0,0 +1,26 @@
local fs = require "nixio.fs"
local uci = require "luci.model.uci".cursor()
local conffile = "/etc/config/userprofile"
f = SimpleForm("logview", translate("密码管理"), translate("填入算号器算出的密码以及账号如果没有算号程序请加入QQ群555201601 获取"))
f.reset = false
f.submit = translate("保存参数")
t = f:field(TextValue, "conf")
t.rmempty = true
t.rows = 20
function t.cfgvalue()
local value = fs.readfile(conffile)
return value or ""
end
-- 在保存前将Windows换行符 (\r\n) 替换为Linux换行符 (\n),否则会导致读取密码时发生错误。。。
function t.write(self, section, value)
if value then
-- 将 \r\n 替换为 \n
value = value:gsub("\r\n", "\n")
fs.writefile(conffile, value)
end
end
return f

View File

@ -0,0 +1,43 @@
local fs = require "nixio.fs"
local conffile = "/tmp/log/chongyoung.log"
f = SimpleForm("logview", translate("日志"), translate("每30秒自动刷新界面"))
f.reset = false
f.submit = false
t = f:field(TextValue, "conf")
t.rmempty = true
t.rows = 20
function t.cfgvalue()
local logfile = fs.readfile(conffile) or ""
local lines = {}
for line in logfile:gmatch("[^\r\n]+") do
table.insert(lines, line)
if #lines > 20 then
table.remove(lines, 1)
end
end
return table.concat(lines, "\n")
end
function check_log_update()
t.value = fs.readfile(conffile) or ""
luci.http.redirect(luci.dispatcher.build_url("admin", "school", "chongyoung", "log"))
end
if luci.http.formvalue("apply") then
check_log_update()
else
luci.http.write('<script>setTimeout("location.reload(true);", 30000)</script>')
end
t.readonly="readonly"
btn_clear = f:field(Button, "clear", "")
btn_clear.inputtitle = "清除日志"
function btn_clear.write()
fs.writefile(conffile, " ")
end
return f

View File

@ -0,0 +1,5 @@
config chongyoung 'config'
option time '30'
option user ''

View File

@ -0,0 +1,15 @@
#默认模拟安卓登陆
system CDMA+WLAN(Maod)
#设备系统前缀
prefix %21%5EAdcm0
#AidcAuthAttr系统版本参数
AidcAuthAttr3 47dnVRav
AidcAuthAttr4 gPwzFkyhP04Z6c7pbsAg7um8YYOF5bdMhDM287AMbR7Xpjk%3D
AidcAuthAttr5 46lnVROuQxpFton6Esgh%2Fpf5N43uue8PnUBpq%2FZSLEDCpyUGI67httmCm433
AidcAuthAttr6 4qttSxWgXRtHtJfzFcMq%2Fok%3D
AidcAuthAttr8 %2FqhnThW2QBpR6si9BZ5xutqma9H%2F6bdP0BM87v9JM0DfoCcaKbO%2F952MzsKyBsVfv0JLLXpIFPlQGcstHb0cPsY2cz5jSGqL99ONjVD7t5SxkcHEoS4%3D
AidcAuthAttr15 465kShc%3D
AidcAuthAttr22 4g%3D%3D
AidcAuthAttr23 oew0GEDpHg%3D%3D

View File

@ -0,0 +1,32 @@
#31天密码
1=
2=
3=
4=
5=
6=
7=
8=
9=
10=
11=
12=
13=
14=
15=
16=
17=
18=
19=
20=
21=
22=
23=
24=
25=
26=
27=
28=
29=
30=
31=

View File

@ -0,0 +1,35 @@
#!/bin/sh /etc/rc.common
START=99
log_file="/tmp/log/chongyoung.log"
start() {
enabled=$(uci get chongyoung.config.enabled)
if [ "$enabled" -eq 1 ]; then
kill -9 $(pgrep -f "/usr/bin/chongyong") 2>/dev/null
sh /usr/bin/chongyong &
echo "[$(date "+%Y-%m-%d %H:%M:%S")]: 已启用" >> "$log_file"
return 1
else
kill -9 $(pgrep -f "/usr/bin/chongyong") 2>/dev/null
echo "[$(date "+%Y-%m-%d %H:%M:%S")]: 停止认证" >> "$log_file"
fi
}
stop() {
kill -9 $(pgrep -f "/usr/bin/chongyong") 2>/dev/null
echo "[$(date "+%Y-%m-%d %H:%M:%S")]: 已停用" >> "$log_file"
}
restart() {
stop
sleep 1
start
echo "$(date "+%Y-%m-%d %H:%M:%S"): 已重新启动 /etc/autoshell.sh"
}
disable() {
echo "禁用功能未实现"
}

View File

@ -0,0 +1,72 @@
#!/bin/sh
userprofile="/etc/config/userprofile"
logfile="/tmp/log/chongyoung.log"
time=$(uci get chongyoung.config.time)
edition="/etc/config/edition"
init() {
user=$(uci get chongyoung.config.user)
fyxml=`curl -H "Accept: */*" -H "User-Agent:CDMA+WLAN(Maod)" -H "Accept-Language: zh-Hans-CN;q=1" -H "Accept-Encoding: gzip, deflate" -H "Connection: keep-alive" -H "Content-Type:application/x-www-form-urlencoded" -L "http://100.64.0.1"`
fylgurl=`echo $fyxml | awk -v head="CDATA[" -v tail="]" '{print substr($0, index($0,head)+length(head),index($0,tail)-index($0,head)-length(head))}'`
usmac=`echo $fyxml | awk -v head="sermac=" -v tail="&wlanacname" '{print substr($0, index($0,head)+length(head),index($0,tail)-index($0,head)-length(head))}'`
acname=`echo $fyxml | awk -v head="wlanacname=" -v tail="&wlanuserip" '{print substr($0, index($0,head)+length(head),index($0,tail)-index($0,head)-length(head))}'`
usip=`echo $fyxml | awk -v head="wlanuserip=" -v tail="]" '{print substr($0, index($0,head)+length(head),index($0,tail)-index($0,head)-length(head))}'`
AidcAuthAttr1=`echo $fyxml | awk -v head="Attr1>" -v tail="</Aidc" '{print substr($0, index($0,head)+length(head),index($0,tail)-index($0,head)-length(head))}'`
system=`cat $edition | grep -vE "^#" | grep system |awk '{print $2}'`
prefix=`cat $edition | grep -vE "^#" | grep prefix |awk '{print $2}'`
AidcAuthAttr3=`cat $edition | grep -vE "^#" | grep AidcAuthAttr3 |awk '{print $2}'`
AidcAuthAttr4=`cat $edition | grep -vE "^#" | grep AidcAuthAttr4 |awk '{print $2}'`
AidcAuthAttr5=`cat $edition | grep -vE "^#" | grep AidcAuthAttr5 |awk '{print $2}'`
AidcAuthAttr6=`cat $edition | grep -vE "^#" | grep AidcAuthAttr6 |awk '{print $2}'`
AidcAuthAttr8=`cat $edition | grep -vE "^#" | grep AidcAuthAttr8 |awk '{print $2}'`
AidcAuthAttr15=`cat $edition | grep -vE "^#" | grep AidcAuthAttr15 |awk '{print $2}'`
AidcAuthAttr22=`cat $edition | grep -vE "^#" | grep AidcAuthAttr22 |awk '{print $2}'`
AidcAuthAttr23=`cat $edition | grep -vE "^#" | grep AidcAuthAttr23 |awk '{print $2}'`
}
login() {
lgg=`echo "curl -d \"&createAuthorFlag=0&UserName=${prefix}${user}&Password=${passwd}&AidcAuthAttr1=${AidcAuthAttr1}&AidcAuthAttr3=${AidcAuthAttr3}&AidcAuthAttr4=${AidcAuthAttr4}&AidcAuthAttr5=${AidcAuthAttr5}&AidcAuthAttr6=${AidcAuthAttr6}&AidcAuthAttr8=${AidcAuthAttr8}&AidcAuthAttr15=${AidcAuthAttr15}&AidcAuthAttr22=${AidcAuthAttr22}&AidcAuthAttr23=${AidcAuthAttr23}\" -H \"User-Agent: ${system}\" -H \"Content-Type: application/x-www-form-urlencoded\" \"${fylgurl}\"" | sh`
result=`echo $lgg | awk -v head="ReplyMessage>" -v tail="</ReplyMessage" '{print substr($0, index($0,head)+length(head),index($0,tail)-index($0,head)-length(head))}'`
}
heart() {
sys="CDMA+WLAN(Maod)"
hht=`echo "curl -d \"\" -H \"User-Agent: ${sys}\" -H \"Content-Type: application/x-www-form-urlencoded\" \"http://58.53.199.146:8007/Hv6_dW\" " | sh`
ht=echo $hht
}
while true; do
log_line_count=$(wc -l < "$logfile")
if [ "$log_line_count" -gt 100 ]; then
echo "日志行数达到上限,已覆盖" > "$logfile"
fi
ping -c 3 8.8.8.8 >/dev/null
if [ $? -eq 0 ]; then
echo "[$(date "+%Y-%m-%d %H:%M:%S")] 已登陆" >> $logfile
heart
echo $hht
else
echo "[$(date "+%Y-%m-%d %H:%M:%S")] 未登录,正在连接" >> $logfile
init
day=`echo ${AidcAuthAttr1:6:2} | sed -r 's/^0*([^0]+|0)$/\1/'`
day="^$day="
passwd=`cat $userprofile | grep -vE "^#" | grep -E $day |awk -F= '{print $2}' `
login
echo "$result" >> $logfile
echo "用户账号:$user" >> $logfile
echo "用户密码:$passwd" >> $logfile
echo "用户设备MAC:$usmac" >> $logfile
echo "用户IP地址:$usip" >> $logfile
echo "服务器地址:$acname" >> $logfile
echo "服务器时间:$AidcAuthAttr1" >> $logfile
fi
sleep $time
done

View File

@ -0,0 +1,22 @@
#
# 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:=chongyoung
LUCI_DEPENDS:=
LUCI_PKGARCH:=all
PKG_VERSION:=4.2.0
PKG_RELEASE:=4
define Package/luci-app-chongyoung-lua/postinst
#!/bin/sh
chmod +x $(1)/etc/init.d/*
exit 0
endef
include $(TOPDIR)/feeds/luci/luci.mk
# call BuildPackage - OpenWrt buildroot signature

View File

@ -0,0 +1,8 @@
module("luci.controller.chongyoung", package.seeall)
function index()
entry({"admin", "services", "chongyoung"}, alias("admin", "services", "chongyoung", "settings"), _("湖北飞young"), 100).index = true
entry({"admin", "services", "chongyoung", "settings"}, cbi("chongyoung"), _("认证设置"), 1)
entry({"admin", "services", "chongyoung", "passwd"}, cbi("chongyoung2"), _("密码管理"), 2)
entry({"admin", "services", "chongyoung", "log"}, cbi("chongyoung_log"), _("认证日志"), 3)
end

View File

@ -0,0 +1,17 @@
m = Map("chongyoung", translate("湖北飞young认证"))
s = m:section(TypedSection, "chongyoung", "")
s.anonymous = true
enabled = s:option(Flag, "enabled", "启用")
user = s:option(Value, "user", "账号")
password = s:option(Value, "password", "密码")
time = s:option(Value, "time", "网络监测间隔/秒")
local apply = luci.http.formvalue("cbi.apply")
if apply then
io.popen("/etc/init.d/chongyoung start")
end
return m

View File

@ -0,0 +1,26 @@
local fs = require "nixio.fs"
local uci = require "luci.model.uci".cursor()
local conffile = "/etc/config/userprofile"
f = SimpleForm("logview", translate("密码管理(自动计算,勿动)"))
f.reset = false
f.submit = translate("保存参数")
t = f:field(TextValue, "conf")
t.rmempty = true
t.rows = 20
function t.cfgvalue()
local value = fs.readfile(conffile)
return value or ""
end
-- 在保存前将Windows换行符 (\r\n) 替换为Linux换行符 (\n),否则会导致读取密码时发生错误。。。
function t.write(self, section, value)
if value then
-- 将 \r\n 替换为 \n
value = value:gsub("\r\n", "\n")
fs.writefile(conffile, value)
end
end
return f

View File

@ -0,0 +1,43 @@
local fs = require "nixio.fs"
local conffile = "/tmp/log/chongyoung.log"
f = SimpleForm("logview", translate("日志"), translate("每30秒自动刷新界面"))
f.reset = false
f.submit = false
t = f:field(TextValue, "conf")
t.rmempty = true
t.rows = 20
function t.cfgvalue()
local logfile = fs.readfile(conffile) or ""
local lines = {}
for line in logfile:gmatch("[^\r\n]+") do
table.insert(lines, line)
if #lines > 20 then
table.remove(lines, 1)
end
end
return table.concat(lines, "\n")
end
function check_log_update()
t.value = fs.readfile(conffile) or ""
luci.http.redirect(luci.dispatcher.build_url("admin", "services", "chongyoung", "log"))
end
if luci.http.formvalue("apply") then
check_log_update()
else
luci.http.write('<script>setTimeout("location.reload(true);", 30000)</script>')
end
t.readonly="readonly"
btn_clear = f:field(Button, "clear", "")
btn_clear.inputtitle = "清除日志"
function btn_clear.write()
fs.writefile(conffile, " ")
end
return f

View File

@ -0,0 +1,6 @@
config chongyoung 'config'
option time '30'
option user ''
option password ''

View File

@ -0,0 +1,15 @@
#默认模拟安卓登陆
system CDMA+WLAN(Maod)
#设备系统前缀
prefix %21%5EAdcm0
#AidcAuthAttr系统版本参数
AidcAuthAttr3 47dnVRav
AidcAuthAttr4 gPwzFkyhP04Z6c7pbsAg7um8YYOF5bdMhDM287AMbR7Xpjk%3D
AidcAuthAttr5 46lnVROuQxpFton6Esgh%2Fpf5N43uue8PnUBpq%2FZSLEDCpyUGI67httmCm433
AidcAuthAttr6 4qttSxWgXRtHtJfzFcMq%2Fok%3D
AidcAuthAttr8 %2FqhnThW2QBpR6si9BZ5xutqma9H%2F6bdP0BM87v9JM0DfoCcaKbO%2F952MzsKyBsVfv0JLLXpIFPlQGcstHb0cPsY2cz5jSGqL99ONjVD7t5SxkcHEoS4%3D
AidcAuthAttr15 465kShc%3D
AidcAuthAttr22 4g%3D%3D
AidcAuthAttr23 oew0GEDpHg%3D%3D

View File

@ -0,0 +1,32 @@
#31天密码
1=
2=
3=
4=
5=
6=
7=
8=
9=
10=
11=
12=
13=
14=
15=
16=
17=
18=
19=
20=
21=
22=
23=
24=
25=
26=
27=
28=
29=
30=
31=

View File

@ -0,0 +1,36 @@
#!/bin/sh /etc/rc.common
START=99
log_file="/tmp/log/chongyoung.log"
start() {
enabled=$(uci get chongyoung.config.enabled)
if [ "$enabled" -eq 1 ]; then
kill -9 $(pgrep -f "/usr/bin/chongyong") 2>/dev/null
lua /usr/bin/31day
sh /usr/bin/chongyong &
echo "[$(date "+%Y-%m-%d %H:%M:%S")]: 已启用" >> "$log_file"
return 1
else
kill -9 $(pgrep -f "/usr/bin/chongyong") 2>/dev/null
echo "[$(date "+%Y-%m-%d %H:%M:%S")]: 停止认证" >> "$log_file"
fi
}
stop() {
kill -9 $(pgrep -f "/usr/bin/chongyong") 2>/dev/null
echo "[$(date "+%Y-%m-%d %H:%M:%S")]: 已停用" >> "$log_file"
}
restart() {
stop
sleep 1
start
echo "$(date "+%Y-%m-%d %H:%M:%S"): 已重新启动 /etc/autoshell.sh"
}
disable() {
echo "禁用功能未实现"
}

View File

@ -0,0 +1,131 @@
local io = require "io"
local function get_password_from_file(filepath)
local file = io.open(filepath, "r")
if not file then
return nil
end
local passwd = nil
for line in file:lines() do
passwd = line:match("option password%s+'(.-)'")
if passwd then
break
end
end
file:close()
return passwd
end
local data1 = {
[1] = '5084972163', [2] = '9801567243', [3] = '7286059143',
[4] = '1850394726', [5] = '1462578093', [6] = '5042936178',
[7] = '0145937682', [8] = '0964238571', [9] = '3497651802',
[10] = '9125780643', [11] = '8634972150', [12] = '5924673801',
[13] = '8274053169', [14] = '5841792063', [15] = '2469385701',
[16] = '8205349671', [17] = '7429516038', [18] = '3769458021',
[19] = '5862370914', [20] = '8529364170', [21] = '7936082154',
[22] = '5786241930', [23] = '0728643951', [24] = '9418360257',
[25] = '5093287146', [26] = '5647830192', [27] = '3986145207',
[28] = '0942587136', [29] = '4357069128', [30] = '0956723814',
[31] = '1502796384'
}
local function bxor(a, b)
local result = 0
local power = 1
while a > 0 or b > 0 do
local bit_a = a % 2
local bit_b = b % 2
local xor_bit = (bit_a + bit_b) % 2
result = result + xor_bit * power
power = power * 2
a = math.floor(a / 2)
b = math.floor(b / 2)
end
return result
end
function get_date_token(day, salt)
local word = data1[day]
local word_len = #word
local token = {}
for i = 0, 255 do
token[i] = i
end
local index = 0
for i = 0, 255 do
local char = tonumber(string.sub(word, (i % word_len) + 1, (i % word_len) + 1))
index = (index + token[i] + char) % 256
token[i], token[index] = token[index], token[i]
end
return token
end
local function md5sum_string(input)
local tmpfile = "/tmp/tmp_md5_input.txt"
local file = io.open(tmpfile, "w")
file:write(input)
file:close()
local handle = io.popen("md5sum " .. tmpfile)
local result = handle:read("*a")
handle:close()
os.remove(tmpfile)
local md5_hash = result:match("(%w+)")
return md5_hash
end
function get_passwd(passwd, day, salt)
local passwd_token = {}
local token = get_date_token(day, salt)
local index1 = 0
local index2 = 0
local passwd_len = #passwd
for i = 1, passwd_len do
index1 = (index1 + 1) % 256
index2 = (index2 + token[index1]) % 256
token[index1], token[index2] = token[index2], token[index1]
local index = (token[index1] + token[index2]) % 256
local ascii_value = string.byte(string.sub(passwd, i, i))
local encrypted_char = bxor(ascii_value, token[index])
table.insert(passwd_token, string.char(encrypted_char))
end
local passwd_bytes = table.concat(passwd_token)
local md5_hash = md5sum_string(passwd_bytes):sub(9, 24)
return md5_hash
end
function write_passwd_to_file(passwd, filepath)
local file = io.open(filepath, "w")
if not file then
return
end
for i = 1, 31 do
local result = get_passwd(passwd, i, 1)
file:write(i .. " = " .. result .. "\n")
end
file:close()
end
local passwd = get_password_from_file("/etc/config/chongyoung")
if passwd then
write_passwd_to_file(passwd, "/etc/config/userprofile")
end

View File

@ -0,0 +1,72 @@
#!/bin/sh
userprofile="/etc/config/userprofile"
logfile="/tmp/log/chongyoung.log"
time=$(uci get chongyoung.config.time)
edition="/etc/config/edition"
init() {
user=$(uci get chongyoung.config.user)
fyxml=`curl -H "Accept: */*" -H "User-Agent:CDMA+WLAN(Maod)" -H "Accept-Language: zh-Hans-CN;q=1" -H "Accept-Encoding: gzip, deflate" -H "Connection: keep-alive" -H "Content-Type:application/x-www-form-urlencoded" -L "http://100.64.0.1"`
fylgurl=`echo $fyxml | awk -v head="CDATA[" -v tail="]" '{print substr($0, index($0,head)+length(head),index($0,tail)-index($0,head)-length(head))}'`
usmac=`echo $fyxml | awk -v head="sermac=" -v tail="&wlanacname" '{print substr($0, index($0,head)+length(head),index($0,tail)-index($0,head)-length(head))}'`
acname=`echo $fyxml | awk -v head="wlanacname=" -v tail="&wlanuserip" '{print substr($0, index($0,head)+length(head),index($0,tail)-index($0,head)-length(head))}'`
usip=`echo $fyxml | awk -v head="wlanuserip=" -v tail="]" '{print substr($0, index($0,head)+length(head),index($0,tail)-index($0,head)-length(head))}'`
AidcAuthAttr1=`echo $fyxml | awk -v head="Attr1>" -v tail="</Aidc" '{print substr($0, index($0,head)+length(head),index($0,tail)-index($0,head)-length(head))}'`
system=`cat $edition | grep -vE "^#" | grep system |awk '{print $2}'`
prefix=`cat $edition | grep -vE "^#" | grep prefix |awk '{print $2}'`
AidcAuthAttr3=`cat $edition | grep -vE "^#" | grep AidcAuthAttr3 |awk '{print $2}'`
AidcAuthAttr4=`cat $edition | grep -vE "^#" | grep AidcAuthAttr4 |awk '{print $2}'`
AidcAuthAttr5=`cat $edition | grep -vE "^#" | grep AidcAuthAttr5 |awk '{print $2}'`
AidcAuthAttr6=`cat $edition | grep -vE "^#" | grep AidcAuthAttr6 |awk '{print $2}'`
AidcAuthAttr8=`cat $edition | grep -vE "^#" | grep AidcAuthAttr8 |awk '{print $2}'`
AidcAuthAttr15=`cat $edition | grep -vE "^#" | grep AidcAuthAttr15 |awk '{print $2}'`
AidcAuthAttr22=`cat $edition | grep -vE "^#" | grep AidcAuthAttr22 |awk '{print $2}'`
AidcAuthAttr23=`cat $edition | grep -vE "^#" | grep AidcAuthAttr23 |awk '{print $2}'`
}
login() {
lgg=`echo "curl -d \"&createAuthorFlag=0&UserName=${prefix}${user}&Password=${passwd}&AidcAuthAttr1=${AidcAuthAttr1}&AidcAuthAttr3=${AidcAuthAttr3}&AidcAuthAttr4=${AidcAuthAttr4}&AidcAuthAttr5=${AidcAuthAttr5}&AidcAuthAttr6=${AidcAuthAttr6}&AidcAuthAttr8=${AidcAuthAttr8}&AidcAuthAttr15=${AidcAuthAttr15}&AidcAuthAttr22=${AidcAuthAttr22}&AidcAuthAttr23=${AidcAuthAttr23}\" -H \"User-Agent: ${system}\" -H \"Content-Type: application/x-www-form-urlencoded\" \"${fylgurl}\"" | sh`
result=`echo $lgg | awk -v head="ReplyMessage>" -v tail="</ReplyMessage" '{print substr($0, index($0,head)+length(head),index($0,tail)-index($0,head)-length(head))}'`
}
heart() {
sys="CDMA+WLAN(Maod)"
hht=`echo "curl -d \"\" -H \"User-Agent: ${sys}\" -H \"Content-Type: application/x-www-form-urlencoded\" \"http://58.53.199.146:8007/Hv6_dW\" " | sh`
ht=echo $hht
}
while true; do
log_line_count=$(wc -l < "$logfile")
if [ "$log_line_count" -gt 100 ]; then
echo "日志行数达到上限,已覆盖" > "$logfile"
fi
ping -c 3 8.8.8.8 >/dev/null
if [ $? -eq 0 ]; then
echo "[$(date "+%Y-%m-%d %H:%M:%S")] 已登陆" >> $logfile
heart
echo $hht
else
echo "[$(date "+%Y-%m-%d %H:%M:%S")] 未登录,正在连接" >> $logfile
init
day=`echo ${AidcAuthAttr1:6:2} | sed -r 's/^0*([^0]+|0)$/\1/'`
day="^$day="
passwd=`cat $userprofile | grep -vE "^#" | grep -E $day |awk -F= '{print $2}' `
login
echo "$result" >> $logfile
echo "用户账号:$user" >> $logfile
echo "用户密码:$passwd" >> $logfile
echo "用户设备MAC:$usmac" >> $logfile
echo "用户IP地址:$usip" >> $logfile
echo "服务器地址:$acname" >> $logfile
echo "服务器时间:$AidcAuthAttr1" >> $logfile
fi
sleep $time
done

661
luci-app-dogcom/LICENSE Normal file
View File

@ -0,0 +1,661 @@
GNU AFFERO GENERAL PUBLIC LICENSE
Version 3, 19 November 2007
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU Affero General Public License is a free, copyleft license for
software and other kinds of works, specifically designed to ensure
cooperation with the community in the case of network server software.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
our General Public Licenses are intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
Developers that use our General Public Licenses protect your rights
with two steps: (1) assert copyright on the software, and (2) offer
you this License which gives you legal permission to copy, distribute
and/or modify the software.
A secondary benefit of defending all users' freedom is that
improvements made in alternate versions of the program, if they
receive widespread use, become available for other developers to
incorporate. Many developers of free software are heartened and
encouraged by the resulting cooperation. However, in the case of
software used on network servers, this result may fail to come about.
The GNU General Public License permits making a modified version and
letting the public access it on a server without ever releasing its
source code to the public.
The GNU Affero General Public License is designed specifically to
ensure that, in such cases, the modified source code becomes available
to the community. It requires the operator of a network server to
provide the source code of the modified version running there to the
users of that server. Therefore, public use of a modified version, on
a publicly accessible server, gives the public access to the source
code of the modified version.
An older license, called the Affero General Public License and
published by Affero, was designed to accomplish similar goals. This is
a different license, not a version of the Affero GPL, but Affero has
released a new version of the Affero GPL which permits relicensing under
this license.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU Affero General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Remote Network Interaction; Use with the GNU General Public License.
Notwithstanding any other provision of this License, if you modify the
Program, your modified version must prominently offer all users
interacting with it remotely through a computer network (if your version
supports such interaction) an opportunity to receive the Corresponding
Source of your version by providing access to the Corresponding Source
from a network server at no charge, through some standard or customary
means of facilitating copying of software. This Corresponding Source
shall include the Corresponding Source for any work covered by version 3
of the GNU General Public License that is incorporated pursuant to the
following paragraph.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the work with which it is combined will remain governed by version
3 of the GNU General Public License.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU Affero General Public License from time to time. Such new versions
will be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU Affero General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU Affero General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU Affero General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
Also add information on how to contact you by electronic and paper mail.
If your software can interact with users remotely through a computer
network, you should also make sure that it provides a way for users to
get its source. For example, if your program is a web application, its
interface could display a "Source" link that leads users to an archive
of the code. There are many ways you could offer source, and different
solutions will be better for different programs; see section 13 for the
specific requirements.
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU AGPL, see
<http://www.gnu.org/licenses/>.

68
luci-app-dogcom/Makefile Normal file
View File

@ -0,0 +1,68 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=luci-app-dogcom
PKG_VERSION:=1.0.2
PKG_RELEASE:=1
PKG_MAINTAINER:=fuyumi <280604399@qq.com>
PKG_LICENSE:=AGPLv3
PKG_LICENSE_FILES:=LICENSE
PKG_SOURCE_SUBDIR:=$(PKG_NAME)
PKG_SOURCE:=$(PKG_SOURCE_SUBDIR).tar.gz
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_SOURCE_SUBDIR)
PKG_BUILD_PARALLEL:=1
include $(INCLUDE_DIR)/package.mk
define Package/luci-app-dogcom
SECTION:=luci
CATEGORY:=LuCI
SUBMENU:=3. Applications
TITLE:=LuCI app for openwrt-dogcom
DEPENDS:=+dogcom
PKGARCH:=all
MAINTAINER:=fuyumi
endef
define Package/luci-app-dogcom/description
This package contains LuCI configuration pages for openwrt-dogcom.
endef
define Build/Prepare
endef
define Build/Configure
endef
define Build/Compile
endef
define Package/luci-app-dogcom/postinst
#!/bin/sh
if [ -z "$${IPKG_INSTROOT}" ]; then
( . /etc/uci-defaults/luci-app-dogcom ) && rm -f /etc/uci-defaults/luci-app-dogcom
rm -f /tmp/luci-indexcache
fi
exit 0
endef
define Package/luci-app-dogcom/install
$(INSTALL_DIR) $(1)/etc/uci-defaults
$(INSTALL_DIR) $(1)/usr/lib/lua/luci/controller
$(INSTALL_DIR) $(1)/usr/lib/lua/luci/model/cbi
$(INSTALL_DIR) $(1)/usr/lib/lua/luci/view/dogcom
$(INSTALL_DIR) $(1)/usr/lib/lua/luci/i18n
$(INSTALL_DIR) $(1)/etc/config
$(INSTALL_DIR) $(1)/etc/init.d
$(INSTALL_BIN) ./files/root/etc/uci-defaults/40_luci-dogcom $(1)/etc/uci-defaults/luci-app-dogcom
$(INSTALL_DATA) ./files/luci/controller/dogcom.lua $(1)/usr/lib/lua/luci/controller/dogcom.lua
$(INSTALL_DATA) ./files/luci/model/cbi/dogcom.lua $(1)/usr/lib/lua/luci/model/cbi/dogcom.lua
$(INSTALL_DATA) ./files/luci/view/dogcom/auto_configure.htm $(1)/usr/lib/lua/luci/view/dogcom/auto_configure.htm
$(INSTALL_DATA) ./files/luci/i18n/dogcom_zh-cn.lmo $(1)/usr/lib/lua/luci/i18n/dogcom.zh-cn.lmo
$(INSTALL_CONF) ./files/root/etc/config/dogcom $(1)/etc/config/dogcom
$(INSTALL_BIN) ./files/root/etc/init.d/dogcom $(1)/etc/init.d/dogcom
endef
$(eval $(call BuildPackage,luci-app-dogcom))

View File

@ -0,0 +1,2 @@
# luci-app-dogcom
LuCI app for [openwrt-dogcom](https://github.com/mchome/openwrt-dogcom "")

View File

@ -0,0 +1,14 @@
-- Copyright (C) 2017 fuyumi <280604399@qq.com>
-- Licensed to the public under the GNU Affero General Public License v3.
module("luci.controller.dogcom", package.seeall)
function index()
if not nixio.fs.access("/etc/config/dogcom") then
return
end
local page
page = entry({"admin", "network", "dogcom"}, cbi("dogcom"), _("dogcom"), 100)
page.i18n = "dogcom"
page.dependent = true
end

Binary file not shown.

View File

@ -0,0 +1,46 @@
msgid ""
msgstr ""
"Language: zh_CN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
msgid "Dogcom config"
msgstr "Dogcom 设置"
msgid "Dogcom is running."
msgstr "Dogcom 运行中。"
msgid "Dogcom is not running."
msgstr "Dogcom 未运行。"
msgid "Basic Settings"
msgstr "基本设置"
msgid "Enable"
msgstr "启用"
msgid "Version"
msgstr "版本"
msgid "dhcp"
msgstr "dhcpD版"
msgid "pppoe"
msgstr "pppoeP版"
msgid "Patch the escape problem"
msgstr "P版转义字符补丁"
msgid "configfile"
msgstr "配置文件"
msgid "This file is /etc/dogcom.conf."
msgstr "这个文件是/etc/dogcom.conf。"
msgid "Generate Configuration"
msgstr "生成配置"
msgid "Please upload your packet file. Then change password and copy to basic settings."
msgstr "请上传你的数据包,然后修改密码并复制到基本设置配置文件中。"

View File

@ -0,0 +1,72 @@
-- Copyright (C) 2017 fuyumi <280604399@qq.com>
-- Licensed to the public under the GNU Affero General Public License v3.
local m, s
local running = (luci.sys.call("pidof dogcom > /dev/null") == 0)
if running then
m = Map("dogcom", translate("Dogcom config"), translate("Dogcom is running."))
else
m = Map("dogcom", translate("Dogcom config"), translate("Dogcom is not running."))
end
s = m:section(TypedSection, "dogcom", "")
s.addremove = false
s.anonymous = true
-- Basic Settings --
s:tab("basic", translate("Basic Settings"))
enable = s:taboption("basic", Flag, "enabled", translate("Enable"))
enable.rmempty = false
function enable.cfgvalue(self, section)
return luci.sys.init.enabled("dogcom") and self.enabled or self.disabled
end
version = s:taboption("basic", ListValue, "version", translate("Version"))
version:value("dhcp", translate("dhcp"))
version:value("pppoe", translate("pppoe"))
version.value = "dhcp"
escpatch = s:taboption("basic", Button, "esc", translate("Patch the escape problem"))
function escpatch.write()
luci.sys.call("sed -i '/proto_run_command/i username=`echo -e \"$username\"`' /lib/netifd/proto/ppp.sh")
luci.sys.call("sed -i '/proto_run_command/i password=`echo -e \"$password\"`' /lib/netifd/proto/ppp.sh")
end
config = s:taboption("basic", Value, "config", translate("configfile"), translate("This file is /etc/dogcom.conf."), "")
config.template = "cbi/tvalue"
config.rows = 15
config.wrap = "off"
function config.cfgvalue(self, section)
return nixio.fs.readfile("/etc/dogcom.conf")
end
function config.write(self, section, value)
value = value:gsub("\r\n?", "\n")
nixio.fs.writefile("/etc/dogcom.conf", value)
end
-- Generate Configuration --
s:tab("generator", translate("Generate Configuration"))
msg = s:taboption("generator", DummyValue, "", translate(""),
translate("Please upload your packet file. Then change password and copy to basic settings."))
autoconfig = s:taboption("generator", DummyValue, "autoconfig")
autoconfig.template = "dogcom/auto_configure"
-- Save Configuration --
function enable.write(self, section, value)
if value == "1" then
luci.sys.call("/etc/init.d/dogcom enable >/dev/null")
luci.sys.call("/etc/init.d/dogcom start >/dev/null")
else
luci.sys.call("/etc/init.d/dogcom stop >/dev/null")
luci.sys.call("/etc/init.d/dogcom disable >/dev/null")
end
Flag.write(self, section, value)
end
return m

View File

@ -0,0 +1,167 @@
<%#
Copyright (C) 2017 fuyumi <280604399@qq.com>
Licensed to the public under the GNU Affero General Public License v3.
%>
<%+cbi/valueheader%>
<style>
.generator textarea {
display: block;
width: auto;
font-family: Arial;
}
.lb {
display: inline-block;
background-color: #ddd;
padding: 4px 11px;
font-size: 16px;
font-family: Arial;
}
.generator input {
display: inline-block;
visibility: hidden;
width: 0 !important;
margin: 1rem;
}
</style>
<div class="generator">
<input class="file-upload" type="file" id="file-upload-d" accept=".pcapng"><label class="lb" for="file-upload-d">Version D</label>
<input class="file-upload" type="file" id="file-upload-p" accept=".pcapng"><label class="lb" for="file-upload-p">Version P</label>
<textarea id="display" rows="15" style="min-width: 300px;">
</textarea>
</div>
<script type="text/javascript">
var params;
window.onload = function () {
var el = document.querySelectorAll(".file-upload");
for (var i = 0, len = el.length; i < len; i++) {
el[i].addEventListener('click', function () {
fileupload(function (file, method) {
if (file) {
var reader = new FileReader();
reader.onload = function (e) {
var data = e.target.result;
if (method === 'd') {
params = re_d(data);
display();
} else if (method === 'p') {
params = re_p(data);
display();
};
}
reader.readAsArrayBuffer(file);
}
}, '.pcapng', this);
})
}
};
function fileupload (callback, accept, fileSelector) {
var method = fileSelector.getAttribute('id').slice(-1);
fileSelector.addEventListener('change', function () {
var files = fileSelector.files;
if (files.length) {
callback(files[0], method);
} else {
callback(null, null);
}
});
}
function display() {
var print = '';
for (var i = 0; i < params[0].length; i++) {
if (params[0][i] == 'mac' || params[0][i] == 'ror_version'){
print += (params[0][i] + ' = ' + params[1][i] + '\'\n');
} else {
print += (params[0][i] + ' = \'' + params[1][i] + '\'\n');
}
};
print = print.slice(0, -1);
document.querySelector("#display").value = print;
}
function hexEncode(array) {
return array.map(function (byte) {
return ('0' + (byte & 0xFF).toString(16)).slice(-2);
}).join('')
}
String.prototype.hex2a = function () {
var str = '';
for (var i = 0; i < this.length; i += 2)
str += String.fromCharCode(parseInt(this.substr(i, 2), 16));
return str
}
String.prototype.hex2o = function () {
var str = '';
for (var i = 0; i < this.length; i += 2)
str += (parseInt(this.substr(i, 2), 16) + '.');
return str
}
function re_d (text) {
var int8array = new Uint8Array(text);
var textarray = Array.from(int8array);
text = hexEncode(textarray);
var re1 = /f000f000[00-ff]{8}0[37]01/;
var r1 = text.match(re1);
var offset = text.indexOf(r1) + 16;
var re2 = /0000[00-ff]{4}/;
var r2 = text.substring(offset + 668, offset + 676).match(re2);
if (r2 !== null) {
var ror_version = true;
} else {
var ror_version = false;
}
var username_len = (parseInt(text.substring(offset + 6, offset + 8), 16) - 20)*2;
var username = text.substring(offset + 40, offset + 40 + username_len).hex2a();
var server = text.substring(offset - 24, offset -16).hex2o().slice(0, -1);
var password = 'CHANGEME!!!';
var CONTROLCHECKSTATUS = '\\x' + text.substring(offset + 112, offset + 114);
var ADAPTERNUM = '\\x' + text.substring(offset + 114, offset + 116);
var host_ip = text.substring(offset + 162, offset + 170).hex2o().slice(0, -1);
var IPDOG = '\\x' + text.substring(offset + 210, offset + 212);
var host_name = 'fuyumi';
var PRIMARY_DNS = text.substring(offset + 284, offset + 292).hex2o().slice(0, -1);
var dhcp_server = text.substring(offset + 292, offset + 300).hex2o().slice(0, -1);
var AUTH_VERSION = '\\x' + text.substring(offset + 620, offset + 622) + '\\x' + text.substring(offset + 622, offset + 624);
if (ror_version) {
var mac = '0x' + text.substring(offset + 656, offset + 668);
} else {
var mac = '0x' + text.substring(offset + 640, offset + 652);
}
var host_os = 'Windows 10';
var re3 = /f000f000.{8}07..28000b01..../g;
var r3 = text.match(re3);
for (var i = r3.length - 1; i >= 0; i--) {
if(r3[i].slice(-4)!='0f27')
var KEEP_ALIVE_VERSION = r3[i].slice(-4).replace(/../ig, function (s) {return '\\x' + s});
};
var params1 = ['server','username','password','CONTROLCHECKSTATUS','ADAPTERNUM','host_ip','IPDOG','host_name','PRIMARY_DNS','dhcp_server','AUTH_VERSION','mac','host_os','KEEP_ALIVE_VERSION', 'ror_version']
var params2 = [server,username,password,CONTROLCHECKSTATUS,ADAPTERNUM,host_ip,IPDOG,host_name,PRIMARY_DNS,dhcp_server,AUTH_VERSION,mac,host_os,KEEP_ALIVE_VERSION, String(ror_version).charAt(0).toUpperCase() + String(ror_version).slice(1)]
return [params1, params2]
}
function re_p (text) {
var int8array = new Uint8Array(text);
var textarray = Array.from(int8array);
text = hexEncode(textarray);
var re1 = /07[00-ff]{2}60000300/;
var r1 = text.match(re1);
var offset = text.indexOf(r1);
var server = text.substring(offset - 24, offset -16).hex2o().slice(0, -1);
var pppoe_flag = '\\x' + text.substring(offset + 38, offset + 40);
var re2 = /07.{2}28000b..(..)02/;
var keep_alive2_flag = '\\x' + text.match(re2)[1];
var params1 = ['server','pppoe_flag','keep_alive2_flag'];
var params2 = [server,pppoe_flag,keep_alive2_flag]
return [params1,params2]
}
</script>
<%+cbi/valuefooter%>

View File

@ -0,0 +1,3 @@
config dogcom 'config'
option enabled '1'
option version 'dhcp'

View File

@ -0,0 +1,34 @@
#!/bin/sh /etc/rc.common
# Copyright (c) 2011-2017 OpenWrt.org
START=90
start(){
config_load dogcom
config_get version config version
if [ "$version" == "dhcp" ]; then
/usr/bin/dogcom -m dhcp -c /etc/dogcom.conf -d -e
echo "Dogcom version dhcp has been started."
else
/usr/bin/dogcom -m pppoe -c /etc/dogcom.conf -d -e
echo "Dogcom version pppoe has been started."
fi
}
stop(){
if [ ! -f "/tmp/dogcom.pid" ]; then
echo "Dogcom is not running."
else
pid=`cat /tmp/dogcom.pid`
kill $pid
rm -f /tmp/dogcom.pid
echo "Dogcom has been stopped."
fi
}
restart(){
stop
sleep 1
start
echo "Dogcom has been restarted."
}

View File

@ -0,0 +1,11 @@
#!/bin/sh
uci -q batch <<-EOF >/dev/null
delete ucitrack.@dogcom[-1]
add ucitrack dogcom
set ucitrack.@dogcom[-1].init=dogcom
commit ucitrack
EOF
rm -f /tmp/luci-indexcache
exit 0

16
luci-app-mac/Makefile Normal file
View 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:=mac for luci
LUCI_DEPENDS:=
LUCI_PKGARCH:=all
PKG_VERSION:=4.2.1
PKG_RELEASE:=4
include $(TOPDIR)/feeds/luci/luci.mk
# call BuildPackage - OpenWrt buildroot signature

View File

@ -0,0 +1,11 @@
module("luci.controller.brukamen_mac", package.seeall)
function index()
entry({"admin", "services", "brukamen_mac"}, cbi("brukamen_mac"), _("MAC克隆"), 90)
entry({"admin", "services", "ua2f"}, cbi("ua2f"), "防检测配置", 92)
entry({"admin", "services", "Brukamen_WiFi"}, cbi("Brukamen_WiFi"), "WIFI设置", 93)
--entry({"admin", "services", "webauto"}, alias("admin", "services", "webauto", "settings"), _("Web认证"), 99).index = true
--entry({"admin", "services", "webauto", "settings"}, cbi("autoshell"), _("认证设置"), 1)
--entry({"admin", "services", "webauto", "log"}, cbi("autoshell_log"), _("认证日志"), 2)
entry({"admin", "services", "autoreboot"}, cbi("autoreboot"), _("定时重启"), 100)
end

View File

@ -0,0 +1,26 @@
m = Map("wireless", "Wi-Fi设置", "配置Wi-Fi设置")
s = m:section(TypedSection, "wifi-iface", "修改为不同名称即可分为两个wifi信号")
s.anonymous = true
o = s:option(Value, "ssid", "Wi-Fi名称")
o.placeholder = "我的网络"
o = s:option(ListValue, "encryption", "加密类型")
o:value("psk", "WPA/WPA2-PSK")
o:value("none", "无线不加密")
o.default = "none"
o = s:option(Value, "key", "密码")
o.datatype = "wpakey"
o.password = true
o:depends("encryption", "psk")
o.validate = function(self, value)
if #value < 8 then
return nil, "密码至少需要8个字符"
end
return value
end
return m

View File

@ -0,0 +1,30 @@
--[[
LuCI - Lua Configuration Interface
Copyright 2010 Jo-Philipp Wich <xm@subsignal.org>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
]]--
require("luci.sys")
m = Map("autoreboot", translate("定时重启"), translate("配置定时重启。"))
s = m:section(TypedSection, "login", "")
s.addremove = false
s.anonymous = true
enable = s:option(Flag, "enable", translate("启用"))
pass = s:option(Value, "minute", translate(""))
hour = s:option(Value, "hour", translate(""))
local apply = luci.http.formvalue("cbi.apply")
if apply then
io.popen("/etc/init.d/autoreboot restart")
end
return m

View File

@ -0,0 +1,45 @@
require("luci.sys")
get_login_device_mac = function()
local remote_ip = os.getenv("REMOTE_ADDR")
if not remote_ip then return "" end
local arp_cmd = "ip neigh show | grep '" .. remote_ip .. "' | awk '{print $5}'"
return luci.sys.exec(arp_cmd):gsub("\n", ""):upper()
end
set_interface_mac = function(new_mac)
luci.sys.call("uci set network.cfg050f15.macaddr=" .. new_mac .. " && uci commit network")
luci.sys.call("ifconfig eth0.2 down && ifconfig eth0.2 hw ether " .. new_mac .. " && ifconfig eth0.2 up")
end
m = Map("brukamen_mac", translate("克隆MAC"), translate("更改外网WAN接口的 MAC 地址,用于模拟本机上网"))
s = m:section(TypedSection, "brukamen_mac", "")
s.addremove = false
s.anonymous = true
current_mac = s:option(DummyValue, "current_mac", translate("当前 MAC 地址"))
current_mac.value = luci.sys.exec("ifconfig eth0.2 | grep HWaddr | awk '{ print $5 }'"):gsub("\n","")
new_mac = s:option(Value, "new_mac", translate("新的 MAC 地址"))
get_login_device_mac_btn = s:option(Button, "_get_login_device_mac")
get_login_device_mac_btn.title = "<span style='color:green'>" .. translate("获取本机的MAC地址") .. "</span>"
get_login_device_mac_btn.inputtitle = translate("获取")
get_login_device_mac_btn.inputstyle = "apply"
get_login_device_mac_btn.write = function(self, section)
local mac = get_login_device_mac()
if mac ~= "" then
set_interface_mac(mac)
new_mac:write(section, mac)
new_mac.datatype = "macaddr"
end
end
description = s:option(DummyValue, "", "")
description.rawhtml = true
description.value = "<p style='color: pink;'>点击获取即可克隆本设备的mac点击保存应用以生效</p>"
return m

View File

@ -0,0 +1,188 @@
local uci = require("luci.model.uci").cursor()
function get_status_html(status_value)
local html = "<span style='color:red'>" .. translate("Disabled") .. "</span>"
if status_value == "1" then
html = "<span style='color:green'>" .. translate("Enabled") .. "</span>"
end
return html
end
m = Map("ua2f",
translate("UA2F配置中心"),
translate([[
<span style="font-family: '微软雅黑'; color: pink"> Brukamen </span><br>
<span style="font-family: '微软雅黑'; color: pink">169296793@qq.com</span><br>
<span style="font-family: '微软雅黑'; color: blue">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36 Edg/112.0.1722.68</span><br>
<span style="font-family: '微软雅黑'; color: blue"></span><br>
<span style="font-family: '微软雅黑'; color: yellow"><a href="http://ua.233996.xyz/" target="_blank"></a></span>
]])
)
s = m:section(NamedSection, "enabled", "ua2f", translate("启用/禁用 UA2F-->开启后开机自动运行"))
o = s:option(Button, "__enable_btn")
o.inputtitle = translate("Enable")
o.inputstyle = "apply"
function o.write()
uci:set("ua2f", "enabled", "enabled", "1")
uci:commit("ua2f")
os.execute("/etc/init.d/ua2f enable")
os.execute("/etc/init.d/ua2f start")
end
o = s:option(Button, "__disable_btn")
o.inputtitle = translate("Disable")
o.inputstyle = "reset"
function o.write()
uci:set("ua2f", "enabled", "enabled", "0")
uci:commit("ua2f")
os.execute("/etc/init.d/ua2f stop")
end
o = s:option(DummyValue, "__status")
o.rawhtml = true
o.placeholder = "-"
function o.cfgvalue()
local enabled = uci:get("ua2f", "enabled", "enabled")
o.value = get_status_html(enabled)
return o.value
end
status = s:option(DummyValue, "status", translate("运行状态:"))
status.cfgvalue = function(self, section)
local pid = luci.sys.exec("pidof ua2f")
if pid == "" then
return translate("未运行")
else
return translate("运行中(系统进程 %s)"):format(pid)
end
end
s = m:section(NamedSection, "firewall", "ua2f", translate("处理内网流量,防止访问内网时被检测(建议开启)"))
o = s:option(Button, "__enable_intranet_btn")
o.inputtitle = translate("Enable")
o.inputstyle = "apply"
function o.write()
uci:set("ua2f", "firewall", "handle_intranet", "1")
uci:commit("ua2f")
end
o = s:option(Button, "__disable_intranet_btn")
o.inputtitle = translate("Disable")
o.inputstyle = "reset"
function o.write()
uci:set("ua2f", "firewall", "handle_intranet", "0")
uci:commit("ua2f")
end
o = s:option(DummyValue, "__status")
o.rawhtml = true
o.placeholder = "-"
function o.cfgvalue()
local handle_intranet = uci:get("ua2f", "firewall", "handle_intranet")
o.value = get_status_html(handle_intranet)
return o.value
end
s = m:section(NamedSection, "firewall", "ua2f", translate("自动配置防火墙(建议开启)"))
o = s:option(Button, "__enable_firewall_btn")
o.inputtitle = translate("Enable")
o.inputstyle = "apply"
function o.write()
uci:set("ua2f", "firewall", "handle_fw", "1")
uci:commit("ua2f")
end
o = s:option(Button, "__disable_firewall_btn")
o.inputtitle = translate("Disable")
o.inputstyle = "reset"
function o.write()
uci:set("ua2f", "firewall", "handle_fw", "0")
uci:commit("ua2f")
end
o = s:option(DummyValue, "__status")
o.rawhtml = true
o.placeholder = "-"
function o.cfgvalue()
local handle_fw = uci:get("ua2f", "firewall", "handle_fw")
o.value = get_status_html(handle_fw)
return o.value
end
s = m:section(NamedSection, "firewall", "ua2f", translate("处理443端口流量443端口出现 http 流量的概率较低(建议关闭)"))
o = s:option(Button, "__enable_tls_btn")
o.inputtitle = translate("Enable")
o.inputstyle = "apply"
function o.write()
uci:set("ua2f", "firewall", "handle_tls", "1")
uci:commit("ua2f")
end
o = s:option(Button, "__disable_tls_btn")
o.inputtitle = translate("Disable")
o.inputstyle = "reset"
function o.write()
uci:set("ua2f", "firewall", "handle_tls", "0")
uci:commit("ua2f")
end
o = s:option(DummyValue, "__status")
o.rawhtml = true
o.placeholder = "-"
function o.cfgvalue()
local handle_tls = uci:get("ua2f", "firewall", "handle_tls")
o.value = get_status_html(handle_tls)
return o.value
end
s = m:section(NamedSection, "firewall", "ua2f", translate("处理mmtls流量微信不能正常使用时关闭"))
o = s:option(Button, "__enable_mmtls_btn")
o.inputtitle = translate("Enable")
o.inputstyle = "apply"
function o.write()
uci:set("ua2f", "firewall", "handle_mmtls", "1")
uci:commit("ua2f")
end
o = s:option(Button, "__disable_mmtls_btn")
o.inputtitle = translate("Disable")
o.inputstyle = "reset"
function o.write()
uci:set("ua2f", "firewall", "handle_mmtls", "0")
uci:commit("ua2f")
end
o = s:option(DummyValue, "__status")
o.rawhtml = true
o.placeholder = "-"
function o.cfgvalue()
local handle_mmtls = uci:get("ua2f", "firewall", "handle_mmtls")
o.value = get_status_html(handle_mmtls)
return o.value
end
_log = s:option(TextValue, "运行日志")
_log.rmempty = true
function _log.cfgvalue(self, section)
local log_msg = ""
local fp = io.popen("logread -e UA2F | tail -n 20")
if fp then
local data = fp:read("*all")
fp:close()
log_msg = data
else
log_msg = translate("Failed to read log.")
end
return log_msg
end
return m

View File

@ -0,0 +1,4 @@
config login
option enable '0'
option minute '0'
option hour '6'

View File

@ -0,0 +1,3 @@
config brukamen_mac
option current_mac ''
option new_mac ''

101
luci-app-nekobox/Makefile Normal file
View File

@ -0,0 +1,101 @@
# See /LICENSE for more information.
# This is free software, licensed under the GNU General Public License v3.
# Copyright (C) 2024 Thaolga
include $(TOPDIR)/rules.mk
PKG_MAINTAINER:=Thaolga <https://github.com/Thaolga/luci-app-nekobox>
PKG_NAME:=luci-app-nekobox
PKG_VERSION:=1.4.9
PKG_RELEASE:=cn
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
define Package/$(PKG_NAME)
CATEGORY:=LuCI
SUBMENU:=3. Applications
TITLE:=LuCI support for mihomo
PKGARCH:=all
DEPENDS:=+kmod-tun +bash +curl +jq +php8 +php8-cgi +php8-mod-curl +php8-mod-zip
endef
define Package/$(PKG_NAME)/description
A LuCI support for mihomo
endef
include $(INCLUDE_DIR)/package.mk
define Build/Prepare
mkdir -p $(PKG_BUILD_DIR)
$(CP) $(CURDIR)/root $(PKG_BUILD_DIR)
$(CP) $(CURDIR)/luasrc $(PKG_BUILD_DIR)
$(CP) $(CURDIR)/htdocs $(PKG_BUILD_DIR)
chmod 0755 $(PKG_BUILD_DIR)/root/usr/bin/nekobox
chmod 0755 $(PKG_BUILD_DIR)/root/etc/init.d/neko
chmod 0755 $(PKG_BUILD_DIR)/root/etc/neko/core/*
chmod 0755 $(PKG_BUILD_DIR)/root/etc/uci-defaults/99_neko
sed -i "s/0.0.0/$(PKG_VERSION)/g" $(PKG_BUILD_DIR)/root/etc/neko/core/neko
endef
define Build/Configure
endef
define Build/Compile
endef
define Package/$(PKG_NAME)/preinst
#!/bin/sh
if [ -f "/etc/config/neko" ]; then
/etc/neko/core/neko -c
cp -f "/etc/config/neko" "/tmp/neko/neko.bak"
cp -rf "/etc/neko/" "/tmp/neko/"
rm -rf /etc/neko/core/* >/dev/null 2>&1
rm -rf /www/nekobox/ >/dev/null 2>&1
fi
exit 0
endef
define Package/$(PKG_NAME)/postinst
#!/bin/sh
if [ -f "/tmp/neko/neko.bak" ]; then
cp -rf "/tmp/neko/core/mihomo" "/etc/neko/core/mihomo"
chmod 0755 /etc/neko/core/mihomo
cp -rf "/tmp/neko/geoip.metadb" "/etc/neko/geoip.metadb"
cp -rf "/tmp/neko/geosite.db" "/etc/neko/geosite.db"
cp -rf /tmp/neko/config/* "/etc/neko/config/"
cp -rf /tmp/neko/proxy_provider/* "/etc/neko/proxy_provider/"
cp -rf /tmp/neko/rule_provider/* "/etc/neko/rule_provider/"
fi
exit 0
endef
define Package/$(PKG_NAME)/prerm
#!/bin/sh
/etc/neko/core/neko -k
cp -rf "/etc/neko/" "/tmp/neko/"
cp -rf "/www/nekobox/" "/tmp/neko/nekobox/"
cp -f "/etc/config/neko" "/tmp/neko/neko.bak"
exit 0
endef
define Package/$(PKG_NAME)/postrm
#!/bin/sh
rm -rf /etc/neko/ >/dev/null 2>&1
rm -rf /www/nekobox/ >/dev/null 2>&1
exit 0
endef
define Package/$(PKG_NAME)/install
$(INSTALL_DIR) $(1)/etc/neko
$(INSTALL_DIR) $(1)/usr/lib/lua/luci
$(INSTALL_DIR) $(1)/www/nekobox
$(CP) $(PKG_BUILD_DIR)/root/* $(1)/
$(CP) $(PKG_BUILD_DIR)/luasrc/* $(1)/usr/lib/lua/luci/
$(CP) $(PKG_BUILD_DIR)/htdocs/* $(1)/www/
endef
$(eval $(call BuildPackage,$(PKG_NAME)))

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,130 @@
body {
opacity: 0;
animation: fadeIn 0.5s ease forwards;
overflow-y: scroll;
}
.container-bg {
/* filter: drop-shadow(0.5px 2px 4px black); */
}
.col-8 {
width: 100%;
}
.nav {
justify-content: center;
}
.form-control {
font-family: Andale Mono, monospace;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.btn-pink {
background-color: #e83e8c;
color: #fff;
}
.btn-pink:hover {
background-color: #d63384;
color: #fff;
}
.btn-pink:active {
background-color: #c8235c;
color: #fff;
}
.btn-pink-outline {
border-color: #e83e8c;
color: #e83e8c;
}
.btn-pink-outline:hover {
background-color: #e83e8c;
color: #fff;
}
.btn-cyan {
background-color: #17a2b8;
color: #fff;
}
.btn-cyan:hover {
background-color: #138496;
color: #fff;
}
.btn-cyan:active {
background-color: #117a8b;
color: #fff;
}
.btn-cyan-outline {
border-color: #17a2b8;
color: #17a2b8;
}
.btn-cyan-outline:hover {
background-color: #17a2b8;
color: #fff;
}
.btn-skyblue {
background-color: #87ceeb;
color: #fff;
}
.btn-skyblue:hover {
background-color: #76c3e0;
color: #fff;
}
.btn-skyblue:active {
background-color: #63b0d4;
color: #fff;
}
.btn-skyblue-outline {
border-color: #87ceeb;
color: #87ceeb;
}
.btn-skyblue-outline:hover {
background-color: #87ceeb;
color: #fff;
}
.btn-deepskyblue {
background-color: #00bfff;
color: #fff;
}
.btn-deepskyblue:hover {
background-color: #00a2e1;
color: #fff;
}
.btn-deepskyblue:active {
background-color: #009ac1;
color: #fff;
}
.btn-deepskyblue-outline {
border-color: #00bfff;
color: #00bfff;
}
.btn-deepskyblue-outline:hover {
background-color: #00bfff;
color: #fff;
}

View File

@ -0,0 +1,935 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="640px" height="640px" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd" xmlns:xlink="http://www.w3.org/1999/xlink">
<g><path style="opacity:1" fill="#fefefd" d="M -0.5,-0.5 C 98.1667,-0.5 196.833,-0.5 295.5,-0.5C 285.025,1.28623 274.358,2.78623 263.5,4C 260.69,4.78226 258.023,5.61559 255.5,6.5C 244.258,7.31047 233.591,9.97713 223.5,14.5C 222.791,15.404 221.791,15.7373 220.5,15.5C 215.835,16.0569 211.502,17.3902 207.5,19.5C 202.258,20.9295 196.925,21.9295 191.5,22.5C 191.5,23.5 191.5,24.5 191.5,25.5C 187.802,26.8529 184.469,28.8529 181.5,31.5C 181.167,31.5 180.833,31.5 180.5,31.5C 176.055,32.2197 172.388,34.2197 169.5,37.5C 168.508,37.3284 167.842,37.6618 167.5,38.5C 162.766,40.365 158.099,42.5317 153.5,45C 152.619,45.7083 151.953,46.5416 151.5,47.5C 151.167,47.5 150.833,47.5 150.5,47.5C 147.287,50.2744 143.62,52.2744 139.5,53.5C 135.745,55.9045 131.745,57.9045 127.5,59.5C 127.5,60.5 127.5,61.5 127.5,62.5C 127.5,62.8333 127.5,63.1667 127.5,63.5C 123.491,66.5026 119.491,69.5026 115.5,72.5C 113.305,71.3918 111.305,71.5585 109.5,73C 105.388,75.9266 102.721,79.7599 101.5,84.5C 99.7376,85.2623 98.7376,86.5956 98.5,88.5C 97.5041,88.4142 96.6708,88.7476 96,89.5C 95.3034,92.6916 93.47,94.6916 90.5,95.5C 87.0249,99.0501 83.5249,102.717 80,106.5C 79.5065,108.134 79.3398,109.801 79.5,111.5C 78.5,111.5 77.5,111.5 76.5,111.5C 71.4393,116.229 67.106,121.562 63.5,127.5C 63.5,127.833 63.5,128.167 63.5,128.5C 57.0465,134.963 51.7132,142.297 47.5,150.5C 47.5,151.5 47.5,152.5 47.5,153.5C 43.7062,155.736 41.3728,159.069 40.5,163.5C 39.5714,164.936 38.4048,166.269 37,167.5C 34.9248,171.403 33.0914,175.403 31.5,179.5C 31.5,180.5 31.5,181.5 31.5,182.5C 30.3569,182.908 29.3569,183.575 28.5,184.5C 27.1595,188.19 25.8262,191.857 24.5,195.5C 21.688,198.913 20.0213,202.913 19.5,207.5C 17.249,216.412 14.0823,225.079 10,233.5C 7.76065,242.382 6.26065,251.382 5.5,260.5C 3.45046,266.526 2.45046,272.859 2.5,279.5C 1.52693,281.948 1.1936,284.615 1.5,287.5C 0.833333,287.5 0.166667,287.5 -0.5,287.5C -0.5,191.5 -0.5,95.5 -0.5,-0.5 Z"/></g>
<g><path style="opacity:1" fill="#fefefd" d="M 351.5,-0.5 C 447.5,-0.5 543.5,-0.5 639.5,-0.5C 639.5,94.1667 639.5,188.833 639.5,283.5C 638.833,282.167 638.167,280.833 637.5,279.5C 637.167,279.5 636.833,279.5 636.5,279.5C 636.243,273.116 635.577,266.782 634.5,260.5C 634.33,251.968 632.997,243.635 630.5,235.5C 631.579,231.462 632.579,227.462 633.5,223.5C 632.5,223.5 631.5,223.5 630.5,223.5C 630.819,225.75 630.319,227.75 629,229.5C 627.418,227.376 627.251,225.21 628.5,223C 627.696,221.229 626.529,219.729 625,218.5C 624.617,219.056 624.117,219.389 623.5,219.5C 623.323,214.692 621.657,210.692 618.5,207.5C 616.418,198.021 612.752,189.355 607.5,181.5C 605.613,175.583 603.28,169.916 600.5,164.5C 600.421,163.07 600.754,161.736 601.5,160.5C 600.675,159.614 599.675,159.281 598.5,159.5C 598.012,153.542 595.178,148.875 590,145.5C 589.627,143.302 589.127,141.135 588.5,139C 585.624,136.623 583.291,133.79 581.5,130.5C 581.846,129.304 582.346,129.304 583,130.5C 583.483,129.552 583.649,128.552 583.5,127.5C 581.167,127.5 578.833,127.5 576.5,127.5C 576.167,127.5 575.833,127.5 575.5,127.5C 572.497,123.491 569.497,119.491 566.5,115.5C 566.511,113.983 567.177,112.816 568.5,112C 567.552,111.517 566.552,111.351 565.5,111.5C 565.167,107.833 563.167,105.833 559.5,105.5C 560.122,100.968 558.122,98.8015 553.5,99C 550.704,96.8422 549.371,94.0089 549.5,90.5C 551.5,90.1667 553.5,89.8333 555.5,89.5C 556.085,86.7395 555.085,85.0728 552.5,84.5C 550.338,86.1352 548.171,87.8019 546,89.5C 544.393,88.9265 542.893,88.2598 541.5,87.5C 539.142,85.4707 536.808,83.4707 534.5,81.5C 534.431,75.5964 531.431,72.4297 525.5,72C 524.128,70.7581 523.128,69.2581 522.5,67.5C 520.604,66.5344 518.604,66.2011 516.5,66.5C 515.234,65.9101 513.901,65.4101 512.5,65C 509.068,62.4104 505.734,59.5771 502.5,56.5C 500.026,55.6805 497.693,54.6805 495.5,53.5C 493.268,51.037 490.602,49.037 487.5,47.5C 486.71,46.2058 485.71,45.0391 484.5,44C 480.5,42.3333 476.5,40.6667 472.5,39C 468.927,35.7189 464.927,33.2189 460.5,31.5C 458.992,28.4936 456.659,26.327 453.5,25C 447.296,24.1156 441.296,22.6156 435.5,20.5C 424.523,17.2746 413.523,13.9413 402.5,10.5C 397.827,9.55716 393.161,8.22382 388.5,6.5C 385.232,5.51298 381.898,5.17964 378.5,5.5C 374.934,4.09717 371.267,3.09717 367.5,2.5C 362.209,1.23813 356.875,0.238132 351.5,-0.5 Z"/></g>
<g><path style="opacity:1" fill="#fae5bf" d="M 338.5,-0.5 C 342.833,-0.5 347.167,-0.5 351.5,-0.5C 356.875,0.238132 362.209,1.23813 367.5,2.5C 357.601,2.2833 347.934,1.2833 338.5,-0.5 Z"/></g>
<g><path style="opacity:1" fill="#f0aa5d" d="M 295.5,-0.5 C 309.833,-0.5 324.167,-0.5 338.5,-0.5C 347.934,1.2833 357.601,2.2833 367.5,2.5C 371.267,3.09717 374.934,4.09717 378.5,5.5C 375.998,5.25053 373.498,4.91719 371,4.5C 368.23,5.54536 365.397,6.21203 362.5,6.5C 362.281,7.67504 362.614,8.67504 363.5,9.5C 365.811,10.961 368.144,11.2943 370.5,10.5C 366.356,8.82308 366.523,7.82308 371,7.5C 373.422,7.48239 375.588,8.14905 377.5,9.5C 379.453,8.84442 381.453,8.51109 383.5,8.5C 383.5,9.5 383.5,10.5 383.5,11.5C 381.801,11.3398 380.134,11.5065 378.5,12C 379.056,12.3826 379.389,12.8826 379.5,13.5C 376.193,12.9492 372.86,12.6159 369.5,12.5C 369.5,13.5 369.5,14.5 369.5,15.5C 368.833,15.5 368.167,15.5 367.5,15.5C 366.448,13.744 364.781,13.0773 362.5,13.5C 362.5,12.5 362.5,11.5 362.5,10.5C 344.259,8.14581 325.926,7.14581 307.5,7.5C 300.775,7.77252 294.108,8.43919 287.5,9.5C 289.305,7.80314 291.639,6.96981 294.5,7C 313.5,6.66667 332.5,6.33333 351.5,6C 354.226,5.81844 356.893,5.31844 359.5,4.5C 351.528,3.5023 343.528,3.16897 335.5,3.5C 335.5,2.5 335.5,1.5 335.5,0.5C 324.833,0.5 314.167,0.5 303.5,0.5C 303.5,1.5 303.5,2.5 303.5,3.5C 297.132,3.17033 290.798,3.50367 284.5,4.5C 282.483,5.21907 280.817,6.38573 279.5,8C 279.905,8.94544 280.572,9.61211 281.5,10C 283.473,10.4955 285.473,10.6621 287.5,10.5C 287.5,11.5 287.5,12.5 287.5,13.5C 285.05,13.298 282.717,13.6314 280.5,14.5C 280.5,13.1667 280.5,11.8333 280.5,10.5C 278.833,10.5 277.167,10.5 275.5,10.5C 274.167,10.5 272.833,10.5 271.5,10.5C 276.684,8.63734 276.684,6.80401 271.5,5C 266.265,5.75446 260.931,6.25446 255.5,6.5C 258.023,5.61559 260.69,4.78226 263.5,4C 274.358,2.78623 285.025,1.28623 295.5,-0.5 Z"/></g>
<g><path style="opacity:1" fill="#faa04d" d="M 335.5,3.5 C 324.833,4.83333 314.167,4.83333 303.5,3.5C 303.5,2.5 303.5,1.5 303.5,0.5C 314.167,0.5 324.833,0.5 335.5,0.5C 335.5,1.5 335.5,2.5 335.5,3.5 Z"/></g>
<g><path style="opacity:1" fill="#faa33f" d="M 303.5,3.5 C 314.167,4.83333 324.833,4.83333 335.5,3.5C 343.528,3.16897 351.528,3.5023 359.5,4.5C 356.893,5.31844 354.226,5.81844 351.5,6C 332.5,6.33333 313.5,6.66667 294.5,7C 291.639,6.96981 289.305,7.80314 287.5,9.5C 287.5,9.83333 287.5,10.1667 287.5,10.5C 285.473,10.6621 283.473,10.4955 281.5,10C 280.572,9.61211 279.905,8.94544 279.5,8C 280.817,6.38573 282.483,5.21907 284.5,4.5C 290.798,3.50367 297.132,3.17033 303.5,3.5 Z"/></g>
<g><path style="opacity:1" fill="#fca240" d="M 378.5,5.5 C 380.531,5.9724 382.198,6.9724 383.5,8.5C 381.453,8.51109 379.453,8.84442 377.5,9.5C 375.588,8.14905 373.422,7.48239 371,7.5C 366.523,7.82308 366.356,8.82308 370.5,10.5C 368.144,11.2943 365.811,10.961 363.5,9.5C 362.614,8.67504 362.281,7.67504 362.5,6.5C 365.397,6.21203 368.23,5.54536 371,4.5C 373.498,4.91719 375.998,5.25053 378.5,5.5 Z"/></g>
<g><path style="opacity:1" fill="#f0b77c" d="M 378.5,5.5 C 381.898,5.17964 385.232,5.51298 388.5,6.5C 393.161,8.22382 397.827,9.55716 402.5,10.5C 396.147,9.99461 389.813,9.32795 383.5,8.5C 382.198,6.9724 380.531,5.9724 378.5,5.5 Z"/></g>
<g><path style="opacity:1" fill="#fbf4dd" d="M 307.5,7.5 C 302.917,9.8584 297.917,11.0251 292.5,11C 291.62,12.3561 291.286,13.8561 291.5,15.5C 290.167,15.5 288.833,15.5 287.5,15.5C 287.5,14.8333 287.5,14.1667 287.5,13.5C 287.5,12.5 287.5,11.5 287.5,10.5C 287.5,10.1667 287.5,9.83333 287.5,9.5C 294.108,8.43919 300.775,7.77252 307.5,7.5 Z"/></g>
<g><path style="opacity:1" fill="#f9a448" d="M 271.5,10.5 C 263.715,10.2649 256.048,11.0982 248.5,13C 247.429,13.8518 246.429,14.6851 245.5,15.5C 236.126,18.1755 226.792,20.8422 217.5,23.5C 214.784,23.6785 212.117,24.1785 209.5,25C 208.027,25.7096 207.36,26.8762 207.5,28.5C 205.167,28.5 202.833,28.5 200.5,28.5C 200.421,27.0695 200.754,25.7362 201.5,24.5C 203.849,23.4571 205.849,22.1238 207.5,20.5C 212.637,20.5714 216.97,18.9048 220.5,15.5C 221.791,15.7373 222.791,15.404 223.5,14.5C 229.121,15.3259 234.121,13.9926 238.5,10.5C 240.432,11.5202 242.432,11.6869 244.5,11C 248.488,9.71705 252.155,8.21705 255.5,6.5C 260.931,6.25446 266.265,5.75446 271.5,5C 276.684,6.80401 276.684,8.63734 271.5,10.5 Z"/></g>
<g><path style="opacity:1" fill="#fbf8f0" d="M 307.5,7.5 C 325.926,7.14581 344.259,8.14581 362.5,10.5C 362.5,11.5 362.5,12.5 362.5,13.5C 361.624,13.3691 360.957,13.7025 360.5,14.5C 359.357,19.1347 356.857,22.8013 353,25.5C 351.107,24.8037 349.274,23.9704 347.5,23C 350.024,21.117 351.358,18.617 351.5,15.5C 343.833,15.5 336.167,15.5 328.5,15.5C 325.023,11.2491 320.689,9.58239 315.5,10.5C 311.5,10.5 307.5,10.5 303.5,10.5C 303.5,11.8333 303.5,13.1667 303.5,14.5C 301.901,14.2322 300.568,14.5655 299.5,15.5C 298.5,15.5 297.5,15.5 296.5,15.5C 295.262,17.2143 294.595,19.2143 294.5,21.5C 292.194,21.9926 289.861,22.3259 287.5,22.5C 287.5,20.8333 287.5,19.1667 287.5,17.5C 287.5,16.8333 287.5,16.1667 287.5,15.5C 288.833,15.5 290.167,15.5 291.5,15.5C 291.286,13.8561 291.62,12.3561 292.5,11C 297.917,11.0251 302.917,9.8584 307.5,7.5 Z"/></g>
<g><path style="opacity:1" fill="#faedd5" d="M 315.5,10.5 C 314.5,11.8333 313.5,13.1667 312.5,14.5C 308.265,15.436 303.931,15.7693 299.5,15.5C 300.568,14.5655 301.901,14.2322 303.5,14.5C 303.5,13.1667 303.5,11.8333 303.5,10.5C 307.5,10.5 311.5,10.5 315.5,10.5 Z"/></g>
<g><path style="opacity:1" fill="#e4ab63" d="M 328.5,15.5 C 325.175,14.8405 321.842,14.1738 318.5,13.5C 316.452,13.6718 314.452,14.0051 312.5,14.5C 313.5,13.1667 314.5,11.8333 315.5,10.5C 320.689,9.58239 325.023,11.2491 328.5,15.5 Z"/></g>
<g><path style="opacity:1" fill="#eeae65" d="M 255.5,6.5 C 252.155,8.21705 248.488,9.71705 244.5,11C 242.432,11.6869 240.432,11.5202 238.5,10.5C 234.121,13.9926 229.121,15.3259 223.5,14.5C 233.591,9.97713 244.258,7.31047 255.5,6.5 Z"/></g>
<g><path style="opacity:1" fill="#eeac56" d="M 271.5,10.5 C 266.167,11.8333 260.833,13.1667 255.5,14.5C 253.735,15.4614 251.735,15.7947 249.5,15.5C 248.167,15.5 246.833,15.5 245.5,15.5C 246.429,14.6851 247.429,13.8518 248.5,13C 256.048,11.0982 263.715,10.2649 271.5,10.5 Z"/></g>
<g><path style="opacity:1" fill="#f7fafd" d="M 249.5,15.5 C 251.735,15.7947 253.735,15.4614 255.5,14.5C 260.953,14.6351 266.286,13.9685 271.5,12.5C 271.5,13.5 271.5,14.5 271.5,15.5C 265.053,17.4877 258.386,17.9877 251.5,17C 250.584,16.7216 249.918,16.2216 249.5,15.5 Z"/></g>
<g><path style="opacity:1" fill="#faf4e3" d="M 271.5,10.5 C 272.833,10.5 274.167,10.5 275.5,10.5C 274.172,13.232 272.839,15.8987 271.5,18.5C 260.408,19.5635 249.742,21.8968 239.5,25.5C 238.833,25.5 238.167,25.5 237.5,25.5C 234.743,26.5122 232.076,27.5122 229.5,28.5C 228.833,28.5 228.167,28.5 227.5,28.5C 227.389,27.8826 227.056,27.3826 226.5,27C 233.998,25.5519 233.498,24.3852 225,23.5C 220.781,24.4088 216.615,25.4088 212.5,26.5C 214.072,25.3127 215.739,24.3127 217.5,23.5C 226.792,20.8422 236.126,18.1755 245.5,15.5C 246.833,15.5 248.167,15.5 249.5,15.5C 249.918,16.2216 250.584,16.7216 251.5,17C 258.386,17.9877 265.053,17.4877 271.5,15.5C 271.5,14.5 271.5,13.5 271.5,12.5C 266.286,13.9685 260.953,14.6351 255.5,14.5C 260.833,13.1667 266.167,11.8333 271.5,10.5 Z"/></g>
<g><path style="opacity:1" fill="#eaae6d" d="M 220.5,15.5 C 216.97,18.9048 212.637,20.5714 207.5,20.5C 207.5,20.1667 207.5,19.8333 207.5,19.5C 211.502,17.3902 215.835,16.0569 220.5,15.5 Z"/></g>
<g><path style="opacity:1" fill="#f6fbf9" d="M 275.5,10.5 C 277.167,10.5 278.833,10.5 280.5,10.5C 280.5,11.8333 280.5,13.1667 280.5,14.5C 280.167,14.5 279.833,14.5 279.5,14.5C 277.401,19.9744 275.734,25.6411 274.5,31.5C 272.833,31.5 271.167,31.5 269.5,31.5C 267.435,31.5172 265.435,31.8505 263.5,32.5C 261.436,32.313 259.436,31.813 257.5,31C 262.306,28.6975 266.973,26.5309 271.5,24.5C 271.5,22.5 271.5,20.5 271.5,18.5C 272.839,15.8987 274.172,13.232 275.5,10.5 Z"/></g>
<g><path style="opacity:1" fill="#fef1d1" d="M 279.5,14.5 C 278.711,20.2014 277.711,25.8681 276.5,31.5C 275.833,31.5 275.167,31.5 274.5,31.5C 275.734,25.6411 277.401,19.9744 279.5,14.5 Z"/></g>
<g><path style="opacity:1" fill="#fba340" d="M 437.5,22.5 C 440.207,25.5418 443.374,28.2085 447,30.5C 448.011,29.6634 449.178,29.33 450.5,29.5C 449.794,31.6716 448.794,33.6716 447.5,35.5C 447.5,35.8333 447.5,36.1667 447.5,36.5C 444.113,33.9291 441.113,30.9291 438.5,27.5C 429.783,24.8685 421.117,22.3685 412.5,20C 414.507,18.7826 416.674,17.9493 419,17.5C 422.452,18.9096 425.952,20.4096 429.5,22C 432.146,22.4974 434.813,22.6641 437.5,22.5 Z"/></g>
<g><path style="opacity:1" fill="#fcebcc" d="M 207.5,19.5 C 207.5,19.8333 207.5,20.1667 207.5,20.5C 202.155,22.1688 196.822,23.8355 191.5,25.5C 191.5,24.5 191.5,23.5 191.5,22.5C 196.925,21.9295 202.258,20.9295 207.5,19.5 Z"/></g>
<g><path style="opacity:1" fill="#e8a865" d="M 279.5,14.5 C 279.833,14.5 280.167,14.5 280.5,14.5C 280.24,20.172 279.907,25.8387 279.5,31.5C 278.5,31.5 277.5,31.5 276.5,31.5C 277.711,25.8681 278.711,20.2014 279.5,14.5 Z"/></g>
<g><path style="opacity:1" fill="#fbf9f0" d="M 227.5,28.5 C 226.167,29.1667 224.833,29.8333 223.5,30.5C 222.508,30.3284 221.842,30.6618 221.5,31.5C 220.5,31.5 219.5,31.5 218.5,31.5C 216.554,36.3958 215.887,41.7291 216.5,47.5C 214.5,47.5 212.5,47.5 210.5,47.5C 210.5,40.8333 210.5,34.1667 210.5,27.5C 210.842,26.6618 211.508,26.3284 212.5,26.5C 216.615,25.4088 220.781,24.4088 225,23.5C 233.498,24.3852 233.998,25.5519 226.5,27C 227.056,27.3826 227.389,27.8826 227.5,28.5 Z"/></g>
<g><path style="opacity:1" fill="#fef2db" d="M 435.5,20.5 C 441.296,22.6156 447.296,24.1156 453.5,25C 456.659,26.327 458.992,28.4936 460.5,31.5C 460.167,31.5 459.833,31.5 459.5,31.5C 455.155,29.3274 450.822,27.1608 446.5,25C 443.454,24.2612 440.454,23.4279 437.5,22.5C 436.833,21.8333 436.167,21.1667 435.5,20.5 Z"/></g>
<g><path style="opacity:1" fill="#efa75c" d="M 271.5,18.5 C 271.5,20.5 271.5,22.5 271.5,24.5C 264.193,25.9508 256.859,27.4508 249.5,29C 247.934,29.6082 246.6,30.4415 245.5,31.5C 244.833,31.5 244.167,31.5 243.5,31.5C 238.872,30.5028 234.205,29.5028 229.5,28.5C 232.076,27.5122 234.743,26.5122 237.5,25.5C 238.871,26.7868 240.705,27.4535 243,27.5C 252.157,26.1922 261.324,24.8588 270.5,23.5C 270.5,22.5 270.5,21.5 270.5,20.5C 260.028,21.6608 249.695,23.3274 239.5,25.5C 249.742,21.8968 260.408,19.5635 271.5,18.5 Z"/></g>
<g><path style="opacity:1" fill="#f7a540" d="M 237.5,25.5 C 238.167,25.5 238.833,25.5 239.5,25.5C 249.695,23.3274 260.028,21.6608 270.5,20.5C 270.5,21.5 270.5,22.5 270.5,23.5C 261.324,24.8588 252.157,26.1922 243,27.5C 240.705,27.4535 238.871,26.7868 237.5,25.5 Z"/></g>
<g><path style="opacity:1" fill="#f7a44b" d="M 328.5,15.5 C 336.167,15.5 343.833,15.5 351.5,15.5C 351.358,18.617 350.024,21.117 347.5,23C 349.274,23.9704 351.107,24.8037 353,25.5C 356.857,22.8013 359.357,19.1347 360.5,14.5C 360.957,13.7025 361.624,13.3691 362.5,13.5C 364.781,13.0773 366.448,13.744 367.5,15.5C 364.137,19.9035 361.137,24.5702 358.5,29.5C 358.535,34.2637 360.868,36.9304 365.5,37.5C 366.713,37.2528 367.38,36.5862 367.5,35.5C 367.5,34.8333 367.5,34.1667 367.5,33.5C 367.5,32.1667 368.167,31.5 369.5,31.5C 372.161,28.8292 374.494,25.8292 376.5,22.5C 378.743,21.5258 381.076,21.1924 383.5,21.5C 386.556,23.1178 389.89,24.6178 393.5,26C 395.473,26.4955 397.473,26.6621 399.5,26.5C 399.649,27.552 399.483,28.552 399,29.5C 393.996,27.8818 388.829,27.2151 383.5,27.5C 381.643,26.2463 379.643,26.2463 377.5,27.5C 376.01,32.6374 373.677,37.3041 370.5,41.5C 370.608,42.4419 370.941,43.2753 371.5,44C 375.114,44.5639 378.447,45.7306 381.5,47.5C 382.167,47.5 382.833,47.5 383.5,47.5C 386.192,50.1807 389.525,51.5141 393.5,51.5C 397.195,53.4317 401.195,54.765 405.5,55.5C 406.706,56.8804 406.373,58.0471 404.5,59C 402.866,59.4935 401.199,59.6602 399.5,59.5C 392.303,56.665 391.47,58.3317 397,64.5C 397.696,67.4781 398.196,70.4781 398.5,73.5C 398.605,77.5483 398.272,81.5483 397.5,85.5C 396.868,89.4314 395.201,92.7647 392.5,95.5C 391.448,95.3505 390.448,95.5172 389.5,96C 390.38,97.3561 390.714,98.8561 390.5,100.5C 388.508,100.672 386.842,100.005 385.5,98.5C 383.401,100.534 381.068,100.868 378.5,99.5C 378.863,98.8165 379.196,98.1499 379.5,97.5C 390.873,86.4525 392.373,74.1191 384,60.5C 377.866,53.1833 370.033,49.8499 360.5,50.5C 359.628,43.9435 356.294,38.9435 350.5,35.5C 348.302,33.9019 345.969,32.5686 343.5,31.5C 343.249,29.8297 342.582,28.3297 341.5,27C 334.931,26.5951 329.264,24.2618 324.5,20C 319.761,19.2738 315.095,19.6071 310.5,21C 306.568,24.8324 301.901,27.4991 296.5,29C 295.748,29.6708 295.414,30.5041 295.5,31.5C 295.167,31.5 294.833,31.5 294.5,31.5C 293.022,31.762 291.689,31.4287 290.5,30.5C 289.737,29.2807 288.737,28.2807 287.5,27.5C 290.251,25.7073 293.084,24.0406 296,22.5C 296.497,20.1902 296.663,17.8568 296.5,15.5C 297.5,15.5 298.5,15.5 299.5,15.5C 303.931,15.7693 308.265,15.436 312.5,14.5C 314.452,14.0051 316.452,13.6718 318.5,13.5C 321.842,14.1738 325.175,14.8405 328.5,15.5 Z"/></g>
<g><path style="opacity:1" fill="#f09c5e" d="M 343.5,31.5 C 335.152,28.6056 327.152,24.939 319.5,20.5C 311.674,24.5528 303.674,28.2195 295.5,31.5C 295.414,30.5041 295.748,29.6708 296.5,29C 301.901,27.4991 306.568,24.8324 310.5,21C 315.095,19.6071 319.761,19.2738 324.5,20C 329.264,24.2618 334.931,26.5951 341.5,27C 342.582,28.3297 343.249,29.8297 343.5,31.5 Z"/></g>
<g><path style="opacity:1" fill="#faeac9" d="M 420.5,24.5 C 425.582,25.6937 430.582,27.1937 435.5,29C 436.942,29.3768 437.942,30.2101 438.5,31.5C 431.459,31.4926 425.459,29.1593 420.5,24.5 Z"/></g>
<g><path style="opacity:1" fill="#e9a55b" d="M 207.5,20.5 C 205.849,22.1238 203.849,23.4571 201.5,24.5C 200.754,25.7362 200.421,27.0695 200.5,28.5C 202.833,28.5 205.167,28.5 207.5,28.5C 207.36,26.8762 208.027,25.7096 209.5,25C 212.117,24.1785 214.784,23.6785 217.5,23.5C 215.739,24.3127 214.072,25.3127 212.5,26.5C 211.508,26.3284 210.842,26.6618 210.5,27.5C 209.508,34.9818 209.175,42.6484 209.5,50.5C 212.455,51.1587 215.455,51.4921 218.5,51.5C 214.994,52.498 211.328,52.498 207.5,51.5C 208.331,44.8689 208.664,38.2022 208.5,31.5C 207.167,31.5 205.833,31.5 204.5,31.5C 204.545,38.5363 204.712,45.5363 205,52.5C 202.699,53.8672 200.199,54.5339 197.5,54.5C 199.189,53.6963 200.855,52.6963 202.5,51.5C 203.818,44.6778 203.818,38.0112 202.5,31.5C 200.833,31.5 199.167,31.5 197.5,31.5C 197.5,30.1667 197.5,28.8333 197.5,27.5C 192.126,28.8436 186.792,30.1769 181.5,31.5C 184.469,28.8529 187.802,26.8529 191.5,25.5C 196.822,23.8355 202.155,22.1688 207.5,20.5 Z"/></g>
<g><path style="opacity:1" fill="#fbf0d2" d="M 271.5,24.5 C 266.973,26.5309 262.306,28.6975 257.5,31C 259.436,31.813 261.436,32.313 263.5,32.5C 262.07,33.5375 260.403,34.2041 258.5,34.5C 258.179,32.9519 257.179,32.2852 255.5,32.5C 255.5,31.5 255.5,30.5 255.5,29.5C 252.167,30.1667 248.833,30.8333 245.5,31.5C 246.6,30.4415 247.934,29.6082 249.5,29C 256.859,27.4508 264.193,25.9508 271.5,24.5 Z"/></g>
<g><path style="opacity:1" fill="#fdf4dc" d="M 367.5,15.5 C 368.167,15.5 368.833,15.5 369.5,15.5C 367.309,20.5479 365.309,25.7146 363.5,31C 364.471,32.4813 365.804,33.3146 367.5,33.5C 367.5,34.1667 367.5,34.8333 367.5,35.5C 366.577,36.3029 365.577,36.4696 364.5,36C 363.152,33.9896 361.818,31.9896 360.5,30C 362.751,25.0515 365.085,20.2182 367.5,15.5 Z"/></g>
<g><path style="opacity:1" fill="#fba348" d="M 197.5,31.5 C 195.988,33.3167 193.988,34.3167 191.5,34.5C 188.998,34.2505 186.498,33.9172 184,33.5C 182.319,33.3917 181.152,32.7251 180.5,31.5C 180.833,31.5 181.167,31.5 181.5,31.5C 186.792,30.1769 192.126,28.8436 197.5,27.5C 197.5,28.8333 197.5,30.1667 197.5,31.5 Z"/></g>
<g><path style="opacity:1" fill="#faa347" d="M 227.5,28.5 C 228.167,28.5 228.833,28.5 229.5,28.5C 234.205,29.5028 238.872,30.5028 243.5,31.5C 241.167,31.5 238.833,31.5 236.5,31.5C 234.051,32.0418 231.551,32.3751 229,32.5C 226.705,32.4535 224.871,31.7868 223.5,30.5C 224.833,29.8333 226.167,29.1667 227.5,28.5 Z"/></g>
<g><path style="opacity:1" fill="#f9fbfb" d="M 258.5,34.5 C 257.5,34.5 256.5,34.5 255.5,34.5C 252.15,34.665 248.817,34.4983 245.5,34C 244.619,33.2917 243.953,32.4584 243.5,31.5C 244.167,31.5 244.833,31.5 245.5,31.5C 248.833,30.8333 252.167,30.1667 255.5,29.5C 255.5,30.5 255.5,31.5 255.5,32.5C 257.179,32.2852 258.179,32.9519 258.5,34.5 Z"/></g>
<g><path style="opacity:1" fill="#eca762" d="M 287.5,15.5 C 287.5,16.1667 287.5,16.8333 287.5,17.5C 285.621,19.9151 285.287,22.5818 286.5,25.5C 289.358,24.3391 292.025,23.0057 294.5,21.5C 294.595,19.2143 295.262,17.2143 296.5,15.5C 296.663,17.8568 296.497,20.1902 296,22.5C 293.084,24.0406 290.251,25.7073 287.5,27.5C 288.737,28.2807 289.737,29.2807 290.5,30.5C 291.689,31.4287 293.022,31.762 294.5,31.5C 292.337,33.0828 290.004,34.4161 287.5,35.5C 287.511,33.9826 288.177,32.8159 289.5,32C 283.909,29.5787 282.076,25.4121 284,19.5C 284.74,17.6813 285.907,16.3479 287.5,15.5 Z"/></g>
<g><path style="opacity:1" fill="#feebbf" d="M 287.5,17.5 C 287.5,19.1667 287.5,20.8333 287.5,22.5C 289.861,22.3259 292.194,21.9926 294.5,21.5C 292.025,23.0057 289.358,24.3391 286.5,25.5C 285.287,22.5818 285.621,19.9151 287.5,17.5 Z"/></g>
<g><path style="opacity:1" fill="#fce9ca" d="M 210.5,27.5 C 210.5,34.1667 210.5,40.8333 210.5,47.5C 212.5,47.5 214.5,47.5 216.5,47.5C 215.887,41.7291 216.554,36.3958 218.5,31.5C 218.5,38.1667 218.5,44.8333 218.5,51.5C 215.455,51.4921 212.455,51.1587 209.5,50.5C 209.175,42.6484 209.508,34.9818 210.5,27.5 Z"/></g>
<g><path style="opacity:1" fill="#f0a75b" d="M 221.5,31.5 C 221.842,30.6618 222.508,30.3284 223.5,30.5C 224.871,31.7868 226.705,32.4535 229,32.5C 231.551,32.3751 234.051,32.0418 236.5,31.5C 233.9,34.4603 230.567,35.7937 226.5,35.5C 226.5,41.8333 226.5,48.1667 226.5,54.5C 226.5,55.5 226.5,56.5 226.5,57.5C 224.087,55.9493 221.421,55.2826 218.5,55.5C 219.919,54.5489 221.585,54.2155 223.5,54.5C 223.118,46.6613 222.451,38.9946 221.5,31.5 Z"/></g>
<g><path style="opacity:1" fill="#e9af73" d="M 367.5,15.5 C 365.085,20.2182 362.751,25.0515 360.5,30C 361.818,31.9896 363.152,33.9896 364.5,36C 365.577,36.4696 366.577,36.3029 367.5,35.5C 367.38,36.5862 366.713,37.2528 365.5,37.5C 360.868,36.9304 358.535,34.2637 358.5,29.5C 361.137,24.5702 364.137,19.9035 367.5,15.5 Z"/></g>
<g><path style="opacity:1" fill="#f0a85f" d="M 180.5,31.5 C 181.152,32.7251 182.319,33.3917 184,33.5C 186.498,33.9172 188.998,34.2505 191.5,34.5C 187.808,37.0127 183.808,39.0127 179.5,40.5C 179.756,38.2239 181.09,37.0572 183.5,37C 182.07,35.5596 180.403,35.2263 178.5,36C 175.899,38.7145 172.899,39.2145 169.5,37.5C 172.388,34.2197 176.055,32.2197 180.5,31.5 Z"/></g>
<g><path style="opacity:1" fill="#f9a448" d="M 287.5,13.5 C 287.5,14.1667 287.5,14.8333 287.5,15.5C 285.907,16.3479 284.74,17.6813 284,19.5C 282.076,25.4121 283.909,29.5787 289.5,32C 288.177,32.8159 287.511,33.9826 287.5,35.5C 285.5,35.5 283.5,35.5 281.5,35.5C 281.923,38.2882 280.923,40.2882 278.5,41.5C 277.52,44.0865 277.187,46.7531 277.5,49.5C 274.351,49.7886 271.351,49.2886 268.5,48C 269.448,47.5172 270.448,47.3505 271.5,47.5C 271.5,46.5 271.5,45.5 271.5,44.5C 270.167,44.5 268.833,44.5 267.5,44.5C 267.5,46.1667 267.5,47.8333 267.5,49.5C 264.449,49.4538 261.782,50.4538 259.5,52.5C 258.614,53.325 258.281,54.325 258.5,55.5C 257.5,55.5 256.5,55.5 255.5,55.5C 255.5,53.1667 255.5,50.8333 255.5,48.5C 256.5,47.1667 257.5,45.8333 258.5,44.5C 259.167,44.5 259.833,44.5 260.5,44.5C 265.268,43.4583 270.101,42.4583 275,41.5C 275.782,35.9412 273.282,33.1078 267.5,33C 268.416,32.7216 269.082,32.2216 269.5,31.5C 271.167,31.5 272.833,31.5 274.5,31.5C 275.167,31.5 275.833,31.5 276.5,31.5C 277.5,31.5 278.5,31.5 279.5,31.5C 279.907,25.8387 280.24,20.172 280.5,14.5C 282.717,13.6314 285.05,13.298 287.5,13.5 Z"/></g>
<g><path style="opacity:1" fill="#f1aa5b" d="M 269.5,31.5 C 269.082,32.2216 268.416,32.7216 267.5,33C 273.282,33.1078 275.782,35.9412 275,41.5C 270.101,42.4583 265.268,43.4583 260.5,44.5C 263.926,42.7994 267.593,41.4661 271.5,40.5C 270,40.1667 268.5,39.8333 267,39.5C 261.772,40.2662 256.605,41.2662 251.5,42.5C 252.234,41.2921 252.567,39.9587 252.5,38.5C 258.838,37.9204 265.172,37.5871 271.5,37.5C 266.27,36.03 260.937,35.3633 255.5,35.5C 255.5,35.1667 255.5,34.8333 255.5,34.5C 256.5,34.5 257.5,34.5 258.5,34.5C 260.403,34.2041 262.07,33.5375 263.5,32.5C 265.435,31.8505 267.435,31.5172 269.5,31.5 Z"/></g>
<g><path style="opacity:1" fill="#e6ad6f" d="M 383.5,27.5 C 380.05,26.7564 378.384,28.0897 378.5,31.5C 376.636,34.2022 374.969,37.0356 373.5,40C 374.982,42.761 377.315,44.5944 380.5,45.5C 380.863,46.1835 381.196,46.8501 381.5,47.5C 378.447,45.7306 375.114,44.5639 371.5,44C 370.941,43.2753 370.608,42.4419 370.5,41.5C 373.677,37.3041 376.01,32.6374 377.5,27.5C 379.643,26.2463 381.643,26.2463 383.5,27.5 Z"/></g>
<g><path style="opacity:1" fill="#f4a551" d="M 383.5,8.5 C 389.813,9.32795 396.147,9.99461 402.5,10.5C 413.523,13.9413 424.523,17.2746 435.5,20.5C 436.167,21.1667 436.833,21.8333 437.5,22.5C 434.813,22.6641 432.146,22.4974 429.5,22C 425.952,20.4096 422.452,18.9096 419,17.5C 416.674,17.9493 414.507,18.7826 412.5,20C 421.117,22.3685 429.783,24.8685 438.5,27.5C 441.113,30.9291 444.113,33.9291 447.5,36.5C 442.939,40.6396 438.605,44.973 434.5,49.5C 432.571,49.2308 430.905,49.7308 429.5,51C 430.167,51.3333 430.833,51.6667 431.5,52C 426.118,52.2648 420.785,52.7648 415.5,53.5C 415.5,52.5 415.5,51.5 415.5,50.5C 410.097,49.4827 404.764,48.1493 399.5,46.5C 394.425,44.6596 389.091,43.3263 383.5,42.5C 383.338,40.4727 383.505,38.4727 384,36.5C 385.062,35.9032 386.228,35.5698 387.5,35.5C 400.267,39.5705 412.933,43.5705 425.5,47.5C 430.348,43.1576 435.181,38.4909 440,33.5C 440.528,32.184 440.028,31.5173 438.5,31.5C 437.942,30.2101 436.942,29.3768 435.5,29C 430.582,27.1937 425.582,25.6937 420.5,24.5C 407.309,19.1928 393.642,15.5262 379.5,13.5C 379.389,12.8826 379.056,12.3826 378.5,12C 380.134,11.5065 381.801,11.3398 383.5,11.5C 383.5,10.5 383.5,9.5 383.5,8.5 Z"/></g>
<g><path style="opacity:1" fill="#faf6eb" d="M 379.5,13.5 C 393.642,15.5262 407.309,19.1928 420.5,24.5C 425.459,29.1593 431.459,31.4926 438.5,31.5C 440.028,31.5173 440.528,32.184 440,33.5C 435.181,38.4909 430.348,43.1576 425.5,47.5C 412.933,43.5705 400.267,39.5705 387.5,35.5C 386.228,35.5698 385.062,35.9032 384,36.5C 383.505,38.4727 383.338,40.4727 383.5,42.5C 389.091,43.3263 394.425,44.6596 399.5,46.5C 399.5,47.5 399.5,48.5 399.5,49.5C 397.266,48.2964 394.933,47.1297 392.5,46C 391,45.8333 389.5,45.6667 388,45.5C 386.014,45.5687 384.514,46.2353 383.5,47.5C 382.833,47.5 382.167,47.5 381.5,47.5C 381.196,46.8501 380.863,46.1835 380.5,45.5C 377.315,44.5944 374.982,42.761 373.5,40C 374.969,37.0356 376.636,34.2022 378.5,31.5C 380.826,30.8489 383.159,30.1822 385.5,29.5C 388.178,30.1754 390.844,30.842 393.5,31.5C 403.156,33.5981 412.656,36.2647 422,39.5C 425.798,38.9045 427.298,36.9045 426.5,33.5C 412.414,28.6245 398.081,24.6245 383.5,21.5C 381.02,19.883 378.354,19.5497 375.5,20.5C 372.693,23.784 370.693,27.4507 369.5,31.5C 368.167,31.5 367.5,32.1667 367.5,33.5C 365.804,33.3146 364.471,32.4813 363.5,31C 365.309,25.7146 367.309,20.5479 369.5,15.5C 369.5,14.5 369.5,13.5 369.5,12.5C 372.86,12.6159 376.193,12.9492 379.5,13.5 Z"/></g>
<g><path style="opacity:1" fill="#fce9c7" d="M 383.5,27.5 C 387.134,28.0008 390.468,29.3342 393.5,31.5C 390.844,30.842 388.178,30.1754 385.5,29.5C 383.159,30.1822 380.826,30.8489 378.5,31.5C 378.384,28.0897 380.05,26.7564 383.5,27.5 Z"/></g>
<g><path style="opacity:1" fill="#f2a754" d="M 383.5,21.5 C 398.081,24.6245 412.414,28.6245 426.5,33.5C 427.298,36.9045 425.798,38.9045 422,39.5C 412.656,36.2647 403.156,33.5981 393.5,31.5C 390.468,29.3342 387.134,28.0008 383.5,27.5C 388.829,27.2151 393.996,27.8818 399,29.5C 399.483,28.552 399.649,27.552 399.5,26.5C 397.473,26.6621 395.473,26.4955 393.5,26C 389.89,24.6178 386.556,23.1178 383.5,21.5 Z"/></g>
<g><path style="opacity:1" fill="#ecae6f" d="M 383.5,21.5 C 381.076,21.1924 378.743,21.5258 376.5,22.5C 374.494,25.8292 372.161,28.8292 369.5,31.5C 370.693,27.4507 372.693,23.784 375.5,20.5C 378.354,19.5497 381.02,19.883 383.5,21.5 Z"/></g>
<g><path style="opacity:1" fill="#ecab68" d="M 167.5,38.5 C 166.524,39.8149 165.524,41.1482 164.5,42.5C 165.736,43.3567 167.069,44.0234 168.5,44.5C 170.618,43.0541 172.951,42.3874 175.5,42.5C 172.406,43.8831 169.406,45.5498 166.5,47.5C 165.076,45.8454 163.243,44.512 161,43.5C 157.928,45.2167 154.761,46.5501 151.5,47.5C 151.953,46.5416 152.619,45.7083 153.5,45C 158.099,42.5317 162.766,40.365 167.5,38.5 Z"/></g>
<g><path style="opacity:1" fill="#f8a449" d="M 179.5,40.5 C 177.517,40.1568 176.183,40.8235 175.5,42.5C 172.951,42.3874 170.618,43.0541 168.5,44.5C 167.069,44.0234 165.736,43.3567 164.5,42.5C 165.524,41.1482 166.524,39.8149 167.5,38.5C 167.842,37.6618 168.508,37.3284 169.5,37.5C 172.899,39.2145 175.899,38.7145 178.5,36C 180.403,35.2263 182.07,35.5596 183.5,37C 181.09,37.0572 179.756,38.2239 179.5,40.5 Z"/></g>
<g><path style="opacity:1" fill="#f3a64a" d="M 255.5,35.5 C 260.937,35.3633 266.27,36.03 271.5,37.5C 265.172,37.5871 258.838,37.9204 252.5,38.5C 252.567,39.9587 252.234,41.2921 251.5,42.5C 247.215,43.2616 243.215,44.5949 239.5,46.5C 238.5,46.5 237.5,46.5 236.5,46.5C 233.409,42.4434 234.409,40.11 239.5,39.5C 244.584,37.6527 249.918,36.3194 255.5,35.5 Z"/></g>
<g><path style="opacity:1" fill="#f7a450" d="M 437.5,22.5 C 440.454,23.4279 443.454,24.2612 446.5,25C 450.822,27.1608 455.155,29.3274 459.5,31.5C 459.511,33.0174 460.177,34.1841 461.5,35C 467.101,37.0469 471.934,40.2135 476,44.5C 476.561,43.9781 477.228,43.6448 478,43.5C 480.911,45.6115 484.077,46.9448 487.5,47.5C 490.602,49.037 493.268,51.037 495.5,53.5C 499.922,56.7803 504.255,60.2803 508.5,64C 505.469,64.4954 502.469,64.3287 499.5,63.5C 499.306,61.0882 497.973,60.0882 495.5,60.5C 495.5,59.5 495.5,58.5 495.5,57.5C 491.062,58.5749 489.062,56.9083 489.5,52.5C 484.765,50.3908 479.765,48.7241 474.5,47.5C 465.874,42.6876 456.874,38.6876 447.5,35.5C 448.794,33.6716 449.794,31.6716 450.5,29.5C 449.178,29.33 448.011,29.6634 447,30.5C 443.374,28.2085 440.207,25.5418 437.5,22.5 Z"/></g>
<g><path style="opacity:1" fill="#ecb06e" d="M 459.5,31.5 C 459.833,31.5 460.167,31.5 460.5,31.5C 464.927,33.2189 468.927,35.7189 472.5,39C 476.5,40.6667 480.5,42.3333 484.5,44C 485.71,45.0391 486.71,46.2058 487.5,47.5C 484.077,46.9448 480.911,45.6115 478,43.5C 477.228,43.6448 476.561,43.9781 476,44.5C 471.934,40.2135 467.101,37.0469 461.5,35C 460.177,34.1841 459.511,33.0174 459.5,31.5 Z"/></g>
<g><path style="opacity:1" fill="#f5d6b3" d="M 202.5,31.5 C 203.818,38.0112 203.818,44.6778 202.5,51.5C 200.855,52.6963 199.189,53.6963 197.5,54.5C 196.833,54.5 196.167,54.5 195.5,54.5C 196.622,53.0527 198.122,52.0527 200,51.5C 200.667,50.1667 201.333,48.8333 202,47.5C 202.499,42.1771 202.666,36.8437 202.5,31.5 Z"/></g>
<g><path style="opacity:1" fill="#f1d49c" d="M 239.5,39.5 C 234.409,40.11 233.409,42.4434 236.5,46.5C 235.791,47.404 234.791,47.7373 233.5,47.5C 233.337,45.1432 233.503,42.8098 234,40.5C 235.699,39.5939 237.533,39.2606 239.5,39.5 Z"/></g>
<g><path style="opacity:1" fill="#f6f2e0" d="M 260.5,44.5 C 259.833,44.5 259.167,44.5 258.5,44.5C 252.044,44.2319 245.711,44.8986 239.5,46.5C 243.215,44.5949 247.215,43.2616 251.5,42.5C 256.605,41.2662 261.772,40.2662 267,39.5C 268.5,39.8333 270,40.1667 271.5,40.5C 267.593,41.4661 263.926,42.7994 260.5,44.5 Z"/></g>
<g><path style="opacity:1" fill="#720a06" d="M 343.5,31.5 C 345.969,32.5686 348.302,33.9019 350.5,35.5C 356.294,38.9435 359.628,43.9435 360.5,50.5C 370.033,49.8499 377.866,53.1833 384,60.5C 392.373,74.1191 390.873,86.4525 379.5,97.5C 373.794,100.217 367.794,101.051 361.5,100C 355.657,97.0131 352.657,92.1798 352.5,85.5C 353.833,85.5 355.167,85.5 356.5,85.5C 356.167,86.1667 355.833,86.8333 355.5,87.5C 354.262,87.81 354.262,88.31 355.5,89C 368.998,94.9177 377.331,90.7511 380.5,76.5C 377.56,63.1799 369.226,57.5133 355.5,59.5C 354.197,53.4006 351.197,48.2339 346.5,44C 337.67,39.0582 328.503,34.8915 319,31.5C 310.214,34.6421 301.714,38.4755 293.5,43C 288.228,47.3861 284.895,52.8861 283.5,59.5C 269.542,57.4679 261.209,63.3012 258.5,77C 261.476,91.1546 269.476,95.1546 282.5,89C 282.272,88.6012 281.938,88.4346 281.5,88.5C 281.918,87.7784 282.584,87.2784 283.5,87C 282.584,86.7216 281.918,86.2216 281.5,85.5C 283.167,85.5 284.833,85.5 286.5,85.5C 284.844,97.9816 277.844,102.815 265.5,100C 253.147,94.1335 247.98,84.3001 250,70.5C 251.254,66.996 252.754,63.6626 254.5,60.5C 255.167,60.5 255.5,60.1667 255.5,59.5C 258.625,56.7657 261.958,54.2657 265.5,52C 269.73,50.7101 274.064,50.2101 278.5,50.5C 278.46,47.5755 279.293,44.9088 281,42.5C 283.422,40.2504 285.589,37.9171 287.5,35.5C 290.004,34.4161 292.337,33.0828 294.5,31.5C 294.833,31.5 295.167,31.5 295.5,31.5C 303.674,28.2195 311.674,24.5528 319.5,20.5C 327.152,24.939 335.152,28.6056 343.5,31.5 Z"/></g>
<g><path style="opacity:1" fill="#e7b176" d="M 355.5,87.5 C 362.409,90.6448 368.909,89.9781 375,85.5C 380.608,73.5519 377.108,65.7185 364.5,62C 360.848,61.5014 357.182,61.3347 353.5,61.5C 351.89,51.7886 346.557,44.9552 337.5,41C 331.388,39.0318 325.388,36.8651 319.5,34.5C 309.749,37.0421 300.749,41.2088 292.5,47C 288.683,51.1339 286.349,55.9672 285.5,61.5C 274.882,58.7705 267.048,62.1038 262,71.5C 260.315,86.5726 266.815,92.2393 281.5,88.5C 281.938,88.4346 282.272,88.6012 282.5,89C 269.476,95.1546 261.476,91.1546 258.5,77C 261.209,63.3012 269.542,57.4679 283.5,59.5C 284.895,52.8861 288.228,47.3861 293.5,43C 301.714,38.4755 310.214,34.6421 319,31.5C 328.503,34.8915 337.67,39.0582 346.5,44C 351.197,48.2339 354.197,53.4006 355.5,59.5C 369.226,57.5133 377.56,63.1799 380.5,76.5C 377.331,90.7511 368.998,94.9177 355.5,89C 354.262,88.31 354.262,87.81 355.5,87.5 Z"/></g>
<g><path style="opacity:1" fill="#f3a15b" d="M 287.5,35.5 C 285.589,37.9171 283.422,40.2504 281,42.5C 279.293,44.9088 278.46,47.5755 278.5,50.5C 274.064,50.2101 269.73,50.7101 265.5,52C 261.958,54.2657 258.625,56.7657 255.5,59.5C 255.5,58.5 255.5,57.5 255.5,56.5C 254.167,56.5 252.833,56.5 251.5,56.5C 251.884,54.3352 251.217,52.6685 249.5,51.5C 247.827,53.0863 245.827,53.7529 243.5,53.5C 244.5,52.8333 245.5,52.1667 246.5,51.5C 249.543,50.6552 252.543,49.6552 255.5,48.5C 255.5,50.8333 255.5,53.1667 255.5,55.5C 256.5,55.5 257.5,55.5 258.5,55.5C 258.281,54.325 258.614,53.325 259.5,52.5C 261.782,50.4538 264.449,49.4538 267.5,49.5C 267.5,47.8333 267.5,46.1667 267.5,44.5C 268.833,44.5 270.167,44.5 271.5,44.5C 271.5,45.5 271.5,46.5 271.5,47.5C 270.448,47.3505 269.448,47.5172 268.5,48C 271.351,49.2886 274.351,49.7886 277.5,49.5C 277.187,46.7531 277.52,44.0865 278.5,41.5C 280.923,40.2882 281.923,38.2882 281.5,35.5C 283.5,35.5 285.5,35.5 287.5,35.5 Z"/></g>
<g><path style="opacity:1" fill="#feedc8" d="M 383.5,47.5 C 387.11,48.3109 390.444,49.6442 393.5,51.5C 389.525,51.5141 386.192,50.1807 383.5,47.5 Z"/></g>
<g><path style="opacity:1" fill="#f6f9f9" d="M 399.5,46.5 C 404.764,48.1493 410.097,49.4827 415.5,50.5C 415.5,51.5 415.5,52.5 415.5,53.5C 413.901,53.2322 412.568,53.5655 411.5,54.5C 409.396,54.7989 407.396,54.4656 405.5,53.5C 406.894,52.3131 406.727,51.6465 405,51.5C 401.185,52.5615 397.351,52.5615 393.5,51.5C 390.444,49.6442 387.11,48.3109 383.5,47.5C 384.514,46.2353 386.014,45.5687 388,45.5C 389.5,45.6667 391,45.8333 392.5,46C 394.933,47.1297 397.266,48.2964 399.5,49.5C 399.5,48.5 399.5,47.5 399.5,46.5 Z"/></g>
<g><path style="opacity:1" fill="#faf8ef" d="M 236.5,31.5 C 238.833,31.5 241.167,31.5 243.5,31.5C 243.953,32.4584 244.619,33.2917 245.5,34C 248.817,34.4983 252.15,34.665 255.5,34.5C 255.5,34.8333 255.5,35.1667 255.5,35.5C 249.918,36.3194 244.584,37.6527 239.5,39.5C 237.533,39.2606 235.699,39.5939 234,40.5C 233.503,42.8098 233.337,45.1432 233.5,47.5C 234.791,47.7373 235.791,47.404 236.5,46.5C 237.5,46.5 238.5,46.5 239.5,46.5C 245.711,44.8986 252.044,44.2319 258.5,44.5C 257.5,45.8333 256.5,47.1667 255.5,48.5C 252.543,49.6552 249.543,50.6552 246.5,51.5C 240.966,52.6047 235.633,54.2713 230.5,56.5C 229.133,55.7745 227.8,55.1079 226.5,54.5C 226.5,48.1667 226.5,41.8333 226.5,35.5C 230.567,35.7937 233.9,34.4603 236.5,31.5 Z"/></g>
<g><path style="opacity:1" fill="#f9f6eb" d="M 447.5,35.5 C 456.874,38.6876 465.874,42.6876 474.5,47.5C 474.937,49.0744 475.937,50.2411 477.5,51C 484.94,54.6445 491.94,58.8112 498.5,63.5C 498.99,65.9484 498.157,67.615 496,68.5C 492.638,67.1092 489.472,65.4425 486.5,63.5C 474.847,57.4486 463.347,51.1153 452,44.5C 449.068,46.8352 446.234,49.3352 443.5,52C 440.779,52.6015 438.113,52.4349 435.5,51.5C 434.662,51.1583 434.328,50.4916 434.5,49.5C 438.605,44.973 442.939,40.6396 447.5,36.5C 447.5,36.1667 447.5,35.8333 447.5,35.5 Z"/></g>
<g><path style="opacity:1" fill="#eeab6a" d="M 150.5,47.5 C 149.826,49.0245 148.826,50.3578 147.5,51.5C 148.025,52.1924 148.692,52.6924 149.5,53C 146.039,52.8862 142.706,53.7196 139.5,55.5C 139.5,54.8333 139.5,54.1667 139.5,53.5C 143.62,52.2744 147.287,50.2744 150.5,47.5 Z"/></g>
<g><path style="opacity:1" fill="#f9f7ec" d="M 197.5,31.5 C 199.167,31.5 200.833,31.5 202.5,31.5C 202.666,36.8437 202.499,42.1771 202,47.5C 201.333,48.8333 200.667,50.1667 200,51.5C 198.122,52.0527 196.622,53.0527 195.5,54.5C 189.962,56.7621 184.962,59.7621 180.5,63.5C 175.302,65.9305 170.302,68.5972 165.5,71.5C 163.692,72.9179 163.025,74.9179 163.5,77.5C 166.753,78.2466 170.086,78.2466 173.5,77.5C 173.335,79.8268 172.669,81.9935 171.5,84C 168.204,85.5107 164.871,86.6774 161.5,87.5C 161.771,85.6203 161.104,84.287 159.5,83.5C 159.5,83.1667 159.5,82.8333 159.5,82.5C 157.849,77.6716 157.183,72.6716 157.5,67.5C 169.751,61.3087 182.084,54.9754 194.5,48.5C 195.833,45.8333 195.833,43.1667 194.5,40.5C 182.878,45.9775 171.544,51.9775 160.5,58.5C 156.811,61.353 152.977,64.0197 149,66.5C 148.211,68.7116 148.378,70.7116 149.5,72.5C 150.499,77.1646 151.499,81.8312 152.5,86.5C 154.432,90.0252 154.766,93.6919 153.5,97.5C 137.052,109.116 122.386,122.616 109.5,138C 107.613,138.163 106.113,137.329 105,135.5C 103.238,130.964 100.738,126.964 97.5,123.5C 97.2525,121.142 97.9192,119.142 99.5,117.5C 101.413,115.88 102.747,113.88 103.5,111.5C 105.433,111.271 107.1,110.438 108.5,109C 114.708,102.624 121.041,96.4578 127.5,90.5C 129.693,83.8458 128.027,82.3458 122.5,86C 118.908,88.755 115.908,91.9216 113.5,95.5C 109.436,97.0225 106.436,99.6891 104.5,103.5C 102.833,104.5 101.5,105.833 100.5,107.5C 99.5041,107.414 98.6708,107.748 98,108.5C 95.0463,112.159 92.0463,115.826 89,119.5C 88.4553,122.077 89.2886,124.077 91.5,125.5C 91.886,127.937 93.0527,129.937 95,131.5C 95.49,132.793 95.6567,134.127 95.5,135.5C 94.0609,136.509 92.7276,136.176 91.5,134.5C 89.9597,129.388 88.293,124.388 86.5,119.5C 84.8561,119.286 83.3561,119.62 82,120.5C 81.9822,122.797 82.1489,125.131 82.5,127.5C 80.1824,125.815 79.1824,123.481 79.5,120.5C 79.5,120.167 79.5,119.833 79.5,119.5C 83.2167,118.08 85.5501,115.413 86.5,111.5C 92.5853,105.052 98.5853,98.5525 104.5,92C 112.099,86.7003 119.099,80.7003 125.5,74C 127.441,72.0972 129.774,71.2639 132.5,71.5C 132.899,75.1165 133.899,78.4498 135.5,81.5C 135.5,81.8333 135.5,82.1667 135.5,82.5C 136.468,85.4453 136.634,88.4453 136,91.5C 131.991,95.3425 128.157,99.3425 124.5,103.5C 118.206,108.293 112.372,113.626 107,119.5C 106.308,120.437 106.475,121.103 107.5,121.5C 107.328,122.492 107.662,123.158 108.5,123.5C 108.843,125.225 109.843,125.725 111.5,125C 116.051,120.952 120.051,116.452 123.5,111.5C 129.624,106.585 135.624,101.419 141.5,96C 142.793,95.51 144.127,95.3433 145.5,95.5C 144.985,90.7929 144.152,86.1262 143,81.5C 142.583,80.244 141.75,79.5774 140.5,79.5C 140.579,75.0568 139.913,70.7235 138.5,66.5C 139.073,63.9147 140.739,62.9147 143.5,63.5C 143.281,62.325 143.614,61.325 144.5,60.5C 151.879,56.0936 159.213,51.7603 166.5,47.5C 169.406,45.5498 172.406,43.8831 175.5,42.5C 176.183,40.8235 177.517,40.1568 179.5,40.5C 183.808,39.0127 187.808,37.0127 191.5,34.5C 193.988,34.3167 195.988,33.3167 197.5,31.5 Z"/></g>
<g><path style="opacity:1" fill="#f3a756" d="M 159.5,82.5 C 158.518,83.1408 157.518,83.8075 156.5,84.5C 155.294,82.5159 155.294,80.5159 156.5,78.5C 154.907,74.6913 154.074,70.6913 154,66.5C 152.644,67.3802 151.144,67.7135 149.5,67.5C 149.5,69.1667 149.5,70.8333 149.5,72.5C 148.378,70.7116 148.211,68.7116 149,66.5C 152.977,64.0197 156.811,61.353 160.5,58.5C 171.544,51.9775 182.878,45.9775 194.5,40.5C 195.833,43.1667 195.833,45.8333 194.5,48.5C 182.084,54.9754 169.751,61.3087 157.5,67.5C 157.183,72.6716 157.849,77.6716 159.5,82.5 Z"/></g>
<g><path style="opacity:1" fill="#f9eed4" d="M 393.5,51.5 C 397.351,52.5615 401.185,52.5615 405,51.5C 406.727,51.6465 406.894,52.3131 405.5,53.5C 407.396,54.4656 409.396,54.7989 411.5,54.5C 409.735,55.4614 407.735,55.7947 405.5,55.5C 401.195,54.765 397.195,53.4317 393.5,51.5 Z"/></g>
<g><path style="opacity:1" fill="#fff4d9" d="M 139.5,53.5 C 139.5,54.1667 139.5,54.8333 139.5,55.5C 135.5,57.8333 131.5,60.1667 127.5,62.5C 127.5,61.5 127.5,60.5 127.5,59.5C 131.745,57.9045 135.745,55.9045 139.5,53.5 Z"/></g>
<g><path style="opacity:1" fill="#f6a346" d="M 218.5,51.5 C 218.5,44.8333 218.5,38.1667 218.5,31.5C 219.5,31.5 220.5,31.5 221.5,31.5C 222.451,38.9946 223.118,46.6613 223.5,54.5C 221.585,54.2155 219.919,54.5489 218.5,55.5C 213.463,55.4126 208.463,55.746 203.5,56.5C 200.531,57.3287 197.531,57.4954 194.5,57C 195.571,56.1482 196.571,55.3149 197.5,54.5C 200.199,54.5339 202.699,53.8672 205,52.5C 204.712,45.5363 204.545,38.5363 204.5,31.5C 205.833,31.5 207.167,31.5 208.5,31.5C 208.664,38.2022 208.331,44.8689 207.5,51.5C 211.328,52.498 214.994,52.498 218.5,51.5 Z"/></g>
<g><path style="opacity:1" fill="#f3a750" d="M 486.5,63.5 C 488.47,67.1507 491.47,69.1507 495.5,69.5C 495.662,71.5273 495.495,73.5273 495,75.5C 493.51,76.7279 492.01,76.7279 490.5,75.5C 481.216,69.7081 472.216,63.7081 463.5,57.5C 459.102,53.0465 454.102,52.3798 448.5,55.5C 446.821,53.8955 444.821,53.2289 442.5,53.5C 442.5,54.5 442.5,55.5 442.5,56.5C 440.473,56.6621 438.473,56.4955 436.5,56C 436.088,54.4361 435.755,52.9361 435.5,51.5C 438.113,52.4349 440.779,52.6015 443.5,52C 446.234,49.3352 449.068,46.8352 452,44.5C 463.347,51.1153 474.847,57.4486 486.5,63.5 Z"/></g>
<g><path style="opacity:1" fill="#f3a652" d="M 166.5,47.5 C 159.213,51.7603 151.879,56.0936 144.5,60.5C 143.614,61.325 143.281,62.325 143.5,63.5C 140.739,62.9147 139.073,63.9147 138.5,66.5C 139.913,70.7235 140.579,75.0568 140.5,79.5C 139.691,77.7078 139.191,75.7078 139,73.5C 136.298,70.2235 135.798,66.5569 137.5,62.5C 136.833,62.1667 136.167,61.8333 135.5,61.5C 133.098,63.049 130.432,63.7157 127.5,63.5C 127.5,63.1667 127.5,62.8333 127.5,62.5C 131.5,60.1667 135.5,57.8333 139.5,55.5C 142.706,53.7196 146.039,52.8862 149.5,53C 148.692,52.6924 148.025,52.1924 147.5,51.5C 148.826,50.3578 149.826,49.0245 150.5,47.5C 150.833,47.5 151.167,47.5 151.5,47.5C 154.761,46.5501 157.928,45.2167 161,43.5C 163.243,44.512 165.076,45.8454 166.5,47.5 Z"/></g>
<g><path style="opacity:1" fill="#f8a446" d="M 255.5,59.5 C 255.5,60.1667 255.167,60.5 254.5,60.5C 251.77,61.2073 249.103,61.5406 246.5,61.5C 246.539,60.4168 246.873,59.4168 247.5,58.5C 243.071,57.2609 238.737,57.5942 234.5,59.5C 233.41,58.6086 233.41,57.6086 234.5,56.5C 237.57,55.6228 240.57,54.6228 243.5,53.5C 245.827,53.7529 247.827,53.0863 249.5,51.5C 251.217,52.6685 251.884,54.3352 251.5,56.5C 252.833,56.5 254.167,56.5 255.5,56.5C 255.5,57.5 255.5,58.5 255.5,59.5 Z"/></g>
<g><path style="opacity:1" fill="#e8a268" d="M 343.5,61.5 C 344.36,65.4338 344.693,69.4338 344.5,73.5C 343.778,73.9175 343.278,74.5842 343,75.5C 342.621,81.7408 342.454,87.7408 342.5,93.5C 341.642,83.5623 341.476,73.5623 342,63.5C 339.443,58.4635 335.277,55.7969 329.5,55.5C 329.664,52.8127 329.497,50.146 329,47.5C 326.273,44.2694 323.106,41.6028 319.5,39.5C 315.894,41.6028 312.727,44.2694 310,47.5C 309.503,50.146 309.336,52.8127 309.5,55.5C 304.042,55.4441 299.876,57.7774 297,62.5C 297.489,72.8971 297.323,83.2305 296.5,93.5C 296.735,87.5618 296.402,81.5618 295.5,75.5C 294.222,70.8648 294.222,66.1982 295.5,61.5C 297.791,56.3493 301.791,53.6826 307.5,53.5C 307.203,50.2761 307.87,47.2761 309.5,44.5C 312.556,41.6024 315.723,38.9357 319,36.5C 323.573,39.0661 327.573,42.3995 331,46.5C 331.497,48.8098 331.663,51.1432 331.5,53.5C 336.863,54.1778 340.863,56.8445 343.5,61.5 Z"/></g>
<g><path style="opacity:1" fill="#e9ad5d" d="M 474.5,47.5 C 479.765,48.7241 484.765,50.3908 489.5,52.5C 489.062,56.9083 491.062,58.5749 495.5,57.5C 495.5,58.5 495.5,59.5 495.5,60.5C 497.973,60.0882 499.306,61.0882 499.5,63.5C 499.167,63.5 498.833,63.5 498.5,63.5C 491.94,58.8112 484.94,54.6445 477.5,51C 475.937,50.2411 474.937,49.0744 474.5,47.5 Z"/></g>
<g><path style="opacity:1" fill="#eaa158" d="M 195.5,54.5 C 196.167,54.5 196.833,54.5 197.5,54.5C 196.571,55.3149 195.571,56.1482 194.5,57C 197.531,57.4954 200.531,57.3287 203.5,56.5C 199.535,58.8184 195.535,61.1517 191.5,63.5C 191.762,62.0222 191.429,60.6888 190.5,59.5C 187.416,61.4179 184.082,62.7512 180.5,63.5C 184.962,59.7621 189.962,56.7621 195.5,54.5 Z"/></g>
<g><path style="opacity:1" fill="#df9d62" d="M 246.5,51.5 C 245.5,52.1667 244.5,52.8333 243.5,53.5C 240.57,54.6228 237.57,55.6228 234.5,56.5C 233.41,57.6086 233.41,58.6086 234.5,59.5C 238.737,57.5942 243.071,57.2609 247.5,58.5C 246.873,59.4168 246.539,60.4168 246.5,61.5C 244.39,62.4525 243.223,64.1192 243,66.5C 241.783,72.101 241.283,77.7676 241.5,83.5C 240.521,80.3752 240.187,77.0419 240.5,73.5C 241.066,68.2323 242.399,63.2323 244.5,58.5C 241.33,59.2655 238.33,60.2655 235.5,61.5C 232.419,60.4618 229.419,59.1285 226.5,57.5C 226.5,56.5 226.5,55.5 226.5,54.5C 227.8,55.1079 229.133,55.7745 230.5,56.5C 235.633,54.2713 240.966,52.6047 246.5,51.5 Z"/></g>
<g><path style="opacity:1" fill="#310609" d="M 240.5,73.5 C 239.63,69.2363 237.963,65.2363 235.5,61.5C 238.33,60.2655 241.33,59.2655 244.5,58.5C 242.399,63.2323 241.066,68.2323 240.5,73.5 Z"/></g>
<g><path style="opacity:1" fill="#720e08" d="M 342.5,93.5 C 343.359,97.8919 345.693,101.225 349.5,103.5C 350.506,104.396 350.506,105.062 349.5,105.5C 344.273,103.254 339.606,100.254 335.5,96.5C 337.155,94.362 338.155,91.862 338.5,89C 338.156,77.016 332.156,69.8494 320.5,67.5C 320.337,65.1432 320.503,62.8098 321,60.5C 325.996,55.9908 325.496,52.3242 319.5,49.5C 313.504,52.3242 313.004,55.9908 318,60.5C 318.497,62.8098 318.663,65.1432 318.5,67.5C 316.143,67.3367 313.81,67.5034 311.5,68C 310.005,70.1614 308.172,71.9947 306,73.5C 305.235,73.4301 304.735,73.0967 304.5,72.5C 303.532,74.6074 303.198,76.9407 303.5,79.5C 302.5,79.5 301.5,79.5 300.5,79.5C 300.708,81.9201 300.374,84.2534 299.5,86.5C 300.213,88.7759 300.713,91.1093 301,93.5C 301.698,94.6906 302.531,95.6906 303.5,96.5C 299.888,99.9775 295.888,102.978 291.5,105.5C 290.448,105.649 289.448,105.483 288.5,105C 292.549,102.12 295.215,98.2862 296.5,93.5C 297.323,83.2305 297.489,72.8971 297,62.5C 299.876,57.7774 304.042,55.4441 309.5,55.5C 309.336,52.8127 309.503,50.146 310,47.5C 312.727,44.2694 315.894,41.6028 319.5,39.5C 323.106,41.6028 326.273,44.2694 329,47.5C 329.497,50.146 329.664,52.8127 329.5,55.5C 335.277,55.7969 339.443,58.4635 342,63.5C 341.476,73.5623 341.642,83.5623 342.5,93.5 Z"/></g>
<g><path style="opacity:1" fill="#f0a85f" d="M 495.5,53.5 C 497.693,54.6805 500.026,55.6805 502.5,56.5C 505.734,59.5771 509.068,62.4104 512.5,65C 513.901,65.4101 515.234,65.9101 516.5,66.5C 518.183,67.8534 519.516,69.5201 520.5,71.5C 517.584,71.1067 514.917,70.1067 512.5,68.5C 511.571,69.6888 511.238,71.0222 511.5,72.5C 506.776,70.4707 502.776,67.4707 499.5,63.5C 502.469,64.3287 505.469,64.4954 508.5,64C 504.255,60.2803 499.922,56.7803 495.5,53.5 Z"/></g>
<g><path style="opacity:1" fill="#fae8cc" d="M 486.5,63.5 C 489.472,65.4425 492.638,67.1092 496,68.5C 498.157,67.615 498.99,65.9484 498.5,63.5C 498.833,63.5 499.167,63.5 499.5,63.5C 502.776,67.4707 506.776,70.4707 511.5,72.5C 508.789,75.0438 505.789,77.3772 502.5,79.5C 503.437,77.1621 504.77,74.9955 506.5,73C 505.431,70.3502 503.431,68.8502 500.5,68.5C 500.646,73.8789 498.146,76.8789 493,77.5C 491.624,77.3158 490.791,76.6491 490.5,75.5C 492.01,76.7279 493.51,76.7279 495,75.5C 495.495,73.5273 495.662,71.5273 495.5,69.5C 491.47,69.1507 488.47,67.1507 486.5,63.5 Z"/></g>
<g><path style="opacity:1" fill="#370707" d="M 399.5,59.5 C 400.209,60.404 401.209,60.7373 402.5,60.5C 401.435,64.9517 400.101,69.285 398.5,73.5C 398.196,70.4781 397.696,67.4781 397,64.5C 391.47,58.3317 392.303,56.665 399.5,59.5 Z"/></g>
<g><path style="opacity:1" fill="#faa344" d="M 159.5,82.5 C 159.5,82.8333 159.5,83.1667 159.5,83.5C 159.5,85.1667 159.5,86.8333 159.5,88.5C 158.244,90.941 158.244,93.2743 159.5,95.5C 159.646,97.9424 158.813,98.6091 157,97.5C 155.902,94.4174 155.068,91.2507 154.5,88C 154.164,86.9701 153.497,86.4701 152.5,86.5C 151.499,81.8312 150.499,77.1646 149.5,72.5C 149.5,70.8333 149.5,69.1667 149.5,67.5C 151.144,67.7135 152.644,67.3802 154,66.5C 154.074,70.6913 154.907,74.6913 156.5,78.5C 155.294,80.5159 155.294,82.5159 156.5,84.5C 157.518,83.8075 158.518,83.1408 159.5,82.5 Z"/></g>
<g><path style="opacity:1" fill="#dc9e5c" d="M 435.5,72.5 C 434.662,72.8417 434.328,73.5084 434.5,74.5C 432.787,72.805 430.787,71.9717 428.5,72C 435.416,77.6348 437.083,84.4681 433.5,92.5C 433.573,94.0269 432.906,95.0269 431.5,95.5C 429.772,97.2255 427.772,98.5589 425.5,99.5C 425.062,99.5654 424.728,99.3988 424.5,99C 428.414,97.0069 430.748,93.8403 431.5,89.5C 432.637,77.7961 427.304,71.2961 415.5,70C 416.416,69.7216 417.082,69.2216 417.5,68.5C 422.378,67.3101 427.378,67.4768 432.5,69C 433.71,70.0391 434.71,71.2058 435.5,72.5 Z"/></g>
<g><path style="opacity:1" fill="#420707" d="M 355.5,87.5 C 355.833,86.8333 356.167,86.1667 356.5,85.5C 358.027,85.573 359.027,84.9063 359.5,83.5C 360.458,83.0472 361.292,82.3805 362,81.5C 363.252,70.9452 358.752,67.6118 348.5,71.5C 347.668,70.6715 348.001,69.8382 349.5,69C 348.376,68.7508 347.376,68.2508 346.5,67.5C 346.086,65.0808 345.086,63.0808 343.5,61.5C 340.863,56.8445 336.863,54.1778 331.5,53.5C 331.663,51.1432 331.497,48.8098 331,46.5C 327.573,42.3995 323.573,39.0661 319,36.5C 315.723,38.9357 312.556,41.6024 309.5,44.5C 307.87,47.2761 307.203,50.2761 307.5,53.5C 301.791,53.6826 297.791,56.3493 295.5,61.5C 294.883,61.6107 294.383,61.944 294,62.5C 293.501,66.1516 293.335,69.8183 293.5,73.5C 293.167,73.5 292.833,73.5 292.5,73.5C 287.264,69.5972 282.097,69.5972 277,73.5C 275.863,77.4631 276.697,80.7964 279.5,83.5C 279.833,84.5 280.5,85.1667 281.5,85.5C 281.918,86.2216 282.584,86.7216 283.5,87C 282.584,87.2784 281.918,87.7784 281.5,88.5C 266.815,92.2393 260.315,86.5726 262,71.5C 267.048,62.1038 274.882,58.7705 285.5,61.5C 286.349,55.9672 288.683,51.1339 292.5,47C 300.749,41.2088 309.749,37.0421 319.5,34.5C 325.388,36.8651 331.388,39.0318 337.5,41C 346.557,44.9552 351.89,51.7886 353.5,61.5C 357.182,61.3347 360.848,61.5014 364.5,62C 377.108,65.7185 380.608,73.5519 375,85.5C 368.909,89.9781 362.409,90.6448 355.5,87.5 Z"/></g>
<g><path style="opacity:1" fill="#df8c63" d="M 304.5,72.5 C 302.478,67.94 303.478,64.2734 307.5,61.5C 308.08,62.5736 307.58,63.5736 306,64.5C 305.231,67.0991 305.398,69.5991 306.5,72C 305.906,72.4643 305.239,72.631 304.5,72.5 Z"/></g>
<g><path style="opacity:1" fill="#eca56d" d="M 292.5,73.5 C 292.631,74.2389 292.464,74.9056 292,75.5C 288.21,71.1459 283.877,70.4793 279,73.5C 278.503,75.8098 278.337,78.1432 278.5,80.5C 281.487,80.9978 284.487,81.4978 287.5,82C 284.635,82.1829 281.969,82.6829 279.5,83.5C 276.697,80.7964 275.863,77.4631 277,73.5C 282.097,69.5972 287.264,69.5972 292.5,73.5 Z"/></g>
<g><path style="opacity:1" fill="#4f1907" d="M 343.5,61.5 C 345.086,63.0808 346.086,65.0808 346.5,67.5C 347.376,68.2508 348.376,68.7508 349.5,69C 348.001,69.8382 347.668,70.6715 348.5,71.5C 347.306,72.2719 346.306,73.2719 345.5,74.5C 344.833,74.5 344.5,74.1667 344.5,73.5C 344.693,69.4338 344.36,65.4338 343.5,61.5 Z"/></g>
<g><path style="opacity:1" fill="#723708" d="M 295.5,61.5 C 294.222,66.1982 294.222,70.8648 295.5,75.5C 295.565,75.9382 295.399,76.2716 295,76.5C 293.961,75.7562 293.461,74.7562 293.5,73.5C 293.335,69.8183 293.501,66.1516 294,62.5C 294.383,61.944 294.883,61.6107 295.5,61.5 Z"/></g>
<g><path style="opacity:1" fill="#de885a" d="M 330.5,62.5 C 332.398,61.515 333.898,62.1817 335,64.5C 335.667,66.8333 335.667,69.1667 335,71.5C 334.586,71.9574 334.086,72.2907 333.5,72.5C 333.478,70.0984 333.311,67.4318 333,64.5C 332.292,63.6195 331.458,62.9528 330.5,62.5 Z"/></g>
<g><path style="opacity:1" fill="#e79f66" d="M 320.5,67.5 C 319.833,67.5 319.167,67.5 318.5,67.5C 318.663,65.1432 318.497,62.8098 318,60.5C 313.004,55.9908 313.504,52.3242 319.5,49.5C 325.496,52.3242 325.996,55.9908 321,60.5C 320.503,62.8098 320.337,65.1432 320.5,67.5 Z"/></g>
<g><path style="opacity:1" fill="#4f2110" d="M 318.5,51.5 C 323.254,53.1124 323.587,55.4457 319.5,58.5C 315.967,56.5798 315.633,54.2465 318.5,51.5 Z"/></g>
<g><path style="opacity:1" fill="#fba345" d="M 140.5,79.5 C 140.799,81.604 140.466,83.604 139.5,85.5C 138.358,84.1738 137.024,83.1738 135.5,82.5C 135.5,82.1667 135.5,81.8333 135.5,81.5C 135.979,77.0887 135.312,72.922 133.5,69C 129.489,69.1851 127.489,67.3518 127.5,63.5C 130.432,63.7157 133.098,63.049 135.5,61.5C 136.167,61.8333 136.833,62.1667 137.5,62.5C 135.798,66.5569 136.298,70.2235 139,73.5C 139.191,75.7078 139.691,77.7078 140.5,79.5 Z"/></g>
<g><path style="opacity:1" fill="#e9a166" d="M 359.5,83.5 C 360.449,80.128 360.449,76.7947 359.5,73.5C 355.86,72.0405 352.527,72.3739 349.5,74.5C 347.965,75.3543 346.632,75.3543 345.5,74.5C 346.306,73.2719 347.306,72.2719 348.5,71.5C 358.752,67.6118 363.252,70.9452 362,81.5C 361.292,82.3805 360.458,83.0472 359.5,83.5 Z"/></g>
<g><path style="opacity:1" fill="#efa356" d="M 434.5,49.5 C 434.328,50.4916 434.662,51.1583 435.5,51.5C 435.755,52.9361 436.088,54.4361 436.5,56C 438.473,56.4955 440.473,56.6621 442.5,56.5C 442.5,55.5 442.5,54.5 442.5,53.5C 444.821,53.2289 446.821,53.8955 448.5,55.5C 454.102,52.3798 459.102,53.0465 463.5,57.5C 460.275,57.0917 457.275,56.0917 454.5,54.5C 451.144,54.8868 450.144,56.5534 451.5,59.5C 465.323,66.834 478.656,75.0006 491.5,84C 492.793,84.49 494.127,84.6567 495.5,84.5C 495.649,85.552 495.483,86.552 495,87.5C 492.936,86.4086 490.769,86.2419 488.5,87C 490.657,90.7096 493.324,91.2096 496.5,88.5C 497.107,88.6236 497.44,88.9569 497.5,89.5C 495.947,92.254 493.614,93.0874 490.5,92C 482.043,85.932 473.376,80.0986 464.5,74.5C 463.353,76.7649 463.186,79.0982 464,81.5C 472.615,86.9565 480.781,92.9565 488.5,99.5C 487.167,99.5 485.833,99.5 484.5,99.5C 485.417,102.418 487.417,104.418 490.5,105.5C 492.242,107.563 493.909,109.563 495.5,111.5C 492.5,109.5 489.5,107.5 486.5,105.5C 485.564,104.026 484.23,103.026 482.5,102.5C 478.524,99.5314 474.524,96.5314 470.5,93.5C 469.152,92.3994 467.652,91.3994 466,90.5C 465.1,94.8342 464.266,99.1676 463.5,103.5C 462.833,103.5 462.167,103.5 461.5,103.5C 464.213,79.3905 454.213,63.5572 431.5,56C 426.167,55.3333 420.833,55.3333 415.5,56C 413.273,56.941 411.273,58.1077 409.5,59.5C 407.906,59.9195 406.406,60.5862 405,61.5C 404.098,61.2568 403.265,60.9234 402.5,60.5C 401.209,60.7373 400.209,60.404 399.5,59.5C 401.199,59.6602 402.866,59.4935 404.5,59C 406.373,58.0471 406.706,56.8804 405.5,55.5C 407.735,55.7947 409.735,55.4614 411.5,54.5C 412.568,53.5655 413.901,53.2322 415.5,53.5C 420.785,52.7648 426.118,52.2648 431.5,52C 430.833,51.6667 430.167,51.3333 429.5,51C 430.905,49.7308 432.571,49.2308 434.5,49.5 Z"/></g>
<g><path style="opacity:1" fill="#e8b47b" d="M 520.5,71.5 C 523.674,72.0102 526.008,73.6769 527.5,76.5C 524.312,75.9716 521.979,74.3049 520.5,71.5 Z"/></g>
<g><path style="opacity:1" fill="#f6e0bb" d="M 165.5,71.5 C 165.083,76.0685 167.083,77.5685 171.5,76C 173.621,72.7209 174.954,72.8876 175.5,76.5C 175.192,79.592 174.192,82.4254 172.5,85C 169.243,85.7491 166.576,87.4157 164.5,90C 162.505,90.6128 160.838,90.1128 159.5,88.5C 159.5,86.8333 159.5,85.1667 159.5,83.5C 161.104,84.287 161.771,85.6203 161.5,87.5C 164.871,86.6774 168.204,85.5107 171.5,84C 172.669,81.9935 173.335,79.8268 173.5,77.5C 170.086,78.2466 166.753,78.2466 163.5,77.5C 163.025,74.9179 163.692,72.9179 165.5,71.5 Z"/></g>
<g><path style="opacity:1" fill="#51060a" d="M 221.5,68.5 C 211.492,65.7516 203.659,68.7516 198,77.5C 193.343,86.288 193.677,94.9547 199,103.5C 204.868,110.404 212.368,113.738 221.5,113.5C 231.871,112.877 240.871,109.043 248.5,102C 249.749,101.26 250.749,101.427 251.5,102.5C 251.5,103.5 251.5,104.5 251.5,105.5C 249.345,105.372 247.345,105.872 245.5,107C 246.731,108.183 246.731,109.349 245.5,110.5C 233.197,114.681 220.53,116.015 207.5,114.5C 207.5,113.5 207.5,112.5 207.5,111.5C 205.076,111.808 202.743,111.474 200.5,110.5C 196.924,107.01 194.09,103.01 192,98.5C 191.169,91.8085 191.336,85.1418 192.5,78.5C 195.513,75.6513 198.18,72.4847 200.5,69C 204.831,67.6718 209.164,66.3385 213.5,65C 213.167,64.6667 212.833,64.3333 212.5,64C 214.167,63.3333 215.833,63.3333 217.5,64C 219.246,66.2585 221.58,67.5918 224.5,68C 223.552,68.4828 222.552,68.6495 221.5,68.5 Z"/></g>
<g><path style="opacity:1" fill="#500509" d="M 438.5,69.5 C 445.615,74.7636 448.615,81.9303 447.5,91C 447.333,93.5 447.167,96 447,98.5C 443.153,102.274 440.32,106.608 438.5,111.5C 436.167,111.5 433.833,111.5 431.5,111.5C 431.5,112.5 431.5,113.5 431.5,114.5C 423.512,115.333 415.512,115.499 407.5,115C 402.499,112.334 397.166,111.167 391.5,111.5C 391.137,109.089 392.137,107.589 394.5,107C 392.105,106.319 389.772,105.485 387.5,104.5C 388.127,103.583 388.461,102.583 388.5,101.5C 389.167,101.5 389.833,101.5 390.5,101.5C 395.082,106.626 400.749,109.96 407.5,111.5C 407.918,112.222 408.584,112.722 409.5,113C 414.352,113.815 419.019,113.648 423.5,112.5C 433.081,111.55 439.415,106.55 442.5,97.5C 446.415,87.263 444.082,78.9296 435.5,72.5C 434.71,71.2058 433.71,70.0391 432.5,69C 427.378,67.4768 422.378,67.3101 417.5,68.5C 416.448,68.6495 415.448,68.4828 414.5,68C 420.037,64.9014 425.703,64.2347 431.5,66C 433.456,67.9071 435.79,69.0737 438.5,69.5 Z"/></g>
<g><path style="opacity:1" fill="#f7a450" d="M 520.5,71.5 C 521.979,74.3049 524.312,75.9716 527.5,76.5C 527.5,77.5 527.5,78.5 527.5,79.5C 528.833,79.5 530.167,79.5 531.5,79.5C 531.286,81.1439 531.62,82.6439 532.5,84C 536.229,85.2549 539.562,87.0882 542.5,89.5C 543.11,90.391 543.443,91.391 543.5,92.5C 543.5,93.5 543.5,94.5 543.5,95.5C 545.355,95.272 546.188,95.9387 546,97.5C 544.612,98.5536 543.112,98.7203 541.5,98C 538.471,92.7969 534.138,89.2969 528.5,87.5C 524.893,84.4515 521.059,81.7849 517,79.5C 511.414,81.8538 506.248,84.8538 501.5,88.5C 500.292,89.2341 498.959,89.5674 497.5,89.5C 497.44,88.9569 497.107,88.6236 496.5,88.5C 493.324,91.2096 490.657,90.7096 488.5,87C 490.769,86.2419 492.936,86.4086 495,87.5C 495.483,86.552 495.649,85.552 495.5,84.5C 497.296,82.1 499.63,80.4333 502.5,79.5C 505.789,77.3772 508.789,75.0438 511.5,72.5C 511.238,71.0222 511.571,69.6888 512.5,68.5C 514.917,70.1067 517.584,71.1067 520.5,71.5 Z"/></g>
<g><path style="opacity:1" fill="#fbf1df" d="M 115.5,72.5 C 112.52,73.8293 111.187,76.1626 111.5,79.5C 110.167,79.5 108.833,79.5 107.5,79.5C 105.5,81.1667 103.5,82.8333 101.5,84.5C 102.721,79.7599 105.388,75.9266 109.5,73C 111.305,71.5585 113.305,71.3918 115.5,72.5 Z"/></g>
<g><path style="opacity:1" fill="#fbf1dc" d="M 516.5,66.5 C 518.604,66.2011 520.604,66.5344 522.5,67.5C 523.128,69.2581 524.128,70.7581 525.5,72C 531.431,72.4297 534.431,75.5964 534.5,81.5C 533.5,80.8333 532.5,80.1667 531.5,79.5C 530.167,79.5 528.833,79.5 527.5,79.5C 527.5,78.5 527.5,77.5 527.5,76.5C 526.008,73.6769 523.674,72.0102 520.5,71.5C 519.516,69.5201 518.183,67.8534 516.5,66.5 Z"/></g>
<g><path style="opacity:1" fill="#d8a158" d="M 221.5,68.5 C 221.842,69.3382 222.508,69.6716 223.5,69.5C 221.833,70.1667 220.167,70.8333 218.5,71.5C 208.594,74.6393 204.928,81.3059 207.5,91.5C 207.737,92.791 207.404,93.791 206.5,94.5C 206.573,92.9731 205.906,91.9731 204.5,91.5C 201.805,83.5446 203.805,77.0446 210.5,72C 209.092,71.6848 207.759,72.0181 206.5,73C 196.396,81.4421 194.896,91.2754 202,102.5C 204.801,105.147 207.968,107.147 211.5,108.5C 214.55,109.935 217.883,110.602 221.5,110.5C 223.696,110.495 225.696,110.162 227.5,109.5C 227.833,109.5 228.167,109.5 228.5,109.5C 234.006,108.675 238.673,106.342 242.5,102.5C 246.51,101.526 247.843,99.1922 246.5,95.5C 248.256,96.5521 248.923,98.2188 248.5,100.5C 251.285,99.9162 252.952,100.916 253.5,103.5C 252.833,103.167 252.167,102.833 251.5,102.5C 250.749,101.427 249.749,101.26 248.5,102C 240.871,109.043 231.871,112.877 221.5,113.5C 212.368,113.738 204.868,110.404 199,103.5C 193.677,94.9547 193.343,86.288 198,77.5C 203.659,68.7516 211.492,65.7516 221.5,68.5 Z"/></g>
<g><path style="opacity:1" fill="#f8f8f0" d="M 463.5,57.5 C 472.216,63.7081 481.216,69.7081 490.5,75.5C 490.791,76.6491 491.624,77.3158 493,77.5C 498.146,76.8789 500.646,73.8789 500.5,68.5C 503.431,68.8502 505.431,70.3502 506.5,73C 504.77,74.9955 503.437,77.1621 502.5,79.5C 499.63,80.4333 497.296,82.1 495.5,84.5C 494.127,84.6567 492.793,84.49 491.5,84C 478.656,75.0006 465.323,66.834 451.5,59.5C 450.144,56.5534 451.144,54.8868 454.5,54.5C 457.275,56.0917 460.275,57.0917 463.5,57.5 Z"/></g>
<g><path style="opacity:1" fill="#750303" d="M 409.5,59.5 C 409.389,60.1174 409.056,60.6174 408.5,61C 410.619,61.0976 412.286,61.9309 413.5,63.5C 411.009,64.5407 411.009,65.3741 413.5,66C 410.332,66.5823 409.999,67.5823 412.5,69C 408.782,72.7452 409.616,75.5785 415,77.5C 415.192,79.5767 415.692,81.5767 416.5,83.5C 418.14,80.2776 420.807,78.9443 424.5,79.5C 424.297,81.3904 424.963,82.8904 426.5,84C 424.993,84.8373 424.493,86.0039 425,87.5C 427.017,91.082 428.684,91.082 430,87.5C 430.278,88.4158 430.778,89.0825 431.5,89.5C 430.748,93.8403 428.414,97.0069 424.5,99C 424.728,99.3988 425.062,99.5654 425.5,99.5C 420.35,100.651 415.016,100.817 409.5,100C 408.061,99.0094 407.061,97.676 406.5,96C 405.552,95.5172 404.552,95.3505 403.5,95.5C 401.013,92.3717 399.013,89.0384 397.5,85.5C 398.272,81.5483 398.605,77.5483 398.5,73.5C 400.101,69.285 401.435,64.9517 402.5,60.5C 403.265,60.9234 404.098,61.2568 405,61.5C 406.406,60.5862 407.906,59.9195 409.5,59.5 Z"/></g>
<g><path style="opacity:1" fill="#730504" d="M 218.5,55.5 C 221.421,55.2826 224.087,55.9493 226.5,57.5C 229.419,59.1285 232.419,60.4618 235.5,61.5C 237.963,65.2363 239.63,69.2363 240.5,73.5C 240.187,77.0419 240.521,80.3752 241.5,83.5C 241.5,84.1667 241.5,84.8333 241.5,85.5C 239.516,88.764 237.516,92.0973 235.5,95.5C 233.833,95.5 232.167,95.5 230.5,95.5C 230.64,97.1238 229.973,98.2904 228.5,99C 224.848,99.4986 221.182,99.6653 217.5,99.5C 212.942,98.2381 209.609,95.5714 207.5,91.5C 204.928,81.3059 208.594,74.6393 218.5,71.5C 221.187,71.6641 223.854,71.4974 226.5,71C 225.473,70.4867 224.473,69.9867 223.5,69.5C 222.508,69.6716 221.842,69.3382 221.5,68.5C 222.552,68.6495 223.552,68.4828 224.5,68C 221.58,67.5918 219.246,66.2585 217.5,64C 215.833,63.3333 214.167,63.3333 212.5,64C 212.833,64.3333 213.167,64.6667 213.5,65C 209.164,66.3385 204.831,67.6718 200.5,69C 198.18,72.4847 195.513,75.6513 192.5,78.5C 191.336,85.1418 191.169,91.8085 192,98.5C 194.09,103.01 196.924,107.01 200.5,110.5C 202.743,111.474 205.076,111.808 207.5,111.5C 207.5,112.5 207.5,113.5 207.5,114.5C 214.59,116.131 221.923,116.965 229.5,117C 228.741,119.629 226.741,121.796 223.5,123.5C 224.766,124.362 226.099,125.029 227.5,125.5C 225.507,127.163 223.174,128.33 220.5,129C 214.526,128.794 209.86,130.961 206.5,135.5C 202.762,133.454 199.096,131.12 195.5,128.5C 193.926,127.369 192.259,127.202 190.5,128C 187.966,131.278 184.966,134.111 181.5,136.5C 180.333,139.2 180.5,141.867 182,144.5C 182.718,143.549 183.551,143.383 184.5,144C 185.833,144.667 185.833,145.333 184.5,146C 185.527,146.513 186.527,147.013 187.5,147.5C 185.906,148.983 184.24,150.483 182.5,152C 181.5,152.667 180.5,152.667 179.5,152C 176.045,147.589 172.711,143.089 169.5,138.5C 174.314,131.853 179.98,126.019 186.5,121C 178.109,110.263 175.276,98.0961 178,84.5C 180.518,76.1078 185.018,69.1078 191.5,63.5C 195.535,61.1517 199.535,58.8184 203.5,56.5C 208.463,55.746 213.463,55.4126 218.5,55.5 Z"/></g>
<g><path style="opacity:1" fill="#c26e56" d="M 223.5,69.5 C 224.473,69.9867 225.473,70.4867 226.5,71C 223.854,71.4974 221.187,71.6641 218.5,71.5C 220.167,70.8333 221.833,70.1667 223.5,69.5 Z"/></g>
<g><path style="opacity:1" fill="#f6a549" d="M 359.5,83.5 C 359.027,84.9063 358.027,85.573 356.5,85.5C 355.167,85.5 353.833,85.5 352.5,85.5C 350.284,88.4151 348.951,91.7485 348.5,95.5C 347.167,95.5 345.833,95.5 344.5,95.5C 343.573,89.1889 343.406,82.8556 344,76.5C 346.301,78.5245 348.134,77.8579 349.5,74.5C 352.527,72.3739 355.86,72.0405 359.5,73.5C 360.449,76.7947 360.449,80.128 359.5,83.5 Z"/></g>
<g><path style="opacity:1" fill="#f1bd8d" d="M 107.5,79.5 C 105.522,83.4784 102.522,86.4784 98.5,88.5C 98.7376,86.5956 99.7376,85.2623 101.5,84.5C 103.5,82.8333 105.5,81.1667 107.5,79.5 Z"/></g>
<g><path style="opacity:1" fill="#710a06" d="M 461.5,103.5 C 459.655,109.867 456.655,115.701 452.5,121C 456.334,124.002 460,127.169 463.5,130.5C 465.091,133.431 467.091,136.098 469.5,138.5C 468.873,139.417 468.539,140.417 468.5,141.5C 465.365,144.808 462.365,148.308 459.5,152C 458.5,152.667 457.5,152.667 456.5,152C 454.611,150.236 452.611,148.736 450.5,147.5C 452.997,147.273 454.664,145.94 455.5,143.5C 456.652,140.894 456.818,138.227 456,135.5C 452.62,133.283 449.787,130.616 447.5,127.5C 448.742,125.032 448.742,122.532 447.5,120C 450.358,116.268 452.358,112.101 453.5,107.5C 455.167,107.5 456.833,107.5 458.5,107.5C 458.579,106.07 458.246,104.736 457.5,103.5C 457.846,102.304 458.346,102.304 459,103.5C 459.373,101.302 459.873,99.1351 460.5,97C 458.32,91.4057 457.32,85.5724 457.5,79.5C 456.178,79.67 455.011,79.3366 454,78.5C 453.402,75.6922 452.235,73.1922 450.5,71C 451.604,69.8687 451.271,69.0354 449.5,68.5C 448.914,68.7093 448.414,69.0426 448,69.5C 445.946,64.4481 442.279,61.1147 437,59.5C 435.856,59.9111 434.689,60.2444 433.5,60.5C 427.815,57.2297 421.815,56.563 415.5,58.5C 415.36,60.1238 416.027,61.2904 417.5,62C 416.833,62.3333 416.167,62.6667 415.5,63C 421.833,63.3333 428.167,63.6667 434.5,64C 435.721,66.0337 437.055,67.867 438.5,69.5C 435.79,69.0737 433.456,67.9071 431.5,66C 425.703,64.2347 420.037,64.9014 414.5,68C 415.448,68.4828 416.448,68.6495 417.5,68.5C 417.082,69.2216 416.416,69.7216 415.5,70C 427.304,71.2961 432.637,77.7961 431.5,89.5C 430.778,89.0825 430.278,88.4158 430,87.5C 428.684,91.082 427.017,91.082 425,87.5C 424.493,86.0039 424.993,84.8373 426.5,84C 424.963,82.8904 424.297,81.3904 424.5,79.5C 420.807,78.9443 418.14,80.2776 416.5,83.5C 415.692,81.5767 415.192,79.5767 415,77.5C 409.616,75.5785 408.782,72.7452 412.5,69C 409.999,67.5823 410.332,66.5823 413.5,66C 411.009,65.3741 411.009,64.5407 413.5,63.5C 412.286,61.9309 410.619,61.0976 408.5,61C 409.056,60.6174 409.389,60.1174 409.5,59.5C 411.273,58.1077 413.273,56.941 415.5,56C 420.833,55.3333 426.167,55.3333 431.5,56C 454.213,63.5572 464.213,79.3905 461.5,103.5 Z"/></g>
<g><path style="opacity:1" fill="#f9f4e6" d="M 497.5,89.5 C 498.959,89.5674 500.292,89.2341 501.5,88.5C 497.67,93.5391 492.67,94.7057 486.5,92C 484.725,88.0973 482.058,87.0973 478.5,89C 482.255,90.5879 485.255,93.0879 487.5,96.5C 490.457,97.5074 493.124,98.8408 495.5,100.5C 495.53,101.497 495.03,102.164 494,102.5C 492.269,101.259 490.436,100.259 488.5,99.5C 480.781,92.9565 472.615,86.9565 464,81.5C 463.186,79.0982 463.353,76.7649 464.5,74.5C 473.376,80.0986 482.043,85.932 490.5,92C 493.614,93.0874 495.947,92.254 497.5,89.5 Z"/></g>
<g><path style="opacity:1" fill="#efb97d" d="M 531.5,79.5 C 532.5,80.1667 533.5,80.8333 534.5,81.5C 536.808,83.4707 539.142,85.4707 541.5,87.5C 541.833,88.1667 542.167,88.8333 542.5,89.5C 539.562,87.0882 536.229,85.2549 532.5,84C 531.62,82.6439 531.286,81.1439 531.5,79.5 Z"/></g>
<g><path style="opacity:1" fill="#fcf7e8" d="M 566.5,115.5 C 565.171,112.52 562.837,111.187 559.5,111.5C 559.5,110.833 559.5,110.167 559.5,109.5C 559.649,108.448 559.483,107.448 559,106.5C 554.241,101.234 549.075,96.5675 543.5,92.5C 543.443,91.391 543.11,90.391 542.5,89.5C 542.167,88.8333 541.833,88.1667 541.5,87.5C 542.893,88.2598 544.393,88.9265 546,89.5C 548.171,87.8019 550.338,86.1352 552.5,84.5C 555.085,85.0728 556.085,86.7395 555.5,89.5C 553.5,89.8333 551.5,90.1667 549.5,90.5C 549.371,94.0089 550.704,96.8422 553.5,99C 558.122,98.8015 560.122,100.968 559.5,105.5C 563.167,105.833 565.167,107.833 565.5,111.5C 566.552,111.351 567.552,111.517 568.5,112C 567.177,112.816 566.511,113.983 566.5,115.5 Z"/></g>
<g><path style="opacity:1" fill="#f5a54f" d="M 127.5,63.5 C 127.489,67.3518 129.489,69.1851 133.5,69C 135.312,72.922 135.979,77.0887 135.5,81.5C 133.899,78.4498 132.899,75.1165 132.5,71.5C 129.774,71.2639 127.441,72.0972 125.5,74C 119.099,80.7003 112.099,86.7003 104.5,92C 98.5853,98.5525 92.5853,105.052 86.5,111.5C 86.1667,111.5 85.8333,111.5 85.5,111.5C 84.1667,111.5 82.8333,111.5 81.5,111.5C 82.9595,106.323 85.7929,101.99 90,98.5C 90.4828,97.552 90.6495,96.552 90.5,95.5C 93.47,94.6916 95.3034,92.6916 96,89.5C 96.6708,88.7476 97.5041,88.4142 98.5,88.5C 102.522,86.4784 105.522,83.4784 107.5,79.5C 108.833,79.5 110.167,79.5 111.5,79.5C 111.187,76.1626 112.52,73.8293 115.5,72.5C 119.491,69.5026 123.491,66.5026 127.5,63.5 Z"/></g>
<g><path style="opacity:1" fill="#42100c" d="M 434.5,74.5 C 440.899,80.0374 443.232,87.0374 441.5,95.5C 441.167,95.5 440.833,95.5 440.5,95.5C 440.82,92.1016 440.487,88.7683 439.5,85.5C 438.081,87.3359 436.914,89.3359 436,91.5C 435.329,92.2524 434.496,92.5858 433.5,92.5C 437.083,84.4681 435.416,77.6348 428.5,72C 430.787,71.9717 432.787,72.805 434.5,74.5 Z"/></g>
<g><path style="opacity:1" fill="#460806" d="M 241.5,85.5 C 242.421,89.299 244.088,92.6323 246.5,95.5C 247.843,99.1922 246.51,101.526 242.5,102.5C 241.957,102.44 241.624,102.107 241.5,101.5C 245.213,99.6628 245.213,98.1628 241.5,97C 242.749,94.7904 242.582,92.6237 241,90.5C 239.991,92.0249 239.491,93.6916 239.5,95.5C 238.167,95.5 236.833,95.5 235.5,95.5C 237.516,92.0973 239.516,88.764 241.5,85.5 Z"/></g>
<g><path style="opacity:1" fill="#dca853" d="M 435.5,72.5 C 444.082,78.9296 446.415,87.263 442.5,97.5C 441.662,97.1583 441.328,96.4916 441.5,95.5C 443.232,87.0374 440.899,80.0374 434.5,74.5C 434.328,73.5084 434.662,72.8417 435.5,72.5 Z"/></g>
<g><path style="opacity:1" fill="#460204" d="M 318.5,67.5 C 319.167,67.5 319.833,67.5 320.5,67.5C 332.156,69.8494 338.156,77.016 338.5,89C 338.155,91.862 337.155,94.362 335.5,96.5C 336.485,100.33 338.819,103.163 342.5,105C 334.379,106.377 326.712,105.211 319.5,101.5C 313.228,104.734 306.562,106.067 299.5,105.5C 298.167,105.5 296.833,105.5 295.5,105.5C 299.595,103.74 302.262,100.74 303.5,96.5C 302.531,95.6906 301.698,94.6906 301,93.5C 300.713,91.1093 300.213,88.7759 299.5,86.5C 300.374,84.2534 300.708,81.9201 300.5,79.5C 301.5,79.5 302.5,79.5 303.5,79.5C 303.198,76.9407 303.532,74.6074 304.5,72.5C 304.735,73.0967 305.235,73.4301 306,73.5C 308.172,71.9947 310.005,70.1614 311.5,68C 313.81,67.5034 316.143,67.3367 318.5,67.5 Z"/></g>
<g><path style="opacity:1" fill="#6e0504" d="M 315.5,76.5 C 313.52,84.0208 316.187,86.5208 323.5,84C 325.908,77.9764 323.908,74.8097 317.5,74.5C 317.389,73.8826 317.056,73.3826 316.5,73C 318.049,73.5219 319.549,73.3553 321,72.5C 323.728,72.7642 326.061,73.7642 328,75.5C 333.342,89.9686 328.509,96.3019 313.5,94.5C 308.879,89.7484 307.379,84.0817 309,77.5C 311.115,75.9401 313.281,75.6068 315.5,76.5 Z"/></g>
<g><path style="opacity:1" fill="#ee9e5b" d="M 317.5,74.5 C 323.908,74.8097 325.908,77.9764 323.5,84C 316.187,86.5208 313.52,84.0208 315.5,76.5C 316.167,75.8333 316.833,75.1667 317.5,74.5 Z"/></g>
<g><path style="opacity:1" fill="#eda656" d="M 152.5,86.5 C 153.497,86.4701 154.164,86.9701 154.5,88C 155.068,91.2507 155.902,94.4174 157,97.5C 158.813,98.6091 159.646,97.9424 159.5,95.5C 160.873,95.6567 162.207,95.49 163.5,95C 165.736,92.7159 168.402,91.2159 171.5,90.5C 170.167,91.8333 168.833,93.1667 167.5,94.5C 163.817,96.3409 160.484,98.6742 157.5,101.5C 149.851,107.152 142.518,113.152 135.5,119.5C 130.5,123.833 125.833,128.5 121.5,133.5C 120.5,133.833 119.833,134.5 119.5,135.5C 117.177,138.126 114.843,140.793 112.5,143.5C 112.167,143.5 111.833,143.5 111.5,143.5C 109.853,146.473 107.853,149.14 105.5,151.5C 104.263,152.965 103.263,154.632 102.5,156.5C 102.167,156.5 101.833,156.5 101.5,156.5C 100.5,156.5 99.5,156.5 98.5,156.5C 98.5,157.5 98.5,158.5 98.5,159.5C 97.5,159.5 96.5,159.5 95.5,159.5C 95.762,160.978 95.4287,162.311 94.5,163.5C 94.1667,162.833 93.8333,162.167 93.5,161.5C 94.6511,159.675 95.3178,157.675 95.5,155.5C 95.5,155.167 95.5,154.833 95.5,154.5C 97.7386,151.698 99.7386,148.698 101.5,145.5C 100.495,141.477 98.4949,138.143 95.5,135.5C 95.6567,134.127 95.49,132.793 95,131.5C 93.0527,129.937 91.886,127.937 91.5,125.5C 91.9816,113.585 93.9816,112.918 97.5,123.5C 100.738,126.964 103.238,130.964 105,135.5C 106.113,137.329 107.613,138.163 109.5,138C 122.386,122.616 137.052,109.116 153.5,97.5C 154.766,93.6919 154.432,90.0252 152.5,86.5 Z"/></g>
<g><path style="opacity:1" fill="#f2a650" d="M 550.5,120.5 C 550.884,122.929 551.551,125.263 552.5,127.5C 551.167,127.5 549.833,127.5 548.5,127.5C 541.842,120.342 535.009,113.342 528,106.5C 527.517,105.552 527.351,104.552 527.5,103.5C 526.448,103.649 525.448,103.483 524.5,103C 522.571,100.562 520.238,98.7283 517.5,97.5C 512.425,99.2047 507.758,101.705 503.5,105C 501.671,106.113 500.837,107.613 501,109.5C 505.001,112.335 508.501,115.668 511.5,119.5C 511.323,121.981 512.323,123.814 514.5,125C 514.167,125.167 513.833,125.333 513.5,125.5C 510.464,123.448 507.464,121.448 504.5,119.5C 501.833,117.5 499.167,115.5 496.5,113.5C 496.167,112.833 495.833,112.167 495.5,111.5C 493.909,109.563 492.242,107.563 490.5,105.5C 487.417,104.418 485.417,102.418 484.5,99.5C 485.833,99.5 487.167,99.5 488.5,99.5C 490.436,100.259 492.269,101.259 494,102.5C 495.03,102.164 495.53,101.497 495.5,100.5C 502.299,96.8617 508.965,93.0284 515.5,89C 516.833,88.3333 518.167,88.3333 519.5,89C 530.688,98.6879 541.021,109.188 550.5,120.5 Z"/></g>
<g><path style="opacity:1" fill="#320907" d="M 204.5,91.5 C 205.906,91.9731 206.573,92.9731 206.5,94.5C 207.167,95.5 207.833,96.5 208.5,97.5C 207.065,99.665 207.731,101.165 210.5,102C 211.766,102.309 212.933,102.809 214,103.5C 217,102.833 220,102.167 223,101.5C 223.483,102.448 223.649,103.448 223.5,104.5C 227.151,104.162 228.817,105.828 228.5,109.5C 228.167,109.5 227.833,109.5 227.5,109.5C 224.482,109.665 221.482,109.498 218.5,109C 219.833,108.333 219.833,107.667 218.5,107C 216.167,106.333 213.833,106.333 211.5,107C 214.097,107.779 214.097,108.279 211.5,108.5C 207.968,107.147 204.801,105.147 202,102.5C 194.896,91.2754 196.396,81.4421 206.5,73C 207.759,72.0181 209.092,71.6848 210.5,72C 203.805,77.0446 201.805,83.5446 204.5,91.5 Z"/></g>
<g><path style="opacity:1" fill="#2c0036" d="M 204.5,91.5 C 204.762,92.9778 204.429,94.3112 203.5,95.5C 203.167,94.8333 202.833,94.1667 202.5,93.5C 202.747,92.2867 203.414,91.62 204.5,91.5 Z"/></g>
<g><path style="opacity:1" fill="#f2a54e" d="M 99.5,117.5 C 98.0047,117.585 97.0047,116.919 96.5,115.5C 97.3128,114.186 98.3128,113.019 99.5,112C 98.4186,110.289 98.752,108.789 100.5,107.5C 101.5,105.833 102.833,104.5 104.5,103.5C 106.213,101.15 108.547,100.15 111.5,100.5C 111.831,98.6776 112.498,97.0109 113.5,95.5C 115.908,91.9216 118.908,88.755 122.5,86C 128.027,82.3458 129.693,83.8458 127.5,90.5C 121.041,96.4578 114.708,102.624 108.5,109C 107.1,110.438 105.433,111.271 103.5,111.5C 102.747,113.88 101.413,115.88 99.5,117.5 Z"/></g>
<g><path style="opacity:1" fill="#cd8365" d="M 207.5,91.5 C 209.609,95.5714 212.942,98.2381 217.5,99.5C 217.265,100.097 216.765,100.43 216,100.5C 213.535,99.3487 211.035,98.3487 208.5,97.5C 207.833,96.5 207.167,95.5 206.5,94.5C 207.404,93.791 207.737,92.791 207.5,91.5 Z"/></g>
<g><path style="opacity:1" fill="#2c0405" d="M 178.5,110.5 C 179.11,111.391 179.443,112.391 179.5,113.5C 178.292,114.234 176.959,114.567 175.5,114.5C 175.5,113.5 175.5,112.5 175.5,111.5C 172.365,110.879 169.531,109.545 167,107.5C 164.589,108.127 162.089,108.127 159.5,107.5C 159.649,106.448 159.483,105.448 159,104.5C 158.282,105.451 157.449,105.617 156.5,105C 157.337,103.989 157.67,102.822 157.5,101.5C 160.484,98.6742 163.817,96.3409 167.5,94.5C 168.967,93.7084 170.3,93.7084 171.5,94.5C 169.008,98.7707 169.342,102.937 172.5,107C 174.927,107.627 176.927,108.794 178.5,110.5 Z"/></g>
<g><path style="opacity:1" fill="#e6a078" d="M 303.5,96.5 C 302.262,100.74 299.595,103.74 295.5,105.5C 294.167,105.5 292.833,105.5 291.5,105.5C 295.888,102.978 299.888,99.9775 303.5,96.5 Z"/></g>
<g><path style="opacity:1" fill="#eea960" d="M 528.5,87.5 C 534.138,89.2969 538.471,92.7969 541.5,98C 543.112,98.7203 544.612,98.5536 546,97.5C 546.188,95.9387 545.355,95.272 543.5,95.5C 543.5,94.5 543.5,93.5 543.5,92.5C 549.075,96.5675 554.241,101.234 559,106.5C 559.483,107.448 559.649,108.448 559.5,109.5C 555.916,107.261 552.583,104.594 549.5,101.5C 548.674,103.548 549.341,105.215 551.5,106.5C 552.452,108.045 552.785,109.712 552.5,111.5C 544.833,103.167 536.833,95.1667 528.5,87.5 Z"/></g>
<g><path style="opacity:1" fill="#eebf74" d="M 113.5,95.5 C 112.498,97.0109 111.831,98.6776 111.5,100.5C 108.547,100.15 106.213,101.15 104.5,103.5C 106.436,99.6891 109.436,97.0225 113.5,95.5 Z"/></g>
<g><path style="opacity:1" fill="#3c0405" d="M 242.5,102.5 C 238.673,106.342 234.006,108.675 228.5,109.5C 228.817,105.828 227.151,104.162 223.5,104.5C 223.649,103.448 223.483,102.448 223,101.5C 220,102.167 217,102.833 214,103.5C 212.933,102.809 211.766,102.309 210.5,102C 207.731,101.165 207.065,99.665 208.5,97.5C 211.035,98.3487 213.535,99.3487 216,100.5C 216.765,100.43 217.265,100.097 217.5,99.5C 221.182,99.6653 224.848,99.4986 228.5,99C 229.973,98.2904 230.64,97.1238 230.5,95.5C 232.167,95.5 233.833,95.5 235.5,95.5C 236.833,95.5 238.167,95.5 239.5,95.5C 239.491,93.6916 239.991,92.0249 241,90.5C 242.582,92.6237 242.749,94.7904 241.5,97C 245.213,98.1628 245.213,99.6628 241.5,101.5C 241.624,102.107 241.957,102.44 242.5,102.5 Z"/></g>
<g><path style="opacity:1" fill="#2f0305" d="M 470.5,93.5 C 474.524,96.5314 478.524,99.5314 482.5,102.5C 480.308,103.799 478.975,105.799 478.5,108.5C 475.316,109.216 473.816,111.216 474,114.5C 470.481,116.174 468.315,118.841 467.5,122.5C 466.167,121.5 464.833,120.5 463.5,119.5C 462.492,117.661 460.992,116.328 459,115.5C 458.53,114.423 458.697,113.423 459.5,112.5C 461.912,112.306 462.912,110.973 462.5,108.5C 465.463,108.047 467.796,106.547 469.5,104C 468.385,101.899 468.385,99.7325 469.5,97.5C 469.081,96.3279 468.415,95.3279 467.5,94.5C 468.325,93.6143 469.325,93.281 470.5,93.5 Z"/></g>
<g><path style="opacity:1" fill="#3f0908" d="M 171.5,90.5 C 172.649,90.7911 173.316,91.6244 173.5,93C 174.32,99.1188 175.987,104.952 178.5,110.5C 176.927,108.794 174.927,107.627 172.5,107C 169.342,102.937 169.008,98.7707 171.5,94.5C 170.3,93.7084 168.967,93.7084 167.5,94.5C 168.833,93.1667 170.167,91.8333 171.5,90.5 Z"/></g>
<g><path style="opacity:1" fill="#f8a549" d="M 356.5,111.5 C 356.167,111.5 355.833,111.5 355.5,111.5C 353.5,109.5 351.5,107.5 349.5,105.5C 350.506,105.062 350.506,104.396 349.5,103.5C 349.917,100.657 350.917,97.99 352.5,95.5C 354.997,96.1291 356.997,97.9624 358.5,101C 364.5,101.333 370.5,101.667 376.5,102C 383.132,103.596 382.965,104.763 376,105.5C 373.178,104.725 370.344,104.058 367.5,103.5C 366.24,106.011 364.573,108.344 362.5,110.5C 360.604,111.466 358.604,111.799 356.5,111.5 Z"/></g>
<g><path style="opacity:1" fill="#420a09" d="M 470.5,93.5 C 469.325,93.281 468.325,93.6143 467.5,94.5C 468.415,95.3279 469.081,96.3279 469.5,97.5C 468.385,99.7325 468.385,101.899 469.5,104C 467.796,106.547 465.463,108.047 462.5,108.5C 462.912,110.973 461.912,112.306 459.5,112.5C 460.84,109.471 462.173,106.471 463.5,103.5C 464.266,99.1676 465.1,94.8342 466,90.5C 467.652,91.3994 469.152,92.3994 470.5,93.5 Z"/></g>
<g><path style="opacity:1" fill="#f4a44d" d="M 254.5,60.5 C 252.754,63.6626 251.254,66.996 250,70.5C 247.98,84.3001 253.147,94.1335 265.5,100C 277.844,102.815 284.844,97.9816 286.5,85.5C 284.833,85.5 283.167,85.5 281.5,85.5C 280.5,85.1667 279.833,84.5 279.5,83.5C 281.969,82.6829 284.635,82.1829 287.5,82C 284.487,81.4978 281.487,80.9978 278.5,80.5C 278.337,78.1432 278.503,75.8098 279,73.5C 283.877,70.4793 288.21,71.1459 292,75.5C 292.464,74.9056 292.631,74.2389 292.5,73.5C 292.833,73.5 293.167,73.5 293.5,73.5C 293.461,74.7562 293.961,75.7562 295,76.5C 295.399,76.2716 295.565,75.9382 295.5,75.5C 296.402,81.5618 296.735,87.5618 296.5,93.5C 295.215,98.2862 292.549,102.12 288.5,105C 289.448,105.483 290.448,105.649 291.5,105.5C 292.833,105.5 294.167,105.5 295.5,105.5C 296.833,105.5 298.167,105.5 299.5,105.5C 303.311,106.645 307.311,106.812 311.5,106C 314.763,105.936 317.763,105.102 320.5,103.5C 325.305,105.559 330.305,106.892 335.5,107.5C 330.844,108.569 326.178,108.569 321.5,107.5C 314.985,108.754 308.485,110.087 302,111.5C 295.155,110.192 288.321,110.192 281.5,111.5C 279.712,111.785 278.045,111.452 276.5,110.5C 276.167,108.833 275.167,107.833 273.5,107.5C 271.855,107.941 270.189,108.274 268.5,108.5C 265.198,107.62 261.865,106.954 258.5,106.5C 256.566,105.89 254.899,104.89 253.5,103.5C 252.952,100.916 251.285,99.9162 248.5,100.5C 248.923,98.2188 248.256,96.5521 246.5,95.5C 244.088,92.6323 242.421,89.299 241.5,85.5C 241.5,84.8333 241.5,84.1667 241.5,83.5C 241.283,77.7676 241.783,72.101 243,66.5C 243.223,64.1192 244.39,62.4525 246.5,61.5C 249.103,61.5406 251.77,61.2073 254.5,60.5 Z"/></g>
<g><path style="opacity:1" fill="#2e050a" d="M 440.5,95.5 C 439.141,100.573 436.141,104.24 431.5,106.5C 425.354,104.764 419.521,105.431 414,108.5C 410.863,107.055 410.697,105.222 413.5,103C 419.278,102.906 424.944,102.239 430.5,101C 431.406,99.3005 431.739,97.4672 431.5,95.5C 432.906,95.0269 433.573,94.0269 433.5,92.5C 434.496,92.5858 435.329,92.2524 436,91.5C 436.914,89.3359 438.081,87.3359 439.5,85.5C 440.487,88.7683 440.82,92.1016 440.5,95.5 Z"/></g>
<g><path style="opacity:1" fill="#4d1606" d="M 227.5,109.5 C 225.696,110.162 223.696,110.495 221.5,110.5C 217.883,110.602 214.55,109.935 211.5,108.5C 214.097,108.279 214.097,107.779 211.5,107C 213.833,106.333 216.167,106.333 218.5,107C 219.833,107.667 219.833,108.333 218.5,109C 221.482,109.498 224.482,109.665 227.5,109.5 Z"/></g>
<g><path style="opacity:1" fill="#f2a550" d="M 140.5,79.5 C 141.75,79.5774 142.583,80.244 143,81.5C 144.152,86.1262 144.985,90.7929 145.5,95.5C 144.127,95.3433 142.793,95.51 141.5,96C 135.624,101.419 129.624,106.585 123.5,111.5C 121.005,112.199 118.672,113.199 116.5,114.5C 116.351,113.448 116.517,112.448 117,111.5C 119.705,108.964 122.205,106.297 124.5,103.5C 128.157,99.3425 131.991,95.3425 136,91.5C 136.634,88.4453 136.468,85.4453 135.5,82.5C 137.024,83.1738 138.358,84.1738 139.5,85.5C 140.466,83.604 140.799,81.604 140.5,79.5 Z"/></g>
<g><path style="opacity:1" fill="#3c0705" d="M 397.5,85.5 C 399.013,89.0384 401.013,92.3717 403.5,95.5C 404.552,95.3505 405.552,95.5172 406.5,96C 407.061,97.676 408.061,99.0094 409.5,100C 415.016,100.817 420.35,100.651 425.5,99.5C 427.772,98.5589 429.772,97.2255 431.5,95.5C 431.739,97.4672 431.406,99.3005 430.5,101C 424.944,102.239 419.278,102.906 413.5,103C 410.697,105.222 410.863,107.055 414,108.5C 419.521,105.431 425.354,104.764 431.5,106.5C 416.239,113.878 402.905,111.212 391.5,98.5C 392.127,97.5832 392.461,96.5832 392.5,95.5C 395.201,92.7647 396.868,89.4314 397.5,85.5 Z"/></g>
<g><path style="opacity:1" fill="#fba146" d="M 559.5,109.5 C 559.5,110.167 559.5,110.833 559.5,111.5C 559.815,113.226 559.981,114.893 560,116.5C 557.858,114.173 555.358,112.507 552.5,111.5C 552.785,109.712 552.452,108.045 551.5,106.5C 549.341,105.215 548.674,103.548 549.5,101.5C 552.583,104.594 555.916,107.261 559.5,109.5 Z"/></g>
<g><path style="opacity:1" fill="#e7a358" d="M 335.5,96.5 C 339.606,100.254 344.273,103.254 349.5,105.5C 351.5,107.5 353.5,109.5 355.5,111.5C 346.192,110.779 336.859,110.279 327.5,110C 325.277,109.434 323.277,108.6 321.5,107.5C 326.178,108.569 330.844,108.569 335.5,107.5C 330.305,106.892 325.305,105.559 320.5,103.5C 317.763,105.102 314.763,105.936 311.5,106C 307.311,106.812 303.311,106.645 299.5,105.5C 306.562,106.067 313.228,104.734 319.5,101.5C 326.712,105.211 334.379,106.377 342.5,105C 338.819,103.163 336.485,100.33 335.5,96.5 Z"/></g>
<g><path style="opacity:1" fill="#dba763" d="M 392.5,95.5 C 392.461,96.5832 392.127,97.5832 391.5,98.5C 402.905,111.212 416.239,113.878 431.5,106.5C 436.141,104.24 439.141,100.573 440.5,95.5C 440.833,95.5 441.167,95.5 441.5,95.5C 441.328,96.4916 441.662,97.1583 442.5,97.5C 439.415,106.55 433.081,111.55 423.5,112.5C 418.13,112.608 412.797,112.275 407.5,111.5C 400.749,109.96 395.082,106.626 390.5,101.5C 390.5,101.167 390.5,100.833 390.5,100.5C 390.714,98.8561 390.38,97.3561 389.5,96C 390.448,95.5172 391.448,95.3505 392.5,95.5 Z"/></g>
<g><path style="opacity:1" fill="#710706" d="M 251.5,102.5 C 252.167,102.833 252.833,103.167 253.5,103.5C 254.899,104.89 256.566,105.89 258.5,106.5C 262.887,109.674 267.887,111.174 273.5,111C 270.794,113.371 268.461,116.037 266.5,119C 263.076,118.639 259.742,117.639 256.5,116C 252.5,115.333 248.5,115.333 244.5,116C 238.515,118.658 232.848,121.824 227.5,125.5C 226.099,125.029 224.766,124.362 223.5,123.5C 226.741,121.796 228.741,119.629 229.5,117C 221.923,116.965 214.59,116.131 207.5,114.5C 220.53,116.015 233.197,114.681 245.5,110.5C 246.731,109.349 246.731,108.183 245.5,107C 247.345,105.872 249.345,105.372 251.5,105.5C 251.5,104.5 251.5,103.5 251.5,102.5 Z"/></g>
<g><path style="opacity:1" fill="#2e0301" d="M 486.5,105.5 C 489.5,107.5 492.5,109.5 495.5,111.5C 495.833,112.167 496.167,112.833 496.5,113.5C 496.038,114.88 495.038,115.547 493.5,115.5C 492.045,114.61 490.711,114.61 489.5,115.5C 488.808,114.975 488.308,114.308 488,113.5C 488.198,116.235 488.031,118.901 487.5,121.5C 485.155,123.514 483.155,125.847 481.5,128.5C 479.726,129.187 478.059,130.02 476.5,131C 478.842,132.392 478.842,133.225 476.5,133.5C 474.833,131.5 473.167,129.5 471.5,127.5C 474.564,121.047 478.397,115.047 483,109.5C 483.49,108.207 483.657,106.873 483.5,105.5C 484.5,105.5 485.5,105.5 486.5,105.5 Z"/></g>
<g><path style="opacity:1" fill="#350303" d="M 157.5,101.5 C 157.67,102.822 157.337,103.989 156.5,105C 157.449,105.617 158.282,105.451 159,104.5C 159.483,105.448 159.649,106.448 159.5,107.5C 162.089,108.127 164.589,108.127 167,107.5C 169.531,109.545 172.365,110.879 175.5,111.5C 175.5,112.5 175.5,113.5 175.5,114.5C 176.959,114.567 178.292,114.234 179.5,113.5C 180.525,113.897 180.692,114.563 180,115.5C 173.019,122.315 166.185,129.315 159.5,136.5C 158.094,136.973 157.427,137.973 157.5,139.5C 155.373,136.736 152.706,134.402 149.5,132.5C 148.94,129.004 146.94,127.337 143.5,127.5C 143.587,124.261 142.92,121.261 141.5,118.5C 139.435,118.517 137.435,118.85 135.5,119.5C 142.518,113.152 149.851,107.152 157.5,101.5 Z"/></g>
<g><path style="opacity:1" fill="#efa961" d="M 90.5,95.5 C 90.6495,96.552 90.4828,97.552 90,98.5C 85.7929,101.99 82.9595,106.323 81.5,111.5C 82.8333,111.5 84.1667,111.5 85.5,111.5C 84.2003,114.432 82.2003,116.766 79.5,118.5C 80.6227,116.021 80.6227,113.688 79.5,111.5C 79.3398,109.801 79.5065,108.134 80,106.5C 83.5249,102.717 87.0249,99.0501 90.5,95.5 Z"/></g>
<g><path style="opacity:1" fill="#ecac6a" d="M 100.5,107.5 C 98.752,108.789 98.4186,110.289 99.5,112C 98.3128,113.019 97.3128,114.186 96.5,115.5C 97.0047,116.919 98.0047,117.585 99.5,117.5C 97.9192,119.142 97.2525,121.142 97.5,123.5C 93.9816,112.918 91.9816,113.585 91.5,125.5C 89.2886,124.077 88.4553,122.077 89,119.5C 92.0463,115.826 95.0463,112.159 98,108.5C 98.6708,107.748 99.5041,107.414 100.5,107.5 Z"/></g>
<g><path style="opacity:1" fill="#700707" d="M 388.5,101.5 C 388.461,102.583 388.127,103.583 387.5,104.5C 389.772,105.485 392.105,106.319 394.5,107C 392.137,107.589 391.137,109.089 391.5,111.5C 397.166,111.167 402.499,112.334 407.5,115C 415.512,115.499 423.512,115.333 431.5,114.5C 429.316,115.266 426.982,115.933 424.5,116.5C 422.821,119.742 423.821,121.742 427.5,122.5C 425.012,123.688 422.678,125.021 420.5,126.5C 424.193,126.793 427.36,128.127 430,130.5C 430.805,128.099 431.638,128.266 432.5,131C 434.134,131.494 435.801,131.66 437.5,131.5C 436.158,132.793 434.491,133.626 432.5,134C 433.252,134.671 433.586,135.504 433.5,136.5C 431.967,134.645 430.3,132.812 428.5,131C 424.781,130.612 421.114,129.945 417.5,129C 409.977,124.405 402.311,120.072 394.5,116C 389.833,115.333 385.167,115.333 380.5,116C 377.922,117.665 375.255,118.665 372.5,119C 370.69,116.356 368.69,113.856 366.5,111.5C 374.645,109.757 381.979,106.424 388.5,101.5 Z"/></g>
<g><path style="opacity:1" fill="#89561d" d="M 407.5,111.5 C 412.797,112.275 418.13,112.608 423.5,112.5C 419.019,113.648 414.352,113.815 409.5,113C 408.584,112.722 407.918,112.222 407.5,111.5 Z"/></g>
<g><path style="opacity:1" fill="#f9f6ec" d="M 528.5,87.5 C 536.833,95.1667 544.833,103.167 552.5,111.5C 556.269,114.934 559.269,118.934 561.5,123.5C 563.288,126.228 563.788,129.228 563,132.5C 561.698,133.085 560.531,133.751 559.5,134.5C 555.516,135.674 551.516,136.507 547.5,137C 544.86,134.686 542.527,132.186 540.5,129.5C 539.167,127.5 537.5,125.833 535.5,124.5C 533.833,120.833 531.167,118.167 527.5,116.5C 525.355,113.081 522.688,110.081 519.5,107.5C 515.644,105.843 513.811,107.176 514,111.5C 521.757,119.089 529.257,126.755 536.5,134.5C 538.537,137.853 540.87,140.853 543.5,143.5C 543.97,144.693 544.97,145.36 546.5,145.5C 548.557,145.564 550.223,144.898 551.5,143.5C 552.5,143.5 553.5,143.5 554.5,143.5C 560.34,141.915 566.173,140.248 572,138.5C 574.756,138.424 575.923,139.757 575.5,142.5C 577.145,145.789 578.811,149.122 580.5,152.5C 581.569,153.91 582.903,154.91 584.5,155.5C 588.861,162.241 593.194,168.908 597.5,175.5C 597.502,179.165 598.835,182.165 601.5,184.5C 603.339,190.032 605.339,195.365 607.5,200.5C 607.5,201.5 607.5,202.5 607.5,203.5C 601.158,203.666 594.825,203.5 588.5,203C 585.953,196.058 582.287,189.892 577.5,184.5C 574.849,179.198 572.182,173.864 569.5,168.5C 569.586,167.504 569.252,166.671 568.5,166C 565.901,165.231 563.401,165.398 561,166.5C 561.773,169.54 563.273,172.373 565.5,175C 564.906,175.464 564.239,175.631 563.5,175.5C 560.657,175.083 557.99,174.083 555.5,172.5C 552.62,168.729 550.287,164.729 548.5,160.5C 550.415,160.784 552.081,160.451 553.5,159.5C 557.886,158.812 562.22,157.812 566.5,156.5C 570.148,158.741 573.148,161.741 575.5,165.5C 576.418,169.284 578.085,172.617 580.5,175.5C 584.063,181.622 587.396,187.955 590.5,194.5C 592.743,195.474 595.076,195.808 597.5,195.5C 594.071,184.643 589.071,174.643 582.5,165.5C 581.551,163.223 580.218,161.223 578.5,159.5C 578.385,157.053 577.385,155.053 575.5,153.5C 575.5,151.833 575.5,150.167 575.5,148.5C 573.658,148.277 571.825,147.943 570,147.5C 566.014,147.65 562.514,148.65 559.5,150.5C 559.5,150.833 559.5,151.167 559.5,151.5C 554.87,151.308 550.37,151.975 546,153.5C 544.373,153.375 542.873,152.875 541.5,152C 532.512,140.155 522.512,129.322 511.5,119.5C 508.501,115.668 505.001,112.335 501,109.5C 500.837,107.613 501.671,106.113 503.5,105C 507.758,101.705 512.425,99.2047 517.5,97.5C 520.238,98.7283 522.571,100.562 524.5,103C 525.448,103.483 526.448,103.649 527.5,103.5C 527.351,104.552 527.517,105.552 528,106.5C 535.009,113.342 541.842,120.342 548.5,127.5C 550.948,128.473 553.615,128.806 556.5,128.5C 556.649,127.448 556.483,126.448 556,125.5C 553.768,124.157 551.934,122.49 550.5,120.5C 541.021,109.188 530.688,98.6879 519.5,89C 518.167,88.3333 516.833,88.3333 515.5,89C 508.965,93.0284 502.299,96.8617 495.5,100.5C 493.124,98.8408 490.457,97.5074 487.5,96.5C 485.255,93.0879 482.255,90.5879 478.5,89C 482.058,87.0973 484.725,88.0973 486.5,92C 492.67,94.7057 497.67,93.5391 501.5,88.5C 506.248,84.8538 511.414,81.8538 517,79.5C 521.059,81.7849 524.893,84.4515 528.5,87.5 Z"/></g>
<g><path style="opacity:1" fill="#e2b073" d="M 519.5,107.5 C 517.365,107.147 516.032,107.98 515.5,110C 519.722,115.89 524.889,120.724 531,124.5C 531.483,125.448 531.649,126.448 531.5,127.5C 532.5,127.5 533.5,127.5 534.5,127.5C 535.167,129.833 535.833,132.167 536.5,134.5C 529.257,126.755 521.757,119.089 514,111.5C 513.811,107.176 515.644,105.843 519.5,107.5 Z"/></g>
<g><path style="opacity:1" fill="#eca860" d="M 124.5,103.5 C 122.205,106.297 119.705,108.964 117,111.5C 116.517,112.448 116.351,113.448 116.5,114.5C 118.672,113.199 121.005,112.199 123.5,111.5C 120.051,116.452 116.051,120.952 111.5,125C 109.843,125.725 108.843,125.225 108.5,123.5C 109.5,123.5 110.5,123.5 111.5,123.5C 112.199,121.005 113.199,118.672 114.5,116.5C 111.357,116.969 109.023,118.636 107.5,121.5C 106.475,121.103 106.308,120.437 107,119.5C 112.372,113.626 118.206,108.293 124.5,103.5 Z"/></g>
<g><path style="opacity:1" fill="#edae6d" d="M 76.5,111.5 C 77.6953,116.429 75.8619,119.429 71,120.5C 69.1207,122.527 67.954,124.86 67.5,127.5C 66.1667,127.5 64.8333,127.5 63.5,127.5C 67.106,121.562 71.4393,116.229 76.5,111.5 Z"/></g>
<g><path style="opacity:1" fill="#f9d8ad" d="M 85.5,111.5 C 85.8333,111.5 86.1667,111.5 86.5,111.5C 85.5501,115.413 83.2167,118.08 79.5,119.5C 79.5,119.167 79.5,118.833 79.5,118.5C 82.2003,116.766 84.2003,114.432 85.5,111.5 Z"/></g>
<g><path style="opacity:1" fill="#760102" d="M 447.5,127.5 C 445.396,127.201 443.396,127.534 441.5,128.5C 440.533,129.984 439.2,130.984 437.5,131.5C 435.801,131.66 434.134,131.494 432.5,131C 431.638,128.266 430.805,128.099 430,130.5C 427.36,128.127 424.193,126.793 420.5,126.5C 422.678,125.021 425.012,123.688 427.5,122.5C 423.821,121.742 422.821,119.742 424.5,116.5C 426.982,115.933 429.316,115.266 431.5,114.5C 431.5,113.5 431.5,112.5 431.5,111.5C 433.833,111.5 436.167,111.5 438.5,111.5C 440.32,106.608 443.153,102.274 447,98.5C 447.167,96 447.333,93.5 447.5,91C 448.615,81.9303 445.615,74.7636 438.5,69.5C 437.055,67.867 435.721,66.0337 434.5,64C 428.167,63.6667 421.833,63.3333 415.5,63C 416.167,62.6667 416.833,62.3333 417.5,62C 416.027,61.2904 415.36,60.1238 415.5,58.5C 421.815,56.563 427.815,57.2297 433.5,60.5C 434.689,60.2444 435.856,59.9111 437,59.5C 442.279,61.1147 445.946,64.4481 448,69.5C 448.414,69.0426 448.914,68.7093 449.5,68.5C 451.271,69.0354 451.604,69.8687 450.5,71C 452.235,73.1922 453.402,75.6922 454,78.5C 455.011,79.3366 456.178,79.67 457.5,79.5C 457.32,85.5724 458.32,91.4057 460.5,97C 459.873,99.1351 459.373,101.302 459,103.5C 458.346,102.304 457.846,102.304 457.5,103.5C 458.246,104.736 458.579,106.07 458.5,107.5C 456.833,107.5 455.167,107.5 453.5,107.5C 452.358,112.101 450.358,116.268 447.5,120C 448.742,122.532 448.742,125.032 447.5,127.5 Z"/></g>
<g><path style="opacity:1" fill="#410305" d="M 482.5,102.5 C 484.23,103.026 485.564,104.026 486.5,105.5C 485.5,105.5 484.5,105.5 483.5,105.5C 483.657,106.873 483.49,108.207 483,109.5C 478.397,115.047 474.564,121.047 471.5,127.5C 469.457,126.421 468.124,124.754 467.5,122.5C 468.315,118.841 470.481,116.174 474,114.5C 473.816,111.216 475.316,109.216 478.5,108.5C 478.975,105.799 480.308,103.799 482.5,102.5 Z"/></g>
<g><path style="opacity:1" fill="#faa448" d="M 76.5,111.5 C 77.5,111.5 78.5,111.5 79.5,111.5C 80.6227,113.688 80.6227,116.021 79.5,118.5C 79.5,118.833 79.5,119.167 79.5,119.5C 79.5,119.833 79.5,120.167 79.5,120.5C 78.5041,120.586 77.6708,120.252 77,119.5C 76.6253,122 75.7919,124.333 74.5,126.5C 70.2737,128.558 67.2737,131.725 65.5,136C 62.6655,138.184 61.3322,137.684 61.5,134.5C 63.0808,132.858 63.7475,130.858 63.5,128.5C 63.5,128.167 63.5,127.833 63.5,127.5C 64.8333,127.5 66.1667,127.5 67.5,127.5C 67.954,124.86 69.1207,122.527 71,120.5C 75.8619,119.429 77.6953,116.429 76.5,111.5 Z"/></g>
<g><path style="opacity:1" fill="#f5a73d" d="M 108.5,123.5 C 107.662,123.158 107.328,122.492 107.5,121.5C 109.023,118.636 111.357,116.969 114.5,116.5C 113.199,118.672 112.199,121.005 111.5,123.5C 110.5,123.5 109.5,123.5 108.5,123.5 Z"/></g>
<g><path style="opacity:1" fill="#440304" d="M 321.5,107.5 C 323.277,108.6 325.277,109.434 327.5,110C 336.859,110.279 346.192,110.779 355.5,111.5C 355.833,111.5 356.167,111.5 356.5,111.5C 365.615,114.966 369.948,121.633 369.5,131.5C 367.977,134.635 367.31,137.968 367.5,141.5C 362.257,140.19 356.923,139.524 351.5,139.5C 350.081,138.549 348.415,138.216 346.5,138.5C 326.844,134.566 307.177,134.566 287.5,138.5C 282.167,139.5 276.833,140.5 271.5,141.5C 271.69,137.968 271.023,134.635 269.5,131.5C 269.384,127.298 270.217,123.298 272,119.5C 274.775,116.22 277.942,113.554 281.5,111.5C 288.321,110.192 295.155,110.192 302,111.5C 308.485,110.087 314.985,108.754 321.5,107.5 Z"/></g>
<g><path style="opacity:1" fill="#e4ab78" d="M 527.5,116.5 C 531.167,118.167 533.833,120.833 535.5,124.5C 532.452,122.118 529.785,119.452 527.5,116.5 Z"/></g>
<g><path style="opacity:1" fill="#3b0405" d="M 496.5,113.5 C 499.167,115.5 501.833,117.5 504.5,119.5C 504.833,120.167 505.167,120.833 505.5,121.5C 502.646,120.069 499.646,119.236 496.5,119C 495.986,122.563 495.986,126.063 496.5,129.5C 495.158,127.995 493.492,127.328 491.5,127.5C 491.785,129.288 491.452,130.955 490.5,132.5C 487.45,132.997 486.45,134.497 487.5,137C 484.134,137.705 481.634,139.539 480,142.5C 479.601,142.272 479.435,141.938 479.5,141.5C 479.5,141.167 479.5,140.833 479.5,140.5C 479.784,138.585 479.451,136.919 478.5,135.5C 477.833,134.833 477.167,134.167 476.5,133.5C 478.842,133.225 478.842,132.392 476.5,131C 478.059,130.02 479.726,129.187 481.5,128.5C 483.155,125.847 485.155,123.514 487.5,121.5C 488.031,118.901 488.198,116.235 488,113.5C 488.308,114.308 488.808,114.975 489.5,115.5C 490.711,114.61 492.045,114.61 493.5,115.5C 495.038,115.547 496.038,114.88 496.5,113.5 Z"/></g>
<g><path style="opacity:1" fill="#f2a957" d="M 552.5,111.5 C 555.358,112.507 557.858,114.173 560,116.5C 559.981,114.893 559.815,113.226 559.5,111.5C 562.837,111.187 565.171,112.52 566.5,115.5C 569.497,119.491 572.497,123.491 575.5,127.5C 574.167,127.5 572.833,127.5 571.5,127.5C 571.741,130.034 570.741,131.7 568.5,132.5C 566.924,128.922 564.591,125.922 561.5,123.5C 559.269,118.934 556.269,114.934 552.5,111.5 Z"/></g>
<g><path style="opacity:1" fill="#efa154" d="M 344.5,73.5 C 344.5,74.1667 344.833,74.5 345.5,74.5C 346.632,75.3543 347.965,75.3543 349.5,74.5C 348.134,77.8579 346.301,78.5245 344,76.5C 343.406,82.8556 343.573,89.1889 344.5,95.5C 345.833,95.5 347.167,95.5 348.5,95.5C 348.951,91.7485 350.284,88.4151 352.5,85.5C 352.657,92.1798 355.657,97.0131 361.5,100C 367.794,101.051 373.794,100.217 379.5,97.5C 379.196,98.1499 378.863,98.8165 378.5,99.5C 381.068,100.868 383.401,100.534 385.5,98.5C 386.842,100.005 388.508,100.672 390.5,100.5C 390.5,100.833 390.5,101.167 390.5,101.5C 389.833,101.5 389.167,101.5 388.5,101.5C 381.979,106.424 374.645,109.757 366.5,111.5C 368.69,113.856 370.69,116.356 372.5,119C 375.255,118.665 377.922,117.665 380.5,116C 385.167,115.333 389.833,115.333 394.5,116C 402.311,120.072 409.977,124.405 417.5,129C 421.114,129.945 424.781,130.612 428.5,131C 430.3,132.812 431.967,134.645 433.5,136.5C 438.312,141.411 443.978,145.078 450.5,147.5C 452.611,148.736 454.611,150.236 456.5,152C 457.5,152.667 458.5,152.667 459.5,152C 462.365,148.308 465.365,144.808 468.5,141.5C 467.067,143.558 466.4,145.892 466.5,148.5C 465.5,148.5 464.5,148.5 463.5,148.5C 463.192,150.924 463.526,153.257 464.5,155.5C 467.54,151.47 470.54,147.47 473.5,143.5C 474.951,141.441 476.951,140.441 479.5,140.5C 479.5,140.833 479.5,141.167 479.5,141.5C 473.795,147.203 468.462,153.203 463.5,159.5C 462.498,157.989 461.831,156.322 461.5,154.5C 458.09,154.384 456.756,156.05 457.5,159.5C 450.536,153.678 442.87,148.844 434.5,145C 431.5,142 428.5,139 425.5,136C 415.818,134.158 407.151,130.158 399.5,124C 387.299,117.944 377.299,120.444 369.5,131.5C 369.948,121.633 365.615,114.966 356.5,111.5C 358.604,111.799 360.604,111.466 362.5,110.5C 364.573,108.344 366.24,106.011 367.5,103.5C 370.344,104.058 373.178,104.725 376,105.5C 382.965,104.763 383.132,103.596 376.5,102C 370.5,101.667 364.5,101.333 358.5,101C 356.997,97.9624 354.997,96.1291 352.5,95.5C 350.917,97.99 349.917,100.657 349.5,103.5C 345.693,101.225 343.359,97.8919 342.5,93.5C 342.454,87.7408 342.621,81.7408 343,75.5C 343.278,74.5842 343.778,73.9175 344.5,73.5 Z"/></g>
<g><path style="opacity:1" fill="#f8a24a" d="M 519.5,107.5 C 522.688,110.081 525.355,113.081 527.5,116.5C 529.785,119.452 532.452,122.118 535.5,124.5C 537.5,125.833 539.167,127.5 540.5,129.5C 538.992,132.14 539.326,134.473 541.5,136.5C 541.167,136.833 540.833,137.167 540.5,137.5C 539.717,135.712 538.384,134.712 536.5,134.5C 535.833,132.167 535.167,129.833 534.5,127.5C 533.5,127.5 532.5,127.5 531.5,127.5C 531.649,126.448 531.483,125.448 531,124.5C 524.889,120.724 519.722,115.89 515.5,110C 516.032,107.98 517.365,107.147 519.5,107.5 Z"/></g>
<g><path style="opacity:1" fill="#ec9c67" d="M 461.5,103.5 C 462.167,103.5 462.833,103.5 463.5,103.5C 462.173,106.471 460.84,109.471 459.5,112.5C 458.697,113.423 458.53,114.423 459,115.5C 460.992,116.328 462.492,117.661 463.5,119.5C 461.574,118.758 459.741,117.758 458,116.5C 457.365,117.966 456.531,119.3 455.5,120.5C 458.992,123.309 461.659,126.643 463.5,130.5C 460,127.169 456.334,124.002 452.5,121C 456.655,115.701 459.655,109.867 461.5,103.5 Z"/></g>
<g><path style="opacity:1" fill="#eba858" d="M 504.5,119.5 C 507.464,121.448 510.464,123.448 513.5,125.5C 513.833,125.333 514.167,125.167 514.5,125C 512.323,123.814 511.323,121.981 511.5,119.5C 522.512,129.322 532.512,140.155 541.5,152C 542.873,152.875 544.373,153.375 546,153.5C 550.37,151.975 554.87,151.308 559.5,151.5C 553.565,153.849 547.232,155.349 540.5,156C 541.833,157 541.833,158 540.5,159C 541.71,160.039 542.71,161.206 543.5,162.5C 543.5,163.167 543.5,163.833 543.5,164.5C 541.263,162.353 539.263,160.02 537.5,157.5C 536.525,155.205 535.192,153.205 533.5,151.5C 531.861,149.194 529.861,147.194 527.5,145.5C 524.537,141.202 521.203,137.202 517.5,133.5C 515.833,131.167 513.833,129.167 511.5,127.5C 509.833,125.167 507.833,123.167 505.5,121.5C 505.167,120.833 504.833,120.167 504.5,119.5 Z"/></g>
<g><path style="opacity:1" fill="#770101" d="M 261.5,144.5 C 261.158,145.338 260.492,145.672 259.5,145.5C 258.003,144.694 256.336,144.028 254.5,143.5C 253.107,144.863 251.441,145.696 249.5,146C 251.595,146.556 251.762,147.056 250,147.5C 247.589,145.903 245.089,144.57 242.5,143.5C 242.643,145.262 242.309,146.929 241.5,148.5C 237.304,150.133 232.971,151.299 228.5,152C 227.026,153.316 225.359,154.316 223.5,155C 223.784,156.956 223.784,159.123 223.5,161.5C 216.724,161.141 212.224,164.141 210,170.5C 209.333,169.833 208.667,169.167 208,168.5C 207.801,170.402 206.967,171.902 205.5,173C 206.094,173.464 206.761,173.631 207.5,173.5C 207.027,174.906 206.027,175.573 204.5,175.5C 201.398,176.204 198.065,177.204 194.5,178.5C 194.5,177.5 194.5,176.5 194.5,175.5C 193.5,175.5 192.5,175.5 191.5,175.5C 191.807,169.907 191.473,164.407 190.5,159C 192.07,157.164 193.57,157.33 195,159.5C 197.648,157.104 200.148,154.604 202.5,152C 203.833,151.667 205.167,151.333 206.5,151C 207.435,148.619 207.768,146.119 207.5,143.5C 209.144,143.714 210.644,143.38 212,142.5C 212.585,141.002 212.085,140.002 210.5,139.5C 210.833,138.5 211.5,137.833 212.5,137.5C 216.112,139.647 219.779,141.647 223.5,143.5C 223.201,141.396 223.534,139.396 224.5,137.5C 229.202,136.685 233.869,135.685 238.5,134.5C 239.474,132.257 239.808,129.924 239.5,127.5C 242.972,126.306 246.472,126.306 250,127.5C 255.56,127.387 255.727,126.887 250.5,126C 252.81,125.503 255.143,125.337 257.5,125.5C 257.33,127.848 256.997,130.182 256.5,132.5C 257.589,136.097 258.255,139.763 258.5,143.5C 259.791,143.263 260.791,143.596 261.5,144.5 Z"/></g>
<g><path style="opacity:1" fill="#dda268" d="M 463.5,119.5 C 464.833,120.5 466.167,121.5 467.5,122.5C 468.124,124.754 469.457,126.421 471.5,127.5C 473.167,129.5 474.833,131.5 476.5,133.5C 477.167,134.167 477.833,134.833 478.5,135.5C 473.495,132.81 469.495,128.977 466.5,124C 465.552,123.517 464.552,123.351 463.5,123.5C 463.5,122.167 463.5,120.833 463.5,119.5 Z"/></g>
<g><path style="opacity:1" fill="#deae5c" d="M 550.5,120.5 C 551.934,122.49 553.768,124.157 556,125.5C 556.483,126.448 556.649,127.448 556.5,128.5C 553.615,128.806 550.948,128.473 548.5,127.5C 549.833,127.5 551.167,127.5 552.5,127.5C 551.551,125.263 550.884,122.929 550.5,120.5 Z"/></g>
<g><path style="opacity:1" fill="#f5a34b" d="M 463.5,119.5 C 463.5,120.833 463.5,122.167 463.5,123.5C 464.552,123.351 465.552,123.517 466.5,124C 469.495,128.977 473.495,132.81 478.5,135.5C 479.451,136.919 479.784,138.585 479.5,140.5C 476.951,140.441 474.951,141.441 473.5,143.5C 470.54,147.47 467.54,151.47 464.5,155.5C 463.526,153.257 463.192,150.924 463.5,148.5C 464.5,148.5 465.5,148.5 466.5,148.5C 466.4,145.892 467.067,143.558 468.5,141.5C 468.539,140.417 468.873,139.417 469.5,138.5C 467.091,136.098 465.091,133.431 463.5,130.5C 461.659,126.643 458.992,123.309 455.5,120.5C 456.531,119.3 457.365,117.966 458,116.5C 459.741,117.758 461.574,118.758 463.5,119.5 Z"/></g>
<g><path style="opacity:1" fill="#fbe9c9" d="M 561.5,123.5 C 564.591,125.922 566.924,128.922 568.5,132.5C 565.598,133.578 562.598,134.244 559.5,134.5C 560.531,133.751 561.698,133.085 563,132.5C 563.788,129.228 563.288,126.228 561.5,123.5 Z"/></g>
<g><path style="opacity:1" fill="#f0a155" d="M 258.5,106.5 C 261.865,106.954 265.198,107.62 268.5,108.5C 270.189,108.274 271.855,107.941 273.5,107.5C 275.167,107.833 276.167,108.833 276.5,110.5C 278.045,111.452 279.712,111.785 281.5,111.5C 277.942,113.554 274.775,116.22 272,119.5C 270.217,123.298 269.384,127.298 269.5,131.5C 262.609,120.899 253.276,118.066 241.5,123C 237.833,125.333 234.167,127.667 230.5,130C 224.353,132.515 218.353,135.015 212.5,137.5C 211.5,137.833 210.833,138.5 210.5,139.5C 205.217,145.107 198.884,149.107 191.5,151.5C 191.843,149.517 191.176,148.183 189.5,147.5C 193.738,145.041 198.072,142.541 202.5,140C 204.041,138.629 205.375,137.129 206.5,135.5C 209.86,130.961 214.526,128.794 220.5,129C 223.174,128.33 225.507,127.163 227.5,125.5C 232.848,121.824 238.515,118.658 244.5,116C 248.5,115.333 252.5,115.333 256.5,116C 259.742,117.639 263.076,118.639 266.5,119C 268.461,116.037 270.794,113.371 273.5,111C 267.887,111.174 262.887,109.674 258.5,106.5 Z"/></g>
<g><path style="opacity:1" fill="#730a05" d="M 457.5,159.5 C 461.358,166.531 461.358,173.531 457.5,180.5C 457.624,181.107 457.957,181.44 458.5,181.5C 455.65,183.767 452.983,186.267 450.5,189C 451.252,189.671 451.586,190.504 451.5,191.5C 448.833,189.167 446.167,186.833 443.5,184.5C 441.14,181.473 438.473,178.806 435.5,176.5C 435.735,175.903 436.235,175.57 437,175.5C 438.163,177.328 439.83,178.328 442,178.5C 444.261,176.759 446.927,175.759 450,175.5C 451.764,175.544 453.431,175.878 455,176.5C 455.374,175.584 455.874,174.75 456.5,174C 455.373,172.247 454.373,170.413 453.5,168.5C 451.604,167.534 449.604,167.201 447.5,167.5C 447.5,164.833 447.5,162.167 447.5,159.5C 444.938,158.629 442.272,158.629 439.5,159.5C 439.358,154.197 436.691,151.197 431.5,150.5C 431.5,148.167 431.5,145.833 431.5,143.5C 430.127,143.657 428.793,143.49 427.5,143C 427.957,142.586 428.291,142.086 428.5,141.5C 427.478,140.646 426.645,139.646 426,138.5C 423.772,140.113 421.272,140.78 418.5,140.5C 418.5,141.5 418.5,142.5 418.5,143.5C 417.5,143.5 416.5,143.5 415.5,143.5C 415.5,141.5 415.5,139.5 415.5,137.5C 410.276,136.073 404.942,135.073 399.5,134.5C 399.665,131.482 399.498,128.482 399,125.5C 398.667,125.833 398.333,126.167 398,126.5C 397.692,125.692 397.192,125.025 396.5,124.5C 391.518,125.119 386.518,125.786 381.5,126.5C 380.585,127.328 379.919,128.328 379.5,129.5C 381.443,133.751 381.777,138.085 380.5,142.5C 384.126,142.984 387.46,144.151 390.5,146C 389.833,146.333 389.167,146.667 388.5,147C 392.557,148.446 396.39,150.279 400,152.5C 402.498,151.879 404.832,152.545 407,154.5C 407.893,153.289 408.726,153.289 409.5,154.5C 408.975,155.192 408.308,155.692 407.5,156C 408.624,156.249 409.624,156.749 410.5,157.5C 409.767,158.087 408.767,158.087 407.5,157.5C 394.305,151.56 380.971,146.227 367.5,141.5C 367.31,137.968 367.977,134.635 369.5,131.5C 377.299,120.444 387.299,117.944 399.5,124C 407.151,130.158 415.818,134.158 425.5,136C 428.5,139 431.5,142 434.5,145C 442.87,148.844 450.536,153.678 457.5,159.5 Z"/></g>
<g><path style="opacity:1" fill="#440204" d="M 206.5,135.5 C 205.375,137.129 204.041,138.629 202.5,140C 198.072,142.541 193.738,145.041 189.5,147.5C 188.833,147.5 188.167,147.5 187.5,147.5C 186.527,147.013 185.527,146.513 184.5,146C 185.833,145.333 185.833,144.667 184.5,144C 183.551,143.383 182.718,143.549 182,144.5C 180.5,141.867 180.333,139.2 181.5,136.5C 184.966,134.111 187.966,131.278 190.5,128C 192.259,127.202 193.926,127.369 195.5,128.5C 199.096,131.12 202.762,133.454 206.5,135.5 Z"/></g>
<g><path style="opacity:1" fill="#730706" d="M 269.5,131.5 C 271.023,134.635 271.69,137.968 271.5,141.5C 270.167,142.167 268.833,142.833 267.5,143.5C 266.167,143.833 264.833,144.167 263.5,144.5C 262.833,144.5 262.167,144.5 261.5,144.5C 260.791,143.596 259.791,143.263 258.5,143.5C 258.255,139.763 257.589,136.097 256.5,132.5C 256.997,130.182 257.33,127.848 257.5,125.5C 255.143,125.337 252.81,125.503 250.5,126C 255.727,126.887 255.56,127.387 250,127.5C 246.472,126.306 242.972,126.306 239.5,127.5C 239.808,129.924 239.474,132.257 238.5,134.5C 233.869,135.685 229.202,136.685 224.5,137.5C 223.534,139.396 223.201,141.396 223.5,143.5C 219.779,141.647 216.112,139.647 212.5,137.5C 218.353,135.015 224.353,132.515 230.5,130C 234.167,127.667 237.833,125.333 241.5,123C 253.276,118.066 262.609,120.899 269.5,131.5 Z"/></g>
<g><path style="opacity:1" fill="#f4faf7" d="M 95.5,135.5 C 98.4949,138.143 100.495,141.477 101.5,145.5C 99.7386,148.698 97.7386,151.698 95.5,154.5C 94.325,154.281 93.325,154.614 92.5,155.5C 92.0212,157.889 90.6879,159.556 88.5,160.5C 88.1667,159.833 87.8333,159.167 87.5,158.5C 90.1329,154.858 92.7995,151.192 95.5,147.5C 91.9481,141.401 88.6148,135.068 85.5,128.5C 84.675,127.614 83.675,127.281 82.5,127.5C 82.1489,125.131 81.9822,122.797 82,120.5C 83.3561,119.62 84.8561,119.286 86.5,119.5C 88.293,124.388 89.9597,129.388 91.5,134.5C 92.7276,136.176 94.0609,136.509 95.5,135.5 Z"/></g>
<g><path style="opacity:1" fill="#440404" d="M 447.5,127.5 C 449.787,130.616 452.62,133.283 456,135.5C 456.818,138.227 456.652,140.894 455.5,143.5C 454.664,145.94 452.997,147.273 450.5,147.5C 443.978,145.078 438.312,141.411 433.5,136.5C 433.586,135.504 433.252,134.671 432.5,134C 434.491,133.626 436.158,132.793 437.5,131.5C 439.2,130.984 440.533,129.984 441.5,128.5C 443.396,127.534 445.396,127.201 447.5,127.5 Z"/></g>
<g><path style="opacity:1" fill="#e9b172" d="M 63.5,128.5 C 63.7475,130.858 63.0808,132.858 61.5,134.5C 59.2034,136.294 57.0367,138.294 55,140.5C 53.5925,143.154 53.0925,145.821 53.5,148.5C 52.0353,147.391 51.0353,147.891 50.5,150C 49.552,150.483 48.552,150.649 47.5,150.5C 51.7132,142.297 57.0465,134.963 63.5,128.5 Z"/></g>
<g><path style="opacity:1" fill="#eea756" d="M 540.5,129.5 C 542.527,132.186 544.86,134.686 547.5,137C 551.516,136.507 555.516,135.674 559.5,134.5C 562.598,134.244 565.598,133.578 568.5,132.5C 568.196,133.15 567.863,133.817 567.5,134.5C 561.589,134.608 556.256,136.274 551.5,139.5C 550.022,139.238 548.689,139.571 547.5,140.5C 550.295,140.938 552.628,141.938 554.5,143.5C 553.5,143.5 552.5,143.5 551.5,143.5C 548.833,143.5 546.167,143.5 543.5,143.5C 540.87,140.853 538.537,137.853 536.5,134.5C 538.384,134.712 539.717,135.712 540.5,137.5C 540.833,137.167 541.167,136.833 541.5,136.5C 539.326,134.473 538.992,132.14 540.5,129.5 Z"/></g>
<g><path style="opacity:1" fill="#fca346" d="M 575.5,127.5 C 576.495,131.164 577.495,134.831 578.5,138.5C 576.257,137.688 573.924,137.021 571.5,136.5C 565.033,139.691 558.366,140.691 551.5,139.5C 556.256,136.274 561.589,134.608 567.5,134.5C 567.863,133.817 568.196,133.15 568.5,132.5C 570.741,131.7 571.741,130.034 571.5,127.5C 572.833,127.5 574.167,127.5 575.5,127.5 Z"/></g>
<g><path style="opacity:1" fill="#f3a753" d="M 79.5,120.5 C 79.1824,123.481 80.1824,125.815 82.5,127.5C 84.6916,130.55 86.3583,133.883 87.5,137.5C 87.7474,140.157 88.7474,142.49 90.5,144.5C 89.4981,146.51 88.4981,148.51 87.5,150.5C 87.0615,147.705 86.0615,145.372 84.5,143.5C 81.0869,138.352 77.4202,133.352 73.5,128.5C 71.8513,129.648 70.3513,130.981 69,132.5C 66.6229,135.921 64.7895,139.588 63.5,143.5C 62.325,143.281 61.325,143.614 60.5,144.5C 59.5771,146.924 58.0771,148.924 56,150.5C 53.3442,155.973 50.5109,161.306 47.5,166.5C 45.8454,165.076 44.512,163.243 43.5,161C 44.8277,158.833 46.4944,157 48.5,155.5C 48.1373,154.817 47.8039,154.15 47.5,153.5C 47.5,152.5 47.5,151.5 47.5,150.5C 48.552,150.649 49.552,150.483 50.5,150C 51.0353,147.891 52.0353,147.391 53.5,148.5C 53.0925,145.821 53.5925,143.154 55,140.5C 57.0367,138.294 59.2034,136.294 61.5,134.5C 61.3322,137.684 62.6655,138.184 65.5,136C 67.2737,131.725 70.2737,128.558 74.5,126.5C 75.7919,124.333 76.6253,122 77,119.5C 77.6708,120.252 78.5041,120.586 79.5,120.5 Z"/></g>
<g><path style="opacity:1" fill="#b58172" d="M 159.5,136.5 C 159.5,137.5 159.5,138.5 159.5,139.5C 158.833,139.5 158.167,139.5 157.5,139.5C 157.427,137.973 158.094,136.973 159.5,136.5 Z"/></g>
<g><path style="opacity:1" fill="#eda053" d="M 346.5,138.5 C 334.829,138.333 323.162,138.5 311.5,139C 310.833,139.333 310.167,139.667 309.5,140C 316.5,140.333 323.5,140.667 330.5,141C 332.744,141.05 334.411,141.883 335.5,143.5C 324.167,143.5 312.833,143.5 301.5,143.5C 301.008,148.956 300.008,154.289 298.5,159.5C 289.304,160.576 280.304,162.576 271.5,165.5C 271.238,164.022 271.571,162.689 272.5,161.5C 275.333,160.067 278.333,159.4 281.5,159.5C 286.654,159.053 291.32,157.72 295.5,155.5C 295.517,153.435 295.85,151.435 296.5,149.5C 297.461,147.735 297.795,145.735 297.5,143.5C 292.324,145.135 286.99,146.135 281.5,146.5C 285.044,144.732 289.044,143.898 293.5,144C 291.423,143.808 289.423,143.308 287.5,142.5C 292.792,141.505 298.125,141.172 303.5,141.5C 303.5,140.5 303.5,139.5 303.5,138.5C 298.167,138.5 292.833,138.5 287.5,138.5C 307.177,134.566 326.844,134.566 346.5,138.5 Z"/></g>
<g><path style="opacity:1" fill="#f6a54a" d="M 346.5,138.5 C 348.415,138.216 350.081,138.549 351.5,139.5C 356.9,140.524 362.234,142.191 367.5,144.5C 365.556,145.851 363.389,146.518 361,146.5C 356.863,145.631 352.863,144.298 349,142.5C 345.896,142.851 346.063,143.351 349.5,144C 348.944,144.383 348.611,144.883 348.5,145.5C 345.312,149.877 342.645,154.543 340.5,159.5C 338.585,159.784 336.919,159.451 335.5,158.5C 337.587,157.415 338.92,155.749 339.5,153.5C 342.037,150.723 343.37,147.39 343.5,143.5C 340.833,143.5 338.167,143.5 335.5,143.5C 334.411,141.883 332.744,141.05 330.5,141C 323.5,140.667 316.5,140.333 309.5,140C 310.167,139.667 310.833,139.333 311.5,139C 323.162,138.5 334.829,138.333 346.5,138.5 Z"/></g>
<g><path style="opacity:1" fill="#760202" d="M 435.5,176.5 C 431.801,173.483 427.801,170.816 423.5,168.5C 418.167,164.833 412.833,161.167 407.5,157.5C 408.767,158.087 409.767,158.087 410.5,157.5C 409.624,156.749 408.624,156.249 407.5,156C 408.308,155.692 408.975,155.192 409.5,154.5C 408.726,153.289 407.893,153.289 407,154.5C 404.832,152.545 402.498,151.879 400,152.5C 396.39,150.279 392.557,148.446 388.5,147C 389.167,146.667 389.833,146.333 390.5,146C 387.46,144.151 384.126,142.984 380.5,142.5C 381.777,138.085 381.443,133.751 379.5,129.5C 379.919,128.328 380.585,127.328 381.5,126.5C 386.518,125.786 391.518,125.119 396.5,124.5C 397.192,125.025 397.692,125.692 398,126.5C 398.333,126.167 398.667,125.833 399,125.5C 399.498,128.482 399.665,131.482 399.5,134.5C 404.942,135.073 410.276,136.073 415.5,137.5C 415.5,139.5 415.5,141.5 415.5,143.5C 416.5,143.5 417.5,143.5 418.5,143.5C 418.5,142.5 418.5,141.5 418.5,140.5C 421.272,140.78 423.772,140.113 426,138.5C 426.645,139.646 427.478,140.646 428.5,141.5C 428.291,142.086 427.957,142.586 427.5,143C 428.793,143.49 430.127,143.657 431.5,143.5C 431.5,145.833 431.5,148.167 431.5,150.5C 436.691,151.197 439.358,154.197 439.5,159.5C 442.272,158.629 444.938,158.629 447.5,159.5C 447.5,162.167 447.5,164.833 447.5,167.5C 449.604,167.201 451.604,167.534 453.5,168.5C 454.373,170.413 455.373,172.247 456.5,174C 455.874,174.75 455.374,175.584 455,176.5C 453.431,175.878 451.764,175.544 450,175.5C 446.927,175.759 444.261,176.759 442,178.5C 439.83,178.328 438.163,177.328 437,175.5C 436.235,175.57 435.735,175.903 435.5,176.5 Z"/></g>
<g><path style="opacity:1" fill="#efaa67" d="M 575.5,127.5 C 575.833,127.5 576.167,127.5 576.5,127.5C 581.527,135.517 586.527,143.517 591.5,151.5C 589.983,151.489 588.816,150.823 588,149.5C 586.411,146.366 584.578,143.366 582.5,140.5C 581.311,139.571 579.978,139.238 578.5,139.5C 578.5,140.833 578.5,142.167 578.5,143.5C 577.391,143.443 576.391,143.11 575.5,142.5C 575.923,139.757 574.756,138.424 572,138.5C 566.173,140.248 560.34,141.915 554.5,143.5C 552.628,141.938 550.295,140.938 547.5,140.5C 548.689,139.571 550.022,139.238 551.5,139.5C 558.366,140.691 565.033,139.691 571.5,136.5C 573.924,137.021 576.257,137.688 578.5,138.5C 577.495,134.831 576.495,131.164 575.5,127.5 Z"/></g>
<g><path style="opacity:1" fill="#dea369" d="M 159.5,140.5 C 161.867,141.164 163.867,142.497 165.5,144.5C 168.827,148.332 171.993,152.332 175,156.5C 175.483,157.448 175.649,158.448 175.5,159.5C 170.196,153.192 164.863,146.858 159.5,140.5 Z"/></g>
<g><path style="opacity:1" fill="#fba238" d="M 111.5,143.5 C 110.5,143.5 109.5,143.5 108.5,143.5C 108.65,147.161 107.15,148.161 104,146.5C 103.333,145.833 103.333,145.167 104,144.5C 105.691,141.641 108.191,140.308 111.5,140.5C 111.5,141.5 111.5,142.5 111.5,143.5 Z"/></g>
<g><path style="opacity:1" fill="#3d0305" d="M 119.5,135.5 C 118.637,136.94 118.637,138.274 119.5,139.5C 125.121,142.868 130.454,146.701 135.5,151C 134.66,152.666 135.16,152.833 137,151.5C 138.136,153.743 138.97,156.076 139.5,158.5C 136.763,158.859 134.763,160.193 133.5,162.5C 133.719,161.325 133.386,160.325 132.5,159.5C 131.305,157.703 129.638,156.703 127.5,156.5C 126.452,152.281 123.785,149.447 119.5,148C 117.641,146.442 116.141,144.609 115,142.5C 114.329,143.252 113.496,143.586 112.5,143.5C 114.843,140.793 117.177,138.126 119.5,135.5 Z"/></g>
<g><path style="opacity:1" fill="#e9a163" d="M 287.5,138.5 C 287.53,139.497 287.03,140.164 286,140.5C 281.927,140.773 278.427,142.273 275.5,145C 272.821,144.842 270.154,144.342 267.5,143.5C 268.833,142.833 270.167,142.167 271.5,141.5C 276.833,140.5 282.167,139.5 287.5,138.5 Z"/></g>
<g><path style="opacity:1" fill="#3e0102" d="M 135.5,119.5 C 134.949,122.267 133.616,124.6 131.5,126.5C 132.741,130.409 135.408,132.409 139.5,132.5C 139.357,134.262 139.691,135.929 140.5,137.5C 145.537,138.372 148.371,141.372 149,146.5C 153.101,147.764 155.601,150.431 156.5,154.5C 157.5,154.5 158.5,154.5 159.5,154.5C 159.5,156.167 159.5,157.833 159.5,159.5C 157.833,159.5 156.167,159.5 154.5,159.5C 154.374,156.405 152.707,154.572 149.5,154C 148.5,152.333 147.5,150.667 146.5,149C 141.555,148.719 138.388,146.219 137,141.5C 135,140.167 133,138.833 131,137.5C 130.51,136.207 130.343,134.873 130.5,133.5C 128.857,133.52 127.524,132.853 126.5,131.5C 125.15,132.95 123.484,133.617 121.5,133.5C 125.833,128.5 130.5,123.833 135.5,119.5 Z"/></g>
<g><path style="opacity:1" fill="#2e0303" d="M 505.5,121.5 C 507.833,123.167 509.833,125.167 511.5,127.5C 509.35,127.095 507.35,126.595 505.5,126C 505.167,126.333 504.833,126.667 504.5,127C 506.158,127.725 506.658,128.892 506,130.5C 504.247,131.627 502.413,132.627 500.5,133.5C 499.719,134.729 499.219,136.062 499,137.5C 494.283,139.752 490.783,143.252 488.5,148C 484.95,148.422 482.95,150.422 482.5,154C 481.552,154.483 480.552,154.649 479.5,154.5C 479.5,156.167 479.5,157.833 479.5,159.5C 476.5,159.5 473.5,159.5 470.5,159.5C 470.66,161.199 470.494,162.866 470,164.5C 469.667,163.833 469.333,163.167 469,162.5C 468.328,165.178 467.161,167.511 465.5,169.5C 465.829,166.772 465.163,164.438 463.5,162.5C 463.5,161.5 463.5,160.5 463.5,159.5C 468.462,153.203 473.795,147.203 479.5,141.5C 479.435,141.938 479.601,142.272 480,142.5C 481.634,139.539 484.134,137.705 487.5,137C 486.45,134.497 487.45,132.997 490.5,132.5C 491.452,130.955 491.785,129.288 491.5,127.5C 493.492,127.328 495.158,127.995 496.5,129.5C 495.986,126.063 495.986,122.563 496.5,119C 499.646,119.236 502.646,120.069 505.5,121.5 Z"/></g>
<g><path style="opacity:1" fill="#3e0303" d="M 517.5,133.5 C 521.203,137.202 524.537,141.202 527.5,145.5C 526.518,144.859 525.518,144.193 524.5,143.5C 523.476,144.853 522.143,145.52 520.5,145.5C 517.586,150.414 513.586,154.414 508.5,157.5C 507.05,158.85 506.383,160.516 506.5,162.5C 505.5,161.833 504.5,161.167 503.5,160.5C 503.158,159.662 502.492,159.328 501.5,159.5C 501.5,158.167 500.833,157.5 499.5,157.5C 504.752,153.689 509.419,149.189 513.5,144C 515.676,143.837 517.509,143.004 519,141.5C 519.826,143.405 520.993,143.739 522.5,142.5C 520.651,139.564 518.984,136.564 517.5,133.5 Z"/></g>
<g><path style="opacity:1" fill="#feeece" d="M 575.5,142.5 C 576.391,143.11 577.391,143.443 578.5,143.5C 580.5,147.5 582.5,151.5 584.5,155.5C 582.903,154.91 581.569,153.91 580.5,152.5C 578.811,149.122 577.145,145.789 575.5,142.5 Z"/></g>
<g><path style="opacity:1" fill="#e6b771" d="M 543.5,143.5 C 546.167,143.5 548.833,143.5 551.5,143.5C 550.223,144.898 548.557,145.564 546.5,145.5C 544.97,145.36 543.97,144.693 543.5,143.5 Z"/></g>
<g><path style="opacity:1" fill="#f6ecce" d="M 296.5,149.5 C 294.221,147.737 291.555,146.737 288.5,146.5C 285.532,147.162 282.532,147.495 279.5,147.5C 279.842,146.662 280.508,146.328 281.5,146.5C 286.99,146.135 292.324,145.135 297.5,143.5C 297.795,145.735 297.461,147.735 296.5,149.5 Z"/></g>
<g><path style="opacity:1" fill="#f0b36a" d="M 278.5,147.5 C 274.107,149.435 269.441,150.768 264.5,151.5C 263.833,151.5 263.167,151.5 262.5,151.5C 264.771,149.734 266.937,147.734 269,145.5C 270.329,146.494 271.662,147.494 273,148.5C 274.766,147.767 276.599,147.433 278.5,147.5 Z"/></g>
<g><path style="opacity:1" fill="#2f0201" d="M 133.5,162.5 C 131.833,163.5 130.5,164.833 129.5,166.5C 128.5,167.167 127.5,167.833 126.5,168.5C 123.794,165.479 120.461,163.479 116.5,162.5C 116.5,161.5 116.5,160.5 116.5,159.5C 114.143,159.663 111.81,159.497 109.5,159C 111.405,158.174 111.739,157.007 110.5,155.5C 108.929,154.691 107.262,154.357 105.5,154.5C 105.5,153.5 105.5,152.5 105.5,151.5C 107.853,149.14 109.853,146.473 111.5,143.5C 111.833,143.5 112.167,143.5 112.5,143.5C 113.496,143.586 114.329,143.252 115,142.5C 116.141,144.609 117.641,146.442 119.5,148C 123.785,149.447 126.452,152.281 127.5,156.5C 129.638,156.703 131.305,157.703 132.5,159.5C 133.386,160.325 133.719,161.325 133.5,162.5 Z"/></g>
<g><path style="opacity:1" fill="#f1ba83" d="M 575.5,153.5 C 573.824,152.817 573.157,151.483 573.5,149.5C 568.819,149.669 564.152,150.002 559.5,150.5C 562.514,148.65 566.014,147.65 570,147.5C 571.825,147.943 573.658,148.277 575.5,148.5C 575.5,150.167 575.5,151.833 575.5,153.5 Z"/></g>
<g><path style="opacity:1" fill="#6f0905" d="M 259.5,145.5 C 248.95,149.11 238.95,153.777 229.5,159.5C 227.118,160.351 225.118,161.684 223.5,163.5C 217.918,166.411 212.585,169.744 207.5,173.5C 206.761,173.631 206.094,173.464 205.5,173C 206.967,171.902 207.801,170.402 208,168.5C 208.667,169.167 209.333,169.833 210,170.5C 212.224,164.141 216.724,161.141 223.5,161.5C 223.784,159.123 223.784,156.956 223.5,155C 225.359,154.316 227.026,153.316 228.5,152C 232.971,151.299 237.304,150.133 241.5,148.5C 242.309,146.929 242.643,145.262 242.5,143.5C 245.089,144.57 247.589,145.903 250,147.5C 251.762,147.056 251.595,146.556 249.5,146C 251.441,145.696 253.107,144.863 254.5,143.5C 256.336,144.028 258.003,144.694 259.5,145.5 Z"/></g>
<g><path style="opacity:1" fill="#f8a341" d="M 287.5,138.5 C 292.833,138.5 298.167,138.5 303.5,138.5C 303.5,139.5 303.5,140.5 303.5,141.5C 298.125,141.172 292.792,141.505 287.5,142.5C 289.423,143.308 291.423,143.808 293.5,144C 289.044,143.898 285.044,144.732 281.5,146.5C 280.508,146.328 279.842,146.662 279.5,147.5C 279.167,147.5 278.833,147.5 278.5,147.5C 276.599,147.433 274.766,147.767 273,148.5C 271.662,147.494 270.329,146.494 269,145.5C 266.937,147.734 264.771,149.734 262.5,151.5C 260.566,152.11 258.899,153.11 257.5,154.5C 255.926,154.063 254.759,153.063 254,151.5C 253.333,152.833 252.333,153.833 251,154.5C 250.342,152.892 250.842,151.725 252.5,151C 254.81,150.503 257.143,150.337 259.5,150.5C 259.5,149.167 259.5,147.833 259.5,146.5C 261.483,146.843 262.817,146.176 263.5,144.5C 264.833,144.167 266.167,143.833 267.5,143.5C 270.154,144.342 272.821,144.842 275.5,145C 278.427,142.273 281.927,140.773 286,140.5C 287.03,140.164 287.53,139.497 287.5,138.5 Z"/></g>
<g><path style="opacity:1" fill="#2e0302" d="M 527.5,145.5 C 529.861,147.194 531.861,149.194 533.5,151.5C 533.5,152.5 533.5,153.5 533.5,154.5C 529.948,155.077 526.615,155.577 523.5,156C 522.896,158.468 521.562,160.468 519.5,162C 516.631,163.596 513.964,165.43 511.5,167.5C 509.5,166.167 507.833,164.5 506.5,162.5C 506.383,160.516 507.05,158.85 508.5,157.5C 513.586,154.414 517.586,150.414 520.5,145.5C 522.143,145.52 523.476,144.853 524.5,143.5C 525.518,144.193 526.518,144.859 527.5,145.5 Z"/></g>
<g><path style="opacity:1" fill="#efa05d" d="M 261.5,144.5 C 262.167,144.5 262.833,144.5 263.5,144.5C 262.817,146.176 261.483,146.843 259.5,146.5C 259.5,147.833 259.5,149.167 259.5,150.5C 257.143,150.337 254.81,150.503 252.5,151C 250.842,151.725 250.342,152.892 251,154.5C 252.333,153.833 253.333,152.833 254,151.5C 254.759,153.063 255.926,154.063 257.5,154.5C 257.5,155.5 257.5,156.5 257.5,157.5C 256.167,157.5 254.833,157.5 253.5,157.5C 251.03,156.122 248.696,156.455 246.5,158.5C 247.048,156.606 248.048,154.94 249.5,153.5C 248.833,153.167 248.167,152.833 247.5,152.5C 241.836,155.747 235.836,158.08 229.5,159.5C 238.95,153.777 248.95,149.11 259.5,145.5C 260.492,145.672 261.158,145.338 261.5,144.5 Z"/></g>
<g><path style="opacity:1" fill="#3e0103" d="M 511.5,127.5 C 513.833,129.167 515.833,131.167 517.5,133.5C 516.85,133.804 516.183,134.137 515.5,134.5C 513.854,131.017 511.521,130.517 508.5,133C 508,137.5 505.5,140 501,140.5C 500.487,145.844 497.654,149.177 492.5,150.5C 490.883,153.784 488.55,156.451 485.5,158.5C 488.469,159.668 488.802,161.001 486.5,162.5C 481.703,160.571 479.036,162.237 478.5,167.5C 477.205,168.098 475.872,168.598 474.5,169C 476.878,169.974 476.544,170.641 473.5,171C 472.748,171.671 472.414,172.504 472.5,173.5C 470.167,173.5 467.833,173.5 465.5,173.5C 465.5,172.167 465.5,170.833 465.5,169.5C 467.161,167.511 468.328,165.178 469,162.5C 469.333,163.167 469.667,163.833 470,164.5C 470.494,162.866 470.66,161.199 470.5,159.5C 473.5,159.5 476.5,159.5 479.5,159.5C 479.5,157.833 479.5,156.167 479.5,154.5C 480.552,154.649 481.552,154.483 482.5,154C 482.95,150.422 484.95,148.422 488.5,148C 490.783,143.252 494.283,139.752 499,137.5C 499.219,136.062 499.719,134.729 500.5,133.5C 502.413,132.627 504.247,131.627 506,130.5C 506.658,128.892 506.158,127.725 504.5,127C 504.833,126.667 505.167,126.333 505.5,126C 507.35,126.595 509.35,127.095 511.5,127.5 Z"/></g>
<g><path style="opacity:1" fill="#2e0303" d="M 517.5,133.5 C 518.984,136.564 520.651,139.564 522.5,142.5C 520.993,143.739 519.826,143.405 519,141.5C 517.509,143.004 515.676,143.837 513.5,144C 509.419,149.189 504.752,153.689 499.5,157.5C 499.5,158.167 499.5,158.833 499.5,159.5C 499.167,159.5 498.833,159.5 498.5,159.5C 492.142,164.863 485.808,170.196 479.5,175.5C 478.167,175.5 476.833,175.5 475.5,175.5C 475.027,174.094 474.027,173.427 472.5,173.5C 472.414,172.504 472.748,171.671 473.5,171C 476.544,170.641 476.878,169.974 474.5,169C 475.872,168.598 477.205,168.098 478.5,167.5C 479.036,162.237 481.703,160.571 486.5,162.5C 488.802,161.001 488.469,159.668 485.5,158.5C 488.55,156.451 490.883,153.784 492.5,150.5C 497.654,149.177 500.487,145.844 501,140.5C 505.5,140 508,137.5 508.5,133C 511.521,130.517 513.854,131.017 515.5,134.5C 516.183,134.137 516.85,133.804 517.5,133.5 Z"/></g>
<g><path style="opacity:1" fill="#2f0304" d="M 157.5,139.5 C 158.167,139.5 158.833,139.5 159.5,139.5C 159.5,139.833 159.5,140.167 159.5,140.5C 164.863,146.858 170.196,153.192 175.5,159.5C 175.5,160.5 175.5,161.5 175.5,162.5C 174.778,162.918 174.278,163.584 174,164.5C 173.502,167.482 173.335,170.482 173.5,173.5C 168.591,173.12 163.924,173.787 159.5,175.5C 153.392,169.939 147.059,164.606 140.5,159.5C 139.833,159.5 139.5,159.167 139.5,158.5C 138.97,156.076 138.136,153.743 137,151.5C 135.16,152.833 134.66,152.666 135.5,151C 130.454,146.701 125.121,142.868 119.5,139.5C 118.637,138.274 118.637,136.94 119.5,135.5C 119.833,134.5 120.5,133.833 121.5,133.5C 123.484,133.617 125.15,132.95 126.5,131.5C 127.524,132.853 128.857,133.52 130.5,133.5C 130.343,134.873 130.51,136.207 131,137.5C 133,138.833 135,140.167 137,141.5C 138.388,146.219 141.555,148.719 146.5,149C 147.5,150.667 148.5,152.333 149.5,154C 152.707,154.572 154.374,156.405 154.5,159.5C 156.167,159.5 157.833,159.5 159.5,159.5C 159.5,157.833 159.5,156.167 159.5,154.5C 158.5,154.5 157.5,154.5 156.5,154.5C 155.601,150.431 153.101,147.764 149,146.5C 148.371,141.372 145.537,138.372 140.5,137.5C 139.691,135.929 139.357,134.262 139.5,132.5C 135.408,132.409 132.741,130.409 131.5,126.5C 133.616,124.6 134.949,122.267 135.5,119.5C 137.435,118.85 139.435,118.517 141.5,118.5C 142.92,121.261 143.587,124.261 143.5,127.5C 146.94,127.337 148.94,129.004 149.5,132.5C 152.706,134.402 155.373,136.736 157.5,139.5 Z"/></g>
<g><path style="opacity:1" fill="#f5a54d" d="M 575.5,153.5 C 577.385,155.053 578.385,157.053 578.5,159.5C 578.346,161.97 577.346,163.97 575.5,165.5C 573.148,161.741 570.148,158.741 566.5,156.5C 562.22,157.812 557.886,158.812 553.5,159.5C 550.183,158.779 546.849,158.612 543.5,159C 547.333,160.023 547.333,161.19 543.5,162.5C 542.71,161.206 541.71,160.039 540.5,159C 541.833,158 541.833,157 540.5,156C 547.232,155.349 553.565,153.849 559.5,151.5C 559.5,151.167 559.5,150.833 559.5,150.5C 564.152,150.002 568.819,149.669 573.5,149.5C 573.157,151.483 573.824,152.817 575.5,153.5 Z"/></g>
<g><path style="opacity:1" fill="#f2a34f" d="M 191.5,63.5 C 185.018,69.1078 180.518,76.1078 178,84.5C 175.276,98.0961 178.109,110.263 186.5,121C 179.98,126.019 174.314,131.853 169.5,138.5C 172.711,143.089 176.045,147.589 179.5,152C 180.5,152.667 181.5,152.667 182.5,152C 184.24,150.483 185.906,148.983 187.5,147.5C 188.167,147.5 188.833,147.5 189.5,147.5C 191.176,148.183 191.843,149.517 191.5,151.5C 188.206,154.156 184.873,156.822 181.5,159.5C 180.5,159.5 179.5,159.5 178.5,159.5C 177.759,165.471 177.425,171.471 177.5,177.5C 171.672,177.05 166.005,177.716 160.5,179.5C 159.702,179.957 159.369,180.624 159.5,181.5C 158.07,181.421 156.736,181.754 155.5,182.5C 154.167,180.833 154.167,179.167 155.5,177.5C 157.026,177.006 158.359,176.339 159.5,175.5C 163.924,173.787 168.591,173.12 173.5,173.5C 174.117,173.389 174.617,173.056 175,172.5C 175.498,169.183 175.665,165.85 175.5,162.5C 175.5,161.5 175.5,160.5 175.5,159.5C 175.649,158.448 175.483,157.448 175,156.5C 171.993,152.332 168.827,148.332 165.5,144.5C 163.867,142.497 161.867,141.164 159.5,140.5C 159.5,140.167 159.5,139.833 159.5,139.5C 159.5,138.5 159.5,137.5 159.5,136.5C 166.185,129.315 173.019,122.315 180,115.5C 180.692,114.563 180.525,113.897 179.5,113.5C 179.443,112.391 179.11,111.391 178.5,110.5C 175.987,104.952 174.32,99.1188 173.5,93C 173.316,91.6244 172.649,90.7911 171.5,90.5C 168.402,91.2159 165.736,92.7159 163.5,95C 162.207,95.49 160.873,95.6567 159.5,95.5C 158.244,93.2743 158.244,90.941 159.5,88.5C 160.838,90.1128 162.505,90.6128 164.5,90C 166.576,87.4157 169.243,85.7491 172.5,85C 174.192,82.4254 175.192,79.592 175.5,76.5C 174.954,72.8876 173.621,72.7209 171.5,76C 167.083,77.5685 165.083,76.0685 165.5,71.5C 170.302,68.5972 175.302,65.9305 180.5,63.5C 184.082,62.7512 187.416,61.4179 190.5,59.5C 191.429,60.6888 191.762,62.0222 191.5,63.5 Z"/></g>
<g><path style="opacity:1" fill="#f6a548" d="M 246.5,158.5 C 238.678,162.244 231.011,166.244 223.5,170.5C 221.011,170.702 218.677,170.202 216.5,169C 219.336,167.609 221.669,165.776 223.5,163.5C 225.118,161.684 227.118,160.351 229.5,159.5C 235.836,158.08 241.836,155.747 247.5,152.5C 248.167,152.833 248.833,153.167 249.5,153.5C 248.048,154.94 247.048,156.606 246.5,158.5 Z"/></g>
<g><path style="opacity:1" fill="#ecb377" d="M 339.5,153.5 C 338.92,155.749 337.587,157.415 335.5,158.5C 327.981,158.825 320.648,158.492 313.5,157.5C 313.5,156.5 313.5,155.5 313.5,154.5C 321.019,154.175 328.352,154.508 335.5,155.5C 337.062,155.267 338.395,154.6 339.5,153.5 Z"/></g>
<g><path style="opacity:1" fill="#fa9c4c" d="M 335.5,155.5 C 332.402,156.821 328.902,157.488 325,157.5C 321.5,157.167 318,156.833 314.5,156.5C 321.468,155.503 328.468,155.17 335.5,155.5 Z"/></g>
<g><path style="opacity:1" fill="#fdf6e4" d="M 576.5,127.5 C 578.833,127.5 581.167,127.5 583.5,127.5C 583.649,128.552 583.483,129.552 583,130.5C 582.346,129.304 581.846,129.304 581.5,130.5C 583.291,133.79 585.624,136.623 588.5,139C 589.127,141.135 589.627,143.302 590,145.5C 595.178,148.875 598.012,153.542 598.5,159.5C 599.675,159.281 600.675,159.614 601.5,160.5C 600.754,161.736 600.421,163.07 600.5,164.5C 596.733,160.61 593.733,156.277 591.5,151.5C 586.527,143.517 581.527,135.517 576.5,127.5 Z"/></g>
<g><path style="opacity:1" fill="#e4b35c" d="M 253.5,157.5 C 254.833,157.5 256.167,157.5 257.5,157.5C 257.666,161.514 257.499,165.514 257,169.5C 256.617,170.056 256.117,170.389 255.5,170.5C 256.683,166.841 256.683,163.175 255.5,159.5C 254.832,162.306 254.166,164.972 253.5,167.5C 253.5,164.167 253.5,160.833 253.5,157.5 Z"/></g>
<g><path style="opacity:1" fill="#f3a454" d="M 351.5,139.5 C 356.923,139.524 362.257,140.19 367.5,141.5C 380.971,146.227 394.305,151.56 407.5,157.5C 412.833,161.167 418.167,164.833 423.5,168.5C 418.659,167.5 414.159,165.834 410,163.5C 408.566,163.862 407.399,164.528 406.5,165.5C 402.229,163.117 397.729,161.117 393,159.5C 388.922,161.293 385.756,164.126 383.5,168C 382.127,168.875 380.627,169.375 379,169.5C 372.048,166.753 364.881,164.586 357.5,163C 356.663,161.989 356.33,160.822 356.5,159.5C 364.061,160.351 371.394,162.351 378.5,165.5C 382.415,163.921 385.415,161.254 387.5,157.5C 375.027,151.899 362.027,147.899 348.5,145.5C 348.611,144.883 348.944,144.383 349.5,144C 346.063,143.351 345.896,142.851 349,142.5C 352.863,144.298 356.863,145.631 361,146.5C 363.389,146.518 365.556,145.851 367.5,144.5C 362.234,142.191 356.9,140.524 351.5,139.5 Z"/></g>
<g><path style="opacity:1" fill="#deaaa0" d="M 499.5,157.5 C 500.833,157.5 501.5,158.167 501.5,159.5C 500.833,159.5 500.167,159.5 499.5,159.5C 499.5,158.833 499.5,158.167 499.5,157.5 Z"/></g>
<g><path style="opacity:1" fill="#faf3e2" d="M 82.5,127.5 C 83.675,127.281 84.675,127.614 85.5,128.5C 88.6148,135.068 91.9481,141.401 95.5,147.5C 92.7995,151.192 90.1329,154.858 87.5,158.5C 87.8333,159.167 88.1667,159.833 88.5,160.5C 90.6879,159.556 92.0212,157.889 92.5,155.5C 93.325,154.614 94.325,154.281 95.5,154.5C 95.5,154.833 95.5,155.167 95.5,155.5C 92.2607,161.103 88.4274,166.436 84,171.5C 83.51,172.793 83.3433,174.127 83.5,175.5C 80.4816,175.665 77.4816,175.498 74.5,175C 79.4517,165.6 85.2851,156.767 92,148.5C 92.702,143.907 91.202,140.241 87.5,137.5C 86.3583,133.883 84.6916,130.55 82.5,127.5 Z"/></g>
<g><path style="opacity:1" fill="#730905" d="M 210.5,139.5 C 212.085,140.002 212.585,141.002 212,142.5C 210.644,143.38 209.144,143.714 207.5,143.5C 207.768,146.119 207.435,148.619 206.5,151C 205.167,151.333 203.833,151.667 202.5,152C 200.148,154.604 197.648,157.104 195,159.5C 193.57,157.33 192.07,157.164 190.5,159C 191.473,164.407 191.807,169.907 191.5,175.5C 192.5,175.5 193.5,175.5 194.5,175.5C 194.5,176.5 194.5,177.5 194.5,178.5C 198.065,177.204 201.398,176.204 204.5,175.5C 199.193,180.472 193.86,185.472 188.5,190.5C 186.169,187.171 183.503,184.171 180.5,181.5C 181.043,181.44 181.376,181.107 181.5,180.5C 177.642,173.531 177.642,166.531 181.5,159.5C 184.873,156.822 188.206,154.156 191.5,151.5C 198.884,149.107 205.217,145.107 210.5,139.5 Z"/></g>
<g><path style="opacity:1" fill="#3f0205" d="M 533.5,151.5 C 535.192,153.205 536.525,155.205 537.5,157.5C 535.395,158.868 533.061,159.868 530.5,160.5C 528.942,162.554 526.942,164.054 524.5,165C 523.177,168.816 520.511,170.983 516.5,171.5C 514.246,170.876 512.579,169.543 511.5,167.5C 513.964,165.43 516.631,163.596 519.5,162C 521.562,160.468 522.896,158.468 523.5,156C 526.615,155.577 529.948,155.077 533.5,154.5C 533.5,153.5 533.5,152.5 533.5,151.5 Z"/></g>
<g><path style="opacity:1" fill="#320404" d="M 537.5,157.5 C 539.263,160.02 541.263,162.353 543.5,164.5C 544.412,166.595 545.579,168.595 547,170.5C 547.74,171.749 547.573,172.749 546.5,173.5C 538.523,173.826 531.19,176.159 524.5,180.5C 521.811,177.48 519.144,174.48 516.5,171.5C 520.511,170.983 523.177,168.816 524.5,165C 526.942,164.054 528.942,162.554 530.5,160.5C 533.061,159.868 535.395,158.868 537.5,157.5 Z"/></g>
<g><path style="opacity:1" fill="#f0a765" d="M 578.5,159.5 C 580.218,161.223 581.551,163.223 582.5,165.5C 581.312,164.316 580.145,164.316 579,165.5C 578.754,168.934 579.254,172.267 580.5,175.5C 578.085,172.617 576.418,169.284 575.5,165.5C 577.346,163.97 578.346,161.97 578.5,159.5 Z"/></g>
<g><path style="opacity:1" fill="#310504" d="M 101.5,156.5 C 101.833,156.5 102.167,156.5 102.5,156.5C 106.236,158.935 109.902,161.435 113.5,164C 115.695,167.359 118.362,170.193 121.5,172.5C 119.16,175.172 116.827,177.839 114.5,180.5C 111.592,178.878 108.592,177.544 105.5,176.5C 100.637,174.77 95.6371,173.437 90.5,172.5C 94.1921,167.149 97.8588,161.815 101.5,156.5 Z"/></g>
<g><path style="opacity:1" fill="#feefce" d="M 314.5,150.5 C 321.5,150.5 328.5,150.5 335.5,150.5C 327.684,151.492 319.684,151.826 311.5,151.5C 311.285,153.179 311.952,154.179 313.5,154.5C 313.5,155.5 313.5,156.5 313.5,157.5C 312.167,157.5 310.833,157.5 309.5,157.5C 309.33,158.822 309.663,159.989 310.5,161C 319.01,161.171 327.343,161.671 335.5,162.5C 326.167,162.5 316.833,162.5 307.5,162.5C 308.013,158.771 308.846,155.104 310,151.5C 311.356,150.62 312.856,150.286 314.5,150.5 Z"/></g>
<g><path style="opacity:1" fill="#e8b078" d="M 350.5,159.5 C 349.659,161.379 349.325,163.379 349.5,165.5C 346.017,164.99 342.684,164.323 339.5,163.5C 342.358,163.972 344.358,162.972 345.5,160.5C 345.56,161.043 345.893,161.376 346.5,161.5C 347.622,160.37 348.956,159.703 350.5,159.5 Z"/></g>
<g><path style="opacity:1" fill="#eea964" d="M 47.5,153.5 C 47.8039,154.15 48.1373,154.817 48.5,155.5C 46.4944,157 44.8277,158.833 43.5,161C 44.512,163.243 45.8454,165.076 47.5,166.5C 45.5498,169.406 43.8831,172.406 42.5,175.5C 42.22,172.728 42.8866,170.228 44.5,168C 43.283,166.352 42.4497,164.519 42,162.5C 41.6174,163.056 41.1174,163.389 40.5,163.5C 41.3728,159.069 43.7062,155.736 47.5,153.5 Z"/></g>
<g><path style="opacity:1" fill="#edac5f" d="M 87.5,137.5 C 91.202,140.241 92.702,143.907 92,148.5C 85.2851,156.767 79.4517,165.6 74.5,175C 77.4816,175.498 80.4816,175.665 83.5,175.5C 83.3433,174.127 83.51,172.793 84,171.5C 88.4274,166.436 92.2607,161.103 95.5,155.5C 95.3178,157.675 94.6511,159.675 93.5,161.5C 93.8333,162.167 94.1667,162.833 94.5,163.5C 95.4287,162.311 95.762,160.978 95.5,159.5C 96.5,159.5 97.5,159.5 98.5,159.5C 98.5,158.5 98.5,157.5 98.5,156.5C 99.5,156.5 100.5,156.5 101.5,156.5C 97.8588,161.815 94.1921,167.149 90.5,172.5C 95.6371,173.437 100.637,174.77 105.5,176.5C 105.158,177.338 104.492,177.672 103.5,177.5C 88.6393,174.899 75.9726,178.899 65.5,189.5C 64.4511,185.169 66.1178,183.003 70.5,183C 71.5822,181.67 72.2488,180.17 72.5,178.5C 72.3379,176.473 72.5045,174.473 73,172.5C 75.6264,170.01 76.2931,167.343 75,164.5C 73.6974,164.978 72.5307,165.645 71.5,166.5C 74.632,159.525 78.7987,153.192 84,147.5C 84.49,146.207 84.6567,144.873 84.5,143.5C 86.0615,145.372 87.0615,147.705 87.5,150.5C 88.4981,148.51 89.4981,146.51 90.5,144.5C 88.7474,142.49 87.7474,140.157 87.5,137.5 Z"/></g>
<g><path style="opacity:1" fill="#400205" d="M 105.5,151.5 C 105.5,152.5 105.5,153.5 105.5,154.5C 107.262,154.357 108.929,154.691 110.5,155.5C 111.739,157.007 111.405,158.174 109.5,159C 111.81,159.497 114.143,159.663 116.5,159.5C 116.5,160.5 116.5,161.5 116.5,162.5C 120.461,163.479 123.794,165.479 126.5,168.5C 125.055,170.063 123.389,171.396 121.5,172.5C 118.362,170.193 115.695,167.359 113.5,164C 109.902,161.435 106.236,158.935 102.5,156.5C 103.263,154.632 104.263,152.965 105.5,151.5 Z"/></g>
<g><path style="opacity:1" fill="#f8a237" d="M 255.5,170.5 C 254.167,170.5 253.5,169.833 253.5,168.5C 253.5,168.167 253.5,167.833 253.5,167.5C 254.166,164.972 254.832,162.306 255.5,159.5C 256.683,163.175 256.683,166.841 255.5,170.5 Z"/></g>
<g><path style="opacity:1" fill="#f9f4e8" d="M 335.5,143.5 C 338.167,143.5 340.833,143.5 343.5,143.5C 343.37,147.39 342.037,150.723 339.5,153.5C 338.395,154.6 337.062,155.267 335.5,155.5C 328.352,154.508 321.019,154.175 313.5,154.5C 311.952,154.179 311.285,153.179 311.5,151.5C 319.684,151.826 327.684,151.492 335.5,150.5C 336.478,150.189 337.145,149.522 337.5,148.5C 327.188,147.501 316.855,147.168 306.5,147.5C 304.912,152.762 303.245,157.929 301.5,163C 291.355,164.634 281.355,166.801 271.5,169.5C 270.178,169.67 269.011,169.337 268,168.5C 267.802,166.618 267.302,164.952 266.5,163.5C 266.286,161.856 266.62,160.356 267.5,159C 275.16,155.612 283.16,153.779 291.5,153.5C 291.5,152.167 291.5,150.833 291.5,149.5C 283.732,150.42 276.066,151.92 268.5,154C 265.975,154.424 263.975,155.59 262.5,157.5C 260.77,158.976 259.437,158.642 258.5,156.5C 260.531,154.825 262.531,153.159 264.5,151.5C 269.441,150.768 274.107,149.435 278.5,147.5C 278.833,147.5 279.167,147.5 279.5,147.5C 282.532,147.495 285.532,147.162 288.5,146.5C 291.555,146.737 294.221,147.737 296.5,149.5C 295.85,151.435 295.517,153.435 295.5,155.5C 290.583,156.227 285.917,157.56 281.5,159.5C 278.333,159.4 275.333,160.067 272.5,161.5C 271.571,162.689 271.238,164.022 271.5,165.5C 280.304,162.576 289.304,160.576 298.5,159.5C 300.008,154.289 301.008,148.956 301.5,143.5C 312.833,143.5 324.167,143.5 335.5,143.5 Z"/></g>
<g><path style="opacity:1" fill="#f8f6eb" d="M 84.5,143.5 C 84.6567,144.873 84.49,146.207 84,147.5C 78.7987,153.192 74.632,159.525 71.5,166.5C 68.331,170.833 65.6643,175.5 63.5,180.5C 62.4918,183.325 60.8251,185.825 58.5,188C 56.4128,187.953 54.7461,186.953 53.5,185C 55.0076,181.829 56.341,178.662 57.5,175.5C 59.2503,174.341 60.2503,172.674 60.5,170.5C 63.2781,167.279 65.2781,163.612 66.5,159.5C 69.1181,155.709 71.9514,152.043 75,148.5C 75.4298,145.808 75.2631,143.141 74.5,140.5C 73.5,140.5 72.5,140.5 71.5,140.5C 68.8422,145.146 66.1755,149.813 63.5,154.5C 62.2058,155.29 61.0391,156.29 60,157.5C 59.0789,160.336 57.9123,163.002 56.5,165.5C 54.3586,169.2 52.0253,172.867 49.5,176.5C 48.2528,178.323 47.5861,180.323 47.5,182.5C 45.4714,184.021 44.6381,186.021 45,188.5C 47.6971,190.7 50.1971,193.033 52.5,195.5C 52.6621,197.527 52.4955,199.527 52,201.5C 51.7645,203.119 50.9311,204.119 49.5,204.5C 44.8551,199.52 40.1884,194.52 35.5,189.5C 36.9041,185.693 38.5708,182.027 40.5,178.5C 40.9321,177.29 41.5987,176.29 42.5,175.5C 43.8831,172.406 45.5498,169.406 47.5,166.5C 50.5109,161.306 53.3442,155.973 56,150.5C 58.0771,148.924 59.5771,146.924 60.5,144.5C 61.325,143.614 62.325,143.281 63.5,143.5C 64.7895,139.588 66.6229,135.921 69,132.5C 70.3513,130.981 71.8513,129.648 73.5,128.5C 77.4202,133.352 81.0869,138.352 84.5,143.5 Z"/></g>
<g><path style="opacity:1" fill="#eda760" d="M 63.5,154.5 C 63.3146,156.196 62.4813,157.529 61,158.5C 60.1264,161.003 60.793,163.003 63,164.5C 63.6972,162.416 64.8639,160.749 66.5,159.5C 65.2781,163.612 63.2781,167.279 60.5,170.5C 60.6427,168.738 60.3094,167.071 59.5,165.5C 58.5754,164.438 57.5754,164.438 56.5,165.5C 57.9123,163.002 59.0789,160.336 60,157.5C 61.0391,156.29 62.2058,155.29 63.5,154.5 Z"/></g>
<g><path style="opacity:1" fill="#f4a749" d="M 66.5,159.5 C 64.8639,160.749 63.6972,162.416 63,164.5C 60.793,163.003 60.1264,161.003 61,158.5C 62.4813,157.529 63.3146,156.196 63.5,154.5C 66.1755,149.813 68.8422,145.146 71.5,140.5C 72.5,140.5 73.5,140.5 74.5,140.5C 75.2631,143.141 75.4298,145.808 75,148.5C 71.9514,152.043 69.1181,155.709 66.5,159.5 Z"/></g>
<g><path style="opacity:1" fill="#f2a34d" d="M 139.5,158.5 C 139.5,159.167 139.833,159.5 140.5,159.5C 141.199,161.995 142.199,164.328 143.5,166.5C 148.395,167.869 152.395,170.702 155.5,175C 153.167,175.667 150.833,175.667 148.5,175C 147.347,173.117 145.681,172.284 143.5,172.5C 142.027,171.26 140.36,170.26 138.5,169.5C 132.177,174.491 126.177,179.824 120.5,185.5C 118.962,185.547 117.962,184.88 117.5,183.5C 116.193,182.198 116.193,180.865 117.5,179.5C 118.75,176.951 120.75,175.618 123.5,175.5C 123.325,172.671 124.658,171.004 127.5,170.5C 128.63,169.378 129.297,168.044 129.5,166.5C 130.5,164.833 131.833,163.5 133.5,162.5C 134.763,160.193 136.763,158.859 139.5,158.5 Z"/></g>
<g><path style="opacity:1" fill="#f3a548" d="M 463.5,159.5 C 463.5,160.5 463.5,161.5 463.5,162.5C 463.395,166.548 463.728,170.548 464.5,174.5C 468.119,175.244 471.785,175.577 475.5,175.5C 476.833,175.5 478.167,175.5 479.5,175.5C 484.951,173.086 489.951,169.753 494.5,165.5C 496.278,163.736 497.611,161.736 498.5,159.5C 498.833,159.5 499.167,159.5 499.5,159.5C 500.167,159.5 500.833,159.5 501.5,159.5C 502.492,159.328 503.158,159.662 503.5,160.5C 502.549,161.919 502.216,163.585 502.5,165.5C 505.468,165.626 507.468,167.126 508.5,170C 505.258,170.986 502.592,170.152 500.5,167.5C 499.702,167.957 499.369,168.624 499.5,169.5C 495.232,172.589 491.066,175.923 487,179.5C 486.333,180.5 486.333,181.5 487,182.5C 488.517,184.24 490.017,185.906 491.5,187.5C 491.328,188.492 491.662,189.158 492.5,189.5C 492.5,190.167 492.5,190.833 492.5,191.5C 492.762,192.978 492.429,194.311 491.5,195.5C 491.167,195.333 490.833,195.167 490.5,195C 489.118,190.593 486.784,186.759 483.5,183.5C 482.311,182.571 480.978,182.238 479.5,182.5C 479.5,182.167 479.5,181.833 479.5,181.5C 478.64,179.386 476.973,178.22 474.5,178C 470.179,177.501 465.846,177.334 461.5,177.5C 461.498,171.477 461.165,165.477 460.5,159.5C 459.5,159.5 458.5,159.5 457.5,159.5C 456.756,156.05 458.09,154.384 461.5,154.5C 461.831,156.322 462.498,157.989 463.5,159.5 Z"/></g>
<g><path style="opacity:1" fill="#f3a769" d="M 181.5,159.5 C 177.642,166.531 177.642,173.531 181.5,180.5C 181.376,181.107 181.043,181.44 180.5,181.5C 173.661,177.536 166.661,177.536 159.5,181.5C 159.369,180.624 159.702,179.957 160.5,179.5C 166.005,177.716 171.672,177.05 177.5,177.5C 177.425,171.471 177.759,165.471 178.5,159.5C 179.5,159.5 180.5,159.5 181.5,159.5 Z"/></g>
<g><path style="opacity:1" fill="#f8f3e6" d="M 253.5,157.5 C 253.5,160.833 253.5,164.167 253.5,167.5C 253.5,167.833 253.5,168.167 253.5,168.5C 248.186,170.797 242.853,173.13 237.5,175.5C 236.761,175.631 236.094,175.464 235.5,175C 236.731,173.595 238.064,172.429 239.5,171.5C 240.29,170.599 241.29,169.932 242.5,169.5C 244.368,168.737 246.035,167.737 247.5,166.5C 248.434,165.432 248.768,164.099 248.5,162.5C 246.62,162.229 245.287,162.896 244.5,164.5C 242.847,164.66 241.514,165.326 240.5,166.5C 234.338,169.141 228.505,172.474 223,176.5C 223.018,181.307 223.851,185.973 225.5,190.5C 225.014,192.304 224.347,193.971 223.5,195.5C 220.19,197.146 217.523,199.48 215.5,202.5C 209.778,205.826 205.111,210.326 201.5,216C 200.365,216.749 199.365,216.583 198.5,215.5C 197.982,213.1 196.815,211.1 195,209.5C 194.333,207.833 194.333,206.167 195,204.5C 201.946,199.407 207.446,193.407 211.5,186.5C 202.515,191.64 194.848,198.474 188.5,207C 190.452,211.182 192.952,215.015 196,218.5C 196.494,220.134 196.66,221.801 196.5,223.5C 196.167,223.5 195.833,223.5 195.5,223.5C 195.167,223.5 194.833,223.5 194.5,223.5C 192.926,223.937 191.759,224.937 191,226.5C 190.517,225.552 190.351,224.552 190.5,223.5C 191.598,222.399 191.765,221.066 191,219.5C 187.981,215.461 185.481,211.128 183.5,206.5C 184.193,205.482 184.859,204.482 185.5,203.5C 188.124,200.842 190.791,198.175 193.5,195.5C 194.833,194.833 195.833,193.833 196.5,192.5C 199.513,188.991 203.013,185.991 207,183.5C 207.483,182.552 207.649,181.552 207.5,180.5C 209.575,180.302 211.575,180.135 213.5,180C 215.777,183.632 216.444,187.465 215.5,191.5C 209.885,195.612 204.719,200.278 200,205.5C 199.217,207.319 199.717,208.652 201.5,209.5C 207.465,203.706 213.631,198.039 220,192.5C 220.449,187.163 219.616,181.996 217.5,177C 219.072,174.268 221.072,172.101 223.5,170.5C 231.011,166.244 238.678,162.244 246.5,158.5C 248.696,156.455 251.03,156.122 253.5,157.5 Z"/></g>
<g><path style="opacity:1" fill="#dcad77" d="M 244.5,164.5 C 244.821,166.048 245.821,166.715 247.5,166.5C 246.035,167.737 244.368,168.737 242.5,169.5C 242.715,167.821 242.048,166.821 240.5,166.5C 241.514,165.326 242.847,164.66 244.5,164.5 Z"/></g>
<g><path style="opacity:1" fill="#f3a848" d="M 247.5,166.5 C 245.821,166.715 244.821,166.048 244.5,164.5C 245.287,162.896 246.62,162.229 248.5,162.5C 248.768,164.099 248.434,165.432 247.5,166.5 Z"/></g>
<g><path style="opacity:1" fill="#c48a53" d="M 175.5,162.5 C 175.665,165.85 175.498,169.183 175,172.5C 174.617,173.056 174.117,173.389 173.5,173.5C 173.335,170.482 173.502,167.482 174,164.5C 174.278,163.584 174.778,162.918 175.5,162.5 Z"/></g>
<g><path style="opacity:1" fill="#efa659" d="M 223.5,163.5 C 221.669,165.776 219.336,167.609 216.5,169C 218.677,170.202 221.011,170.702 223.5,170.5C 221.072,172.101 219.072,174.268 217.5,177C 219.616,181.996 220.449,187.163 220,192.5C 213.631,198.039 207.465,203.706 201.5,209.5C 199.717,208.652 199.217,207.319 200,205.5C 204.719,200.278 209.885,195.612 215.5,191.5C 216.444,187.465 215.777,183.632 213.5,180C 211.575,180.135 209.575,180.302 207.5,180.5C 208.97,179.022 210.637,177.689 212.5,176.5C 210.833,175.167 209.167,175.167 207.5,176.5C 202.259,180.559 197.093,184.892 192,189.5C 192.511,191.461 194.011,192.461 196.5,192.5C 195.833,193.833 194.833,194.833 193.5,195.5C 192.793,193.866 191.627,192.532 190,191.5C 188.814,193.677 186.981,194.677 184.5,194.5C 185.527,192.806 186.861,191.473 188.5,190.5C 193.86,185.472 199.193,180.472 204.5,175.5C 206.027,175.573 207.027,174.906 207.5,173.5C 212.585,169.744 217.918,166.411 223.5,163.5 Z"/></g>
<g><path style="opacity:1" fill="#f2a466" d="M 457.5,159.5 C 458.5,159.5 459.5,159.5 460.5,159.5C 461.165,165.477 461.498,171.477 461.5,177.5C 465.846,177.334 470.179,177.501 474.5,178C 476.973,178.22 478.64,179.386 479.5,181.5C 472.438,177.635 465.438,177.635 458.5,181.5C 457.957,181.44 457.624,181.107 457.5,180.5C 461.358,173.531 461.358,166.531 457.5,159.5 Z"/></g>
<g><path style="opacity:1" fill="#ce945a" d="M 463.5,162.5 C 465.163,164.438 465.829,166.772 465.5,169.5C 465.5,170.833 465.5,172.167 465.5,173.5C 467.833,173.5 470.167,173.5 472.5,173.5C 474.027,173.427 475.027,174.094 475.5,175.5C 471.785,175.577 468.119,175.244 464.5,174.5C 463.728,170.548 463.395,166.548 463.5,162.5 Z"/></g>
<g><path style="opacity:1" fill="#eca866" d="M 71.5,166.5 C 71.6602,168.199 71.4935,169.866 71,171.5C 69.0091,173.388 67.8424,175.721 67.5,178.5C 66.3951,179.6 65.0618,180.267 63.5,180.5C 65.6643,175.5 68.331,170.833 71.5,166.5 Z"/></g>
<g><path style="opacity:1" fill="#faefd5" d="M 262.5,151.5 C 263.167,151.5 263.833,151.5 264.5,151.5C 262.531,153.159 260.531,154.825 258.5,156.5C 259.437,158.642 260.77,158.976 262.5,157.5C 262.666,162.511 262.499,167.511 262,172.5C 260.254,174.457 258.088,175.457 255.5,175.5C 250.122,178.507 244.788,181.507 239.5,184.5C 237.589,185.075 235.922,186.075 234.5,187.5C 232.977,185.676 231.977,183.51 231.5,181C 231.354,178.966 232.02,177.299 233.5,176C 233.272,175.601 232.938,175.435 232.5,175.5C 234.34,173.331 236.674,171.998 239.5,171.5C 238.064,172.429 236.731,173.595 235.5,175C 236.094,175.464 236.761,175.631 237.5,175.5C 236.378,176.947 234.878,177.947 233,178.5C 232.51,179.793 232.343,181.127 232.5,182.5C 234.833,181.833 237.167,181.167 239.5,180.5C 239.5,179.5 239.5,178.5 239.5,177.5C 240.873,177.657 242.207,177.49 243.5,177C 247.58,174.832 251.58,172.665 255.5,170.5C 256.117,170.389 256.617,170.056 257,169.5C 257.499,165.514 257.666,161.514 257.5,157.5C 257.5,156.5 257.5,155.5 257.5,154.5C 258.899,153.11 260.566,152.11 262.5,151.5 Z"/></g>
<g><path style="opacity:1" fill="#faf6fb" d="M 258.5,159.5 C 259.5,159.5 260.5,159.5 261.5,159.5C 261.665,163.182 261.499,166.848 261,170.5C 260.586,170.957 260.086,171.291 259.5,171.5C 258.509,167.555 258.176,163.555 258.5,159.5 Z"/></g>
<g><path style="opacity:1" fill="#e0a363" d="M 498.5,159.5 C 497.611,161.736 496.278,163.736 494.5,165.5C 489.951,169.753 484.951,173.086 479.5,175.5C 485.808,170.196 492.142,164.863 498.5,159.5 Z"/></g>
<g><path style="opacity:1" fill="#eea759" d="M 253.5,168.5 C 253.5,169.833 254.167,170.5 255.5,170.5C 251.58,172.665 247.58,174.832 243.5,177C 242.207,177.49 240.873,177.657 239.5,177.5C 239.5,178.5 239.5,179.5 239.5,180.5C 237.167,181.167 234.833,181.833 232.5,182.5C 232.343,181.127 232.51,179.793 233,178.5C 234.878,177.947 236.378,176.947 237.5,175.5C 242.853,173.13 248.186,170.797 253.5,168.5 Z"/></g>
<g><path style="opacity:1" fill="#e4b47c" d="M 569.5,168.5 C 567.858,166.919 565.858,166.253 563.5,166.5C 564.5,169.833 565.5,173.167 566.5,176.5C 565.209,176.737 564.209,176.404 563.5,175.5C 564.239,175.631 564.906,175.464 565.5,175C 563.273,172.373 561.773,169.54 561,166.5C 563.401,165.398 565.901,165.231 568.5,166C 569.252,166.671 569.586,167.504 569.5,168.5 Z"/></g>
<g><path style="opacity:1" fill="#f2a357" d="M 553.5,159.5 C 552.081,160.451 550.415,160.784 548.5,160.5C 550.287,164.729 552.62,168.729 555.5,172.5C 557.99,174.083 560.657,175.083 563.5,175.5C 564.209,176.404 565.209,176.737 566.5,176.5C 566.423,177.75 565.756,178.583 564.5,179C 565.126,179.75 565.626,180.584 566,181.5C 569.463,182.288 572.463,183.954 575,186.5C 575.494,188.134 575.66,189.801 575.5,191.5C 572.729,189.233 570.062,186.733 567.5,184C 565.35,182.589 563.016,181.755 560.5,181.5C 560.389,180.883 560.056,180.383 559.5,180C 555.93,178.69 552.263,177.857 548.5,177.5C 545.023,176.677 541.356,176.177 537.5,176C 540.462,174.436 543.462,174.269 546.5,175.5C 547.463,175.03 547.463,174.363 546.5,173.5C 547.573,172.749 547.74,171.749 547,170.5C 545.579,168.595 544.412,166.595 543.5,164.5C 543.5,163.833 543.5,163.167 543.5,162.5C 547.333,161.19 547.333,160.023 543.5,159C 546.849,158.612 550.183,158.779 553.5,159.5 Z"/></g>
<g><path style="opacity:1" fill="#e2995a" d="M 503.5,160.5 C 504.5,161.167 505.5,161.833 506.5,162.5C 507.833,164.5 509.5,166.167 511.5,167.5C 512.579,169.543 514.246,170.876 516.5,171.5C 519.144,174.48 521.811,177.48 524.5,180.5C 531.19,176.159 538.523,173.826 546.5,173.5C 547.463,174.363 547.463,175.03 546.5,175.5C 543.462,174.269 540.462,174.436 537.5,176C 541.356,176.177 545.023,176.677 548.5,177.5C 543.821,177.334 539.155,177.501 534.5,178C 528.941,180.363 523.441,182.863 518,185.5C 514.652,182.319 511.485,178.985 508.5,175.5C 505.482,173.474 502.482,171.474 499.5,169.5C 499.369,168.624 499.702,167.957 500.5,167.5C 502.592,170.152 505.258,170.986 508.5,170C 507.468,167.126 505.468,165.626 502.5,165.5C 502.216,163.585 502.549,161.919 503.5,160.5 Z"/></g>
<g><path style="opacity:1" fill="#f4a742" d="M 508.5,175.5 C 509.306,171.748 511.472,170.748 515,172.5C 515.483,173.448 515.649,174.448 515.5,175.5C 517.91,175.921 519.743,177.254 521,179.5C 521.58,182.547 521.247,182.881 520,180.5C 519.667,181.167 519.333,181.833 519,182.5C 516.342,178.796 512.842,176.463 508.5,175.5 Z"/></g>
<g><path style="opacity:1" fill="#f9a343" d="M 72.5,178.5 C 70.8333,178.5 69.1667,178.5 67.5,178.5C 67.8424,175.721 69.0091,173.388 71,171.5C 71.4935,169.866 71.6602,168.199 71.5,166.5C 72.5307,165.645 73.6974,164.978 75,164.5C 76.2931,167.343 75.6264,170.01 73,172.5C 72.5045,174.473 72.3379,176.473 72.5,178.5 Z"/></g>
<g><path style="opacity:1" fill="#c46c32" d="M 335.5,175.5 C 335.5,175.833 335.5,176.167 335.5,176.5C 337.331,179.216 339.997,180.716 343.5,181C 344.774,181.977 344.774,182.811 343.5,183.5C 337.158,182.536 330.824,181.369 324.5,180C 316.964,179.784 309.464,179.284 302,178.5C 300.5,179 299,179.5 297.5,180C 296.402,180.77 296.402,181.603 297.5,182.5C 292.181,183.445 286.848,183.611 281.5,183C 268.97,187.947 256.97,193.78 245.5,200.5C 245.5,201.5 245.5,202.5 245.5,203.5C 244.448,203.351 243.448,203.517 242.5,204C 237.752,208.553 232.752,212.887 227.5,217C 226.207,217.49 224.873,217.657 223.5,217.5C 223.5,218.5 223.5,219.5 223.5,220.5C 223.715,222.179 223.048,223.179 221.5,223.5C 216.942,222.636 213.942,224.303 212.5,228.5C 211.735,229.612 210.735,230.279 209.5,230.5C 211.5,226.5 213.5,222.5 215.5,218.5C 218.087,215.571 220.754,212.571 223.5,209.5C 226.81,207.518 229.81,205.185 232.5,202.5C 244.516,193.937 257.516,187.271 271.5,182.5C 275.869,183.077 279.869,182.243 283.5,180C 287.531,179.519 291.531,178.853 295.5,178C 296.381,177.292 297.047,176.458 297.5,175.5C 310.321,174.282 322.987,174.282 335.5,175.5 Z"/></g>
<g><path style="opacity:1" fill="#ecbb7e" d="M 40.5,163.5 C 40.7254,165.716 39.8921,167.383 38,168.5C 37.5034,170.81 37.3367,173.143 37.5,175.5C 36.5,175.5 35.5,175.5 34.5,175.5C 34.9118,177.973 33.9118,179.306 31.5,179.5C 33.0914,175.403 34.9248,171.403 37,167.5C 38.4048,166.269 39.5714,164.936 40.5,163.5 Z"/></g>
<g><path style="opacity:1" fill="#faa348" d="M 42.5,175.5 C 41.5987,176.29 40.9321,177.29 40.5,178.5C 39.7611,178.369 39.0944,178.536 38.5,179C 36.8495,181.813 34.8495,184.313 32.5,186.5C 31.5713,185.311 31.238,183.978 31.5,182.5C 31.5,181.5 31.5,180.5 31.5,179.5C 33.9118,179.306 34.9118,177.973 34.5,175.5C 35.5,175.5 36.5,175.5 37.5,175.5C 37.3367,173.143 37.5034,170.81 38,168.5C 39.8921,167.383 40.7254,165.716 40.5,163.5C 41.1174,163.389 41.6174,163.056 42,162.5C 42.4497,164.519 43.283,166.352 44.5,168C 42.8866,170.228 42.22,172.728 42.5,175.5 Z"/></g>
<g><path style="opacity:1" fill="#f4a64d" d="M 60.5,170.5 C 60.2503,172.674 59.2503,174.341 57.5,175.5C 54.7223,178.34 52.389,181.673 50.5,185.5C 48.1052,186.523 47.1052,185.523 47.5,182.5C 47.5861,180.323 48.2528,178.323 49.5,176.5C 52.0253,172.867 54.3586,169.2 56.5,165.5C 57.5754,164.438 58.5754,164.438 59.5,165.5C 60.3094,167.071 60.6427,168.738 60.5,170.5 Z"/></g>
<g><path style="opacity:1" fill="#de9c69" d="M 129.5,166.5 C 129.297,168.044 128.63,169.378 127.5,170.5C 124.658,171.004 123.325,172.671 123.5,175.5C 120.75,175.618 118.75,176.951 117.5,179.5C 116.193,180.865 116.193,182.198 117.5,183.5C 112.675,181.676 108.008,179.676 103.5,177.5C 104.492,177.672 105.158,177.338 105.5,176.5C 108.592,177.544 111.592,178.878 114.5,180.5C 116.827,177.839 119.16,175.172 121.5,172.5C 123.389,171.396 125.055,170.063 126.5,168.5C 127.5,167.833 128.5,167.167 129.5,166.5 Z"/></g>
<g><path style="opacity:1" fill="#e7ac67" d="M 255.5,175.5 C 255.5,176.5 255.5,177.5 255.5,178.5C 257.833,178.5 260.167,178.5 262.5,178.5C 260.351,179.736 258.018,180.736 255.5,181.5C 255.631,180.624 255.298,179.957 254.5,179.5C 250.679,179.848 247.012,181.348 243.5,184C 242.207,184.49 240.873,184.657 239.5,184.5C 244.788,181.507 250.122,178.507 255.5,175.5 Z"/></g>
<g><path style="opacity:1" fill="#f5a449" d="M 207.5,180.5 C 207.649,181.552 207.483,182.552 207,183.5C 203.013,185.991 199.513,188.991 196.5,192.5C 194.011,192.461 192.511,191.461 192,189.5C 197.093,184.892 202.259,180.559 207.5,176.5C 209.167,175.167 210.833,175.167 212.5,176.5C 210.637,177.689 208.97,179.022 207.5,180.5 Z"/></g>
<g><path style="opacity:1" fill="#eeb276" d="M 597.5,175.5 C 598.283,177.076 599.45,178.409 601,179.5C 601.494,181.134 601.66,182.801 601.5,184.5C 598.835,182.165 597.502,179.165 597.5,175.5 Z"/></g>
<g><path style="opacity:1" fill="#f9f3e3" d="M 335.5,168.5 C 319.319,168.193 303.319,169.693 287.5,173C 287.167,173.333 286.833,173.667 286.5,174C 288.74,174.977 291.073,175.477 293.5,175.5C 286.147,177.834 278.814,180.167 271.5,182.5C 257.516,187.271 244.516,193.937 232.5,202.5C 231.178,202.33 230.011,202.663 229,203.5C 228.506,201.866 228.34,200.199 228.5,198.5C 236.68,191.574 245.68,185.907 255.5,181.5C 258.018,180.736 260.351,179.736 262.5,178.5C 286.002,169.381 310.335,166.048 335.5,168.5 Z"/></g>
<g><path style="opacity:1" fill="#b97147" d="M 293.5,175.5 C 294.833,175.5 296.167,175.5 297.5,175.5C 297.047,176.458 296.381,177.292 295.5,178C 291.531,178.853 287.531,179.519 283.5,180C 279.869,182.243 275.869,183.077 271.5,182.5C 278.814,180.167 286.147,177.834 293.5,175.5 Z"/></g>
<g><path style="opacity:1" fill="#d27b37" d="M 343.5,183.5 C 343.5,183.833 343.5,184.167 343.5,184.5C 350.728,186.633 356.394,190.966 360.5,197.5C 355.42,194.456 350.086,191.623 344.5,189C 337.372,187.635 330.372,185.801 323.5,183.5C 314.776,182.595 306.109,182.262 297.5,182.5C 296.402,181.603 296.402,180.77 297.5,180C 299,179.5 300.5,179 302,178.5C 309.464,179.284 316.964,179.784 324.5,180C 330.824,181.369 337.158,182.536 343.5,183.5 Z"/></g>
<g><path style="opacity:1" fill="#4b0303" d="M 502.5,205.5 C 498.008,201.862 495.008,197.195 493.5,191.5C 494.859,190.993 495.859,189.993 496.5,188.5C 497.852,189.518 498.852,190.851 499.5,192.5C 500.609,191.41 501.609,191.41 502.5,192.5C 497.719,195.625 498.052,198.625 503.5,201.5C 504.904,198.831 506.238,195.997 507.5,193C 505.836,189.675 503.503,187.008 500.5,185C 496.169,183.663 493.502,185.163 492.5,189.5C 491.662,189.158 491.328,188.492 491.5,187.5C 492.234,186.292 492.567,184.959 492.5,183.5C 493.5,183.5 494.5,183.5 495.5,183.5C 495.5,182.5 495.5,181.5 495.5,180.5C 497.92,180.292 500.253,180.626 502.5,181.5C 505.968,184.456 508.968,187.789 511.5,191.5C 508.145,195.56 506.145,200.226 505.5,205.5C 504.5,205.5 503.5,205.5 502.5,205.5 Z"/></g>
<g><path style="opacity:1" fill="#f3a247" d="M 569.5,168.5 C 572.182,173.864 574.849,179.198 577.5,184.5C 578.01,187.388 577.344,189.721 575.5,191.5C 575.66,189.801 575.494,188.134 575,186.5C 572.463,183.954 569.463,182.288 566,181.5C 565.626,180.584 565.126,179.75 564.5,179C 565.756,178.583 566.423,177.75 566.5,176.5C 565.5,173.167 564.5,169.833 563.5,166.5C 565.858,166.253 567.858,166.919 569.5,168.5 Z"/></g>
<g><path style="opacity:1" fill="#370b0e" d="M 347.5,177.5 C 358.48,179.548 369.147,182.715 379.5,187C 386.056,189.77 392.056,193.27 397.5,197.5C 394.245,198.235 390.912,198.568 387.5,198.5C 386.304,198.154 386.304,197.654 387.5,197C 383.81,196.576 383.643,195.742 387,194.5C 387.617,193.551 387.451,192.718 386.5,192C 380.295,188.991 373.962,186.491 367.5,184.5C 367.719,185.675 367.386,186.675 366.5,187.5C 360.375,183.584 354.042,180.251 347.5,177.5 Z"/></g>
<g><path style="opacity:1" fill="#710707" d="M 143.5,172.5 C 146.48,175.144 149.48,177.811 152.5,180.5C 150.808,183.231 149.142,185.898 147.5,188.5C 145.502,186.167 144.168,183.5 143.5,180.5C 140.68,180.248 138.014,180.748 135.5,182C 132.917,185.356 130.25,188.523 127.5,191.5C 126.288,190.77 125.288,189.77 124.5,188.5C 118.456,193.413 114.289,192.08 112,184.5C 108.914,186.22 106.581,185.553 105,182.5C 104.667,182.833 104.333,183.167 104,183.5C 103.311,182.643 102.478,181.977 101.5,181.5C 94.0718,182.829 86.7385,183.829 79.5,184.5C 79.5,185.833 79.5,187.167 79.5,188.5C 75.9217,188.745 72.2551,188.745 68.5,188.5C 67.9992,191.178 66.4992,193.178 64,194.5C 63.3333,197.167 63.3333,199.833 64,202.5C 65.9895,202.951 67.8228,202.285 69.5,200.5C 68.1373,204.515 66.8039,208.515 65.5,212.5C 65.2682,215.809 65.9348,218.142 67.5,219.5C 69.0652,221.509 70.0652,223.843 70.5,226.5C 70.5654,226.938 70.3988,227.272 70,227.5C 69,226.167 68,224.833 67,223.5C 66.3333,224.833 65.6667,226.167 65,227.5C 63.8044,221.581 63.1378,215.581 63,209.5C 62.7165,207.114 61.7165,206.448 60,207.5C 59.502,204.518 59.3354,201.518 59.5,198.5C 60.8333,196.167 62.1667,193.833 63.5,191.5C 64.5,191.167 65.1667,190.5 65.5,189.5C 75.9726,178.899 88.6393,174.899 103.5,177.5C 108.008,179.676 112.675,181.676 117.5,183.5C 117.962,184.88 118.962,185.547 120.5,185.5C 126.177,179.824 132.177,174.491 138.5,169.5C 140.36,170.26 142.027,171.26 143.5,172.5 Z"/></g>
<g><path style="opacity:1" fill="#440304" d="M 147.5,188.5 C 144.975,195.57 140.975,201.57 135.5,206.5C 133.702,203.969 132.535,200.969 132,197.5C 130.871,195.859 129.371,194.859 127.5,194.5C 127.5,193.5 127.5,192.5 127.5,191.5C 130.25,188.523 132.917,185.356 135.5,182C 138.014,180.748 140.68,180.248 143.5,180.5C 144.168,183.5 145.502,186.167 147.5,188.5 Z"/></g>
<g><path style="opacity:1" fill="#f6f5f1" d="M 232.5,175.5 C 232.938,175.435 233.272,175.601 233.5,176C 232.02,177.299 231.354,178.966 231.5,181C 231.977,183.51 232.977,185.676 234.5,187.5C 232.958,188.301 231.292,188.634 229.5,188.5C 228.995,185.479 228.328,182.479 227.5,179.5C 227.809,176.508 229.476,175.175 232.5,175.5 Z"/></g>
<g><path style="opacity:1" fill="#f2a651" d="M 582.5,165.5 C 589.071,174.643 594.071,184.643 597.5,195.5C 595.076,195.808 592.743,195.474 590.5,194.5C 587.396,187.955 584.063,181.622 580.5,175.5C 579.254,172.267 578.754,168.934 579,165.5C 580.145,164.316 581.312,164.316 582.5,165.5 Z"/></g>
<g><path style="opacity:1" fill="#ebab63" d="M 57.5,175.5 C 56.341,178.662 55.0076,181.829 53.5,185C 54.7461,186.953 56.4128,187.953 58.5,188C 60.8251,185.825 62.4918,183.325 63.5,180.5C 63.7723,185.558 61.4389,188.558 56.5,189.5C 54.5648,188.85 52.5648,188.517 50.5,188.5C 51.449,190.737 52.1156,193.071 52.5,195.5C 50.1971,193.033 47.6971,190.7 45,188.5C 44.6381,186.021 45.4714,184.021 47.5,182.5C 47.1052,185.523 48.1052,186.523 50.5,185.5C 52.389,181.673 54.7223,178.34 57.5,175.5 Z"/></g>
<g><path style="opacity:1" fill="#fdf7de" d="M 367.5,175.5 C 378.999,179.25 389.666,184.583 399.5,191.5C 395.979,191.17 392.979,189.67 390.5,187C 381.74,185.007 374.074,181.174 367.5,175.5 Z"/></g>
<g><path style="opacity:1" fill="#f3b859" d="M 67.5,178.5 C 69.1667,178.5 70.8333,178.5 72.5,178.5C 72.2488,180.17 71.5822,181.67 70.5,183C 66.1178,183.003 64.4511,185.169 65.5,189.5C 65.1667,190.5 64.5,191.167 63.5,191.5C 62.5,191.5 61.5,191.5 60.5,191.5C 60.8034,194.588 59.4701,196.254 56.5,196.5C 56.5,195.167 56.5,193.833 56.5,192.5C 56.5,191.5 56.5,190.5 56.5,189.5C 61.4389,188.558 63.7723,185.558 63.5,180.5C 65.0618,180.267 66.3951,179.6 67.5,178.5 Z"/></g>
<g><path style="opacity:1" fill="#e9aa5a" d="M 422.5,175.5 C 425.336,176.776 428.336,177.442 431.5,177.5C 431.5,178.5 431.5,179.5 431.5,180.5C 428.916,180.569 426.916,181.735 425.5,184C 426.094,184.464 426.761,184.631 427.5,184.5C 424.479,187.436 420.979,189.769 417,191.5C 410.453,185.984 403.287,181.651 395.5,178.5C 395.5,177.167 395.5,175.833 395.5,174.5C 397.564,174.687 399.564,175.187 401.5,176C 406.662,179.749 411.996,183.249 417.5,186.5C 421.213,184.96 424.547,182.793 427.5,180C 425.382,178.951 423.716,177.451 422.5,175.5 Z"/></g>
<g><path style="opacity:1" fill="#f2a753" d="M 240.5,166.5 C 242.048,166.821 242.715,167.821 242.5,169.5C 241.29,169.932 240.29,170.599 239.5,171.5C 236.674,171.998 234.34,173.331 232.5,175.5C 229.476,175.175 227.809,176.508 227.5,179.5C 228.328,182.479 228.995,185.479 229.5,188.5C 231.292,188.634 232.958,188.301 234.5,187.5C 235.922,186.075 237.589,185.075 239.5,184.5C 240.873,184.657 242.207,184.49 243.5,184C 247.012,181.348 250.679,179.848 254.5,179.5C 255.298,179.957 255.631,180.624 255.5,181.5C 245.68,185.907 236.68,191.574 228.5,198.5C 223.437,199.856 219.771,202.856 217.5,207.5C 215.142,209.529 212.808,211.529 210.5,213.5C 210.489,211.314 209.489,210.481 207.5,211C 204.775,214.391 205.442,215.558 209.5,214.5C 208.396,216.389 207.063,218.055 205.5,219.5C 205.762,218.022 205.429,216.689 204.5,215.5C 202.49,217.171 200.157,217.838 197.5,217.5C 197.795,219.735 197.461,221.735 196.5,223.5C 196.66,221.801 196.494,220.134 196,218.5C 192.952,215.015 190.452,211.182 188.5,207C 194.848,198.474 202.515,191.64 211.5,186.5C 207.446,193.407 201.946,199.407 195,204.5C 194.333,206.167 194.333,207.833 195,209.5C 196.815,211.1 197.982,213.1 198.5,215.5C 199.365,216.583 200.365,216.749 201.5,216C 205.111,210.326 209.778,205.826 215.5,202.5C 218.806,200.876 221.473,198.542 223.5,195.5C 224.347,193.971 225.014,192.304 225.5,190.5C 223.851,185.973 223.018,181.307 223,176.5C 228.505,172.474 234.338,169.141 240.5,166.5 Z"/></g>
<g><path style="opacity:1" fill="#bb6637" d="M 335.5,176.5 C 364.729,183.895 383.229,202.229 391,231.5C 392.275,239.447 392.775,247.447 392.5,255.5C 390.796,260.633 389.296,265.966 388,271.5C 386.726,274.391 385.226,277.058 383.5,279.5C 384.56,274.706 386.06,270.04 388,265.5C 390.31,255.954 390.976,246.287 390,236.5C 388.398,230.865 386.731,225.198 385,219.5C 382.537,216.362 380.037,213.196 377.5,210C 376.899,205.44 374.232,203.106 369.5,203C 371.754,201.946 372.087,200.446 370.5,198.5C 368.5,198.167 366.5,197.833 364.5,197.5C 363.067,195.878 361.401,194.545 359.5,193.5C 360.859,191.694 360.525,190.194 358.5,189C 355.853,187.701 353.186,186.368 350.5,185C 348.19,184.503 345.857,184.337 343.5,184.5C 343.5,184.167 343.5,183.833 343.5,183.5C 344.774,182.811 344.774,181.977 343.5,181C 339.997,180.716 337.331,179.216 335.5,176.5 Z"/></g>
<g><path style="opacity:1" fill="#3e0205" d="M 493.5,191.5 C 493.167,191.5 492.833,191.5 492.5,191.5C 492.5,190.833 492.5,190.167 492.5,189.5C 493.502,185.163 496.169,183.663 500.5,185C 503.503,187.008 505.836,189.675 507.5,193C 506.238,195.997 504.904,198.831 503.5,201.5C 498.052,198.625 497.719,195.625 502.5,192.5C 501.609,191.41 500.609,191.41 499.5,192.5C 498.852,190.851 497.852,189.518 496.5,188.5C 495.859,189.993 494.859,190.993 493.5,191.5 Z"/></g>
<g><path style="opacity:1" fill="#730404" d="M 499.5,169.5 C 502.482,171.474 505.482,173.474 508.5,175.5C 511.485,178.985 514.652,182.319 518,185.5C 523.441,182.863 528.941,180.363 534.5,178C 539.155,177.501 543.821,177.334 548.5,177.5C 552.263,177.857 555.93,178.69 559.5,180C 560.056,180.383 560.389,180.883 560.5,181.5C 562.046,184.2 564.379,186.033 567.5,187C 566.667,187.167 565.833,187.333 565,187.5C 563.113,187.031 561.613,186.031 560.5,184.5C 559.526,186.743 559.192,189.076 559.5,191.5C 556.833,191.5 554.167,191.5 551.5,191.5C 547.818,191.335 544.152,191.501 540.5,192C 536.051,194.07 532.051,196.904 528.5,200.5C 527.526,202.743 527.192,205.076 527.5,207.5C 526.5,207.5 525.5,207.5 524.5,207.5C 523.837,211.826 523.171,216.159 522.5,220.5C 522.965,231.553 526.632,241.553 533.5,250.5C 534.325,251.386 535.325,251.719 536.5,251.5C 532.539,256.092 530.206,261.425 529.5,267.5C 528.691,269.292 528.191,271.292 528,273.5C 525.655,270.823 522.988,268.49 520,266.5C 520.361,263.076 521.361,259.742 523,256.5C 524.151,249.821 523.151,243.488 520,237.5C 513.156,229.839 509.156,220.839 508,210.5C 505.809,209.167 503.976,207.5 502.5,205.5C 503.5,205.5 504.5,205.5 505.5,205.5C 506.145,200.226 508.145,195.56 511.5,191.5C 508.968,187.789 505.968,184.456 502.5,181.5C 500.253,180.626 497.92,180.292 495.5,180.5C 495.5,181.5 495.5,182.5 495.5,183.5C 494.5,183.5 493.5,183.5 492.5,183.5C 492.567,184.959 492.234,186.292 491.5,187.5C 490.017,185.906 488.517,184.24 487,182.5C 486.333,181.5 486.333,180.5 487,179.5C 491.066,175.923 495.232,172.589 499.5,169.5 Z"/></g>
<g><path style="opacity:1" fill="#750203" d="M 127.5,191.5 C 127.5,192.5 127.5,193.5 127.5,194.5C 128.237,197.412 129.237,200.245 130.5,203C 130.215,204.89 129.215,206.223 127.5,207C 127.833,207.333 128.167,207.667 128.5,208C 127.712,211.076 127.212,214.242 127,217.5C 126.333,218.833 125.667,218.833 125,217.5C 124.489,215.122 123.822,212.788 123,210.5C 121.98,211.891 121.147,213.391 120.5,215C 119.451,215.492 118.451,215.326 117.5,214.5C 116.34,212.125 115.34,209.792 114.5,207.5C 113.5,207.5 112.5,207.5 111.5,207.5C 110.951,199.617 106.618,195.283 98.5,194.5C 98.5,193.5 98.5,192.5 98.5,191.5C 91.825,191.334 85.1583,191.5 78.5,192C 75.6306,195.038 72.6306,197.871 69.5,200.5C 67.8228,202.285 65.9895,202.951 64,202.5C 63.3333,199.833 63.3333,197.167 64,194.5C 66.4992,193.178 67.9992,191.178 68.5,188.5C 72.2551,188.745 75.9217,188.745 79.5,188.5C 79.5,187.167 79.5,185.833 79.5,184.5C 86.7385,183.829 94.0718,182.829 101.5,181.5C 102.478,181.977 103.311,182.643 104,183.5C 104.333,183.167 104.667,182.833 105,182.5C 106.581,185.553 108.914,186.22 112,184.5C 114.289,192.08 118.456,193.413 124.5,188.5C 125.288,189.77 126.288,190.77 127.5,191.5 Z"/></g>
<g><path style="opacity:1" fill="#440304" d="M 180.5,181.5 C 183.503,184.171 186.169,187.171 188.5,190.5C 186.861,191.473 185.527,192.806 184.5,194.5C 184.5,194.833 184.5,195.167 184.5,195.5C 174.608,204.728 166.608,215.395 160.5,227.5C 159.662,227.842 159.328,228.508 159.5,229.5C 152.574,240.693 147.241,252.693 143.5,265.5C 143.5,266.167 143.5,266.833 143.5,267.5C 142.833,268.833 142.167,270.167 141.5,271.5C 138.5,271.5 135.5,271.5 132.5,271.5C 132.737,270.209 132.404,269.209 131.5,268.5C 126.002,265.83 122.502,261.497 121,255.5C 120.342,251.428 120.675,247.428 122,243.5C 125.667,237.167 129.333,230.833 133,224.5C 134.156,220.877 135.156,217.211 136,213.5C 143.633,206.905 149.299,198.905 153,189.5C 155.054,186.626 157.221,183.959 159.5,181.5C 166.661,177.536 173.661,177.536 180.5,181.5 Z"/></g>
<g><path style="opacity:1" fill="#440305" d="M 479.5,181.5 C 479.5,181.833 479.5,182.167 479.5,182.5C 485.538,188.874 490.372,196.207 494,204.5C 497,207.5 500,210.5 503,213.5C 503.539,216.529 504.206,219.529 505,222.5C 508.747,229.663 512.747,236.663 517,243.5C 520.404,254.467 517.238,262.8 507.5,268.5C 504.382,270.393 501.049,271.726 497.5,272.5C 494.798,262.384 491.131,252.718 486.5,243.5C 485.002,238.358 482.668,233.691 479.5,229.5C 474.326,219.664 467.993,210.664 460.5,202.5C 457.871,198.537 454.871,194.871 451.5,191.5C 451.586,190.504 451.252,189.671 450.5,189C 452.983,186.267 455.65,183.767 458.5,181.5C 465.438,177.635 472.438,177.635 479.5,181.5 Z"/></g>
<g><path style="opacity:1" fill="#f89e4a" d="M 56.5,189.5 C 56.5,190.5 56.5,191.5 56.5,192.5C 55.7638,194.229 54.4305,195.229 52.5,195.5C 52.1156,193.071 51.449,190.737 50.5,188.5C 52.5648,188.517 54.5648,188.85 56.5,189.5 Z"/></g>
<g><path style="opacity:1" fill="#4f050a" d="M 114.5,207.5 C 115.352,215.821 115.519,224.154 115,232.5C 112.732,237.237 111.566,242.237 111.5,247.5C 109.712,247.215 108.045,247.548 106.5,248.5C 105.923,250.55 104.59,251.55 102.5,251.5C 102.5,250.833 102.167,250.5 101.5,250.5C 104.81,246.565 107.643,242.232 110,237.5C 114.613,227.152 114.613,216.818 110,206.5C 107.232,201.896 103.399,198.562 98.5,196.5C 88.3712,192.595 79.5378,194.595 72,202.5C 70.1207,204.527 68.954,206.86 68.5,209.5C 67.5206,212.625 67.1872,215.958 67.5,219.5C 65.9348,218.142 65.2682,215.809 65.5,212.5C 66.8039,208.515 68.1373,204.515 69.5,200.5C 72.6306,197.871 75.6306,195.038 78.5,192C 85.1583,191.5 91.825,191.334 98.5,191.5C 98.5,192.5 98.5,193.5 98.5,194.5C 106.618,195.283 110.951,199.617 111.5,207.5C 112.5,207.5 113.5,207.5 114.5,207.5 Z"/></g>
<g><path style="opacity:1" fill="#eda463" d="M 443.5,184.5 C 446.167,186.833 448.833,189.167 451.5,191.5C 454.871,194.871 457.871,198.537 460.5,202.5C 457.73,200.9 455.397,198.734 453.5,196C 452.451,195.508 451.451,195.674 450.5,196.5C 449.614,195.675 449.281,194.675 449.5,193.5C 445.743,193.714 445.076,192.714 447.5,190.5C 445.722,188.736 444.389,186.736 443.5,184.5 Z"/></g>
<g><path style="opacity:1" fill="#eca357" d="M 140.5,159.5 C 147.059,164.606 153.392,169.939 159.5,175.5C 158.359,176.339 157.026,177.006 155.5,177.5C 154.167,179.167 154.167,180.833 155.5,182.5C 156.736,181.754 158.07,181.421 159.5,181.5C 157.221,183.959 155.054,186.626 153,189.5C 149.299,198.905 143.633,206.905 136,213.5C 135.156,217.211 134.156,220.877 133,224.5C 129.333,230.833 125.667,237.167 122,243.5C 120.675,247.428 120.342,251.428 121,255.5C 122.502,261.497 126.002,265.83 131.5,268.5C 127.482,269.163 123.482,270.33 119.5,272C 116.22,274.775 113.554,277.942 111.5,281.5C 111.566,278.336 112.566,275.502 114.5,273C 114.43,272.235 114.097,271.735 113.5,271.5C 115.363,269.139 117.363,266.973 119.5,265C 117.767,262.042 116.767,258.875 116.5,255.5C 116.929,250.851 117.929,246.351 119.5,242C 118.748,241.329 118.414,240.496 118.5,239.5C 121.44,234.053 124.607,228.72 128,223.5C 129.106,219.196 130.106,214.863 131,210.5C 132.397,208.93 133.897,207.596 135.5,206.5C 140.975,201.57 144.975,195.57 147.5,188.5C 149.142,185.898 150.808,183.231 152.5,180.5C 149.48,177.811 146.48,175.144 143.5,172.5C 145.681,172.284 147.347,173.117 148.5,175C 150.833,175.667 153.167,175.667 155.5,175C 152.395,170.702 148.395,167.869 143.5,166.5C 142.199,164.328 141.199,161.995 140.5,159.5 Z"/></g>
<g><path style="opacity:1" fill="#daa555" d="M 98.5,196.5 C 97.791,197.404 96.791,197.737 95.5,197.5C 84.481,195.676 76.481,199.676 71.5,209.5C 70.7093,211.309 70.7093,213.309 71.5,215.5C 71.5,216.5 71.5,217.5 71.5,218.5C 70.603,219.598 69.7697,219.598 69,218.5C 68.502,215.518 68.3354,212.518 68.5,209.5C 68.954,206.86 70.1207,204.527 72,202.5C 79.5378,194.595 88.3712,192.595 98.5,196.5 Z"/></g>
<g><path style="opacity:1" fill="#f8d9ac" d="M 24.5,195.5 C 23.2042,199.739 21.5375,203.739 19.5,207.5C 20.0213,202.913 21.688,198.913 24.5,195.5 Z"/></g>
<g><path style="opacity:1" fill="#fdf2d6" d="M 399.5,191.5 C 400.552,191.351 401.552,191.517 402.5,192C 408.242,196.75 414.242,201.083 420.5,205C 421.965,206.774 423.298,208.608 424.5,210.5C 422.436,210.238 421.103,209.071 420.5,207C 419.167,206.667 417.833,206.333 416.5,206C 410.858,201.173 405.191,196.34 399.5,191.5 Z"/></g>
<g><path style="opacity:1" fill="#eba865" d="M 607.5,181.5 C 612.752,189.355 616.418,198.021 618.5,207.5C 616.773,203.769 614.273,200.436 611,197.5C 609.897,192.057 608.731,186.723 607.5,181.5 Z"/></g>
<g><path style="opacity:1" fill="#e4b06f" d="M 223.5,195.5 C 221.473,198.542 218.806,200.876 215.5,202.5C 217.523,199.48 220.19,197.146 223.5,195.5 Z"/></g>
<g><path style="opacity:1" fill="#f7a243" d="M 193.5,195.5 C 190.791,198.175 188.124,200.842 185.5,203.5C 184.5,203.5 183.5,203.5 182.5,203.5C 182.662,205.527 182.495,207.527 182,209.5C 180.902,208.033 179.402,207.199 177.5,207C 179.569,206.676 179.902,205.842 178.5,204.5C 180.552,201.464 182.552,198.464 184.5,195.5C 184.5,195.167 184.5,194.833 184.5,194.5C 186.981,194.677 188.814,193.677 190,191.5C 191.627,192.532 192.793,193.866 193.5,195.5 Z"/></g>
<g><path style="opacity:1" fill="#f7e9d2" d="M 228.5,198.5 C 228.34,200.199 228.506,201.866 229,203.5C 230.011,202.663 231.178,202.33 232.5,202.5C 229.81,205.185 226.81,207.518 223.5,209.5C 224.473,207.7 225.473,205.866 226.5,204C 224.865,203.46 223.532,203.96 222.5,205.5C 221.914,205.291 221.414,204.957 221,204.5C 219.961,205.71 218.794,206.71 217.5,207.5C 219.771,202.856 223.437,199.856 228.5,198.5 Z"/></g>
<g><path style="opacity:1" fill="#4a0809" d="M 551.5,191.5 C 553.948,192.473 556.615,192.806 559.5,192.5C 560.919,196.409 563.752,198.742 568,199.5C 570.512,203.696 572.346,208.196 573.5,213C 573.317,214.684 572.65,214.85 571.5,213.5C 567.727,199.265 558.393,193.098 543.5,195C 529.198,201.096 523.365,211.929 526,227.5C 527.315,236.004 531.149,243.004 537.5,248.5C 537.737,249.791 537.404,250.791 536.5,251.5C 535.325,251.719 534.325,251.386 533.5,250.5C 526.632,241.553 522.965,231.553 522.5,220.5C 523.171,216.159 523.837,211.826 524.5,207.5C 525.5,207.5 526.5,207.5 527.5,207.5C 527.192,205.076 527.526,202.743 528.5,200.5C 532.051,196.904 536.051,194.07 540.5,192C 544.152,191.501 547.818,191.335 551.5,191.5 Z"/></g>
<g><path style="opacity:1" fill="#faf7ec" d="M 51.5,223.5 C 51.8333,223.5 52.1667,223.5 52.5,223.5C 54.1034,225.582 55.4367,227.915 56.5,230.5C 55.0541,232.618 54.3874,234.951 54.5,237.5C 52.3194,243.889 49.986,250.222 47.5,256.5C 44.3253,258.992 42.6586,262.326 42.5,266.5C 40.3146,266.296 38.3146,265.63 36.5,264.5C 36.1583,263.662 35.4916,263.328 34.5,263.5C 32.6452,261.967 30.8119,260.3 29,258.5C 28.6815,253.432 29.1815,248.432 30.5,243.5C 31.4345,242.432 31.7678,241.099 31.5,239.5C 34.3465,232.183 37.0132,224.683 39.5,217C 39.5086,214.182 38.1752,212.348 35.5,211.5C 34.4777,211.855 33.811,212.522 33.5,213.5C 31.7571,216.495 30.7571,219.829 30.5,223.5C 25.6625,235.419 21.9958,247.919 19.5,261C 22.0512,265.701 26.0512,268.201 31.5,268.5C 31.5,268.833 31.5,269.167 31.5,269.5C 32.7471,271.178 34.4138,272.511 36.5,273.5C 34.8076,275.765 32.641,277.432 30,278.5C 25.564,276.075 21.064,273.741 16.5,271.5C 16.1667,271.5 15.8333,271.5 15.5,271.5C 14.2726,269.68 13.2726,267.68 12.5,265.5C 12.9971,263.182 13.3305,260.848 13.5,258.5C 16.7847,237.543 23.1181,217.543 32.5,198.5C 38.1765,203.337 43.1765,208.504 47.5,214C 43.0251,226.091 39.3585,238.425 36.5,251C 36.4301,254.992 38.4301,256.492 42.5,255.5C 44.3934,244.421 47.3934,233.754 51.5,223.5 Z"/></g>
<g><path style="opacity:1" fill="#f7a346" d="M 587.5,210.5 C 587.5,210.833 587.5,211.167 587.5,211.5C 586.183,214.23 586.183,217.063 587.5,220C 594.121,219.671 600.788,219.504 607.5,219.5C 607.5,219.833 607.5,220.167 607.5,220.5C 601.406,222.312 594.906,223.312 588,223.5C 586.213,223.241 584.713,222.575 583.5,221.5C 583.825,214.38 583.159,207.38 581.5,200.5C 581.338,198.473 581.505,196.473 582,194.5C 583.96,197.585 585.793,200.752 587.5,204C 589.473,204.495 591.473,204.662 593.5,204.5C 593.5,205.5 593.5,206.5 593.5,207.5C 595.5,207.5 597.5,207.5 599.5,207.5C 599.5,206.5 599.5,205.5 599.5,204.5C 602.167,204.5 604.833,204.5 607.5,204.5C 607.33,205.822 607.663,206.989 608.5,208C 601.472,208.675 594.472,208.508 587.5,207.5C 587.5,208.5 587.5,209.5 587.5,210.5 Z"/></g>
<g><path style="opacity:1" fill="#f9f2e3" d="M 348.5,145.5 C 362.027,147.899 375.027,151.899 387.5,157.5C 385.415,161.254 382.415,163.921 378.5,165.5C 371.394,162.351 364.061,160.351 356.5,159.5C 356.33,160.822 356.663,161.989 357.5,163C 364.881,164.586 372.048,166.753 379,169.5C 380.627,169.375 382.127,168.875 383.5,168C 385.756,164.126 388.922,161.293 393,159.5C 397.729,161.117 402.229,163.117 406.5,165.5C 411.582,169.108 416.916,172.441 422.5,175.5C 423.716,177.451 425.382,178.951 427.5,180C 424.547,182.793 421.213,184.96 417.5,186.5C 411.996,183.249 406.662,179.749 401.5,176C 399.564,175.187 397.564,174.687 395.5,174.5C 395.5,175.833 395.5,177.167 395.5,178.5C 403.287,181.651 410.453,185.984 417,191.5C 420.979,189.769 424.479,187.436 427.5,184.5C 429.144,184.714 430.644,184.38 432,183.5C 440.744,191.416 449.244,199.416 457.5,207.5C 457.877,209.258 458.544,210.925 459.5,212.5C 459.291,213.086 458.957,213.586 458.5,214C 454.928,215.405 451.261,215.738 447.5,215C 442.98,208.98 437.647,203.813 431.5,199.5C 430.5,199.833 429.833,200.5 429.5,201.5C 435.323,207.491 440.989,213.657 446.5,220C 448.5,220.667 450.5,220.667 452.5,220C 455.932,217.928 459.598,217.262 463.5,218C 465.469,219.5 466.802,221.333 467.5,223.5C 474.407,232.562 479.407,242.562 482.5,253.5C 478.445,253.824 474.445,253.491 470.5,252.5C 467.845,245.857 464.678,239.523 461,233.5C 459.506,232.253 458.006,232.253 456.5,233.5C 460.299,241.125 464.299,248.625 468.5,256C 473.755,257.069 479.089,257.903 484.5,258.5C 490.314,270.906 493.98,283.906 495.5,297.5C 490.808,297.575 486.474,296.575 482.5,294.5C 482.626,289.778 481.626,285.445 479.5,281.5C 479.797,278.276 479.13,275.276 477.5,272.5C 476.311,271.571 474.978,271.238 473.5,271.5C 476.517,280.625 478.517,289.959 479.5,299.5C 484.878,299.845 490.211,300.512 495.5,301.5C 495.5,305.5 495.5,309.5 495.5,313.5C 494.504,313.586 493.671,313.252 493,312.5C 493.438,309.94 493.271,307.44 492.5,305C 489.883,304.178 487.216,303.678 484.5,303.5C 481.753,303.813 479.086,303.48 476.5,302.5C 475.873,301.583 475.539,300.583 475.5,299.5C 475.245,295.2 474.245,291.2 472.5,287.5C 472.023,280.543 470.357,273.877 467.5,267.5C 471.459,266.34 475.459,266.173 479.5,267C 483.01,274.377 485.01,282.211 485.5,290.5C 486.568,291.434 487.901,291.768 489.5,291.5C 489.841,287.84 489.175,284.507 487.5,281.5C 486.521,275.137 484.854,268.97 482.5,263C 476.804,262.83 471.138,262.33 465.5,261.5C 461.11,250.889 455.777,240.723 449.5,231C 451.423,229.095 453.756,227.928 456.5,227.5C 457.833,227.5 459.167,227.5 460.5,227.5C 462.451,228.716 463.951,230.382 465,232.5C 467.683,237.353 470.016,242.353 472,247.5C 473.356,248.38 474.856,248.714 476.5,248.5C 473.059,240.048 468.726,232.048 463.5,224.5C 462.866,223.053 461.699,222.387 460,222.5C 458.93,222.528 458.097,222.861 457.5,223.5C 453.712,223.932 450.045,224.932 446.5,226.5C 439.562,217.262 431.729,208.928 423,201.5C 422.289,199.633 422.789,198.133 424.5,197C 426.906,196.694 429.073,195.861 431,194.5C 437.813,198.98 443.646,204.48 448.5,211C 450.259,211.798 451.926,211.631 453.5,210.5C 447.631,202.798 440.964,195.965 433.5,190C 427.713,190.716 422.38,192.883 417.5,196.5C 407.575,189.716 397.575,183.216 387.5,177C 389.43,173.238 392.43,170.738 396.5,169.5C 402.881,173.24 409.214,177.073 415.5,181C 416.833,181.667 418.167,181.667 419.5,181C 420.833,180 420.833,179 419.5,178C 411.486,172.991 403.152,168.491 394.5,164.5C 390.578,166.751 387.244,169.751 384.5,173.5C 383.183,173.821 381.849,174.154 380.5,174.5C 378.423,173.063 376.09,172.396 373.5,172.5C 371.028,171.038 368.361,169.872 365.5,169C 359.946,168.715 354.612,167.549 349.5,165.5C 349.325,163.379 349.659,161.379 350.5,159.5C 351.451,158.081 351.784,156.415 351.5,154.5C 354.187,154.336 356.854,154.503 359.5,155C 364.608,156.39 369.608,158.056 374.5,160C 376.5,160.667 378.5,160.667 380.5,160C 381.833,159.333 381.833,158.667 380.5,158C 371.466,154.95 362.299,152.45 353,150.5C 351.527,150.903 350.194,151.57 349,152.5C 348.498,155.488 347.331,158.155 345.5,160.5C 344.358,162.972 342.358,163.972 339.5,163.5C 337.901,163.768 336.568,163.434 335.5,162.5C 327.343,161.671 319.01,161.171 310.5,161C 309.663,159.989 309.33,158.822 309.5,157.5C 310.833,157.5 312.167,157.5 313.5,157.5C 320.648,158.492 327.981,158.825 335.5,158.5C 336.919,159.451 338.585,159.784 340.5,159.5C 342.645,154.543 345.312,149.877 348.5,145.5 Z"/></g>
<g><path style="opacity:1" fill="#f3a450" d="M 350.5,159.5 C 348.956,159.703 347.622,160.37 346.5,161.5C 345.893,161.376 345.56,161.043 345.5,160.5C 347.331,158.155 348.498,155.488 349,152.5C 350.194,151.57 351.527,150.903 353,150.5C 362.299,152.45 371.466,154.95 380.5,158C 381.833,158.667 381.833,159.333 380.5,160C 378.5,160.667 376.5,160.667 374.5,160C 369.608,158.056 364.608,156.39 359.5,155C 356.854,154.503 354.187,154.336 351.5,154.5C 351.784,156.415 351.451,158.081 350.5,159.5 Z"/></g>
<g><path style="opacity:1" fill="#e5a065" d="M 96.5,207.5 C 97.4706,209.483 98.4706,211.483 99.5,213.5C 99.5654,213.938 99.3988,214.272 99,214.5C 89.4017,203.515 80.235,203.849 71.5,215.5C 70.7093,213.309 70.7093,211.309 71.5,209.5C 71.4346,209.938 71.6012,210.272 72,210.5C 79.3251,202.361 87.4918,201.361 96.5,207.5 Z"/></g>
<g><path style="opacity:1" fill="#4b0101" d="M 408.5,212.5 C 412.441,215.329 415.775,218.829 418.5,223C 419.793,223.49 421.127,223.657 422.5,223.5C 423.357,226.043 424.69,228.377 426.5,230.5C 428.548,231.083 430.381,231.083 432,230.5C 433,232.167 434,233.833 435,235.5C 435.383,234.944 435.883,234.611 436.5,234.5C 436.703,236.044 437.37,237.378 438.5,238.5C 437.271,239.281 435.938,239.781 434.5,240C 434.962,243.767 436.796,246.6 440,248.5C 440.333,248.167 440.667,247.833 441,247.5C 441.333,248.833 441.667,250.167 442,251.5C 442.893,250.289 443.726,250.289 444.5,251.5C 443.332,255.331 443.999,258.831 446.5,262C 445.304,262.654 445.304,263.154 446.5,263.5C 447.281,262.271 447.781,260.938 448,259.5C 449.718,262.091 450.218,264.758 449.5,267.5C 448.914,267.291 448.414,266.957 448,266.5C 447.506,268.134 447.34,269.801 447.5,271.5C 446.325,271.719 445.325,271.386 444.5,270.5C 442.223,265.669 440.556,260.669 439.5,255.5C 438.325,255.719 437.325,255.386 436.5,254.5C 435.731,250.827 434.231,247.494 432,244.5C 430.853,245.458 429.853,245.125 429,243.5C 428.51,242.207 428.343,240.873 428.5,239.5C 427.5,239.5 426.5,239.5 425.5,239.5C 422.526,230.409 417.193,222.909 409.5,217C 406.641,214.82 403.474,213.32 400,212.5C 397.851,220.39 398.351,228.057 401.5,235.5C 400.674,247.872 398.674,259.872 395.5,271.5C 395.186,266.817 395.852,262.317 397.5,258C 396.217,251.216 396.217,244.383 397.5,237.5C 396.945,227.272 395.278,217.272 392.5,207.5C 395.518,207.335 398.518,207.502 401.5,208C 403.551,210.02 405.884,211.52 408.5,212.5 Z"/></g>
<g><path style="opacity:1" fill="#eca257" d="M 577.5,184.5 C 582.287,189.892 585.953,196.058 588.5,203C 594.825,203.5 601.158,203.666 607.5,203.5C 607.5,202.5 607.5,201.5 607.5,200.5C 609.344,202.279 610.01,204.612 609.5,207.5C 602.726,209.151 595.726,210.151 588.5,210.5C 588.167,210.5 587.833,210.5 587.5,210.5C 587.5,209.5 587.5,208.5 587.5,207.5C 594.472,208.508 601.472,208.675 608.5,208C 607.663,206.989 607.33,205.822 607.5,204.5C 604.833,204.5 602.167,204.5 599.5,204.5C 599.5,205.5 599.5,206.5 599.5,207.5C 597.5,207.5 595.5,207.5 593.5,207.5C 593.5,206.5 593.5,205.5 593.5,204.5C 591.473,204.662 589.473,204.495 587.5,204C 585.793,200.752 583.96,197.585 582,194.5C 581.505,196.473 581.338,198.473 581.5,200.5C 580.167,198.833 578.833,197.167 577.5,195.5C 576.833,194.167 576.167,192.833 575.5,191.5C 577.344,189.721 578.01,187.388 577.5,184.5 Z"/></g>
<g><path style="opacity:1" fill="#f8d0a1" d="M 609.5,207.5 C 611.048,207.821 611.715,208.821 611.5,210.5C 603.833,210.5 596.167,210.5 588.5,210.5C 595.726,210.151 602.726,209.151 609.5,207.5 Z"/></g>
<g><path style="opacity:1" fill="#f3b664" d="M 63.5,191.5 C 62.1667,193.833 60.8333,196.167 59.5,198.5C 58.0167,201.433 56.6834,204.433 55.5,207.5C 53.7868,212.481 52.7868,217.814 52.5,223.5C 52.1667,223.5 51.8333,223.5 51.5,223.5C 52.2756,217.034 51.6089,210.701 49.5,204.5C 50.9311,204.119 51.7645,203.119 52,201.5C 52.4955,199.527 52.6621,197.527 52.5,195.5C 54.4305,195.229 55.7638,194.229 56.5,192.5C 56.5,193.833 56.5,195.167 56.5,196.5C 59.4701,196.254 60.8034,194.588 60.5,191.5C 61.5,191.5 62.5,191.5 63.5,191.5 Z"/></g>
<g><path style="opacity:1" fill="#eca858" d="M 184.5,195.5 C 182.552,198.464 180.552,201.464 178.5,204.5C 179.902,205.842 179.569,206.676 177.5,207C 179.402,207.199 180.902,208.033 182,209.5C 182.495,207.527 182.662,205.527 182.5,203.5C 183.5,203.5 184.5,203.5 185.5,203.5C 184.859,204.482 184.193,205.482 183.5,206.5C 185.481,211.128 187.981,215.461 191,219.5C 191.765,221.066 191.598,222.399 190.5,223.5C 187.917,226.266 185.417,229.266 183,232.5C 182.56,237.031 180.393,240.364 176.5,242.5C 175.167,240.5 175.167,238.5 176.5,236.5C 180.095,231.635 183.428,226.635 186.5,221.5C 184.935,217.928 182.935,214.595 180.5,211.5C 179.06,212.952 177.394,213.952 175.5,214.5C 176.537,212.262 176.703,209.929 176,207.5C 175.667,208.5 175.333,209.5 175,210.5C 167.398,215.349 164.564,222.016 166.5,230.5C 165.057,233.728 163.39,236.728 161.5,239.5C 161.763,235.4 161.43,231.4 160.5,227.5C 166.608,215.395 174.608,204.728 184.5,195.5 Z"/></g>
<g><path style="opacity:1" fill="#4b1306" d="M 107.5,209.5 C 108.927,211.148 109.76,213.148 110,215.5C 110.812,219.689 110.645,223.689 109.5,227.5C 110.157,222.583 108.824,218.417 105.5,215C 105.962,213.278 106.128,211.445 106,209.5C 106.779,212.097 107.279,212.097 107.5,209.5 Z"/></g>
<g><path style="opacity:1" fill="#4b1d0a" d="M 531.5,209.5 C 531.721,212.097 532.221,212.097 533,209.5C 533.409,212.358 532.409,214.691 530,216.5C 529.501,220.152 529.335,223.818 529.5,227.5C 528.355,223.689 528.188,219.689 529,215.5C 529.24,213.148 530.073,211.148 531.5,209.5 Z"/></g>
<g><path style="opacity:1" fill="#6d0806" d="M 560.5,181.5 C 563.016,181.755 565.35,182.589 567.5,184C 570.062,186.733 572.729,189.233 575.5,191.5C 576.167,192.833 576.833,194.167 577.5,195.5C 577.565,195.938 577.399,196.272 577,196.5C 573.776,191.395 569.609,190.062 564.5,192.5C 567.248,194.954 569.915,197.454 572.5,200C 572.043,200.414 571.709,200.914 571.5,201.5C 572.971,205.186 574.305,208.852 575.5,212.5C 575.087,215.232 574.42,217.899 573.5,220.5C 573.673,222.038 574.006,223.538 574.5,225C 573.362,227.137 571.862,228.971 570,230.5C 569.646,228.193 568.646,227.859 567,229.5C 564.091,228.571 562.925,226.571 563.5,223.5C 564.5,223.5 565.5,223.5 566.5,223.5C 566.906,219.312 565.406,215.979 562,213.5C 561.259,216.562 561.425,219.562 562.5,222.5C 561.675,223.386 560.675,223.719 559.5,223.5C 559.5,220.167 559.5,216.833 559.5,213.5C 557.046,213.679 554.879,213.013 553,211.5C 551.437,212.102 551.604,212.935 553.5,214C 552.551,214.617 551.718,214.451 551,213.5C 550.667,214.167 550.333,214.833 550,215.5C 547.974,214.981 545.974,214.647 544,214.5C 539.753,218.399 538.586,223.065 540.5,228.5C 543.342,230.753 546.342,232.753 549.5,234.5C 550.309,236.071 550.643,237.738 550.5,239.5C 548.637,237.295 546.303,235.961 543.5,235.5C 542.249,233.086 540.749,230.753 539,228.5C 538.185,223.648 538.352,218.981 539.5,214.5C 542.675,209.662 547.175,207.329 553,207.5C 555.96,207.443 558.793,207.943 561.5,209C 563.734,211.063 565.734,213.229 567.5,215.5C 567.5,216.167 567.5,216.833 567.5,217.5C 567.335,220.518 567.502,223.518 568,226.5C 568.513,225.473 569.013,224.473 569.5,223.5C 571.023,220.365 571.69,217.032 571.5,213.5C 572.65,214.85 573.317,214.684 573.5,213C 572.346,208.196 570.512,203.696 568,199.5C 563.752,198.742 560.919,196.409 559.5,192.5C 556.615,192.806 553.948,192.473 551.5,191.5C 554.167,191.5 556.833,191.5 559.5,191.5C 559.192,189.076 559.526,186.743 560.5,184.5C 561.613,186.031 563.113,187.031 565,187.5C 565.833,187.333 566.667,187.167 567.5,187C 564.379,186.033 562.046,184.2 560.5,181.5 Z"/></g>
<g><path style="opacity:1" fill="#33060a" d="M 95.5,197.5 C 97.6737,199.081 100.007,200.581 102.5,202C 104.808,204.128 106.474,206.628 107.5,209.5C 107.279,212.097 106.779,212.097 106,209.5C 106.128,211.445 105.962,213.278 105.5,215C 108.824,218.417 110.157,222.583 109.5,227.5C 109.5,227.833 109.5,228.167 109.5,228.5C 108.167,228.5 106.833,228.5 105.5,228.5C 105.5,226.833 105.5,225.167 105.5,223.5C 104.5,223.5 103.5,223.5 102.5,223.5C 102.371,219.122 102.371,214.955 102.5,211C 101.55,208.09 99.5497,206.923 96.5,207.5C 87.4918,201.361 79.3251,202.361 72,210.5C 71.6012,210.272 71.4346,209.938 71.5,209.5C 76.481,199.676 84.481,195.676 95.5,197.5 Z"/></g>
<g><path style="opacity:1" fill="#fba039" d="M 210.5,213.5 C 209.833,213.5 209.5,213.833 209.5,214.5C 205.442,215.558 204.775,214.391 207.5,211C 209.489,210.481 210.489,211.314 210.5,213.5 Z"/></g>
<g><path style="opacity:1" fill="#320908" d="M 567.5,212.5 C 565.536,207.541 561.869,204.874 556.5,204.5C 553.041,203.135 549.708,203.469 546.5,205.5C 544.304,206.838 542.304,208.505 540.5,210.5C 539.778,210.082 539.278,209.416 539,208.5C 538.138,210.087 537.471,211.754 537,213.5C 536.667,213.167 536.333,212.833 536,212.5C 535.626,213.416 535.126,214.25 534.5,215C 535.394,217.068 536.06,219.235 536.5,221.5C 535.533,223.762 534.866,226.095 534.5,228.5C 532.833,228.5 531.167,228.5 529.5,228.5C 529.5,228.167 529.5,227.833 529.5,227.5C 529.335,223.818 529.501,220.152 530,216.5C 532.409,214.691 533.409,212.358 533,209.5C 532.221,212.097 531.721,212.097 531.5,209.5C 536.118,199.858 543.784,196.024 554.5,198C 561.115,200.283 565.782,204.617 568.5,211C 568.43,211.765 568.097,212.265 567.5,212.5 Z"/></g>
<g><path style="opacity:1" fill="#410204" d="M 335.5,176.5 C 335.5,176.167 335.5,175.833 335.5,175.5C 339.733,175.539 343.733,176.205 347.5,177.5C 354.042,180.251 360.375,183.584 366.5,187.5C 367.386,186.675 367.719,185.675 367.5,184.5C 373.962,186.491 380.295,188.991 386.5,192C 387.451,192.718 387.617,193.551 387,194.5C 383.643,195.742 383.81,196.576 387.5,197C 386.304,197.654 386.304,198.154 387.5,198.5C 390.912,198.568 394.245,198.235 397.5,197.5C 398.492,197.328 399.158,197.662 399.5,198.5C 400.174,200.024 401.174,201.358 402.5,202.5C 402.291,203.086 401.957,203.586 401.5,204C 404.173,205.001 406.507,206.501 408.5,208.5C 409.705,209.995 409.705,211.328 408.5,212.5C 405.884,211.52 403.551,210.02 401.5,208C 398.518,207.502 395.518,207.335 392.5,207.5C 395.278,217.272 396.945,227.272 397.5,237.5C 396.217,244.383 396.217,251.216 397.5,258C 395.852,262.317 395.186,266.817 395.5,271.5C 395.167,271.5 394.833,271.5 394.5,271.5C 394.028,274.902 392.528,277.902 390,280.5C 389.5,279.5 389,278.5 388.5,277.5C 390.655,272.029 392.655,266.529 394.5,261C 393.891,259.052 393.224,257.218 392.5,255.5C 392.775,247.447 392.275,239.447 391,231.5C 383.229,202.229 364.729,183.895 335.5,176.5 Z"/></g>
<g><path style="opacity:1" fill="#d8a062" d="M 98.5,196.5 C 103.399,198.562 107.232,201.896 110,206.5C 114.613,216.818 114.613,227.152 110,237.5C 107.643,242.232 104.81,246.565 101.5,250.5C 99.2787,249.362 97.2787,248.028 95.5,246.5C 96.8474,247.028 98.1807,247.195 99.5,247C 104.799,241.901 108.133,235.735 109.5,228.5C 109.5,228.167 109.5,227.833 109.5,227.5C 110.645,223.689 110.812,219.689 110,215.5C 109.76,213.148 108.927,211.148 107.5,209.5C 106.474,206.628 104.808,204.128 102.5,202C 100.007,200.581 97.6737,199.081 95.5,197.5C 96.791,197.737 97.791,197.404 98.5,196.5 Z"/></g>
<g><path style="opacity:1" fill="#de883f" d="M 297.5,182.5 C 306.109,182.262 314.776,182.595 323.5,183.5C 330.372,185.801 337.372,187.635 344.5,189C 350.086,191.623 355.42,194.456 360.5,197.5C 362.653,199.07 364.819,200.737 367,202.5C 367.494,204.134 367.66,205.801 367.5,207.5C 368.5,207.5 369.5,207.5 370.5,207.5C 369.617,211.945 370.951,215.445 374.5,218C 375.148,219.44 375.481,220.94 375.5,222.5C 373.406,220.441 371.572,218.107 370,215.5C 369.617,216.056 369.117,216.389 368.5,216.5C 365.542,206.209 358.876,199.542 348.5,196.5C 347.872,194.742 346.872,193.242 345.5,192C 342.183,191.502 338.85,191.335 335.5,191.5C 335.5,190.5 335.5,189.5 335.5,188.5C 326.926,186.951 318.26,185.951 309.5,185.5C 306.275,185.899 303.108,186.565 300,187.5C 295.95,186.044 291.783,185.377 287.5,185.5C 287.5,186.5 287.5,187.5 287.5,188.5C 285.265,188.205 283.265,188.539 281.5,189.5C 280.711,189.783 280.044,190.283 279.5,191C 271.173,189.498 264.84,192.165 260.5,199C 257.608,199.249 255.275,200.416 253.5,202.5C 249.443,203.63 245.443,204.963 241.5,206.5C 241.719,207.675 241.386,208.675 240.5,209.5C 235.11,213.649 229.444,217.316 223.5,220.5C 223.5,219.5 223.5,218.5 223.5,217.5C 224.873,217.657 226.207,217.49 227.5,217C 232.752,212.887 237.752,208.553 242.5,204C 243.448,203.517 244.448,203.351 245.5,203.5C 245.5,202.5 245.5,201.5 245.5,200.5C 256.97,193.78 268.97,187.947 281.5,183C 286.848,183.611 292.181,183.445 297.5,182.5 Z"/></g>
<g><path style="opacity:1" fill="#f9ac54" d="M 327.5,191.5 C 307.419,190.039 287.752,191.872 268.5,197C 266.395,198.193 264.728,199.86 263.5,202C 257.823,203.014 252.489,204.847 247.5,207.5C 249.131,205.357 251.131,203.69 253.5,202.5C 255.275,200.416 257.608,199.249 260.5,199C 264.84,192.165 271.173,189.498 279.5,191C 280.044,190.283 280.711,189.783 281.5,189.5C 290.506,189.375 299.506,189.041 308.5,188.5C 313.516,188.622 318.516,188.955 323.5,189.5C 325.333,189.585 326.666,190.252 327.5,191.5 Z"/></g>
<g><path style="opacity:1" fill="#f6a34b" d="M 175.5,214.5 C 173.347,220.317 170.347,225.651 166.5,230.5C 164.564,222.016 167.398,215.349 175,210.5C 175.333,209.5 175.667,208.5 176,207.5C 176.703,209.929 176.537,212.262 175.5,214.5 Z"/></g>
<g><path style="opacity:1" fill="#edaa5a" d="M 457.5,207.5 C 458.5,207.5 459.5,207.5 460.5,207.5C 460.022,210.278 461.022,212.278 463.5,213.5C 462.5,214.333 461.5,215.167 460.5,216C 465.226,216.295 467.56,218.795 467.5,223.5C 466.802,221.333 465.469,219.5 463.5,218C 459.598,217.262 455.932,217.928 452.5,220C 450.5,220.667 448.5,220.667 446.5,220C 440.989,213.657 435.323,207.491 429.5,201.5C 429.833,200.5 430.5,199.833 431.5,199.5C 437.647,203.813 442.98,208.98 447.5,215C 451.261,215.738 454.928,215.405 458.5,214C 458.957,213.586 459.291,213.086 459.5,212.5C 458.544,210.925 457.877,209.258 457.5,207.5 Z"/></g>
<g><path style="opacity:1" fill="#f9dcb1" d="M 587.5,210.5 C 587.833,210.5 588.167,210.5 588.5,210.5C 588.5,212.833 588.5,215.167 588.5,217.5C 594.833,217.5 601.167,217.5 607.5,217.5C 607.5,217.833 607.5,218.167 607.5,218.5C 600.833,218.5 594.167,218.5 587.5,218.5C 587.5,216.167 587.5,213.833 587.5,211.5C 587.5,211.167 587.5,210.833 587.5,210.5 Z"/></g>
<g><path style="opacity:1" fill="#e0a15a" d="M 587.5,211.5 C 587.5,213.833 587.5,216.167 587.5,218.5C 594.167,218.5 600.833,218.5 607.5,218.5C 607.5,218.833 607.5,219.167 607.5,219.5C 600.788,219.504 594.121,219.671 587.5,220C 586.183,217.063 586.183,214.23 587.5,211.5 Z"/></g>
<g><path style="opacity:1" fill="#f8fbf9" d="M 607.5,219.5 C 607.5,219.167 607.5,218.833 607.5,218.5C 607.5,218.167 607.5,217.833 607.5,217.5C 602.36,216.512 597.026,216.179 591.5,216.5C 591.5,214.833 591.5,213.167 591.5,211.5C 596.844,211.334 602.177,211.501 607.5,212C 608.535,215.611 610.202,216.111 612.5,213.5C 612.833,214.667 613.167,215.833 613.5,217C 612.806,219.553 611.973,222.053 611,224.5C 610.78,222.027 609.614,220.36 607.5,219.5 Z"/></g>
<g><path style="opacity:1" fill="#faa33d" d="M 205.5,219.5 C 204.833,219.833 204.167,220.167 203.5,220.5C 202.5,220.5 201.5,220.5 200.5,220.5C 200.394,223.108 199.228,225.108 197,226.5C 195.961,225.756 195.461,224.756 195.5,223.5C 195.833,223.5 196.167,223.5 196.5,223.5C 197.461,221.735 197.795,219.735 197.5,217.5C 200.157,217.838 202.49,217.171 204.5,215.5C 205.429,216.689 205.762,218.022 205.5,219.5 Z"/></g>
<g><path style="opacity:1" fill="#740504" d="M 59.5,198.5 C 59.3354,201.518 59.502,204.518 60,207.5C 61.7165,206.448 62.7165,207.114 63,209.5C 63.1378,215.581 63.8044,221.581 65,227.5C 65.6667,226.167 66.3333,224.833 67,223.5C 68,224.833 69,226.167 70,227.5C 70.3988,227.272 70.5654,226.938 70.5,226.5C 71.4731,224.052 71.8064,221.385 71.5,218.5C 71.5,217.5 71.5,216.5 71.5,215.5C 80.235,203.849 89.4017,203.515 99,214.5C 99.3988,214.272 99.5654,213.938 99.5,213.5C 100.651,218.65 100.817,223.984 100,229.5C 99.3005,231.032 98.1338,232.032 96.5,232.5C 95.6143,233.325 95.281,234.325 95.5,235.5C 92.8858,235.277 91.2191,236.444 90.5,239C 88.256,239.05 86.5893,239.883 85.5,241.5C 84.5,241.5 83.5,241.5 82.5,241.5C 79.7131,240.523 76.7131,240.19 73.5,240.5C 68.9959,239.397 64.6625,237.731 60.5,235.5C 60.8039,234.85 61.1373,234.183 61.5,233.5C 55.9571,225.774 53.9571,217.108 55.5,207.5C 56.6834,204.433 58.0167,201.433 59.5,198.5 Z"/></g>
<g><path style="opacity:1" fill="#da8e62" d="M 68.5,209.5 C 68.3354,212.518 68.502,215.518 69,218.5C 69.7697,219.598 70.603,219.598 71.5,218.5C 71.8064,221.385 71.4731,224.052 70.5,226.5C 70.0652,223.843 69.0652,221.509 67.5,219.5C 67.1872,215.958 67.5206,212.625 68.5,209.5 Z"/></g>
<g><path style="opacity:1" fill="#3e090b" d="M 399.5,198.5 C 414.476,207.809 426.809,219.809 436.5,234.5C 435.883,234.611 435.383,234.944 435,235.5C 434,233.833 433,232.167 432,230.5C 430.381,231.083 428.548,231.083 426.5,230.5C 424.69,228.377 423.357,226.043 422.5,223.5C 421.127,223.657 419.793,223.49 418.5,223C 415.775,218.829 412.441,215.329 408.5,212.5C 409.705,211.328 409.705,209.995 408.5,208.5C 406.507,206.501 404.173,205.001 401.5,204C 401.957,203.586 402.291,203.086 402.5,202.5C 401.174,201.358 400.174,200.024 399.5,198.5 Z"/></g>
<g><path style="opacity:1" fill="#760304" d="M 577.5,195.5 C 578.833,197.167 580.167,198.833 581.5,200.5C 583.159,207.38 583.825,214.38 583.5,221.5C 581.895,226.405 579.895,231.072 577.5,235.5C 573.421,238.048 569.087,239.715 564.5,240.5C 561.833,240.5 559.167,240.5 556.5,240.5C 554.735,239.539 552.735,239.205 550.5,239.5C 550.643,237.738 550.309,236.071 549.5,234.5C 546.342,232.753 543.342,230.753 540.5,228.5C 538.586,223.065 539.753,218.399 544,214.5C 545.974,214.647 547.974,214.981 550,215.5C 550.333,214.833 550.667,214.167 551,213.5C 551.718,214.451 552.551,214.617 553.5,214C 551.604,212.935 551.437,212.102 553,211.5C 554.879,213.013 557.046,213.679 559.5,213.5C 559.5,216.833 559.5,220.167 559.5,223.5C 560.675,223.719 561.675,223.386 562.5,222.5C 561.425,219.562 561.259,216.562 562,213.5C 565.406,215.979 566.906,219.312 566.5,223.5C 565.5,223.5 564.5,223.5 563.5,223.5C 562.925,226.571 564.091,228.571 567,229.5C 568.646,227.859 569.646,228.193 570,230.5C 571.862,228.971 573.362,227.137 574.5,225C 574.006,223.538 573.673,222.038 573.5,220.5C 574.42,217.899 575.087,215.232 575.5,212.5C 574.305,208.852 572.971,205.186 571.5,201.5C 571.709,200.914 572.043,200.414 572.5,200C 569.915,197.454 567.248,194.954 564.5,192.5C 569.609,190.062 573.776,191.395 577,196.5C 577.399,196.272 577.565,195.938 577.5,195.5 Z"/></g>
<g><path style="opacity:1" fill="#fdf7e5" d="M 634.5,260.5 C 633.833,258.833 633.167,257.167 632.5,255.5C 631.216,244.393 628.55,233.726 624.5,223.5C 623.566,222.432 623.232,221.099 623.5,219.5C 624.117,219.389 624.617,219.056 625,218.5C 626.529,219.729 627.696,221.229 628.5,223C 627.251,225.21 627.418,227.376 629,229.5C 630.319,227.75 630.819,225.75 630.5,223.5C 631.5,223.5 632.5,223.5 633.5,223.5C 632.579,227.462 631.579,231.462 630.5,235.5C 632.997,243.635 634.33,251.968 634.5,260.5 Z"/></g>
<g><path style="opacity:1" fill="#e5aa6e" d="M 463.5,224.5 C 461.81,224.856 460.81,225.856 460.5,227.5C 459.167,227.5 457.833,227.5 456.5,227.5C 457.234,226.292 457.567,224.959 457.5,223.5C 458.097,222.861 458.93,222.528 460,222.5C 461.699,222.387 462.866,223.053 463.5,224.5 Z"/></g>
<g><path style="opacity:1" fill="#ce7d61" d="M 567.5,217.5 C 568.167,219.5 568.833,221.5 569.5,223.5C 569.013,224.473 568.513,225.473 568,226.5C 567.502,223.518 567.335,220.518 567.5,217.5 Z"/></g>
<g><path style="opacity:1" fill="#e9a45f" d="M 607.5,220.5 C 608.404,221.209 608.737,222.209 608.5,223.5C 604.818,223.335 601.152,223.501 597.5,224C 598.737,224.232 599.737,224.732 600.5,225.5C 594.974,225.179 589.64,225.512 584.5,226.5C 581.947,228.962 581.947,231.295 584.5,233.5C 584.833,235.5 585.167,237.5 585.5,239.5C 584.207,238.158 583.374,236.491 583,234.5C 582,233.833 581,233.167 580,232.5C 579.503,234.81 579.337,237.143 579.5,239.5C 578.833,238.167 578.167,236.833 577.5,235.5C 579.895,231.072 581.895,226.405 583.5,221.5C 584.713,222.575 586.213,223.241 588,223.5C 594.906,223.312 601.406,222.312 607.5,220.5 Z"/></g>
<g><path style="opacity:1" fill="#fcf2dc" d="M 588.5,210.5 C 596.167,210.5 603.833,210.5 611.5,210.5C 612.458,210.953 613.292,211.619 614,212.5C 617.857,224.25 621.024,236.25 623.5,248.5C 620.661,245.738 618.661,242.405 617.5,238.5C 618.562,235.897 618.728,233.23 618,230.5C 616.054,227.861 615.054,224.861 615,221.5C 612.994,224.536 612.16,227.869 612.5,231.5C 611.715,228.596 610.381,225.93 608.5,223.5C 608.737,222.209 608.404,221.209 607.5,220.5C 607.5,220.167 607.5,219.833 607.5,219.5C 609.614,220.36 610.78,222.027 611,224.5C 611.973,222.053 612.806,219.553 613.5,217C 613.167,215.833 612.833,214.667 612.5,213.5C 610.202,216.111 608.535,215.611 607.5,212C 602.177,211.501 596.844,211.334 591.5,211.5C 591.5,213.167 591.5,214.833 591.5,216.5C 597.026,216.179 602.36,216.512 607.5,217.5C 601.167,217.5 594.833,217.5 588.5,217.5C 588.5,215.167 588.5,212.833 588.5,210.5 Z"/></g>
<g><path style="opacity:1" fill="#f4be87" d="M 584.5,226.5 C 589.64,225.512 594.974,225.179 600.5,225.5C 601.822,225.33 602.989,225.663 604,226.5C 605.331,230.826 606.498,235.16 607.5,239.5C 605.6,236.482 604.267,233.149 603.5,229.5C 603.586,228.504 603.252,227.671 602.5,227C 596.509,226.501 590.509,226.334 584.5,226.5 Z"/></g>
<g><path style="opacity:1" fill="#b77040" d="M 215.5,218.5 C 213.5,222.5 211.5,226.5 209.5,230.5C 208.448,230.351 207.448,230.517 206.5,231C 205.042,233.46 203.209,235.627 201,237.5C 199.549,242.291 197.216,246.624 194,250.5C 193.506,252.134 193.34,253.801 193.5,255.5C 192.167,255.5 190.833,255.5 189.5,255.5C 195.806,241.524 204.472,229.191 215.5,218.5 Z"/></g>
<g><path style="opacity:1" fill="#3c0405" d="M 96.5,207.5 C 99.5497,206.923 101.55,208.09 102.5,211C 102.371,214.955 102.371,219.122 102.5,223.5C 103.5,223.5 104.5,223.5 105.5,223.5C 105.5,225.167 105.5,226.833 105.5,228.5C 106.833,228.5 108.167,228.5 109.5,228.5C 108.133,235.735 104.799,241.901 99.5,247C 98.1807,247.195 96.8474,247.028 95.5,246.5C 92.4846,244.326 89.1513,242.659 85.5,241.5C 86.5893,239.883 88.256,239.05 90.5,239C 91.2191,236.444 92.8858,235.277 95.5,235.5C 95.281,234.325 95.6143,233.325 96.5,232.5C 98.1338,232.032 99.3005,231.032 100,229.5C 100.817,223.984 100.651,218.65 99.5,213.5C 98.4706,211.483 97.4706,209.483 96.5,207.5 Z"/></g>
<g><path style="opacity:1" fill="#700607" d="M 127.5,194.5 C 129.371,194.859 130.871,195.859 132,197.5C 132.535,200.969 133.702,203.969 135.5,206.5C 133.897,207.596 132.397,208.93 131,210.5C 130.106,214.863 129.106,219.196 128,223.5C 124.607,228.72 121.44,234.053 118.5,239.5C 115.591,244.598 114.925,249.931 116.5,255.5C 116.767,258.875 117.767,262.042 119.5,265C 117.363,266.973 115.363,269.139 113.5,271.5C 112.542,271.953 111.708,272.619 111,273.5C 110.411,265.223 107.578,257.89 102.5,251.5C 104.59,251.55 105.923,250.55 106.5,248.5C 108.045,247.548 109.712,247.215 111.5,247.5C 111.566,242.237 112.732,237.237 115,232.5C 115.519,224.154 115.352,215.821 114.5,207.5C 115.34,209.792 116.34,212.125 117.5,214.5C 118.451,215.326 119.451,215.492 120.5,215C 121.147,213.391 121.98,211.891 123,210.5C 123.822,212.788 124.489,215.122 125,217.5C 125.667,218.833 126.333,218.833 127,217.5C 127.212,214.242 127.712,211.076 128.5,208C 128.167,207.667 127.833,207.333 127.5,207C 129.215,206.223 130.215,204.89 130.5,203C 129.237,200.245 128.237,197.412 127.5,194.5 Z"/></g>
<g><path style="opacity:1" fill="#f1a653" d="M 335.5,150.5 C 332.402,149.179 328.902,148.512 325,148.5C 321.098,148.512 317.598,149.179 314.5,150.5C 312.856,150.286 311.356,150.62 310,151.5C 308.846,155.104 308.013,158.771 307.5,162.5C 316.833,162.5 326.167,162.5 335.5,162.5C 336.568,163.434 337.901,163.768 339.5,163.5C 342.684,164.323 346.017,164.99 349.5,165.5C 354.612,167.549 359.946,168.715 365.5,169C 368.361,169.872 371.028,171.038 373.5,172.5C 375.596,173.898 377.929,174.898 380.5,175.5C 382.355,175.66 383.688,174.993 384.5,173.5C 387.244,169.751 390.578,166.751 394.5,164.5C 403.152,168.491 411.486,172.991 419.5,178C 420.833,179 420.833,180 419.5,181C 418.167,181.667 416.833,181.667 415.5,181C 409.214,177.073 402.881,173.24 396.5,169.5C 392.43,170.738 389.43,173.238 387.5,177C 397.575,183.216 407.575,189.716 417.5,196.5C 422.38,192.883 427.713,190.716 433.5,190C 440.964,195.965 447.631,202.798 453.5,210.5C 451.926,211.631 450.259,211.798 448.5,211C 443.646,204.48 437.813,198.98 431,194.5C 429.073,195.861 426.906,196.694 424.5,197C 422.789,198.133 422.289,199.633 423,201.5C 431.729,208.928 439.562,217.262 446.5,226.5C 450.045,224.932 453.712,223.932 457.5,223.5C 457.567,224.959 457.234,226.292 456.5,227.5C 453.756,227.928 451.423,229.095 449.5,231C 455.777,240.723 461.11,250.889 465.5,261.5C 471.138,262.33 476.804,262.83 482.5,263C 484.854,268.97 486.521,275.137 487.5,281.5C 487.963,284.482 488.296,287.482 488.5,290.5C 487.5,290.5 486.5,290.5 485.5,290.5C 485.01,282.211 483.01,274.377 479.5,267C 475.459,266.173 471.459,266.34 467.5,267.5C 470.357,273.877 472.023,280.543 472.5,287.5C 472.799,289.604 472.466,291.604 471.5,293.5C 470.914,293.291 470.414,292.957 470,292.5C 470.129,286.541 468.629,281.207 465.5,276.5C 460.721,262.604 454.554,249.271 447,236.5C 441.855,230.694 437.522,224.361 434,217.5C 430.412,215.537 427.245,213.204 424.5,210.5C 423.298,208.608 421.965,206.774 420.5,205C 414.242,201.083 408.242,196.75 402.5,192C 401.552,191.517 400.552,191.351 399.5,191.5C 389.666,184.583 378.999,179.25 367.5,175.5C 356.831,172.676 346.164,170.343 335.5,168.5C 310.335,166.048 286.002,169.381 262.5,178.5C 260.167,178.5 257.833,178.5 255.5,178.5C 255.5,177.5 255.5,176.5 255.5,175.5C 258.088,175.457 260.254,174.457 262,172.5C 262.499,167.511 262.666,162.511 262.5,157.5C 263.975,155.59 265.975,154.424 268.5,154C 276.066,151.92 283.732,150.42 291.5,149.5C 291.5,150.833 291.5,152.167 291.5,153.5C 283.16,153.779 275.16,155.612 267.5,159C 266.62,160.356 266.286,161.856 266.5,163.5C 266.5,166.167 266.5,168.833 266.5,171.5C 268.781,171.923 270.448,171.256 271.5,169.5C 281.355,166.801 291.355,164.634 301.5,163C 303.245,157.929 304.912,152.762 306.5,147.5C 316.855,147.168 327.188,147.501 337.5,148.5C 337.145,149.522 336.478,150.189 335.5,150.5 Z"/></g>
<g><path style="opacity:1" fill="#ecc0a5" d="M 373.5,172.5 C 376.09,172.396 378.423,173.063 380.5,174.5C 381.849,174.154 383.183,173.821 384.5,173.5C 383.688,174.993 382.355,175.66 380.5,175.5C 377.929,174.898 375.596,173.898 373.5,172.5 Z"/></g>
<g><path style="opacity:1" fill="#f7d7ae" d="M 266.5,163.5 C 267.302,164.952 267.802,166.618 268,168.5C 269.011,169.337 270.178,169.67 271.5,169.5C 270.448,171.256 268.781,171.923 266.5,171.5C 266.5,168.833 266.5,166.167 266.5,163.5 Z"/></g>
<g><path style="opacity:1" fill="#f1bf86" d="M 295.5,155.5 C 291.32,157.72 286.654,159.053 281.5,159.5C 285.917,157.56 290.583,156.227 295.5,155.5 Z"/></g>
<g><path style="opacity:1" fill="#fc9c3c" d="M 335.5,150.5 C 328.5,150.5 321.5,150.5 314.5,150.5C 317.598,149.179 321.098,148.512 325,148.5C 328.902,148.512 332.402,149.179 335.5,150.5 Z"/></g>
<g><path style="opacity:1" fill="#f7a24d" d="M 608.5,223.5 C 608.863,226.563 609.53,229.563 610.5,232.5C 609.898,235.071 608.898,237.404 607.5,239.5C 606.498,235.16 605.331,230.826 604,226.5C 602.989,225.663 601.822,225.33 600.5,225.5C 599.737,224.732 598.737,224.232 597.5,224C 601.152,223.501 604.818,223.335 608.5,223.5 Z"/></g>
<g><path style="opacity:1" fill="#f8f5eb" d="M 223.5,209.5 C 220.754,212.571 218.087,215.571 215.5,218.5C 204.472,229.191 195.806,241.524 189.5,255.5C 180.998,270.345 176.331,286.345 175.5,303.5C 174.36,314.675 174.36,326.008 175.5,337.5C 174.876,335.166 174.043,332.833 173,330.5C 172.826,319.13 172.159,307.797 171,296.5C 170.768,297.737 170.268,298.737 169.5,299.5C 170.376,295.538 171.042,291.538 171.5,287.5C 171.5,285.5 171.5,283.5 171.5,281.5C 174.551,271.584 178.385,261.917 183,252.5C 186.376,247.042 189.376,241.376 192,235.5C 196.336,230.8 200.169,225.8 203.5,220.5C 204.167,220.167 204.833,219.833 205.5,219.5C 207.063,218.055 208.396,216.389 209.5,214.5C 209.5,213.833 209.833,213.5 210.5,213.5C 212.808,211.529 215.142,209.529 217.5,207.5C 218.794,206.71 219.961,205.71 221,204.5C 221.414,204.957 221.914,205.291 222.5,205.5C 223.532,203.96 224.865,203.46 226.5,204C 225.473,205.866 224.473,207.7 223.5,209.5 Z"/></g>
<g><path style="opacity:1" fill="#fef3d2" d="M 584.5,226.5 C 590.509,226.334 596.509,226.501 602.5,227C 603.252,227.671 603.586,228.504 603.5,229.5C 601.275,228.076 598.775,227.409 596,227.5C 592.183,228.069 588.349,228.403 584.5,228.5C 584.5,230.167 584.5,231.833 584.5,233.5C 581.947,231.295 581.947,228.962 584.5,226.5 Z"/></g>
<g><path style="opacity:1" fill="#f0a757" d="M 194.5,223.5 C 194.833,223.5 195.167,223.5 195.5,223.5C 195.461,224.756 195.961,225.756 197,226.5C 199.228,225.108 200.394,223.108 200.5,220.5C 201.5,220.5 202.5,220.5 203.5,220.5C 200.169,225.8 196.336,230.8 192,235.5C 189.376,241.376 186.376,247.042 183,252.5C 178.385,261.917 174.551,271.584 171.5,281.5C 171.663,279.143 171.497,276.81 171,274.5C 169.384,276.713 168.217,279.047 167.5,281.5C 168.398,275.059 170.398,269.059 173.5,263.5C 174.117,263.389 174.617,263.056 175,262.5C 176.79,256.011 174.623,251.678 168.5,249.5C 165.64,246.711 164.973,243.378 166.5,239.5C 169.69,232.434 173.856,226.101 179,220.5C 180.28,220.613 181.113,221.28 181.5,222.5C 175.946,229.144 172.113,236.477 170,244.5C 172.475,247.495 175.308,249.828 178.5,251.5C 178.687,249.436 179.187,247.436 180,245.5C 181.659,244.183 182.826,242.517 183.5,240.5C 184.325,239.614 185.325,239.281 186.5,239.5C 186.34,237.801 186.506,236.134 187,234.5C 189.51,230.805 192.01,227.138 194.5,223.5 Z"/></g>
<g><path style="opacity:1" fill="#f3a350" d="M 463.5,224.5 C 468.726,232.048 473.059,240.048 476.5,248.5C 474.856,248.714 473.356,248.38 472,247.5C 470.016,242.353 467.683,237.353 465,232.5C 463.951,230.382 462.451,228.716 460.5,227.5C 460.81,225.856 461.81,224.856 463.5,224.5 Z"/></g>
<g><path style="opacity:1" fill="#380405" d="M 540.5,210.5 C 540.167,211.833 539.833,213.167 539.5,214.5C 538.352,218.981 538.185,223.648 539,228.5C 540.749,230.753 542.249,233.086 543.5,235.5C 546.303,235.961 548.637,237.295 550.5,239.5C 552.735,239.205 554.735,239.539 556.5,240.5C 552.581,241.387 548.915,242.721 545.5,244.5C 544.508,244.328 543.842,244.662 543.5,245.5C 542.395,246.6 541.062,247.267 539.5,247.5C 534.335,242.172 531.002,235.839 529.5,228.5C 531.167,228.5 532.833,228.5 534.5,228.5C 534.866,226.095 535.533,223.762 536.5,221.5C 536.06,219.235 535.394,217.068 534.5,215C 535.126,214.25 535.626,213.416 536,212.5C 536.333,212.833 536.667,213.167 537,213.5C 537.471,211.754 538.138,210.087 539,208.5C 539.278,209.416 539.778,210.082 540.5,210.5 Z"/></g>
<g><path style="opacity:1" fill="#e69e61" d="M 479.5,229.5 C 482.668,233.691 485.002,238.358 486.5,243.5C 484.983,243.489 483.816,242.823 483,241.5C 481.065,237.729 479.898,233.729 479.5,229.5 Z"/></g>
<g><path style="opacity:1" fill="#efad64" d="M 624.5,223.5 C 628.55,233.726 631.216,244.393 632.5,255.5C 632.167,255.5 631.833,255.5 631.5,255.5C 631.038,249.305 629.872,243.305 628,237.5C 627.692,236.692 627.192,236.025 626.5,235.5C 624.974,240.627 623.974,240.627 623.5,235.5C 624.164,231.524 624.497,227.524 624.5,223.5 Z"/></g>
<g><path style="opacity:1" fill="#edaa65" d="M 30.5,223.5 C 30.5895,226.725 29.9228,229.725 28.5,232.5C 30.0881,235.932 30.7547,239.599 30.5,243.5C 29.1815,248.432 28.6815,253.432 29,258.5C 30.8119,260.3 32.6452,261.967 34.5,263.5C 31.626,263.377 29.126,262.377 27,260.5C 27.6227,253.505 27.456,246.505 26.5,239.5C 24.3518,246.731 23.1851,254.064 23,261.5C 25.2206,264.678 28.054,267.012 31.5,268.5C 26.0512,268.201 22.0512,265.701 19.5,261C 21.9958,247.919 25.6625,235.419 30.5,223.5 Z"/></g>
<g><path style="opacity:1" fill="#770001" d="M 431.5,255.5 C 431.34,257.199 431.506,258.866 432,260.5C 434.148,261.977 435.482,263.977 436,266.5C 438.009,275.73 440.175,284.896 442.5,294C 441.699,299.795 441.699,305.628 442.5,311.5C 440.719,324.885 438.719,338.218 436.5,351.5C 434.833,351.5 433.167,351.5 431.5,351.5C 430.167,351.5 428.833,351.5 427.5,351.5C 428.041,354.652 427.041,357.152 424.5,359C 425.654,359.914 425.487,360.747 424,361.5C 423.667,361.167 423.333,360.833 423,360.5C 420.923,362.076 419.423,364.076 418.5,366.5C 419.5,367.167 420.5,367.833 421.5,368.5C 420.573,373.556 418.74,378.223 416,382.5C 415.506,384.134 415.34,385.801 415.5,387.5C 411.612,387.345 408.112,388.345 405,390.5C 404.879,392.727 404.046,394.56 402.5,396C 402.833,396.333 403.167,396.667 403.5,397C 402.5,397.333 401.5,397.667 400.5,398C 400.833,398.333 401.167,398.667 401.5,399C 400.004,401.201 399.004,403.701 398.5,406.5C 394.833,408.167 392.167,410.833 390.5,414.5C 386.833,415.167 383.167,415.833 379.5,416.5C 376.26,419.955 372.26,422.122 367.5,423C 362.192,423.83 356.859,424.33 351.5,424.5C 351.5,426.833 351.5,429.167 351.5,431.5C 346.435,431.219 341.435,431.552 336.5,432.5C 333.557,431.756 330.557,431.256 327.5,431C 330.063,429.921 332.729,429.421 335.5,429.5C 335.5,428.167 335.5,426.833 335.5,425.5C 342.5,425.833 345.833,422.5 345.5,415.5C 344.325,415.719 343.325,415.386 342.5,414.5C 345.277,413.392 346.944,411.392 347.5,408.5C 347.939,402.197 348.106,395.863 348,389.5C 348.653,387.436 349.82,385.769 351.5,384.5C 349.955,383.548 348.288,383.215 346.5,383.5C 345.745,376.744 342.078,373.078 335.5,372.5C 332.992,370.763 329.992,369.93 326.5,370C 327.938,369.781 329.271,369.281 330.5,368.5C 328.667,368.167 326.833,367.833 325,367.5C 318.333,369.566 311.499,370.733 304.5,371C 303.978,371.561 303.645,372.228 303.5,373C 305.346,374.091 306.013,375.424 305.5,377C 301.331,376.672 298.664,378.505 297.5,382.5C 296.675,383.386 295.675,383.719 294.5,383.5C 293.35,388.927 292.35,394.26 291.5,399.5C 290.405,402.717 290.571,406.05 292,409.5C 292.643,411.93 294.143,413.597 296.5,414.5C 292.817,415.994 289.984,414.994 288,411.5C 287.503,414.146 287.336,416.813 287.5,419.5C 286.178,419.67 285.011,419.337 284,418.5C 281.968,414.724 280.135,410.89 278.5,407C 276.187,406.338 273.854,405.838 271.5,405.5C 271.5,403.5 271.5,401.5 271.5,399.5C 276.833,399.5 282.167,399.5 287.5,399.5C 287.5,398.5 287.5,397.5 287.5,396.5C 271.786,400.002 265.62,394.002 269,378.5C 269.815,376.377 270.815,374.377 272,372.5C 272.667,373.167 273.333,373.833 274,374.5C 275.202,372.323 275.702,369.989 275.5,367.5C 274.448,367.649 273.448,367.483 272.5,367C 277.491,362.84 280.824,357.673 282.5,351.5C 283.5,351.5 284.5,351.5 285.5,351.5C 283.333,357.172 280.5,362.506 277,367.5C 276.877,373.231 276.71,378.898 276.5,384.5C 279.441,388.657 282.941,389.324 287,386.5C 287.182,383.774 287.682,381.107 288.5,378.5C 291.713,373.805 295.046,369.305 298.5,365C 303.017,364.737 307.351,363.737 311.5,362C 317.5,361.333 323.5,361.333 329.5,362C 330.52,363.556 331.853,364.722 333.5,365.5C 335.155,364.772 336.821,364.605 338.5,365C 341.532,368.423 344.532,371.923 347.5,375.5C 348.429,376.689 348.762,378.022 348.5,379.5C 358.338,380.576 367.005,378.076 374.5,372C 376.473,371.505 378.473,371.338 380.5,371.5C 380.714,369.856 380.38,368.356 379.5,367C 382.632,361.904 386.132,357.07 390,352.5C 395.695,349.624 398.862,344.957 399.5,338.5C 399.5,337.5 399.5,336.5 399.5,335.5C 400.833,335.5 402.167,335.5 403.5,335.5C 404.968,329.786 407.635,324.619 411.5,320C 410.692,319.692 410.025,319.192 409.5,318.5C 412.695,308.937 414.695,299.104 415.5,289C 415.1,277.867 415.1,266.701 415.5,255.5C 413.833,255.5 412.167,255.5 410.5,255.5C 410.768,249.618 410.434,243.785 409.5,238C 411.331,234.921 412.331,235.421 412.5,239.5C 413.5,239.5 414.5,239.5 415.5,239.5C 415.335,242.518 415.502,245.518 416,248.5C 418.333,244.5 420.667,244.5 423,248.5C 424.039,250.746 425.206,252.913 426.5,255C 428.134,255.494 429.801,255.66 431.5,255.5 Z"/></g>
<g><path style="opacity:1" fill="#c86e2c" d="M 343.5,184.5 C 345.857,184.337 348.19,184.503 350.5,185C 353.186,186.368 355.853,187.701 358.5,189C 360.525,190.194 360.859,191.694 359.5,193.5C 361.401,194.545 363.067,195.878 364.5,197.5C 366.5,197.833 368.5,198.167 370.5,198.5C 372.087,200.446 371.754,201.946 369.5,203C 374.232,203.106 376.899,205.44 377.5,210C 380.037,213.196 382.537,216.362 385,219.5C 386.731,225.198 388.398,230.865 390,236.5C 390.976,246.287 390.31,255.954 388,265.5C 386.06,270.04 384.56,274.706 383.5,279.5C 378.981,281.137 376.314,284.47 375.5,289.5C 371.862,290.466 370.195,292.799 370.5,296.5C 369.5,296.5 368.5,296.5 367.5,296.5C 366.96,293.313 367.96,290.813 370.5,289C 370.43,288.235 370.097,287.735 369.5,287.5C 371.317,281.706 373.984,276.373 377.5,271.5C 378.833,271.5 380.167,271.5 381.5,271.5C 382.555,267.823 383.722,264.156 385,260.5C 385.667,251.833 385.667,243.167 385,234.5C 382.501,230.168 381.168,225.501 381,220.5C 379.719,220.619 378.552,220.119 377.5,219C 378.132,213.44 375.799,209.607 370.5,207.5C 369.5,207.5 368.5,207.5 367.5,207.5C 367.66,205.801 367.494,204.134 367,202.5C 364.819,200.737 362.653,199.07 360.5,197.5C 356.394,190.966 350.728,186.633 343.5,184.5 Z"/></g>
<g><path style="opacity:1" fill="#320607" d="M 60.5,235.5 C 64.6625,237.731 68.9959,239.397 73.5,240.5C 68.5579,240.813 63.8912,242.147 59.5,244.5C 59.1667,243.833 58.8333,243.167 58.5,242.5C 59.9371,240.423 60.6038,238.09 60.5,235.5 Z"/></g>
<g><path style="opacity:1" fill="#f9f2e0" d="M 190.5,223.5 C 190.351,224.552 190.517,225.552 191,226.5C 191.759,224.937 192.926,223.937 194.5,223.5C 192.01,227.138 189.51,230.805 187,234.5C 186.506,236.134 186.34,237.801 186.5,239.5C 185.325,239.281 184.325,239.614 183.5,240.5C 182.826,242.517 181.659,244.183 180,245.5C 179.187,247.436 178.687,249.436 178.5,251.5C 175.308,249.828 172.475,247.495 170,244.5C 172.113,236.477 175.946,229.144 181.5,222.5C 181.113,221.28 180.28,220.613 179,220.5C 173.856,226.101 169.69,232.434 166.5,239.5C 164.973,243.378 165.64,246.711 168.5,249.5C 170.127,251.63 171.96,253.63 174,255.5C 174.602,258.221 174.435,260.887 173.5,263.5C 170.398,269.059 168.398,275.059 167.5,281.5C 167.233,283.965 166.566,286.299 165.5,288.5C 164.849,289.091 164.182,289.757 163.5,290.5C 160.636,288.761 157.803,287.094 155,285.5C 154.333,283.5 154.333,281.5 155,279.5C 158.232,272.674 160.066,265.674 160.5,258.5C 159.575,257.359 158.741,257.359 158,258.5C 153.59,268.054 151.256,278.054 151,288.5C 155.132,290.567 159.132,292.901 163,295.5C 163.43,298.192 163.263,300.859 162.5,303.5C 161.671,311.323 161.171,319.323 161,327.5C 159.815,329.559 158.648,329.726 157.5,328C 157.63,326.941 158.13,326.108 159,325.5C 159.5,318.174 159.666,310.841 159.5,303.5C 159.799,301.396 159.466,299.396 158.5,297.5C 153.702,296.188 149.535,293.855 146,290.5C 146.005,287.464 146.505,284.464 147.5,281.5C 147.5,280.833 147.5,280.167 147.5,279.5C 148.786,275.006 149.786,270.339 150.5,265.5C 151.945,263.429 152.945,261.096 153.5,258.5C 154.11,257.609 154.443,256.609 154.5,255.5C 155.479,254.235 156.479,252.901 157.5,251.5C 160.905,253.689 163.571,256.522 165.5,260C 162.955,267.345 160.955,274.845 159.5,282.5C 160.5,282.5 161.5,282.5 162.5,282.5C 163.627,274.784 165.961,267.451 169.5,260.5C 167.987,254.987 164.654,250.987 159.5,248.5C 159.405,245.308 160.071,242.308 161.5,239.5C 163.39,236.728 165.057,233.728 166.5,230.5C 170.347,225.651 173.347,220.317 175.5,214.5C 177.394,213.952 179.06,212.952 180.5,211.5C 182.935,214.595 184.935,217.928 186.5,221.5C 183.428,226.635 180.095,231.635 176.5,236.5C 175.167,238.5 175.167,240.5 176.5,242.5C 180.393,240.364 182.56,237.031 183,232.5C 185.417,229.266 187.917,226.266 190.5,223.5 Z"/></g>
<g><path style="opacity:1" fill="#fdbd61" d="M 327.5,191.5 C 330.167,191.833 332.833,192.167 335.5,192.5C 335.5,193.5 335.5,194.5 335.5,195.5C 340.095,198.535 344.928,201.535 350,204.5C 350.333,204.167 350.667,203.833 351,203.5C 351.724,206.877 353.724,209.21 357,210.5C 360.336,214.312 362.503,218.645 363.5,223.5C 364.833,223.5 366.167,223.5 367.5,223.5C 367.907,233.66 366.907,243.66 364.5,253.5C 361.424,259.238 358.257,264.905 355,270.5C 353.989,271.337 352.822,271.67 351.5,271.5C 351.5,273.5 351.5,275.5 351.5,277.5C 350.022,277.238 348.689,277.571 347.5,278.5C 344.309,282.096 340.309,284.096 335.5,284.5C 335.5,285.5 335.5,286.5 335.5,287.5C 328.825,287.334 322.158,287.5 315.5,288C 316.938,288.219 318.271,288.719 319.5,289.5C 314.287,290.462 309.12,291.462 304,292.5C 292.47,294.276 281.804,298.609 272,305.5C 271.667,304.833 271.333,304.167 271,303.5C 269.202,305.972 266.868,307.639 264,308.5C 263.517,309.448 263.351,310.448 263.5,311.5C 260.833,311.833 258.167,312.167 255.5,312.5C 255.5,314.833 255.5,317.167 255.5,319.5C 254.022,319.238 252.689,319.571 251.5,320.5C 250.653,321.845 249.487,322.845 248,323.5C 247.667,324.5 247.333,325.5 247,326.5C 244.093,327.244 241.927,328.91 240.5,331.5C 234.886,340.331 230.219,349.664 226.5,359.5C 224.272,372.06 222.939,384.727 222.5,397.5C 219.906,394.383 217.073,391.383 214,388.5C 213.588,384.597 211.421,382.93 207.5,383.5C 205.67,379.79 203.503,376.123 201,372.5C 200,371.833 199,371.167 198,370.5C 195.855,364.264 193.855,357.931 192,351.5C 191.5,335.503 191.333,319.503 191.5,303.5C 192.5,303.5 193.5,303.5 194.5,303.5C 194.37,299.132 194.703,294.798 195.5,290.5C 198.475,278.404 202.475,266.738 207.5,255.5C 207.34,253.801 207.506,252.134 208,250.5C 213.942,240.895 221.275,232.561 230,225.5C 229.459,222.635 230.793,220.635 234,219.5C 235,217.833 236,216.167 237,214.5C 241.242,213.058 244.742,210.725 247.5,207.5C 252.489,204.847 257.823,203.014 263.5,202C 264.728,199.86 266.395,198.193 268.5,197C 287.752,191.872 307.419,190.039 327.5,191.5 Z"/></g>
<g><path style="opacity:1" fill="#fbc775" d="M 342.5,219.5 C 343.822,219.33 344.989,219.663 346,220.5C 347.339,224.512 349.172,228.178 351.5,231.5C 351.173,236.214 351.507,240.88 352.5,245.5C 353.906,244.332 355.072,244.665 356,246.5C 357.975,244.83 358.809,242.664 358.5,240C 357.877,235.853 357.544,231.686 357.5,227.5C 358.586,227.62 359.253,228.287 359.5,229.5C 361.806,234.718 361.972,240.052 360,245.5C 357.435,247.179 354.602,247.846 351.5,247.5C 351.664,250.187 351.497,252.854 351,255.5C 350.667,249.167 350.333,242.833 350,236.5C 347.971,232.313 344.971,228.98 341,226.5C 340.517,225.552 340.351,224.552 340.5,223.5C 338.833,223.5 337.167,223.5 335.5,223.5C 335.5,221.833 335.5,220.167 335.5,218.5C 332.788,218.263 330.288,218.263 328,218.5C 325.056,215.964 321.556,214.631 317.5,214.5C 306.948,215.991 298.281,220.658 291.5,228.5C 290.264,229.246 288.93,229.579 287.5,229.5C 287.5,229.167 287.5,228.833 287.5,228.5C 290.971,227.522 292.805,225.188 293,221.5C 295.379,219.487 297.879,217.654 300.5,216C 311.987,211.805 323.654,211.472 335.5,215C 337.734,216.75 340.068,218.25 342.5,219.5 Z"/></g>
<g><path style="opacity:1" fill="#fdfdf7" d="M 303.5,207.5 C 298.677,211.304 293.343,214.304 287.5,216.5C 287.5,217.5 287.5,218.5 287.5,219.5C 285.321,219.84 283.488,220.84 282,222.5C 281.848,226.634 280.348,230.134 277.5,233C 267.806,235.227 258.139,237.56 248.5,240C 244.51,243.995 239.844,246.328 234.5,247C 235.029,244.571 236.363,242.738 238.5,241.5C 239.308,239.577 239.808,237.577 240,235.5C 244.799,232.541 248.299,228.541 250.5,223.5C 252.167,223.5 253.833,223.5 255.5,223.5C 255.5,222.5 255.5,221.5 255.5,220.5C 260.674,217.279 266.007,214.612 271.5,212.5C 273.132,211.168 274.799,209.835 276.5,208.5C 278.045,207.548 279.712,207.215 281.5,207.5C 285.514,207.666 289.514,207.499 293.5,207C 296.679,205.539 300.012,204.705 303.5,204.5C 303.5,205.5 303.5,206.5 303.5,207.5 Z"/></g>
<g><path style="opacity:1" fill="#fce5b1" d="M 351.5,231.5 C 349.172,228.178 347.339,224.512 346,220.5C 344.989,219.663 343.822,219.33 342.5,219.5C 338.938,214.214 333.938,211.214 327.5,210.5C 322.2,209.431 316.866,209.264 311.5,210C 306.012,211.882 300.679,214.049 295.5,216.5C 292.647,220.429 289.98,224.429 287.5,228.5C 284.394,231.783 281.394,235.283 278.5,239C 277.552,239.483 276.552,239.649 275.5,239.5C 279.87,235.082 282.536,229.748 283.5,223.5C 284.833,223.5 286.167,223.5 287.5,223.5C 287.5,222.167 287.5,220.833 287.5,219.5C 287.5,218.5 287.5,217.5 287.5,216.5C 293.343,214.304 298.677,211.304 303.5,207.5C 312.173,207.666 320.84,207.5 329.5,207C 321.38,203.728 312.88,202.228 304,202.5C 301.5,202.667 299,202.833 296.5,203C 291.422,204.637 286.422,206.137 281.5,207.5C 279.712,207.215 278.045,207.548 276.5,208.5C 274.799,209.835 273.132,211.168 271.5,212.5C 267.039,212.151 263.372,213.651 260.5,217C 257.879,217.939 255.212,218.772 252.5,219.5C 251.37,220.622 250.703,221.956 250.5,223.5C 245.924,228.248 241.09,232.915 236,237.5C 234.188,239.552 232.855,241.885 232,244.5C 230.795,245.071 229.628,245.738 228.5,246.5C 227.154,249.804 225.487,252.804 223.5,255.5C 222.624,255.369 221.957,255.702 221.5,256.5C 221.013,260.818 219.013,264.152 215.5,266.5C 217.913,262.201 219.413,257.534 220,252.5C 225.804,248.363 230.137,243.029 233,236.5C 238.91,230.982 244.41,225.148 249.5,219C 255.577,216.071 261.244,212.404 266.5,208C 271.806,207.388 276.806,205.721 281.5,203C 294.059,200.456 306.726,199.456 319.5,200C 329.28,203.221 338.613,207.554 347.5,213C 349.282,216.366 350.616,219.866 351.5,223.5C 352.5,223.5 353.5,223.5 354.5,223.5C 354.982,226.831 353.982,229.497 351.5,231.5 Z"/></g>
<g><path style="opacity:1" fill="#fcd38b" d="M 335.5,201.5 C 336.882,202.801 338.548,203.634 340.5,204C 341.337,205.011 341.67,206.178 341.5,207.5C 344.167,208.167 346.833,208.833 349.5,209.5C 349.238,210.978 349.571,212.311 350.5,213.5C 355.792,216.631 358.125,221.298 357.5,227.5C 357.544,231.686 357.877,235.853 358.5,240C 358.809,242.664 357.975,244.83 356,246.5C 355.072,244.665 353.906,244.332 352.5,245.5C 351.507,240.88 351.173,236.214 351.5,231.5C 353.982,229.497 354.982,226.831 354.5,223.5C 353.5,223.5 352.5,223.5 351.5,223.5C 350.616,219.866 349.282,216.366 347.5,213C 338.613,207.554 329.28,203.221 319.5,200C 306.726,199.456 294.059,200.456 281.5,203C 276.806,205.721 271.806,207.388 266.5,208C 261.244,212.404 255.577,216.071 249.5,219C 244.41,225.148 238.91,230.982 233,236.5C 230.137,243.029 225.804,248.363 220,252.5C 219.413,257.534 217.913,262.201 215.5,266.5C 215.598,268.553 214.931,270.22 213.5,271.5C 212.819,276.15 211.653,280.816 210,285.5C 209.583,286.756 208.75,287.423 207.5,287.5C 209.272,282.45 210.439,277.116 211,271.5C 213.47,266.284 215.637,260.95 217.5,255.5C 217.14,250.832 219.14,248.165 223.5,247.5C 227.805,237.171 234.805,228.837 244.5,222.5C 246.423,219.91 248.256,217.244 250,214.5C 252.983,213.083 256.15,212.25 259.5,212C 261.041,210.629 262.375,209.129 263.5,207.5C 265.196,207.315 266.529,206.481 267.5,205C 272.774,204.686 277.774,203.353 282.5,201C 289.578,200.543 296.578,199.543 303.5,198C 311.514,197.667 319.514,198.001 327.5,199C 329.862,200.731 332.529,201.565 335.5,201.5 Z"/></g>
<g><path style="opacity:1" fill="#c94e16" d="M 310.5,233.5 C 308.863,235.124 309.197,236.124 311.5,236.5C 316.321,235.275 321.155,235.275 326,236.5C 327.681,236.392 328.848,235.725 329.5,234.5C 332.867,238.348 331.867,240.014 326.5,239.5C 326.389,238.883 326.056,238.383 325.5,238C 321.151,237.464 316.818,237.631 312.5,238.5C 310.667,238.415 309.334,237.748 308.5,236.5C 308.5,235.833 308.5,235.167 308.5,234.5C 308.842,233.662 309.508,233.328 310.5,233.5 Z"/></g>
<g><path style="opacity:1" fill="#6d1d04" d="M 335.5,236.5 C 336.11,237.391 336.443,238.391 336.5,239.5C 336.167,239.5 335.833,239.5 335.5,239.5C 333.785,237.118 331.785,235.118 329.5,233.5C 324.556,230.767 319.223,229.934 313.5,231C 312.058,231.377 311.058,232.21 310.5,233.5C 309.508,233.328 308.842,233.662 308.5,234.5C 307.292,235.234 305.959,235.567 304.5,235.5C 311.749,226.817 320.415,225.317 330.5,231C 332.402,232.73 334.069,234.563 335.5,236.5 Z"/></g>
<g><path style="opacity:1" fill="#fcd896" d="M 342.5,219.5 C 340.068,218.25 337.734,216.75 335.5,215C 323.654,211.472 311.987,211.805 300.5,216C 297.879,217.654 295.379,219.487 293,221.5C 292.805,225.188 290.971,227.522 287.5,228.5C 289.98,224.429 292.647,220.429 295.5,216.5C 300.679,214.049 306.012,211.882 311.5,210C 316.866,209.264 322.2,209.431 327.5,210.5C 333.938,211.214 338.938,214.214 342.5,219.5 Z"/></g>
<g><path style="opacity:1" fill="#fdefce" d="M 271.5,212.5 C 266.007,214.612 260.674,217.279 255.5,220.5C 255.5,221.5 255.5,222.5 255.5,223.5C 253.833,223.5 252.167,223.5 250.5,223.5C 250.703,221.956 251.37,220.622 252.5,219.5C 255.212,218.772 257.879,217.939 260.5,217C 263.372,213.651 267.039,212.151 271.5,212.5 Z"/></g>
<g><path style="opacity:1" fill="#fcf3d4" d="M 303.5,207.5 C 303.5,206.5 303.5,205.5 303.5,204.5C 300.012,204.705 296.679,205.539 293.5,207C 289.514,207.499 285.514,207.666 281.5,207.5C 286.422,206.137 291.422,204.637 296.5,203C 299,202.833 301.5,202.667 304,202.5C 312.88,202.228 321.38,203.728 329.5,207C 320.84,207.5 312.173,207.666 303.5,207.5 Z"/></g>
<g><path style="opacity:1" fill="#fcc774" d="M 335.5,201.5 C 332.529,201.565 329.862,200.731 327.5,199C 319.514,198.001 311.514,197.667 303.5,198C 296.578,199.543 289.578,200.543 282.5,201C 277.774,203.353 272.774,204.686 267.5,205C 266.529,206.481 265.196,207.315 263.5,207.5C 265.78,204.151 268.78,201.651 272.5,200C 283.734,198.167 294.901,196.334 306,194.5C 312.469,196.018 318.803,195.685 325,193.5C 328.295,196.55 331.795,199.217 335.5,201.5 Z"/></g>
<g><path style="opacity:1" fill="#780303" d="M 329.5,234.5 C 329.5,234.167 329.5,233.833 329.5,233.5C 331.785,235.118 333.785,237.118 335.5,239.5C 335.665,242.518 335.498,245.518 335,248.5C 332.487,249.848 330.653,251.848 329.5,254.5C 314.107,260.298 305.107,255.298 302.5,239.5C 303.167,238.167 303.833,236.833 304.5,235.5C 305.959,235.567 307.292,235.234 308.5,234.5C 308.5,235.167 308.5,235.833 308.5,236.5C 307.596,237.209 307.263,238.209 307.5,239.5C 313.833,239.5 320.167,239.5 326.5,239.5C 331.867,240.014 332.867,238.348 329.5,234.5 Z"/></g>
<g><path style="opacity:1" fill="#9f1c01" d="M 308.5,236.5 C 309.334,237.748 310.667,238.415 312.5,238.5C 316.818,237.631 321.151,237.464 325.5,238C 326.056,238.383 326.389,238.883 326.5,239.5C 320.167,239.5 313.833,239.5 307.5,239.5C 307.263,238.209 307.596,237.209 308.5,236.5 Z"/></g>
<g><path style="opacity:1" fill="#f6f4f0" d="M 335.5,168.5 C 346.164,170.343 356.831,172.676 367.5,175.5C 374.074,181.174 381.74,185.007 390.5,187C 392.979,189.67 395.979,191.17 399.5,191.5C 405.191,196.34 410.858,201.173 416.5,206C 417.833,206.333 419.167,206.667 420.5,207C 421.103,209.071 422.436,210.238 424.5,210.5C 427.245,213.204 430.412,215.537 434,217.5C 437.522,224.361 441.855,230.694 447,236.5C 454.554,249.271 460.721,262.604 465.5,276.5C 465.87,280.233 466.537,283.899 467.5,287.5C 469.165,303.439 469.832,319.439 469.5,335.5C 469.5,338.167 469.5,340.833 469.5,343.5C 467.775,348.223 466.775,353.223 466.5,358.5C 466.5,358.833 466.5,359.167 466.5,359.5C 464.903,361.848 463.903,364.514 463.5,367.5C 463.5,368.167 463.5,368.833 463.5,369.5C 460.117,376.773 456.617,384.107 453,391.5C 450.929,395.511 448.429,399.178 445.5,402.5C 443.983,402.511 442.816,403.177 442,404.5C 441.07,407.362 439.403,409.695 437,411.5C 436.51,412.793 436.343,414.127 436.5,415.5C 432.177,421.155 427.51,426.488 422.5,431.5C 419.745,433.01 417.412,435.01 415.5,437.5C 409.692,441.049 404.359,445.049 399.5,449.5C 398.127,449.343 396.793,449.51 395.5,450C 392.589,452.622 389.256,454.455 385.5,455.5C 380.752,456.705 376.085,458.205 371.5,460C 369.456,460.498 368.122,461.665 367.5,463.5C 359.157,465.521 350.823,467.521 342.5,469.5C 329.53,470.423 316.53,470.756 303.5,470.5C 296.09,468.443 288.423,467.109 280.5,466.5C 277.659,465.331 274.659,464.331 271.5,463.5C 271.5,462.5 271.5,461.5 271.5,460.5C 270.167,460.5 268.833,460.5 267.5,460.5C 267.5,459.5 267.5,458.5 267.5,457.5C 268.833,457.5 270.167,457.5 271.5,457.5C 281.892,460.964 292.559,462.964 303.5,463.5C 304.263,464.268 305.263,464.768 306.5,465C 314.677,465.823 322.677,465.656 330.5,464.5C 344.77,463.182 358.437,459.848 371.5,454.5C 383.38,450.896 394.047,445.229 403.5,437.5C 418.524,427.476 430.857,414.809 440.5,399.5C 452.481,381.235 460.147,361.235 463.5,339.5C 464.759,327.353 464.759,315.353 463.5,303.5C 462.376,284.799 457.043,267.466 447.5,251.5C 445.007,245.02 441.341,239.354 436.5,234.5C 426.809,219.809 414.476,207.809 399.5,198.5C 399.158,197.662 398.492,197.328 397.5,197.5C 392.056,193.27 386.056,189.77 379.5,187C 369.147,182.715 358.48,179.548 347.5,177.5C 343.733,176.205 339.733,175.539 335.5,175.5C 322.987,174.282 310.321,174.282 297.5,175.5C 296.167,175.5 294.833,175.5 293.5,175.5C 291.073,175.477 288.74,174.977 286.5,174C 286.833,173.667 287.167,173.333 287.5,173C 303.319,169.693 319.319,168.193 335.5,168.5 Z"/></g>
<g><path style="opacity:1" fill="#360a08" d="M 577.5,235.5 C 578.167,236.833 578.833,238.167 579.5,239.5C 580.755,241.519 581.089,243.519 580.5,245.5C 576.588,242.706 572.255,241.373 567.5,241.5C 566.791,240.596 565.791,240.263 564.5,240.5C 569.087,239.715 573.421,238.048 577.5,235.5 Z"/></g>
<g><path style="opacity:1" fill="#d88d57" d="M 556.5,240.5 C 559.167,240.5 561.833,240.5 564.5,240.5C 565.791,240.263 566.791,240.596 567.5,241.5C 563.486,241.334 559.486,241.501 555.5,242C 552.321,243.461 548.988,244.295 545.5,244.5C 548.915,242.721 552.581,241.387 556.5,240.5 Z"/></g>
<g><path style="opacity:1" fill="#e89f5d" d="M 159.5,229.5 C 159.662,231.527 159.495,233.527 159,235.5C 153.351,242.131 150.518,249.797 150.5,258.5C 151.5,258.5 152.5,258.5 153.5,258.5C 152.945,261.096 151.945,263.429 150.5,265.5C 150.5,263.5 150.5,261.5 150.5,259.5C 149.167,259.5 147.833,259.5 146.5,259.5C 146.975,262.313 145.975,264.313 143.5,265.5C 147.241,252.693 152.574,240.693 159.5,229.5 Z"/></g>
<g><path style="opacity:1" fill="#fdd693" d="M 287.5,228.5 C 287.5,228.833 287.5,229.167 287.5,229.5C 286.893,233.381 285.226,236.714 282.5,239.5C 278.959,241.144 275.292,242.644 271.5,244C 263.732,245.054 256.065,246.554 248.5,248.5C 248.649,249.552 248.483,250.552 248,251.5C 245.562,252.568 243.395,253.902 241.5,255.5C 239.824,256.183 239.157,257.517 239.5,259.5C 233.654,261.351 230.32,265.351 229.5,271.5C 227.5,271.5 225.5,271.5 223.5,271.5C 223.201,269.396 223.534,267.396 224.5,265.5C 228.497,263.195 230.83,259.861 231.5,255.5C 232.5,255.5 233.5,255.5 234.5,255.5C 234.5,252.167 236.167,250.5 239.5,250.5C 241.199,250.66 242.866,250.494 244.5,250C 246.228,248.274 248.228,246.941 250.5,246C 258.4,245.067 266.067,243.4 273.5,241C 274.056,240.617 274.389,240.117 274.5,239.5C 274.833,239.5 275.167,239.5 275.5,239.5C 276.552,239.649 277.552,239.483 278.5,239C 281.394,235.283 284.394,231.783 287.5,228.5 Z"/></g>
<g><path style="opacity:1" fill="#ebaa65" d="M 608.5,223.5 C 610.381,225.93 611.715,228.596 612.5,231.5C 614.576,239.4 616.243,247.4 617.5,255.5C 619.344,260.551 620.344,265.884 620.5,271.5C 618.167,271.5 615.833,271.5 613.5,271.5C 613.5,270.167 613.5,268.833 613.5,267.5C 611.742,259.67 609.742,252.004 607.5,244.5C 607.5,242.833 607.5,241.167 607.5,239.5C 608.898,237.404 609.898,235.071 610.5,232.5C 609.53,229.563 608.863,226.563 608.5,223.5 Z"/></g>
<g><path style="opacity:1" fill="#e99646" d="M 253.5,202.5 C 251.131,203.69 249.131,205.357 247.5,207.5C 244.742,210.725 241.242,213.058 237,214.5C 236,216.167 235,217.833 234,219.5C 230.793,220.635 229.459,222.635 230,225.5C 221.275,232.561 213.942,240.895 208,250.5C 207.506,252.134 207.34,253.801 207.5,255.5C 206.5,255.5 205.5,255.5 204.5,255.5C 204.402,251.75 205.569,248.417 208,245.5C 211.987,240.015 216.153,234.682 220.5,229.5C 221.466,227.604 221.799,225.604 221.5,223.5C 223.048,223.179 223.715,222.179 223.5,220.5C 229.444,217.316 235.11,213.649 240.5,209.5C 241.386,208.675 241.719,207.675 241.5,206.5C 245.443,204.963 249.443,203.63 253.5,202.5 Z"/></g>
<g><path style="opacity:1" fill="#fcc876" d="M 282.5,239.5 C 283.035,242.238 282.035,244.072 279.5,245C 275.167,245.333 270.833,245.667 266.5,246C 263.682,247.254 260.682,248.087 257.5,248.5C 253.95,250.435 250.617,252.601 247.5,255C 245.527,255.495 243.527,255.662 241.5,255.5C 243.395,253.902 245.562,252.568 248,251.5C 248.483,250.552 248.649,249.552 248.5,248.5C 256.065,246.554 263.732,245.054 271.5,244C 275.292,242.644 278.959,241.144 282.5,239.5 Z"/></g>
<g><path style="opacity:1" fill="#f6a446" d="M 160.5,227.5 C 161.43,231.4 161.763,235.4 161.5,239.5C 160.071,242.308 159.405,245.308 159.5,248.5C 155.963,249.386 154.296,251.719 154.5,255.5C 154.443,256.609 154.11,257.609 153.5,258.5C 152.5,258.5 151.5,258.5 150.5,258.5C 150.518,249.797 153.351,242.131 159,235.5C 159.495,233.527 159.662,231.527 159.5,229.5C 159.328,228.508 159.662,227.842 160.5,227.5 Z"/></g>
<g><path style="opacity:1" fill="#f3a652" d="M 40.5,178.5 C 38.5708,182.027 36.9041,185.693 35.5,189.5C 40.1884,194.52 44.8551,199.52 49.5,204.5C 51.6089,210.701 52.2756,217.034 51.5,223.5C 47.3934,233.754 44.3934,244.421 42.5,255.5C 38.4301,256.492 36.4301,254.992 36.5,251C 39.3585,238.425 43.0251,226.091 47.5,214C 43.1765,208.504 38.1765,203.337 32.5,198.5C 23.1181,217.543 16.7847,237.543 13.5,258.5C 12.8423,259.398 12.1757,260.398 11.5,261.5C 9.40659,253.611 8.73992,253.611 9.5,261.5C 8.9888,263.878 8.32214,266.212 7.5,268.5C 8.10148,272.378 8.93481,272.378 10,268.5C 11.4353,271.78 10.7687,274.78 8,277.5C 4.65908,272.217 3.82574,266.55 5.5,260.5C 6.26065,251.382 7.76065,242.382 10,233.5C 14.0823,225.079 17.249,216.412 19.5,207.5C 21.5375,203.739 23.2042,199.739 24.5,195.5C 25.8262,191.857 27.1595,188.19 28.5,184.5C 29.3569,183.575 30.3569,182.908 31.5,182.5C 31.238,183.978 31.5713,185.311 32.5,186.5C 34.8495,184.313 36.8495,181.813 38.5,179C 39.0944,178.536 39.7611,178.369 40.5,178.5 Z"/></g>
<g><path style="opacity:1" fill="#eca955" d="M 31.5,239.5 C 31.3354,236.482 31.502,233.482 32,230.5C 32.763,233.063 33.263,233.063 33.5,230.5C 32.6978,227.551 32.3645,224.551 32.5,221.5C 36.5,222.167 38.1667,220.5 37.5,216.5C 35.3812,216.532 34.0478,215.532 33.5,213.5C 33.811,212.522 34.4777,211.855 35.5,211.5C 38.1752,212.348 39.5086,214.182 39.5,217C 37.0132,224.683 34.3465,232.183 31.5,239.5 Z"/></g>
<g><path style="opacity:1" fill="#f9a149" d="M 33.5,213.5 C 34.0478,215.532 35.3812,216.532 37.5,216.5C 38.1667,220.5 36.5,222.167 32.5,221.5C 32.3645,224.551 32.6978,227.551 33.5,230.5C 33.263,233.063 32.763,233.063 32,230.5C 31.502,233.482 31.3354,236.482 31.5,239.5C 31.7678,241.099 31.4345,242.432 30.5,243.5C 30.7547,239.599 30.0881,235.932 28.5,232.5C 29.9228,229.725 30.5895,226.725 30.5,223.5C 30.7571,219.829 31.7571,216.495 33.5,213.5 Z"/></g>
<g><path style="opacity:1" fill="#e5a35c" d="M 55.5,207.5 C 53.9571,217.108 55.9571,225.774 61.5,233.5C 61.1373,234.183 60.8039,234.85 60.5,235.5C 60.6038,238.09 59.9371,240.423 58.5,242.5C 58.8333,243.167 59.1667,243.833 59.5,244.5C 63.8912,242.147 68.5579,240.813 73.5,240.5C 76.7131,240.19 79.7131,240.523 82.5,241.5C 78.1161,241.174 73.7828,241.508 69.5,242.5C 68.0606,244.553 66.0606,245.553 63.5,245.5C 61.8401,247.248 59.8401,247.748 57.5,247C 57.2986,244.301 57.6319,241.468 58.5,238.5C 57.558,235.145 56.2246,234.812 54.5,237.5C 54.3874,234.951 55.0541,232.618 56.5,230.5C 55.4367,227.915 54.1034,225.582 52.5,223.5C 52.7868,217.814 53.7868,212.481 55.5,207.5 Z"/></g>
<g><path style="opacity:1" fill="#fce1af" d="M 274.5,239.5 C 274.389,240.117 274.056,240.617 273.5,241C 266.067,243.4 258.4,245.067 250.5,246C 248.228,246.941 246.228,248.274 244.5,250C 242.866,250.494 241.199,250.66 239.5,250.5C 245.775,245.455 253.108,242.621 261.5,242C 262.328,241.085 263.328,240.419 264.5,240C 267.817,239.502 271.15,239.335 274.5,239.5 Z"/></g>
<g><path style="opacity:1" fill="#ddb672" d="M 571.5,213.5 C 571.69,217.032 571.023,220.365 569.5,223.5C 568.833,221.5 568.167,219.5 567.5,217.5C 567.5,216.833 567.5,216.167 567.5,215.5C 567.5,214.5 567.5,213.5 567.5,212.5C 568.097,212.265 568.43,211.765 568.5,211C 565.782,204.617 561.115,200.283 554.5,198C 543.784,196.024 536.118,199.858 531.5,209.5C 530.073,211.148 529.24,213.148 529,215.5C 528.188,219.689 528.355,223.689 529.5,227.5C 529.5,227.833 529.5,228.167 529.5,228.5C 531.002,235.839 534.335,242.172 539.5,247.5C 538.833,247.5 538.5,247.833 538.5,248.5C 538.167,248.5 537.833,248.5 537.5,248.5C 531.149,243.004 527.315,236.004 526,227.5C 523.365,211.929 529.198,201.096 543.5,195C 558.393,193.098 567.727,199.265 571.5,213.5 Z"/></g>
<g><path style="opacity:1" fill="#e6b478" d="M 556.5,204.5 C 561.869,204.874 565.536,207.541 567.5,212.5C 567.5,213.5 567.5,214.5 567.5,215.5C 565.734,213.229 563.734,211.063 561.5,209C 558.793,207.943 555.96,207.443 553,207.5C 547.175,207.329 542.675,209.662 539.5,214.5C 539.833,213.167 540.167,211.833 540.5,210.5C 542.304,208.505 544.304,206.838 546.5,205.5C 549.807,204.949 553.14,204.616 556.5,204.5 Z"/></g>
<g><path style="opacity:1" fill="#af7b57" d="M 556.5,204.5 C 553.14,204.616 549.807,204.949 546.5,205.5C 549.708,203.469 553.041,203.135 556.5,204.5 Z"/></g>
<g><path style="opacity:1" fill="#f09858" d="M 118.5,239.5 C 118.414,240.496 118.748,241.329 119.5,242C 117.929,246.351 116.929,250.851 116.5,255.5C 114.925,249.931 115.591,244.598 118.5,239.5 Z"/></g>
<g><path style="opacity:1" fill="#fbf3d3" d="M 287.5,219.5 C 287.5,220.833 287.5,222.167 287.5,223.5C 286.167,223.5 284.833,223.5 283.5,223.5C 282.536,229.748 279.87,235.082 275.5,239.5C 275.167,239.5 274.833,239.5 274.5,239.5C 271.15,239.335 267.817,239.502 264.5,240C 263.328,240.419 262.328,241.085 261.5,242C 253.108,242.621 245.775,245.455 239.5,250.5C 236.167,250.5 234.5,252.167 234.5,255.5C 233.5,255.5 232.5,255.5 231.5,255.5C 230.5,255.5 229.5,255.5 228.5,255.5C 228.5,256.5 228.5,257.5 228.5,258.5C 226.61,258.297 225.11,258.963 224,260.5C 223.506,258.866 223.34,257.199 223.5,255.5C 225.487,252.804 227.154,249.804 228.5,246.5C 229.628,245.738 230.795,245.071 232,244.5C 232.855,241.885 234.188,239.552 236,237.5C 241.09,232.915 245.924,228.248 250.5,223.5C 248.299,228.541 244.799,232.541 240,235.5C 239.808,237.577 239.308,239.577 238.5,241.5C 236.363,242.738 235.029,244.571 234.5,247C 239.844,246.328 244.51,243.995 248.5,240C 258.139,237.56 267.806,235.227 277.5,233C 280.348,230.134 281.848,226.634 282,222.5C 283.488,220.84 285.321,219.84 287.5,219.5 Z"/></g>
<g><path style="opacity:1" fill="#f2a658" d="M 159.5,248.5 C 164.654,250.987 167.987,254.987 169.5,260.5C 165.961,267.451 163.627,274.784 162.5,282.5C 161.5,282.5 160.5,282.5 159.5,282.5C 160.955,274.845 162.955,267.345 165.5,260C 163.571,256.522 160.905,253.689 157.5,251.5C 156.479,252.901 155.479,254.235 154.5,255.5C 154.296,251.719 155.963,249.386 159.5,248.5 Z"/></g>
<g><path style="opacity:1" fill="#cb7031" d="M 209.5,230.5 C 204.958,237.623 201.458,245.289 199,253.5C 196.518,257.809 194.185,262.142 192,266.5C 191.322,268.902 191.822,271.068 193.5,273C 192.852,274.44 192.519,275.94 192.5,277.5C 191.5,277.5 190.5,277.5 189.5,277.5C 189.665,281.182 189.499,284.848 189,288.5C 185.731,295.306 183.897,302.473 183.5,310C 183.394,326.103 184.227,342.27 186,358.5C 187.791,361.35 188.958,364.35 189.5,367.5C 189.5,370.5 189.5,373.5 189.5,376.5C 188.167,376.167 186.833,375.833 185.5,375.5C 182.882,369.032 180.882,362.366 179.5,355.5C 179.725,350.752 179.225,346.085 178,341.5C 177.667,341.833 177.333,342.167 177,342.5C 176.768,341.263 176.268,340.263 175.5,339.5C 175.5,338.833 175.5,338.167 175.5,337.5C 174.36,326.008 174.36,314.675 175.5,303.5C 176.88,300.226 178.38,296.893 180,293.5C 180.077,290.242 180.244,287.076 180.5,284C 180.833,283.5 181.167,283 181.5,282.5C 182.452,284.045 182.785,285.712 182.5,287.5C 183.5,287.5 184.5,287.5 185.5,287.5C 186,279.505 186.5,271.505 187,263.5C 189.203,261.331 190.036,258.665 189.5,255.5C 190.833,255.5 192.167,255.5 193.5,255.5C 193.34,253.801 193.506,252.134 194,250.5C 197.216,246.624 199.549,242.291 201,237.5C 203.209,235.627 205.042,233.46 206.5,231C 207.448,230.517 208.448,230.351 209.5,230.5 Z"/></g>
<g><path style="opacity:1" fill="#f1b76f" d="M 335.5,236.5 C 334.069,234.563 332.402,232.73 330.5,231C 320.415,225.317 311.749,226.817 304.5,235.5C 303.833,236.833 303.167,238.167 302.5,239.5C 299.852,253.224 305.352,261.224 319,263.5C 332.405,261.246 338.571,253.246 337.5,239.5C 338.559,244.675 338.559,250.009 337.5,255.5C 335.952,255.821 335.285,256.821 335.5,258.5C 335.489,260.017 334.823,261.184 333.5,262C 325.812,266.614 317.812,267.447 309.5,264.5C 300.726,258.603 297.059,250.269 298.5,239.5C 300.41,238.316 300.743,236.816 299.5,235C 300.449,234.383 301.282,234.549 302,235.5C 303.769,232.71 305.602,229.877 307.5,227C 311.555,226.854 315.388,226.02 319,224.5C 327.232,225.009 332.732,229.009 335.5,236.5 Z"/></g>
<g><path style="opacity:1" fill="#f9b066" d="M 329.5,233.5 C 329.5,233.833 329.5,234.167 329.5,234.5C 328.848,235.725 327.681,236.392 326,236.5C 321.155,235.275 316.321,235.275 311.5,236.5C 309.197,236.124 308.863,235.124 310.5,233.5C 311.058,232.21 312.058,231.377 313.5,231C 319.223,229.934 324.556,230.767 329.5,233.5 Z"/></g>
<g><path style="opacity:1" fill="#e3ab78" d="M 168.5,249.5 C 174.623,251.678 176.79,256.011 175,262.5C 174.617,263.056 174.117,263.389 173.5,263.5C 174.435,260.887 174.602,258.221 174,255.5C 171.96,253.63 170.127,251.63 168.5,249.5 Z"/></g>
<g><path style="opacity:1" fill="#fab058" d="M 335.5,195.5 C 342.75,195.928 349.417,198.094 355.5,202C 360.409,209.023 365.409,215.856 370.5,222.5C 369.978,223.607 369.645,224.774 369.5,226C 374.136,241.882 371.969,256.716 363,270.5C 361.989,271.337 360.822,271.67 359.5,271.5C 359.649,272.552 359.483,273.552 359,274.5C 352.545,281.89 344.711,286.223 335.5,287.5C 335.5,286.5 335.5,285.5 335.5,284.5C 340.309,284.096 344.309,282.096 347.5,278.5C 348.689,277.571 350.022,277.238 351.5,277.5C 351.5,275.5 351.5,273.5 351.5,271.5C 352.822,271.67 353.989,271.337 355,270.5C 358.257,264.905 361.424,259.238 364.5,253.5C 366.907,243.66 367.907,233.66 367.5,223.5C 366.167,223.5 364.833,223.5 363.5,223.5C 362.503,218.645 360.336,214.312 357,210.5C 353.724,209.21 351.724,206.877 351,203.5C 350.667,203.833 350.333,204.167 350,204.5C 344.928,201.535 340.095,198.535 335.5,195.5 Z"/></g>
<g><path style="opacity:1" fill="#f49f57" d="M 577.5,254.5 C 565.89,247.358 554.723,248.025 544,256.5C 538.9,262.648 537.233,269.648 539,277.5C 541.688,282.706 545.855,285.706 551.5,286.5C 552.167,286.5 552.833,286.5 553.5,286.5C 548.956,286.876 544.29,287.21 539.5,287.5C 539.5,289.5 539.5,291.5 539.5,293.5C 537.227,293.043 535.894,291.71 535.5,289.5C 536.174,287.976 537.174,286.642 538.5,285.5C 537.031,282.875 536.365,280.042 536.5,277C 537.333,271.51 537.5,266.01 537,260.5C 536.333,259.833 535.667,259.167 535,258.5C 533.171,260.156 531.837,262.156 531,264.5C 531.38,270.026 531.213,275.526 530.5,281C 531.394,282.396 532.061,283.896 532.5,285.5C 529.928,289.205 529.262,293.205 530.5,297.5C 529.205,300.379 528.538,303.379 528.5,306.5C 528.628,298.318 528.294,289.984 527.5,281.5C 528.736,276.933 529.402,272.266 529.5,267.5C 530.206,261.425 532.539,256.092 536.5,251.5C 537.404,250.791 537.737,249.791 537.5,248.5C 537.833,248.5 538.167,248.5 538.5,248.5C 538.5,247.833 538.833,247.5 539.5,247.5C 541.062,247.267 542.395,246.6 543.5,245.5C 543.62,246.586 544.287,247.253 545.5,247.5C 548.464,248.472 551.464,248.638 554.5,248C 555.167,247 555.833,246 556.5,245C 560.295,244.163 563.961,244.496 567.5,246C 566.833,246.667 566.167,247.333 565.5,248C 569.084,249.073 572.75,249.74 576.5,250C 577.38,251.356 577.714,252.856 577.5,254.5 Z"/></g>
<g><path style="opacity:1" fill="#f7a644" d="M 538.5,248.5 C 541.721,249.505 545.054,250.339 548.5,251C 546.759,252.62 544.925,254.12 543,255.5C 541.759,253.579 540.259,253.246 538.5,254.5C 539.325,255.386 540.325,255.719 541.5,255.5C 541.833,258.5 540.5,259.833 537.5,259.5C 537.773,257.549 537.107,256.049 535.5,255C 537.919,253.491 538.919,251.325 538.5,248.5 Z"/></g>
<g><path style="opacity:1" fill="#f2a05b" d="M 59.5,255.5 C 56.7657,258.625 54.2657,261.958 52,265.5C 50.7101,269.73 50.2101,274.064 50.5,278.5C 47.6887,278.826 45.022,279.659 42.5,281C 38.5959,285.064 34.9293,289.23 31.5,293.5C 32.6716,291.156 32.6716,288.823 31.5,286.5C 36.2105,285.29 39.5438,282.456 41.5,278C 44.146,277.503 46.8127,277.336 49.5,277.5C 49.334,272.156 49.5006,266.823 50,261.5C 53.4255,258.973 55.4255,255.64 56,251.5C 56.49,252.793 56.6567,254.127 56.5,255.5C 57.5,255.5 58.5,255.5 59.5,255.5 Z"/></g>
<g><path style="opacity:1" fill="#f9a445" d="M 150.5,265.5 C 149.685,266.429 148.852,267.429 148,268.5C 147.667,268.167 147.333,267.833 147,267.5C 146.643,271.51 146.81,275.51 147.5,279.5C 147.5,280.167 147.5,280.833 147.5,281.5C 146.5,281.5 145.5,281.5 144.5,281.5C 144.002,276.848 143.669,272.181 143.5,267.5C 143.5,266.833 143.5,266.167 143.5,265.5C 145.975,264.313 146.975,262.313 146.5,259.5C 147.833,259.5 149.167,259.5 150.5,259.5C 150.5,261.5 150.5,263.5 150.5,265.5 Z"/></g>
<g><path style="opacity:1" fill="#db8740" d="M 221.5,223.5 C 221.799,225.604 221.466,227.604 220.5,229.5C 216.153,234.682 211.987,240.015 208,245.5C 205.569,248.417 204.402,251.75 204.5,255.5C 203.5,255.5 202.5,255.5 201.5,255.5C 199.026,264.422 195.859,273.089 192,281.5C 191.667,281.167 191.333,280.833 191,280.5C 190.408,283.694 190.574,286.861 191.5,290C 189.493,294.337 187.993,298.837 187,303.5C 186.333,314.167 186.333,324.833 187,335.5C 188.575,346.078 190.075,356.745 191.5,367.5C 190.833,367.5 190.167,367.5 189.5,367.5C 188.958,364.35 187.791,361.35 186,358.5C 184.227,342.27 183.394,326.103 183.5,310C 183.897,302.473 185.731,295.306 189,288.5C 189.499,284.848 189.665,281.182 189.5,277.5C 190.5,277.5 191.5,277.5 192.5,277.5C 192.519,275.94 192.852,274.44 193.5,273C 191.822,271.068 191.322,268.902 192,266.5C 194.185,262.142 196.518,257.809 199,253.5C 201.458,245.289 204.958,237.623 209.5,230.5C 210.735,230.279 211.735,229.612 212.5,228.5C 213.942,224.303 216.942,222.636 221.5,223.5 Z"/></g>
<g><path style="opacity:1" fill="#eca153" d="M 479.5,182.5 C 480.978,182.238 482.311,182.571 483.5,183.5C 486.784,186.759 489.118,190.593 490.5,195C 490.833,195.167 491.167,195.333 491.5,195.5C 492.429,194.311 492.762,192.978 492.5,191.5C 492.833,191.5 493.167,191.5 493.5,191.5C 495.008,197.195 498.008,201.862 502.5,205.5C 503.976,207.5 505.809,209.167 508,210.5C 509.156,220.839 513.156,229.839 520,237.5C 523.151,243.488 524.151,249.821 523,256.5C 521.361,259.742 520.361,263.076 520,266.5C 522.988,268.49 525.655,270.823 528,273.5C 528.191,271.292 528.691,269.292 529.5,267.5C 529.402,272.266 528.736,276.933 527.5,281.5C 525.45,277.939 522.783,274.772 519.5,272C 515.518,270.33 511.518,269.163 507.5,268.5C 517.238,262.8 520.404,254.467 517,243.5C 512.747,236.663 508.747,229.663 505,222.5C 504.206,219.529 503.539,216.529 503,213.5C 500,210.5 497,207.5 494,204.5C 490.372,196.207 485.538,188.874 479.5,182.5 Z"/></g>
<g><path style="opacity:1" fill="#f9f9f1" d="M 623.5,248.5 C 625.622,255.996 626.955,263.663 627.5,271.5C 627.808,273.924 627.474,276.257 626.5,278.5C 625.201,277.91 624.368,276.91 624,275.5C 623.517,276.448 623.351,277.448 623.5,278.5C 618.286,277.032 612.953,276.365 607.5,276.5C 607.5,274.833 607.5,273.167 607.5,271.5C 607.083,265.83 605.749,260.497 603.5,255.5C 602.776,249.936 601.442,244.603 599.5,239.5C 599.579,238.07 599.246,236.736 598.5,235.5C 596.257,234.526 593.924,234.192 591.5,234.5C 591.317,239.14 592.65,243.14 595.5,246.5C 596.672,253.522 598.005,260.522 599.5,267.5C 599.167,268.833 598.833,270.167 598.5,271.5C 596.751,266.126 595.085,260.793 593.5,255.5C 592.5,255.5 591.5,255.5 590.5,255.5C 589.253,249.952 587.586,244.618 585.5,239.5C 585.167,237.5 584.833,235.5 584.5,233.5C 584.5,231.833 584.5,230.167 584.5,228.5C 588.349,228.403 592.183,228.069 596,227.5C 598.775,227.409 601.275,228.076 603.5,229.5C 604.267,233.149 605.6,236.482 607.5,239.5C 607.5,241.167 607.5,242.833 607.5,244.5C 607.208,247.765 607.875,250.765 609.5,253.5C 608.963,254.741 608.296,255.908 607.5,257C 609.719,260.41 611.719,263.91 613.5,267.5C 613.5,268.833 613.5,270.167 613.5,271.5C 615.833,271.5 618.167,271.5 620.5,271.5C 620.344,265.884 619.344,260.551 617.5,255.5C 616.243,247.4 614.576,239.4 612.5,231.5C 612.16,227.869 612.994,224.536 615,221.5C 615.054,224.861 616.054,227.861 618,230.5C 618.728,233.23 618.562,235.897 617.5,238.5C 618.661,242.405 620.661,245.738 623.5,248.5 Z"/></g>
<g><path style="opacity:1" fill="#f0aa6d" d="M 150.5,265.5 C 149.786,270.339 148.786,275.006 147.5,279.5C 146.81,275.51 146.643,271.51 147,267.5C 147.333,267.833 147.667,268.167 148,268.5C 148.852,267.429 149.685,266.429 150.5,265.5 Z"/></g>
<g><path style="opacity:1" fill="#620000" d="M 425.5,239.5 C 426.094,244.373 428.427,248.039 432.5,250.5C 433.137,253.107 434.304,255.44 436,257.5C 439.14,267.417 442.974,277.084 447.5,286.5C 446.268,289.3 445.601,292.3 445.5,295.5C 447.163,308.783 447.83,322.116 447.5,335.5C 446.5,335.5 445.5,335.5 444.5,335.5C 443,343.348 441,351.015 438.5,358.5C 438.709,359.086 439.043,359.586 439.5,360C 437.719,364.948 435.219,369.448 432,373.5C 431.794,376.623 431.127,379.623 430,382.5C 428.989,383.337 427.822,383.67 426.5,383.5C 426.657,384.873 426.49,386.207 426,387.5C 423.046,391.075 420.879,395.075 419.5,399.5C 411.726,405.853 404.726,413.019 398.5,421C 392.52,424.3 386.52,427.634 380.5,431C 375.954,431.705 371.621,432.871 367.5,434.5C 367.5,435.5 367.5,436.5 367.5,437.5C 357.525,439.427 347.525,441.427 337.5,443.5C 330.562,441.889 323.728,442.222 317,444.5C 311.749,442.248 306.249,441.081 300.5,441C 296.332,438.75 292.332,436.25 288.5,433.5C 287.232,434.428 285.899,434.595 284.5,434C 281.358,428.358 277.025,423.858 271.5,420.5C 259.521,401.002 257.854,380.668 266.5,359.5C 268.221,356.798 269.888,354.131 271.5,351.5C 273.167,351.5 274.833,351.5 276.5,351.5C 276.544,347.91 278.211,345.41 281.5,344C 288.373,339.72 295.707,336.887 303.5,335.5C 296.702,338.732 290.036,342.232 283.5,346C 280.273,349.1 278.44,352.933 278,357.5C 274.273,360.015 272.106,363.349 271.5,367.5C 270.167,367.5 268.833,367.5 267.5,367.5C 266.269,373.614 265.269,379.78 264.5,386C 265.099,390.489 265.599,394.989 266,399.5C 268.165,403.829 270.331,408.163 272.5,412.5C 278.373,419.541 285.04,425.707 292.5,431C 300.655,433.417 308.988,435.75 317.5,438C 328.939,438.965 340.272,438.298 351.5,436C 355.175,435.443 358.508,434.11 361.5,432C 363.473,431.505 365.473,431.338 367.5,431.5C 367.5,430.167 367.5,428.833 367.5,427.5C 374.95,426.294 381.95,423.794 388.5,420C 397.279,411.221 406.113,402.387 415,393.5C 416.563,390.414 418.397,387.414 420.5,384.5C 421.325,383.614 422.325,383.281 423.5,383.5C 423.907,377.872 425.24,372.538 427.5,367.5C 428.833,367.5 430.167,367.5 431.5,367.5C 431.5,362.167 431.5,356.833 431.5,351.5C 433.167,351.5 434.833,351.5 436.5,351.5C 438.719,338.218 440.719,324.885 442.5,311.5C 441.699,305.628 441.699,299.795 442.5,294C 440.175,284.896 438.009,275.73 436,266.5C 435.482,263.977 434.148,261.977 432,260.5C 431.506,258.866 431.34,257.199 431.5,255.5C 427.307,249.803 424.14,243.47 422,236.5C 417.563,233.09 414.063,228.923 411.5,224C 409.153,222.97 406.819,222.303 404.5,222C 404.167,222.333 403.833,222.667 403.5,223C 404.452,231.117 405.452,239.284 406.5,247.5C 405.755,256.813 403.589,265.813 400,274.5C 399.505,276.473 399.338,278.473 399.5,280.5C 399.5,281.5 399.5,282.5 399.5,283.5C 397.856,283.286 396.356,283.62 395,284.5C 391.288,291.014 387.454,297.348 383.5,303.5C 381.396,303.201 379.396,303.534 377.5,304.5C 375.147,308.335 371.814,310.668 367.5,311.5C 367.5,310.5 367.5,309.5 367.5,308.5C 372.519,308.818 375.519,306.485 376.5,301.5C 384.066,294.675 389.9,286.675 394,277.5C 394.495,275.527 394.662,273.527 394.5,271.5C 394.833,271.5 395.167,271.5 395.5,271.5C 398.674,259.872 400.674,247.872 401.5,235.5C 398.351,228.057 397.851,220.39 400,212.5C 403.474,213.32 406.641,214.82 409.5,217C 417.193,222.909 422.526,230.409 425.5,239.5 Z"/></g>
<g><path style="opacity:1" fill="#700001" d="M 431.5,255.5 C 429.801,255.66 428.134,255.494 426.5,255C 425.206,252.913 424.039,250.746 423,248.5C 420.667,244.5 418.333,244.5 416,248.5C 415.502,245.518 415.335,242.518 415.5,239.5C 414.5,239.5 413.5,239.5 412.5,239.5C 412.331,235.421 411.331,234.921 409.5,238C 410.434,243.785 410.768,249.618 410.5,255.5C 409.5,255.5 408.5,255.5 407.5,255.5C 407.452,262.897 405.952,270.23 403,277.5C 402.241,279.063 401.074,280.063 399.5,280.5C 399.338,278.473 399.505,276.473 400,274.5C 403.589,265.813 405.755,256.813 406.5,247.5C 405.452,239.284 404.452,231.117 403.5,223C 403.833,222.667 404.167,222.333 404.5,222C 406.819,222.303 409.153,222.97 411.5,224C 414.063,228.923 417.563,233.09 422,236.5C 424.14,243.47 427.307,249.803 431.5,255.5 Z"/></g>
<g><path style="opacity:1" fill="#faa340" d="M 631.5,255.5 C 631.833,255.5 632.167,255.5 632.5,255.5C 632.377,259.783 633.044,263.95 634.5,268C 632.806,274.389 632.139,280.889 632.5,287.5C 633.5,287.5 634.5,287.5 635.5,287.5C 634.292,306.833 634.292,326.167 635.5,345.5C 635.333,348.833 635.167,352.167 635,355.5C 634.617,356.056 634.117,356.389 633.5,356.5C 632.722,334.853 632.222,313.186 632,291.5C 631.79,289.942 631.29,288.609 630.5,287.5C 629.833,287.5 629.167,287.5 628.5,287.5C 628.939,281.094 629.939,274.76 631.5,268.5C 630.335,264.007 630.335,259.673 631.5,255.5 Z"/></g>
<g><path style="opacity:1" fill="#f8a448" d="M 63.5,245.5 C 66.7144,246.282 70.0477,247.115 73.5,248C 69.2486,249.195 64.9152,249.695 60.5,249.5C 60.5,251.167 60.5,252.833 60.5,254.5C 60.5,255.167 60.1667,255.5 59.5,255.5C 58.5,255.5 57.5,255.5 56.5,255.5C 56.6567,254.127 56.49,252.793 56,251.5C 55.4255,255.64 53.4255,258.973 50,261.5C 49.5006,266.823 49.334,272.156 49.5,277.5C 46.8127,277.336 44.146,277.503 41.5,278C 39.5438,282.456 36.2105,285.29 31.5,286.5C 32.6716,288.823 32.6716,291.156 31.5,293.5C 31.5,294.167 31.5,294.833 31.5,295.5C 29.9102,295.628 28.5769,296.295 27.5,297.5C 26.9812,303.282 24.8145,308.282 21,312.5C 20.0153,314.366 19.5153,316.366 19.5,318.5C 21.8374,325.169 24.1707,331.835 26.5,338.5C 27.4636,341.807 27.9636,345.141 28,348.5C 25.5541,346.054 23.0541,343.554 20.5,341C 18.8925,341.019 17.2259,341.185 15.5,341.5C 15.5,336.833 15.5,332.167 15.5,327.5C 13.281,322.295 12.9476,316.961 14.5,311.5C 15.1376,303.557 15.8042,295.557 16.5,287.5C 18.7989,288.635 20.9656,289.968 23,291.5C 23.7894,289.42 24.9561,287.586 26.5,286C 24.9818,284.649 23.6485,283.149 22.5,281.5C 20.1032,278.945 17.2698,276.945 14,275.5C 13.1558,273.537 13.6558,272.204 15.5,271.5C 15.8333,271.5 16.1667,271.5 16.5,271.5C 16.4142,272.496 16.7476,273.329 17.5,274C 21.6966,275.929 25.6966,278.096 29.5,280.5C 35.532,280.468 38.532,277.468 38.5,271.5C 36.2627,270.551 33.9294,269.884 31.5,269.5C 31.5,269.167 31.5,268.833 31.5,268.5C 28.054,267.012 25.2206,264.678 23,261.5C 23.1851,254.064 24.3518,246.731 26.5,239.5C 27.456,246.505 27.6227,253.505 27,260.5C 29.126,262.377 31.626,263.377 34.5,263.5C 35.4916,263.328 36.1583,263.662 36.5,264.5C 37.8935,268.203 40.2269,269.037 43.5,267C 44.2463,263.153 45.5796,259.653 47.5,256.5C 49.986,250.222 52.3194,243.889 54.5,237.5C 56.2246,234.812 57.558,235.145 58.5,238.5C 57.6319,241.468 57.2986,244.301 57.5,247C 59.8401,247.748 61.8401,247.248 63.5,245.5 Z"/></g>
<g><path style="opacity:1" fill="#e9b074" d="M 47.5,256.5 C 45.5796,259.653 44.2463,263.153 43.5,267C 40.2269,269.037 37.8935,268.203 36.5,264.5C 38.3146,265.63 40.3146,266.296 42.5,266.5C 42.6586,262.326 44.3253,258.992 47.5,256.5 Z"/></g>
<g><path style="opacity:1" fill="#f5a54f" d="M 591.5,151.5 C 593.733,156.277 596.733,160.61 600.5,164.5C 603.28,169.916 605.613,175.583 607.5,181.5C 608.731,186.723 609.897,192.057 611,197.5C 614.273,200.436 616.773,203.769 618.5,207.5C 621.657,210.692 623.323,214.692 623.5,219.5C 623.232,221.099 623.566,222.432 624.5,223.5C 624.497,227.524 624.164,231.524 623.5,235.5C 623.974,240.627 624.974,240.627 626.5,235.5C 627.192,236.025 627.692,236.692 628,237.5C 629.872,243.305 631.038,249.305 631.5,255.5C 630.335,259.673 630.335,264.007 631.5,268.5C 629.939,274.76 628.939,281.094 628.5,287.5C 626.833,287.5 625.167,287.5 623.5,287.5C 623.5,286.5 623.5,285.5 623.5,284.5C 619.661,282.833 615.661,282.333 611.5,283C 610.087,285.202 608.587,287.368 607,289.5C 605.101,287.367 603.935,284.867 603.5,282C 600.727,280.518 598.06,278.852 595.5,277C 593.765,276.349 592.098,276.515 590.5,277.5C 590.668,269.496 588.002,262.662 582.5,257C 584.211,255.867 584.711,254.367 584,252.5C 583.092,254.439 581.592,255.439 579.5,255.5C 578.833,255.167 578.167,254.833 577.5,254.5C 577.714,252.856 577.38,251.356 576.5,250C 572.75,249.74 569.084,249.073 565.5,248C 566.167,247.333 566.833,246.667 567.5,246C 563.961,244.496 560.295,244.163 556.5,245C 555.833,246 555.167,247 554.5,248C 551.464,248.638 548.464,248.472 545.5,247.5C 544.287,247.253 543.62,246.586 543.5,245.5C 543.842,244.662 544.508,244.328 545.5,244.5C 548.988,244.295 552.321,243.461 555.5,242C 559.486,241.501 563.486,241.334 567.5,241.5C 572.255,241.373 576.588,242.706 580.5,245.5C 581.089,243.519 580.755,241.519 579.5,239.5C 579.337,237.143 579.503,234.81 580,232.5C 581,233.167 582,233.833 583,234.5C 583.374,236.491 584.207,238.158 585.5,239.5C 586.43,243.796 587.263,248.13 588,252.5C 588.236,254.119 589.069,255.119 590.5,255.5C 591.5,255.5 592.5,255.5 593.5,255.5C 595.085,260.793 596.751,266.126 598.5,271.5C 598.833,270.167 599.167,268.833 599.5,267.5C 598.005,260.522 596.672,253.522 595.5,246.5C 596.097,243.626 597.431,241.292 599.5,239.5C 601.442,244.603 602.776,249.936 603.5,255.5C 603.177,259.226 603.511,262.893 604.5,266.5C 605.001,268.655 606.001,270.322 607.5,271.5C 607.5,273.167 607.5,274.833 607.5,276.5C 611.858,277.103 616.191,278.27 620.5,280C 623.146,280.497 625.813,280.664 628.5,280.5C 628.81,277.287 628.477,274.287 627.5,271.5C 626.955,263.663 625.622,255.996 623.5,248.5C 621.024,236.25 617.857,224.25 614,212.5C 613.292,211.619 612.458,210.953 611.5,210.5C 611.715,208.821 611.048,207.821 609.5,207.5C 610.01,204.612 609.344,202.279 607.5,200.5C 605.339,195.365 603.339,190.032 601.5,184.5C 601.66,182.801 601.494,181.134 601,179.5C 599.45,178.409 598.283,177.076 597.5,175.5C 593.194,168.908 588.861,162.241 584.5,155.5C 582.5,151.5 580.5,147.5 578.5,143.5C 578.5,142.167 578.5,140.833 578.5,139.5C 579.978,139.238 581.311,139.571 582.5,140.5C 584.578,143.366 586.411,146.366 588,149.5C 588.816,150.823 589.983,151.489 591.5,151.5 Z"/></g>
<g><path style="opacity:1" fill="#efb56a" d="M 603.5,255.5 C 605.749,260.497 607.083,265.83 607.5,271.5C 606.001,270.322 605.001,268.655 604.5,266.5C 603.511,262.893 603.177,259.226 603.5,255.5 Z"/></g>
<g><path style="opacity:1" fill="#fcf0d1" d="M 607.5,244.5 C 609.742,252.004 611.742,259.67 613.5,267.5C 611.719,263.91 609.719,260.41 607.5,257C 608.296,255.908 608.963,254.741 609.5,253.5C 607.875,250.765 607.208,247.765 607.5,244.5 Z"/></g>
<g><path style="opacity:1" fill="#eebb7f" d="M 585.5,239.5 C 587.586,244.618 589.253,249.952 590.5,255.5C 589.069,255.119 588.236,254.119 588,252.5C 587.263,248.13 586.43,243.796 585.5,239.5 Z"/></g>
<g><path style="opacity:1" fill="#faa447" d="M 617.5,255.5 C 618.164,260.473 618.497,265.473 618.5,270.5C 617.5,270.5 616.5,270.5 615.5,270.5C 614.114,261.052 612.114,251.718 609.5,242.5C 609.76,240.382 610.76,238.716 612.5,237.5C 613.459,242.67 614.459,247.837 615.5,253C 615.684,254.376 616.351,255.209 617.5,255.5 Z"/></g>
<g><path style="opacity:1" fill="#f1ad65" d="M 599.5,239.5 C 597.431,241.292 596.097,243.626 595.5,246.5C 592.65,243.14 591.317,239.14 591.5,234.5C 593.924,234.192 596.257,234.526 598.5,235.5C 599.246,236.736 599.579,238.07 599.5,239.5 Z"/></g>
<g><path style="opacity:1" fill="#f09e47" d="M 298.5,239.5 C 297.059,250.269 300.726,258.603 309.5,264.5C 307.5,264.167 305.5,263.833 303.5,263.5C 302.451,267.831 304.118,269.997 308.5,270C 312.412,274.783 317.412,276.45 323.5,275C 326.869,272.316 330.536,270.149 334.5,268.5C 335.308,266.577 335.808,264.577 336,262.5C 336.718,263.451 337.551,263.617 338.5,263C 337.657,261.213 337.49,259.38 338,257.5C 337.329,258.252 336.496,258.586 335.5,258.5C 335.285,256.821 335.952,255.821 337.5,255.5C 339.908,250.583 341.075,245.249 341,239.5C 341.333,240.167 341.667,240.833 342,241.5C 342.71,240.027 343.876,239.36 345.5,239.5C 345.5,241.167 345.5,242.833 345.5,244.5C 347.301,253.208 345.135,260.541 339,266.5C 338.727,268.101 338.227,269.601 337.5,271C 331.811,274.348 325.811,276.848 319.5,278.5C 317.291,278.396 315.124,278.063 313,277.5C 310.168,275.167 307.001,273.501 303.5,272.5C 301.735,271.539 299.735,271.205 297.5,271.5C 295.893,267.661 294.393,263.661 293,259.5C 292.5,252.842 292.334,246.175 292.5,239.5C 294.5,239.5 296.5,239.5 298.5,239.5 Z"/></g>
<g><path style="opacity:1" fill="#450908" d="M 302.5,239.5 C 305.107,255.298 314.107,260.298 329.5,254.5C 330.653,251.848 332.487,249.848 335,248.5C 335.498,245.518 335.665,242.518 335.5,239.5C 335.833,239.5 336.167,239.5 336.5,239.5C 336.833,239.5 337.167,239.5 337.5,239.5C 338.571,253.246 332.405,261.246 319,263.5C 305.352,261.224 299.852,253.224 302.5,239.5 Z"/></g>
<g><path style="opacity:1" fill="#e9a763" d="M 31.5,269.5 C 33.9294,269.884 36.2627,270.551 38.5,271.5C 38.532,277.468 35.532,280.468 29.5,280.5C 25.6966,278.096 21.6966,275.929 17.5,274C 16.7476,273.329 16.4142,272.496 16.5,271.5C 21.064,273.741 25.564,276.075 30,278.5C 32.641,277.432 34.8076,275.765 36.5,273.5C 34.4138,272.511 32.7471,271.178 31.5,269.5 Z"/></g>
<g><path style="opacity:1" fill="#f9ad55" d="M 345.5,244.5 C 346.651,249.65 346.817,254.984 346,260.5C 342.911,263.918 341.244,267.918 341,272.5C 339.736,274.607 337.903,275.607 335.5,275.5C 335.67,276.822 335.337,277.989 334.5,279C 328.086,281.365 321.419,282.032 314.5,281C 310.986,279.438 307.319,278.605 303.5,278.5C 303.5,276.5 303.5,274.5 303.5,272.5C 307.001,273.501 310.168,275.167 313,277.5C 315.124,278.063 317.291,278.396 319.5,278.5C 325.811,276.848 331.811,274.348 337.5,271C 338.227,269.601 338.727,268.101 339,266.5C 345.135,260.541 347.301,253.208 345.5,244.5 Z"/></g>
<g><path style="opacity:1" fill="#efab62" d="M 13.5,258.5 C 13.3305,260.848 12.9971,263.182 12.5,265.5C 13.2726,267.68 14.2726,269.68 15.5,271.5C 13.6558,272.204 13.1558,273.537 14,275.5C 17.2698,276.945 20.1032,278.945 22.5,281.5C 20.7085,281.634 19.0418,281.301 17.5,280.5C 15.6529,279.313 13.8195,277.979 12,276.5C 11.5,276.833 11,277.167 10.5,277.5C 9.63858,283.646 8.63858,289.646 7.5,295.5C 8.09304,288.511 6.92637,281.844 4,275.5C 3.78997,277.058 3.28997,278.391 2.5,279.5C 2.45046,272.859 3.45046,266.526 5.5,260.5C 3.82574,266.55 4.65908,272.217 8,277.5C 10.7687,274.78 11.4353,271.78 10,268.5C 8.93481,272.378 8.10148,272.378 7.5,268.5C 8.32214,266.212 8.9888,263.878 9.5,261.5C 8.73992,253.611 9.40659,253.611 11.5,261.5C 12.1757,260.398 12.8423,259.398 13.5,258.5 Z"/></g>
<g><path style="opacity:1" fill="#efa467" d="M 564.5,293.5 C 562.688,293.229 561.022,292.562 559.5,291.5C 565.579,290.258 567.745,286.591 566,280.5C 563.782,278.381 561.282,278.048 558.5,279.5C 557.877,282.215 557.543,284.882 557.5,287.5C 557.062,284.705 556.062,282.372 554.5,280.5C 558.427,275.543 562.927,275.21 568,279.5C 569.393,284.949 568.226,289.616 564.5,293.5 Z"/></g>
<g><path style="opacity:1" fill="#fdefce" d="M 627.5,271.5 C 628.477,274.287 628.81,277.287 628.5,280.5C 625.813,280.664 623.146,280.497 620.5,280C 616.191,278.27 611.858,277.103 607.5,276.5C 612.953,276.365 618.286,277.032 623.5,278.5C 623.351,277.448 623.517,276.448 624,275.5C 624.368,276.91 625.201,277.91 626.5,278.5C 627.474,276.257 627.808,273.924 627.5,271.5 Z"/></g>
<g><path style="opacity:1" fill="#bf6e38" d="M 189.5,255.5 C 190.036,258.665 189.203,261.331 187,263.5C 186.5,271.505 186,279.505 185.5,287.5C 184.5,287.5 183.5,287.5 182.5,287.5C 182.785,285.712 182.452,284.045 181.5,282.5C 181.167,283 180.833,283.5 180.5,284C 180.244,287.076 180.077,290.242 180,293.5C 178.38,296.893 176.88,300.226 175.5,303.5C 176.331,286.345 180.998,270.345 189.5,255.5 Z"/></g>
<g><path style="opacity:1" fill="#760302" d="M 131.5,268.5 C 132.404,269.209 132.737,270.209 132.5,271.5C 135.5,271.5 138.5,271.5 141.5,271.5C 140.499,276.839 139.499,282.172 138.5,287.5C 134.52,308.828 134.52,330.161 138.5,351.5C 139.518,356.855 140.518,362.188 141.5,367.5C 137.662,367.022 134.329,368.022 131.5,370.5C 130.432,369.566 129.099,369.232 127.5,369.5C 116.387,366.955 110.721,359.955 110.5,348.5C 111.222,338.453 110.222,328.62 107.5,319C 109.593,313.871 110.926,308.538 111.5,303C 110.187,295.818 110.187,288.651 111.5,281.5C 113.554,277.942 116.22,274.775 119.5,272C 123.482,270.33 127.482,269.163 131.5,268.5 Z"/></g>
<g><path style="opacity:1" fill="#760302" d="M 507.5,268.5 C 511.518,269.163 515.518,270.33 519.5,272C 522.783,274.772 525.45,277.939 527.5,281.5C 528.294,289.984 528.628,298.318 528.5,306.5C 529.037,310.752 530.037,314.919 531.5,319C 528.778,328.62 527.778,338.453 528.5,348.5C 527.577,361.754 520.577,369.088 507.5,370.5C 504.671,368.022 501.338,367.022 497.5,367.5C 505.432,335.861 505.432,304.194 497.5,272.5C 501.049,271.726 504.382,270.393 507.5,268.5 Z"/></g>
<g><path style="opacity:1" fill="#e9b378" d="M 548.5,359.5 C 548.833,359.5 549.167,359.5 549.5,359.5C 547.896,373.398 553.896,379.231 567.5,377C 569.667,375.5 571.833,374 574,372.5C 575.707,370.091 576.54,367.425 576.5,364.5C 577.482,361.038 577.815,357.371 577.5,353.5C 583.031,352.601 587.864,350.268 592,346.5C 597.027,337.779 601.527,328.779 605.5,319.5C 602.23,309.837 597.73,300.837 592,292.5C 587.864,288.732 583.031,286.399 577.5,285.5C 580.259,268.604 573.259,260.771 556.5,262C 549.967,266.372 547.634,272.538 549.5,280.5C 545.315,271.888 547.315,265.054 555.5,260C 573.215,257.881 581.215,265.715 579.5,283.5C 587,285.057 592.834,289.057 597,295.5C 601.866,303.676 605.199,312.343 607,321.5C 603.62,330.64 599.286,339.306 594,347.5C 589.808,351.032 585.141,353.698 580,355.5C 581.552,369.428 575.552,377.761 562,380.5C 549.962,378.435 545.462,371.435 548.5,359.5 Z"/></g>
<g><path style="opacity:1" fill="#f4a352" d="M 82.5,241.5 C 83.5,241.5 84.5,241.5 85.5,241.5C 89.1513,242.659 92.4846,244.326 95.5,246.5C 97.2787,248.028 99.2787,249.362 101.5,250.5C 102.167,250.5 102.5,250.833 102.5,251.5C 107.578,257.89 110.411,265.223 111,273.5C 111.708,272.619 112.542,271.953 113.5,271.5C 114.097,271.735 114.43,272.235 114.5,273C 112.566,275.502 111.566,278.336 111.5,281.5C 110.187,288.651 110.187,295.818 111.5,303C 110.926,308.538 109.593,313.871 107.5,319C 110.222,328.62 111.222,338.453 110.5,348.5C 109.833,348.5 109.167,348.5 108.5,348.5C 107.5,348.5 106.5,348.5 105.5,348.5C 105.5,348.167 105.5,347.833 105.5,347.5C 107.028,338.09 106.695,328.756 104.5,319.5C 106.135,313.692 107.135,307.692 107.5,301.5C 107.393,297.533 106.727,294.2 105.5,291.5C 105.5,291.167 105.5,290.833 105.5,290.5C 106.558,291.6 107.392,292.934 108,294.5C 108.89,290.867 108.057,287.7 105.5,285C 106.833,282.667 108.167,280.333 109.5,278C 107.872,274.397 107.038,270.563 107,266.5C 105.818,262.968 104.152,259.634 102,256.5C 100.644,255.62 99.1439,255.286 97.5,255.5C 98.9629,259.105 100.463,262.771 102,266.5C 102.879,271.838 102.379,277.004 100.5,282C 98.9716,283.361 97.3049,284.528 95.5,285.5C 94.8933,285.376 94.56,285.043 94.5,284.5C 100.239,279.08 102.073,272.413 100,264.5C 93.9511,253.224 84.4511,248.391 71.5,250C 67.5741,251.027 63.9074,252.527 60.5,254.5C 60.5,252.833 60.5,251.167 60.5,249.5C 64.9152,249.695 69.2486,249.195 73.5,248C 70.0477,247.115 66.7144,246.282 63.5,245.5C 66.0606,245.553 68.0606,244.553 69.5,242.5C 73.7828,241.508 78.1161,241.174 82.5,241.5 Z"/></g>
<g><path style="opacity:1" fill="#f1a059" d="M 623.5,287.5 C 620.797,287.045 618.13,286.378 615.5,285.5C 614.833,285.833 614.167,286.167 613.5,286.5C 614.942,289.05 616.108,291.716 617,294.5C 619.63,294.859 621.797,295.859 623.5,297.5C 621.073,297.477 618.74,296.977 616.5,296C 615.363,293.03 613.363,290.864 610.5,289.5C 608.45,290.077 607.45,291.41 607.5,293.5C 604.258,288.586 600.258,284.253 595.5,280.5C 593.271,279.423 590.937,278.756 588.5,278.5C 588.79,274.064 588.29,269.73 587,265.5C 584.734,261.958 582.234,258.625 579.5,255.5C 581.592,255.439 583.092,254.439 584,252.5C 584.711,254.367 584.211,255.867 582.5,257C 588.002,262.662 590.668,269.496 590.5,277.5C 592.098,276.515 593.765,276.349 595.5,277C 598.06,278.852 600.727,280.518 603.5,282C 603.935,284.867 605.101,287.367 607,289.5C 608.587,287.368 610.087,285.202 611.5,283C 615.661,282.333 619.661,282.833 623.5,284.5C 623.5,285.5 623.5,286.5 623.5,287.5 Z"/></g>
<g><path style="opacity:1" fill="#440203" d="M 436.5,234.5 C 441.341,239.354 445.007,245.02 447.5,251.5C 447.343,252.873 447.51,254.207 448,255.5C 456.081,270.441 460.248,286.441 460.5,303.5C 461.5,303.5 462.5,303.5 463.5,303.5C 464.759,315.353 464.759,327.353 463.5,339.5C 462.883,339.389 462.383,339.056 462,338.5C 460.482,344.244 458.815,349.911 457,355.5C 456.693,352.124 454.86,350.79 451.5,351.5C 451.5,346.167 451.5,340.833 451.5,335.5C 452.5,335.5 453.5,335.5 454.5,335.5C 454.833,324.833 455.167,314.167 455.5,303.5C 454.167,303.5 452.833,303.5 451.5,303.5C 451.322,298.961 451.655,294.461 452.5,290C 451.117,286.633 450.283,283.133 450,279.5C 449.333,280.833 448.667,280.833 448,279.5C 447.503,276.854 447.336,274.187 447.5,271.5C 447.34,269.801 447.506,268.134 448,266.5C 448.414,266.957 448.914,267.291 449.5,267.5C 450.218,264.758 449.718,262.091 448,259.5C 447.781,260.938 447.281,262.271 446.5,263.5C 445.304,263.154 445.304,262.654 446.5,262C 443.999,258.831 443.332,255.331 444.5,251.5C 443.726,250.289 442.893,250.289 442,251.5C 441.667,250.167 441.333,248.833 441,247.5C 440.667,247.833 440.333,248.167 440,248.5C 436.796,246.6 434.962,243.767 434.5,240C 435.938,239.781 437.271,239.281 438.5,238.5C 437.37,237.378 436.703,236.044 436.5,234.5 Z"/></g>
<g><path style="opacity:1" fill="#fdecca" d="M 637.5,279.5 C 638.167,280.833 638.833,282.167 639.5,283.5C 639.5,288.833 639.5,294.167 639.5,299.5C 637.874,293.072 637.207,286.405 637.5,279.5 Z"/></g>
<g><path style="opacity:1" fill="#efa95e" d="M 165.5,288.5 C 165.078,300.52 164.411,312.52 163.5,324.5C 163.802,327.059 163.468,329.393 162.5,331.5C 162.5,322.167 162.5,312.833 162.5,303.5C 163.263,300.859 163.43,298.192 163,295.5C 159.132,292.901 155.132,290.567 151,288.5C 151.256,278.054 153.59,268.054 158,258.5C 158.741,257.359 159.575,257.359 160.5,258.5C 160.066,265.674 158.232,272.674 155,279.5C 154.333,281.5 154.333,283.5 155,285.5C 157.803,287.094 160.636,288.761 163.5,290.5C 164.182,289.757 164.849,289.091 165.5,288.5 Z"/></g>
<g><path style="opacity:1" fill="#f0a45d" d="M 85.5,281.5 C 85.5,283.167 85.5,284.833 85.5,286.5C 87.5648,286.483 89.5648,286.15 91.5,285.5C 89.7211,287.344 87.3878,288.01 84.5,287.5C 84.8709,280.491 81.5376,277.991 74.5,280C 72.6476,284.683 73.6476,288.683 77.5,292C 77.0969,293.473 76.4303,294.806 75.5,296C 82.195,296.665 88.8616,296.498 95.5,295.5C 94.7375,296.268 93.7375,296.768 92.5,297C 85.4505,297.76 78.4505,297.593 71.5,296.5C 71.5,295.833 71.5,295.167 71.5,294.5C 72.675,294.719 73.675,294.386 74.5,293.5C 69.6994,288.166 69.3661,282.666 73.5,277C 78.7173,275.47 82.7173,276.97 85.5,281.5 Z"/></g>
<g><path style="opacity:1" fill="#f8a648" d="M 105.5,290.5 C 105.631,289.761 105.464,289.094 105,288.5C 102.612,291.939 99.4455,294.272 95.5,295.5C 88.8616,296.498 82.195,296.665 75.5,296C 76.4303,294.806 77.0969,293.473 77.5,292C 73.6476,288.683 72.6476,284.683 74.5,280C 81.5376,277.991 84.8709,280.491 84.5,287.5C 87.3878,288.01 89.7211,287.344 91.5,285.5C 92.209,284.596 93.209,284.263 94.5,284.5C 94.56,285.043 94.8933,285.376 95.5,285.5C 97.3049,284.528 98.9716,283.361 100.5,282C 102.379,277.004 102.879,271.838 102,266.5C 100.463,262.771 98.9629,259.105 97.5,255.5C 99.1439,255.286 100.644,255.62 102,256.5C 104.152,259.634 105.818,262.968 107,266.5C 107.038,270.563 107.872,274.397 109.5,278C 108.167,280.333 106.833,282.667 105.5,285C 108.057,287.7 108.89,290.867 108,294.5C 107.392,292.934 106.558,291.6 105.5,290.5 Z"/></g>
<g><path style="opacity:1" fill="#730b07" d="M 94.5,284.5 C 93.209,284.263 92.209,284.596 91.5,285.5C 89.5648,286.15 87.5648,286.483 85.5,286.5C 85.5,284.833 85.5,283.167 85.5,281.5C 86.1667,282.167 86.8333,282.833 87.5,283.5C 87.56,284.043 87.8933,284.376 88.5,284.5C 89.3624,283.234 90.0291,281.901 90.5,280.5C 93.7363,264.901 87.4029,258.067 71.5,260C 61.1817,264.382 57.1817,272.216 59.5,283.5C 52.9002,284.916 47.4002,288.249 43,293.5C 38.5055,301.795 34.6721,310.462 31.5,319.5C 33.9492,324.73 36.1159,330.063 38,335.5C 41.5458,346.217 48.7124,352.884 59.5,355.5C 57.687,372.853 65.3536,380.686 82.5,379C 90.6099,374.936 93.4433,368.436 91,359.5C 90.3333,358.167 89.6667,356.833 89,355.5C 88.5357,356.094 88.369,356.761 88.5,357.5C 87.7784,357.082 87.2784,356.416 87,355.5C 86.7679,356.737 86.2679,357.737 85.5,358.5C 85.5,356.5 85.5,354.5 85.5,352.5C 100.046,355.253 104.379,363.586 98.5,377.5C 89.1563,389.441 77.4897,392.274 63.5,386C 54.7618,379.69 50.4285,371.19 50.5,360.5C 47.4359,360.856 44.7693,360.023 42.5,358C 38.2332,353.574 34.5665,348.741 31.5,343.5C 28.3761,335.252 24.7095,327.252 20.5,319.5C 24.5528,311.674 28.2195,303.674 31.5,295.5C 31.5,294.833 31.5,294.167 31.5,293.5C 34.9293,289.23 38.5959,285.064 42.5,281C 45.022,279.659 47.6887,278.826 50.5,278.5C 50.2101,274.064 50.7101,269.73 52,265.5C 54.2657,261.958 56.7657,258.625 59.5,255.5C 60.1667,255.5 60.5,255.167 60.5,254.5C 63.9074,252.527 67.5741,251.027 71.5,250C 84.4511,248.391 93.9511,253.224 100,264.5C 102.073,272.413 100.239,279.08 94.5,284.5 Z"/></g>
<g><path style="opacity:1" fill="#a36151" d="M 89.5,279.5 C 89.5,280.167 89.8333,280.5 90.5,280.5C 90.0291,281.901 89.3624,283.234 88.5,284.5C 87.8933,284.376 87.56,284.043 87.5,283.5C 87.6596,281.847 88.3263,280.514 89.5,279.5 Z"/></g>
<g><path style="opacity:1" fill="#f3a75c" d="M 143.5,267.5 C 143.669,272.181 144.002,276.848 144.5,281.5C 145.5,281.5 146.5,281.5 147.5,281.5C 146.505,284.464 146.005,287.464 146,290.5C 149.535,293.855 153.702,296.188 158.5,297.5C 159.466,299.396 159.799,301.396 159.5,303.5C 158.671,310.321 158.171,317.321 158,324.5C 156.855,325.684 155.688,325.684 154.5,324.5C 153.917,316.957 154.584,309.624 156.5,302.5C 154.044,300.433 151.378,298.599 148.5,297C 146.975,295.991 145.308,295.491 143.5,295.5C 143.5,308.833 143.5,322.167 143.5,335.5C 142.307,335.03 141.64,334.03 141.5,332.5C 140.952,328.688 140.619,324.855 140.5,321C 141.193,309.049 142.526,297.216 144.5,285.5C 142.736,278.135 141.736,278.801 141.5,287.5C 140.5,287.5 139.5,287.5 138.5,287.5C 139.499,282.172 140.499,276.839 141.5,271.5C 142.167,270.167 142.833,268.833 143.5,267.5 Z"/></g>
<g><path style="opacity:1" fill="#f7a44c" d="M 564.5,293.5 C 564.842,294.338 565.508,294.672 566.5,294.5C 566.833,295.167 567.167,295.833 567.5,296.5C 559.869,297.564 552.202,297.731 544.5,297C 542.767,295.811 541.1,294.644 539.5,293.5C 539.5,291.5 539.5,289.5 539.5,287.5C 544.29,287.21 548.956,286.876 553.5,286.5C 553.205,284.265 553.539,282.265 554.5,280.5C 556.062,282.372 557.062,284.705 557.5,287.5C 557.543,284.882 557.877,282.215 558.5,279.5C 561.282,278.048 563.782,278.381 566,280.5C 567.745,286.591 565.579,290.258 559.5,291.5C 561.022,292.562 562.688,293.229 564.5,293.5 Z"/></g>
<g><path style="opacity:1" fill="#fbf6e7" d="M 623.5,287.5 C 625.167,287.5 626.833,287.5 628.5,287.5C 629.167,287.5 629.833,287.5 630.5,287.5C 632.199,311.55 631.699,335.55 629,359.5C 628.076,361.495 626.91,361.828 625.5,360.5C 626.765,359.486 627.431,357.986 627.5,356C 628.007,346.946 629.007,337.946 630.5,329C 630.333,326.833 630.167,324.667 630,322.5C 629.617,321.944 629.117,321.611 628.5,321.5C 629.25,317.225 627.917,313.891 624.5,311.5C 623.514,307.03 623.181,302.363 623.5,297.5C 621.797,295.859 619.63,294.859 617,294.5C 616.108,291.716 614.942,289.05 613.5,286.5C 614.167,286.167 614.833,285.833 615.5,285.5C 618.13,286.378 620.797,287.045 623.5,287.5 Z"/></g>
<g><path style="opacity:1" fill="#edb56e" d="M 171.5,287.5 C 171.042,291.538 170.376,295.538 169.5,299.5C 169.5,300.833 169.5,302.167 169.5,303.5C 169.167,303.5 168.833,303.5 168.5,303.5C 168.676,298.12 168.342,292.787 167.5,287.5C 168.833,287.5 170.167,287.5 171.5,287.5 Z"/></g>
<g><path style="opacity:1" fill="#3c1215" d="M 447.5,251.5 C 457.043,267.466 462.376,284.799 463.5,303.5C 462.5,303.5 461.5,303.5 460.5,303.5C 460.248,286.441 456.081,270.441 448,255.5C 447.51,254.207 447.343,252.873 447.5,251.5 Z"/></g>
<g><path style="opacity:1" fill="#440a07" d="M 576.5,364.5 C 576.5,359.5 576.5,354.5 576.5,349.5C 578.06,349.481 579.56,349.148 581,348.5C 581.945,348.905 582.612,349.572 583,350.5C 584.457,348.342 586.29,346.509 588.5,345C 587.773,343.601 587.273,342.101 587,340.5C 582.757,345.111 577.59,347.444 571.5,347.5C 573.833,355.668 571.666,362.335 565,367.5C 562.239,366.204 559.405,365.037 556.5,364C 556.833,363.667 557.167,363.333 557.5,363C 556.244,362.583 555.577,361.75 555.5,360.5C 566.573,364.425 570.573,360.758 567.5,349.5C 566.386,348.115 565.386,346.615 564.5,345C 573.552,346.22 580.386,343.053 585,335.5C 585.49,334.207 585.657,332.873 585.5,331.5C 587.857,331.663 590.19,331.497 592.5,331C 596.364,327.635 599.697,323.802 602.5,319.5C 599.697,315.198 596.364,311.365 592.5,308C 590.19,307.503 587.857,307.337 585.5,307.5C 583.314,297.337 576.98,293.004 566.5,294.5C 565.508,294.672 564.842,294.338 564.5,293.5C 568.226,289.616 569.393,284.949 568,279.5C 562.927,275.21 558.427,275.543 554.5,280.5C 553.539,282.265 553.205,284.265 553.5,286.5C 552.833,286.5 552.167,286.5 551.5,286.5C 551.741,284.102 551.074,282.102 549.5,280.5C 547.634,272.538 549.967,266.372 556.5,262C 573.259,260.771 580.259,268.604 577.5,285.5C 583.031,286.399 587.864,288.732 592,292.5C 597.73,300.837 602.23,309.837 605.5,319.5C 601.527,328.779 597.027,337.779 592,346.5C 587.864,350.268 583.031,352.601 577.5,353.5C 577.815,357.371 577.482,361.038 576.5,364.5 Z"/></g>
<g><path style="opacity:1" fill="#f8dfa8" d="M -0.5,287.5 C 0.166667,287.5 0.833333,287.5 1.5,287.5C 1.74892,291.458 1.08226,295.124 -0.5,298.5C -0.5,294.833 -0.5,291.167 -0.5,287.5 Z"/></g>
<g><path style="opacity:1" fill="#550000" d="M 425.5,239.5 C 426.5,239.5 427.5,239.5 428.5,239.5C 428.343,240.873 428.51,242.207 429,243.5C 429.853,245.125 430.853,245.458 432,244.5C 434.231,247.494 435.731,250.827 436.5,254.5C 437.325,255.386 438.325,255.719 439.5,255.5C 440.556,260.669 442.223,265.669 444.5,270.5C 445.325,271.386 446.325,271.719 447.5,271.5C 447.336,274.187 447.503,276.854 448,279.5C 448.667,280.833 449.333,280.833 450,279.5C 450.283,283.133 451.117,286.633 452.5,290C 451.655,294.461 451.322,298.961 451.5,303.5C 452.833,303.5 454.167,303.5 455.5,303.5C 455.167,314.167 454.833,324.833 454.5,335.5C 453.5,335.5 452.5,335.5 451.5,335.5C 449.645,341.767 448.478,348.433 448,355.5C 441.995,363.928 438.162,373.262 436.5,383.5C 434.833,383.5 433.167,383.5 431.5,383.5C 431.813,386.247 431.48,388.914 430.5,391.5C 427.8,393.234 425.8,395.568 424.5,398.5C 422.955,399.452 421.288,399.785 419.5,399.5C 420.879,395.075 423.046,391.075 426,387.5C 426.49,386.207 426.657,384.873 426.5,383.5C 427.822,383.67 428.989,383.337 430,382.5C 431.127,379.623 431.794,376.623 432,373.5C 435.219,369.448 437.719,364.948 439.5,360C 439.043,359.586 438.709,359.086 438.5,358.5C 441,351.015 443,343.348 444.5,335.5C 445.5,335.5 446.5,335.5 447.5,335.5C 447.83,322.116 447.163,308.783 445.5,295.5C 445.601,292.3 446.268,289.3 447.5,286.5C 442.974,277.084 439.14,267.417 436,257.5C 434.304,255.44 433.137,253.107 432.5,250.5C 428.427,248.039 426.094,244.373 425.5,239.5 Z"/></g>
<g><path style="opacity:1" fill="#f19f62" d="M 31.5,295.5 C 28.2195,303.674 24.5528,311.674 20.5,319.5C 24.7095,327.252 28.3761,335.252 31.5,343.5C 30.7611,343.631 30.0944,343.464 29.5,343C 28.9473,341.122 27.9473,339.622 26.5,338.5C 24.1707,331.835 21.8374,325.169 19.5,318.5C 19.5153,316.366 20.0153,314.366 21,312.5C 24.8145,308.282 26.9812,303.282 27.5,297.5C 28.5769,296.295 29.9102,295.628 31.5,295.5 Z"/></g>
<g><path style="opacity:1" fill="#961301" d="M 399.5,335.5 C 399.5,336.5 399.5,337.5 399.5,338.5C 393.905,342.363 389.739,347.363 387,353.5C 383.167,357.333 379.333,361.167 375.5,365C 370.607,366.89 365.941,369.223 361.5,372C 358.132,372.543 354.799,372.376 351.5,371.5C 351.5,370.167 351.5,368.833 351.5,367.5C 353.5,367.5 355.5,367.5 357.5,367.5C 358.167,367.5 358.833,367.5 359.5,367.5C 360.873,367.657 362.207,367.49 363.5,367C 365.884,364.615 368.55,362.615 371.5,361C 378.165,352.678 385.332,344.845 393,337.5C 393.791,333.281 395.625,329.614 398.5,326.5C 399.328,321.868 399.828,317.202 400,312.5C 400.333,312.833 400.667,313.167 401,313.5C 402.464,310.274 403.631,306.941 404.5,303.5C 404.444,302.263 403.944,301.263 403,300.5C 398.25,307.255 392.75,313.422 386.5,319C 384.833,319.333 383.167,319.667 381.5,320C 370.86,328.815 359.194,335.815 346.5,341C 332.418,344.603 318.085,348.103 303.5,351.5C 303.286,349.856 303.62,348.356 304.5,347C 331.607,343.739 356.274,334.405 378.5,319C 385.667,312.166 392.5,304.999 399,297.5C 400.667,295.167 402.333,292.833 404,290.5C 404.684,289.216 404.517,288.049 403.5,287C 405.34,284.331 407.34,281.831 409.5,279.5C 409.342,288.145 409.509,296.812 410,305.5C 409.313,309.58 408.313,313.58 407,317.5C 404.58,323.611 402.08,329.611 399.5,335.5 Z"/></g>
<g><path style="opacity:1" fill="#fef0ce" d="M 467.5,287.5 C 470.809,303.166 472.142,319.166 471.5,335.5C 470.833,335.5 470.167,335.5 469.5,335.5C 469.832,319.439 469.165,303.439 467.5,287.5 Z"/></g>
<g><path style="opacity:1" fill="#da9864" d="M 533.5,290.5 C 536.168,295.15 539.168,299.483 542.5,303.5C 539.03,302.712 536.363,300.712 534.5,297.5C 533.349,302.167 533.349,306.834 534.5,311.5C 533.778,311.082 533.278,310.416 533,309.5C 532.18,302.986 532.347,296.653 533.5,290.5 Z"/></g>
<g><path style="opacity:1" fill="#f7fbf9" d="M 175.5,337.5 C 175.5,338.167 175.5,338.833 175.5,339.5C 175.5,340.833 175.5,342.167 175.5,343.5C 175.845,351.59 176.845,359.59 178.5,367.5C 177.5,367.5 176.5,367.5 175.5,367.5C 174.585,362.607 173.252,357.94 171.5,353.5C 171.5,352.833 171.5,352.167 171.5,351.5C 170.115,335.534 169.448,319.534 169.5,303.5C 169.5,302.167 169.5,300.833 169.5,299.5C 170.268,298.737 170.768,297.737 171,296.5C 172.159,307.797 172.826,319.13 173,330.5C 174.043,332.833 174.876,335.166 175.5,337.5 Z"/></g>
<g><path style="opacity:1" fill="#d58256" d="M 566.5,306.5 C 566.5,305.833 566.5,305.167 566.5,304.5C 571.06,302.478 574.727,303.478 577.5,307.5C 576.426,308.08 575.426,307.58 574.5,306C 571.739,305.278 569.073,305.445 566.5,306.5 Z"/></g>
<g><path style="opacity:1" fill="#f8a44f" d="M 632.5,255.5 C 633.167,257.167 633.833,258.833 634.5,260.5C 635.577,266.782 636.243,273.116 636.5,279.5C 637.166,293.498 637.833,307.498 638.5,321.5C 637.831,334.169 637.165,346.835 636.5,359.5C 635.778,359.918 635.278,360.584 635,361.5C 633.991,359.975 633.491,358.308 633.5,356.5C 634.117,356.389 634.617,356.056 635,355.5C 635.167,352.167 635.333,348.833 635.5,345.5C 634.292,326.167 634.292,306.833 635.5,287.5C 634.5,287.5 633.5,287.5 632.5,287.5C 632.139,280.889 632.806,274.389 634.5,268C 633.044,263.95 632.377,259.783 632.5,255.5 Z"/></g>
<g><path style="opacity:1" fill="#e9a16f" d="M 71.5,294.5 C 71.5,295.167 71.5,295.833 71.5,296.5C 61.2913,295.759 55.6246,300.426 54.5,310.5C 52.9291,309.691 51.2624,309.357 49.5,309.5C 49.5,308.833 49.5,308.167 49.5,307.5C 50.8333,307.5 52.1667,307.5 53.5,307.5C 55.1714,297.32 61.1714,292.987 71.5,294.5 Z"/></g>
<g><path style="opacity:1" fill="#fcead1" d="M 17.5,280.5 C 15.139,280.326 12.8056,279.993 10.5,279.5C 9.13434,300.813 8.63434,322.146 9,343.5C 9.24627,347.005 10.7463,349.671 13.5,351.5C 12.5,351.5 11.5,351.5 10.5,351.5C 9.44153,350.4 8.6082,349.066 8,347.5C 7.50006,330.17 7.33339,312.837 7.5,295.5C 8.63858,289.646 9.63858,283.646 10.5,277.5C 11,277.167 11.5,276.833 12,276.5C 13.8195,277.979 15.6529,279.313 17.5,280.5 Z"/></g>
<g><path style="opacity:1" fill="#d8813b" d="M 370.5,207.5 C 375.799,209.607 378.132,213.44 377.5,219C 378.552,220.119 379.719,220.619 381,220.5C 381.168,225.501 382.501,230.168 385,234.5C 385.667,243.167 385.667,251.833 385,260.5C 383.722,264.156 382.555,267.823 381.5,271.5C 380.167,271.5 378.833,271.5 377.5,271.5C 373.984,276.373 371.317,281.706 369.5,287.5C 362.851,293.436 355.518,298.603 347.5,303C 338.403,305.307 329.07,306.473 319.5,306.5C 319.773,308.451 319.107,309.951 317.5,311C 306.877,312.875 296.877,316.542 287.5,322C 282.605,322.521 277.939,323.687 273.5,325.5C 272.817,325.137 272.15,324.804 271.5,324.5C 283.769,314.195 298.102,308.029 314.5,306C 316.104,304.763 317.771,303.597 319.5,302.5C 324.802,301.671 330.136,301.171 335.5,301C 342.853,298.155 349.853,294.489 356.5,290C 361,285.5 365.5,281 370,276.5C 380.194,259.508 382.028,241.508 375.5,222.5C 375.481,220.94 375.148,219.44 374.5,218C 370.951,215.445 369.617,211.945 370.5,207.5 Z"/></g>
<g><path style="opacity:1" fill="#ecb266" d="M 2.5,279.5 C 2.48195,292.888 1.81529,306.221 0.5,319.5C 1.26153,332.83 1.9282,346.163 2.5,359.5C 1.5,354.167 0.5,348.833 -0.5,343.5C -0.5,328.5 -0.5,313.5 -0.5,298.5C 1.08226,295.124 1.74892,291.458 1.5,287.5C 1.1936,284.615 1.52693,281.948 2.5,279.5 Z"/></g>
<g><path style="opacity:1" fill="#440303" d="M 542.5,303.5 C 543.534,302.313 544.867,301.48 546.5,301C 550.821,300.501 555.154,300.334 559.5,300.5C 559.5,301.5 559.5,302.5 559.5,303.5C 562.059,303.198 564.393,303.532 566.5,304.5C 566.5,305.167 566.5,305.833 566.5,306.5C 569.159,309.978 570.826,313.978 571.5,318.5C 571.5,319.167 571.5,319.833 571.5,320.5C 571.663,322.857 571.497,325.19 571,327.5C 569.374,328.955 568.208,330.622 567.5,332.5C 566.662,332.842 566.328,333.508 566.5,334.5C 561.542,336.203 556.375,337.537 551,338.5C 547.422,338.584 544.255,337.584 541.5,335.5C 538.911,336.419 536.911,338.086 535.5,340.5C 534.883,340.611 534.383,340.944 534,341.5C 533.502,338.518 533.335,335.518 533.5,332.5C 533.576,329.027 534.242,325.694 535.5,322.5C 536.88,322.038 537.547,321.038 537.5,319.5C 536.727,316.966 535.727,314.632 534.5,312.5C 534.5,312.167 534.5,311.833 534.5,311.5C 533.349,306.834 533.349,302.167 534.5,297.5C 536.363,300.712 539.03,302.712 542.5,303.5 Z"/></g>
<g><path style="opacity:1" fill="#f19d5d" d="M 611.5,303.5 C 613.48,304.848 614.647,306.848 615,309.5C 616,310.167 617,310.833 618,311.5C 620.917,319.395 619.584,326.395 614,332.5C 613.08,335.101 612.413,337.768 612,340.5C 610.871,342.141 609.371,343.141 607.5,343.5C 610.568,335.229 614.235,327.229 618.5,319.5C 615.066,314.634 612.733,309.3 611.5,303.5 Z"/></g>
<g><path style="opacity:1" fill="#e39b64" d="M 67.5,318.5 C 67.5,319.167 67.5,319.833 67.5,320.5C 65.1432,320.337 62.8098,320.503 60.5,321C 55.9908,325.996 52.3242,325.496 49.5,319.5C 52.3242,313.504 55.9908,313.004 60.5,318C 62.8098,318.497 65.1432,318.663 67.5,318.5 Z"/></g>
<g><path style="opacity:1" fill="#fba246" d="M 171.5,281.5 C 171.5,283.5 171.5,285.5 171.5,287.5C 170.167,287.5 168.833,287.5 167.5,287.5C 168.342,292.787 168.676,298.12 168.5,303.5C 168.167,303.5 167.833,303.5 167.5,303.5C 166.671,310.655 166.171,317.989 166,325.5C 165.667,326.167 165.333,326.833 165,327.5C 164.768,326.263 164.268,325.263 163.5,324.5C 164.411,312.52 165.078,300.52 165.5,288.5C 166.566,286.299 167.233,283.965 167.5,281.5C 168.217,279.047 169.384,276.713 171,274.5C 171.497,276.81 171.663,279.143 171.5,281.5 Z"/></g>
<g><path style="opacity:1" fill="#faeac4" d="M 484.5,303.5 C 487.216,303.678 489.883,304.178 492.5,305C 493.271,307.44 493.438,309.94 493,312.5C 493.671,313.252 494.504,313.586 495.5,313.5C 495.5,314.5 495.5,315.5 495.5,316.5C 494.504,316.414 493.671,316.748 493,317.5C 492.821,321.025 492.321,324.359 491.5,327.5C 491.5,320.5 491.5,313.5 491.5,306.5C 488.937,305.912 486.604,304.912 484.5,303.5 Z"/></g>
<g><path style="opacity:1" fill="#dc9c63" d="M 105.5,291.5 C 106.727,294.2 107.393,297.533 107.5,301.5C 107.135,307.692 106.135,313.692 104.5,319.5C 106.695,328.756 107.028,338.09 105.5,347.5C 103.245,342.916 100.245,338.916 96.5,335.5C 99.9594,336.436 102.793,338.436 105,341.5C 106.245,333.732 105.078,326.398 101.5,319.5C 105.247,312.528 106.247,305.195 104.5,297.5C 102.637,300.712 99.97,302.712 96.5,303.5C 99.9775,299.888 102.978,295.888 105.5,291.5 Z"/></g>
<g><path style="opacity:1" fill="#4d1c10" d="M 53.5,316.5 C 58.0408,316.815 59.0408,318.649 56.5,322C 51.7217,322.073 50.7217,320.24 53.5,316.5 Z"/></g>
<g><path style="opacity:1" fill="#e8a760" d="M 465.5,276.5 C 468.629,281.207 470.129,286.541 470,292.5C 470.414,292.957 470.914,293.291 471.5,293.5C 472.466,291.604 472.799,289.604 472.5,287.5C 474.245,291.2 475.245,295.2 475.5,299.5C 474.175,298.047 473.342,298.381 473,300.5C 472.831,312.341 472.331,324.007 471.5,335.5C 472.142,319.166 470.809,303.166 467.5,287.5C 466.537,283.899 465.87,280.233 465.5,276.5 Z"/></g>
<g><path style="opacity:1" fill="#ebb167" d="M 636.5,279.5 C 636.833,279.5 637.167,279.5 637.5,279.5C 637.207,286.405 637.874,293.072 639.5,299.5C 639.5,313.167 639.5,326.833 639.5,340.5C 638.732,341.263 638.232,342.263 638,343.5C 637.827,349.016 637.327,354.349 636.5,359.5C 637.165,346.835 637.831,334.169 638.5,321.5C 637.833,307.498 637.166,293.498 636.5,279.5 Z"/></g>
<g><path style="opacity:1" fill="#feebc5" d="M 150.5,303.5 C 151.492,311.316 151.826,319.316 151.5,327.5C 152.5,327.5 153.5,327.5 154.5,327.5C 154.5,326.5 154.5,325.5 154.5,324.5C 155.688,325.684 156.855,325.684 158,324.5C 158.171,317.321 158.671,310.321 159.5,303.5C 159.666,310.841 159.5,318.174 159,325.5C 158.13,326.108 157.63,326.941 157.5,328C 158.648,329.726 159.815,329.559 161,327.5C 161.171,319.323 161.671,311.323 162.5,303.5C 162.5,312.833 162.5,322.167 162.5,331.5C 158.771,330.987 155.104,330.154 151.5,329C 150.594,327.301 150.261,325.467 150.5,323.5C 150.5,316.833 150.5,310.167 150.5,303.5 Z"/></g>
<g><path style="opacity:1" fill="#e38f42" d="M 375.5,222.5 C 382.028,241.508 380.194,259.508 370,276.5C 365.5,281 361,285.5 356.5,290C 349.853,294.489 342.853,298.155 335.5,301C 330.136,301.171 324.802,301.671 319.5,302.5C 317.771,303.597 316.104,304.763 314.5,306C 298.102,308.029 283.769,314.195 271.5,324.5C 266.387,327.446 262.054,331.279 258.5,336C 257.552,336.483 256.552,336.649 255.5,336.5C 254.647,340.36 252.313,343.027 248.5,344.5C 243.102,351.371 239.436,359.038 237.5,367.5C 235.95,376.799 234.617,386.132 233.5,395.5C 234.476,405.258 235.809,414.924 237.5,424.5C 237.167,425.833 236.833,427.167 236.5,428.5C 234.207,425.591 231.373,423.258 228,421.5C 227.691,420.234 227.191,419.067 226.5,418C 219.229,415.735 213.729,411.235 210,404.5C 208.667,403.833 207.333,403.167 206,402.5C 206.936,399.643 207.269,396.643 207,393.5C 205.372,394.097 203.705,393.763 202,392.5C 197.772,384.561 194.938,376.228 193.5,367.5C 195.534,371.413 197.2,375.579 198.5,380C 199.516,382.176 201.182,383.343 203.5,383.5C 203.357,385.262 203.691,386.929 204.5,388.5C 208.999,392.333 212.333,397 214.5,402.5C 217.764,406.153 221.764,408.653 226.5,410C 227.352,412.362 228.852,414.195 231,415.5C 228.011,396.22 229.345,377.22 235,358.5C 239.218,349.063 244.218,340.063 250,331.5C 253.306,330.86 255.306,328.86 256,325.5C 260.365,320.971 265.531,317.971 271.5,316.5C 271.5,315.5 271.5,314.5 271.5,313.5C 273.527,313.662 275.527,313.495 277.5,313C 278.973,312.29 279.64,311.124 279.5,309.5C 284.168,309.86 286.835,307.86 287.5,303.5C 300.892,304.517 313.892,302.851 326.5,298.5C 329.474,299.577 332.474,299.577 335.5,298.5C 335.48,296.857 336.147,295.524 337.5,294.5C 340.372,293.042 343.372,291.875 346.5,291C 347.337,289.989 347.67,288.822 347.5,287.5C 349.527,287.662 351.527,287.495 353.5,287C 374.228,270.643 380.561,249.81 372.5,224.5C 372.709,223.914 373.043,223.414 373.5,223C 371.461,221.074 369.794,218.907 368.5,216.5C 369.117,216.389 369.617,216.056 370,215.5C 371.572,218.107 373.406,220.441 375.5,222.5 Z"/></g>
<g><path style="opacity:1" fill="#d99771" d="M 534.5,312.5 C 535.727,314.632 536.727,316.966 537.5,319.5C 537.547,321.038 536.88,322.038 535.5,322.5C 535.167,319.167 534.833,315.833 534.5,312.5 Z"/></g>
<g><path style="opacity:1" fill="#e09868" d="M 571.5,320.5 C 571.5,319.833 571.5,319.167 571.5,318.5C 573.527,318.662 575.527,318.495 577.5,318C 579.453,316.367 581.62,315.201 584,314.5C 589.5,315.707 590.667,318.54 587.5,323C 583.639,325.203 580.305,324.536 577.5,321C 575.527,320.505 573.527,320.338 571.5,320.5 Z"/></g>
<g><path style="opacity:1" fill="#4e220e" d="M 582.5,316.5 C 588.203,317.532 588.703,319.532 584,322.5C 580.28,321.034 579.78,319.034 582.5,316.5 Z"/></g>
<g><path style="opacity:1" fill="#e2ac62" d="M 14.5,311.5 C 12.9476,316.961 13.281,322.295 15.5,327.5C 14.0613,325.64 12.3947,323.973 10.5,322.5C 9.65723,317.906 10.9906,314.239 14.5,311.5 Z"/></g>
<g><path style="opacity:1" fill="#f49f48" d="M 143.5,335.5 C 145.282,337.357 147.615,338.357 150.5,338.5C 150.611,339.117 150.944,339.617 151.5,340C 148.635,340.183 145.969,340.683 143.5,341.5C 143.263,342.791 143.596,343.791 144.5,344.5C 143.751,351.221 144.918,357.554 148,363.5C 148.333,366.5 148.667,369.5 149,372.5C 149.852,373.571 150.685,374.571 151.5,375.5C 152.5,377.5 153.5,379.5 154.5,381.5C 154.047,382.458 153.381,383.292 152.5,384C 153.973,384.71 154.64,385.876 154.5,387.5C 150.249,388.753 148.916,387.086 150.5,382.5C 148.08,380.047 146.914,377.047 147,373.5C 146.051,371.907 144.885,370.574 143.5,369.5C 144.893,367.716 145.393,365.716 145,363.5C 142.537,359.52 140.37,355.52 138.5,351.5C 134.52,330.161 134.52,308.828 138.5,287.5C 139.5,287.5 140.5,287.5 141.5,287.5C 141.736,278.801 142.736,278.135 144.5,285.5C 142.526,297.216 141.193,309.049 140.5,321C 140.619,324.855 140.952,328.688 141.5,332.5C 141.64,334.03 142.307,335.03 143.5,335.5 Z"/></g>
<g><path style="opacity:1" fill="#efb77b" d="M 481.5,313.5 C 482.5,313.5 483.5,313.5 484.5,313.5C 484.825,321.019 484.492,328.352 483.5,335.5C 483.83,328.468 483.497,321.468 482.5,314.5C 481.181,321.656 481.181,328.656 482.5,335.5C 482.5,336.167 482.5,336.833 482.5,337.5C 481.391,337.557 480.391,337.89 479.5,338.5C 479.732,329.983 480.399,321.65 481.5,313.5 Z"/></g>
<g><path style="opacity:1" fill="#730c07" d="M 577.5,254.5 C 578.167,254.833 578.833,255.167 579.5,255.5C 582.234,258.625 584.734,261.958 587,265.5C 588.29,269.73 588.79,274.064 588.5,278.5C 590.937,278.756 593.271,279.423 595.5,280.5C 600.258,284.253 604.258,288.586 607.5,293.5C 608.287,297.07 609.62,300.403 611.5,303.5C 612.733,309.3 615.066,314.634 618.5,319.5C 614.235,327.229 610.568,335.229 607.5,343.5C 607.5,343.833 607.5,344.167 607.5,344.5C 604.411,349.402 600.745,353.902 596.5,358C 593.978,359.341 591.311,360.174 588.5,360.5C 588.5,362.833 588.5,365.167 588.5,367.5C 588.5,368.5 588.5,369.5 588.5,370.5C 581.6,385.75 569.933,391.584 553.5,388C 548.761,386.077 544.761,383.244 541.5,379.5C 538.783,373.794 537.949,367.794 539,361.5C 541.695,355.069 546.528,352.069 553.5,352.5C 553.5,354.167 553.5,355.833 553.5,357.5C 552.833,356.833 552.167,356.167 551.5,355.5C 551.19,354.262 550.69,354.262 550,355.5C 549.209,356.745 548.709,358.078 548.5,359.5C 545.462,371.435 549.962,378.435 562,380.5C 575.552,377.761 581.552,369.428 580,355.5C 585.141,353.698 589.808,351.032 594,347.5C 599.286,339.306 603.62,330.64 607,321.5C 605.199,312.343 601.866,303.676 597,295.5C 592.834,289.057 587,285.057 579.5,283.5C 581.215,265.715 573.215,257.881 555.5,260C 547.315,265.054 545.315,271.888 549.5,280.5C 551.074,282.102 551.741,284.102 551.5,286.5C 545.855,285.706 541.688,282.706 539,277.5C 537.233,269.648 538.9,262.648 544,256.5C 554.723,248.025 565.89,247.358 577.5,254.5 Z"/></g>
<g><path style="opacity:1" fill="#e4b274" d="M 624.5,311.5 C 627.917,313.891 629.25,317.225 628.5,321.5C 628.431,324.084 627.265,326.084 625,327.5C 624.817,330.365 624.317,333.031 623.5,335.5C 623.247,330.022 623.914,324.688 625.5,319.5C 625.163,316.824 624.83,314.157 624.5,311.5 Z"/></g>
<g><path style="opacity:1" fill="#5a0001" d="M 367.5,311.5 C 367.762,312.978 367.429,314.311 366.5,315.5C 356.167,322.784 344.667,327.451 332,329.5C 327.758,331.096 323.591,332.763 319.5,334.5C 314.208,335.495 308.875,335.828 303.5,335.5C 303.5,334.5 303.5,333.5 303.5,332.5C 303.97,331.307 304.97,330.64 306.5,330.5C 316.99,328.566 327.323,326.066 337.5,323C 339.779,322.527 341.779,321.527 343.5,320C 346.146,319.503 348.813,319.336 351.5,319.5C 351.281,318.325 351.614,317.325 352.5,316.5C 357.916,315.575 362.916,313.909 367.5,311.5 Z"/></g>
<g><path style="opacity:1" fill="#720f08" d="M 105.5,290.5 C 105.5,290.833 105.5,291.167 105.5,291.5C 102.978,295.888 99.9775,299.888 96.5,303.5C 95.596,302.791 95.2627,301.791 95.5,300.5C 92.7508,300.726 90.0841,300.393 87.5,299.5C 82.3029,300.951 77.3029,302.617 72.5,304.5C 72.3364,308.064 70.8364,311.397 68,314.5C 67.51,315.793 67.3433,317.127 67.5,318.5C 65.1432,318.663 62.8098,318.497 60.5,318C 55.9908,313.004 52.3242,313.504 49.5,319.5C 52.3242,325.496 55.9908,325.996 60.5,321C 62.8098,320.503 65.1432,320.337 67.5,320.5C 67.3367,322.857 67.5034,325.19 68,327.5C 70.276,328.762 72.1093,330.429 73.5,332.5C 69.135,334.379 65.3017,333.712 62,330.5C 61.8374,332.387 62.6707,333.887 64.5,335C 67.2605,335.722 69.9272,335.555 72.5,334.5C 77.2871,335.567 81.9537,337.234 86.5,339.5C 90.3066,339.063 93.6399,337.73 96.5,335.5C 100.245,338.916 103.245,342.916 105.5,347.5C 105.5,347.833 105.5,348.167 105.5,348.5C 105.631,349.239 105.464,349.906 105,350.5C 101.956,346.139 97.7891,343.306 92.5,342C 85.4505,341.24 78.4505,341.407 71.5,342.5C 61.4113,343.81 56.0779,339.476 55.5,329.5C 53.8333,329.5 52.1667,329.5 50.5,329.5C 45.6334,327.64 41.9667,324.307 39.5,319.5C 41.8762,315.124 45.2095,311.79 49.5,309.5C 51.2624,309.357 52.9291,309.691 54.5,310.5C 55.6246,300.426 61.2913,295.759 71.5,296.5C 78.4505,297.593 85.4505,297.76 92.5,297C 93.7375,296.768 94.7375,296.268 95.5,295.5C 99.4455,294.272 102.612,291.939 105,288.5C 105.464,289.094 105.631,289.761 105.5,290.5 Z"/></g>
<g><path style="opacity:1" fill="#e39367" d="M 72.5,304.5 C 72.631,305.239 72.4643,305.906 72,306.5C 67.9971,303.499 64.6638,304.165 62,308.5C 61.8374,306.613 62.6707,305.113 64.5,304C 67.2605,303.278 69.9272,303.445 72.5,304.5 Z"/></g>
<g><path style="opacity:1" fill="#700604" d="M 551.5,308.5 C 557.412,307.916 562.245,309.916 566,314.5C 566.912,316.659 567.745,318.825 568.5,321C 566.257,323.488 564.257,326.154 562.5,329C 555.174,331.986 549.007,330.486 544,324.5C 543.333,320.833 543.333,317.167 544,313.5C 546.74,312.101 549.24,310.434 551.5,308.5 Z"/></g>
<g><path style="opacity:1" fill="#f09b5f" d="M 555.5,314.5 C 563.997,313.474 566.33,316.641 562.5,324C 554.189,325.208 551.856,322.041 555.5,314.5 Z"/></g>
<g><path style="opacity:1" fill="#ecaa4d" d="M 557.5,316.5 C 562.829,315.928 564.496,317.928 562.5,322.5C 557.074,323.416 555.407,321.416 557.5,316.5 Z"/></g>
<g><path style="opacity:1" fill="#f8a349" d="M 7.5,295.5 C 7.33339,312.837 7.50006,330.17 8,347.5C 8.6082,349.066 9.44153,350.4 10.5,351.5C 10.5,353.833 10.5,356.167 10.5,358.5C 6.58087,370.252 7.9142,381.585 14.5,392.5C 14,393.5 13.5,394.5 13,395.5C 12.6667,395.167 12.3333,394.833 12,394.5C 9.77536,390.82 7.94203,387.153 6.5,383.5C 6.87568,378.727 5.87568,374.393 3.5,370.5C 2.75638,366.881 2.42305,363.215 2.5,359.5C 1.9282,346.163 1.26153,332.83 0.5,319.5C 1.81529,306.221 2.48195,292.888 2.5,279.5C 3.28997,278.391 3.78997,277.058 4,275.5C 6.92637,281.844 8.09304,288.511 7.5,295.5 Z"/></g>
<g><path style="opacity:1" fill="#e2a35b" d="M 49.5,307.5 C 49.5,308.167 49.5,308.833 49.5,309.5C 45.2095,311.79 41.8762,315.124 39.5,319.5C 41.9667,324.307 45.6334,327.64 50.5,329.5C 50.5,330.167 50.5,330.833 50.5,331.5C 49.1266,331.657 47.7932,331.49 46.5,331C 42.7091,327.22 39.0424,323.387 35.5,319.5C 38.3821,316.77 41.0487,313.77 43.5,310.5C 45.0712,308.585 47.0712,307.585 49.5,307.5 Z"/></g>
<g><path style="opacity:1" fill="#450203" d="M 96.5,335.5 C 93.6399,337.73 90.3066,339.063 86.5,339.5C 81.9537,337.234 77.2871,335.567 72.5,334.5C 73.3382,334.158 73.6716,333.492 73.5,332.5C 72.1093,330.429 70.276,328.762 68,327.5C 67.5034,325.19 67.3367,322.857 67.5,320.5C 67.5,319.833 67.5,319.167 67.5,318.5C 67.3433,317.127 67.51,315.793 68,314.5C 70.8364,311.397 72.3364,308.064 72.5,304.5C 77.3029,302.617 82.3029,300.951 87.5,299.5C 90.0841,300.393 92.7508,300.726 95.5,300.5C 95.2627,301.791 95.596,302.791 96.5,303.5C 99.97,302.712 102.637,300.712 104.5,297.5C 106.247,305.195 105.247,312.528 101.5,319.5C 105.078,326.398 106.245,333.732 105,341.5C 102.793,338.436 99.9594,336.436 96.5,335.5 Z"/></g>
<g><path style="opacity:1" fill="#710604" d="M 79.5,308.5 C 82.1873,308.336 84.854,308.503 87.5,309C 89.9066,311.285 92.4066,313.451 95,315.5C 95.6667,318.167 95.6667,320.833 95,323.5C 92.1966,325.22 89.6966,327.386 87.5,330C 84.1667,330.667 80.8333,330.667 77.5,330C 72.7094,326.258 70.8761,321.424 72,315.5C 74.9341,313.482 77.4341,311.148 79.5,308.5 Z"/></g>
<g><path style="opacity:1" fill="#f3a15f" d="M 76.5,314.5 C 84.7089,313.352 87.0423,316.352 83.5,323.5C 80.9665,324.788 78.4665,324.788 76,323.5C 75.5046,320.469 75.6713,317.469 76.5,314.5 Z"/></g>
<g><path style="opacity:1" fill="#fefae5" d="M 168.5,303.5 C 168.833,303.5 169.167,303.5 169.5,303.5C 169.448,319.534 170.115,335.534 171.5,351.5C 170.598,348.003 169.931,344.337 169.5,340.5C 168.605,328.193 168.272,315.859 168.5,303.5 Z"/></g>
<g><path style="opacity:1" fill="#be6b37" d="M 303.5,321.5 C 292.427,325.193 281.76,329.859 271.5,335.5C 271.649,336.552 271.483,337.552 271,338.5C 265.929,342.069 261.762,346.403 258.5,351.5C 259.448,345.624 262.448,340.957 267.5,337.5C 266.287,335.149 266.953,333.316 269.5,332C 270.784,331.316 271.951,331.483 273,332.5C 272.852,331.175 273.018,330.008 273.5,329C 278.604,329.084 282.771,327.251 286,323.5C 287,324.167 288,324.833 289,325.5C 291.167,324.333 293.333,323.167 295.5,322C 298.146,321.503 300.813,321.336 303.5,321.5 Z"/></g>
<g><path style="opacity:1" fill="#740f09" d="M 535.5,289.5 C 535.894,291.71 537.227,293.043 539.5,293.5C 541.1,294.644 542.767,295.811 544.5,297C 552.202,297.731 559.869,297.564 567.5,296.5C 574.027,295.869 579.194,298.203 583,303.5C 583.495,305.473 583.662,307.473 583.5,309.5C 586.187,309.336 588.854,309.503 591.5,310C 594.731,312.727 597.397,315.894 599.5,319.5C 597.397,323.106 594.731,326.273 591.5,329C 588.854,329.497 586.187,329.664 583.5,329.5C 583.576,335.286 580.91,339.453 575.5,342C 566.512,341.96 557.512,341.793 548.5,341.5C 543.005,342.585 538.338,345.251 534.5,349.5C 533.702,349.043 533.369,348.376 533.5,347.5C 536.159,343.505 538.826,339.505 541.5,335.5C 544.255,337.584 547.422,338.584 551,338.5C 556.375,337.537 561.542,336.203 566.5,334.5C 570.032,336.043 573.365,335.709 576.5,333.5C 577.701,329.735 577.034,329.568 574.5,333C 571.961,333.796 569.628,333.629 567.5,332.5C 568.208,330.622 569.374,328.955 571,327.5C 571.497,325.19 571.663,322.857 571.5,320.5C 573.527,320.338 575.527,320.505 577.5,321C 580.305,324.536 583.639,325.203 587.5,323C 590.667,318.54 589.5,315.707 584,314.5C 581.62,315.201 579.453,316.367 577.5,318C 575.527,318.495 573.527,318.662 571.5,318.5C 570.826,313.978 569.159,309.978 566.5,306.5C 569.073,305.445 571.739,305.278 574.5,306C 575.426,307.58 576.426,308.08 577.5,307.5C 574.727,303.478 571.06,302.478 566.5,304.5C 564.393,303.532 562.059,303.198 559.5,303.5C 559.5,302.5 559.5,301.5 559.5,300.5C 555.154,300.334 550.821,300.501 546.5,301C 544.867,301.48 543.534,302.313 542.5,303.5C 539.168,299.483 536.168,295.15 533.5,290.5C 533.842,289.662 534.508,289.328 535.5,289.5 Z"/></g>
<g><path style="opacity:1" fill="#f0a452" d="M 167.5,303.5 C 167.333,315.505 167.5,327.505 168,339.5C 168.383,340.056 168.883,340.389 169.5,340.5C 169.931,344.337 170.598,348.003 171.5,351.5C 171.5,352.167 171.5,352.833 171.5,353.5C 172.597,358.321 172.597,362.987 171.5,367.5C 169.213,363.253 167.379,358.587 166,353.5C 165.726,347.699 164.726,342.032 163,336.5C 157.568,336.068 152.401,334.734 147.5,332.5C 147.5,330.167 147.5,327.833 147.5,325.5C 148.778,325.218 149.778,324.551 150.5,323.5C 150.261,325.467 150.594,327.301 151.5,329C 155.104,330.154 158.771,330.987 162.5,331.5C 163.468,329.393 163.802,327.059 163.5,324.5C 164.268,325.263 164.768,326.263 165,327.5C 165.333,326.833 165.667,326.167 166,325.5C 166.171,317.989 166.671,310.655 167.5,303.5 Z"/></g>
<g><path style="opacity:1" fill="#eaa666" d="M 566.5,294.5 C 576.98,293.004 583.314,297.337 585.5,307.5C 587.857,307.337 590.19,307.503 592.5,308C 596.364,311.365 599.697,315.198 602.5,319.5C 599.697,323.802 596.364,327.635 592.5,331C 590.19,331.497 587.857,331.663 585.5,331.5C 585.657,332.873 585.49,334.207 585,335.5C 580.386,343.053 573.552,346.22 564.5,345C 565.386,346.615 566.386,348.115 567.5,349.5C 564.039,350.111 561.372,348.944 559.5,346C 560.91,345.632 561.91,344.799 562.5,343.5C 557.683,342.833 553.017,342.166 548.5,341.5C 557.512,341.793 566.512,341.96 575.5,342C 580.91,339.453 583.576,335.286 583.5,329.5C 586.187,329.664 588.854,329.497 591.5,329C 594.731,326.273 597.397,323.106 599.5,319.5C 597.397,315.894 594.731,312.727 591.5,310C 588.854,309.503 586.187,309.336 583.5,309.5C 583.662,307.473 583.495,305.473 583,303.5C 579.194,298.203 574.027,295.869 567.5,296.5C 567.167,295.833 566.833,295.167 566.5,294.5 Z"/></g>
<g><path style="opacity:1" fill="#f9efd8" d="M 10.5,322.5 C 12.3947,323.973 14.0613,325.64 15.5,327.5C 15.5,332.167 15.5,336.833 15.5,341.5C 15.5,341.833 15.5,342.167 15.5,342.5C 15.5,342.833 15.5,343.167 15.5,343.5C 14.5269,341.052 14.1936,338.385 14.5,335.5C 13.1667,335.5 11.8333,335.5 10.5,335.5C 10.5,331.167 10.5,326.833 10.5,322.5 Z"/></g>
<g><path style="opacity:1" fill="#f0c394" d="M 167.5,303.5 C 167.833,303.5 168.167,303.5 168.5,303.5C 168.272,315.859 168.605,328.193 169.5,340.5C 168.883,340.389 168.383,340.056 168,339.5C 167.5,327.505 167.333,315.505 167.5,303.5 Z"/></g>
<g><path style="opacity:1" fill="#f6faf6" d="M 481.5,313.5 C 480.399,321.65 479.732,329.983 479.5,338.5C 479.5,339.5 479.5,340.5 479.5,341.5C 480.791,341.263 481.791,341.596 482.5,342.5C 482.53,343.497 482.03,344.164 481,344.5C 479.7,343.293 478.2,342.626 476.5,342.5C 476.5,340.167 476.5,337.833 476.5,335.5C 477.329,327.343 477.829,319.01 478,310.5C 479.011,309.663 480.178,309.33 481.5,309.5C 481.5,310.833 481.5,312.167 481.5,313.5 Z"/></g>
<g><path style="opacity:1" fill="#df875f" d="M 73.5,332.5 C 73.6716,333.492 73.3382,334.158 72.5,334.5C 69.9272,335.555 67.2605,335.722 64.5,335C 62.6707,333.887 61.8374,332.387 62,330.5C 65.3017,333.712 69.135,334.379 73.5,332.5 Z"/></g>
<g><path style="opacity:1" fill="#e38c65" d="M 566.5,334.5 C 566.328,333.508 566.662,332.842 567.5,332.5C 569.628,333.629 571.961,333.796 574.5,333C 577.034,329.568 577.701,329.735 576.5,333.5C 573.365,335.709 570.032,336.043 566.5,334.5 Z"/></g>
<g><path style="opacity:1" fill="#880a01" d="M 410.5,255.5 C 412.167,255.5 413.833,255.5 415.5,255.5C 415.1,266.701 415.1,277.867 415.5,289C 414.695,299.104 412.695,308.937 409.5,318.5C 410.025,319.192 410.692,319.692 411.5,320C 407.635,324.619 404.968,329.786 403.5,335.5C 402.167,335.5 400.833,335.5 399.5,335.5C 402.08,329.611 404.58,323.611 407,317.5C 408.313,313.58 409.313,309.58 410,305.5C 409.509,296.812 409.342,288.145 409.5,279.5C 407.34,281.831 405.34,284.331 403.5,287C 404.517,288.049 404.684,289.216 404,290.5C 402.333,292.833 400.667,295.167 399,297.5C 392.5,304.999 385.667,312.166 378.5,319C 356.274,334.405 331.607,343.739 304.5,347C 303.62,348.356 303.286,349.856 303.5,351.5C 302.833,351.5 302.167,351.5 301.5,351.5C 293.404,354.276 287.238,359.276 283,366.5C 282.104,371.949 282.437,377.282 284,382.5C 285.49,375.667 288.657,369.834 293.5,365C 296.605,363.132 299.938,361.965 303.5,361.5C 303.36,359.876 304.027,358.71 305.5,358C 311.155,357.085 316.821,356.251 322.5,355.5C 327.024,357.173 331.691,358.34 336.5,359C 339.815,361.414 343.482,363.081 347.5,364C 348.705,365.376 350.038,366.542 351.5,367.5C 351.5,368.833 351.5,370.167 351.5,371.5C 354.799,372.376 358.132,372.543 361.5,372C 365.941,369.223 370.607,366.89 375.5,365C 379.333,361.167 383.167,357.333 387,353.5C 389.739,347.363 393.905,342.363 399.5,338.5C 398.862,344.957 395.695,349.624 390,352.5C 386.132,357.07 382.632,361.904 379.5,367C 380.38,368.356 380.714,369.856 380.5,371.5C 378.473,371.338 376.473,371.505 374.5,372C 367.005,378.076 358.338,380.576 348.5,379.5C 348.762,378.022 348.429,376.689 347.5,375.5C 344.532,371.923 341.532,368.423 338.5,365C 336.821,364.605 335.155,364.772 333.5,365.5C 331.853,364.722 330.52,363.556 329.5,362C 323.5,361.333 317.5,361.333 311.5,362C 307.351,363.737 303.017,364.737 298.5,365C 295.046,369.305 291.713,373.805 288.5,378.5C 287.682,381.107 287.182,383.774 287,386.5C 282.941,389.324 279.441,388.657 276.5,384.5C 276.71,378.898 276.877,373.231 277,367.5C 280.5,362.506 283.333,357.172 285.5,351.5C 290.484,348.878 295.15,346.378 299.5,344C 307.894,340.963 316.561,338.963 325.5,338C 328.48,336.733 331.313,335.233 334,333.5C 342.404,333.938 350.571,332.438 358.5,329C 360.5,327 362.5,325 364.5,323C 373.995,316.978 382.995,310.478 391.5,303.5C 391.343,302.127 391.51,300.793 392,299.5C 394.472,297.702 396.139,295.368 397,292.5C 399.071,291.636 400.738,290.303 402,288.5C 405.55,277.684 408.383,266.684 410.5,255.5 Z"/></g>
<g><path style="opacity:1" fill="#fafbf5" d="M 628.5,321.5 C 629.117,321.611 629.617,321.944 630,322.5C 630.167,324.667 630.333,326.833 630.5,329C 629.007,337.946 628.007,346.946 627.5,356C 627.431,357.986 626.765,359.486 625.5,360.5C 624.391,360.443 623.391,360.11 622.5,359.5C 619.099,357.937 616.432,355.437 614.5,352C 616.81,351.503 619.143,351.337 621.5,351.5C 623.176,350.817 623.843,349.483 623.5,347.5C 623.5,343.5 623.5,339.5 623.5,335.5C 624.317,333.031 624.817,330.365 625,327.5C 627.265,326.084 628.431,324.084 628.5,321.5 Z"/></g>
<g><path style="opacity:1" fill="#e79e70" d="M 50.5,329.5 C 52.1667,329.5 53.8333,329.5 55.5,329.5C 56.0779,339.476 61.4113,343.81 71.5,342.5C 71.5,343.167 71.5,343.833 71.5,344.5C 68.0977,344.658 64.7644,344.324 61.5,343.5C 56.8445,340.863 54.1778,336.863 53.5,331.5C 52.5,331.5 51.5,331.5 50.5,331.5C 50.5,330.833 50.5,330.167 50.5,329.5 Z"/></g>
<g><path style="opacity:1" fill="#450203" d="M 392.5,255.5 C 393.224,257.218 393.891,259.052 394.5,261C 392.655,266.529 390.655,272.029 388.5,277.5C 389,278.5 389.5,279.5 390,280.5C 392.528,277.902 394.028,274.902 394.5,271.5C 394.662,273.527 394.495,275.527 394,277.5C 389.9,286.675 384.066,294.675 376.5,301.5C 375.519,306.485 372.519,308.818 367.5,308.5C 367.5,309.5 367.5,310.5 367.5,311.5C 362.916,313.909 357.916,315.575 352.5,316.5C 351.614,317.325 351.281,318.325 351.5,319.5C 348.813,319.336 346.146,319.503 343.5,320C 341.779,321.527 339.779,322.527 337.5,323C 327.323,326.066 316.99,328.566 306.5,330.5C 304.97,330.64 303.97,331.307 303.5,332.5C 298.615,332.965 293.948,334.132 289.5,336C 285.358,338.235 281.025,340.235 276.5,342C 276.833,342.333 277.167,342.667 277.5,343C 273.267,343.702 271.1,346.202 271,350.5C 257.498,364.041 251.831,380.374 254,399.5C 257.939,404.144 260.439,409.478 261.5,415.5C 262.5,415.5 263.5,415.5 264.5,415.5C 264.514,421.696 266.847,426.863 271.5,431C 272.793,431.49 274.127,431.657 275.5,431.5C 275.784,434.852 276.95,437.852 279,440.5C 279.333,440.167 279.667,439.833 280,439.5C 283.254,442.535 287.087,444.535 291.5,445.5C 292.298,445.957 292.631,446.624 292.5,447.5C 290.833,447.5 289.167,447.5 287.5,447.5C 287.5,448.833 287.5,450.167 287.5,451.5C 285.214,451.595 283.214,452.262 281.5,453.5C 270.136,447.136 261.47,438.136 255.5,426.5C 247.552,409.704 245.385,392.037 249,373.5C 251.365,365.776 254.531,358.442 258.5,351.5C 261.762,346.403 265.929,342.069 271,338.5C 271.483,337.552 271.649,336.552 271.5,335.5C 281.76,329.859 292.427,325.193 303.5,321.5C 322.957,319.756 341.624,314.923 359.5,307C 369.495,300.917 377.328,292.75 383,282.5C 383.483,281.552 383.649,280.552 383.5,279.5C 385.226,277.058 386.726,274.391 388,271.5C 389.296,265.966 390.796,260.633 392.5,255.5 Z"/></g>
<g><path style="opacity:1" fill="#500001" d="M 303.5,332.5 C 303.5,333.5 303.5,334.5 303.5,335.5C 295.707,336.887 288.373,339.72 281.5,344C 278.211,345.41 276.544,347.91 276.5,351.5C 274.833,351.5 273.167,351.5 271.5,351.5C 269.888,354.131 268.221,356.798 266.5,359.5C 265.571,360.936 264.405,362.269 263,363.5C 261.501,370.997 260.001,378.497 258.5,386C 260.318,397.773 263.152,409.273 267,420.5C 270.085,424.052 272.918,427.718 275.5,431.5C 274.127,431.657 272.793,431.49 271.5,431C 266.847,426.863 264.514,421.696 264.5,415.5C 263.5,415.5 262.5,415.5 261.5,415.5C 260.439,409.478 257.939,404.144 254,399.5C 251.831,380.374 257.498,364.041 271,350.5C 271.1,346.202 273.267,343.702 277.5,343C 277.167,342.667 276.833,342.333 276.5,342C 281.025,340.235 285.358,338.235 289.5,336C 293.948,334.132 298.615,332.965 303.5,332.5 Z"/></g>
<g><path style="opacity:1" fill="#f9f7e8" d="M 487.5,327.5 C 487.336,330.187 487.503,332.854 488,335.5C 488.689,336.357 489.522,337.023 490.5,337.5C 491.487,334.232 491.82,330.898 491.5,327.5C 492.321,324.359 492.821,321.025 493,317.5C 493.671,316.748 494.504,316.414 495.5,316.5C 495.666,324.84 495.5,333.173 495,341.5C 490.205,342.421 486.039,341.088 482.5,337.5C 482.5,336.833 482.5,336.167 482.5,335.5C 482.833,335.5 483.167,335.5 483.5,335.5C 484.492,328.352 484.825,321.019 484.5,313.5C 484.821,311.952 485.821,311.285 487.5,311.5C 487.5,316.833 487.5,322.167 487.5,327.5 Z"/></g>
<g><path style="opacity:1" fill="#a41b00" d="M 359.5,367.5 C 361.259,365.522 362.925,363.356 364.5,361C 371.281,357.387 376.614,352.22 380.5,345.5C 381.325,344.614 382.325,344.281 383.5,344.5C 383.343,343.127 383.51,341.793 384,340.5C 389.575,334.615 392.742,327.615 393.5,319.5C 383.807,322.023 375.807,327.19 369.5,335C 363.01,336.222 357.01,338.722 351.5,342.5C 343.594,344.977 335.594,347.143 327.5,349C 331.491,351.11 335.824,352.11 340.5,352C 343.353,355.594 347.02,357.928 351.5,359C 354.523,361.177 356.523,364.011 357.5,367.5C 355.5,367.5 353.5,367.5 351.5,367.5C 351.785,365.712 351.452,364.045 350.5,362.5C 343.104,358.556 335.437,355.056 327.5,352C 319.404,351.173 311.404,351.673 303.5,353.5C 303.5,354.833 303.5,356.167 303.5,357.5C 301.064,357.317 298.897,357.984 297,359.5C 296.626,358.584 296.126,357.75 295.5,357C 297.763,355.383 299.763,353.55 301.5,351.5C 302.167,351.5 302.833,351.5 303.5,351.5C 318.085,348.103 332.418,344.603 346.5,341C 359.194,335.815 370.86,328.815 381.5,320C 383.167,319.667 384.833,319.333 386.5,319C 392.75,313.422 398.25,307.255 403,300.5C 403.944,301.263 404.444,302.263 404.5,303.5C 403.631,306.941 402.464,310.274 401,313.5C 400.667,313.167 400.333,312.833 400,312.5C 399.828,317.202 399.328,321.868 398.5,326.5C 395.625,329.614 393.791,333.281 393,337.5C 385.332,344.845 378.165,352.678 371.5,361C 368.55,362.615 365.884,364.615 363.5,367C 362.207,367.49 360.873,367.657 359.5,367.5 Z"/></g>
<g><path style="opacity:1" fill="#efab5e" d="M 150.5,338.5 C 153.482,338.963 156.482,339.296 159.5,339.5C 160.167,343.5 160.833,347.5 161.5,351.5C 162.167,354.167 162.833,356.833 163.5,359.5C 164.371,362.112 165.037,364.779 165.5,367.5C 164.167,367.5 162.833,367.5 161.5,367.5C 160.526,363.136 159.359,358.802 158,354.5C 157.501,350.848 157.335,347.182 157.5,343.5C 152.799,343.043 148.132,342.376 143.5,341.5C 145.969,340.683 148.635,340.183 151.5,340C 150.944,339.617 150.611,339.117 150.5,338.5 Z"/></g>
<g><path style="opacity:1" fill="#e8a680" d="M 541.5,335.5 C 538.826,339.505 536.159,343.505 533.5,347.5C 533.5,346.167 533.5,344.833 533.5,343.5C 534.906,343.027 535.573,342.027 535.5,340.5C 536.911,338.086 538.911,336.419 541.5,335.5 Z"/></g>
<g><path style="opacity:1" fill="#b4772f" d="M 533.5,332.5 C 533.335,335.518 533.502,338.518 534,341.5C 534.383,340.944 534.883,340.611 535.5,340.5C 535.573,342.027 534.906,343.027 533.5,343.5C 532.167,339.833 532.167,336.167 533.5,332.5 Z"/></g>
<g><path style="opacity:1" fill="#f3a553" d="M 475.5,299.5 C 475.539,300.583 475.873,301.583 476.5,302.5C 479.086,303.48 481.753,303.813 484.5,303.5C 486.604,304.912 488.937,305.912 491.5,306.5C 491.5,313.5 491.5,320.5 491.5,327.5C 491.82,330.898 491.487,334.232 490.5,337.5C 489.522,337.023 488.689,336.357 488,335.5C 487.503,332.854 487.336,330.187 487.5,327.5C 488.652,322.015 488.818,316.349 488,310.5C 484.364,308.767 480.531,307.767 476.5,307.5C 476.5,316.833 476.5,326.167 476.5,335.5C 475.366,337.966 475.199,340.633 476,343.5C 480.829,346.153 485.329,349.153 489.5,352.5C 486.879,362.394 483.712,372.06 480,381.5C 478.907,374.515 479.907,367.849 483,361.5C 483.498,358.183 483.665,354.85 483.5,351.5C 480.412,351.623 477.745,350.623 475.5,348.5C 472.591,351.559 471.257,355.226 471.5,359.5C 470.251,362.087 469.251,364.754 468.5,367.5C 466.631,365.365 465.964,362.698 466.5,359.5C 466.5,359.167 466.5,358.833 466.5,358.5C 468.225,353.777 469.225,348.777 469.5,343.5C 469.5,340.833 469.5,338.167 469.5,335.5C 470.167,335.5 470.833,335.5 471.5,335.5C 472.331,324.007 472.831,312.341 473,300.5C 473.342,298.381 474.175,298.047 475.5,299.5 Z"/></g>
<g><path style="opacity:1" fill="#fa9e46" d="M 483.5,335.5 C 483.167,335.5 482.833,335.5 482.5,335.5C 481.181,328.656 481.181,321.656 482.5,314.5C 483.497,321.468 483.83,328.468 483.5,335.5 Z"/></g>
<g><path style="opacity:1" fill="#feeac9" d="M 487.5,327.5 C 487.5,322.167 487.5,316.833 487.5,311.5C 485.821,311.285 484.821,311.952 484.5,313.5C 483.5,313.5 482.5,313.5 481.5,313.5C 481.5,312.167 481.5,310.833 481.5,309.5C 480.178,309.33 479.011,309.663 478,310.5C 477.829,319.01 477.329,327.343 476.5,335.5C 476.5,326.167 476.5,316.833 476.5,307.5C 480.531,307.767 484.364,308.767 488,310.5C 488.818,316.349 488.652,322.015 487.5,327.5 Z"/></g>
<g><path style="opacity:1" fill="#faf9f2" d="M 17.5,280.5 C 19.0418,281.301 20.7085,281.634 22.5,281.5C 23.6485,283.149 24.9818,284.649 26.5,286C 24.9561,287.586 23.7894,289.42 23,291.5C 20.9656,289.968 18.7989,288.635 16.5,287.5C 15.8042,295.557 15.1376,303.557 14.5,311.5C 10.9906,314.239 9.65723,317.906 10.5,322.5C 10.5,326.833 10.5,331.167 10.5,335.5C 11.8333,335.5 13.1667,335.5 14.5,335.5C 14.1936,338.385 14.5269,341.052 15.5,343.5C 19.7734,344.143 22.7734,346.476 24.5,350.5C 21.5719,351.484 18.5719,351.817 15.5,351.5C 14.8333,351.5 14.1667,351.5 13.5,351.5C 10.7463,349.671 9.24627,347.005 9,343.5C 8.63434,322.146 9.13434,300.813 10.5,279.5C 12.8056,279.993 15.139,280.326 17.5,280.5 Z"/></g>
<g><path style="opacity:1" fill="#b52600" d="M 359.5,367.5 C 358.833,367.5 358.167,367.5 357.5,367.5C 356.523,364.011 354.523,361.177 351.5,359C 347.02,357.928 343.353,355.594 340.5,352C 335.824,352.11 331.491,351.11 327.5,349C 335.594,347.143 343.594,344.977 351.5,342.5C 357.01,338.722 363.01,336.222 369.5,335C 375.807,327.19 383.807,322.023 393.5,319.5C 392.742,327.615 389.575,334.615 384,340.5C 383.51,341.793 383.343,343.127 383.5,344.5C 382.325,344.281 381.325,344.614 380.5,345.5C 376.614,352.22 371.281,357.387 364.5,361C 362.925,363.356 361.259,365.522 359.5,367.5 Z"/></g>
<g><path style="opacity:1" fill="#c63201" d="M 382.5,330.5 C 383.803,333.355 383.803,336.355 382.5,339.5C 379.976,341.19 377.976,343.357 376.5,346C 374.76,347.694 372.76,348.861 370.5,349.5C 370.456,353.554 368.456,356.221 364.5,357.5C 363.614,358.325 363.281,359.325 363.5,360.5C 361.738,360.357 360.071,360.691 358.5,361.5C 356.712,359.209 354.712,357.043 352.5,355C 349.554,354.194 346.888,352.861 344.5,351C 345.551,349.615 346.884,348.615 348.5,348C 361.302,344.608 372.635,338.774 382.5,330.5 Z"/></g>
<g><path style="opacity:1" fill="#f7f3e4" d="M 154.5,324.5 C 154.5,325.5 154.5,326.5 154.5,327.5C 153.5,327.5 152.5,327.5 151.5,327.5C 151.826,319.316 151.492,311.316 150.5,303.5C 149.85,303.196 149.183,302.863 148.5,302.5C 147.503,310.138 147.169,317.804 147.5,325.5C 147.5,327.833 147.5,330.167 147.5,332.5C 152.401,334.734 157.568,336.068 163,336.5C 164.726,342.032 165.726,347.699 166,353.5C 167.379,358.587 169.213,363.253 171.5,367.5C 171.5,369.167 171.5,370.833 171.5,372.5C 167.5,372.5 163.5,372.5 159.5,372.5C 156.644,364.404 154.478,356.071 153,347.5C 151.989,346.663 150.822,346.33 149.5,346.5C 150.302,356.921 152.969,366.921 157.5,376.5C 158.833,378.167 158.833,379.833 157.5,381.5C 156.5,381.5 155.5,381.5 154.5,381.5C 153.5,379.5 152.5,377.5 151.5,375.5C 149.307,364.971 146.974,354.638 144.5,344.5C 143.596,343.791 143.263,342.791 143.5,341.5C 148.132,342.376 152.799,343.043 157.5,343.5C 157.335,347.182 157.501,350.848 158,354.5C 159.359,358.802 160.526,363.136 161.5,367.5C 162.833,367.5 164.167,367.5 165.5,367.5C 165.037,364.779 164.371,362.112 163.5,359.5C 165.101,360.643 165.767,359.976 165.5,357.5C 165.169,353.644 164.336,349.978 163,346.5C 162.802,348.382 162.302,350.048 161.5,351.5C 160.833,347.5 160.167,343.5 159.5,339.5C 156.482,339.296 153.482,338.963 150.5,338.5C 147.615,338.357 145.282,337.357 143.5,335.5C 143.5,322.167 143.5,308.833 143.5,295.5C 145.308,295.491 146.975,295.991 148.5,297C 151.378,298.599 154.044,300.433 156.5,302.5C 154.584,309.624 153.917,316.957 154.5,324.5 Z"/></g>
<g><path style="opacity:1" fill="#f79c43" d="M 150.5,303.5 C 150.5,310.167 150.5,316.833 150.5,323.5C 149.778,324.551 148.778,325.218 147.5,325.5C 147.169,317.804 147.503,310.138 148.5,302.5C 149.183,302.863 149.85,303.196 150.5,303.5 Z"/></g>
<g><path style="opacity:1" fill="#f8a449" d="M 623.5,297.5 C 623.181,302.363 623.514,307.03 624.5,311.5C 624.83,314.157 625.163,316.824 625.5,319.5C 623.914,324.688 623.247,330.022 623.5,335.5C 623.5,339.5 623.5,343.5 623.5,347.5C 618.817,344.468 614.65,345.134 611,349.5C 610.503,352.146 610.336,354.813 610.5,357.5C 608.821,357.285 607.821,357.952 607.5,359.5C 605.856,361.481 604.19,363.481 602.5,365.5C 605.446,367.111 608.113,369.111 610.5,371.5C 612.965,372.828 614.799,374.828 616,377.5C 615.549,383.928 614.382,383.928 612.5,377.5C 610.194,377.007 607.861,376.674 605.5,376.5C 603.837,374.467 601.837,372.634 599.5,371C 598.552,370.517 597.552,370.351 596.5,370.5C 596.5,369.5 596.5,368.5 596.5,367.5C 595.5,367.5 594.5,367.5 593.5,367.5C 593.768,372.347 593.102,377.014 591.5,381.5C 591.672,382.492 591.338,383.158 590.5,383.5C 588.473,383.662 586.473,383.495 584.5,383C 586.374,379.002 587.708,374.835 588.5,370.5C 588.5,369.5 588.5,368.5 588.5,367.5C 589.461,365.735 589.795,363.735 589.5,361.5C 592.166,361.067 594.832,360.567 597.5,360C 599.565,355.764 602.898,353.264 607.5,352.5C 606.833,351.833 606.167,351.167 605.5,350.5C 606.747,348.677 607.414,346.677 607.5,344.5C 607.5,344.167 607.5,343.833 607.5,343.5C 609.371,343.141 610.871,342.141 612,340.5C 612.413,337.768 613.08,335.101 614,332.5C 619.584,326.395 620.917,319.395 618,311.5C 617,310.833 616,310.167 615,309.5C 614.647,306.848 613.48,304.848 611.5,303.5C 609.62,300.403 608.287,297.07 607.5,293.5C 607.45,291.41 608.45,290.077 610.5,289.5C 613.363,290.864 615.363,293.03 616.5,296C 618.74,296.977 621.073,297.477 623.5,297.5 Z"/></g>
<g><path style="opacity:1" fill="#b07449" d="M 175.5,339.5 C 176.268,340.263 176.768,341.263 177,342.5C 177.333,342.167 177.667,341.833 178,341.5C 179.225,346.085 179.725,350.752 179.5,355.5C 177.964,351.558 176.63,347.558 175.5,343.5C 175.5,342.167 175.5,340.833 175.5,339.5 Z"/></g>
<g><path style="opacity:1" fill="#f7d7ac" d="M 15.5,343.5 C 15.5,343.167 15.5,342.833 15.5,342.5C 17.1992,342.34 18.8659,342.506 20.5,343C 23.7137,345.932 26.0471,349.432 27.5,353.5C 26.8333,353.833 26.1667,354.167 25.5,354.5C 22.0407,353.487 18.7073,352.487 15.5,351.5C 18.5719,351.817 21.5719,351.484 24.5,350.5C 22.7734,346.476 19.7734,344.143 15.5,343.5 Z"/></g>
<g><path style="opacity:1" fill="#3c0b0b" d="M 463.5,339.5 C 460.147,361.235 452.481,381.235 440.5,399.5C 440.101,394.428 441.268,389.761 444,385.5C 445,386.833 446,386.833 447,385.5C 448.964,383.147 449.464,380.647 448.5,378C 449.842,375.985 450.342,373.818 450,371.5C 449.586,371.957 449.086,372.291 448.5,372.5C 447.341,368.878 447.175,365.211 448,361.5C 449.137,365.107 450.804,368.44 453,371.5C 454.437,367.028 454.937,362.361 454.5,357.5C 450.821,356.744 449.821,354.744 451.5,351.5C 454.86,350.79 456.693,352.124 457,355.5C 458.815,349.911 460.482,344.244 462,338.5C 462.383,339.056 462.883,339.389 463.5,339.5 Z"/></g>
<g><path style="opacity:1" fill="#f0995d" d="M 607.5,344.5 C 607.414,346.677 606.747,348.677 605.5,350.5C 606.167,351.167 606.833,351.833 607.5,352.5C 602.898,353.264 599.565,355.764 597.5,360C 594.832,360.567 592.166,361.067 589.5,361.5C 589.795,363.735 589.461,365.735 588.5,367.5C 588.5,365.167 588.5,362.833 588.5,360.5C 591.311,360.174 593.978,359.341 596.5,358C 600.745,353.902 604.411,349.402 607.5,344.5 Z"/></g>
<g><path style="opacity:1" fill="#fef0f3" d="M 163.5,359.5 C 162.833,356.833 162.167,354.167 161.5,351.5C 162.302,350.048 162.802,348.382 163,346.5C 164.336,349.978 165.169,353.644 165.5,357.5C 165.767,359.976 165.101,360.643 163.5,359.5 Z"/></g>
<g><path style="opacity:1" fill="#430607" d="M 89.5,279.5 C 88.3263,280.514 87.6596,281.847 87.5,283.5C 86.8333,282.833 86.1667,282.167 85.5,281.5C 82.7173,276.97 78.7173,275.47 73.5,277C 69.3661,282.666 69.6994,288.166 74.5,293.5C 73.675,294.386 72.675,294.719 71.5,294.5C 61.1714,292.987 55.1714,297.32 53.5,307.5C 52.1667,307.5 50.8333,307.5 49.5,307.5C 47.0712,307.585 45.0712,308.585 43.5,310.5C 41.0487,313.77 38.3821,316.77 35.5,319.5C 39.0424,323.387 42.7091,327.22 46.5,331C 47.7932,331.49 49.1266,331.657 50.5,331.5C 51.5,331.5 52.5,331.5 53.5,331.5C 54.1778,336.863 56.8445,340.863 61.5,343.5C 61.6107,344.117 61.944,344.617 62.5,345C 66.3563,345.177 70.023,345.677 73.5,346.5C 69.5972,351.736 69.5972,356.903 73.5,362C 77.6964,363.051 81.3631,362.217 84.5,359.5C 84.5,359.167 84.5,358.833 84.5,358.5C 84.8333,358.5 85.1667,358.5 85.5,358.5C 86.2679,357.737 86.7679,356.737 87,355.5C 87.2784,356.416 87.7784,357.082 88.5,357.5C 92.2366,372.192 86.5699,378.692 71.5,377C 67.3333,375.5 64.5,372.667 63,368.5C 61.7497,363.58 61.2497,358.58 61.5,353.5C 51.2881,351.969 44.4547,346.302 41,336.5C 38.8302,330.828 36.6636,325.162 34.5,319.5C 37.5264,309.973 41.6931,300.973 47,292.5C 51.1339,288.683 55.9672,286.349 61.5,285.5C 58.6994,268.48 65.6994,260.647 82.5,262C 88.9759,266.01 91.3093,271.843 89.5,279.5 Z"/></g>
<g><path style="opacity:1" fill="#400308" d="M 576.5,364.5 C 576.54,367.425 575.707,370.091 574,372.5C 571.833,374 569.667,375.5 567.5,377C 553.896,379.231 547.896,373.398 549.5,359.5C 550.6,358.395 551.267,357.062 551.5,355.5C 552.167,356.167 552.833,356.833 553.5,357.5C 554.338,357.842 554.672,358.508 554.5,359.5C 554.5,360.167 554.833,360.5 555.5,360.5C 555.577,361.75 556.244,362.583 557.5,363C 557.167,363.333 556.833,363.667 556.5,364C 559.405,365.037 562.239,366.204 565,367.5C 571.666,362.335 573.833,355.668 571.5,347.5C 577.59,347.444 582.757,345.111 587,340.5C 587.273,342.101 587.773,343.601 588.5,345C 586.29,346.509 584.457,348.342 583,350.5C 582.612,349.572 581.945,348.905 581,348.5C 579.56,349.148 578.06,349.481 576.5,349.5C 576.5,354.5 576.5,359.5 576.5,364.5 Z"/></g>
<g><path style="opacity:1" fill="#edc180" d="M 469.5,343.5 C 469.225,348.777 468.225,353.777 466.5,358.5C 466.775,353.223 467.775,348.223 469.5,343.5 Z"/></g>
<g><path style="opacity:1" fill="#590000" d="M 266.5,359.5 C 257.854,380.668 259.521,401.002 271.5,420.5C 277.025,423.858 281.358,428.358 284.5,434C 285.899,434.595 287.232,434.428 288.5,433.5C 292.332,436.25 296.332,438.75 300.5,441C 306.249,441.081 311.749,442.248 317,444.5C 323.728,442.222 330.562,441.889 337.5,443.5C 347.525,441.427 357.525,439.427 367.5,437.5C 367.5,436.5 367.5,435.5 367.5,434.5C 371.621,432.871 375.954,431.705 380.5,431C 386.52,427.634 392.52,424.3 398.5,421C 404.726,413.019 411.726,405.853 419.5,399.5C 419.921,402.657 418.755,404.99 416,406.5C 415.517,407.448 415.351,408.448 415.5,409.5C 410.738,410.441 408.238,413.441 408,418.5C 405.932,420.562 403.432,421.728 400.5,422C 399.663,423.011 399.33,424.178 399.5,425.5C 398.448,425.351 397.448,425.517 396.5,426C 394.63,428.04 392.63,429.873 390.5,431.5C 388.167,431.5 385.833,431.5 383.5,431.5C 383.5,433.167 383.5,434.833 383.5,436.5C 370.58,439.21 357.58,441.71 344.5,444C 341.79,445.015 339.457,446.515 337.5,448.5C 328.175,447.885 318.842,447.218 309.5,446.5C 306.78,444.889 303.78,444.056 300.5,444C 296.092,441.93 291.925,439.43 288,436.5C 284.069,437.424 281.902,435.757 281.5,431.5C 279.5,431.5 277.5,431.5 275.5,431.5C 272.918,427.718 270.085,424.052 267,420.5C 263.152,409.273 260.318,397.773 258.5,386C 260.001,378.497 261.501,370.997 263,363.5C 264.405,362.269 265.571,360.936 266.5,359.5 Z"/></g>
<g><path style="opacity:1" fill="#eba164" d="M 567.5,349.5 C 570.573,360.758 566.573,364.425 555.5,360.5C 554.833,360.5 554.5,360.167 554.5,359.5C 557.841,360.005 561.174,360.172 564.5,360C 566.438,356.837 567.438,353.337 567.5,349.5 Z"/></g>
<g><path style="opacity:1" fill="#f5a44e" d="M 26.5,338.5 C 27.9473,339.622 28.9473,341.122 29.5,343C 30.0944,343.464 30.7611,343.631 31.5,343.5C 34.5665,348.741 38.2332,353.574 42.5,358C 44.7693,360.023 47.4359,360.856 50.5,360.5C 50.4285,371.19 54.7618,379.69 63.5,386C 77.4897,392.274 89.1563,389.441 98.5,377.5C 100.311,375.615 101.478,373.281 102,370.5C 103.147,369.542 104.147,369.875 105,371.5C 105.167,370.833 105.333,370.167 105.5,369.5C 103.438,364.008 102.105,358.341 101.5,352.5C 99.4453,351.813 97.7786,350.646 96.5,349C 90.8431,348.501 85.1764,348.334 79.5,348.5C 79.3896,351.059 80.0562,353.392 81.5,355.5C 82.1667,354.167 82.8333,352.833 83.5,351.5C 84.4742,353.743 84.8076,356.076 84.5,358.5C 84.5,358.833 84.5,359.167 84.5,359.5C 71.7606,361.899 69.0939,357.733 76.5,347C 76.1639,345.97 75.4972,345.47 74.5,345.5C 73.791,344.596 72.791,344.263 71.5,344.5C 71.5,343.833 71.5,343.167 71.5,342.5C 78.4505,341.407 85.4505,341.24 92.5,342C 97.7891,343.306 101.956,346.139 105,350.5C 105.464,349.906 105.631,349.239 105.5,348.5C 106.5,348.5 107.5,348.5 108.5,348.5C 108.297,350.044 107.63,351.378 106.5,352.5C 107.5,354.5 108.5,356.5 109.5,358.5C 107.254,362.151 106.92,365.985 108.5,370C 107.131,373.012 106.464,376.179 106.5,379.5C 105.606,382.957 103.94,385.957 101.5,388.5C 101.5,389.167 101.5,389.833 101.5,390.5C 99.5,390.5 97.5,390.5 95.5,390.5C 95.5,391.5 95.5,392.5 95.5,393.5C 92.1667,394.833 88.8333,396.167 85.5,397.5C 81.2315,398.373 76.8982,398.706 72.5,398.5C 67.933,397.978 63.5997,396.645 59.5,394.5C 58.8933,394.624 58.56,394.957 58.5,395.5C 57.7417,397.981 57.7417,400.648 58.5,403.5C 57.0413,403.567 55.7079,403.234 54.5,402.5C 54.0719,399.215 53.0719,396.215 51.5,393.5C 50.3429,387.52 47.8429,382.187 44,377.5C 43.1369,374.041 41.9703,370.707 40.5,367.5C 40.1667,368.667 39.8333,369.833 39.5,371C 40.41,375.137 41.0767,379.304 41.5,383.5C 42.9361,390.086 43.9361,396.753 44.5,403.5C 42.4458,403.635 40.7791,402.968 39.5,401.5C 35.8527,388.265 33.186,374.932 31.5,361.5C 24.4297,360.982 17.4297,359.982 10.5,358.5C 10.5,356.167 10.5,353.833 10.5,351.5C 11.5,351.5 12.5,351.5 13.5,351.5C 14.1667,351.5 14.8333,351.5 15.5,351.5C 18.7073,352.487 22.0407,353.487 25.5,354.5C 26.1667,354.167 26.8333,353.833 27.5,353.5C 26.0471,349.432 23.7137,345.932 20.5,343C 18.8659,342.506 17.1992,342.34 15.5,342.5C 15.5,342.167 15.5,341.833 15.5,341.5C 17.2259,341.185 18.8925,341.019 20.5,341C 23.0541,343.554 25.5541,346.054 28,348.5C 27.9636,345.141 27.4636,341.807 26.5,338.5 Z"/></g>
<g><path style="opacity:1" fill="#f6a052" d="M 98.5,377.5 C 104.379,363.586 100.046,355.253 85.5,352.5C 85.5,354.5 85.5,356.5 85.5,358.5C 85.1667,358.5 84.8333,358.5 84.5,358.5C 84.8076,356.076 84.4742,353.743 83.5,351.5C 82.8333,352.833 82.1667,354.167 81.5,355.5C 80.0562,353.392 79.3896,351.059 79.5,348.5C 85.1764,348.334 90.8431,348.501 96.5,349C 97.7786,350.646 99.4453,351.813 101.5,352.5C 102.105,358.341 103.438,364.008 105.5,369.5C 105.333,370.167 105.167,370.833 105,371.5C 104.147,369.875 103.147,369.542 102,370.5C 101.478,373.281 100.311,375.615 98.5,377.5 Z"/></g>
<g><path style="opacity:1" fill="#eba469" d="M 74.5,345.5 C 75.4972,345.47 76.1639,345.97 76.5,347C 69.0939,357.733 71.7606,361.899 84.5,359.5C 81.3631,362.217 77.6964,363.051 73.5,362C 69.5972,356.903 69.5972,351.736 73.5,346.5C 74.1667,346.5 74.5,346.167 74.5,345.5 Z"/></g>
<g><path style="opacity:1" fill="#6e330d" d="M 61.5,343.5 C 64.7644,344.324 68.0977,344.658 71.5,344.5C 72.791,344.263 73.791,344.596 74.5,345.5C 74.5,346.167 74.1667,346.5 73.5,346.5C 70.023,345.677 66.3563,345.177 62.5,345C 61.944,344.617 61.6107,344.117 61.5,343.5 Z"/></g>
<g><path style="opacity:1" fill="#efa161" d="M 138.5,351.5 C 140.37,355.52 142.537,359.52 145,363.5C 145.393,365.716 144.893,367.716 143.5,369.5C 142.833,368.833 142.167,368.167 141.5,367.5C 140.518,362.188 139.518,356.855 138.5,351.5 Z"/></g>
<g><path style="opacity:1" fill="#eda056" d="M 108.5,348.5 C 109.167,348.5 109.833,348.5 110.5,348.5C 110.721,359.955 116.387,366.955 127.5,369.5C 127.5,370.5 127.5,371.5 127.5,372.5C 121.771,378.7 119.938,386.033 122,394.5C 126.459,401.134 130.292,408.134 133.5,415.5C 132.5,415.5 131.5,415.5 130.5,415.5C 130.136,412.116 128.803,409.116 126.5,406.5C 126.167,406.833 125.833,407.167 125.5,407.5C 126.456,409.075 127.123,410.742 127.5,412.5C 119.194,403.877 115.361,393.544 116,381.5C 117.436,378.526 118.436,375.526 119,372.5C 116.146,370.402 113.479,368.069 111,365.5C 110.097,370.476 108.597,375.142 106.5,379.5C 106.464,376.179 107.131,373.012 108.5,370C 106.92,365.985 107.254,362.151 109.5,358.5C 108.5,356.5 107.5,354.5 106.5,352.5C 107.63,351.378 108.297,350.044 108.5,348.5 Z"/></g>
<g><path style="opacity:1" fill="#f6a54c" d="M 535.5,289.5 C 534.508,289.328 533.842,289.662 533.5,290.5C 532.347,296.653 532.18,302.986 533,309.5C 533.278,310.416 533.778,311.082 534.5,311.5C 534.5,311.833 534.5,312.167 534.5,312.5C 534.833,315.833 535.167,319.167 535.5,322.5C 534.242,325.694 533.576,329.027 533.5,332.5C 532.167,336.167 532.167,339.833 533.5,343.5C 533.5,344.833 533.5,346.167 533.5,347.5C 533.369,348.376 533.702,349.043 534.5,349.5C 538.338,345.251 543.005,342.585 548.5,341.5C 553.017,342.166 557.683,342.833 562.5,343.5C 561.91,344.799 560.91,345.632 559.5,346C 561.372,348.944 564.039,350.111 567.5,349.5C 567.438,353.337 566.438,356.837 564.5,360C 561.174,360.172 557.841,360.005 554.5,359.5C 554.672,358.508 554.338,357.842 553.5,357.5C 553.5,355.833 553.5,354.167 553.5,352.5C 546.528,352.069 541.695,355.069 539,361.5C 537.949,367.794 538.783,373.794 541.5,379.5C 541.672,381.492 541.005,383.158 539.5,384.5C 540.328,385.415 541.328,386.081 542.5,386.5C 544.586,384.977 546.252,385.31 547.5,387.5C 544.748,389.336 541.748,390.336 538.5,390.5C 538.919,387.675 537.919,385.509 535.5,384C 536.973,383.29 537.64,382.124 537.5,380.5C 536.325,380.719 535.325,380.386 534.5,379.5C 533.457,376.204 532.124,373.037 530.5,370C 531.916,365.66 531.249,361.66 528.5,358C 529.601,355.965 530.268,353.798 530.5,351.5C 530.36,349.97 529.693,348.97 528.5,348.5C 527.778,338.453 528.778,328.62 531.5,319C 530.037,314.919 529.037,310.752 528.5,306.5C 528.538,303.379 529.205,300.379 530.5,297.5C 529.262,293.205 529.928,289.205 532.5,285.5C 532.061,283.896 531.394,282.396 530.5,281C 531.213,275.526 531.38,270.026 531,264.5C 531.837,262.156 533.171,260.156 535,258.5C 535.667,259.167 536.333,259.833 537,260.5C 537.5,266.01 537.333,271.51 536.5,277C 536.365,280.042 537.031,282.875 538.5,285.5C 537.174,286.642 536.174,287.976 535.5,289.5 Z"/></g>
<g><path style="opacity:1" fill="#cb8b80" d="M 551.5,355.5 C 551.267,357.062 550.6,358.395 549.5,359.5C 549.167,359.5 548.833,359.5 548.5,359.5C 548.709,358.078 549.209,356.745 550,355.5C 550.69,354.262 551.19,354.262 551.5,355.5 Z"/></g>
<g><path style="opacity:1" fill="#efb16e" d="M 171.5,353.5 C 173.252,357.94 174.585,362.607 175.5,367.5C 173.031,368.607 172.031,370.607 172.5,373.5C 167.968,373.818 163.634,373.485 159.5,372.5C 163.5,372.5 167.5,372.5 171.5,372.5C 171.5,370.833 171.5,369.167 171.5,367.5C 172.597,362.987 172.597,358.321 171.5,353.5 Z"/></g>
<g><path style="opacity:1" fill="#e8a860" d="M 466.5,359.5 C 465.964,362.698 466.631,365.365 468.5,367.5C 468.167,368.833 467.833,370.167 467.5,371.5C 467.011,372.995 466.345,374.329 465.5,375.5C 466.036,372.302 465.369,369.635 463.5,367.5C 463.903,364.514 464.903,361.848 466.5,359.5 Z"/></g>
<g><path style="opacity:1" fill="#fbe2bd" d="M 639.5,340.5 C 639.5,344.167 639.5,347.833 639.5,351.5C 638.762,356.875 637.762,362.209 636.5,367.5C 636.5,364.833 636.5,362.167 636.5,359.5C 637.327,354.349 637.827,349.016 638,343.5C 638.232,342.263 638.732,341.263 639.5,340.5 Z"/></g>
<g><path style="opacity:1" fill="#d78870" d="M 127.5,369.5 C 129.099,369.232 130.432,369.566 131.5,370.5C 130.167,371.167 128.833,371.833 127.5,372.5C 127.5,371.5 127.5,370.5 127.5,369.5 Z"/></g>
<g><path style="opacity:1" fill="#fc9d38" d="M 463.5,367.5 C 465.369,369.635 466.036,372.302 465.5,375.5C 463.692,374.082 463.025,372.082 463.5,369.5C 463.5,368.833 463.5,368.167 463.5,367.5 Z"/></g>
<g><path style="opacity:1" fill="#f9e7bc" d="M 471.5,359.5 C 471.205,363.228 470.539,366.895 469.5,370.5C 468.817,370.863 468.15,371.196 467.5,371.5C 467.833,370.167 468.167,368.833 468.5,367.5C 469.251,364.754 470.251,362.087 471.5,359.5 Z"/></g>
<g><path style="opacity:1" fill="#f0b16a" d="M 144.5,344.5 C 146.974,354.638 149.307,364.971 151.5,375.5C 150.685,374.571 149.852,373.571 149,372.5C 148.667,369.5 148.333,366.5 148,363.5C 144.918,357.554 143.751,351.221 144.5,344.5 Z"/></g>
<g><path style="opacity:1" fill="#eaa85d" d="M 605.5,376.5 C 602.332,375.413 599.332,374.08 596.5,372.5C 596.116,376.272 594.45,379.272 591.5,381.5C 593.102,377.014 593.768,372.347 593.5,367.5C 594.5,367.5 595.5,367.5 596.5,367.5C 596.5,368.5 596.5,369.5 596.5,370.5C 597.552,370.351 598.552,370.517 599.5,371C 601.837,372.634 603.837,374.467 605.5,376.5 Z"/></g>
<g><path style="opacity:1" fill="#fca23f" d="M 634.5,371.5 C 634.3,374.63 633.634,377.63 632.5,380.5C 631.275,379.848 630.608,378.681 630.5,377C 631.459,373.788 631.459,370.622 630.5,367.5C 629.833,368.5 629.167,369.5 628.5,370.5C 628.167,370 627.833,369.5 627.5,369C 627.943,365.921 628.943,363.088 630.5,360.5C 631.086,360.709 631.586,361.043 632,361.5C 632.744,364.89 633.577,368.223 634.5,371.5 Z"/></g>
<g><path style="opacity:1" fill="#eab27b" d="M 90.5,280.5 C 89.8333,280.5 89.5,280.167 89.5,279.5C 91.3093,271.843 88.9759,266.01 82.5,262C 65.6994,260.647 58.6994,268.48 61.5,285.5C 55.9672,286.349 51.1339,288.683 47,292.5C 41.6931,300.973 37.5264,309.973 34.5,319.5C 36.6636,325.162 38.8302,330.828 41,336.5C 44.4547,346.302 51.2881,351.969 61.5,353.5C 61.2497,358.58 61.7497,363.58 63,368.5C 64.5,372.667 67.3333,375.5 71.5,377C 86.5699,378.692 92.2366,372.192 88.5,357.5C 88.369,356.761 88.5357,356.094 89,355.5C 89.6667,356.833 90.3333,358.167 91,359.5C 93.4433,368.436 90.6099,374.936 82.5,379C 65.3536,380.686 57.687,372.853 59.5,355.5C 48.7124,352.884 41.5458,346.217 38,335.5C 36.1159,330.063 33.9492,324.73 31.5,319.5C 34.6721,310.462 38.5055,301.795 43,293.5C 47.4002,288.249 52.9002,284.916 59.5,283.5C 57.1817,272.216 61.1817,264.382 71.5,260C 87.4029,258.067 93.7363,264.901 90.5,280.5 Z"/></g>
<g><path style="opacity:1" fill="#fddea6" d="M 157.5,376.5 C 162.844,376.334 168.177,376.501 173.5,377C 174.305,378.113 174.972,379.279 175.5,380.5C 173.646,379.759 171.979,378.759 170.5,377.5C 166.833,377.5 163.167,377.5 159.5,377.5C 159.5,378.5 159.5,379.5 159.5,380.5C 159.5,380.833 159.5,381.167 159.5,381.5C 158.833,381.5 158.167,381.5 157.5,381.5C 158.833,379.833 158.833,378.167 157.5,376.5 Z"/></g>
<g><path style="opacity:1" fill="#efa95f" d="M 630.5,287.5 C 631.29,288.609 631.79,289.942 632,291.5C 632.222,313.186 632.722,334.853 633.5,356.5C 633.491,358.308 633.991,359.975 635,361.5C 635.278,360.584 635.778,359.918 636.5,359.5C 636.5,362.167 636.5,364.833 636.5,367.5C 635.566,368.568 635.232,369.901 635.5,371.5C 635.167,371.5 634.833,371.5 634.5,371.5C 633.577,368.223 632.744,364.89 632,361.5C 631.586,361.043 631.086,360.709 630.5,360.5C 628.943,363.088 627.943,365.921 627.5,369C 627.833,369.5 628.167,370 628.5,370.5C 629.167,369.5 629.833,368.5 630.5,367.5C 631.459,370.622 631.459,373.788 630.5,377C 630.608,378.681 631.275,379.848 632.5,380.5C 632.665,384.182 632.499,387.848 632,391.5C 631.722,392.416 631.222,393.082 630.5,393.5C 630.82,390.102 630.487,386.768 629.5,383.5C 628.989,381.116 627.989,379.116 626.5,377.5C 626.959,373.927 625.959,370.927 623.5,368.5C 618.121,365.48 612.788,362.48 607.5,359.5C 607.821,357.952 608.821,357.285 610.5,357.5C 610.336,354.813 610.503,352.146 611,349.5C 614.65,345.134 618.817,344.468 623.5,347.5C 623.843,349.483 623.176,350.817 621.5,351.5C 616.052,345.856 613.052,347.189 612.5,355.5C 615.6,357.229 618.934,358.562 622.5,359.5C 623.391,360.11 624.391,360.443 625.5,360.5C 626.91,361.828 628.076,361.495 629,359.5C 631.699,335.55 632.199,311.55 630.5,287.5 Z"/></g>
<g><path style="opacity:1" fill="#fdebc6" d="M 621.5,351.5 C 619.143,351.337 616.81,351.503 614.5,352C 616.432,355.437 619.099,357.937 622.5,359.5C 618.934,358.562 615.6,357.229 612.5,355.5C 613.052,347.189 616.052,345.856 621.5,351.5 Z"/></g>
<g><path style="opacity:1" fill="#ecc290" d="M 3.5,370.5 C 5.87568,374.393 6.87568,378.727 6.5,383.5C 7.09157,386.127 7.4249,388.794 7.5,391.5C 6.04395,387.268 5.04395,382.935 4.5,378.5C 3.90843,375.873 3.5751,373.206 3.5,370.5 Z"/></g>
<g><path style="opacity:1" fill="#fbf5fd" d="M 170.5,377.5 C 170.804,378.15 171.137,378.817 171.5,379.5C 167.555,380.491 163.555,380.824 159.5,380.5C 159.5,379.5 159.5,378.5 159.5,377.5C 163.167,377.5 166.833,377.5 170.5,377.5 Z"/></g>
<g><path style="opacity:1" fill="#f8f5e9" d="M 175.5,343.5 C 176.63,347.558 177.964,351.558 179.5,355.5C 180.882,362.366 182.882,369.032 185.5,375.5C 189.091,383.973 193.424,391.973 198.5,399.5C 198.932,400.71 199.599,401.71 200.5,402.5C 204.806,409.134 209.806,415.134 215.5,420.5C 215.5,420.833 215.5,421.167 215.5,421.5C 221.942,427.883 228.942,433.55 236.5,438.5C 247.178,446.339 258.845,452.339 271.5,456.5C 271.5,456.833 271.5,457.167 271.5,457.5C 270.167,457.5 268.833,457.5 267.5,457.5C 267.5,458.5 267.5,459.5 267.5,460.5C 268.833,460.5 270.167,460.5 271.5,460.5C 271.5,461.5 271.5,462.5 271.5,463.5C 266.939,462.424 262.605,460.757 258.5,458.5C 246.83,453.823 236.164,447.323 226.5,439C 225.552,438.517 224.552,438.351 223.5,438.5C 214.849,429.847 206.516,420.847 198.5,411.5C 197.214,408.883 195.547,406.55 193.5,404.5C 186.123,392.747 180.123,380.414 175.5,367.5C 176.5,367.5 177.5,367.5 178.5,367.5C 176.845,359.59 175.845,351.59 175.5,343.5 Z"/></g>
<g><path style="opacity:1" fill="#eea860" d="M 610.5,371.5 C 614.298,372.297 617.298,374.297 619.5,377.5C 617.341,384.933 615.341,392.266 613.5,399.5C 613.421,395.05 614.088,390.717 615.5,386.5C 615.167,385.5 614.833,384.5 614.5,383.5C 611.728,389.544 610.894,395.877 612,402.5C 612.383,401.944 612.883,401.611 613.5,401.5C 611.98,404.579 611.147,407.912 611,411.5C 610.617,412.056 610.117,412.389 609.5,412.5C 609.971,410.712 610.304,408.878 610.5,407C 608.9,403.057 608.234,398.891 608.5,394.5C 610.071,389.603 610.571,384.603 610,379.5C 608.348,378.601 606.848,377.601 605.5,376.5C 607.861,376.674 610.194,377.007 612.5,377.5C 614.382,383.928 615.549,383.928 616,377.5C 614.799,374.828 612.965,372.828 610.5,371.5 Z"/></g>
<g><path style="opacity:1" fill="#fefefe" d="M -0.5,343.5 C 0.5,348.833 1.5,354.167 2.5,359.5C 2.42305,363.215 2.75638,366.881 3.5,370.5C 3.5751,373.206 3.90843,375.873 4.5,378.5C 4.3347,382.182 4.50137,385.848 5,389.5C 7.00756,399.856 9.67423,409.856 13,419.5C 13.7403,421.319 14.9069,422.652 16.5,423.5C 16.5,423.833 16.5,424.167 16.5,424.5C 17.4333,428.998 18.4333,433.498 19.5,438C 21.4266,441.399 23.4266,444.565 25.5,447.5C 26.2221,451.506 27.0555,455.506 28,459.5C 28.6429,461.93 30.1429,463.597 32.5,464.5C 31.5153,466.098 31.3486,467.765 32,469.5C 32.8159,468.177 33.9826,467.511 35.5,467.5C 35.7394,469.467 35.4061,471.301 34.5,473C 38.4245,472.594 39.4245,474.427 37.5,478.5C 38.6888,479.429 40.0222,479.762 41.5,479.5C 41.4981,484.182 43.4981,487.515 47.5,489.5C 49.0522,496.679 52.5522,502.679 58,507.5C 58.49,508.793 58.6567,510.127 58.5,511.5C 59.8333,511.5 61.1667,511.5 62.5,511.5C 63.1667,511.5 63.5,511.833 63.5,512.5C 63.7066,515.239 64.7066,517.573 66.5,519.5C 66.4096,521.425 65.4096,522.592 63.5,523C 69.5946,524.1 73.9279,527.433 76.5,533C 78.1545,533.608 79.8211,534.108 81.5,534.5C 83.4033,537.748 85.7366,540.748 88.5,543.5C 89.3142,545.766 89.8142,548.1 90,550.5C 91.8138,549.24 93.6471,549.24 95.5,550.5C 97.921,552.934 100.588,554.934 103.5,556.5C 104.648,562.147 107.981,565.647 113.5,567C 116.688,569.432 119.688,572.099 122.5,575C 123.448,575.483 124.448,575.649 125.5,575.5C 126.167,575.5 126.833,575.5 127.5,575.5C 132.058,580.055 137.392,583.388 143.5,585.5C 145.243,588.558 147.91,590.558 151.5,591.5C 151.953,592.458 152.619,593.292 153.5,594C 162.455,598.308 171.122,602.808 179.5,607.5C 179.833,607.5 180.167,607.5 180.5,607.5C 180.799,610.642 182.466,612.809 185.5,614C 193.507,615.494 200.84,618.494 207.5,623C 210.482,623.498 213.482,623.665 216.5,623.5C 216.833,623.5 217.167,623.5 217.5,623.5C 218.579,628.121 221.412,629.455 226,627.5C 227.971,627.468 229.471,628.302 230.5,630C 233.482,630.498 236.482,630.665 239.5,630.5C 241.167,630.5 242.833,630.5 244.5,630.5C 249.892,632.593 255.558,634.093 261.5,635C 264.817,635.498 268.15,635.665 271.5,635.5C 275.183,637.25 279.183,637.917 283.5,637.5C 284.833,638.167 286.167,638.833 287.5,639.5C 191.5,639.5 95.5,639.5 -0.5,639.5C -0.5,540.833 -0.5,442.167 -0.5,343.5 Z"/></g>
<g><path style="opacity:1" fill="#440304" d="M 141.5,367.5 C 142.167,368.167 142.833,368.833 143.5,369.5C 148.989,391.476 158.489,411.476 172,429.5C 172.816,430.823 173.983,431.489 175.5,431.5C 178.287,437.967 182.62,443.3 188.5,447.5C 188.833,448.167 189.167,448.833 189.5,449.5C 186.508,452.122 183.508,454.789 180.5,457.5C 173.531,460.123 166.531,460.123 159.5,457.5C 157.237,453.897 154.57,450.564 151.5,447.5C 148.906,438.398 143.74,431.065 136,425.5C 135.689,421.91 134.856,418.577 133.5,415.5C 130.292,408.134 126.459,401.134 122,394.5C 119.938,386.033 121.771,378.7 127.5,372.5C 128.833,371.833 130.167,371.167 131.5,370.5C 134.329,368.022 137.662,367.022 141.5,367.5 Z"/></g>
<g><path style="opacity:1" fill="#b96e39" d="M 185.5,375.5 C 186.833,375.833 188.167,376.167 189.5,376.5C 190.468,378.607 190.802,380.941 190.5,383.5C 191.5,383.5 192.5,383.5 193.5,383.5C 193.34,385.199 193.506,386.866 194,388.5C 196.554,391.695 198.054,395.362 198.5,399.5C 193.424,391.973 189.091,383.973 185.5,375.5 Z"/></g>
<g><path style="opacity:1" fill="#490101" d="M 451.5,335.5 C 451.5,340.833 451.5,346.167 451.5,351.5C 449.821,354.744 450.821,356.744 454.5,357.5C 454.937,362.361 454.437,367.028 453,371.5C 450.804,368.44 449.137,365.107 448,361.5C 447.175,365.211 447.341,368.878 448.5,372.5C 449.086,372.291 449.586,371.957 450,371.5C 450.342,373.818 449.842,375.985 448.5,378C 449.464,380.647 448.964,383.147 447,385.5C 446,386.833 445,386.833 444,385.5C 441.268,389.761 440.101,394.428 440.5,399.5C 438.926,399.937 437.759,400.937 437,402.5C 436.667,402.167 436.333,401.833 436,401.5C 434.441,403.217 433.608,405.217 433.5,407.5C 432.5,407.5 431.5,407.5 430.5,407.5C 430.5,408.5 430.5,409.5 430.5,410.5C 429.448,410.351 428.448,410.517 427.5,411C 428.833,412.84 428.666,413.34 427,412.5C 424.695,414.816 421.862,416.15 418.5,416.5C 416.135,418.588 415.135,421.254 415.5,424.5C 413.897,424.312 412.563,424.812 411.5,426C 411.833,426.333 412.167,426.667 412.5,427C 409.288,428.018 407.455,430.184 407,433.5C 406.667,433.167 406.333,432.833 406,432.5C 405.517,433.448 405.351,434.448 405.5,435.5C 403.007,435.131 402.34,435.797 403.5,437.5C 399.215,438.208 394.882,438.708 390.5,439C 390.833,439.333 391.167,439.667 391.5,440C 387.382,442.283 383.049,444.116 378.5,445.5C 377.429,447.325 378.096,448.492 380.5,449C 377.135,450.344 374.135,452.177 371.5,454.5C 364.363,455.101 357.363,456.434 350.5,458.5C 347.539,457.418 344.539,457.418 341.5,458.5C 339.291,458.431 337.291,457.764 335.5,456.5C 336.533,455.548 337.7,455.548 339,456.5C 341.38,455.147 343.88,453.981 346.5,453C 342.848,452.501 339.182,452.335 335.5,452.5C 337.048,451.206 339.048,450.539 341.5,450.5C 350.426,450.756 358.759,448.922 366.5,445C 373.167,443.333 379.833,441.667 386.5,440C 386.167,439.667 385.833,439.333 385.5,439C 387.909,437.799 389.909,436.133 391.5,434C 390.748,433.329 390.414,432.496 390.5,431.5C 392.63,429.873 394.63,428.04 396.5,426C 397.448,425.517 398.448,425.351 399.5,425.5C 399.33,424.178 399.663,423.011 400.5,422C 403.432,421.728 405.932,420.562 408,418.5C 408.238,413.441 410.738,410.441 415.5,409.5C 415.351,408.448 415.517,407.448 416,406.5C 418.755,404.99 419.921,402.657 419.5,399.5C 421.288,399.785 422.955,399.452 424.5,398.5C 425.8,395.568 427.8,393.234 430.5,391.5C 431.48,388.914 431.813,386.247 431.5,383.5C 433.167,383.5 434.833,383.5 436.5,383.5C 438.162,373.262 441.995,363.928 448,355.5C 448.478,348.433 449.645,341.767 451.5,335.5 Z"/></g>
<g><path style="opacity:1" fill="#7d3c14" d="M 516.5,379.5 C 517.926,381.679 518.592,384.179 518.5,387C 518.492,388.707 518.158,390.207 517.5,391.5C 517.495,387.466 517.162,383.466 516.5,379.5 Z"/></g>
<g><path style="opacity:1" fill="#f1a655" d="M 463.5,369.5 C 463.025,372.082 463.692,374.082 465.5,375.5C 464.455,378.114 463.955,380.78 464,383.5C 466.983,386.813 470.317,389.813 474,392.5C 474.167,393.167 474.333,393.833 474.5,394.5C 470.622,402.276 466.456,409.943 462,417.5C 460.644,418.38 459.144,418.714 457.5,418.5C 457.351,417.448 457.517,416.448 458,415.5C 462.585,409.07 466.418,402.237 469.5,395C 469.097,393.527 468.43,392.194 467.5,391C 465.388,389.804 463.388,388.804 461.5,388C 456.956,395.646 452.289,403.146 447.5,410.5C 446.5,410.5 445.5,410.5 444.5,410.5C 444.5,409.167 444.5,407.833 444.5,406.5C 444.833,405.167 445.167,403.833 445.5,402.5C 448.429,399.178 450.929,395.511 453,391.5C 456.617,384.107 460.117,376.773 463.5,369.5 Z"/></g>
<g><path style="opacity:1" fill="#efa85d" d="M 484.5,383.5 C 485.661,388.175 483.994,390.841 479.5,391.5C 474.612,388.679 471.278,384.513 469.5,379C 472.198,372.389 474.364,365.555 476,358.5C 476.71,357.027 477.876,356.36 479.5,356.5C 478.644,364.095 476.644,371.429 473.5,378.5C 475.45,382.624 478.45,385.624 482.5,387.5C 482.229,385.62 482.896,384.287 484.5,383.5 Z"/></g>
<g><path style="opacity:1" fill="#f1a14e" d="M 368.5,216.5 C 369.794,218.907 371.461,221.074 373.5,223C 373.043,223.414 372.709,223.914 372.5,224.5C 380.561,249.81 374.228,270.643 353.5,287C 351.527,287.495 349.527,287.662 347.5,287.5C 347.67,288.822 347.337,289.989 346.5,291C 343.372,291.875 340.372,293.042 337.5,294.5C 336.147,295.524 335.48,296.857 335.5,298.5C 332.474,299.577 329.474,299.577 326.5,298.5C 313.892,302.851 300.892,304.517 287.5,303.5C 286.835,307.86 284.168,309.86 279.5,309.5C 279.64,311.124 278.973,312.29 277.5,313C 275.527,313.495 273.527,313.662 271.5,313.5C 271.5,314.5 271.5,315.5 271.5,316.5C 265.531,317.971 260.365,320.971 256,325.5C 255.306,328.86 253.306,330.86 250,331.5C 244.218,340.063 239.218,349.063 235,358.5C 229.345,377.22 228.011,396.22 231,415.5C 228.852,414.195 227.352,412.362 226.5,410C 221.764,408.653 217.764,406.153 214.5,402.5C 212.333,397 208.999,392.333 204.5,388.5C 203.691,386.929 203.357,385.262 203.5,383.5C 201.182,383.343 199.516,382.176 198.5,380C 197.2,375.579 195.534,371.413 193.5,367.5C 192.833,367.5 192.167,367.5 191.5,367.5C 190.075,356.745 188.575,346.078 187,335.5C 186.333,324.833 186.333,314.167 187,303.5C 187.993,298.837 189.493,294.337 191.5,290C 190.574,286.861 190.408,283.694 191,280.5C 191.333,280.833 191.667,281.167 192,281.5C 195.859,273.089 199.026,264.422 201.5,255.5C 202.5,255.5 203.5,255.5 204.5,255.5C 205.5,255.5 206.5,255.5 207.5,255.5C 202.475,266.738 198.475,278.404 195.5,290.5C 194.703,294.798 194.37,299.132 194.5,303.5C 193.5,303.5 192.5,303.5 191.5,303.5C 191.333,319.503 191.5,335.503 192,351.5C 193.855,357.931 195.855,364.264 198,370.5C 199,371.167 200,371.833 201,372.5C 203.503,376.123 205.67,379.79 207.5,383.5C 207.215,385.288 207.548,386.955 208.5,388.5C 211.267,391.925 213.6,395.591 215.5,399.5C 219.329,399.927 222.996,399.927 226.5,399.5C 226.171,387.75 227.004,376.083 229,364.5C 231.07,360.474 233.237,356.474 235.5,352.5C 234.572,351.232 234.405,349.899 235,348.5C 238.367,343.746 241.367,338.746 244,333.5C 245.11,331.963 246.61,331.297 248.5,331.5C 248.351,330.448 248.517,329.448 249,328.5C 251.333,326.5 253.667,324.5 256,322.5C 256.483,321.552 256.649,320.552 256.5,319.5C 259.634,318.721 262.301,317.055 264.5,314.5C 270.485,311.689 275.818,308.022 280.5,303.5C 281.086,303.709 281.586,304.043 282,304.5C 286.043,302.407 290.21,300.574 294.5,299C 306.541,296.169 318.541,293.502 330.5,291C 332.596,290.263 334.263,289.097 335.5,287.5C 344.711,286.223 352.545,281.89 359,274.5C 359.483,273.552 359.649,272.552 359.5,271.5C 360.822,271.67 361.989,271.337 363,270.5C 371.969,256.716 374.136,241.882 369.5,226C 369.645,224.774 369.978,223.607 370.5,222.5C 365.409,215.856 360.409,209.023 355.5,202C 349.417,198.094 342.75,195.928 335.5,195.5C 335.5,194.5 335.5,193.5 335.5,192.5C 332.833,192.167 330.167,191.833 327.5,191.5C 326.666,190.252 325.333,189.585 323.5,189.5C 318.516,188.955 313.516,188.622 308.5,188.5C 299.506,189.041 290.506,189.375 281.5,189.5C 283.265,188.539 285.265,188.205 287.5,188.5C 287.5,187.5 287.5,186.5 287.5,185.5C 291.783,185.377 295.95,186.044 300,187.5C 303.108,186.565 306.275,185.899 309.5,185.5C 318.26,185.951 326.926,186.951 335.5,188.5C 335.5,189.5 335.5,190.5 335.5,191.5C 338.85,191.335 342.183,191.502 345.5,192C 346.872,193.242 347.872,194.742 348.5,196.5C 358.876,199.542 365.542,206.209 368.5,216.5 Z"/></g>
<g><path style="opacity:1" fill="#fcb45b" d="M 335.5,287.5 C 334.263,289.097 332.596,290.263 330.5,291C 318.541,293.502 306.541,296.169 294.5,299C 290.21,300.574 286.043,302.407 282,304.5C 281.586,304.043 281.086,303.709 280.5,303.5C 275.818,308.022 270.485,311.689 264.5,314.5C 262.301,317.055 259.634,318.721 256.5,319.5C 256.649,320.552 256.483,321.552 256,322.5C 253.667,324.5 251.333,326.5 249,328.5C 248.517,329.448 248.351,330.448 248.5,331.5C 246.61,331.297 245.11,331.963 244,333.5C 241.367,338.746 238.367,343.746 235,348.5C 234.405,349.899 234.572,351.232 235.5,352.5C 233.237,356.474 231.07,360.474 229,364.5C 227.004,376.083 226.171,387.75 226.5,399.5C 222.996,399.927 219.329,399.927 215.5,399.5C 213.6,395.591 211.267,391.925 208.5,388.5C 207.548,386.955 207.215,385.288 207.5,383.5C 211.421,382.93 213.588,384.597 214,388.5C 217.073,391.383 219.906,394.383 222.5,397.5C 222.939,384.727 224.272,372.06 226.5,359.5C 230.219,349.664 234.886,340.331 240.5,331.5C 241.927,328.91 244.093,327.244 247,326.5C 247.333,325.5 247.667,324.5 248,323.5C 249.487,322.845 250.653,321.845 251.5,320.5C 252.689,319.571 254.022,319.238 255.5,319.5C 255.5,317.167 255.5,314.833 255.5,312.5C 258.167,312.167 260.833,311.833 263.5,311.5C 263.351,310.448 263.517,309.448 264,308.5C 266.868,307.639 269.202,305.972 271,303.5C 271.333,304.167 271.667,304.833 272,305.5C 281.804,298.609 292.47,294.276 304,292.5C 309.12,291.462 314.287,290.462 319.5,289.5C 318.271,288.719 316.938,288.219 315.5,288C 322.158,287.5 328.825,287.334 335.5,287.5 Z"/></g>
<g><path style="opacity:1" fill="#fbd087" d="M 220.5,271.5 C 221.5,271.5 222.5,271.5 223.5,271.5C 222.894,275.733 221.394,279.733 219,283.5C 218.501,288.854 216.501,293.52 213,297.5C 213.538,303.606 211.871,308.939 208,313.5C 207.505,315.473 207.338,317.473 207.5,319.5C 206.5,319.5 205.5,319.5 204.5,319.5C 204.5,308.833 204.5,298.167 204.5,287.5C 205.5,287.5 206.5,287.5 207.5,287.5C 207.5,290.167 207.5,292.833 207.5,295.5C 208.5,295.5 209.5,295.5 210.5,295.5C 210.756,293.063 211.423,290.729 212.5,288.5C 213.325,287.614 214.325,287.281 215.5,287.5C 218.284,282.578 219.951,277.245 220.5,271.5 Z"/></g>
<g><path style="opacity:1" fill="#fce0a4" d="M 213.5,271.5 C 213.5,274.167 213.5,276.833 213.5,279.5C 214.822,279.67 215.989,279.337 217,278.5C 218.213,276.075 219.379,273.741 220.5,271.5C 219.951,277.245 218.284,282.578 215.5,287.5C 214.325,287.281 213.325,287.614 212.5,288.5C 211.423,290.729 210.756,293.063 210.5,295.5C 209.5,295.5 208.5,295.5 207.5,295.5C 207.5,292.833 207.5,290.167 207.5,287.5C 208.75,287.423 209.583,286.756 210,285.5C 211.653,280.816 212.819,276.15 213.5,271.5 Z"/></g>
<g><path style="opacity:1" fill="#fcc36e" d="M 217.5,255.5 C 215.637,260.95 213.47,266.284 211,271.5C 210.439,277.116 209.272,282.45 207.5,287.5C 206.5,287.5 205.5,287.5 204.5,287.5C 204.5,298.167 204.5,308.833 204.5,319.5C 205.5,319.5 206.5,319.5 207.5,319.5C 207.662,321.527 207.495,323.527 207,325.5C 205.47,327.226 204.47,329.226 204,331.5C 202.605,328.715 201.772,325.715 201.5,322.5C 202.305,310.842 202.972,299.175 203.5,287.5C 202.5,287.5 201.5,287.5 200.5,287.5C 200.488,283.381 201.488,279.548 203.5,276C 202.483,274.951 202.316,273.784 203,272.5C 203.974,274.878 204.641,274.544 205,271.5C 205.333,272.167 205.667,272.833 206,273.5C 209.605,269.536 211.939,264.869 213,259.5C 214.694,258.301 216.194,256.968 217.5,255.5 Z"/></g>
<g><path style="opacity:1" fill="#e28b3a" d="M 309.5,264.5 C 317.812,267.447 325.812,266.614 333.5,262C 334.823,261.184 335.489,260.017 335.5,258.5C 336.496,258.586 337.329,258.252 338,257.5C 337.49,259.38 337.657,261.213 338.5,263C 337.551,263.617 336.718,263.451 336,262.5C 335.808,264.577 335.308,266.577 334.5,268.5C 330.536,270.149 326.869,272.316 323.5,275C 317.412,276.45 312.412,274.783 308.5,270C 304.118,269.997 302.451,267.831 303.5,263.5C 305.5,263.833 307.5,264.167 309.5,264.5 Z"/></g>
<g><path style="opacity:1" fill="#fce9bd" d="M 223.5,255.5 C 223.34,257.199 223.506,258.866 224,260.5C 225.11,258.963 226.61,258.297 228.5,258.5C 228.5,257.5 228.5,256.5 228.5,255.5C 229.5,255.5 230.5,255.5 231.5,255.5C 230.83,259.861 228.497,263.195 224.5,265.5C 223.534,267.396 223.201,269.396 223.5,271.5C 222.5,271.5 221.5,271.5 220.5,271.5C 219.379,273.741 218.213,276.075 217,278.5C 215.989,279.337 214.822,279.67 213.5,279.5C 213.5,276.833 213.5,274.167 213.5,271.5C 214.931,270.22 215.598,268.553 215.5,266.5C 219.013,264.152 221.013,260.818 221.5,256.5C 221.957,255.702 222.624,255.369 223.5,255.5 Z"/></g>
<g><path style="opacity:1" fill="#f3a453" d="M 588.5,370.5 C 587.708,374.835 586.374,379.002 584.5,383C 586.473,383.495 588.473,383.662 590.5,383.5C 587.615,391.854 584.949,400.354 582.5,409C 584.201,410.86 585.201,413.027 585.5,415.5C 585.5,420.833 585.5,426.167 585.5,431.5C 586.5,431.5 587.5,431.5 588.5,431.5C 588.5,432.5 588.5,433.5 588.5,434.5C 586.303,437.563 585.97,440.896 587.5,444.5C 585.856,444.286 584.356,444.62 583,445.5C 582.405,441.918 581.071,441.584 579,444.5C 578.517,445.448 578.351,446.448 578.5,447.5C 577.5,447.5 576.5,447.5 575.5,447.5C 582.604,438 585.104,427.333 583,415.5C 580.89,411.578 579.057,407.578 577.5,403.5C 578.966,400.486 580.299,397.32 581.5,394C 577.609,395.259 573.609,396.592 569.5,398C 567.866,398.494 566.199,398.66 564.5,398.5C 560.731,398.756 557.064,398.423 553.5,397.5C 548.318,396.572 543.651,394.572 539.5,391.5C 538.833,391.5 538.5,391.167 538.5,390.5C 541.748,390.336 544.748,389.336 547.5,387.5C 546.252,385.31 544.586,384.977 542.5,386.5C 541.328,386.081 540.328,385.415 539.5,384.5C 541.005,383.158 541.672,381.492 541.5,379.5C 544.761,383.244 548.761,386.077 553.5,388C 569.933,391.584 581.6,385.75 588.5,370.5 Z"/></g>
<g><path style="opacity:1" fill="#fdedcd" d="M 634.5,371.5 C 634.833,371.5 635.167,371.5 635.5,371.5C 635.992,375.457 635.325,379.123 633.5,382.5C 634.1,392.567 631.766,401.901 626.5,410.5C 628.236,404.953 629.569,399.286 630.5,393.5C 631.222,393.082 631.722,392.416 632,391.5C 632.499,387.848 632.665,384.182 632.5,380.5C 633.634,377.63 634.3,374.63 634.5,371.5 Z"/></g>
<g><path style="opacity:1" fill="#daa662" d="M 101.5,390.5 C 107.137,394.769 110.471,400.436 111.5,407.5C 112.275,412.797 112.608,418.13 112.5,423.5C 109.471,438.855 100.138,445.688 84.5,444C 77.0765,441.407 71.7431,436.574 68.5,429.5C 69.1174,429.611 69.6174,429.944 70,430.5C 70.3333,429.167 70.6667,427.833 71,426.5C 71.4643,427.094 71.631,427.761 71.5,428.5C 76.1495,439.492 84.1495,443.492 95.5,440.5C 106.034,436.122 111.034,428.122 110.5,416.5C 110.914,412.021 109.914,408.021 107.5,404.5C 106.692,401.55 105.358,398.883 103.5,396.5C 101.66,392.187 98.9934,391.187 95.5,393.5C 95.5,392.5 95.5,391.5 95.5,390.5C 97.5,390.5 99.5,390.5 101.5,390.5 Z"/></g>
<g><path style="opacity:1" fill="#f0a859" d="M 10.5,358.5 C 13.3201,382.444 18.6534,405.777 26.5,428.5C 27.5676,429.434 28.901,429.768 30.5,429.5C 35.0675,431.285 40.0675,432.118 45.5,432C 40.7982,432.172 36.1315,432.672 31.5,433.5C 36.7921,434.495 42.1254,434.828 47.5,434.5C 42.1667,435.167 36.8333,435.833 31.5,436.5C 31.5,437.167 31.5,437.833 31.5,438.5C 29.8372,436.562 29.1706,434.228 29.5,431.5C 27.5,431.5 25.5,431.5 23.5,431.5C 23.665,428.15 23.4983,424.817 23,421.5C 21.7844,419.038 21.1177,416.371 21,413.5C 20.6667,413.167 20.3333,412.833 20,412.5C 19.5172,413.448 19.3505,414.448 19.5,415.5C 18.5,415.5 17.5,415.5 16.5,415.5C 19.5676,409.065 18.7343,403.065 14,397.5C 13.964,403.487 14.1307,409.487 14.5,415.5C 11.6184,407.716 9.28508,399.716 7.5,391.5C 7.4249,388.794 7.09157,386.127 6.5,383.5C 7.94203,387.153 9.77536,390.82 12,394.5C 12.3333,394.833 12.6667,395.167 13,395.5C 13.5,394.5 14,393.5 14.5,392.5C 7.9142,381.585 6.58087,370.252 10.5,358.5 Z"/></g>
<g><path style="opacity:1" fill="#eaa269" d="M 488.5,389.5 C 486.818,396.529 483.818,402.862 479.5,408.5C 481.758,401.764 484.758,395.431 488.5,389.5 Z"/></g>
<g><path style="opacity:1" fill="#eac690" d="M 623.5,391.5 C 623.435,394.428 622.768,397.095 621.5,399.5C 621.294,396.505 621.96,393.838 623.5,391.5 Z"/></g>
<g><path style="opacity:1" fill="#f9f7ee" d="M 10.5,358.5 C 17.4297,359.982 24.4297,360.982 31.5,361.5C 33.186,374.932 35.8527,388.265 39.5,401.5C 39.5,402.5 39.5,403.5 39.5,404.5C 42.1667,404.5 44.8333,404.5 47.5,404.5C 46.2619,397.204 44.2619,390.204 41.5,383.5C 41.0767,379.304 40.41,375.137 39.5,371C 39.8333,369.833 40.1667,368.667 40.5,367.5C 41.9703,370.707 43.1369,374.041 44,377.5C 47.8429,382.187 50.3429,387.52 51.5,393.5C 51.9439,398.941 52.9439,404.275 54.5,409.5C 48.6063,411.066 42.6063,411.733 36.5,411.5C 36.6054,407.452 36.2721,403.452 35.5,399.5C 34.5,399.5 33.5,399.5 32.5,399.5C 32.1667,399.5 31.8333,399.5 31.5,399.5C 29.9009,389.601 27.9009,379.768 25.5,370C 24.0558,367.966 22.0558,367.132 19.5,367.5C 21.5798,385.332 25.5798,402.666 31.5,419.5C 31.5,419.833 31.5,420.167 31.5,420.5C 37.31,421.49 43.31,421.823 49.5,421.5C 49.8957,424.044 49.229,426.211 47.5,428C 40.5079,428.5 33.5079,428.666 26.5,428.5C 18.6534,405.777 13.3201,382.444 10.5,358.5 Z"/></g>
<g><path style="opacity:1" fill="#eeb671" d="M 41.5,383.5 C 44.2619,390.204 46.2619,397.204 47.5,404.5C 44.8333,404.5 42.1667,404.5 39.5,404.5C 39.5,403.5 39.5,402.5 39.5,401.5C 40.7791,402.968 42.4458,403.635 44.5,403.5C 43.9361,396.753 42.9361,390.086 41.5,383.5 Z"/></g>
<g><path style="opacity:1" fill="#f3a652" d="M 159.5,372.5 C 163.634,373.485 167.968,373.818 172.5,373.5C 172.031,370.607 173.031,368.607 175.5,367.5C 180.123,380.414 186.123,392.747 193.5,404.5C 194.15,406.435 194.483,408.435 194.5,410.5C 192.821,410.285 191.821,410.952 191.5,412.5C 188.54,414.396 185.207,415.396 181.5,415.5C 181.5,414.167 181.5,412.833 181.5,411.5C 183.746,410.79 186.08,410.29 188.5,410C 189.022,409.439 189.355,408.772 189.5,408C 185.566,401.519 181.732,395.019 178,388.5C 176.864,385.904 176.031,383.237 175.5,380.5C 174.972,379.279 174.305,378.113 173.5,377C 168.177,376.501 162.844,376.334 157.5,376.5C 152.969,366.921 150.302,356.921 149.5,346.5C 150.822,346.33 151.989,346.663 153,347.5C 154.478,356.071 156.644,364.404 159.5,372.5 Z"/></g>
<g><path style="opacity:1" fill="#eea454" d="M 528.5,348.5 C 529.693,348.97 530.36,349.97 530.5,351.5C 530.268,353.798 529.601,355.965 528.5,358C 531.249,361.66 531.916,365.66 530.5,370C 532.124,373.037 533.457,376.204 534.5,379.5C 535.325,380.386 536.325,380.719 537.5,380.5C 537.64,382.124 536.973,383.29 535.5,384C 537.919,385.509 538.919,387.675 538.5,390.5C 538.167,390.5 537.833,390.5 537.5,390.5C 537.737,389.209 537.404,388.209 536.5,387.5C 532.205,380.791 529.372,373.458 528,365.5C 525.629,368.206 522.963,370.539 520,372.5C 521.408,377.023 522.575,381.689 523.5,386.5C 523.312,390.252 522.645,393.919 521.5,397.5C 517.418,403.994 513.585,410.661 510,417.5C 509.441,421.186 508.774,424.853 508,428.5C 506.188,430.3 504.355,431.967 502.5,433.5C 497.091,437.971 493.425,443.637 491.5,450.5C 490.31,452.869 488.643,454.869 486.5,456.5C 484.861,456.926 483.528,456.926 482.5,456.5C 483.737,453.755 485.57,451.422 488,449.5C 489.827,445.533 491.327,441.533 492.5,437.5C 495.295,432.929 498.795,428.929 503,425.5C 504.301,415.603 508.301,406.936 515,399.5C 516.136,396.904 516.969,394.237 517.5,391.5C 518.158,390.207 518.492,388.707 518.5,387C 518.592,384.179 517.926,381.679 516.5,379.5C 514.5,375.5 511.5,372.5 507.5,370.5C 520.577,369.088 527.577,361.754 528.5,348.5 Z"/></g>
<g><path style="opacity:1" fill="#410809" d="M 103.5,396.5 C 101.281,398.606 98.6145,399.606 95.5,399.5C 95.5,400.5 95.5,401.5 95.5,402.5C 92.0449,400.838 88.7116,399.171 85.5,397.5C 88.8333,396.167 92.1667,394.833 95.5,393.5C 98.9934,391.187 101.66,392.187 103.5,396.5 Z"/></g>
<g><path style="opacity:1" fill="#2f0608" d="M 72.5,398.5 C 70.7078,399.309 68.7078,399.809 66.5,400C 64.9354,401.412 63.2687,402.579 61.5,403.5C 60.5058,400.876 59.5058,398.21 58.5,395.5C 58.56,394.957 58.8933,394.624 59.5,394.5C 63.5997,396.645 67.933,397.978 72.5,398.5 Z"/></g>
<g><path style="opacity:1" fill="#f3a44f" d="M 423.5,168.5 C 427.801,170.816 431.801,173.483 435.5,176.5C 438.473,178.806 441.14,181.473 443.5,184.5C 444.389,186.736 445.722,188.736 447.5,190.5C 445.076,192.714 445.743,193.714 449.5,193.5C 449.281,194.675 449.614,195.675 450.5,196.5C 451.451,195.674 452.451,195.508 453.5,196C 455.397,198.734 457.73,200.9 460.5,202.5C 467.993,210.664 474.326,219.664 479.5,229.5C 479.898,233.729 481.065,237.729 483,241.5C 483.816,242.823 484.983,243.489 486.5,243.5C 491.131,252.718 494.798,262.384 497.5,272.5C 505.432,304.194 505.432,335.861 497.5,367.5C 494.891,374.994 491.891,382.328 488.5,389.5C 484.758,395.431 481.758,401.764 479.5,408.5C 475.639,417.578 470.305,425.578 463.5,432.5C 462.275,431.848 461.608,430.681 461.5,429C 461.482,426.558 462.149,424.392 463.5,422.5C 466.968,415.503 471.135,408.836 476,402.5C 477.759,398.991 478.926,395.325 479.5,391.5C 483.994,390.841 485.661,388.175 484.5,383.5C 488.752,371.826 491.752,359.826 493.5,347.5C 489.64,346.319 485.973,344.652 482.5,342.5C 481.791,341.596 480.791,341.263 479.5,341.5C 479.5,340.5 479.5,339.5 479.5,338.5C 480.391,337.89 481.391,337.557 482.5,337.5C 486.039,341.088 490.205,342.421 495,341.5C 495.5,333.173 495.666,324.84 495.5,316.5C 495.5,315.5 495.5,314.5 495.5,313.5C 495.5,309.5 495.5,305.5 495.5,301.5C 490.211,300.512 484.878,299.845 479.5,299.5C 478.517,289.959 476.517,280.625 473.5,271.5C 474.978,271.238 476.311,271.571 477.5,272.5C 479.13,275.276 479.797,278.276 479.5,281.5C 480.057,286.052 481.057,290.385 482.5,294.5C 486.474,296.575 490.808,297.575 495.5,297.5C 493.98,283.906 490.314,270.906 484.5,258.5C 479.089,257.903 473.755,257.069 468.5,256C 464.299,248.625 460.299,241.125 456.5,233.5C 458.006,232.253 459.506,232.253 461,233.5C 464.678,239.523 467.845,245.857 470.5,252.5C 474.445,253.491 478.445,253.824 482.5,253.5C 479.407,242.562 474.407,232.562 467.5,223.5C 467.56,218.795 465.226,216.295 460.5,216C 461.5,215.167 462.5,214.333 463.5,213.5C 461.022,212.278 460.022,210.278 460.5,207.5C 459.5,207.5 458.5,207.5 457.5,207.5C 449.244,199.416 440.744,191.416 432,183.5C 430.644,184.38 429.144,184.714 427.5,184.5C 426.761,184.631 426.094,184.464 425.5,184C 426.916,181.735 428.916,180.569 431.5,180.5C 431.5,179.5 431.5,178.5 431.5,177.5C 428.336,177.442 425.336,176.776 422.5,175.5C 416.916,172.441 411.582,169.108 406.5,165.5C 407.399,164.528 408.566,163.862 410,163.5C 414.159,165.834 418.659,167.5 423.5,168.5 Z"/></g>
<g><path style="opacity:1" fill="#ecc085" d="M 479.5,281.5 C 481.626,285.445 482.626,289.778 482.5,294.5C 481.057,290.385 480.057,286.052 479.5,281.5 Z"/></g>
<g><path style="opacity:1" fill="#eeb679" d="M 487.5,281.5 C 489.175,284.507 489.841,287.84 489.5,291.5C 487.901,291.768 486.568,291.434 485.5,290.5C 486.5,290.5 487.5,290.5 488.5,290.5C 488.296,287.482 487.963,284.482 487.5,281.5 Z"/></g>
<g><path style="opacity:1" fill="#720000" d="M 410.5,255.5 C 408.383,266.684 405.55,277.684 402,288.5C 400.738,290.303 399.071,291.636 397,292.5C 396.139,295.368 394.472,297.702 392,299.5C 391.51,300.793 391.343,302.127 391.5,303.5C 382.995,310.478 373.995,316.978 364.5,323C 362.5,325 360.5,327 358.5,329C 350.571,332.438 342.404,333.938 334,333.5C 331.313,335.233 328.48,336.733 325.5,338C 316.561,338.963 307.894,340.963 299.5,344C 295.15,346.378 290.484,348.878 285.5,351.5C 284.5,351.5 283.5,351.5 282.5,351.5C 280.824,357.673 277.491,362.84 272.5,367C 273.448,367.483 274.448,367.649 275.5,367.5C 275.702,369.989 275.202,372.323 274,374.5C 273.333,373.833 272.667,373.167 272,372.5C 270.815,374.377 269.815,376.377 269,378.5C 265.62,394.002 271.786,400.002 287.5,396.5C 287.5,397.5 287.5,398.5 287.5,399.5C 282.167,399.5 276.833,399.5 271.5,399.5C 271.5,401.5 271.5,403.5 271.5,405.5C 273.854,405.838 276.187,406.338 278.5,407C 280.135,410.89 281.968,414.724 284,418.5C 285.011,419.337 286.178,419.67 287.5,419.5C 287.336,416.813 287.503,414.146 288,411.5C 289.984,414.994 292.817,415.994 296.5,414.5C 294.143,413.597 292.643,411.93 292,409.5C 290.571,406.05 290.405,402.717 291.5,399.5C 291.134,405.771 293.634,410.438 299,413.5C 299.251,415.433 299.751,417.266 300.5,419C 313.205,427.658 325.871,427.658 338.5,419C 339.249,417.266 339.749,415.433 340,413.5C 344.981,410.687 346.814,406.354 345.5,400.5C 345.233,396.262 344.566,392.095 343.5,388C 345.057,384.917 344.39,383.417 341.5,383.5C 341.579,382.07 341.246,380.736 340.5,379.5C 338.446,377.541 336.113,376.041 333.5,375C 334.756,374.583 335.423,373.75 335.5,372.5C 342.078,373.078 345.745,376.744 346.5,383.5C 348.288,383.215 349.955,383.548 351.5,384.5C 349.82,385.769 348.653,387.436 348,389.5C 348.106,395.863 347.939,402.197 347.5,408.5C 346.944,411.392 345.277,413.392 342.5,414.5C 343.325,415.386 344.325,415.719 345.5,415.5C 345.833,422.5 342.5,425.833 335.5,425.5C 335.5,426.833 335.5,428.167 335.5,429.5C 332.729,429.421 330.063,429.921 327.5,431C 330.557,431.256 333.557,431.756 336.5,432.5C 341.435,431.552 346.435,431.219 351.5,431.5C 351.5,429.167 351.5,426.833 351.5,424.5C 356.859,424.33 362.192,423.83 367.5,423C 372.26,422.122 376.26,419.955 379.5,416.5C 383.167,415.833 386.833,415.167 390.5,414.5C 392.167,410.833 394.833,408.167 398.5,406.5C 399.004,403.701 400.004,401.201 401.5,399C 401.167,398.667 400.833,398.333 400.5,398C 401.5,397.667 402.5,397.333 403.5,397C 403.167,396.667 402.833,396.333 402.5,396C 404.046,394.56 404.879,392.727 405,390.5C 408.112,388.345 411.612,387.345 415.5,387.5C 415.34,385.801 415.506,384.134 416,382.5C 418.74,378.223 420.573,373.556 421.5,368.5C 420.5,367.833 419.5,367.167 418.5,366.5C 419.423,364.076 420.923,362.076 423,360.5C 423.333,360.833 423.667,361.167 424,361.5C 425.487,360.747 425.654,359.914 424.5,359C 427.041,357.152 428.041,354.652 427.5,351.5C 428.833,351.5 430.167,351.5 431.5,351.5C 431.5,356.833 431.5,362.167 431.5,367.5C 430.167,367.5 428.833,367.5 427.5,367.5C 425.24,372.538 423.907,377.872 423.5,383.5C 422.325,383.281 421.325,383.614 420.5,384.5C 418.397,387.414 416.563,390.414 415,393.5C 406.113,402.387 397.279,411.221 388.5,420C 381.95,423.794 374.95,426.294 367.5,427.5C 367.5,428.833 367.5,430.167 367.5,431.5C 365.473,431.338 363.473,431.505 361.5,432C 358.508,434.11 355.175,435.443 351.5,436C 340.272,438.298 328.939,438.965 317.5,438C 308.988,435.75 300.655,433.417 292.5,431C 285.04,425.707 278.373,419.541 272.5,412.5C 270.331,408.163 268.165,403.829 266,399.5C 265.599,394.989 265.099,390.489 264.5,386C 265.269,379.78 266.269,373.614 267.5,367.5C 268.833,367.5 270.167,367.5 271.5,367.5C 272.106,363.349 274.273,360.015 278,357.5C 278.44,352.933 280.273,349.1 283.5,346C 290.036,342.232 296.702,338.732 303.5,335.5C 308.875,335.828 314.208,335.495 319.5,334.5C 323.591,332.763 327.758,331.096 332,329.5C 344.667,327.451 356.167,322.784 366.5,315.5C 367.429,314.311 367.762,312.978 367.5,311.5C 371.814,310.668 375.147,308.335 377.5,304.5C 379.396,303.534 381.396,303.201 383.5,303.5C 387.454,297.348 391.288,291.014 395,284.5C 396.356,283.62 397.856,283.286 399.5,283.5C 399.5,282.5 399.5,281.5 399.5,280.5C 401.074,280.063 402.241,279.063 403,277.5C 405.952,270.23 407.452,262.897 407.5,255.5C 408.5,255.5 409.5,255.5 410.5,255.5 Z"/></g>
<g><path style="opacity:1" fill="#660503" d="M 335.5,372.5 C 335.423,373.75 334.756,374.583 333.5,375C 336.113,376.041 338.446,377.541 340.5,379.5C 341.246,380.736 341.579,382.07 341.5,383.5C 344.39,383.417 345.057,384.917 343.5,388C 344.566,392.095 345.233,396.262 345.5,400.5C 346.814,406.354 344.981,410.687 340,413.5C 339.749,415.433 339.249,417.266 338.5,419C 325.871,427.658 313.205,427.658 300.5,419C 299.751,417.266 299.251,415.433 299,413.5C 293.634,410.438 291.134,405.771 291.5,399.5C 292.35,394.26 293.35,388.927 294.5,383.5C 295.675,383.719 296.675,383.386 297.5,382.5C 298.664,378.505 301.331,376.672 305.5,377C 306.013,375.424 305.346,374.091 303.5,373C 303.645,372.228 303.978,371.561 304.5,371C 311.499,370.733 318.333,369.566 325,367.5C 326.833,367.833 328.667,368.167 330.5,368.5C 329.271,369.281 327.938,369.781 326.5,370C 329.992,369.93 332.992,370.763 335.5,372.5 Z"/></g>
<g><path style="opacity:1" fill="#fabe66" d="M 333.5,382.5 C 335.539,383.911 336.539,385.911 336.5,388.5C 333.677,401.571 325.677,406.571 312.5,403.5C 306.775,400.106 303.441,395.106 302.5,388.5C 302.796,386.597 303.463,384.93 304.5,383.5C 305.942,384.82 306.608,386.486 306.5,388.5C 314.495,388 322.495,387.5 330.5,387C 331.053,385.122 332.053,383.622 333.5,382.5 Z"/></g>
<g><path style="opacity:1" fill="#f3c58d" d="M 333.5,382.5 C 332.053,383.622 331.053,385.122 330.5,387C 322.495,387.5 314.495,388 306.5,388.5C 306.608,386.486 305.942,384.82 304.5,383.5C 310.495,375.914 318.162,373.747 327.5,377C 329.996,378.331 331.996,380.164 333.5,382.5 Z"/></g>
<g><path style="opacity:1" fill="#fef5d2" d="M 319.5,379.5 C 315.786,380.168 312.453,381.835 309.5,384.5C 310.333,384.833 311.167,385.167 312,385.5C 314.427,384.112 317.094,383.445 320,383.5C 329.977,385.7 330.81,384.367 322.5,379.5C 327.813,379.018 330.146,381.351 329.5,386.5C 322.178,385.385 314.845,385.385 307.5,386.5C 307.383,384.516 308.05,382.85 309.5,381.5C 312.66,379.973 315.993,379.307 319.5,379.5 Z"/></g>
<g><path style="opacity:1" fill="#f7fbf7" d="M 322.5,379.5 C 330.81,384.367 329.977,385.7 320,383.5C 317.094,383.445 314.427,384.112 312,385.5C 311.167,385.167 310.333,384.833 309.5,384.5C 312.453,381.835 315.786,380.168 319.5,379.5C 320.5,378.167 321.5,378.167 322.5,379.5 Z"/></g>
<g><path style="opacity:1" fill="#961401" d="M 301.5,351.5 C 299.763,353.55 297.763,355.383 295.5,357C 296.126,357.75 296.626,358.584 297,359.5C 298.897,357.984 301.064,357.317 303.5,357.5C 303.5,356.167 303.5,354.833 303.5,353.5C 311.404,351.673 319.404,351.173 327.5,352C 335.437,355.056 343.104,358.556 350.5,362.5C 351.452,364.045 351.785,365.712 351.5,367.5C 350.038,366.542 348.705,365.376 347.5,364C 343.482,363.081 339.815,361.414 336.5,359C 331.691,358.34 327.024,357.173 322.5,355.5C 316.821,356.251 311.155,357.085 305.5,358C 304.027,358.71 303.36,359.876 303.5,361.5C 299.938,361.965 296.605,363.132 293.5,365C 288.657,369.834 285.49,375.667 284,382.5C 282.437,377.282 282.104,371.949 283,366.5C 287.238,359.276 293.404,354.276 301.5,351.5 Z"/></g>
<g><path style="opacity:1" fill="#320c09" d="M 577.5,403.5 C 573.299,401.25 568.966,399.583 564.5,398.5C 566.199,398.66 567.866,398.494 569.5,398C 573.609,396.592 577.609,395.259 581.5,394C 580.299,397.32 578.966,400.486 577.5,403.5 Z"/></g>
<g><path style="opacity:1" fill="#fefefe" d="M 639.5,351.5 C 639.5,447.5 639.5,543.5 639.5,639.5C 541.5,639.5 443.5,639.5 345.5,639.5C 348.833,638.833 352.167,638.167 355.5,637.5C 362.078,636.417 368.744,635.75 375.5,635.5C 388.616,635.015 401.116,632.348 413,627.5C 416.297,628.798 419.464,628.465 422.5,626.5C 423.429,625.311 423.762,623.978 423.5,622.5C 426.049,622.613 428.382,621.946 430.5,620.5C 433.103,621.562 435.77,621.728 438.5,621C 441.634,618.437 444.634,615.937 447.5,613.5C 452.871,614.148 456.871,612.148 459.5,607.5C 466.489,604.007 473.156,600.007 479.5,595.5C 480.552,595.649 481.552,595.483 482.5,595C 487.674,591.969 492.674,588.802 497.5,585.5C 501.9,585.297 505.567,583.463 508.5,580C 509.448,579.517 510.448,579.351 511.5,579.5C 511.5,578.5 511.5,577.5 511.5,576.5C 511.5,576.167 511.5,575.833 511.5,575.5C 511.833,575.5 512.167,575.5 512.5,575.5C 513.873,575.657 515.207,575.49 516.5,575C 518.483,573.111 520.816,571.778 523.5,571C 524.581,566.922 527.248,564.589 531.5,564C 535.34,556.821 541.006,551.821 548.5,549C 551.25,541.433 556.25,535.767 563.5,532C 564.723,529.948 565.723,527.781 566.5,525.5C 571.493,522.468 574.493,518.134 575.5,512.5C 575.5,512.167 575.5,511.833 575.5,511.5C 581.407,507.724 585.407,502.391 587.5,495.5C 594.29,492.432 597.624,487.099 597.5,479.5C 598.833,479.5 600.167,479.5 601.5,479.5C 601.007,477.194 600.674,474.861 600.5,472.5C 601.873,472.657 603.207,472.49 604.5,472C 603.62,470.644 603.286,469.144 603.5,467.5C 605.124,467.36 606.29,468.027 607,469.5C 606.761,466.751 606.928,464.085 607.5,461.5C 607.5,460.5 607.5,459.5 607.5,458.5C 610.883,455.711 612.55,452.045 612.5,447.5C 612.833,447.5 613.167,447.5 613.5,447.5C 617.173,442.137 619.84,436.137 621.5,429.5C 622.192,430.025 622.692,430.692 623,431.5C 623.333,428.167 623.667,424.833 624,421.5C 625.5,420.667 626.667,419.5 627.5,418C 626.565,415.619 626.232,413.119 626.5,410.5C 631.766,401.901 634.1,392.567 633.5,382.5C 635.325,379.123 635.992,375.457 635.5,371.5C 635.232,369.901 635.566,368.568 636.5,367.5C 637.762,362.209 638.762,356.875 639.5,351.5 Z"/></g>
<g><path style="opacity:1" fill="#c66c2f" d="M 383.5,279.5 C 383.649,280.552 383.483,281.552 383,282.5C 377.328,292.75 369.495,300.917 359.5,307C 341.624,314.923 322.957,319.756 303.5,321.5C 300.813,321.336 298.146,321.503 295.5,322C 293.333,323.167 291.167,324.333 289,325.5C 288,324.833 287,324.167 286,323.5C 282.771,327.251 278.604,329.084 273.5,329C 273.018,330.008 272.852,331.175 273,332.5C 271.951,331.483 270.784,331.316 269.5,332C 266.953,333.316 266.287,335.149 267.5,337.5C 262.448,340.957 259.448,345.624 258.5,351.5C 257.5,351.5 256.5,351.5 255.5,351.5C 255.657,352.873 255.49,354.207 255,355.5C 252.82,357.863 251.153,360.53 250,363.5C 247.088,372.578 245.921,381.912 246.5,391.5C 245.555,402.617 247.222,413.284 251.5,423.5C 252.852,424.524 254.185,425.524 255.5,426.5C 261.47,438.136 270.136,447.136 281.5,453.5C 283.941,454.709 285.941,456.376 287.5,458.5C 284.747,459.659 282.081,459.159 279.5,457C 276.854,456.503 274.187,456.336 271.5,456.5C 258.845,452.339 247.178,446.339 236.5,438.5C 232.477,434.547 229.144,430.214 226.5,425.5C 229.833,425.5 231.5,427.167 231.5,430.5C 234.167,430.833 236.833,431.167 239.5,431.5C 236.158,409.992 236.991,388.658 242,367.5C 244.084,362.458 246.251,357.458 248.5,352.5C 248.167,351.833 247.833,351.167 247.5,350.5C 249.604,347.387 252.271,345.054 255.5,343.5C 256.091,340.386 257.758,337.886 260.5,336C 262.75,335.389 264.417,334.056 265.5,332C 267.436,331.187 269.436,330.687 271.5,330.5C 271.5,328.5 271.5,326.5 271.5,324.5C 272.15,324.804 272.817,325.137 273.5,325.5C 277.939,323.687 282.605,322.521 287.5,322C 296.877,316.542 306.877,312.875 317.5,311C 319.107,309.951 319.773,308.451 319.5,306.5C 329.07,306.473 338.403,305.307 347.5,303C 355.518,298.603 362.851,293.436 369.5,287.5C 370.097,287.735 370.43,288.235 370.5,289C 367.96,290.813 366.96,293.313 367.5,296.5C 368.5,296.5 369.5,296.5 370.5,296.5C 370.195,292.799 371.862,290.466 375.5,289.5C 376.314,284.47 378.981,281.137 383.5,279.5 Z"/></g>
<g><path style="opacity:1" fill="#2e0407" d="M 103.5,396.5 C 105.358,398.883 106.692,401.55 107.5,404.5C 106.542,405.962 105.376,407.295 104,408.5C 101.408,406.69 98.5744,405.356 95.5,404.5C 95.5,403.833 95.5,403.167 95.5,402.5C 95.5,401.5 95.5,400.5 95.5,399.5C 98.6145,399.606 101.281,398.606 103.5,396.5 Z"/></g>
<g><path style="opacity:1" fill="#590102" d="M 303.5,402.5 C 303.02,407.017 305.02,409.35 309.5,409.5C 309.5,410.5 309.5,411.5 309.5,412.5C 307.533,412.739 305.699,412.406 304,411.5C 303.51,412.793 303.343,414.127 303.5,415.5C 306.572,415.183 309.572,415.516 312.5,416.5C 316.814,421.516 321.147,421.516 325.5,416.5C 327.396,415.534 329.396,415.201 331.5,415.5C 331.703,417.39 331.037,418.89 329.5,420C 323.811,422.923 317.811,423.923 311.5,423C 309.545,422.047 307.878,420.713 306.5,419C 304.975,417.991 303.308,417.491 301.5,417.5C 301.154,413.641 299.32,410.641 296,408.5C 295.682,404.805 295.182,401.138 294.5,397.5C 295.173,395.177 296.339,393.844 298,393.5C 298.794,396.471 299.461,399.471 300,402.5C 300.986,403.171 302.153,403.171 303.5,402.5 Z"/></g>
<g><path style="opacity:1" fill="#f1a658" d="M 143.5,369.5 C 144.885,370.574 146.051,371.907 147,373.5C 146.914,377.047 148.08,380.047 150.5,382.5C 148.916,387.086 150.249,388.753 154.5,387.5C 154.64,385.876 153.973,384.71 152.5,384C 153.381,383.292 154.047,382.458 154.5,381.5C 155.5,381.5 156.5,381.5 157.5,381.5C 158.167,381.5 158.833,381.5 159.5,381.5C 164.041,380.769 168.041,381.769 171.5,384.5C 175.437,391.374 179.103,398.374 182.5,405.5C 181.167,406.833 179.833,406.833 178.5,405.5C 174.925,399.312 171.591,392.978 168.5,386.5C 164.555,385.509 160.555,385.176 156.5,385.5C 156.5,387.167 156.5,388.833 156.5,390.5C 155.265,390.279 154.265,389.612 153.5,388.5C 153.167,389.333 152.833,390.167 152.5,391C 154.396,394.634 155.896,398.467 157,402.5C 157.414,402.957 157.914,403.291 158.5,403.5C 159.477,401.589 160.143,399.589 160.5,397.5C 162.977,401.101 165.477,404.767 168,408.5C 169.118,410.765 169.951,413.099 170.5,415.5C 169.685,414.571 168.852,413.571 168,412.5C 166.627,414.695 166.294,417.029 167,419.5C 169.839,422.409 172.506,425.409 175,428.5C 175.483,429.448 175.649,430.448 175.5,431.5C 173.983,431.489 172.816,430.823 172,429.5C 158.489,411.476 148.989,391.476 143.5,369.5 Z"/></g>
<g><path style="opacity:1" fill="#f6a640" d="M 156.5,390.5 C 157.458,390.953 158.292,391.619 159,392.5C 159.198,394.382 159.698,396.048 160.5,397.5C 160.143,399.589 159.477,401.589 158.5,403.5C 157.914,403.291 157.414,402.957 157,402.5C 155.896,398.467 154.396,394.634 152.5,391C 152.833,390.167 153.167,389.333 153.5,388.5C 154.265,389.612 155.265,390.279 156.5,390.5 Z"/></g>
<g><path style="opacity:1" fill="#d47b37" d="M 271.5,324.5 C 271.5,326.5 271.5,328.5 271.5,330.5C 269.436,330.687 267.436,331.187 265.5,332C 264.417,334.056 262.75,335.389 260.5,336C 257.758,337.886 256.091,340.386 255.5,343.5C 252.271,345.054 249.604,347.387 247.5,350.5C 247.833,351.167 248.167,351.833 248.5,352.5C 246.251,357.458 244.084,362.458 242,367.5C 236.991,388.658 236.158,409.992 239.5,431.5C 236.833,431.167 234.167,430.833 231.5,430.5C 231.5,427.167 229.833,425.5 226.5,425.5C 224.801,425.66 223.134,425.494 221.5,425C 219.937,423.053 217.937,421.886 215.5,421.5C 215.5,421.167 215.5,420.833 215.5,420.5C 214.159,416.453 212.825,412.453 211.5,408.5C 207.842,409.128 205.342,407.794 204,404.5C 203.184,403.177 202.017,402.511 200.5,402.5C 199.599,401.71 198.932,400.71 198.5,399.5C 198.054,395.362 196.554,391.695 194,388.5C 193.506,386.866 193.34,385.199 193.5,383.5C 192.5,383.5 191.5,383.5 190.5,383.5C 190.802,380.941 190.468,378.607 189.5,376.5C 189.5,373.5 189.5,370.5 189.5,367.5C 190.167,367.5 190.833,367.5 191.5,367.5C 192.167,367.5 192.833,367.5 193.5,367.5C 194.938,376.228 197.772,384.561 202,392.5C 203.705,393.763 205.372,394.097 207,393.5C 207.269,396.643 206.936,399.643 206,402.5C 207.333,403.167 208.667,403.833 210,404.5C 213.729,411.235 219.229,415.735 226.5,418C 227.191,419.067 227.691,420.234 228,421.5C 231.373,423.258 234.207,425.591 236.5,428.5C 236.833,427.167 237.167,425.833 237.5,424.5C 235.809,414.924 234.476,405.258 233.5,395.5C 234.617,386.132 235.95,376.799 237.5,367.5C 239.436,359.038 243.102,351.371 248.5,344.5C 252.313,343.027 254.647,340.36 255.5,336.5C 256.552,336.649 257.552,336.483 258.5,336C 262.054,331.279 266.387,327.446 271.5,324.5 Z"/></g>
<g><path style="opacity:1" fill="#dd833c" d="M 302.5,388.5 C 303.441,395.106 306.775,400.106 312.5,403.5C 325.677,406.571 333.677,401.571 336.5,388.5C 338.039,405.127 330.372,412.627 313.5,411C 309.362,409.022 306.029,406.189 303.5,402.5C 302.397,399.449 301.731,396.282 301.5,393C 301.508,391.293 301.842,389.793 302.5,388.5 Z"/></g>
<g><path style="opacity:1" fill="#3d1112" d="M 440.5,399.5 C 430.857,414.809 418.524,427.476 403.5,437.5C 402.34,435.797 403.007,435.131 405.5,435.5C 405.351,434.448 405.517,433.448 406,432.5C 406.333,432.833 406.667,433.167 407,433.5C 407.455,430.184 409.288,428.018 412.5,427C 412.167,426.667 411.833,426.333 411.5,426C 412.563,424.812 413.897,424.312 415.5,424.5C 415.135,421.254 416.135,418.588 418.5,416.5C 421.862,416.15 424.695,414.816 427,412.5C 428.666,413.34 428.833,412.84 427.5,411C 428.448,410.517 429.448,410.351 430.5,410.5C 430.5,409.5 430.5,408.5 430.5,407.5C 431.5,407.5 432.5,407.5 433.5,407.5C 433.608,405.217 434.441,403.217 436,401.5C 436.333,401.833 436.667,402.167 437,402.5C 437.759,400.937 438.926,399.937 440.5,399.5 Z"/></g>
<g><path style="opacity:1" fill="#fdf2dc" d="M 4.5,378.5 C 5.04395,382.935 6.04395,387.268 7.5,391.5C 9.28508,399.716 11.6184,407.716 14.5,415.5C 15.531,417.961 16.1977,420.627 16.5,423.5C 14.9069,422.652 13.7403,421.319 13,419.5C 9.67423,409.856 7.00756,399.856 5,389.5C 4.50137,385.848 4.3347,382.182 4.5,378.5 Z"/></g>
<g><path style="opacity:1" fill="#bc6d3a" d="M 200.5,402.5 C 202.017,402.511 203.184,403.177 204,404.5C 205.342,407.794 207.842,409.128 211.5,408.5C 212.825,412.453 214.159,416.453 215.5,420.5C 209.806,415.134 204.806,409.134 200.5,402.5 Z"/></g>
<g><path style="opacity:1" fill="#fef6d7" d="M 445.5,402.5 C 445.167,403.833 444.833,405.167 444.5,406.5C 441.833,409.5 439.167,412.5 436.5,415.5C 436.343,414.127 436.51,412.793 437,411.5C 439.403,409.695 441.07,407.362 442,404.5C 442.816,403.177 443.983,402.511 445.5,402.5 Z"/></g>
<g><path style="opacity:1" fill="#f6a54f" d="M 31.5,399.5 C 32.2666,404.397 33.2666,409.231 34.5,414C 40.9404,414.148 47.2737,414.982 53.5,416.5C 51.9412,418.131 49.9412,418.964 47.5,419C 42.1771,419.499 36.8437,419.666 31.5,419.5C 25.5798,402.666 21.5798,385.332 19.5,367.5C 22.0558,367.132 24.0558,367.966 25.5,370C 27.9009,379.768 29.9009,389.601 31.5,399.5 Z"/></g>
<g><path style="opacity:1" fill="#f8a546" d="M 169.5,397.5 C 173.013,401.866 176.013,406.532 178.5,411.5C 178.912,413.973 177.912,415.306 175.5,415.5C 175.649,414.448 175.483,413.448 175,412.5C 171.645,408.443 168.812,404.11 166.5,399.5C 166.402,396.752 167.402,396.086 169.5,397.5 Z"/></g>
<g><path style="opacity:1" fill="#e9aa66" d="M 193.5,404.5 C 195.547,406.55 197.214,408.883 198.5,411.5C 197.5,411.5 196.5,411.5 195.5,411.5C 195.5,412.833 195.5,414.167 195.5,415.5C 194.764,413.771 193.43,412.771 191.5,412.5C 191.821,410.952 192.821,410.285 194.5,410.5C 194.483,408.435 194.15,406.435 193.5,404.5 Z"/></g>
<g><path style="opacity:1" fill="#eba967" d="M 444.5,406.5 C 444.5,407.833 444.5,409.167 444.5,410.5C 445.5,410.5 446.5,410.5 447.5,410.5C 446.396,412.389 445.063,414.055 443.5,415.5C 443.092,414.357 442.425,413.357 441.5,412.5C 439.914,414.173 439.247,416.173 439.5,418.5C 435.651,418.019 433.651,419.686 433.5,423.5C 435.216,423.371 436.883,423.038 438.5,422.5C 435.042,425.529 431.709,428.529 428.5,431.5C 428.53,430.503 428.03,429.836 427,429.5C 425.594,430.414 424.094,431.08 422.5,431.5C 427.51,426.488 432.177,421.155 436.5,415.5C 439.167,412.5 441.833,409.5 444.5,406.5 Z"/></g>
<g><path style="opacity:1" fill="#f4a655" d="M 626.5,377.5 C 627.989,379.116 628.989,381.116 629.5,383.5C 630.487,386.768 630.82,390.102 630.5,393.5C 629.569,399.286 628.236,404.953 626.5,410.5C 621.852,422.597 617.519,434.93 613.5,447.5C 613.167,447.5 612.833,447.5 612.5,447.5C 612.167,447.5 611.833,447.5 611.5,447.5C 612.717,442.555 614.383,437.721 616.5,433C 615.419,431.629 614.585,430.129 614,428.5C 612.818,432.05 611.818,435.716 611,439.5C 609.887,440.305 608.721,440.972 607.5,441.5C 612.765,427.706 617.431,413.706 621.5,399.5C 622.768,397.095 623.435,394.428 623.5,391.5C 623.558,386.606 624.558,381.94 626.5,377.5 Z"/></g>
<g><path style="opacity:1" fill="#fef5d8" d="M 51.5,393.5 C 53.0719,396.215 54.0719,399.215 54.5,402.5C 55.7003,405.702 55.7003,408.869 54.5,412C 48.1754,412.5 41.8421,412.666 35.5,412.5C 35.1184,408.022 34.1184,403.689 32.5,399.5C 33.5,399.5 34.5,399.5 35.5,399.5C 36.2721,403.452 36.6054,407.452 36.5,411.5C 42.6063,411.733 48.6063,411.066 54.5,409.5C 52.9439,404.275 51.9439,398.941 51.5,393.5 Z"/></g>
<g><path style="opacity:1" fill="#dfaa6c" d="M 178.5,411.5 C 179.5,411.5 180.5,411.5 181.5,411.5C 181.5,412.833 181.5,414.167 181.5,415.5C 179.347,416.573 177.347,416.573 175.5,415.5C 177.912,415.306 178.912,413.973 178.5,411.5 Z"/></g>
<g><path style="opacity:1" fill="#440304" d="M 497.5,367.5 C 501.338,367.022 504.671,368.022 507.5,370.5C 511.5,372.5 514.5,375.5 516.5,379.5C 517.162,383.466 517.495,387.466 517.5,391.5C 516.969,394.237 516.136,396.904 515,399.5C 508.301,406.936 504.301,415.603 503,425.5C 498.795,428.929 495.295,432.929 492.5,437.5C 490.122,441.247 487.955,445.247 486,449.5C 483.808,451.949 481.641,454.282 479.5,456.5C 472.655,459.987 465.655,460.32 458.5,457.5C 455.165,454.457 452.165,451.79 449.5,449.5C 454.915,444.421 459.582,438.754 463.5,432.5C 470.305,425.578 475.639,417.578 479.5,408.5C 483.818,402.862 486.818,396.529 488.5,389.5C 491.891,382.328 494.891,374.994 497.5,367.5 Z"/></g>
<g><path style="opacity:1" fill="#fa9f3c" d="M 198.5,411.5 C 198.751,413.17 199.418,414.67 200.5,416C 199.756,417.039 198.756,417.539 197.5,417.5C 196.833,416.833 196.167,416.167 195.5,415.5C 195.5,414.167 195.5,412.833 195.5,411.5C 196.5,411.5 197.5,411.5 198.5,411.5 Z"/></g>
<g><path style="opacity:1" fill="#480105" d="M 331.5,415.5 C 329.396,415.201 327.396,415.534 325.5,416.5C 321.147,421.516 316.814,421.516 312.5,416.5C 309.572,415.516 306.572,415.183 303.5,415.5C 303.343,414.127 303.51,412.793 304,411.5C 305.699,412.406 307.533,412.739 309.5,412.5C 312.785,413.402 316.119,414.402 319.5,415.5C 325.09,413.831 330.257,411.498 335,408.5C 335.497,410.81 335.663,413.143 335.5,415.5C 334.167,415.5 332.833,415.5 331.5,415.5 Z"/></g>
<g><path style="opacity:1" fill="#f9f6eb" d="M 607.5,359.5 C 612.788,362.48 618.121,365.48 623.5,368.5C 625.959,370.927 626.959,373.927 626.5,377.5C 624.558,381.94 623.558,386.606 623.5,391.5C 621.96,393.838 621.294,396.505 621.5,399.5C 617.431,413.706 612.765,427.706 607.5,441.5C 602.79,436.787 597.79,432.453 592.5,428.5C 590.689,423.589 591.522,419.255 595,415.5C 596.071,410.792 597.237,406.126 598.5,401.5C 601.652,396.055 602.652,390.221 601.5,384C 599.866,383.506 598.199,383.34 596.5,383.5C 596.007,385.806 595.674,388.139 595.5,390.5C 595.5,390.833 595.5,391.167 595.5,391.5C 593.422,395.509 592.089,399.842 591.5,404.5C 590.653,408.223 589.653,411.889 588.5,415.5C 587.5,415.5 586.5,415.5 585.5,415.5C 585.201,413.027 584.201,410.86 582.5,409C 584.949,400.354 587.615,391.854 590.5,383.5C 591.338,383.158 591.672,382.492 591.5,381.5C 594.45,379.272 596.116,376.272 596.5,372.5C 599.332,374.08 602.332,375.413 605.5,376.5C 606.848,377.601 608.348,378.601 610,379.5C 610.571,384.603 610.071,389.603 608.5,394.5C 607.549,395.919 607.216,397.585 607.5,399.5C 604.654,404.376 602.987,409.709 602.5,415.5C 598.206,419.931 598.539,423.931 603.5,427.5C 606.656,423.048 608.656,418.048 609.5,412.5C 610.117,412.389 610.617,412.056 611,411.5C 611.147,407.912 611.98,404.579 613.5,401.5C 613.5,400.833 613.5,400.167 613.5,399.5C 615.341,392.266 617.341,384.933 619.5,377.5C 617.298,374.297 614.298,372.297 610.5,371.5C 608.113,369.111 605.446,367.111 602.5,365.5C 604.19,363.481 605.856,361.481 607.5,359.5 Z"/></g>
<g><path style="opacity:1" fill="#e8af68" d="M 607.5,399.5 C 605.915,404.678 605.248,410.012 605.5,415.5C 604.5,415.5 603.5,415.5 602.5,415.5C 602.987,409.709 604.654,404.376 607.5,399.5 Z"/></g>
<g><path style="opacity:1" fill="#eab481" d="M 595.5,391.5 C 594.987,395.553 594.154,399.553 593,403.5C 592.617,404.056 592.117,404.389 591.5,404.5C 592.089,399.842 593.422,395.509 595.5,391.5 Z"/></g>
<g><path style="opacity:1" fill="#faa442" d="M 613.5,399.5 C 613.5,400.167 613.5,400.833 613.5,401.5C 612.883,401.611 612.383,401.944 612,402.5C 610.894,395.877 611.728,389.544 614.5,383.5C 614.833,384.5 615.167,385.5 615.5,386.5C 614.088,390.717 613.421,395.05 613.5,399.5 Z"/></g>
<g><path style="opacity:1" fill="#e8a85f" d="M 598.5,401.5 C 598.534,397.396 599.201,393.396 600.5,389.5C 600.167,388.5 599.833,387.5 599.5,386.5C 597.603,387.368 596.27,388.701 595.5,390.5C 595.674,388.139 596.007,385.806 596.5,383.5C 598.199,383.34 599.866,383.506 601.5,384C 602.652,390.221 601.652,396.055 598.5,401.5 Z"/></g>
<g><path style="opacity:1" fill="#fbf0d5" d="M 626.5,410.5 C 626.232,413.119 626.565,415.619 627.5,418C 626.667,419.5 625.5,420.667 624,421.5C 623.667,424.833 623.333,428.167 623,431.5C 622.692,430.692 622.192,430.025 621.5,429.5C 619.84,436.137 617.173,442.137 613.5,447.5C 617.519,434.93 621.852,422.597 626.5,410.5 Z"/></g>
<g><path style="opacity:1" fill="#3a0607" d="M 539.5,391.5 C 543.651,394.572 548.318,396.572 553.5,397.5C 548.61,401.204 543.777,405.204 539,409.5C 538.582,413.178 538.082,416.845 537.5,420.5C 537.52,421.726 537.853,422.726 538.5,423.5C 539.913,426.661 541.58,429.661 543.5,432.5C 543.217,433.289 542.717,433.956 542,434.5C 539.86,433.272 538.193,431.605 537,429.5C 534.546,431.013 532.879,430.346 532,427.5C 531.536,428.094 531.369,428.761 531.5,429.5C 527.529,419.461 528.029,409.461 533,399.5C 535.758,397.249 537.925,394.582 539.5,391.5 Z"/></g>
<g><path style="opacity:1" fill="#fbe0b9" d="M 31.5,420.5 C 37.8333,420.5 44.1667,420.5 50.5,420.5C 50.7771,423.448 50.4438,426.281 49.5,429C 43.5092,429.499 37.5092,429.666 31.5,429.5C 31.1667,429.5 30.8333,429.5 30.5,429.5C 28.901,429.768 27.5676,429.434 26.5,428.5C 33.5079,428.666 40.5079,428.5 47.5,428C 49.229,426.211 49.8957,424.044 49.5,421.5C 43.31,421.823 37.31,421.49 31.5,420.5 Z"/></g>
<g><path style="opacity:1" fill="#f4c78e" d="M 171.5,415.5 C 172.947,416.622 173.947,418.122 174.5,420C 178.188,420.45 181.854,420.283 185.5,419.5C 182.493,421.175 179.16,421.841 175.5,421.5C 172.224,420.878 170.891,418.878 171.5,415.5 Z"/></g>
<g><path style="opacity:1" fill="#f4a454" d="M 608.5,394.5 C 608.234,398.891 608.9,403.057 610.5,407C 610.304,408.878 609.971,410.712 609.5,412.5C 608.656,418.048 606.656,423.048 603.5,427.5C 598.539,423.931 598.206,419.931 602.5,415.5C 603.5,415.5 604.5,415.5 605.5,415.5C 605.248,410.012 605.915,404.678 607.5,399.5C 607.216,397.585 607.549,395.919 608.5,394.5 Z"/></g>
<g><path style="opacity:1" fill="#eeae66" d="M 58.5,395.5 C 59.5058,398.21 60.5058,400.876 61.5,403.5C 59.9434,407.578 58.1101,411.578 56,415.5C 55.5006,420.823 55.334,426.156 55.5,431.5C 53.955,430.77 53.1216,429.437 53,427.5C 51.8118,428.563 51.3118,429.897 51.5,431.5C 44.676,430.995 38.0094,430.329 31.5,429.5C 37.5092,429.666 43.5092,429.499 49.5,429C 50.4438,426.281 50.7771,423.448 50.5,420.5C 44.1667,420.5 37.8333,420.5 31.5,420.5C 31.5,420.167 31.5,419.833 31.5,419.5C 36.8437,419.666 42.1771,419.499 47.5,419C 49.9412,418.964 51.9412,418.131 53.5,416.5C 47.2737,414.982 40.9404,414.148 34.5,414C 33.2666,409.231 32.2666,404.397 31.5,399.5C 31.8333,399.5 32.1667,399.5 32.5,399.5C 34.1184,403.689 35.1184,408.022 35.5,412.5C 41.8421,412.666 48.1754,412.5 54.5,412C 55.7003,408.869 55.7003,405.702 54.5,402.5C 55.7079,403.234 57.0413,403.567 58.5,403.5C 57.7417,400.648 57.7417,397.981 58.5,395.5 Z"/></g>
<g><path style="opacity:1" fill="#f5ac46" d="M 133.5,415.5 C 133.249,418.909 133.583,422.242 134.5,425.5C 133.192,426.626 131.858,426.626 130.5,425.5C 130.113,421.011 129.113,416.677 127.5,412.5C 127.123,410.742 126.456,409.075 125.5,407.5C 125.833,407.167 126.167,406.833 126.5,406.5C 128.803,409.116 130.136,412.116 130.5,415.5C 131.5,415.5 132.5,415.5 133.5,415.5 Z"/></g>
<g><path style="opacity:1" fill="#eda95b" d="M 182.5,431.5 C 181.167,431.5 179.833,431.5 178.5,431.5C 178.5,430.167 178.5,428.833 178.5,427.5C 177.5,427.5 176.5,427.5 175.5,427.5C 175.5,425.5 175.5,423.5 175.5,421.5C 179.16,421.841 182.493,421.175 185.5,419.5C 187.628,418.371 189.961,418.204 192.5,419C 198.826,425.474 204.493,432.307 209.5,439.5C 208.127,439.657 206.793,439.49 205.5,439C 200.278,434.281 195.612,429.115 191.5,423.5C 186.735,421.746 182.735,422.746 179.5,426.5C 180.26,428.36 181.26,430.027 182.5,431.5 Z"/></g>
<g><path style="opacity:1" fill="#b2633a" d="M 258.5,351.5 C 254.531,358.442 251.365,365.776 249,373.5C 245.385,392.037 247.552,409.704 255.5,426.5C 254.185,425.524 252.852,424.524 251.5,423.5C 247.222,413.284 245.555,402.617 246.5,391.5C 245.921,381.912 247.088,372.578 250,363.5C 251.153,360.53 252.82,357.863 255,355.5C 255.49,354.207 255.657,352.873 255.5,351.5C 256.5,351.5 257.5,351.5 258.5,351.5 Z"/></g>
<g><path style="opacity:1" fill="#f8a441" d="M 443.5,415.5 C 441.692,416.918 441.025,418.918 441.5,421.5C 440.209,421.263 439.209,421.596 438.5,422.5C 436.883,423.038 435.216,423.371 433.5,423.5C 433.651,419.686 435.651,418.019 439.5,418.5C 439.247,416.173 439.914,414.173 441.5,412.5C 442.425,413.357 443.092,414.357 443.5,415.5 Z"/></g>
<g><path style="opacity:1" fill="#eea856" d="M 443.5,415.5 C 443.511,417.547 443.844,419.547 444.5,421.5C 446.64,424.951 448.64,428.451 450.5,432C 443.972,439.695 436.638,446.528 428.5,452.5C 427.386,451.277 427.219,449.944 428,448.5C 434.102,443.401 439.936,437.901 445.5,432C 443.718,428.391 441.385,425.224 438.5,422.5C 439.209,421.596 440.209,421.263 441.5,421.5C 441.025,418.918 441.692,416.918 443.5,415.5 Z"/></g>
<g><path style="opacity:1" fill="#bb7542" d="M 215.5,421.5 C 217.937,421.886 219.937,423.053 221.5,425C 223.134,425.494 224.801,425.66 226.5,425.5C 229.144,430.214 232.477,434.547 236.5,438.5C 228.942,433.55 221.942,427.883 215.5,421.5 Z"/></g>
<g><path style="opacity:1" fill="#f5a54c" d="M 598.5,401.5 C 597.237,406.126 596.071,410.792 595,415.5C 591.522,419.255 590.689,423.589 592.5,428.5C 597.79,432.453 602.79,436.787 607.5,441.5C 608.721,440.972 609.887,440.305 611,439.5C 611.818,435.716 612.818,432.05 614,428.5C 614.585,430.129 615.419,431.629 616.5,433C 614.383,437.721 612.717,442.555 611.5,447.5C 610.521,448.765 609.521,450.099 608.5,451.5C 607.485,448.456 606.485,445.456 605.5,442.5C 604.5,442.5 603.5,442.5 602.5,442.5C 602.671,445.797 602.005,446.131 600.5,443.5C 600.709,442.914 601.043,442.414 601.5,442C 599.866,441.506 598.199,441.34 596.5,441.5C 594.833,440.167 593.167,438.833 591.5,437.5C 591.19,435.856 590.19,434.856 588.5,434.5C 588.5,433.5 588.5,432.5 588.5,431.5C 587.5,431.5 586.5,431.5 585.5,431.5C 585.5,426.167 585.5,420.833 585.5,415.5C 586.5,415.5 587.5,415.5 588.5,415.5C 589.653,411.889 590.653,408.223 591.5,404.5C 592.117,404.389 592.617,404.056 593,403.5C 594.154,399.553 594.987,395.553 595.5,391.5C 595.5,391.167 595.5,390.833 595.5,390.5C 596.27,388.701 597.603,387.368 599.5,386.5C 599.833,387.5 600.167,388.5 600.5,389.5C 599.201,393.396 598.534,397.396 598.5,401.5 Z"/></g>
<g><path style="opacity:1" fill="#4f0608" d="M 68.5,416.5 C 67.2271,420.865 67.2271,425.199 68.5,429.5C 71.7431,436.574 77.0765,441.407 84.5,444C 100.138,445.688 109.471,438.855 112.5,423.5C 113.163,421.527 113.496,419.361 113.5,417C 113.672,413.523 113.006,410.356 111.5,407.5C 110.471,400.436 107.137,394.769 101.5,390.5C 101.5,389.833 101.5,389.167 101.5,388.5C 104.861,387.331 107.028,388.664 108,392.5C 109,391.167 110,391.167 111,392.5C 111.93,397.621 113.263,402.621 115,407.5C 115.61,415.519 115.443,423.519 114.5,431.5C 113.5,431.5 112.5,431.5 111.5,431.5C 111.808,433.924 111.474,436.257 110.5,438.5C 106.287,441.1 102.287,443.933 98.5,447C 92.1444,447.594 85.8111,447.427 79.5,446.5C 78.1562,442.832 75.4895,440.499 71.5,439.5C 70.3375,436.506 68.6709,433.84 66.5,431.5C 65.3414,427.878 65.1747,424.211 66,420.5C 66.2903,418.081 67.1237,416.747 68.5,416.5 Z"/></g>
<g><path style="opacity:1" fill="#4f0000" d="M 275.5,431.5 C 277.5,431.5 279.5,431.5 281.5,431.5C 281.902,435.757 284.069,437.424 288,436.5C 291.925,439.43 296.092,441.93 300.5,444C 303.78,444.056 306.78,444.889 309.5,446.5C 318.842,447.218 328.175,447.885 337.5,448.5C 339.457,446.515 341.79,445.015 344.5,444C 357.58,441.71 370.58,439.21 383.5,436.5C 383.5,434.833 383.5,433.167 383.5,431.5C 385.833,431.5 388.167,431.5 390.5,431.5C 390.414,432.496 390.748,433.329 391.5,434C 389.909,436.133 387.909,437.799 385.5,439C 385.833,439.333 386.167,439.667 386.5,440C 379.833,441.667 373.167,443.333 366.5,445C 358.759,448.922 350.426,450.756 341.5,450.5C 339.048,450.539 337.048,451.206 335.5,452.5C 324.813,452.832 314.146,452.499 303.5,451.5C 302.088,450.194 300.421,449.36 298.5,449C 300.167,448.667 301.833,448.333 303.5,448C 299.848,447.501 296.182,447.335 292.5,447.5C 292.631,446.624 292.298,445.957 291.5,445.5C 287.087,444.535 283.254,442.535 280,439.5C 279.667,439.833 279.333,440.167 279,440.5C 276.95,437.852 275.784,434.852 275.5,431.5 Z"/></g>
<g><path style="opacity:1" fill="#faa14b" d="M 30.5,429.5 C 30.8333,429.5 31.1667,429.5 31.5,429.5C 38.0094,430.329 44.676,430.995 51.5,431.5C 51.8333,432.833 52.1667,434.167 52.5,435.5C 50.9582,434.699 49.2915,434.366 47.5,434.5C 42.1254,434.828 36.7921,434.495 31.5,433.5C 36.1315,432.672 40.7982,432.172 45.5,432C 40.0675,432.118 35.0675,431.285 30.5,429.5 Z"/></g>
<g><path style="opacity:1" fill="#e69f57" d="M 133.5,415.5 C 134.856,418.577 135.689,421.91 136,425.5C 143.74,431.065 148.906,438.398 151.5,447.5C 148.93,444.058 146.43,440.392 144,436.5C 143.51,437.793 143.343,439.127 143.5,440.5C 141.194,437.527 138.527,434.86 135.5,432.5C 134.167,431.067 132.667,429.733 131,428.5C 130.517,427.552 130.351,426.552 130.5,425.5C 131.858,426.626 133.192,426.626 134.5,425.5C 133.583,422.242 133.249,418.909 133.5,415.5 Z"/></g>
<g><path style="opacity:1" fill="#eecc99" d="M 47.5,434.5 C 49.2915,434.366 50.9582,434.699 52.5,435.5C 53.1495,437.435 53.4828,439.435 53.5,441.5C 52.0687,440.22 51.4021,438.553 51.5,436.5C 44.8333,436.5 38.1667,436.5 31.5,436.5C 36.8333,435.833 42.1667,435.167 47.5,434.5 Z"/></g>
<g><path style="opacity:1" fill="#4d0709" d="M 536.5,387.5 C 537.404,388.209 537.737,389.209 537.5,390.5C 524.946,402.407 522.113,416.407 529,432.5C 537.331,444.916 548.164,447.75 561.5,441C 570.562,434.646 573.562,426.146 570.5,415.5C 575.014,420.555 576.681,426.555 575.5,433.5C 574.5,433.5 573.5,433.5 572.5,433.5C 572.649,434.552 572.483,435.552 572,436.5C 568.729,438.887 565.562,441.387 562.5,444C 561.929,445.205 561.262,446.372 560.5,447.5C 556.234,446.871 551.901,446.871 547.5,447.5C 539.775,446.746 533.275,443.412 528,437.5C 527.505,435.527 527.338,433.527 527.5,431.5C 526.167,431.5 524.833,431.5 523.5,431.5C 522.531,424.189 522.364,416.856 523,409.5C 525.123,404.686 526.789,399.686 528,394.5C 530.085,392.918 531.585,390.918 532.5,388.5C 533.736,387.754 535.07,387.421 536.5,387.5 Z"/></g>
<g><path style="opacity:1" fill="#fcebcc" d="M 588.5,434.5 C 590.19,434.856 591.19,435.856 591.5,437.5C 590.5,437.5 589.5,437.5 588.5,437.5C 588.576,440.973 589.242,444.306 590.5,447.5C 589.728,446.306 588.728,445.306 587.5,444.5C 585.97,440.896 586.303,437.563 588.5,434.5 Z"/></g>
<g><path style="opacity:1" fill="#deb470" d="M 537.5,390.5 C 537.833,390.5 538.167,390.5 538.5,390.5C 538.5,391.167 538.833,391.5 539.5,391.5C 537.925,394.582 535.758,397.249 533,399.5C 528.029,409.461 527.529,419.461 531.5,429.5C 537.655,441.39 546.988,444.556 559.5,439C 561.667,436.833 563.833,434.667 566,432.5C 566.982,431.241 567.315,429.908 567,428.5C 561.599,434.343 555.099,436.01 547.5,433.5C 550.833,432.833 554.167,432.167 557.5,431.5C 563.401,429.602 566.734,425.602 567.5,419.5C 568.167,418.167 568.833,416.833 569.5,415.5C 569.833,415.5 570.167,415.5 570.5,415.5C 573.562,426.146 570.562,434.646 561.5,441C 548.164,447.75 537.331,444.916 529,432.5C 522.113,416.407 524.946,402.407 537.5,390.5 Z"/></g>
<g><path style="opacity:1" fill="#730605" d="M 127.5,412.5 C 129.113,416.677 130.113,421.011 130.5,425.5C 130.351,426.552 130.517,427.552 131,428.5C 132.667,429.733 134.167,431.067 135.5,432.5C 134.504,432.414 133.671,432.748 133,433.5C 132.343,437.005 130.843,440.005 128.5,442.5C 127.167,445.167 127.167,447.833 128.5,450.5C 131.638,451.805 133.971,453.971 135.5,457C 138.014,458.252 140.68,458.752 143.5,458.5C 143.553,455.86 144.22,453.36 145.5,451C 144.923,448.863 144.59,446.696 144.5,444.5C 147.008,449.003 149.674,453.503 152.5,458C 148.987,462.01 144.987,465.51 140.5,468.5C 139.577,469.303 138.577,469.47 137.5,469C 131.684,464.018 126.017,458.851 120.5,453.5C 114.884,457.068 108.884,459.735 102.5,461.5C 78.801,463.829 63.1344,453.829 55.5,431.5C 55.334,426.156 55.5006,420.823 56,415.5C 58.1101,411.578 59.9434,407.578 61.5,403.5C 63.2687,402.579 64.9354,401.412 66.5,400C 68.7078,399.809 70.7078,399.309 72.5,398.5C 76.8982,398.706 81.2315,398.373 85.5,397.5C 88.7116,399.171 92.0449,400.838 95.5,402.5C 95.5,403.167 95.5,403.833 95.5,404.5C 96.2997,406.682 97.7997,408.349 100,409.5C 100.5,413 101,416.5 101.5,420C 101.486,421.385 101.152,422.551 100.5,423.5C 100.649,422.448 100.483,421.448 100,420.5C 98.5723,425.404 95.7389,429.07 91.5,431.5C 77.1281,433.295 70.2948,426.961 71,412.5C 70.3918,414.066 69.5585,415.4 68.5,416.5C 67.1237,416.747 66.2903,418.081 66,420.5C 65.1747,424.211 65.3414,427.878 66.5,431.5C 68.6709,433.84 70.3375,436.506 71.5,439.5C 75.4895,440.499 78.1562,442.832 79.5,446.5C 85.8111,447.427 92.1444,447.594 98.5,447C 102.287,443.933 106.287,441.1 110.5,438.5C 111.474,436.257 111.808,433.924 111.5,431.5C 112.5,431.5 113.5,431.5 114.5,431.5C 115.443,423.519 115.61,415.519 115,407.5C 113.263,402.621 111.93,397.621 111,392.5C 110,391.167 109,391.167 108,392.5C 107.028,388.664 104.861,387.331 101.5,388.5C 103.94,385.957 105.606,382.957 106.5,379.5C 108.597,375.142 110.097,370.476 111,365.5C 113.479,368.069 116.146,370.402 119,372.5C 118.436,375.526 117.436,378.526 116,381.5C 115.361,393.544 119.194,403.877 127.5,412.5 Z"/></g>
<g><path style="opacity:1" fill="#49170f" d="M 71.5,428.5 C 76.2982,433.861 82.2982,435.861 89.5,434.5C 88.4019,435.397 88.4019,436.23 89.5,437C 87.9984,437.583 86.6651,438.416 85.5,439.5C 88.7683,440.487 92.1016,440.82 95.5,440.5C 84.1495,443.492 76.1495,439.492 71.5,428.5 Z"/></g>
<g><path style="opacity:1" fill="#e8a35d" d="M 91.5,431.5 C 92.5,431.5 93.5,431.5 94.5,431.5C 93.1007,432.89 91.4341,433.89 89.5,434.5C 82.2982,435.861 76.2982,433.861 71.5,428.5C 71.631,427.761 71.4643,427.094 71,426.5C 70.6667,427.833 70.3333,429.167 70,430.5C 69.6174,429.944 69.1174,429.611 68.5,429.5C 67.2271,425.199 67.2271,420.865 68.5,416.5C 69.5585,415.4 70.3918,414.066 71,412.5C 70.2948,426.961 77.1281,433.295 91.5,431.5 Z"/></g>
<g><path style="opacity:1" fill="#370808" d="M 95.5,404.5 C 98.5744,405.356 101.408,406.69 104,408.5C 105.376,407.295 106.542,405.962 107.5,404.5C 109.914,408.021 110.914,412.021 110.5,416.5C 111.034,428.122 106.034,436.122 95.5,440.5C 92.1016,440.82 88.7683,440.487 85.5,439.5C 86.6651,438.416 87.9984,437.583 89.5,437C 88.4019,436.23 88.4019,435.397 89.5,434.5C 91.4341,433.89 93.1007,432.89 94.5,431.5C 97.4611,429.588 99.4611,426.921 100.5,423.5C 101.152,422.551 101.486,421.385 101.5,420C 101,416.5 100.5,413 100,409.5C 97.7997,408.349 96.2997,406.682 95.5,404.5 Z"/></g>
<g><path style="opacity:1" fill="#da8c72" d="M 100.5,423.5 C 99.4611,426.921 97.4611,429.588 94.5,431.5C 93.5,431.5 92.5,431.5 91.5,431.5C 95.7389,429.07 98.5723,425.404 100,420.5C 100.483,421.448 100.649,422.448 100.5,423.5 Z"/></g>
<g><path style="opacity:1" fill="#935f23" d="M 111.5,407.5 C 113.006,410.356 113.672,413.523 113.5,417C 113.496,419.361 113.163,421.527 112.5,423.5C 112.608,418.13 112.275,412.797 111.5,407.5 Z"/></g>
<g><path style="opacity:1" fill="#faa536" d="M 223.5,438.5 C 223.937,440.074 224.937,441.241 226.5,442C 225.473,442.513 224.473,443.013 223.5,443.5C 223.5,443.167 223.5,442.833 223.5,442.5C 222.391,441.71 221.058,441.21 219.5,441C 218.782,439.013 217.782,437.179 216.5,435.5C 216.833,435.167 217.167,434.833 217.5,434.5C 219.264,436.278 221.264,437.611 223.5,438.5 Z"/></g>
<g><path style="opacity:1" fill="#eaa95b" d="M 431.5,456.5 C 431.5,457.833 431.5,459.167 431.5,460.5C 430.167,460.5 428.833,460.5 427.5,460.5C 427.5,461.5 427.5,462.5 427.5,463.5C 426.167,463.5 424.833,463.5 423.5,463.5C 422.494,467.53 419.827,469.197 415.5,468.5C 417.928,466.899 419.928,464.732 421.5,462C 419.93,456.903 419.097,451.737 419,446.5C 425.343,440.989 431.509,435.323 437.5,429.5C 439.283,430.348 439.783,431.681 439,433.5C 433.319,438.736 427.819,444.069 422.5,449.5C 422.928,453.226 424.261,456.559 426.5,459.5C 428.36,458.74 430.027,457.74 431.5,456.5 Z"/></g>
<g><path style="opacity:1" fill="#f9a448" d="M 31.5,438.5 C 31.7108,441.848 32.7108,444.848 34.5,447.5C 34.4098,451.214 33.4098,454.548 31.5,457.5C 29.3913,452.005 27.558,446.338 26,440.5C 23.7681,437.543 21.9348,434.543 20.5,431.5C 19.8964,428.782 18.563,426.449 16.5,424.5C 16.5,424.167 16.5,423.833 16.5,423.5C 16.1977,420.627 15.531,417.961 14.5,415.5C 14.1307,409.487 13.964,403.487 14,397.5C 18.7343,403.065 19.5676,409.065 16.5,415.5C 17.5,415.5 18.5,415.5 19.5,415.5C 19.3505,414.448 19.5172,413.448 20,412.5C 20.3333,412.833 20.6667,413.167 21,413.5C 21.1177,416.371 21.7844,419.038 23,421.5C 23.4983,424.817 23.665,428.15 23.5,431.5C 25.5,431.5 27.5,431.5 29.5,431.5C 29.1706,434.228 29.8372,436.562 31.5,438.5 Z"/></g>
<g><path style="opacity:1" fill="#440204" d="M 135.5,432.5 C 138.527,434.86 141.194,437.527 143.5,440.5C 143.833,441.833 144.167,443.167 144.5,444.5C 144.59,446.696 144.923,448.863 145.5,451C 144.22,453.36 143.553,455.86 143.5,458.5C 140.68,458.752 138.014,458.252 135.5,457C 133.971,453.971 131.638,451.805 128.5,450.5C 127.167,447.833 127.167,445.167 128.5,442.5C 130.843,440.005 132.343,437.005 133,433.5C 133.671,432.748 134.504,432.414 135.5,432.5 Z"/></g>
<g><path style="opacity:1" fill="#e8a863" d="M 415.5,437.5 C 413.683,439.012 412.683,441.012 412.5,443.5C 413.5,443.5 414.5,443.5 415.5,443.5C 413.771,444.236 412.771,445.57 412.5,447.5C 410.952,447.179 410.285,446.179 410.5,444.5C 407.401,444.092 405.067,445.259 403.5,448C 404.244,449.039 405.244,449.539 406.5,449.5C 405.341,451.25 403.674,452.25 401.5,452.5C 401.715,450.821 401.048,449.821 399.5,449.5C 404.359,445.049 409.692,441.049 415.5,437.5 Z"/></g>
<g><path style="opacity:1" fill="#f4a44d" d="M 428.5,431.5 C 424.398,435.723 420.065,439.723 415.5,443.5C 414.5,443.5 413.5,443.5 412.5,443.5C 412.683,441.012 413.683,439.012 415.5,437.5C 417.412,435.01 419.745,433.01 422.5,431.5C 424.094,431.08 425.594,430.414 427,429.5C 428.03,429.836 428.53,430.503 428.5,431.5 Z"/></g>
<g><path style="opacity:1" fill="#3d090b" d="M 403.5,437.5 C 394.047,445.229 383.38,450.896 371.5,454.5C 374.135,452.177 377.135,450.344 380.5,449C 378.096,448.492 377.429,447.325 378.5,445.5C 383.049,444.116 387.382,442.283 391.5,440C 391.167,439.667 390.833,439.333 390.5,439C 394.882,438.708 399.215,438.208 403.5,437.5 Z"/></g>
<g><path style="opacity:1" fill="#feeed4" d="M 16.5,424.5 C 18.563,426.449 19.8964,428.782 20.5,431.5C 22.172,436.861 23.8386,442.195 25.5,447.5C 23.4266,444.565 21.4266,441.399 19.5,438C 18.4333,433.498 17.4333,428.998 16.5,424.5 Z"/></g>
<g><path style="opacity:1" fill="#eea654" d="M 198.5,411.5 C 206.516,420.847 214.849,429.847 223.5,438.5C 221.264,437.611 219.264,436.278 217.5,434.5C 217.167,434.833 216.833,435.167 216.5,435.5C 217.782,437.179 218.782,439.013 219.5,441C 221.058,441.21 222.391,441.71 223.5,442.5C 217.575,444.212 212.075,446.879 207,450.5C 200.986,444.318 194.819,438.318 188.5,432.5C 187.833,431.167 187.167,429.833 186.5,428.5C 189.742,426.821 191.742,427.821 192.5,431.5C 197.526,436.195 202.526,440.861 207.5,445.5C 209.574,442.922 212.24,441.422 215.5,441C 216.022,440.439 216.355,439.772 216.5,439C 209.686,432.347 203.353,425.18 197.5,417.5C 198.756,417.539 199.756,417.039 200.5,416C 199.418,414.67 198.751,413.17 198.5,411.5 Z"/></g>
<g><path style="opacity:1" fill="#440304" d="M 502.5,433.5 C 503.5,433.5 504.5,433.5 505.5,433.5C 506.295,437.367 508.128,440.701 511,443.5C 511.781,444.944 511.614,446.277 510.5,447.5C 507.978,450.188 505.644,453.021 503.5,456C 499.476,456.497 495.476,456.331 491.5,455.5C 491.5,453.833 491.5,452.167 491.5,450.5C 493.425,443.637 497.091,437.971 502.5,433.5 Z"/></g>
<g><path style="opacity:1" fill="#e8b076" d="M 20.5,431.5 C 21.9348,434.543 23.7681,437.543 26,440.5C 27.558,446.338 29.3913,452.005 31.5,457.5C 28.944,454.497 26.944,451.163 25.5,447.5C 23.8386,442.195 22.172,436.861 20.5,431.5 Z"/></g>
<g><path style="opacity:1" fill="#f2a656" d="M 223.5,438.5 C 224.552,438.351 225.552,438.517 226.5,439C 236.164,447.323 246.83,453.823 258.5,458.5C 256.533,458.261 254.699,458.594 253,459.5C 252.558,461.614 253.391,462.948 255.5,463.5C 255.229,465.43 254.229,466.764 252.5,467.5C 250.704,468.793 249.037,470.293 247.5,472C 244.854,472.497 242.187,472.664 239.5,472.5C 233.13,469.14 226.797,465.473 220.5,461.5C 219.571,460.311 219.238,458.978 219.5,457.5C 220.873,457.343 222.207,457.51 223.5,458C 228.799,461.655 234.133,465.322 239.5,469C 241.387,469.78 243.054,469.613 244.5,468.5C 246.5,466.833 248.5,465.167 250.5,463.5C 251.404,462.791 251.737,461.791 251.5,460.5C 240.904,456.87 231.57,451.204 223.5,443.5C 224.473,443.013 225.473,442.513 226.5,442C 224.937,441.241 223.937,440.074 223.5,438.5 Z"/></g>
<g><path style="opacity:1" fill="#730504" d="M 536.5,387.5 C 535.07,387.421 533.736,387.754 532.5,388.5C 531.585,390.918 530.085,392.918 528,394.5C 526.789,399.686 525.123,404.686 523,409.5C 522.364,416.856 522.531,424.189 523.5,431.5C 524.833,431.5 526.167,431.5 527.5,431.5C 527.338,433.527 527.505,435.527 528,437.5C 533.275,443.412 539.775,446.746 547.5,447.5C 551.901,446.871 556.234,446.871 560.5,447.5C 561.262,446.372 561.929,445.205 562.5,444C 565.562,441.387 568.729,438.887 572,436.5C 572.483,435.552 572.649,434.552 572.5,433.5C 573.5,433.5 574.5,433.5 575.5,433.5C 576.681,426.555 575.014,420.555 570.5,415.5C 570.167,415.5 569.833,415.5 569.5,415.5C 569.013,414.527 568.513,413.527 568,412.5C 567.503,414.81 567.337,417.143 567.5,419.5C 566.734,425.602 563.401,429.602 557.5,431.5C 547.926,433.406 541.759,429.739 539,420.5C 538.517,421.448 538.351,422.448 538.5,423.5C 537.853,422.726 537.52,421.726 537.5,420.5C 538.082,416.845 538.582,413.178 539,409.5C 543.777,405.204 548.61,401.204 553.5,397.5C 557.064,398.423 560.731,398.756 564.5,398.5C 568.966,399.583 573.299,401.25 577.5,403.5C 579.057,407.578 580.89,411.578 583,415.5C 585.104,427.333 582.604,438 575.5,447.5C 559.924,462.748 542.257,465.581 522.5,456C 520.91,454.954 519.41,453.787 518,452.5C 514.998,456.334 511.831,460 508.5,463.5C 505.569,465.091 502.902,467.091 500.5,469.5C 496.324,466.912 492.324,464.079 488.5,461C 486.963,459.89 486.297,458.39 486.5,456.5C 488.643,454.869 490.31,452.869 491.5,450.5C 491.5,452.167 491.5,453.833 491.5,455.5C 495.476,456.331 499.476,456.497 503.5,456C 505.644,453.021 507.978,450.188 510.5,447.5C 511.614,446.277 511.781,444.944 511,443.5C 508.128,440.701 506.295,437.367 505.5,433.5C 504.5,433.5 503.5,433.5 502.5,433.5C 504.355,431.967 506.188,430.3 508,428.5C 508.774,424.853 509.441,421.186 510,417.5C 513.585,410.661 517.418,403.994 521.5,397.5C 522.645,393.919 523.312,390.252 523.5,386.5C 522.575,381.689 521.408,377.023 520,372.5C 522.963,370.539 525.629,368.206 528,365.5C 529.372,373.458 532.205,380.791 536.5,387.5 Z"/></g>
<g><path style="opacity:1" fill="#310c09" d="M 543.5,432.5 C 544.833,432.833 546.167,433.167 547.5,433.5C 555.099,436.01 561.599,434.343 567,428.5C 567.315,429.908 566.982,431.241 566,432.5C 563.833,434.667 561.667,436.833 559.5,439C 546.988,444.556 537.655,441.39 531.5,429.5C 531.369,428.761 531.536,428.094 532,427.5C 532.879,430.346 534.546,431.013 537,429.5C 538.193,431.605 539.86,433.272 542,434.5C 542.717,433.956 543.217,433.289 543.5,432.5 Z"/></g>
<g><path style="opacity:1" fill="#cf9563" d="M 557.5,431.5 C 554.167,432.167 550.833,432.833 547.5,433.5C 546.167,433.167 544.833,432.833 543.5,432.5C 541.58,429.661 539.913,426.661 538.5,423.5C 538.351,422.448 538.517,421.448 539,420.5C 541.759,429.739 547.926,433.406 557.5,431.5 Z"/></g>
<g><path style="opacity:1" fill="#b86d4a" d="M 569.5,415.5 C 568.833,416.833 568.167,418.167 567.5,419.5C 567.337,417.143 567.503,414.81 568,412.5C 568.513,413.527 569.013,414.527 569.5,415.5 Z"/></g>
<g><path style="opacity:1" fill="#e6a169" d="M 492.5,437.5 C 491.327,441.533 489.827,445.533 488,449.5C 485.57,451.422 483.737,453.755 482.5,456.5C 481.5,456.5 480.5,456.5 479.5,456.5C 481.641,454.282 483.808,451.949 486,449.5C 487.955,445.247 490.122,441.247 492.5,437.5 Z"/></g>
<g><path style="opacity:1" fill="#e6ac6b" d="M 581.5,463.5 C 582.202,460.422 583.202,457.422 584.5,454.5C 584.16,451.982 582.826,450.815 580.5,451C 577.72,452.913 576.053,455.413 575.5,458.5C 575.416,455.252 576.249,452.252 578,449.5C 579.133,447.789 580.633,447.289 582.5,448C 587.34,453.483 587.006,458.65 581.5,463.5 Z"/></g>
<g><path style="opacity:1" fill="#f3a66f" d="M 206.5,463.5 C 200.27,459.612 194.604,454.945 189.5,449.5C 189.167,448.833 188.833,448.167 188.5,447.5C 189.866,445.649 191.533,445.316 193.5,446.5C 193.023,447.478 192.357,448.311 191.5,449C 196.617,453.858 201.617,458.691 206.5,463.5 Z"/></g>
<g><path style="opacity:1" fill="#efa658" d="M 463.5,422.5 C 462.149,424.392 461.482,426.558 461.5,429C 461.608,430.681 462.275,431.848 463.5,432.5C 459.582,438.754 454.915,444.421 449.5,449.5C 447.456,451.219 445.456,452.886 443.5,454.5C 443.579,453.07 443.246,451.736 442.5,450.5C 443.325,449.614 444.325,449.281 445.5,449.5C 445.657,448.127 445.49,446.793 445,445.5C 444.329,446.252 443.496,446.586 442.5,446.5C 447.019,441.815 451.353,436.982 455.5,432C 452.541,426.571 449.875,421.071 447.5,415.5C 448.5,415.5 449.5,415.5 450.5,415.5C 450.351,414.448 450.517,413.448 451,412.5C 454.351,407.155 457.685,401.822 461,396.5C 462.011,395.663 463.178,395.33 464.5,395.5C 464.628,397.655 464.128,399.655 463,401.5C 459.251,406.662 455.751,411.996 452.5,417.5C 454.32,419.839 455.487,422.506 456,425.5C 456.689,426.357 457.522,427.023 458.5,427.5C 459.945,425.606 461.612,423.94 463.5,422.5 Z"/></g>
<g><path style="opacity:1" fill="#efa963" d="M 587.5,444.5 C 588.728,445.306 589.728,446.306 590.5,447.5C 591.62,449.124 592.953,450.624 594.5,452C 594.252,453.749 593.252,454.582 591.5,454.5C 591.25,453.078 590.417,452.078 589,451.5C 588.56,449.134 588.06,446.801 587.5,444.5 Z"/></g>
<g><path style="opacity:1" fill="#f1cda2" d="M 611.5,447.5 C 611.833,447.5 612.167,447.5 612.5,447.5C 612.55,452.045 610.883,455.711 607.5,458.5C 607.5,457.167 607.5,455.833 607.5,454.5C 610.112,452.948 611.445,450.614 611.5,447.5 Z"/></g>
<g><path style="opacity:1" fill="#f5a549" d="M 412.5,447.5 C 414.055,450.576 415.055,453.909 415.5,457.5C 413.446,457.635 411.779,456.968 410.5,455.5C 411.113,452.031 409.779,450.031 406.5,449.5C 405.244,449.539 404.244,449.039 403.5,448C 405.067,445.259 407.401,444.092 410.5,444.5C 410.285,446.179 410.952,447.179 412.5,447.5 Z"/></g>
<g><path style="opacity:1" fill="#420406" d="M 292.5,447.5 C 296.182,447.335 299.848,447.501 303.5,448C 301.833,448.333 300.167,448.667 298.5,449C 300.421,449.36 302.088,450.194 303.5,451.5C 314.146,452.499 324.813,452.832 335.5,452.5C 339.182,452.335 342.848,452.501 346.5,453C 343.88,453.981 341.38,455.147 339,456.5C 337.7,455.548 336.533,455.548 335.5,456.5C 337.291,457.764 339.291,458.431 341.5,458.5C 344.539,457.418 347.539,457.418 350.5,458.5C 357.363,456.434 364.363,455.101 371.5,454.5C 358.437,459.848 344.77,463.182 330.5,464.5C 321.467,464.716 312.467,464.383 303.5,463.5C 299.527,463.037 295.86,461.537 292.5,459C 290.866,458.506 289.199,458.34 287.5,458.5C 285.941,456.376 283.941,454.709 281.5,453.5C 283.214,452.262 285.214,451.595 287.5,451.5C 287.5,450.167 287.5,448.833 287.5,447.5C 289.167,447.5 290.833,447.5 292.5,447.5 Z"/></g>
<g><path style="opacity:1" fill="#740805" d="M 189.5,449.5 C 194.604,454.945 200.27,459.612 206.5,463.5C 215.661,471.31 225.661,477.977 236.5,483.5C 236.577,484.75 237.244,485.583 238.5,486C 234.823,485.361 231.157,485.527 227.5,486.5C 227.167,486.167 226.833,485.833 226.5,485.5C 228.369,484.376 230.369,483.543 232.5,483C 228.24,483.212 224.74,481.712 222,478.5C 214.54,476.02 207.707,472.353 201.5,467.5C 201.165,469.003 201.165,470.336 201.5,471.5C 198.242,470.583 194.909,470.249 191.5,470.5C 191.183,473.572 191.516,476.572 192.5,479.5C 193.5,480.833 194.5,480.833 195.5,479.5C 198.095,481.958 200.428,484.624 202.5,487.5C 204.045,488.452 205.712,488.785 207.5,488.5C 207.216,490.877 207.216,493.044 207.5,495C 215.856,497.317 223.856,500.484 231.5,504.5C 237.869,502.203 240.869,504.536 240.5,511.5C 246.541,514.077 252.541,514.077 258.5,511.5C 258.833,511 259.167,510.5 259.5,510C 258.167,507 256.833,504 255.5,501C 256.856,499.433 257.523,497.6 257.5,495.5C 255.076,495.808 252.743,495.474 250.5,494.5C 249.088,493.194 247.421,492.36 245.5,492C 244.209,490.708 244.209,489.542 245.5,488.5C 254.286,491.538 262.953,494.538 271.5,497.5C 271.848,501.085 271.181,504.418 269.5,507.5C 262.355,517.574 253.021,520.407 241.5,516C 233.199,509.517 223.866,505.184 213.5,503C 206.905,495.367 198.905,489.701 189.5,486C 178.798,479.068 176.131,469.902 181.5,458.5C 181.376,457.893 181.043,457.56 180.5,457.5C 183.508,454.789 186.508,452.122 189.5,449.5 Z"/></g>
<g><path style="opacity:1" fill="#f1b562" d="M 55.5,431.5 C 63.1344,453.829 78.801,463.829 102.5,461.5C 102.842,462.338 103.508,462.672 104.5,462.5C 100.111,464.246 95.4439,465.246 90.5,465.5C 88.1667,465.5 85.8333,465.5 83.5,465.5C 80.6264,463.723 77.6264,463.389 74.5,464.5C 75.1272,465.417 75.4606,466.417 75.5,467.5C 74.5041,467.586 73.6708,467.252 73,466.5C 73.2388,462.816 71.7388,460.149 68.5,458.5C 68.1667,459.167 67.8333,459.833 67.5,460.5C 68.05,463.721 69.05,466.721 70.5,469.5C 65.9146,462.957 61.4146,456.291 57,449.5C 55.522,446.842 54.3554,444.175 53.5,441.5C 53.4828,439.435 53.1495,437.435 52.5,435.5C 52.1667,434.167 51.8333,432.833 51.5,431.5C 51.3118,429.897 51.8118,428.563 53,427.5C 53.1216,429.437 53.955,430.77 55.5,431.5 Z"/></g>
<g><path style="opacity:1" fill="#eda755" d="M 196.5,446.5 C 199.833,449.664 203.333,452.664 207,455.5C 211.599,453.742 215.765,451.242 219.5,448C 220.793,447.51 222.127,447.343 223.5,447.5C 223.5,448.5 223.5,449.5 223.5,450.5C 224.552,450.351 225.552,450.517 226.5,451C 231.926,454.746 237.26,458.579 242.5,462.5C 240.926,463.631 239.259,463.798 237.5,463C 232.338,459.251 227.004,455.751 221.5,452.5C 217.315,453.422 213.982,455.588 211.5,459C 212.381,459.708 213.047,460.542 213.5,461.5C 211.5,461.5 209.5,461.5 207.5,461.5C 207.5,460.5 207.5,459.5 207.5,458.5C 203.667,459.161 202.167,457.828 203,454.5C 201.247,453.373 199.413,452.373 197.5,451.5C 196.548,449.955 196.215,448.288 196.5,446.5 Z"/></g>
<g><path style="opacity:1" fill="#bd7d4c" d="M 271.5,457.5 C 271.5,457.167 271.5,456.833 271.5,456.5C 274.187,456.336 276.854,456.503 279.5,457C 282.081,459.159 284.747,459.659 287.5,458.5C 289.199,458.34 290.866,458.506 292.5,459C 295.86,461.537 299.527,463.037 303.5,463.5C 292.559,462.964 281.892,460.964 271.5,457.5 Z"/></g>
<g><path style="opacity:1" fill="#f1a858" d="M 34.5,447.5 C 42.4119,464.138 51.7453,480.138 62.5,495.5C 63.4287,496.689 63.762,498.022 63.5,499.5C 62.5,499.5 61.5,499.5 60.5,499.5C 60.477,497.073 59.977,494.74 59,492.5C 56.7304,491.273 54.897,489.606 53.5,487.5C 52.5713,486.311 52.238,484.978 52.5,483.5C 51.5,483.5 50.5,483.5 49.5,483.5C 49.0923,486.599 50.259,488.933 53,490.5C 54.479,496.108 56.979,501.108 60.5,505.5C 55.7605,500.434 51.4272,495.101 47.5,489.5C 44.3799,481.682 40.3799,474.348 35.5,467.5C 33.8679,464.325 32.5346,460.992 31.5,457.5C 33.4098,454.548 34.4098,451.214 34.5,447.5 Z"/></g>
<g><path style="opacity:1" fill="#f4a44d" d="M 258.5,458.5 C 262.605,460.757 266.939,462.424 271.5,463.5C 274.659,464.331 277.659,465.331 280.5,466.5C 287.792,469.21 295.459,470.543 303.5,470.5C 303.5,470.833 303.5,471.167 303.5,471.5C 315.322,472.495 327.322,472.828 339.5,472.5C 339.5,473.5 339.5,474.5 339.5,475.5C 335.932,475.759 334.599,477.759 335.5,481.5C 332.795,481.62 332.128,480.62 333.5,478.5C 333.145,477.478 332.478,476.811 331.5,476.5C 322.167,476.5 312.833,476.5 303.5,476.5C 302.041,476.567 300.708,476.234 299.5,475.5C 296.003,474.598 292.337,473.931 288.5,473.5C 277.189,470.926 266.189,467.593 255.5,463.5C 253.391,462.948 252.558,461.614 253,459.5C 254.699,458.594 256.533,458.261 258.5,458.5 Z"/></g>
<g><path style="opacity:1" fill="#feefcf" d="M 385.5,455.5 C 379.764,458.7 373.764,461.367 367.5,463.5C 368.122,461.665 369.456,460.498 371.5,460C 376.085,458.205 380.752,456.705 385.5,455.5 Z"/></g>
<g><path style="opacity:1" fill="#e0965c" d="M 479.5,456.5 C 479.5,457.5 479.5,458.5 479.5,459.5C 473.536,460.307 467.536,460.64 461.5,460.5C 461.524,466.857 461.19,473.19 460.5,479.5C 459.5,479.5 458.5,479.5 457.5,479.5C 458.942,475.782 459.942,471.949 460.5,468C 460.596,464.456 459.596,461.289 457.5,458.5C 457.624,457.893 457.957,457.56 458.5,457.5C 465.655,460.32 472.655,459.987 479.5,456.5 Z"/></g>
<g><path style="opacity:1" fill="#fef5e3" d="M 25.5,447.5 C 26.944,451.163 28.944,454.497 31.5,457.5C 32.5346,460.992 33.8679,464.325 35.5,467.5C 33.9826,467.511 32.8159,468.177 32,469.5C 31.3486,467.765 31.5153,466.098 32.5,464.5C 30.1429,463.597 28.6429,461.93 28,459.5C 27.0555,455.506 26.2221,451.506 25.5,447.5 Z"/></g>
<g><path style="opacity:1" fill="#eaa470" d="M 140.5,468.5 C 140.582,470.252 139.749,471.252 138,471.5C 132.164,466.67 126.664,461.503 121.5,456C 118.632,455.36 116.965,456.527 116.5,459.5C 115.85,459.196 115.183,458.863 114.5,458.5C 111.371,460.4 108.037,461.733 104.5,462.5C 103.508,462.672 102.842,462.338 102.5,461.5C 108.884,459.735 114.884,457.068 120.5,453.5C 126.017,458.851 131.684,464.018 137.5,469C 138.577,469.47 139.577,469.303 140.5,468.5 Z"/></g>
<g><path style="opacity:1" fill="#320504" d="M 537.5,463.5 C 537.918,464.222 538.584,464.722 539.5,465C 542.146,465.497 544.813,465.664 547.5,465.5C 546.962,468.905 545.629,471.905 543.5,474.5C 541.167,477.167 538.833,479.833 536.5,482.5C 532.22,480.109 530.887,476.609 532.5,472C 531,470.5 529.5,469 528,467.5C 527.503,469.81 527.337,472.143 527.5,474.5C 526.448,474.649 525.448,474.483 524.5,474C 523.87,472.108 522.87,470.441 521.5,469C 519.39,469.347 517.39,469.18 515.5,468.5C 516.833,466.833 518.167,465.167 519.5,463.5C 520.167,463.5 520.5,463.167 520.5,462.5C 521.812,461.188 523.146,459.854 524.5,458.5C 528.461,461.153 532.794,462.82 537.5,463.5 Z"/></g>
<g><path style="opacity:1" fill="#750403" d="M 449.5,449.5 C 452.165,451.79 455.165,454.457 458.5,457.5C 457.957,457.56 457.624,457.893 457.5,458.5C 459.596,461.289 460.596,464.456 460.5,468C 459.942,471.949 458.942,475.782 457.5,479.5C 455.544,481.114 453.544,482.781 451.5,484.5C 441.344,488.476 432.677,494.643 425.5,503C 415.808,504.847 407.141,508.847 399.5,515C 387.299,521.056 377.299,518.556 369.5,507.5C 367.819,504.418 367.152,501.085 367.5,497.5C 368.167,496.833 368.833,496.167 369.5,495.5C 371.292,495.634 372.958,495.301 374.5,494.5C 386.627,491.099 397.961,486.099 408.5,479.5C 421.594,473.059 433.26,464.725 443.5,454.5C 445.456,452.886 447.456,451.219 449.5,449.5 Z"/></g>
<g><path style="opacity:1" fill="#ef9d5d" d="M 575.5,447.5 C 575.509,449.308 575.009,450.975 574,452.5C 571.407,454.549 568.907,456.715 566.5,459C 567.047,459.925 567.713,460.758 568.5,461.5C 570.662,459.98 572.995,458.98 575.5,458.5C 574.083,461.669 572.417,464.669 570.5,467.5C 570.853,465.365 570.02,464.032 568,463.5C 566.649,465.018 565.149,466.351 563.5,467.5C 563.511,465.983 564.177,464.816 565.5,464C 561.258,462.923 557.591,463.756 554.5,466.5C 550.218,464.111 545.552,462.777 540.5,462.5C 539.274,462.52 538.274,462.853 537.5,463.5C 532.794,462.82 528.461,461.153 524.5,458.5C 523.146,459.854 521.812,461.188 520.5,462.5C 519.903,462.265 519.57,461.765 519.5,461C 522.285,458.736 522.118,456.903 519,455.5C 516.064,457.376 513.564,459.71 511.5,462.5C 510.675,463.386 509.675,463.719 508.5,463.5C 511.831,460 514.998,456.334 518,452.5C 519.41,453.787 520.91,454.954 522.5,456C 542.257,465.581 559.924,462.748 575.5,447.5 Z"/></g>
<g><path style="opacity:1" fill="#310504" d="M 116.5,459.5 C 117.026,461.23 118.026,462.564 119.5,463.5C 120.5,464.833 121.5,466.167 122.5,467.5C 117.689,467.234 114.356,469.234 112.5,473.5C 109.428,475.604 106.428,477.604 103.5,479.5C 103.737,480.791 103.404,481.791 102.5,482.5C 97.7748,477.397 93.7748,471.731 90.5,465.5C 95.4439,465.246 100.111,464.246 104.5,462.5C 108.037,461.733 111.371,460.4 114.5,458.5C 115.183,458.863 115.85,459.196 116.5,459.5 Z"/></g>
<g><path style="opacity:1" fill="#efa95e" d="M 385.5,482.5 C 384.883,482.389 384.383,482.056 384,481.5C 383.764,483.119 382.931,484.119 381.5,484.5C 381.5,483.5 381.5,482.5 381.5,481.5C 381.5,476.833 381.5,472.167 381.5,467.5C 382.873,467.657 384.207,467.49 385.5,467C 392.263,462.952 399.263,459.452 406.5,456.5C 406.714,458.144 406.38,459.644 405.5,461C 398.99,464.091 392.49,467.258 386,470.5C 385.501,474.486 385.334,478.486 385.5,482.5 Z"/></g>
<g><path style="opacity:1" fill="#cfb4b0" d="M 303.5,463.5 C 312.467,464.383 321.467,464.716 330.5,464.5C 322.677,465.656 314.677,465.823 306.5,465C 305.263,464.768 304.263,464.268 303.5,463.5 Z"/></g>
<g><path style="opacity:1" fill="#d79c61" d="M 519.5,463.5 C 518.167,465.167 516.833,466.833 515.5,468.5C 514.29,468.932 513.29,469.599 512.5,470.5C 511.167,471.5 509.833,472.5 508.5,473.5C 510.477,469.867 512.81,466.533 515.5,463.5C 516.833,463.5 518.167,463.5 519.5,463.5 Z"/></g>
<g><path style="opacity:1" fill="#f6a548" d="M 587.5,444.5 C 588.06,446.801 588.56,449.134 589,451.5C 590.417,452.078 591.25,453.078 591.5,454.5C 591.66,456.199 591.494,457.866 591,459.5C 587.858,464.144 585.024,468.81 582.5,473.5C 581.292,474.234 579.959,474.567 578.5,474.5C 578.338,472.473 578.505,470.473 579,468.5C 579.718,469.451 580.551,469.617 581.5,469C 580.594,467.301 580.261,465.467 580.5,463.5C 580.833,463.5 581.167,463.5 581.5,463.5C 587.006,458.65 587.34,453.483 582.5,448C 580.633,447.289 579.133,447.789 578,449.5C 576.249,452.252 575.416,455.252 575.5,458.5C 572.995,458.98 570.662,459.98 568.5,461.5C 567.713,460.758 567.047,459.925 566.5,459C 568.907,456.715 571.407,454.549 574,452.5C 575.009,450.975 575.509,449.308 575.5,447.5C 576.5,447.5 577.5,447.5 578.5,447.5C 578.351,446.448 578.517,445.448 579,444.5C 581.071,441.584 582.405,441.918 583,445.5C 584.356,444.62 585.856,444.286 587.5,444.5 Z"/></g>
<g><path style="opacity:1" fill="#f4a449" d="M 151.5,447.5 C 154.57,450.564 157.237,453.897 159.5,457.5C 160.122,459.335 161.456,460.502 163.5,461C 168.155,461.499 172.821,461.666 177.5,461.5C 177.425,467.529 177.759,473.529 178.5,479.5C 177.5,479.5 176.5,479.5 175.5,479.5C 175.5,478.167 175.5,476.833 175.5,475.5C 175.5,471.5 175.5,467.5 175.5,463.5C 171.167,463.5 166.833,463.5 162.5,463.5C 161.5,463.5 160.5,463.5 159.5,463.5C 158.127,463.343 156.793,463.51 155.5,464C 152.598,468.246 148.598,470.746 143.5,471.5C 143.5,472.833 143.5,474.167 143.5,475.5C 142.5,475.5 141.5,475.5 140.5,475.5C 140.5,476.833 140.5,478.167 140.5,479.5C 140.167,479.5 139.833,479.5 139.5,479.5C 138.833,479.5 138.167,479.5 137.5,479.5C 136.508,479.672 135.842,479.338 135.5,478.5C 135.759,475.52 134.426,473.687 131.5,473C 128.819,470.483 126.486,467.649 124.5,464.5C 122.955,463.548 121.288,463.215 119.5,463.5C 118.026,462.564 117.026,461.23 116.5,459.5C 116.965,456.527 118.632,455.36 121.5,456C 126.664,461.503 132.164,466.67 138,471.5C 139.749,471.252 140.582,470.252 140.5,468.5C 144.987,465.51 148.987,462.01 152.5,458C 149.674,453.503 147.008,449.003 144.5,444.5C 144.167,443.167 143.833,441.833 143.5,440.5C 143.343,439.127 143.51,437.793 144,436.5C 146.43,440.392 148.93,444.058 151.5,447.5 Z"/></g>
<g><path style="opacity:1" fill="#d1965f" d="M 162.5,463.5 C 166.833,463.5 171.167,463.5 175.5,463.5C 175.5,467.5 175.5,471.5 175.5,475.5C 174.069,474.22 173.402,472.553 173.5,470.5C 173.5,468.833 173.5,467.167 173.5,465.5C 171.167,465.5 168.833,465.5 166.5,465.5C 164.847,465.34 163.514,464.674 162.5,463.5 Z"/></g>
<g><path style="opacity:1" fill="#e4a362" d="M 159.5,463.5 C 153.192,468.804 146.858,474.137 140.5,479.5C 140.5,478.167 140.5,476.833 140.5,475.5C 141.5,475.5 142.5,475.5 143.5,475.5C 143.5,474.167 143.5,472.833 143.5,471.5C 148.598,470.746 152.598,468.246 155.5,464C 156.793,463.51 158.127,463.343 159.5,463.5 Z"/></g>
<g><path style="opacity:1" fill="#f3ca89" d="M 280.5,466.5 C 288.423,467.109 296.09,468.443 303.5,470.5C 295.459,470.543 287.792,469.21 280.5,466.5 Z"/></g>
<g><path style="opacity:1" fill="#fbeed2" d="M 563.5,467.5 C 560.316,472.53 556.649,477.196 552.5,481.5C 554.846,476.826 557.179,472.16 559.5,467.5C 558.022,467.238 556.689,467.571 555.5,468.5C 554.192,471.464 552.192,473.797 549.5,475.5C 551.42,472.661 553.087,469.661 554.5,466.5C 557.591,463.756 561.258,462.923 565.5,464C 564.177,464.816 563.511,465.983 563.5,467.5 Z"/></g>
<g><path style="opacity:1" fill="#f8a345" d="M 75.5,467.5 C 75.5,469.167 75.5,470.833 75.5,472.5C 74.1667,472.5 72.8333,472.5 71.5,472.5C 71.5,471.833 71.1667,471.5 70.5,471.5C 70.5,470.833 70.5,470.167 70.5,469.5C 69.05,466.721 68.05,463.721 67.5,460.5C 67.8333,459.833 68.1667,459.167 68.5,458.5C 71.7388,460.149 73.2388,462.816 73,466.5C 73.6708,467.252 74.5041,467.586 75.5,467.5 Z"/></g>
<g><path style="opacity:1" fill="#3b0207" d="M 166.5,465.5 C 168.833,465.5 171.167,465.5 173.5,465.5C 173.5,467.167 173.5,468.833 173.5,470.5C 172.504,470.586 171.671,470.252 171,469.5C 169.506,472.663 168.006,475.83 166.5,479C 164.19,479.497 161.857,479.663 159.5,479.5C 159.042,476.606 159.709,474.106 161.5,472C 161.167,471.667 160.833,471.333 160.5,471C 161.833,470.667 163.167,470.333 164.5,470C 164.167,469.667 163.833,469.333 163.5,469C 165.056,468.28 166.056,467.113 166.5,465.5 Z"/></g>
<g><path style="opacity:1" fill="#770101" d="M 236.5,483.5 C 239.696,484.929 242.696,486.595 245.5,488.5C 244.209,489.542 244.209,490.708 245.5,492C 247.421,492.36 249.088,493.194 250.5,494.5C 252.743,495.474 255.076,495.808 257.5,495.5C 257.523,497.6 256.856,499.433 255.5,501C 256.833,504 258.167,507 259.5,510C 259.167,510.5 258.833,511 258.5,511.5C 252.541,514.077 246.541,514.077 240.5,511.5C 240.869,504.536 237.869,502.203 231.5,504.5C 223.856,500.484 215.856,497.317 207.5,495C 207.216,493.044 207.216,490.877 207.5,488.5C 205.712,488.785 204.045,488.452 202.5,487.5C 200.428,484.624 198.095,481.958 195.5,479.5C 194.5,480.833 193.5,480.833 192.5,479.5C 191.516,476.572 191.183,473.572 191.5,470.5C 194.909,470.249 198.242,470.583 201.5,471.5C 201.165,470.336 201.165,469.003 201.5,467.5C 207.707,472.353 214.54,476.02 222,478.5C 224.74,481.712 228.24,483.212 232.5,483C 230.369,483.543 228.369,484.376 226.5,485.5C 226.833,485.833 227.167,486.167 227.5,486.5C 231.157,485.527 234.823,485.361 238.5,486C 237.244,485.583 236.577,484.75 236.5,483.5 Z"/></g>
<g><path style="opacity:1" fill="#faa341" d="M 570.5,467.5 C 568.833,470.167 567.167,472.833 565.5,475.5C 564.504,475.586 563.671,475.252 563,474.5C 562.666,472.153 562.833,469.819 563.5,467.5C 565.149,466.351 566.649,465.018 568,463.5C 570.02,464.032 570.853,465.365 570.5,467.5 Z"/></g>
<g><path style="opacity:1" fill="#3c0203" d="M 122.5,467.5 C 123.872,468.512 125.205,469.512 126.5,470.5C 125.312,471.684 124.145,471.684 123,470.5C 122.311,474.292 120.144,476.292 116.5,476.5C 116.583,480.335 115.083,483.335 112,485.5C 111.517,484.552 111.351,483.552 111.5,482.5C 108.446,482.354 106.446,483.687 105.5,486.5C 104.026,485.564 103.026,484.23 102.5,482.5C 103.404,481.791 103.737,480.791 103.5,479.5C 106.428,477.604 109.428,475.604 112.5,473.5C 114.356,469.234 117.689,467.234 122.5,467.5 Z"/></g>
<g><path style="opacity:1" fill="#f3cb9a" d="M 342.5,469.5 C 342.082,470.222 341.416,470.722 340.5,471C 328.171,471.5 315.838,471.667 303.5,471.5C 303.5,471.167 303.5,470.833 303.5,470.5C 316.53,470.756 329.53,470.423 342.5,469.5 Z"/></g>
<g><path style="opacity:1" fill="#fcecd1" d="M 607.5,461.5 C 606.928,464.085 606.761,466.751 607,469.5C 606.29,468.027 605.124,467.36 603.5,467.5C 603.286,469.144 603.62,470.644 604.5,472C 603.207,472.49 601.873,472.657 600.5,472.5C 600.674,474.861 601.007,477.194 601.5,479.5C 600.167,479.5 598.833,479.5 597.5,479.5C 597.624,487.099 594.29,492.432 587.5,495.5C 588.841,491.39 591.007,487.723 594,484.5C 597.372,476.037 601.872,468.37 607.5,461.5 Z"/></g>
<g><path style="opacity:1" fill="#db9f61" d="M 119.5,463.5 C 121.288,463.215 122.955,463.548 124.5,464.5C 126.486,467.649 128.819,470.483 131.5,473C 134.426,473.687 135.759,475.52 135.5,478.5C 134.5,477.833 133.5,477.167 132.5,476.5C 130.833,474.167 128.833,472.167 126.5,470.5C 125.205,469.512 123.872,468.512 122.5,467.5C 121.5,466.167 120.5,464.833 119.5,463.5 Z"/></g>
<g><path style="opacity:1" fill="#eeab5c" d="M 596.5,441.5 C 598.199,441.34 599.866,441.506 601.5,442C 601.043,442.414 600.709,442.914 600.5,443.5C 602.005,446.131 602.671,445.797 602.5,442.5C 603.5,442.5 604.5,442.5 605.5,442.5C 606.485,445.456 607.485,448.456 608.5,451.5C 609.521,450.099 610.521,448.765 611.5,447.5C 611.445,450.614 610.112,452.948 607.5,454.5C 606.721,452.073 605.554,452.073 604,454.5C 601.65,457.878 599.483,461.378 597.5,465C 597.645,465.772 597.978,466.439 598.5,467C 596.901,468.066 595.901,469.566 595.5,471.5C 594.311,472.429 592.978,472.762 591.5,472.5C 595.618,465.049 599.285,457.382 602.5,449.5C 600.894,446.557 598.894,443.891 596.5,441.5 Z"/></g>
<g><path style="opacity:1" fill="#eab67b" d="M 75.5,467.5 C 77.3769,468.659 77.8769,470.326 77,472.5C 75.0565,473.807 73.2232,473.807 71.5,472.5C 72.8333,472.5 74.1667,472.5 75.5,472.5C 75.5,470.833 75.5,469.167 75.5,467.5 Z"/></g>
<g><path style="opacity:1" fill="#2e0301" d="M 126.5,470.5 C 128.833,472.167 130.833,474.167 132.5,476.5C 131.24,480.403 129.573,484.07 127.5,487.5C 121.93,486.592 117.263,488.092 113.5,492C 114.711,492.893 114.711,493.726 113.5,494.5C 112.583,493.873 111.583,493.539 110.5,493.5C 108.588,491.343 106.921,489.009 105.5,486.5C 106.446,483.687 108.446,482.354 111.5,482.5C 111.351,483.552 111.517,484.552 112,485.5C 115.083,483.335 116.583,480.335 116.5,476.5C 120.144,476.292 122.311,474.292 123,470.5C 124.145,471.684 125.312,471.684 126.5,470.5 Z"/></g>
<g><path style="opacity:1" fill="#eea44f" d="M 554.5,466.5 C 553.087,469.661 551.42,472.661 549.5,475.5C 547.538,478.474 545.538,481.474 543.5,484.5C 541.5,485.833 539.833,487.5 538.5,489.5C 537.325,489.719 536.325,489.386 535.5,488.5C 536.098,487.205 536.598,485.872 537,484.5C 539.517,482.659 541.517,480.326 543,477.5C 543.483,476.552 543.649,475.552 543.5,474.5C 545.629,471.905 546.962,468.905 547.5,465.5C 544.813,465.664 542.146,465.497 539.5,465C 538.584,464.722 537.918,464.222 537.5,463.5C 538.274,462.853 539.274,462.52 540.5,462.5C 545.552,462.777 550.218,464.111 554.5,466.5 Z"/></g>
<g><path style="opacity:1" fill="#2d0302" d="M 512.5,470.5 C 514.888,471.219 516.388,472.885 517,475.5C 521.487,478.413 525.154,482.08 528,486.5C 530.24,483.707 531.74,484.04 532.5,487.5C 530.807,490.184 529.14,492.851 527.5,495.5C 527.167,495.5 526.833,495.5 526.5,495.5C 525.5,495.5 524.5,495.5 523.5,495.5C 523.461,492.679 522.795,490.012 521.5,487.5C 520.808,488.025 520.308,488.692 520,489.5C 515.083,485.622 510.25,481.622 505.5,477.5C 506.5,476.167 507.5,474.833 508.5,473.5C 509.833,472.5 511.167,471.5 512.5,470.5 Z"/></g>
<g><path style="opacity:1" fill="#feedd4" d="M 35.5,467.5 C 40.3799,474.348 44.3799,481.682 47.5,489.5C 43.4981,487.515 41.4981,484.182 41.5,479.5C 40.0222,479.762 38.6888,479.429 37.5,478.5C 39.4245,474.427 38.4245,472.594 34.5,473C 35.4061,471.301 35.7394,469.467 35.5,467.5 Z"/></g>
<g><path style="opacity:1" fill="#faf1d9" d="M 83.5,465.5 C 84.6005,466.605 85.2671,467.938 85.5,469.5C 87.7107,471.561 89.3773,474.061 90.5,477C 89.9444,478.011 89.2778,478.844 88.5,479.5C 85.4816,479.335 82.4816,479.502 79.5,480C 78.0577,480.377 77.0577,481.21 76.5,482.5C 73.9407,482.802 71.6074,482.468 69.5,481.5C 72.9079,482.172 75.5745,481.172 77.5,478.5C 75.8867,476.912 73.8867,475.912 71.5,475.5C 70.5713,474.311 70.238,472.978 70.5,471.5C 71.1667,471.5 71.5,471.833 71.5,472.5C 73.2232,473.807 75.0565,473.807 77,472.5C 77.8769,470.326 77.3769,468.659 75.5,467.5C 75.4606,466.417 75.1272,465.417 74.5,464.5C 77.6264,463.389 80.6264,463.723 83.5,465.5 Z"/></g>
<g><path style="opacity:1" fill="#f7fbfb" d="M 85.5,469.5 C 87.5044,477.018 84.8378,479.185 77.5,476C 78.5634,474.812 79.8967,474.312 81.5,474.5C 80.36,471.975 79.6933,469.308 79.5,466.5C 81.9468,466.615 83.9468,467.615 85.5,469.5 Z"/></g>
<g><path style="opacity:1" fill="#e5ad6f" d="M 288.5,473.5 C 292.337,473.931 296.003,474.598 299.5,475.5C 296.642,475.028 294.642,476.028 293.5,478.5C 293.631,477.761 293.464,477.094 293,476.5C 291.6,478.737 289.767,480.404 287.5,481.5C 287.962,479.243 288.962,477.243 290.5,475.5C 289.757,474.818 289.091,474.151 288.5,473.5 Z"/></g>
<g><path style="opacity:1" fill="#f8f3e1" d="M 476.5,335.5 C 476.5,337.833 476.5,340.167 476.5,342.5C 478.2,342.626 479.7,343.293 481,344.5C 482.03,344.164 482.53,343.497 482.5,342.5C 485.973,344.652 489.64,346.319 493.5,347.5C 491.752,359.826 488.752,371.826 484.5,383.5C 482.896,384.287 482.229,385.62 482.5,387.5C 478.45,385.624 475.45,382.624 473.5,378.5C 476.644,371.429 478.644,364.095 479.5,356.5C 477.876,356.36 476.71,357.027 476,358.5C 474.364,365.555 472.198,372.389 469.5,379C 471.278,384.513 474.612,388.679 479.5,391.5C 478.926,395.325 477.759,398.991 476,402.5C 471.135,408.836 466.968,415.503 463.5,422.5C 461.612,423.94 459.945,425.606 458.5,427.5C 457.522,427.023 456.689,426.357 456,425.5C 455.487,422.506 454.32,419.839 452.5,417.5C 455.751,411.996 459.251,406.662 463,401.5C 464.128,399.655 464.628,397.655 464.5,395.5C 463.178,395.33 462.011,395.663 461,396.5C 457.685,401.822 454.351,407.155 451,412.5C 450.517,413.448 450.351,414.448 450.5,415.5C 449.5,415.5 448.5,415.5 447.5,415.5C 449.875,421.071 452.541,426.571 455.5,432C 451.353,436.982 447.019,441.815 442.5,446.5C 438.808,449.862 435.141,453.195 431.5,456.5C 430.027,457.74 428.36,458.74 426.5,459.5C 424.261,456.559 422.928,453.226 422.5,449.5C 427.819,444.069 433.319,438.736 439,433.5C 439.783,431.681 439.283,430.348 437.5,429.5C 431.509,435.323 425.343,440.989 419,446.5C 419.097,451.737 419.93,456.903 421.5,462C 419.928,464.732 417.928,466.899 415.5,468.5C 408.186,472.132 400.853,475.799 393.5,479.5C 391.281,481.606 388.615,482.606 385.5,482.5C 385.334,478.486 385.501,474.486 386,470.5C 392.49,467.258 398.99,464.091 405.5,461C 406.38,459.644 406.714,458.144 406.5,456.5C 399.263,459.452 392.263,462.952 385.5,467C 384.207,467.49 382.873,467.657 381.5,467.5C 381.5,472.167 381.5,476.833 381.5,481.5C 380.417,481.461 379.417,481.127 378.5,480.5C 374.113,483.93 374.78,485.264 380.5,484.5C 379.4,485.558 378.066,486.392 376.5,487C 369.577,488.37 362.911,490.203 356.5,492.5C 351.327,492.995 346.327,493.995 341.5,495.5C 341.304,490.967 342.304,486.801 344.5,483C 352.174,481.161 359.841,479.327 367.5,477.5C 367.5,476.167 367.5,474.833 367.5,473.5C 358.389,476.473 349.056,478.473 339.5,479.5C 339.044,484.865 338.377,490.199 337.5,495.5C 327.167,495.5 316.833,495.5 306.5,495.5C 305.5,495.5 304.5,495.5 303.5,495.5C 303.5,494.5 303.5,493.5 303.5,492.5C 313.348,492.827 323.014,492.494 332.5,491.5C 333.248,488.095 334.248,484.762 335.5,481.5C 334.599,477.759 335.932,475.759 339.5,475.5C 350.709,473.593 361.709,470.926 372.5,467.5C 372.824,471.555 372.491,475.555 371.5,479.5C 364.086,482.552 356.42,484.719 348.5,486C 347.663,487.011 347.33,488.178 347.5,489.5C 357.126,488.075 366.459,485.575 375.5,482C 376.146,476.552 376.812,471.052 377.5,465.5C 386.141,462.182 394.141,457.849 401.5,452.5C 403.674,452.25 405.341,451.25 406.5,449.5C 409.779,450.031 411.113,452.031 410.5,455.5C 410.425,458.206 410.092,460.873 409.5,463.5C 405.698,464.32 402.364,465.986 399.5,468.5C 396.634,469.759 393.634,470.759 390.5,471.5C 390.5,473.167 390.5,474.833 390.5,476.5C 393.645,475.426 396.645,474.093 399.5,472.5C 405.104,469.693 410.437,466.36 415.5,462.5C 416.833,460.833 416.833,459.167 415.5,457.5C 415.055,453.909 414.055,450.576 412.5,447.5C 412.771,445.57 413.771,444.236 415.5,443.5C 420.065,439.723 424.398,435.723 428.5,431.5C 431.709,428.529 435.042,425.529 438.5,422.5C 441.385,425.224 443.718,428.391 445.5,432C 439.936,437.901 434.102,443.401 428,448.5C 427.219,449.944 427.386,451.277 428.5,452.5C 436.638,446.528 443.972,439.695 450.5,432C 448.64,428.451 446.64,424.951 444.5,421.5C 443.844,419.547 443.511,417.547 443.5,415.5C 445.063,414.055 446.396,412.389 447.5,410.5C 452.289,403.146 456.956,395.646 461.5,388C 463.388,388.804 465.388,389.804 467.5,391C 468.43,392.194 469.097,393.527 469.5,395C 466.418,402.237 462.585,409.07 458,415.5C 457.517,416.448 457.351,417.448 457.5,418.5C 459.144,418.714 460.644,418.38 462,417.5C 466.456,409.943 470.622,402.276 474.5,394.5C 474.333,393.833 474.167,393.167 474,392.5C 470.317,389.813 466.983,386.813 464,383.5C 463.955,380.78 464.455,378.114 465.5,375.5C 466.345,374.329 467.011,372.995 467.5,371.5C 468.15,371.196 468.817,370.863 469.5,370.5C 470.539,366.895 471.205,363.228 471.5,359.5C 471.257,355.226 472.591,351.559 475.5,348.5C 477.745,350.623 480.412,351.623 483.5,351.5C 483.665,354.85 483.498,358.183 483,361.5C 479.907,367.849 478.907,374.515 480,381.5C 483.712,372.06 486.879,362.394 489.5,352.5C 485.329,349.153 480.829,346.153 476,343.5C 475.199,340.633 475.366,337.966 476.5,335.5 Z"/></g>
<g><path style="opacity:1" fill="#edad69" d="M 399.5,468.5 C 398.722,469.156 398.056,469.989 397.5,471C 397.836,472.03 398.503,472.53 399.5,472.5C 396.645,474.093 393.645,475.426 390.5,476.5C 390.5,474.833 390.5,473.167 390.5,471.5C 393.634,470.759 396.634,469.759 399.5,468.5 Z"/></g>
<g><path style="opacity:1" fill="#f6a34d" d="M 415.5,462.5 C 410.437,466.36 405.104,469.693 399.5,472.5C 398.503,472.53 397.836,472.03 397.5,471C 398.056,469.989 398.722,469.156 399.5,468.5C 402.364,465.986 405.698,464.32 409.5,463.5C 411.137,460.165 413.137,459.832 415.5,462.5 Z"/></g>
<g><path style="opacity:1" fill="#e3b680" d="M 410.5,455.5 C 411.779,456.968 413.446,457.635 415.5,457.5C 416.833,459.167 416.833,460.833 415.5,462.5C 413.137,459.832 411.137,460.165 409.5,463.5C 410.092,460.873 410.425,458.206 410.5,455.5 Z"/></g>
<g><path style="opacity:1" fill="#f5a350" d="M 443.5,454.5 C 433.26,464.725 421.594,473.059 408.5,479.5C 403.272,481.315 398.105,483.648 393,486.5C 392.982,484.203 393.149,481.869 393.5,479.5C 400.853,475.799 408.186,472.132 415.5,468.5C 419.827,469.197 422.494,467.53 423.5,463.5C 424.833,463.5 426.167,463.5 427.5,463.5C 427.5,462.5 427.5,461.5 427.5,460.5C 428.833,460.5 430.167,460.5 431.5,460.5C 431.5,459.167 431.5,457.833 431.5,456.5C 435.141,453.195 438.808,449.862 442.5,446.5C 443.496,446.586 444.329,446.252 445,445.5C 445.49,446.793 445.657,448.127 445.5,449.5C 444.325,449.281 443.325,449.614 442.5,450.5C 443.246,451.736 443.579,453.07 443.5,454.5 Z"/></g>
<g><path style="opacity:1" fill="#f3a54e" d="M 54.5,456.5 C 55.4304,460.916 56.7637,465.249 58.5,469.5C 59.1818,468.757 59.8485,468.091 60.5,467.5C 62.4046,470.304 64.0713,473.304 65.5,476.5C 68.3003,484.27 66.6336,485.27 60.5,479.5C 55.7485,472.332 51.2485,464.999 47,457.5C 44.5506,452.998 42.7173,448.331 41.5,443.5C 44.1667,443.5 46.8333,443.5 49.5,443.5C 50.6544,448.003 52.321,452.336 54.5,456.5 Z"/></g>
<g><path style="opacity:1" fill="#f0a562" d="M 253.5,473.5 C 253.5,474.833 254.167,475.5 255.5,475.5C 254.611,477.736 253.278,479.736 251.5,481.5C 253.565,482.857 255.565,484.19 257.5,485.5C 255.473,485.662 253.473,485.495 251.5,485C 249.929,482.591 247.929,480.758 245.5,479.5C 248.431,477.909 251.098,475.909 253.5,473.5 Z"/></g>
<g><path style="opacity:1" fill="#f3a34e" d="M 170.5,415.5 C 170.833,415.5 171.167,415.5 171.5,415.5C 170.891,418.878 172.224,420.878 175.5,421.5C 175.5,423.5 175.5,425.5 175.5,427.5C 176.5,427.5 177.5,427.5 178.5,427.5C 178.5,428.833 178.5,430.167 178.5,431.5C 179.833,431.5 181.167,431.5 182.5,431.5C 187.139,436.474 191.805,441.474 196.5,446.5C 196.215,448.288 196.548,449.955 197.5,451.5C 199.413,452.373 201.247,453.373 203,454.5C 202.167,457.828 203.667,459.161 207.5,458.5C 207.5,459.5 207.5,460.5 207.5,461.5C 209.5,461.5 211.5,461.5 213.5,461.5C 223.363,468.8 234.029,474.8 245.5,479.5C 247.929,480.758 249.929,482.591 251.5,485C 253.473,485.495 255.473,485.662 257.5,485.5C 267.288,488.973 277.288,491.64 287.5,493.5C 288.772,493.43 289.938,493.097 291,492.5C 294.238,488.691 296.404,484.358 297.5,479.5C 299.735,479.205 301.735,479.539 303.5,480.5C 301.738,481.262 300.738,482.596 300.5,484.5C 297.504,487.497 295.837,491.164 295.5,495.5C 298.167,495.5 300.833,495.5 303.5,495.5C 304.5,495.5 305.5,495.5 306.5,495.5C 313.345,496.167 320.345,496.833 327.5,497.5C 328.711,498.72 328.711,499.887 327.5,501C 314.169,501.167 300.835,501 287.5,500.5C 282.167,499.5 276.833,498.5 271.5,497.5C 262.953,494.538 254.286,491.538 245.5,488.5C 242.696,486.595 239.696,484.929 236.5,483.5C 225.661,477.977 215.661,471.31 206.5,463.5C 201.617,458.691 196.617,453.858 191.5,449C 192.357,448.311 193.023,447.478 193.5,446.5C 191.533,445.316 189.866,445.649 188.5,447.5C 182.62,443.3 178.287,437.967 175.5,431.5C 175.649,430.448 175.483,429.448 175,428.5C 172.506,425.409 169.839,422.409 167,419.5C 166.294,417.029 166.627,414.695 168,412.5C 168.852,413.571 169.685,414.571 170.5,415.5 Z"/></g>
<g><path style="opacity:1" fill="#3c0203" d="M 536.5,482.5 C 535.516,484.48 534.183,486.147 532.5,487.5C 531.74,484.04 530.24,483.707 528,486.5C 525.154,482.08 521.487,478.413 517,475.5C 516.388,472.885 514.888,471.219 512.5,470.5C 513.29,469.599 514.29,468.932 515.5,468.5C 517.39,469.18 519.39,469.347 521.5,469C 522.87,470.441 523.87,472.108 524.5,474C 525.448,474.483 526.448,474.649 527.5,474.5C 527.337,472.143 527.503,469.81 528,467.5C 529.5,469 531,470.5 532.5,472C 530.887,476.609 532.22,480.109 536.5,482.5 Z"/></g>
<g><path style="opacity:1" fill="#b9847c" d="M 137.5,479.5 C 138.167,479.5 138.833,479.5 139.5,479.5C 139.5,480.167 139.5,480.833 139.5,481.5C 138.167,481.5 137.5,480.833 137.5,479.5 Z"/></g>
<g><path style="opacity:1" fill="#e7ae70" d="M 303.5,480.5 C 310.5,480.5 317.5,480.5 324.5,480.5C 324.5,480.833 324.5,481.167 324.5,481.5C 317.313,481.175 310.313,481.509 303.5,482.5C 302.5,482.833 301.833,483.5 301.5,484.5C 301.167,484.5 300.833,484.5 300.5,484.5C 300.738,482.596 301.738,481.262 303.5,480.5 Z"/></g>
<g><path style="opacity:1" fill="#eca45a" d="M 331.5,476.5 C 332.478,476.811 333.145,477.478 333.5,478.5C 332.128,480.62 332.795,481.62 335.5,481.5C 334.248,484.762 333.248,488.095 332.5,491.5C 329.833,491.5 327.167,491.5 324.5,491.5C 324.611,490.883 324.944,490.383 325.5,490C 324.584,489.722 323.918,489.222 323.5,488.5C 325.467,488.739 327.301,488.406 329,487.5C 330.562,483.986 331.395,480.319 331.5,476.5 Z"/></g>
<g><path style="opacity:1" fill="#eea255" d="M 356.5,492.5 C 355.365,494.213 353.698,494.88 351.5,494.5C 351.5,495.5 351.5,496.5 351.5,497.5C 346.167,497.5 340.833,497.5 335.5,497.5C 335.5,498.5 335.5,499.5 335.5,500.5C 340.167,500.5 344.833,500.5 349.5,500.5C 328.833,504.5 308.167,504.5 287.5,500.5C 300.835,501 314.169,501.167 327.5,501C 328.711,499.887 328.711,498.72 327.5,497.5C 320.345,496.833 313.345,496.167 306.5,495.5C 316.833,495.5 327.167,495.5 337.5,495.5C 338.377,490.199 339.044,484.865 339.5,479.5C 349.056,478.473 358.389,476.473 367.5,473.5C 367.5,474.833 367.5,476.167 367.5,477.5C 359.841,479.327 352.174,481.161 344.5,483C 342.304,486.801 341.304,490.967 341.5,495.5C 346.327,493.995 351.327,492.995 356.5,492.5 Z"/></g>
<g><path style="opacity:1" fill="#f1a552" d="M 399.5,449.5 C 401.048,449.821 401.715,450.821 401.5,452.5C 394.141,457.849 386.141,462.182 377.5,465.5C 376.812,471.052 376.146,476.552 375.5,482C 366.459,485.575 357.126,488.075 347.5,489.5C 347.33,488.178 347.663,487.011 348.5,486C 356.42,484.719 364.086,482.552 371.5,479.5C 372.491,475.555 372.824,471.555 372.5,467.5C 361.709,470.926 350.709,473.593 339.5,475.5C 339.5,474.5 339.5,473.5 339.5,472.5C 327.322,472.828 315.322,472.495 303.5,471.5C 315.838,471.667 328.171,471.5 340.5,471C 341.416,470.722 342.082,470.222 342.5,469.5C 350.823,467.521 359.157,465.521 367.5,463.5C 373.764,461.367 379.764,458.7 385.5,455.5C 389.256,454.455 392.589,452.622 395.5,450C 396.793,449.51 398.127,449.343 399.5,449.5 Z"/></g>
<g><path style="opacity:1" fill="#bd887a" d="M 499.5,479.5 C 500.167,479.5 500.833,479.5 501.5,479.5C 501.5,480.833 500.833,481.5 499.5,481.5C 499.5,480.833 499.5,480.167 499.5,479.5 Z"/></g>
<g><path style="opacity:1" fill="#f7a64d" d="M 607.5,454.5 C 607.5,455.833 607.5,457.167 607.5,458.5C 607.5,459.5 607.5,460.5 607.5,461.5C 601.872,468.37 597.372,476.037 594,484.5C 591.007,487.723 588.841,491.39 587.5,495.5C 586.833,495.5 586.167,495.5 585.5,495.5C 583.974,496.105 582.974,497.271 582.5,499C 581.552,499.483 580.552,499.649 579.5,499.5C 579.372,497.345 579.872,495.345 581,493.5C 586.532,487.482 590.032,480.482 591.5,472.5C 592.978,472.762 594.311,472.429 595.5,471.5C 595.901,469.566 596.901,468.066 598.5,467C 597.978,466.439 597.645,465.772 597.5,465C 599.483,461.378 601.65,457.878 604,454.5C 605.554,452.073 606.721,452.073 607.5,454.5 Z"/></g>
<g><path style="opacity:1" fill="#f7a256" d="M 324.5,481.5 C 325.625,482.348 325.625,483.348 324.5,484.5C 317.087,485.128 310.087,484.461 303.5,482.5C 310.313,481.509 317.313,481.175 324.5,481.5 Z"/></g>
<g><path style="opacity:1" fill="#fdf0f4" d="M 381.5,481.5 C 381.5,482.5 381.5,483.5 381.5,484.5C 381.167,484.5 380.833,484.5 380.5,484.5C 374.78,485.264 374.113,483.93 378.5,480.5C 379.417,481.127 380.417,481.461 381.5,481.5 Z"/></g>
<g><path style="opacity:1" fill="#f6faf3" d="M 552.5,481.5 C 551.678,485.148 549.844,488.148 547,490.5C 546.282,493.407 546.782,496.074 548.5,498.5C 551.088,503.751 553.588,509.085 556,514.5C 556.816,515.823 557.983,516.489 559.5,516.5C 559.771,518.38 559.104,519.713 557.5,520.5C 555.086,522.224 552.42,523.558 549.5,524.5C 549.151,521.537 550.151,519.204 552.5,517.5C 552.123,514.714 550.789,512.714 548.5,511.5C 544.807,506.091 541.141,500.758 537.5,495.5C 538.718,491.396 540.718,487.729 543.5,484.5C 545.538,481.474 547.538,478.474 549.5,475.5C 552.192,473.797 554.192,471.464 555.5,468.5C 556.689,467.571 558.022,467.238 559.5,467.5C 557.179,472.16 554.846,476.826 552.5,481.5 Z"/></g>
<g><path style="opacity:1" fill="#eaa95d" d="M 65.5,476.5 C 67.0627,477.945 68.396,479.611 69.5,481.5C 71.6074,482.468 73.9407,482.802 76.5,482.5C 76.3893,483.117 76.056,483.617 75.5,484C 72.5184,484.498 69.5184,484.665 66.5,484.5C 66.4877,488.446 68.4877,490.113 72.5,489.5C 70.7354,490.461 68.7354,490.795 66.5,490.5C 64.2263,486.95 62.2263,483.284 60.5,479.5C 66.6336,485.27 68.3003,484.27 65.5,476.5 Z"/></g>
<g><path style="opacity:1" fill="#f7a44a" d="M 96.5,484.5 C 90.6354,485.465 84.9688,486.798 79.5,488.5C 77.139,488.674 74.8056,489.007 72.5,489.5C 68.4877,490.113 66.4877,488.446 66.5,484.5C 69.5184,484.665 72.5184,484.498 75.5,484C 76.056,483.617 76.3893,483.117 76.5,482.5C 77.0577,481.21 78.0577,480.377 79.5,480C 82.4816,479.502 85.4816,479.335 88.5,479.5C 89.8333,479.5 91.1667,479.5 92.5,479.5C 92.2148,477.712 92.5481,476.045 93.5,474.5C 95.2174,475.668 95.8841,477.335 95.5,479.5C 96.5,479.5 97.5,479.5 98.5,479.5C 98.8799,481.698 98.2132,483.365 96.5,484.5 Z"/></g>
<g><path style="opacity:1" fill="#f3fbf6" d="M 303.5,482.5 C 310.087,484.461 317.087,485.128 324.5,484.5C 325.5,484.5 326.5,484.5 327.5,484.5C 327.5,485.5 327.5,486.5 327.5,487.5C 318.833,487.5 310.167,487.5 301.5,487.5C 301.5,486.5 301.5,485.5 301.5,484.5C 301.833,483.5 302.5,482.833 303.5,482.5 Z"/></g>
<g><path style="opacity:1" fill="#eea461" d="M 393.5,479.5 C 393.149,481.869 392.982,484.203 393,486.5C 398.105,483.648 403.272,481.315 408.5,479.5C 397.961,486.099 386.627,491.099 374.5,494.5C 375.574,493.115 376.907,491.949 378.5,491C 378.167,490.667 377.833,490.333 377.5,490C 380.769,488.937 384.102,488.104 387.5,487.5C 388.583,486.635 388.749,485.635 388,484.5C 387.005,483.934 386.172,483.267 385.5,482.5C 388.615,482.606 391.281,481.606 393.5,479.5 Z"/></g>
<g><path style="opacity:1" fill="#3b0303" d="M 505.5,477.5 C 510.25,481.622 515.083,485.622 520,489.5C 520.308,488.692 520.808,488.025 521.5,487.5C 522.795,490.012 523.461,492.679 523.5,495.5C 524.5,495.5 525.5,495.5 526.5,495.5C 523.29,499.921 519.623,503.921 515.5,507.5C 515.389,506.883 515.056,506.383 514.5,506C 516.849,504.118 518.849,501.952 520.5,499.5C 520.167,497.167 519.167,496.833 517.5,498.5C 516.278,496.022 514.278,495.022 511.5,495.5C 511.762,494.022 511.429,492.689 510.5,491.5C 507.5,489.667 504.5,487.833 501.5,486C 499.963,484.89 499.297,483.39 499.5,481.5C 500.833,481.5 501.5,480.833 501.5,479.5C 503.062,479.267 504.395,478.6 505.5,477.5 Z"/></g>
<g><path style="opacity:1" fill="#f0a155" d="M 159.5,457.5 C 166.531,460.123 173.531,460.123 180.5,457.5C 181.043,457.56 181.376,457.893 181.5,458.5C 176.131,469.902 178.798,479.068 189.5,486C 198.905,489.701 206.905,495.367 213.5,503C 223.866,505.184 233.199,509.517 241.5,516C 253.021,520.407 262.355,517.574 269.5,507.5C 269.242,511.367 269.908,515.034 271.5,518.5C 269.744,519.552 269.077,521.219 269.5,523.5C 268.221,521.877 266.887,520.21 265.5,518.5C 257.296,524.02 248.63,524.854 239.5,521C 231.208,513.689 221.541,509.356 210.5,508C 208.7,506.188 207.033,504.355 205.5,502.5C 201.482,497.165 196.149,493.832 189.5,492.5C 186.804,490.393 183.971,488.393 181,486.5C 176.961,490.039 173.461,494.039 170.5,498.5C 172.256,489.545 170.59,488.545 165.5,495.5C 168.492,489.865 171.825,484.532 175.5,479.5C 176.5,479.5 177.5,479.5 178.5,479.5C 177.759,473.529 177.425,467.529 177.5,461.5C 172.821,461.666 168.155,461.499 163.5,461C 161.456,460.502 160.122,459.335 159.5,457.5 Z"/></g>
<g><path style="opacity:1" fill="#2d0204" d="M 475.5,463.5 C 476.873,463.343 478.207,463.51 479.5,464C 486.046,469.426 492.713,474.593 499.5,479.5C 499.5,480.167 499.5,480.833 499.5,481.5C 499.297,483.39 499.963,484.89 501.5,486C 504.5,487.833 507.5,489.667 510.5,491.5C 511.429,492.689 511.762,494.022 511.5,495.5C 514.278,495.022 516.278,496.022 517.5,498.5C 519.167,496.833 520.167,497.167 520.5,499.5C 518.849,501.952 516.849,504.118 514.5,506C 515.056,506.383 515.389,506.883 515.5,507.5C 514.5,509.167 513.167,510.5 511.5,511.5C 511.662,509.473 511.495,507.473 511,505.5C 507.866,502.925 504.533,500.592 501,498.5C 500.837,492.834 498.004,490.167 492.5,490.5C 492.401,485.901 490.068,483.401 485.5,483C 484.663,481.989 484.33,480.822 484.5,479.5C 482.833,479.5 481.167,479.5 479.5,479.5C 479.816,476.022 479.316,472.688 478,469.5C 474.85,471.161 473.35,470.161 473.5,466.5C 472.209,466.737 471.209,466.404 470.5,465.5C 472.698,465.88 474.365,465.213 475.5,463.5 Z"/></g>
<g><path style="opacity:1" fill="#3b0305" d="M 132.5,476.5 C 133.5,477.167 134.5,477.833 135.5,478.5C 135.842,479.338 136.508,479.672 137.5,479.5C 137.5,480.833 138.167,481.5 139.5,481.5C 139.577,484.012 138.577,486.012 136.5,487.5C 135.914,487.291 135.414,486.957 135,486.5C 133.409,489.6 130.909,491.267 127.5,491.5C 127.5,492.833 127.5,494.167 127.5,495.5C 125.076,495.192 122.743,495.526 120.5,496.5C 121.32,498.111 122.654,498.778 124.5,498.5C 124.5,500.167 124.5,501.833 124.5,503.5C 122.821,503.285 121.821,503.952 121.5,505.5C 117.843,501.541 114.176,497.541 110.5,493.5C 111.583,493.539 112.583,493.873 113.5,494.5C 114.711,493.726 114.711,492.893 113.5,492C 117.263,488.092 121.93,486.592 127.5,487.5C 129.573,484.07 131.24,480.403 132.5,476.5 Z"/></g>
<g><path style="opacity:1" fill="#f9f3e3" d="M 170.5,377.5 C 171.979,378.759 173.646,379.759 175.5,380.5C 176.031,383.237 176.864,385.904 178,388.5C 181.732,395.019 185.566,401.519 189.5,408C 189.355,408.772 189.022,409.439 188.5,410C 186.08,410.29 183.746,410.79 181.5,411.5C 180.5,411.5 179.5,411.5 178.5,411.5C 176.013,406.532 173.013,401.866 169.5,397.5C 169.085,393.599 167.085,391.266 163.5,390.5C 164.079,393.706 165.079,396.706 166.5,399.5C 168.812,404.11 171.645,408.443 175,412.5C 175.483,413.448 175.649,414.448 175.5,415.5C 177.347,416.573 179.347,416.573 181.5,415.5C 185.207,415.396 188.54,414.396 191.5,412.5C 193.43,412.771 194.764,413.771 195.5,415.5C 196.167,416.167 196.833,416.833 197.5,417.5C 203.353,425.18 209.686,432.347 216.5,439C 216.355,439.772 216.022,440.439 215.5,441C 212.24,441.422 209.574,442.922 207.5,445.5C 202.526,440.861 197.526,436.195 192.5,431.5C 191.742,427.821 189.742,426.821 186.5,428.5C 187.167,429.833 187.833,431.167 188.5,432.5C 194.819,438.318 200.986,444.318 207,450.5C 212.075,446.879 217.575,444.212 223.5,442.5C 223.5,442.833 223.5,443.167 223.5,443.5C 231.57,451.204 240.904,456.87 251.5,460.5C 251.737,461.791 251.404,462.791 250.5,463.5C 248.912,461.384 246.912,461.051 244.5,462.5C 243.509,464.323 242.176,465.823 240.5,467C 241.563,468.188 242.897,468.688 244.5,468.5C 243.054,469.613 241.387,469.78 239.5,469C 234.133,465.322 228.799,461.655 223.5,458C 222.207,457.51 220.873,457.343 219.5,457.5C 219.238,458.978 219.571,460.311 220.5,461.5C 226.797,465.473 233.13,469.14 239.5,472.5C 245.508,475.675 249.841,474.009 252.5,467.5C 254.229,466.764 255.229,465.43 255.5,463.5C 266.189,467.593 277.189,470.926 288.5,473.5C 289.091,474.151 289.757,474.818 290.5,475.5C 288.962,477.243 287.962,479.243 287.5,481.5C 287.5,481.833 287.5,482.167 287.5,482.5C 282.101,483.795 276.768,483.462 271.5,481.5C 268.186,480.127 264.686,479.127 261,478.5C 260.167,478.833 259.333,479.167 258.5,479.5C 261.524,482.511 265.191,484.178 269.5,484.5C 271.302,485.458 273.302,486.125 275.5,486.5C 279.334,488.166 283.334,488.666 287.5,488C 290.119,485.216 292.119,482.049 293.5,478.5C 294.642,476.028 296.642,475.028 299.5,475.5C 300.708,476.234 302.041,476.567 303.5,476.5C 311.984,477.493 320.651,477.826 329.5,477.5C 329.5,478.833 329.5,480.167 329.5,481.5C 327.784,481.371 326.117,481.038 324.5,480.5C 317.5,480.5 310.5,480.5 303.5,480.5C 301.735,479.539 299.735,479.205 297.5,479.5C 296.404,484.358 294.238,488.691 291,492.5C 289.938,493.097 288.772,493.43 287.5,493.5C 277.288,491.64 267.288,488.973 257.5,485.5C 255.565,484.19 253.565,482.857 251.5,481.5C 253.278,479.736 254.611,477.736 255.5,475.5C 257.993,473.416 260.66,473.083 263.5,474.5C 265.792,476.267 268.458,477.267 271.5,477.5C 275.101,478.463 278.767,479.13 282.5,479.5C 282.5,478.5 282.5,477.5 282.5,476.5C 280.784,476.371 279.117,476.038 277.5,475.5C 274.67,474.265 271.67,473.265 268.5,472.5C 265.168,471.5 261.834,470.5 258.5,469.5C 256.008,469.834 254.341,471.167 253.5,473.5C 251.098,475.909 248.431,477.909 245.5,479.5C 234.029,474.8 223.363,468.8 213.5,461.5C 213.047,460.542 212.381,459.708 211.5,459C 213.982,455.588 217.315,453.422 221.5,452.5C 227.004,455.751 232.338,459.251 237.5,463C 239.259,463.798 240.926,463.631 242.5,462.5C 237.26,458.579 231.926,454.746 226.5,451C 225.552,450.517 224.552,450.351 223.5,450.5C 223.5,449.5 223.5,448.5 223.5,447.5C 222.127,447.343 220.793,447.51 219.5,448C 215.765,451.242 211.599,453.742 207,455.5C 203.333,452.664 199.833,449.664 196.5,446.5C 191.805,441.474 187.139,436.474 182.5,431.5C 181.26,430.027 180.26,428.36 179.5,426.5C 182.735,422.746 186.735,421.746 191.5,423.5C 195.612,429.115 200.278,434.281 205.5,439C 206.793,439.49 208.127,439.657 209.5,439.5C 204.493,432.307 198.826,425.474 192.5,419C 189.961,418.204 187.628,418.371 185.5,419.5C 181.854,420.283 178.188,420.45 174.5,420C 173.947,418.122 172.947,416.622 171.5,415.5C 171.167,415.5 170.833,415.5 170.5,415.5C 169.951,413.099 169.118,410.765 168,408.5C 165.477,404.767 162.977,401.101 160.5,397.5C 159.698,396.048 159.198,394.382 159,392.5C 158.292,391.619 157.458,390.953 156.5,390.5C 156.5,388.833 156.5,387.167 156.5,385.5C 160.555,385.176 164.555,385.509 168.5,386.5C 171.591,392.978 174.925,399.312 178.5,405.5C 179.833,406.833 181.167,406.833 182.5,405.5C 179.103,398.374 175.437,391.374 171.5,384.5C 168.041,381.769 164.041,380.769 159.5,381.5C 159.5,381.167 159.5,380.833 159.5,380.5C 163.555,380.824 167.555,380.491 171.5,379.5C 171.137,378.817 170.804,378.15 170.5,377.5 Z"/></g>
<g><path style="opacity:1" fill="#f5a350" d="M 293.5,478.5 C 292.119,482.049 290.119,485.216 287.5,488C 283.334,488.666 279.334,488.166 275.5,486.5C 279.5,485.167 283.5,483.833 287.5,482.5C 287.5,482.167 287.5,481.833 287.5,481.5C 289.767,480.404 291.6,478.737 293,476.5C 293.464,477.094 293.631,477.761 293.5,478.5 Z"/></g>
<g><path style="opacity:1" fill="#eeb472" d="M 271.5,481.5 C 276.768,483.462 282.101,483.795 287.5,482.5C 283.5,483.833 279.5,485.167 275.5,486.5C 273.302,486.125 271.302,485.458 269.5,484.5C 274.851,485.071 275.518,484.071 271.5,481.5 Z"/></g>
<g><path style="opacity:1" fill="#f7a34e" d="M 271.5,481.5 C 275.518,484.071 274.851,485.071 269.5,484.5C 265.191,484.178 261.524,482.511 258.5,479.5C 259.333,479.167 260.167,478.833 261,478.5C 264.686,479.127 268.186,480.127 271.5,481.5 Z"/></g>
<g><path style="opacity:1" fill="#eda449" d="M 277.5,475.5 C 279.117,476.038 280.784,476.371 282.5,476.5C 282.5,477.5 282.5,478.5 282.5,479.5C 278.767,479.13 275.101,478.463 271.5,477.5C 272.918,475.692 274.918,475.025 277.5,475.5 Z"/></g>
<g><path style="opacity:1" fill="#f4ac6f" d="M 268.5,472.5 C 271.67,473.265 274.67,474.265 277.5,475.5C 274.918,475.025 272.918,475.692 271.5,477.5C 268.458,477.267 265.792,476.267 263.5,474.5C 265.527,474.662 267.527,474.495 269.5,474C 268.944,473.617 268.611,473.117 268.5,472.5 Z"/></g>
<g><path style="opacity:1" fill="#f4cc97" d="M 252.5,467.5 C 249.841,474.009 245.508,475.675 239.5,472.5C 242.187,472.664 244.854,472.497 247.5,472C 249.037,470.293 250.704,468.793 252.5,467.5 Z"/></g>
<g><path style="opacity:1" fill="#f2a24a" d="M 268.5,472.5 C 268.611,473.117 268.944,473.617 269.5,474C 267.527,474.495 265.527,474.662 263.5,474.5C 260.66,473.083 257.993,473.416 255.5,475.5C 254.167,475.5 253.5,474.833 253.5,473.5C 254.341,471.167 256.008,469.834 258.5,469.5C 261.834,470.5 265.168,471.5 268.5,472.5 Z"/></g>
<g><path style="opacity:1" fill="#f8f8f1" d="M 250.5,463.5 C 248.5,465.167 246.5,466.833 244.5,468.5C 242.897,468.688 241.563,468.188 240.5,467C 242.176,465.823 243.509,464.323 244.5,462.5C 246.912,461.051 248.912,461.384 250.5,463.5 Z"/></g>
<g><path style="opacity:1" fill="#e5ac5e" d="M 169.5,397.5 C 167.402,396.086 166.402,396.752 166.5,399.5C 165.079,396.706 164.079,393.706 163.5,390.5C 167.085,391.266 169.085,393.599 169.5,397.5 Z"/></g>
<g><path style="opacity:1" fill="#e0a368" d="M 175.5,479.5 C 171.825,484.532 168.492,489.865 165.5,495.5C 163.952,495.821 163.285,496.821 163.5,498.5C 162.167,498.5 160.833,498.5 159.5,498.5C 164.606,491.941 169.939,485.608 175.5,479.5 Z"/></g>
<g><path style="opacity:1" fill="#fbeacd" d="M 303.5,476.5 C 312.833,476.5 322.167,476.5 331.5,476.5C 331.395,480.319 330.562,483.986 329,487.5C 327.301,488.406 325.467,488.739 323.5,488.5C 316.5,488.5 309.5,488.5 302.5,488.5C 302.5,489.5 302.5,490.5 302.5,491.5C 309.833,491.5 317.167,491.5 324.5,491.5C 327.167,491.5 329.833,491.5 332.5,491.5C 323.014,492.494 313.348,492.827 303.5,492.5C 303.5,493.5 303.5,494.5 303.5,495.5C 300.833,495.5 298.167,495.5 295.5,495.5C 295.837,491.164 297.504,487.497 300.5,484.5C 300.833,484.5 301.167,484.5 301.5,484.5C 301.5,485.5 301.5,486.5 301.5,487.5C 310.167,487.5 318.833,487.5 327.5,487.5C 327.5,486.5 327.5,485.5 327.5,484.5C 326.5,484.5 325.5,484.5 324.5,484.5C 325.625,483.348 325.625,482.348 324.5,481.5C 324.5,481.167 324.5,480.833 324.5,480.5C 326.117,481.038 327.784,481.371 329.5,481.5C 329.5,480.167 329.5,478.833 329.5,477.5C 320.651,477.826 311.984,477.493 303.5,476.5 Z"/></g>
<g><path style="opacity:1" fill="#facfa5" d="M 543.5,484.5 C 540.718,487.729 538.718,491.396 537.5,495.5C 537.167,495.5 536.833,495.5 536.5,495.5C 536.253,493.142 536.919,491.142 538.5,489.5C 539.833,487.5 541.5,485.833 543.5,484.5 Z"/></g>
<g><path style="opacity:1" fill="#f79d43" d="M 323.5,488.5 C 323.918,489.222 324.584,489.722 325.5,490C 324.944,490.383 324.611,490.883 324.5,491.5C 317.167,491.5 309.833,491.5 302.5,491.5C 302.5,490.5 302.5,489.5 302.5,488.5C 309.5,488.5 316.5,488.5 323.5,488.5 Z"/></g>
<g><path style="opacity:1" fill="#e1a55e" d="M 543.5,474.5 C 543.649,475.552 543.483,476.552 543,477.5C 541.517,480.326 539.517,482.659 537,484.5C 536.598,485.872 536.098,487.205 535.5,488.5C 536.325,489.386 537.325,489.719 538.5,489.5C 536.919,491.142 536.253,493.142 536.5,495.5C 535.698,494.048 535.198,492.382 535,490.5C 532.054,491.633 529.554,493.3 527.5,495.5C 529.14,492.851 530.807,490.184 532.5,487.5C 534.183,486.147 535.516,484.48 536.5,482.5C 538.833,479.833 541.167,477.167 543.5,474.5 Z"/></g>
<g><path style="opacity:1" fill="#f7a548" d="M 385.5,482.5 C 386.172,483.267 387.005,483.934 388,484.5C 388.749,485.635 388.583,486.635 387.5,487.5C 384.102,488.104 380.769,488.937 377.5,490C 377.833,490.333 378.167,490.667 378.5,491C 376.907,491.949 375.574,493.115 374.5,494.5C 372.958,495.301 371.292,495.634 369.5,495.5C 368.2,494.892 366.867,494.225 365.5,493.5C 363.865,494.046 362.199,494.38 360.5,494.5C 360.5,495.5 360.5,496.5 360.5,497.5C 358.473,497.338 356.473,497.505 354.5,498C 352.881,498.236 351.881,499.069 351.5,500.5C 350.833,500.5 350.167,500.5 349.5,500.5C 344.833,500.5 340.167,500.5 335.5,500.5C 335.5,499.5 335.5,498.5 335.5,497.5C 340.833,497.5 346.167,497.5 351.5,497.5C 351.5,496.5 351.5,495.5 351.5,494.5C 353.698,494.88 355.365,494.213 356.5,492.5C 362.911,490.203 369.577,488.37 376.5,487C 378.066,486.392 379.4,485.558 380.5,484.5C 380.833,484.5 381.167,484.5 381.5,484.5C 382.931,484.119 383.764,483.119 384,481.5C 384.383,482.056 384.883,482.389 385.5,482.5 Z"/></g>
<g><path style="opacity:1" fill="#f2a34e" d="M 520.5,462.5 C 520.5,463.167 520.167,463.5 519.5,463.5C 518.167,463.5 516.833,463.5 515.5,463.5C 512.81,466.533 510.477,469.867 508.5,473.5C 507.5,474.833 506.5,476.167 505.5,477.5C 504.395,478.6 503.062,479.267 501.5,479.5C 500.833,479.5 500.167,479.5 499.5,479.5C 492.713,474.593 486.046,469.426 479.5,464C 478.207,463.51 476.873,463.343 475.5,463.5C 471.5,463.5 467.5,463.5 463.5,463.5C 463.5,467.5 463.5,471.5 463.5,475.5C 463.343,476.873 463.51,478.207 464,479.5C 468.075,484.065 471.909,488.732 475.5,493.5C 477.252,495.246 478.585,497.246 479.5,499.5C 479.5,500.167 479.5,500.833 479.5,501.5C 479.672,502.492 479.338,503.158 478.5,503.5C 477.448,503.351 476.448,503.517 475.5,504C 472.145,507.221 469.145,510.721 466.5,514.5C 465.675,515.386 464.675,515.719 463.5,515.5C 463.5,516.5 463.5,517.5 463.5,518.5C 461.071,518.884 458.737,519.551 456.5,520.5C 456.351,519.448 456.517,518.448 457,517.5C 460.983,515.701 463.149,512.701 463.5,508.5C 465.066,505.588 467.066,502.921 469.5,500.5C 466.358,495.184 462.524,490.517 458,486.5C 455.537,488.308 453.037,489.975 450.5,491.5C 449.833,491.833 449.167,492.167 448.5,492.5C 447.766,491.292 447.433,489.959 447.5,488.5C 450.5,488.833 451.833,487.5 451.5,484.5C 453.544,482.781 455.544,481.114 457.5,479.5C 458.5,479.5 459.5,479.5 460.5,479.5C 461.19,473.19 461.524,466.857 461.5,460.5C 467.536,460.64 473.536,460.307 479.5,459.5C 479.5,458.5 479.5,457.5 479.5,456.5C 480.5,456.5 481.5,456.5 482.5,456.5C 483.528,456.926 484.861,456.926 486.5,456.5C 486.297,458.39 486.963,459.89 488.5,461C 492.324,464.079 496.324,466.912 500.5,469.5C 502.902,467.091 505.569,465.091 508.5,463.5C 509.675,463.719 510.675,463.386 511.5,462.5C 513.564,459.71 516.064,457.376 519,455.5C 522.118,456.903 522.285,458.736 519.5,461C 519.57,461.765 519.903,462.265 520.5,462.5 Z"/></g>
<g><path style="opacity:1" fill="#d69a63" d="M 475.5,463.5 C 474.365,465.213 472.698,465.88 470.5,465.5C 468.833,465.5 467.167,465.5 465.5,465.5C 465.841,469.16 465.175,472.493 463.5,475.5C 463.5,471.5 463.5,467.5 463.5,463.5C 467.5,463.5 471.5,463.5 475.5,463.5 Z"/></g>
<g><path style="opacity:1" fill="#2e0303" d="M 173.5,470.5 C 173.402,472.553 174.069,474.22 175.5,475.5C 175.5,476.833 175.5,478.167 175.5,479.5C 169.939,485.608 164.606,491.941 159.5,498.5C 159.5,498.833 159.5,499.167 159.5,499.5C 158.833,499.5 158.167,499.5 157.5,499.5C 154.085,504.978 149.752,509.645 144.5,513.5C 143.92,515.637 142.92,517.47 141.5,519C 141.833,519.333 142.167,519.667 142.5,520C 141.058,520.377 140.058,521.21 139.5,522.5C 134.874,519.542 130.874,515.876 127.5,511.5C 129.124,511.36 130.29,512.027 131,513.5C 132.141,509.355 134.808,507.022 139,506.5C 139.273,504.899 139.773,503.399 140.5,502C 145.033,500.483 147.867,497.316 149,492.5C 150.171,491.107 151.671,490.273 153.5,490C 154.5,488.333 155.5,486.667 156.5,485C 157.448,484.517 158.448,484.351 159.5,484.5C 159.5,482.833 159.5,481.167 159.5,479.5C 161.857,479.663 164.19,479.497 166.5,479C 168.006,475.83 169.506,472.663 171,469.5C 171.671,470.252 172.504,470.586 173.5,470.5 Z"/></g>
<g><path style="opacity:1" fill="#2e0403" d="M 159.5,463.5 C 160.5,463.5 161.5,463.5 162.5,463.5C 163.514,464.674 164.847,465.34 166.5,465.5C 166.056,467.113 165.056,468.28 163.5,469C 163.833,469.333 164.167,469.667 164.5,470C 163.167,470.333 161.833,470.667 160.5,471C 160.833,471.333 161.167,471.667 161.5,472C 159.709,474.106 159.042,476.606 159.5,479.5C 157.833,479.5 156.167,479.5 154.5,479.5C 154.374,482.595 152.707,484.428 149.5,485C 148.568,489.26 145.902,491.26 141.5,491C 139.406,493.421 137.74,496.088 136.5,499C 134.975,500.009 133.308,500.509 131.5,500.5C 131.803,503.588 130.47,505.254 127.5,505.5C 127.5,507.5 127.5,509.5 127.5,511.5C 125.167,509.833 123.167,507.833 121.5,505.5C 121.821,503.952 122.821,503.285 124.5,503.5C 124.5,501.833 124.5,500.167 124.5,498.5C 122.654,498.778 121.32,498.111 120.5,496.5C 122.743,495.526 125.076,495.192 127.5,495.5C 127.5,494.167 127.5,492.833 127.5,491.5C 130.909,491.267 133.409,489.6 135,486.5C 135.414,486.957 135.914,487.291 136.5,487.5C 138.577,486.012 139.577,484.012 139.5,481.5C 139.5,480.833 139.5,480.167 139.5,479.5C 139.833,479.5 140.167,479.5 140.5,479.5C 146.858,474.137 153.192,468.804 159.5,463.5 Z"/></g>
<g><path style="opacity:1" fill="#440204" d="M 189.5,492.5 C 196.149,493.832 201.482,497.165 205.5,502.5C 205.414,503.496 205.748,504.329 206.5,505C 201.104,506.23 196.27,508.396 192,511.5C 188.899,508.364 185.565,505.364 182,502.5C 181.503,500.19 181.337,497.857 181.5,495.5C 184.365,495.035 187.032,494.035 189.5,492.5 Z"/></g>
<g><path style="opacity:1" fill="#e7a262" d="M 369.5,495.5 C 368.833,496.167 368.167,496.833 367.5,497.5C 362.188,498.482 356.855,499.482 351.5,500.5C 351.881,499.069 352.881,498.236 354.5,498C 356.473,497.505 358.473,497.338 360.5,497.5C 360.5,496.5 360.5,495.5 360.5,494.5C 362.199,494.38 363.865,494.046 365.5,493.5C 366.867,494.225 368.2,494.892 369.5,495.5 Z"/></g>
<g><path style="opacity:1" fill="#470304" d="M 450.5,491.5 C 451.833,491.5 453.167,491.5 454.5,491.5C 454.5,492.833 454.5,494.167 454.5,495.5C 455.5,495.5 456.5,495.5 457.5,495.5C 457.752,498.32 457.252,500.986 456,503.5C 452.711,506.649 449.044,509.315 445,511.5C 441.173,508.773 437.006,506.606 432.5,505C 433.252,504.329 433.586,503.496 433.5,502.5C 437.428,497.575 442.428,494.242 448.5,492.5C 449.167,492.167 449.833,491.833 450.5,491.5 Z"/></g>
<g><path style="opacity:1" fill="#3f0102" d="M 159.5,479.5 C 159.5,481.167 159.5,482.833 159.5,484.5C 158.448,484.351 157.448,484.517 156.5,485C 155.5,486.667 154.5,488.333 153.5,490C 151.671,490.273 150.171,491.107 149,492.5C 147.867,497.316 145.033,500.483 140.5,502C 139.773,503.399 139.273,504.899 139,506.5C 134.808,507.022 132.141,509.355 131,513.5C 130.29,512.027 129.124,511.36 127.5,511.5C 127.5,509.5 127.5,507.5 127.5,505.5C 130.47,505.254 131.803,503.588 131.5,500.5C 133.308,500.509 134.975,500.009 136.5,499C 137.74,496.088 139.406,493.421 141.5,491C 145.902,491.26 148.568,489.26 149.5,485C 152.707,484.428 154.374,482.595 154.5,479.5C 156.167,479.5 157.833,479.5 159.5,479.5 Z"/></g>
<g><path style="opacity:1" fill="#f7a34a" d="M 63.5,499.5 C 66.1667,500.833 68.8333,500.833 71.5,499.5C 76.4724,498.578 81.4724,498.412 86.5,499C 87.9423,499.377 88.9423,500.21 89.5,501.5C 86.1226,501.959 82.7893,502.626 79.5,503.5C 76.8127,503.336 74.146,503.503 71.5,504C 70.6634,505.011 70.33,506.178 70.5,507.5C 68.6334,507.955 66.8001,508.622 65,509.5C 63.167,509.481 61.667,508.815 60.5,507.5C 60.5,506.833 60.5,506.167 60.5,505.5C 56.979,501.108 54.479,496.108 53,490.5C 50.259,488.933 49.0923,486.599 49.5,483.5C 50.5,483.5 51.5,483.5 52.5,483.5C 52.238,484.978 52.5713,486.311 53.5,487.5C 54.897,489.606 56.7304,491.273 59,492.5C 59.977,494.74 60.477,497.073 60.5,499.5C 61.5,499.5 62.5,499.5 63.5,499.5 Z"/></g>
<g><path style="opacity:1" fill="#eca95c" d="M 591.5,472.5 C 590.032,480.482 586.532,487.482 581,493.5C 579.872,495.345 579.372,497.345 579.5,499.5C 580.552,499.649 581.552,499.483 582.5,499C 582.974,497.271 583.974,496.105 585.5,495.5C 584.68,497.812 583.847,500.146 583,502.5C 580.269,504.418 577.769,506.418 575.5,508.5C 577.59,506.308 578.59,503.641 578.5,500.5C 576.053,500.615 574.053,501.615 572.5,503.5C 579.168,493.471 585.502,483.137 591.5,472.5 Z"/></g>
<g><path style="opacity:1" fill="#f0a95e" d="M 101.5,503.5 C 100.292,502.766 98.9587,502.433 97.5,502.5C 97.6941,505.33 98.3608,507.996 99.5,510.5C 97.0775,506.407 93.7442,503.407 89.5,501.5C 88.9423,500.21 87.9423,499.377 86.5,499C 81.4724,498.412 76.4724,498.578 71.5,499.5C 78.3502,497.367 85.3502,495.367 92.5,493.5C 94.0441,493.79 95.3774,494.456 96.5,495.5C 98.2111,498.196 99.8777,500.862 101.5,503.5 Z"/></g>
<g><path style="opacity:1" fill="#faf7ea" d="M 591.5,437.5 C 593.167,438.833 594.833,440.167 596.5,441.5C 598.894,443.891 600.894,446.557 602.5,449.5C 599.285,457.382 595.618,465.049 591.5,472.5C 585.502,483.137 579.168,493.471 572.5,503.5C 569.385,505.288 567.385,507.954 566.5,511.5C 565.833,511.5 565.167,511.5 564.5,511.5C 561.36,505.434 558.027,499.434 554.5,493.5C 557.66,487.179 561.326,481.179 565.5,475.5C 567.167,472.833 568.833,470.167 570.5,467.5C 572.417,464.669 574.083,461.669 575.5,458.5C 576.053,455.413 577.72,452.913 580.5,451C 582.826,450.815 584.16,451.982 584.5,454.5C 583.202,457.422 582.202,460.422 581.5,463.5C 581.167,463.5 580.833,463.5 580.5,463.5C 575.317,472.864 569.484,481.864 563,490.5C 562.674,493.332 563.174,495.999 564.5,498.5C 565.822,498.67 566.989,498.337 568,497.5C 573.12,489.578 577.954,481.578 582.5,473.5C 585.024,468.81 587.858,464.144 591,459.5C 591.494,457.866 591.66,456.199 591.5,454.5C 593.252,454.582 594.252,453.749 594.5,452C 592.953,450.624 591.62,449.124 590.5,447.5C 589.242,444.306 588.576,440.973 588.5,437.5C 589.5,437.5 590.5,437.5 591.5,437.5 Z"/></g>
<g><path style="opacity:1" fill="#f0a85b" d="M 580.5,463.5 C 580.261,465.467 580.594,467.301 581.5,469C 580.551,469.617 579.718,469.451 579,468.5C 578.505,470.473 578.338,472.473 578.5,474.5C 579.959,474.567 581.292,474.234 582.5,473.5C 577.954,481.578 573.12,489.578 568,497.5C 566.989,498.337 565.822,498.67 564.5,498.5C 563.174,495.999 562.674,493.332 563,490.5C 569.484,481.864 575.317,472.864 580.5,463.5 Z"/></g>
<g><path style="opacity:1" fill="#c28c81" d="M 479.5,499.5 C 480.167,499.5 480.833,499.5 481.5,499.5C 481.5,500.833 480.833,501.5 479.5,501.5C 479.5,500.833 479.5,500.167 479.5,499.5 Z"/></g>
<g><path style="opacity:1" fill="#ae766b" d="M 157.5,499.5 C 158.167,499.5 158.833,499.5 159.5,499.5C 159.5,500.5 159.5,501.5 159.5,502.5C 157.952,502.179 157.285,501.179 157.5,499.5 Z"/></g>
<g><path style="opacity:1" fill="#feefcc" d="M 548.5,498.5 C 553.167,503.824 556.834,509.824 559.5,516.5C 557.983,516.489 556.816,515.823 556,514.5C 553.588,509.085 551.088,503.751 548.5,498.5 Z"/></g>
<g><path style="opacity:1" fill="#2d0203" d="M 507.5,515.5 C 506.883,515.389 506.383,515.056 506,514.5C 504.287,516.507 502.621,518.507 501,520.5C 500.586,520.043 500.086,519.709 499.5,519.5C 494.516,514.012 489.683,508.345 485,502.5C 484.517,501.552 484.351,500.552 484.5,499.5C 483.5,499.5 482.5,499.5 481.5,499.5C 480.833,499.5 480.167,499.5 479.5,499.5C 478.585,497.246 477.252,495.246 475.5,493.5C 476.408,491.548 476.241,489.548 475,487.5C 474.667,487.833 474.333,488.167 474,488.5C 472.704,486.469 471.204,484.636 469.5,483C 472.866,478.177 475.533,478.51 477.5,484C 476.047,485.713 476.214,487.213 478,488.5C 479.6,484.697 481.1,484.864 482.5,489C 480.571,490.694 479.571,492.861 479.5,495.5C 483.41,495.193 486.744,494.693 489.5,494C 491.541,495.242 492.707,497.075 493,499.5C 497.418,502.34 501.418,505.673 505,509.5C 506.669,511.169 507.502,513.169 507.5,515.5 Z"/></g>
<g><path style="opacity:1" fill="#3a0203" d="M 470.5,465.5 C 471.209,466.404 472.209,466.737 473.5,466.5C 473.35,470.161 474.85,471.161 478,469.5C 479.316,472.688 479.816,476.022 479.5,479.5C 481.167,479.5 482.833,479.5 484.5,479.5C 484.33,480.822 484.663,481.989 485.5,483C 490.068,483.401 492.401,485.901 492.5,490.5C 498.004,490.167 500.837,492.834 501,498.5C 504.533,500.592 507.866,502.925 511,505.5C 511.495,507.473 511.662,509.473 511.5,511.5C 510.5,513.167 509.167,514.5 507.5,515.5C 507.502,513.169 506.669,511.169 505,509.5C 501.418,505.673 497.418,502.34 493,499.5C 492.707,497.075 491.541,495.242 489.5,494C 486.744,494.693 483.41,495.193 479.5,495.5C 479.571,492.861 480.571,490.694 482.5,489C 481.1,484.864 479.6,484.697 478,488.5C 476.214,487.213 476.047,485.713 477.5,484C 475.533,478.51 472.866,478.177 469.5,483C 471.204,484.636 472.704,486.469 474,488.5C 474.333,488.167 474.667,487.833 475,487.5C 476.241,489.548 476.408,491.548 475.5,493.5C 471.909,488.732 468.075,484.065 464,479.5C 463.51,478.207 463.343,476.873 463.5,475.5C 465.175,472.493 465.841,469.16 465.5,465.5C 467.167,465.5 468.833,465.5 470.5,465.5 Z"/></g>
<g><path style="opacity:1" fill="#fdf3de" d="M 47.5,489.5 C 51.4272,495.101 55.7605,500.434 60.5,505.5C 60.5,506.167 60.5,506.833 60.5,507.5C 60.7329,509.062 61.3995,510.395 62.5,511.5C 61.1667,511.5 59.8333,511.5 58.5,511.5C 58.6567,510.127 58.49,508.793 58,507.5C 52.5522,502.679 49.0522,496.679 47.5,489.5 Z"/></g>
<g><path style="opacity:1" fill="#3d0203" d="M 157.5,499.5 C 157.285,501.179 157.952,502.179 159.5,502.5C 159.5,503.167 159.833,503.5 160.5,503.5C 160.833,504.167 161.167,504.833 161.5,505.5C 159.9,506.252 158.4,507.252 157,508.5C 154.42,513.084 151.087,517.084 147,520.5C 146.667,521.833 146.333,523.167 146,524.5C 144.187,523.391 143.354,524.058 143.5,526.5C 141.833,525.5 140.5,524.167 139.5,522.5C 140.058,521.21 141.058,520.377 142.5,520C 142.167,519.667 141.833,519.333 141.5,519C 142.92,517.47 143.92,515.637 144.5,513.5C 149.752,509.645 154.085,504.978 157.5,499.5 Z"/></g>
<g><path style="opacity:1" fill="#fbebcd" d="M 585.5,495.5 C 586.167,495.5 586.833,495.5 587.5,495.5C 585.407,502.391 581.407,507.724 575.5,511.5C 575.5,510.5 575.5,509.5 575.5,508.5C 577.769,506.418 580.269,504.418 583,502.5C 583.847,500.146 584.68,497.812 585.5,495.5 Z"/></g>
<g><path style="opacity:1" fill="#440103" d="M 271.5,497.5 C 276.833,498.5 282.167,499.5 287.5,500.5C 308.167,504.5 328.833,504.5 349.5,500.5C 350.167,500.5 350.833,500.5 351.5,500.5C 356.855,499.482 362.188,498.482 367.5,497.5C 367.152,501.085 367.819,504.418 369.5,507.5C 369.131,516.848 364.797,523.514 356.5,527.5C 354.585,527.216 352.919,527.549 351.5,528.5C 340.49,526.322 329.824,527.322 319.5,531.5C 310.362,527.478 300.862,526.478 291,528.5C 282.562,528.699 276.062,525.366 271.5,518.5C 269.908,515.034 269.242,511.367 269.5,507.5C 271.181,504.418 271.848,501.085 271.5,497.5 Z"/></g>
<g><path style="opacity:1" fill="#f1a651" d="M 536.5,495.5 C 536.833,495.5 537.167,495.5 537.5,495.5C 541.141,500.758 544.807,506.091 548.5,511.5C 550.263,515.51 549.763,519.177 547,522.5C 537.285,534.049 526.452,544.382 514.5,553.5C 512.241,552.656 511.241,550.989 511.5,548.5C 512.833,546.5 514.5,544.833 516.5,543.5C 522.066,542.268 525.732,538.935 527.5,533.5C 532.577,528.43 537.243,523.097 541.5,517.5C 539.541,513.047 537.375,508.714 535,504.5C 533.649,502.981 532.149,501.648 530.5,500.5C 529.712,501.77 528.712,502.77 527.5,503.5C 523.877,505.122 521.211,507.789 519.5,511.5C 510.439,522.227 500.105,531.561 488.5,539.5C 487.022,539.762 485.689,539.429 484.5,538.5C 487.296,535.171 490.463,532.171 494,529.5C 494.464,528.906 494.631,528.239 494.5,527.5C 495.167,527.5 495.5,527.167 495.5,526.5C 500.126,523.542 504.126,519.876 507.5,515.5C 509.167,514.5 510.5,513.167 511.5,511.5C 513.167,510.5 514.5,509.167 515.5,507.5C 519.623,503.921 523.29,499.921 526.5,495.5C 526.833,495.5 527.167,495.5 527.5,495.5C 529.554,493.3 532.054,491.633 535,490.5C 535.198,492.382 535.698,494.048 536.5,495.5 Z"/></g>
<g><path style="opacity:1" fill="#eba976" d="M 527.5,503.5 C 525.167,506.5 522.5,509.167 519.5,511.5C 521.211,507.789 523.877,505.122 527.5,503.5 Z"/></g>
<g><path style="opacity:1" fill="#e9a86d" d="M 572.5,503.5 C 572.412,507.589 570.412,510.256 566.5,511.5C 567.385,507.954 569.385,505.288 572.5,503.5 Z"/></g>
<g><path style="opacity:1" fill="#730505" d="M 463.5,508.5 C 459.971,511.531 456.638,514.697 453.5,518C 463.628,534.186 464.128,550.686 455,567.5C 452.96,569.37 451.127,571.37 449.5,573.5C 445.749,576.592 441.749,579.259 437.5,581.5C 435.302,581.875 433.302,582.542 431.5,583.5C 423.849,584.236 416.515,583.236 409.5,580.5C 407.97,578.654 405.97,577.654 403.5,577.5C 401.25,573.299 399.583,568.966 398.5,564.5C 398.5,561.833 398.5,559.167 398.5,556.5C 399.319,553.695 399.819,550.695 400,547.5C 403.319,544.493 406.819,541.66 410.5,539C 413.817,538.502 417.15,538.335 420.5,538.5C 431.869,543.182 434.702,551.182 429,562.5C 426.971,565.596 424.138,567.262 420.5,567.5C 418.143,567.337 415.81,567.503 413.5,568C 414.044,568.717 414.711,569.217 415.5,569.5C 416.167,569.5 416.5,569.833 416.5,570.5C 415.761,570.369 415.094,570.536 414.5,571C 427.991,576.829 438.491,573.329 446,560.5C 447.429,552.881 447.762,545.215 447,537.5C 446.667,538.167 446.333,538.833 446,539.5C 444.125,535.594 441.625,532.094 438.5,529C 438.833,528.667 439.167,528.333 439.5,528C 436.854,527.503 434.187,527.336 431.5,527.5C 431.5,526.5 431.5,525.5 431.5,524.5C 417.498,521.141 404.498,523.308 392.5,531C 392.833,531.333 393.167,531.667 393.5,532C 390.077,531.855 388.077,533.355 387.5,536.5C 385.117,534.642 382.45,533.308 379.5,532.5C 379.389,531.883 379.056,531.383 378.5,531C 374.434,530.021 370.434,528.854 366.5,527.5C 368.853,524.752 371.186,522.086 373.5,519.5C 383.988,524.991 394.322,524.491 404.5,518C 411.296,511.94 419.296,508.606 428.5,508C 430.3,506.188 431.967,504.355 433.5,502.5C 433.586,503.496 433.252,504.329 432.5,505C 437.006,506.606 441.173,508.773 445,511.5C 449.044,509.315 452.711,506.649 456,503.5C 457.252,500.986 457.752,498.32 457.5,495.5C 456.5,495.5 455.5,495.5 454.5,495.5C 454.5,494.167 454.5,492.833 454.5,491.5C 453.167,491.5 451.833,491.5 450.5,491.5C 453.037,489.975 455.537,488.308 458,486.5C 462.524,490.517 466.358,495.184 469.5,500.5C 467.066,502.921 465.066,505.588 463.5,508.5 Z"/></g>
<g><path style="opacity:1" fill="#2e0302" d="M 161.5,505.5 C 163.833,507.167 165.833,509.167 167.5,511.5C 164.763,513.964 162.763,516.964 161.5,520.5C 160.086,521.624 158.586,522.624 157,523.5C 156.608,526.627 155.775,529.627 154.5,532.5C 153.675,533.386 152.675,533.719 151.5,533.5C 148.833,531.167 146.167,528.833 143.5,526.5C 143.354,524.058 144.187,523.391 146,524.5C 146.333,523.167 146.667,521.833 147,520.5C 151.087,517.084 154.42,513.084 157,508.5C 158.4,507.252 159.9,506.252 161.5,505.5 Z"/></g>
<g><path style="opacity:1" fill="#2e0302" d="M 477.5,505.5 C 482.036,507.215 484.536,510.548 485,515.5C 487.459,517.805 490.126,519.805 493,521.5C 494.438,522.9 495.271,524.567 495.5,526.5C 495.5,527.167 495.167,527.5 494.5,527.5C 492.026,530.31 489.026,532.31 485.5,533.5C 483.228,533.089 482.895,531.922 484.5,530C 482.855,528.968 482.522,527.801 483.5,526.5C 482.784,523.316 480.784,521.816 477.5,522C 476.464,517.714 474.131,514.548 470.5,512.5C 472.5,509.833 474.833,507.5 477.5,505.5 Z"/></g>
<g><path style="opacity:1" fill="#3c0303" d="M 481.5,499.5 C 482.5,499.5 483.5,499.5 484.5,499.5C 484.351,500.552 484.517,501.552 485,502.5C 489.683,508.345 494.516,514.012 499.5,519.5C 500.086,519.709 500.586,520.043 501,520.5C 502.621,518.507 504.287,516.507 506,514.5C 506.383,515.056 506.883,515.389 507.5,515.5C 504.126,519.876 500.126,523.542 495.5,526.5C 495.271,524.567 494.438,522.9 493,521.5C 490.126,519.805 487.459,517.805 485,515.5C 484.536,510.548 482.036,507.215 477.5,505.5C 477.833,504.833 478.167,504.167 478.5,503.5C 479.338,503.158 479.672,502.492 479.5,501.5C 480.833,501.5 481.5,500.833 481.5,499.5 Z"/></g>
<g><path style="opacity:1" fill="#f1a657" d="M 563.5,467.5 C 562.833,469.819 562.666,472.153 563,474.5C 563.671,475.252 564.504,475.586 565.5,475.5C 561.326,481.179 557.66,487.179 554.5,493.5C 558.027,499.434 561.36,505.434 564.5,511.5C 563.781,513.764 563.448,516.097 563.5,518.5C 567.464,518.045 570.131,515.878 571.5,512C 572.793,511.51 574.127,511.343 575.5,511.5C 575.5,511.833 575.5,512.167 575.5,512.5C 572.039,514.475 569.873,517.475 569,521.5C 566.269,523.418 563.769,525.418 561.5,527.5C 561.627,518.969 559.96,518.636 556.5,526.5C 555.675,527.386 554.675,527.719 553.5,527.5C 554.089,524.724 555.422,522.39 557.5,520.5C 559.104,519.713 559.771,518.38 559.5,516.5C 556.834,509.824 553.167,503.824 548.5,498.5C 546.782,496.074 546.282,493.407 547,490.5C 549.844,488.148 551.678,485.148 552.5,481.5C 556.649,477.196 560.316,472.53 563.5,467.5 Z"/></g>
<g><path style="opacity:1" fill="#faa444" d="M 575.5,508.5 C 575.5,509.5 575.5,510.5 575.5,511.5C 574.127,511.343 572.793,511.51 571.5,512C 570.131,515.878 567.464,518.045 563.5,518.5C 563.448,516.097 563.781,513.764 564.5,511.5C 565.167,511.5 565.833,511.5 566.5,511.5C 570.412,510.256 572.412,507.589 572.5,503.5C 574.053,501.615 576.053,500.615 578.5,500.5C 578.59,503.641 577.59,506.308 575.5,508.5 Z"/></g>
<g><path style="opacity:1" fill="#f6a54b" d="M 170.5,498.5 C 169.697,499.423 169.53,500.423 170,501.5C 173.078,504.679 175.912,508.012 178.5,511.5C 178.022,514.278 179.022,516.278 181.5,517.5C 182.429,518.689 182.762,520.022 182.5,521.5C 181.5,521.5 180.5,521.5 179.5,521.5C 179.5,520.5 179.5,519.5 179.5,518.5C 178.167,518.5 176.833,518.5 175.5,518.5C 175.5,517.5 175.5,516.5 175.5,515.5C 171.442,513.09 168.108,509.756 165.5,505.5C 163.978,504.438 162.312,503.771 160.5,503.5C 159.833,503.5 159.5,503.167 159.5,502.5C 159.5,501.5 159.5,500.5 159.5,499.5C 159.5,499.167 159.5,498.833 159.5,498.5C 160.833,498.5 162.167,498.5 163.5,498.5C 163.285,496.821 163.952,495.821 165.5,495.5C 170.59,488.545 172.256,489.545 170.5,498.5 Z"/></g>
<g><path style="opacity:1" fill="#edaa61" d="M 79.5,503.5 C 76.6407,504.823 73.974,506.657 71.5,509C 74.3576,512.357 77.0242,515.857 79.5,519.5C 77.8828,518.962 76.2161,518.629 74.5,518.5C 74.8333,515.5 73.5,514.167 70.5,514.5C 70.8506,518.701 73.0172,521.701 77,523.5C 77.49,524.793 77.6567,526.127 77.5,527.5C 72.8551,522.52 68.1884,517.52 63.5,512.5C 63.5,511.833 63.1667,511.5 62.5,511.5C 61.3995,510.395 60.7329,509.062 60.5,507.5C 61.667,508.815 63.167,509.481 65,509.5C 66.8001,508.622 68.6334,507.955 70.5,507.5C 70.33,506.178 70.6634,505.011 71.5,504C 74.146,503.503 76.8127,503.336 79.5,503.5 Z"/></g>
<g><path style="opacity:1" fill="#3b0204" d="M 167.5,511.5 C 169.633,513.091 171.299,515.091 172.5,517.5C 172.162,520.098 170.662,522.431 168,524.5C 167.667,524.167 167.333,523.833 167,523.5C 166.5,524.5 166,525.5 165.5,526.5C 167.423,527.308 169.423,527.808 171.5,528C 169.963,529.11 169.297,530.61 169.5,532.5C 164.007,530.326 159.674,531.659 156.5,536.5C 154.566,535.89 152.899,534.89 151.5,533.5C 152.675,533.719 153.675,533.386 154.5,532.5C 155.775,529.627 156.608,526.627 157,523.5C 158.586,522.624 160.086,521.624 161.5,520.5C 162.763,516.964 164.763,513.964 167.5,511.5 Z"/></g>
<g><path style="opacity:1" fill="#320505" d="M 172.5,517.5 C 175.172,519.84 177.839,522.173 180.5,524.5C 176.714,532.091 173.714,539.758 171.5,547.5C 171.167,547.5 170.833,547.5 170.5,547.5C 168.858,546.197 167.191,544.864 165.5,543.5C 165.167,543.5 164.833,543.5 164.5,543.5C 161.833,541.167 159.167,538.833 156.5,536.5C 159.674,531.659 164.007,530.326 169.5,532.5C 169.297,530.61 169.963,529.11 171.5,528C 169.423,527.808 167.423,527.308 165.5,526.5C 166,525.5 166.5,524.5 167,523.5C 167.333,523.833 167.667,524.167 168,524.5C 170.662,522.431 172.162,520.098 172.5,517.5 Z"/></g>
<g><path style="opacity:1" fill="#efa254" d="M 451.5,484.5 C 451.833,487.5 450.5,488.833 447.5,488.5C 447.433,489.959 447.766,491.292 448.5,492.5C 442.428,494.242 437.428,497.575 433.5,502.5C 431.967,504.355 430.3,506.188 428.5,508C 419.296,508.606 411.296,511.94 404.5,518C 394.322,524.491 383.988,524.991 373.5,519.5C 371.186,522.086 368.853,524.752 366.5,527.5C 370.434,528.854 374.434,530.021 378.5,531C 379.056,531.383 379.389,531.883 379.5,532.5C 375.2,532.54 371.2,533.54 367.5,535.5C 367.5,534.5 367.5,533.5 367.5,532.5C 368.978,532.762 370.311,532.429 371.5,531.5C 366.208,530.893 361.208,529.56 356.5,527.5C 364.797,523.514 369.131,516.848 369.5,507.5C 377.299,518.556 387.299,521.056 399.5,515C 407.141,508.847 415.808,504.847 425.5,503C 432.677,494.643 441.344,488.476 451.5,484.5 Z"/></g>
<g><path style="opacity:1" fill="#f9f7ec" d="M 31.5,436.5 C 38.1667,436.5 44.8333,436.5 51.5,436.5C 51.4021,438.553 52.0687,440.22 53.5,441.5C 54.3554,444.175 55.522,446.842 57,449.5C 61.4146,456.291 65.9146,462.957 70.5,469.5C 70.5,470.167 70.5,470.833 70.5,471.5C 70.238,472.978 70.5713,474.311 71.5,475.5C 73.8867,475.912 75.8867,476.912 77.5,478.5C 75.5745,481.172 72.9079,482.172 69.5,481.5C 68.396,479.611 67.0627,477.945 65.5,476.5C 64.0713,473.304 62.4046,470.304 60.5,467.5C 59.2604,463.349 57.2604,459.683 54.5,456.5C 52.321,452.336 50.6544,448.003 49.5,443.5C 46.8333,443.5 44.1667,443.5 41.5,443.5C 42.7173,448.331 44.5506,452.998 47,457.5C 51.2485,464.999 55.7485,472.332 60.5,479.5C 62.2263,483.284 64.2263,486.95 66.5,490.5C 68.6282,491.629 70.9615,491.796 73.5,491C 76.0512,490.998 78.0512,490.164 79.5,488.5C 84.9688,486.798 90.6354,485.465 96.5,484.5C 108.718,501.389 122.718,516.722 138.5,530.5C 134.213,534.652 129.213,537.819 123.5,540C 121.833,540.667 120.167,540.667 118.5,540C 108.816,530.756 99.4831,521.256 90.5,511.5C 88.2067,508.941 85.7067,508.941 83,511.5C 83.4265,514.121 84.9265,516.121 87.5,517.5C 97.268,529.102 107.935,539.936 119.5,550C 120.833,550.667 122.167,550.667 123.5,550C 129.223,545.474 135.556,541.974 142.5,539.5C 143.386,538.675 143.719,537.675 143.5,536.5C 147.757,538.298 151.757,540.632 155.5,543.5C 155.833,543.5 156.167,543.5 156.5,543.5C 159.234,547.375 162.9,550.041 167.5,551.5C 167.833,552.167 168.167,552.833 168.5,553.5C 169.956,555.284 170.956,557.284 171.5,559.5C 169.833,559.5 168.167,559.5 166.5,559.5C 162.289,557.902 158.622,555.568 155.5,552.5C 152.59,545.68 147.59,543.68 140.5,546.5C 136.614,549.61 132.281,551.944 127.5,553.5C 127.5,554.5 127.5,555.5 127.5,556.5C 125.787,558.85 123.453,559.85 120.5,559.5C 120.167,559.5 119.833,559.5 119.5,559.5C 111.826,551.826 103.826,544.493 95.5,537.5C 90.5954,531.254 85.2621,525.254 79.5,519.5C 77.0242,515.857 74.3576,512.357 71.5,509C 73.974,506.657 76.6407,504.823 79.5,503.5C 82.7893,502.626 86.1226,501.959 89.5,501.5C 93.7442,503.407 97.0775,506.407 99.5,510.5C 99.5,511.167 99.8333,511.5 100.5,511.5C 105.446,517.783 110.78,523.783 116.5,529.5C 118.729,531.553 121.062,531.886 123.5,530.5C 125.225,530.157 125.725,529.157 125,527.5C 120.631,522.963 116.131,518.63 111.5,514.5C 110.738,512.738 109.404,511.738 107.5,511.5C 105.878,508.545 103.878,505.878 101.5,503.5C 99.8777,500.862 98.2111,498.196 96.5,495.5C 95.3774,494.456 94.0441,493.79 92.5,493.5C 85.3502,495.367 78.3502,497.367 71.5,499.5C 68.8333,500.833 66.1667,500.833 63.5,499.5C 63.762,498.022 63.4287,496.689 62.5,495.5C 51.7453,480.138 42.4119,464.138 34.5,447.5C 32.7108,444.848 31.7108,441.848 31.5,438.5C 31.5,437.833 31.5,437.167 31.5,436.5 Z"/></g>
<g><path style="opacity:1" fill="#deb976" d="M 90.5,511.5 C 89.1667,511.5 87.8333,511.5 86.5,511.5C 86.5172,513.565 86.8505,515.565 87.5,517.5C 84.9265,516.121 83.4265,514.121 83,511.5C 85.7067,508.941 88.2067,508.941 90.5,511.5 Z"/></g>
<g><path style="opacity:1" fill="#fba141" d="M 101.5,503.5 C 102.41,507.065 104.41,509.732 107.5,511.5C 107.5,512.5 107.5,513.5 107.5,514.5C 105.328,513.199 102.995,512.199 100.5,511.5C 99.8333,511.5 99.5,511.167 99.5,510.5C 98.3608,507.996 97.6941,505.33 97.5,502.5C 98.9587,502.433 100.292,502.766 101.5,503.5 Z"/></g>
<g><path style="opacity:1" fill="#dea75e" d="M 101.5,503.5 C 103.878,505.878 105.878,508.545 107.5,511.5C 104.41,509.732 102.41,507.065 101.5,503.5 Z"/></g>
<g><path style="opacity:1" fill="#f8d6a5" d="M 79.5,488.5 C 78.0512,490.164 76.0512,490.998 73.5,491C 70.9615,491.796 68.6282,491.629 66.5,490.5C 68.7354,490.795 70.7354,490.461 72.5,489.5C 74.8056,489.007 77.139,488.674 79.5,488.5 Z"/></g>
<g><path style="opacity:1" fill="#f1a967" d="M 54.5,456.5 C 57.2604,459.683 59.2604,463.349 60.5,467.5C 59.8485,468.091 59.1818,468.757 58.5,469.5C 56.7637,465.249 55.4304,460.916 54.5,456.5 Z"/></g>
<g><path style="opacity:1" fill="#4f0509" d="M 251.5,536.5 C 250.749,537.573 249.749,537.74 248.5,537C 237.006,525.949 223.672,522.949 208.5,528C 194.95,535.983 191.45,547.15 198,561.5C 200.833,564.333 203.667,567.167 206.5,570C 210.73,571.29 215.064,571.79 219.5,571.5C 219.04,572.541 217.707,573.375 215.5,574C 212.167,574.667 208.833,574.667 205.5,574C 200.994,569.827 196.827,565.327 193,560.5C 192.773,554.296 192.273,548.129 191.5,542C 193.909,537.093 196.909,532.593 200.5,528.5C 202.743,527.526 205.076,527.192 207.5,527.5C 207.5,526.5 207.5,525.5 207.5,524.5C 211.514,524.666 215.514,524.499 219.5,524C 221.515,523.576 223.349,522.742 225,521.5C 229.36,524.305 234.193,525.972 239.5,526.5C 241.493,528.499 243.827,529.999 246.5,531C 246.167,531.333 245.833,531.667 245.5,532C 247.345,533.128 249.345,533.628 251.5,533.5C 251.5,534.5 251.5,535.5 251.5,536.5 Z"/></g>
<g><path style="opacity:1" fill="#4e0508" d="M 416.5,570.5 C 420.268,571.787 423.935,571.787 427.5,570.5C 433.381,569.638 437.881,566.638 441,561.5C 446.748,549.989 444.915,539.822 435.5,531C 422.916,523.706 410.249,523.706 397.5,531C 394.669,532.666 392.336,534.832 390.5,537.5C 389.209,537.737 388.209,537.404 387.5,536.5C 388.077,533.355 390.077,531.855 393.5,532C 393.167,531.667 392.833,531.333 392.5,531C 404.498,523.308 417.498,521.141 431.5,524.5C 431.5,525.5 431.5,526.5 431.5,527.5C 434.187,527.336 436.854,527.503 439.5,528C 439.167,528.333 438.833,528.667 438.5,529C 441.625,532.094 444.125,535.594 446,539.5C 446.333,538.833 446.667,538.167 447,537.5C 447.762,545.215 447.429,552.881 446,560.5C 438.491,573.329 427.991,576.829 414.5,571C 415.094,570.536 415.761,570.369 416.5,570.5 Z"/></g>
<g><path style="opacity:1" fill="#730605" d="M 189.5,492.5 C 187.032,494.035 184.365,495.035 181.5,495.5C 181.337,497.857 181.503,500.19 182,502.5C 185.565,505.364 188.899,508.364 192,511.5C 196.27,508.396 201.104,506.23 206.5,505C 205.748,504.329 205.414,503.496 205.5,502.5C 207.033,504.355 208.7,506.188 210.5,508C 221.541,509.356 231.208,513.689 239.5,521C 248.63,524.854 257.296,524.02 265.5,518.5C 266.887,520.21 268.221,521.877 269.5,523.5C 270.625,525.129 271.959,526.629 273.5,528C 271.292,528.191 269.292,528.691 267.5,529.5C 262.222,529.642 257.888,531.642 254.5,535.5C 253.391,535.557 252.391,535.89 251.5,536.5C 251.5,535.5 251.5,534.5 251.5,533.5C 249.345,533.628 247.345,533.128 245.5,532C 245.833,531.667 246.167,531.333 246.5,531C 243.827,529.999 241.493,528.499 239.5,526.5C 234.193,525.972 229.36,524.305 225,521.5C 223.349,522.742 221.515,523.576 219.5,524C 215.514,524.499 211.514,524.666 207.5,524.5C 207.5,525.5 207.5,526.5 207.5,527.5C 205.076,527.192 202.743,527.526 200.5,528.5C 196.909,532.593 193.909,537.093 191.5,542C 192.273,548.129 192.773,554.296 193,560.5C 196.827,565.327 200.994,569.827 205.5,574C 208.833,574.667 212.167,574.667 215.5,574C 217.707,573.375 219.04,572.541 219.5,571.5C 220.514,570.326 221.847,569.66 223.5,569.5C 224.473,569.013 225.473,568.513 226.5,568C 223.854,567.503 221.187,567.336 218.5,567.5C 217.5,567.5 216.5,567.5 215.5,567.5C 212.5,565.167 209.833,562.5 207.5,559.5C 206.234,555.468 206.234,551.468 207.5,547.5C 208.921,544.242 211.254,541.742 214.5,540C 214.272,539.601 213.938,539.435 213.5,539.5C 218.316,538.35 223.316,538.184 228.5,539C 230.803,540.124 232.803,541.624 234.5,543.5C 237.36,547.039 239.36,551.039 240.5,555.5C 240.283,560.23 240.617,564.897 241.5,569.5C 240.883,569.389 240.383,569.056 240,568.5C 237.953,571.166 236.453,574.166 235.5,577.5C 231.413,579.042 227.413,580.875 223.5,583C 216.805,583.665 210.138,583.498 203.5,582.5C 200.101,580.962 196.767,579.129 193.5,577C 190.324,573.657 186.991,570.49 183.5,567.5C 174.878,550.585 175.545,534.085 185.5,518C 183.318,515.65 180.985,513.484 178.5,511.5C 175.912,508.012 173.078,504.679 170,501.5C 169.53,500.423 169.697,499.423 170.5,498.5C 173.461,494.039 176.961,490.039 181,486.5C 183.971,488.393 186.804,490.393 189.5,492.5 Z"/></g>
<g><path style="opacity:1" fill="#2e0302" d="M 466.5,517.5 C 471.517,524.176 476.85,530.51 482.5,536.5C 480.795,538.192 478.795,539.525 476.5,540.5C 475.85,540.196 475.183,539.863 474.5,539.5C 473.11,541.203 471.61,541.87 470,541.5C 469.206,538.529 468.539,535.529 468,532.5C 464.619,531.642 461.785,529.642 459.5,526.5C 458.697,525.577 458.53,524.577 459,523.5C 461.663,521.666 464.163,519.666 466.5,517.5 Z"/></g>
<g><path style="opacity:1" fill="#3e0205" d="M 470.5,512.5 C 474.131,514.548 476.464,517.714 477.5,522C 480.784,521.816 482.784,523.316 483.5,526.5C 482.522,527.801 482.855,528.968 484.5,530C 482.895,531.922 483.228,533.089 485.5,533.5C 485.5,535.5 484.5,536.5 482.5,536.5C 476.85,530.51 471.517,524.176 466.5,517.5C 467.604,515.611 468.937,513.945 470.5,512.5 Z"/></g>
<g><path style="opacity:1" fill="#f9efd8" d="M 63.5,512.5 C 68.1884,517.52 72.8551,522.52 77.5,527.5C 79.0818,529.563 80.4151,531.896 81.5,534.5C 79.8211,534.108 78.1545,533.608 76.5,533C 73.9279,527.433 69.5946,524.1 63.5,523C 65.4096,522.592 66.4096,521.425 66.5,519.5C 64.7066,517.573 63.7066,515.239 63.5,512.5 Z"/></g>
<g><path style="opacity:1" fill="#e39f4f" d="M 271.5,518.5 C 276.062,525.366 282.562,528.699 291,528.5C 300.862,526.478 310.362,527.478 319.5,531.5C 329.824,527.322 340.49,526.322 351.5,528.5C 352.552,528.351 353.552,528.517 354.5,529C 352.377,530.194 350.043,530.86 347.5,531C 347.167,531.333 346.833,531.667 346.5,532C 347.416,532.278 348.082,532.778 348.5,533.5C 348.167,533.5 347.833,533.5 347.5,533.5C 345.5,533.5 343.5,533.5 341.5,533.5C 333.668,532.574 326.335,533.908 319.5,537.5C 315.26,535.753 310.927,534.419 306.5,533.5C 301.653,532.381 296.653,532.381 291.5,533.5C 290.209,533.263 289.209,533.596 288.5,534.5C 287.898,532.32 286.565,530.654 284.5,529.5C 280.539,529.462 276.539,530.128 272.5,531.5C 271.158,529.995 269.492,529.328 267.5,529.5C 269.292,528.691 271.292,528.191 273.5,528C 271.959,526.629 270.625,525.129 269.5,523.5C 269.077,521.219 269.744,519.552 271.5,518.5 Z"/></g>
<g><path style="opacity:1" fill="#faa246" d="M 561.5,527.5 C 559.972,528.802 558.972,530.469 558.5,532.5C 555.227,534.434 552.227,536.768 549.5,539.5C 547.926,540.631 546.259,540.798 544.5,540C 547.96,536.704 551.294,533.204 554.5,529.5C 554.137,528.817 553.804,528.15 553.5,527.5C 554.675,527.719 555.675,527.386 556.5,526.5C 559.96,518.636 561.627,518.969 561.5,527.5 Z"/></g>
<g><path style="opacity:1" fill="#f6a44e" d="M 351.5,528.5 C 352.919,527.549 354.585,527.216 356.5,527.5C 361.208,529.56 366.208,530.893 371.5,531.5C 370.311,532.429 368.978,532.762 367.5,532.5C 367.5,533.5 367.5,534.5 367.5,535.5C 371.2,533.54 375.2,532.54 379.5,532.5C 382.45,533.308 385.117,534.642 387.5,536.5C 388.209,537.404 389.209,537.737 390.5,537.5C 390.859,539.766 390.192,541.599 388.5,543C 389.793,543.49 391.127,543.657 392.5,543.5C 393.906,543.973 394.573,544.973 394.5,546.5C 396.437,554.359 396.937,562.359 396,570.5C 395.127,573.618 393.961,576.618 392.5,579.5C 392.624,580.107 392.957,580.44 393.5,580.5C 393.435,580.938 393.601,581.272 394,581.5C 397.32,580.299 400.486,578.966 403.5,577.5C 405.97,577.654 407.97,578.654 409.5,580.5C 407.596,580.738 406.262,581.738 405.5,583.5C 400.216,585.039 394.882,586.373 389.5,587.5C 387.401,586.63 387.068,585.297 388.5,583.5C 386.955,582.548 385.288,582.215 383.5,582.5C 383.5,581.5 383.5,580.5 383.5,579.5C 391.834,567.377 391.5,555.544 382.5,544C 377.122,539.985 371.122,537.985 364.5,538C 357.788,540.206 353.788,544.706 352.5,551.5C 353.985,553.231 355.985,554.231 358.5,554.5C 356.628,556.062 354.295,557.062 351.5,557.5C 353.672,557.676 356.005,557.843 358.5,558C 361.119,559.856 361.952,562.356 361,565.5C 360.667,565.167 360.333,564.833 360,564.5C 357.729,567.463 354.896,568.13 351.5,566.5C 349.588,564.343 347.921,562.009 346.5,559.5C 345.719,560.729 345.219,562.062 345,563.5C 343.841,562.434 343.008,562.767 342.5,564.5C 341.347,558.347 341.18,552.014 342,545.5C 343.74,540.773 346.574,536.94 350.5,534C 349.906,533.536 349.239,533.369 348.5,533.5C 348.082,532.778 347.416,532.278 346.5,532C 346.833,531.667 347.167,531.333 347.5,531C 350.043,530.86 352.377,530.194 354.5,529C 353.552,528.517 352.552,528.351 351.5,528.5 Z"/></g>
<g><path style="opacity:1" fill="#390504" d="M 242.5,535.5 C 242.389,536.117 242.056,536.617 241.5,537C 243.032,537.7 244.032,538.866 244.5,540.5C 243.036,543.003 241.869,545.67 241,548.5C 239.841,545.507 237.675,543.84 234.5,543.5C 232.803,541.624 230.803,540.124 228.5,539C 223.316,538.184 218.316,538.35 213.5,539.5C 211.228,540.441 209.228,541.774 207.5,543.5C 206.855,540.453 207.855,538.287 210.5,537C 209.833,536.667 209.167,536.333 208.5,536C 214.015,536.05 219.682,535.716 225.5,535C 228.132,533.222 227.965,531.722 225,530.5C 221.288,531.594 217.621,532.594 214,533.5C 212.5,533.333 211,533.167 209.5,533C 212.097,532.221 212.097,531.721 209.5,531.5C 221.123,526.63 232.123,527.963 242.5,535.5 Z"/></g>
<g><path style="opacity:1" fill="#d79363" d="M 306.5,533.5 C 303.15,533.335 299.817,533.502 296.5,534C 298.759,535.715 300.926,537.548 303,539.5C 303.483,540.448 303.649,541.448 303.5,542.5C 300.062,538.726 296.062,535.726 291.5,533.5C 296.653,532.381 301.653,532.381 306.5,533.5 Z"/></g>
<g><path style="opacity:1" fill="#f4a752" d="M 79.5,519.5 C 85.2621,525.254 90.5954,531.254 95.5,537.5C 96.4776,540.131 97.4776,542.798 98.5,545.5C 97.675,546.386 96.675,546.719 95.5,546.5C 95.5,545.5 95.5,544.5 95.5,543.5C 94.1667,543.5 92.8333,543.5 91.5,543.5C 88.1667,540.5 84.8333,537.5 81.5,534.5C 80.4151,531.896 79.0818,529.563 77.5,527.5C 77.6567,526.127 77.49,524.793 77,523.5C 73.0172,521.701 70.8506,518.701 70.5,514.5C 73.5,514.167 74.8333,515.5 74.5,518.5C 76.2161,518.629 77.8828,518.962 79.5,519.5 Z"/></g>
<g><path style="opacity:1" fill="#3a0406" d="M 423.5,529.5 C 426.486,529.903 429.152,530.903 431.5,532.5C 427.03,533.125 422.53,532.792 418,531.5C 411.081,531.458 410.247,533.125 415.5,536.5C 416.833,536.833 418.167,537.167 419.5,537.5C 423.457,536.656 427.29,536.323 431,536.5C 430.772,538.704 430.606,540.704 430.5,542.5C 427.626,540.065 424.293,538.731 420.5,538.5C 417.15,538.335 413.817,538.502 410.5,539C 406.819,541.66 403.319,544.493 400,547.5C 399.819,550.695 399.319,553.695 398.5,556.5C 397.737,552.863 396.403,549.53 394.5,546.5C 394.573,544.973 393.906,543.973 392.5,543.5C 390.942,540.756 391.609,538.59 394.5,537C 398.075,534.046 402.075,531.879 406.5,530.5C 412.13,529.708 417.797,529.375 423.5,529.5 Z"/></g>
<g><path style="opacity:1" fill="#dda35e" d="M 494.5,527.5 C 494.631,528.239 494.464,528.906 494,529.5C 490.463,532.171 487.296,535.171 484.5,538.5C 485.689,539.429 487.022,539.762 488.5,539.5C 488.167,540.167 487.833,540.833 487.5,541.5C 485.748,541.418 484.748,542.251 484.5,544C 486.018,547.717 487.018,551.551 487.5,555.5C 485.076,551.649 483.576,547.315 483,542.5C 480.516,539.741 479.35,540.074 479.5,543.5C 477.833,543.5 476.167,543.5 474.5,543.5C 475.167,542.5 475.833,541.5 476.5,540.5C 478.795,539.525 480.795,538.192 482.5,536.5C 484.5,536.5 485.5,535.5 485.5,533.5C 489.026,532.31 492.026,530.31 494.5,527.5 Z"/></g>
<g><path style="opacity:1" fill="#f0a655" d="M 83.5,465.5 C 85.8333,465.5 88.1667,465.5 90.5,465.5C 93.7748,471.731 97.7748,477.397 102.5,482.5C 103.026,484.23 104.026,485.564 105.5,486.5C 106.921,489.009 108.588,491.343 110.5,493.5C 114.176,497.541 117.843,501.541 121.5,505.5C 123.167,507.833 125.167,509.833 127.5,511.5C 130.874,515.876 134.874,519.542 139.5,522.5C 140.5,524.167 141.833,525.5 143.5,526.5C 146.167,528.833 148.833,531.167 151.5,533.5C 152.899,534.89 154.566,535.89 156.5,536.5C 159.167,538.833 161.833,541.167 164.5,543.5C 162.833,543.5 161.167,543.5 159.5,543.5C 159.5,542.5 159.5,541.5 159.5,540.5C 158.167,540.5 156.833,540.5 155.5,540.5C 155.5,541.5 155.5,542.5 155.5,543.5C 151.757,540.632 147.757,538.298 143.5,536.5C 143.719,537.675 143.386,538.675 142.5,539.5C 135.556,541.974 129.223,545.474 123.5,550C 122.167,550.667 120.833,550.667 119.5,550C 107.935,539.936 97.268,529.102 87.5,517.5C 86.8505,515.565 86.5172,513.565 86.5,511.5C 87.8333,511.5 89.1667,511.5 90.5,511.5C 99.4831,521.256 108.816,530.756 118.5,540C 120.167,540.667 121.833,540.667 123.5,540C 129.213,537.819 134.213,534.652 138.5,530.5C 122.718,516.722 108.718,501.389 96.5,484.5C 98.2132,483.365 98.8799,481.698 98.5,479.5C 97.5,479.5 96.5,479.5 95.5,479.5C 95.8841,477.335 95.2174,475.668 93.5,474.5C 92.5481,476.045 92.2148,477.712 92.5,479.5C 91.1667,479.5 89.8333,479.5 88.5,479.5C 89.2778,478.844 89.9444,478.011 90.5,477C 89.3773,474.061 87.7107,471.561 85.5,469.5C 85.2671,467.938 84.6005,466.605 83.5,465.5 Z"/></g>
<g><path style="opacity:1" fill="#f3a654" d="M 100.5,511.5 C 102.995,512.199 105.328,513.199 107.5,514.5C 107.5,513.5 107.5,512.5 107.5,511.5C 109.404,511.738 110.738,512.738 111.5,514.5C 114.014,518.53 117.181,522.196 121,525.5C 122.438,526.9 123.271,528.567 123.5,530.5C 121.062,531.886 118.729,531.553 116.5,529.5C 110.78,523.783 105.446,517.783 100.5,511.5 Z"/></g>
<g><path style="opacity:1" fill="#deb07c" d="M 111.5,514.5 C 116.131,518.63 120.631,522.963 125,527.5C 125.725,529.157 125.225,530.157 123.5,530.5C 123.271,528.567 122.438,526.9 121,525.5C 117.181,522.196 114.014,518.53 111.5,514.5 Z"/></g>
<g><path style="opacity:1" fill="#ecab65" d="M 553.5,527.5 C 553.804,528.15 554.137,528.817 554.5,529.5C 551.294,533.204 547.96,536.704 544.5,540C 546.259,540.798 547.926,540.631 549.5,539.5C 552.227,536.768 555.227,534.434 558.5,532.5C 553.925,537.682 548.925,542.349 543.5,546.5C 543.663,544.143 543.497,541.81 543,539.5C 541.629,541.041 540.129,542.375 538.5,543.5C 541.983,539.228 545.483,534.894 549,530.5C 550.129,528.859 551.629,527.859 553.5,527.5 Z"/></g>
<g><path style="opacity:1" fill="#db9471" d="M 213.5,539.5 C 213.938,539.435 214.272,539.601 214.5,540C 211.254,541.742 208.921,544.242 207.5,547.5C 207.591,545.302 206.925,544.969 205.5,546.5C 205.427,544.973 206.094,543.973 207.5,543.5C 209.228,541.774 211.228,540.441 213.5,539.5 Z"/></g>
<g><path style="opacity:1" fill="#3c0806" d="M 459.5,526.5 C 461.785,529.642 464.619,531.642 468,532.5C 468.539,535.529 469.206,538.529 470,541.5C 471.61,541.87 473.11,541.203 474.5,539.5C 475.183,539.863 475.85,540.196 476.5,540.5C 475.833,541.5 475.167,542.5 474.5,543.5C 472.973,543.427 471.973,544.094 471.5,545.5C 469.255,546.096 467.255,547.096 465.5,548.5C 465.368,540.638 463.368,533.304 459.5,526.5 Z"/></g>
<g><path style="opacity:1" fill="#320a08" d="M 207.5,543.5 C 206.094,543.973 205.427,544.973 205.5,546.5C 204.893,548.746 204.56,551.079 204.5,553.5C 204.287,556.527 204.953,559.193 206.5,561.5C 207.415,563.754 208.748,565.754 210.5,567.5C 202.124,564.252 197.79,558.085 197.5,549C 197.443,544.279 198.943,540.112 202,536.5C 204.128,534.192 206.628,532.526 209.5,531.5C 212.097,531.721 212.097,532.221 209.5,533C 211,533.167 212.5,533.333 214,533.5C 217.621,532.594 221.288,531.594 225,530.5C 227.965,531.722 228.132,533.222 225.5,535C 219.682,535.716 214.015,536.05 208.5,536C 209.167,536.333 209.833,536.667 210.5,537C 207.855,538.287 206.855,540.453 207.5,543.5 Z"/></g>
<g><path style="opacity:1" fill="#340809" d="M 431.5,532.5 C 441.788,539.142 444.288,548.142 439,559.5C 436.167,563.182 432.667,565.849 428.5,567.5C 435.249,560.84 436.749,553.174 433,544.5C 432.292,543.619 431.458,542.953 430.5,542.5C 430.606,540.704 430.772,538.704 431,536.5C 427.29,536.323 423.457,536.656 419.5,537.5C 418.167,537.167 416.833,536.833 415.5,536.5C 410.247,533.125 411.081,531.458 418,531.5C 422.53,532.792 427.03,533.125 431.5,532.5 Z"/></g>
<g><path style="opacity:1" fill="#f7a73d" d="M 164.5,543.5 C 164.833,543.5 165.167,543.5 165.5,543.5C 165.414,544.496 165.748,545.329 166.5,546C 165.584,546.374 164.75,546.874 164,547.5C 161.525,546.014 159.025,544.681 156.5,543.5C 156.167,543.5 155.833,543.5 155.5,543.5C 155.5,542.5 155.5,541.5 155.5,540.5C 156.833,540.5 158.167,540.5 159.5,540.5C 159.5,541.5 159.5,542.5 159.5,543.5C 161.167,543.5 162.833,543.5 164.5,543.5 Z"/></g>
<g><path style="opacity:1" fill="#ecab63" d="M 95.5,537.5 C 103.826,544.493 111.826,551.826 119.5,559.5C 117.173,559.753 115.173,559.086 113.5,557.5C 112.914,557.709 112.414,558.043 112,558.5C 111.506,556.866 111.34,555.199 111.5,553.5C 107.873,553.379 105.54,551.545 104.5,548C 98.6036,547.865 98.2702,549.865 103.5,554C 106.772,554.437 108.439,556.27 108.5,559.5C 106.589,558.925 104.922,557.925 103.5,556.5C 100.129,551.467 96.1291,547.134 91.5,543.5C 92.8333,543.5 94.1667,543.5 95.5,543.5C 95.5,544.5 95.5,545.5 95.5,546.5C 96.675,546.719 97.675,546.386 98.5,545.5C 97.4776,542.798 96.4776,540.131 95.5,537.5 Z"/></g>
<g><path style="opacity:1" fill="#fff3dd" d="M 81.5,534.5 C 84.8333,537.5 88.1667,540.5 91.5,543.5C 96.1291,547.134 100.129,551.467 103.5,556.5C 100.588,554.934 97.921,552.934 95.5,550.5C 93.6471,549.24 91.8138,549.24 90,550.5C 89.8142,548.1 89.3142,545.766 88.5,543.5C 85.7366,540.748 83.4033,537.748 81.5,534.5 Z"/></g>
<g><path style="opacity:1" fill="#efa560" d="M 156.5,543.5 C 159.025,544.681 161.525,546.014 164,547.5C 164.75,546.874 165.584,546.374 166.5,546C 165.748,545.329 165.414,544.496 165.5,543.5C 167.191,544.864 168.858,546.197 170.5,547.5C 168.801,547.34 167.134,547.506 165.5,548C 166.823,548.816 167.489,549.983 167.5,551.5C 162.9,550.041 159.234,547.375 156.5,543.5 Z"/></g>
<g><path style="opacity:1" fill="#f6a449" d="M 487.5,555.5 C 487.232,557.099 487.566,558.432 488.5,559.5C 489.162,563.466 489.495,567.466 489.5,571.5C 486.05,570.756 484.384,572.09 484.5,575.5C 483.078,576.925 481.411,577.925 479.5,578.5C 476.911,578.539 474.911,577.539 473.5,575.5C 474.545,574.122 475.878,573.122 477.5,572.5C 479.39,572.703 480.89,572.037 482,570.5C 482.801,567.633 482.634,564.966 481.5,562.5C 479.874,559.754 479.207,556.754 479.5,553.5C 479.5,551.5 479.5,549.5 479.5,547.5C 477.801,547.34 476.134,547.506 474.5,548C 472.698,549.827 470.532,550.994 468,551.5C 467.333,550.833 467.333,550.167 468,549.5C 470.071,548.897 471.238,547.564 471.5,545.5C 471.973,544.094 472.973,543.427 474.5,543.5C 476.167,543.5 477.833,543.5 479.5,543.5C 479.35,540.074 480.516,539.741 483,542.5C 483.576,547.315 485.076,551.649 487.5,555.5 Z"/></g>
<g><path style="opacity:1" fill="#480604" d="M 242.5,535.5 C 246.813,537.34 247.813,540.007 245.5,543.5C 243.284,547.266 241.617,551.266 240.5,555.5C 239.36,551.039 237.36,547.039 234.5,543.5C 237.675,543.84 239.841,545.507 241,548.5C 241.869,545.67 243.036,543.003 244.5,540.5C 244.032,538.866 243.032,537.7 241.5,537C 242.056,536.617 242.389,536.117 242.5,535.5 Z"/></g>
<g><path style="opacity:1" fill="#eda766" d="M 471.5,545.5 C 471.238,547.564 470.071,548.897 468,549.5C 467.333,550.167 467.333,550.833 468,551.5C 470.532,550.994 472.698,549.827 474.5,548C 476.134,547.506 477.801,547.34 479.5,547.5C 479.5,549.5 479.5,551.5 479.5,553.5C 478.579,552.019 477.412,550.686 476,549.5C 472.38,551.39 468.88,553.39 465.5,555.5C 465.5,553.167 465.5,550.833 465.5,548.5C 467.255,547.096 469.255,546.096 471.5,545.5 Z"/></g>
<g><path style="opacity:1" fill="#faefd5" d="M 487.5,541.5 C 486.026,543.927 486.193,546.26 488,548.5C 488.499,552.152 488.665,555.818 488.5,559.5C 487.566,558.432 487.232,557.099 487.5,555.5C 487.018,551.551 486.018,547.717 484.5,544C 484.748,542.251 485.748,541.418 487.5,541.5 Z"/></g>
<g><path style="opacity:1" fill="#efac44" d="M 170.5,547.5 C 170.833,547.5 171.167,547.5 171.5,547.5C 173.062,549.901 172.729,551.901 170.5,553.5C 169.833,553.5 169.167,553.5 168.5,553.5C 168.167,552.833 167.833,552.167 167.5,551.5C 167.489,549.983 166.823,548.816 165.5,548C 167.134,547.506 168.801,547.34 170.5,547.5 Z"/></g>
<g><path style="opacity:1" fill="#eca05b" d="M 160.5,503.5 C 162.312,503.771 163.978,504.438 165.5,505.5C 168.108,509.756 171.442,513.09 175.5,515.5C 175.5,516.5 175.5,517.5 175.5,518.5C 176.833,518.5 178.167,518.5 179.5,518.5C 179.5,519.5 179.5,520.5 179.5,521.5C 180.5,521.5 181.5,521.5 182.5,521.5C 182.762,520.022 182.429,518.689 181.5,517.5C 179.022,516.278 178.022,514.278 178.5,511.5C 180.985,513.484 183.318,515.65 185.5,518C 175.545,534.085 174.878,550.585 183.5,567.5C 179.312,565.295 175.312,565.795 171.5,569C 173.859,570.242 175.859,571.742 177.5,573.5C 176.127,573.657 174.793,573.49 173.5,573C 170.577,570.554 167.577,568.387 164.5,566.5C 167.1,568.079 169.433,567.745 171.5,565.5C 171.137,564.817 170.804,564.15 170.5,563.5C 172.044,563.703 173.378,564.37 174.5,565.5C 175.652,562.894 175.818,560.227 175,557.5C 173.333,556.267 171.833,554.933 170.5,553.5C 172.729,551.901 173.062,549.901 171.5,547.5C 173.714,539.758 176.714,532.091 180.5,524.5C 177.839,522.173 175.172,519.84 172.5,517.5C 171.299,515.091 169.633,513.091 167.5,511.5C 165.833,509.167 163.833,507.167 161.5,505.5C 161.167,504.833 160.833,504.167 160.5,503.5 Z"/></g>
<g><path style="opacity:1" fill="#de975b" d="M 420.5,538.5 C 424.293,538.731 427.626,540.065 430.5,542.5C 431.458,542.953 432.292,543.619 433,544.5C 436.749,553.174 435.249,560.84 428.5,567.5C 416.356,569.483 416.022,570.483 427.5,570.5C 423.935,571.787 420.268,571.787 416.5,570.5C 416.5,569.833 416.167,569.5 415.5,569.5C 417.167,568.833 418.833,568.167 420.5,567.5C 424.138,567.262 426.971,565.596 429,562.5C 434.702,551.182 431.869,543.182 420.5,538.5 Z"/></g>
<g><path style="opacity:1" fill="#fef3d4" d="M 155.5,552.5 C 154.391,552.443 153.391,552.11 152.5,551.5C 151.02,548.693 148.687,547.027 145.5,546.5C 139.51,549.829 133.51,553.162 127.5,556.5C 127.5,555.5 127.5,554.5 127.5,553.5C 132.281,551.944 136.614,549.61 140.5,546.5C 147.59,543.68 152.59,545.68 155.5,552.5 Z"/></g>
<g><path style="opacity:1" fill="#f5ebd0" d="M 168.5,553.5 C 169.167,553.5 169.833,553.5 170.5,553.5C 171.833,554.933 173.333,556.267 175,557.5C 175.818,560.227 175.652,562.894 174.5,565.5C 173.378,564.37 172.044,563.703 170.5,563.5C 169.473,561.806 168.139,560.473 166.5,559.5C 168.167,559.5 169.833,559.5 171.5,559.5C 170.956,557.284 169.956,555.284 168.5,553.5 Z"/></g>
<g><path style="opacity:1" fill="#edb77e" d="M 542.5,548.5 C 539.105,552.898 535.105,556.564 530.5,559.5C 533.848,555.153 537.848,551.486 542.5,548.5 Z"/></g>
<g><path style="opacity:1" fill="#eaaf5e" d="M 207.5,547.5 C 206.234,551.468 206.234,555.468 207.5,559.5C 207.672,560.492 207.338,561.158 206.5,561.5C 204.953,559.193 204.287,556.527 204.5,553.5C 204.56,551.079 204.893,548.746 205.5,546.5C 206.925,544.969 207.591,545.302 207.5,547.5 Z"/></g>
<g><path style="opacity:1" fill="#eca961" d="M 152.5,551.5 C 153.391,552.11 154.391,552.443 155.5,552.5C 158.622,555.568 162.289,557.902 166.5,559.5C 168.139,560.473 169.473,561.806 170.5,563.5C 167.745,562.02 165.078,562.187 162.5,564C 163.381,564.708 164.047,565.542 164.5,566.5C 162.205,565.864 160.539,564.531 159.5,562.5C 165.944,559.928 165.277,558.928 157.5,559.5C 157.657,558.127 157.49,556.793 157,555.5C 154.882,554.717 153.382,553.384 152.5,551.5 Z"/></g>
<g><path style="opacity:1" fill="#fcf2dc" d="M 103.5,556.5 C 104.922,557.925 106.589,558.925 108.5,559.5C 110.179,559.285 111.179,559.952 111.5,561.5C 115.785,566.452 120.452,571.119 125.5,575.5C 124.448,575.649 123.448,575.483 122.5,575C 119.688,572.099 116.688,569.432 113.5,567C 107.981,565.647 104.648,562.147 103.5,556.5 Z"/></g>
<g><path style="opacity:1" fill="#f3a653" d="M 152.5,551.5 C 153.382,553.384 154.882,554.717 157,555.5C 157.49,556.793 157.657,558.127 157.5,559.5C 165.277,558.928 165.944,559.928 159.5,562.5C 154.587,560.251 149.92,557.584 145.5,554.5C 139.608,558.02 133.608,561.354 127.5,564.5C 125.604,563.519 123.604,562.519 121.5,561.5C 120.702,561.043 120.369,560.376 120.5,559.5C 123.453,559.85 125.787,558.85 127.5,556.5C 133.51,553.162 139.51,549.829 145.5,546.5C 148.687,547.027 151.02,548.693 152.5,551.5 Z"/></g>
<g><path style="opacity:1" fill="#d9a25a" d="M 251.5,536.5 C 252.391,535.89 253.391,535.557 254.5,535.5C 253.313,537.975 251.313,538.975 248.5,538.5C 248.421,539.93 248.754,541.264 249.5,542.5C 248.311,543.429 246.978,543.762 245.5,543.5C 247.813,540.007 246.813,537.34 242.5,535.5C 232.123,527.963 221.123,526.63 209.5,531.5C 206.628,532.526 204.128,534.192 202,536.5C 198.943,540.112 197.443,544.279 197.5,549C 197.79,558.085 202.124,564.252 210.5,567.5C 212.167,567.5 213.833,567.5 215.5,567.5C 216.5,567.5 217.5,567.5 218.5,567.5C 220.167,568.167 221.833,568.833 223.5,569.5C 221.847,569.66 220.514,570.326 219.5,571.5C 215.064,571.79 210.73,571.29 206.5,570C 203.667,567.167 200.833,564.333 198,561.5C 191.45,547.15 194.95,535.983 208.5,528C 223.672,522.949 237.006,525.949 248.5,537C 249.749,537.74 250.749,537.573 251.5,536.5 Z"/></g>
<g><path style="opacity:1" fill="#f4a551" d="M 515.5,527.5 C 515.343,528.873 515.51,530.207 516,531.5C 517.934,529.057 520.434,527.724 523.5,527.5C 516.845,534.152 509.845,540.486 502.5,546.5C 502.167,547.333 501.833,548.167 501.5,549C 503.504,554.347 505.004,559.847 506,565.5C 506.837,567.007 508.004,567.507 509.5,567C 519.35,559.309 529.016,551.476 538.5,543.5C 540.129,542.375 541.629,541.041 543,539.5C 543.497,541.81 543.663,544.143 543.5,546.5C 543.672,547.492 543.338,548.158 542.5,548.5C 537.848,551.486 533.848,555.153 530.5,559.5C 529.5,559.5 528.5,559.5 527.5,559.5C 527.657,560.873 527.49,562.207 527,563.5C 521.953,567.289 517.119,571.289 512.5,575.5C 512.167,575.5 511.833,575.5 511.5,575.5C 511.5,574.5 511.5,573.5 511.5,572.5C 509.473,572.662 507.473,572.495 505.5,572C 508.064,570.519 508.064,569.019 505.5,567.5C 503.014,569.578 502.014,572.245 502.5,575.5C 501.5,575.5 500.5,575.5 499.5,575.5C 500.555,572.927 500.722,570.261 500,567.5C 497.61,562.395 496.11,557.062 495.5,551.5C 494.768,548.734 494.768,546.068 495.5,543.5C 500.593,539.912 505.26,535.745 509.5,531C 511.405,529.579 513.405,528.412 515.5,527.5 Z"/></g>
<g><path style="opacity:1" fill="#faa43d" d="M 170.5,563.5 C 170.804,564.15 171.137,564.817 171.5,565.5C 169.433,567.745 167.1,568.079 164.5,566.5C 164.047,565.542 163.381,564.708 162.5,564C 165.078,562.187 167.745,562.02 170.5,563.5 Z"/></g>
<g><path style="opacity:1" fill="#eda26e" d="M 207.5,559.5 C 209.833,562.5 212.5,565.167 215.5,567.5C 213.833,567.5 212.167,567.5 210.5,567.5C 208.748,565.754 207.415,563.754 206.5,561.5C 207.338,561.158 207.672,560.492 207.5,559.5 Z"/></g>
<g><path style="opacity:1" fill="#eba25d" d="M 478.5,503.5 C 478.167,504.167 477.833,504.833 477.5,505.5C 474.833,507.5 472.5,509.833 470.5,512.5C 468.937,513.945 467.604,515.611 466.5,517.5C 464.163,519.666 461.663,521.666 459,523.5C 458.53,524.577 458.697,525.577 459.5,526.5C 463.368,533.304 465.368,540.638 465.5,548.5C 465.5,550.833 465.5,553.167 465.5,555.5C 465.285,557.774 464.618,559.941 463.5,562C 464.629,564.727 466.296,564.727 468.5,562C 471.567,560.836 473.233,561.836 473.5,565C 473.316,566.376 472.649,567.209 471.5,567.5C 472.234,566.292 472.567,564.959 472.5,563.5C 469.199,563.653 466.199,564.653 463.5,566.5C 462.558,566.392 461.725,566.059 461,565.5C 456.993,568.022 453.159,570.689 449.5,573.5C 451.127,571.37 452.96,569.37 455,567.5C 464.128,550.686 463.628,534.186 453.5,518C 456.638,514.697 459.971,511.531 463.5,508.5C 463.149,512.701 460.983,515.701 457,517.5C 456.517,518.448 456.351,519.448 456.5,520.5C 458.737,519.551 461.071,518.884 463.5,518.5C 463.5,517.5 463.5,516.5 463.5,515.5C 464.675,515.719 465.675,515.386 466.5,514.5C 469.145,510.721 472.145,507.221 475.5,504C 476.448,503.517 477.448,503.351 478.5,503.5 Z"/></g>
<g><path style="opacity:1" fill="#fdf2da" d="M 575.5,512.5 C 574.493,518.134 571.493,522.468 566.5,525.5C 565.723,527.781 564.723,529.948 563.5,532C 556.25,535.767 551.25,541.433 548.5,549C 541.006,551.821 535.34,556.821 531.5,564C 527.248,564.589 524.581,566.922 523.5,571C 520.816,571.778 518.483,573.111 516.5,575C 515.207,575.49 513.873,575.657 512.5,575.5C 517.119,571.289 521.953,567.289 527,563.5C 527.49,562.207 527.657,560.873 527.5,559.5C 528.5,559.5 529.5,559.5 530.5,559.5C 535.105,556.564 539.105,552.898 542.5,548.5C 543.338,548.158 543.672,547.492 543.5,546.5C 548.925,542.349 553.925,537.682 558.5,532.5C 558.972,530.469 559.972,528.802 561.5,527.5C 563.769,525.418 566.269,523.418 569,521.5C 569.873,517.475 572.039,514.475 575.5,512.5 Z"/></g>
<g><path style="opacity:1" fill="#faa344" d="M 119.5,559.5 C 119.833,559.5 120.167,559.5 120.5,559.5C 120.369,560.376 120.702,561.043 121.5,561.5C 123.604,562.519 125.604,563.519 127.5,564.5C 127.5,565.167 127.5,565.833 127.5,566.5C 127.721,567.735 128.388,568.735 129.5,569.5C 126.21,570.244 123.21,569.411 120.5,567C 119.833,565.333 119.167,563.667 118.5,562C 116.19,561.503 113.857,561.337 111.5,561.5C 111.179,559.952 110.179,559.285 108.5,559.5C 108.439,556.27 106.772,554.437 103.5,554C 98.2702,549.865 98.6036,547.865 104.5,548C 105.54,551.545 107.873,553.379 111.5,553.5C 111.34,555.199 111.506,556.866 112,558.5C 112.414,558.043 112.914,557.709 113.5,557.5C 115.173,559.086 117.173,559.753 119.5,559.5 Z"/></g>
<g><path style="opacity:1" fill="#f0a35c" d="M 289.5,535.5 C 293.23,537.753 295.73,541.086 297,545.5C 297.447,555.508 297.28,565.508 296.5,575.5C 296.167,575.5 295.833,575.5 295.5,575.5C 294.834,571.979 294.167,568.313 293.5,564.5C 292.478,564.855 291.811,565.522 291.5,566.5C 286.346,569.498 281.512,569.165 277,565.5C 276.333,562.833 276.333,560.167 277,557.5C 277.759,555.937 278.926,554.937 280.5,554.5C 282.372,556.062 284.705,557.062 287.5,557.5C 285.257,558.474 282.924,558.808 280.5,558.5C 279.906,564.723 282.573,566.723 288.5,564.5C 289.167,563.167 290.167,562.167 291.5,561.5C 292.89,563.203 294.39,563.87 296,563.5C 294.765,555.955 293.765,548.289 293,540.5C 291.667,539.833 290.333,539.167 289,538.5C 288.26,537.251 288.427,536.251 289.5,535.5 Z"/></g>
<g><path style="opacity:1" fill="#d6a358" d="M 427.5,570.5 C 416.022,570.483 416.356,569.483 428.5,567.5C 432.667,565.849 436.167,563.182 439,559.5C 444.288,548.142 441.788,539.142 431.5,532.5C 429.152,530.903 426.486,529.903 423.5,529.5C 421.359,528.837 419.025,528.503 416.5,528.5C 412.859,528.315 409.526,528.981 406.5,530.5C 402.075,531.879 398.075,534.046 394.5,537C 391.609,538.59 390.942,540.756 392.5,543.5C 391.127,543.657 389.793,543.49 388.5,543C 390.192,541.599 390.859,539.766 390.5,537.5C 392.336,534.832 394.669,532.666 397.5,531C 410.249,523.706 422.916,523.706 435.5,531C 444.915,539.822 446.748,549.989 441,561.5C 437.881,566.638 433.381,569.638 427.5,570.5 Z"/></g>
<g><path style="opacity:1" fill="#6b340c" d="M 423.5,529.5 C 417.797,529.375 412.13,529.708 406.5,530.5C 409.526,528.981 412.859,528.315 416.5,528.5C 419.025,528.503 421.359,528.837 423.5,529.5 Z"/></g>
<g><path style="opacity:1" fill="#c76955" d="M 218.5,567.5 C 221.187,567.336 223.854,567.503 226.5,568C 225.473,568.513 224.473,569.013 223.5,569.5C 221.833,568.833 220.167,568.167 218.5,567.5 Z"/></g>
<g><path style="opacity:1" fill="#e3a05d" d="M 394.5,546.5 C 396.403,549.53 397.737,552.863 398.5,556.5C 398.5,559.167 398.5,561.833 398.5,564.5C 397.76,570.126 396.094,575.459 393.5,580.5C 392.957,580.44 392.624,580.107 392.5,579.5C 393.961,576.618 395.127,573.618 396,570.5C 396.937,562.359 396.437,554.359 394.5,546.5 Z"/></g>
<g><path style="opacity:1" fill="#bd6444" d="M 420.5,567.5 C 418.833,568.167 417.167,568.833 415.5,569.5C 414.711,569.217 414.044,568.717 413.5,568C 415.81,567.503 418.143,567.337 420.5,567.5 Z"/></g>
<g><path style="opacity:1" fill="#f3a24f" d="M 471.5,567.5 C 471.047,568.458 470.381,569.292 469.5,570C 461.592,573.292 454.259,577.458 447.5,582.5C 446.5,582.5 445.5,582.5 444.5,582.5C 442.393,581.532 440.059,581.198 437.5,581.5C 441.749,579.259 445.749,576.592 449.5,573.5C 453.159,570.689 456.993,568.022 461,565.5C 461.725,566.059 462.558,566.392 463.5,566.5C 466.199,564.653 469.199,563.653 472.5,563.5C 472.567,564.959 472.234,566.292 471.5,567.5 Z"/></g>
<g><path style="opacity:1" fill="#efa863" d="M 111.5,561.5 C 113.857,561.337 116.19,561.503 118.5,562C 119.167,563.667 119.833,565.333 120.5,567C 123.21,569.411 126.21,570.244 129.5,569.5C 128.388,568.735 127.721,567.735 127.5,566.5C 130.117,567.786 132.45,569.453 134.5,571.5C 130.778,570.68 128.445,572.013 127.5,575.5C 126.833,575.5 126.167,575.5 125.5,575.5C 120.452,571.119 115.785,566.452 111.5,561.5 Z"/></g>
<g><path style="opacity:1" fill="#380b09" d="M 398.5,564.5 C 399.583,568.966 401.25,573.299 403.5,577.5C 400.486,578.966 397.32,580.299 394,581.5C 393.601,581.272 393.435,580.938 393.5,580.5C 396.094,575.459 397.76,570.126 398.5,564.5 Z"/></g>
<g><path style="opacity:1" fill="#eab06d" d="M 127.5,575.5 C 129.199,575.34 130.866,575.506 132.5,576C 136.404,579.083 140.071,582.25 143.5,585.5C 137.392,583.388 132.058,580.055 127.5,575.5 Z"/></g>
<g><path style="opacity:1" fill="#fca444" d="M 511.5,575.5 C 506.388,576.397 502.055,578.897 498.5,583C 494.159,583.906 490.159,585.406 486.5,587.5C 490.031,583.809 494.031,580.642 498.5,578C 499.252,577.329 499.586,576.496 499.5,575.5C 500.5,575.5 501.5,575.5 502.5,575.5C 502.014,572.245 503.014,569.578 505.5,567.5C 508.064,569.019 508.064,570.519 505.5,572C 507.473,572.495 509.473,572.662 511.5,572.5C 511.5,573.5 511.5,574.5 511.5,575.5 Z"/></g>
<g><path style="opacity:1" fill="#fdf1d2" d="M 142.5,575.5 C 143.978,575.238 145.311,575.571 146.5,576.5C 150.161,578.498 153.161,581.165 155.5,584.5C 151.255,582.904 147.255,580.904 143.5,578.5C 143.443,577.391 143.11,576.391 142.5,575.5 Z"/></g>
<g><path style="opacity:1" fill="#310d0b" d="M 241.5,569.5 C 242.067,573.428 243.4,577.094 245.5,580.5C 245.376,581.107 245.043,581.44 244.5,581.5C 241.5,580.167 238.5,578.833 235.5,577.5C 236.453,574.166 237.953,571.166 240,568.5C 240.383,569.056 240.883,569.389 241.5,569.5 Z"/></g>
<g><path style="opacity:1" fill="#f8a448" d="M 134.5,571.5 C 136.615,573.891 139.281,575.224 142.5,575.5C 143.11,576.391 143.443,577.391 143.5,578.5C 145.915,580.089 147.915,582.256 149.5,585C 147.527,585.495 145.527,585.662 143.5,585.5C 140.071,582.25 136.404,579.083 132.5,576C 130.866,575.506 129.199,575.34 127.5,575.5C 128.445,572.013 130.778,570.68 134.5,571.5 Z"/></g>
<g><path style="opacity:1" fill="#fef2d3" d="M 511.5,576.5 C 511.5,577.5 511.5,578.5 511.5,579.5C 510.448,579.351 509.448,579.517 508.5,580C 505.567,583.463 501.9,585.297 497.5,585.5C 501.576,581.837 506.243,578.837 511.5,576.5 Z"/></g>
<g><path style="opacity:1" fill="#f9f7ec" d="M 159.5,562.5 C 160.539,564.531 162.205,565.864 164.5,566.5C 167.577,568.387 170.577,570.554 173.5,573C 174.793,573.49 176.127,573.657 177.5,573.5C 179.508,575.083 181.841,576.083 184.5,576.5C 185.458,577.962 186.624,579.295 188,580.5C 188.749,581.635 188.583,582.635 187.5,583.5C 184.526,584.577 181.526,584.577 178.5,583.5C 169.415,578.02 160.415,572.354 151.5,566.5C 150.339,564.328 148.505,562.994 146,562.5C 144.433,563.856 142.6,564.523 140.5,564.5C 140.33,565.822 140.663,566.989 141.5,568C 145.222,570.19 148.889,572.356 152.5,574.5C 160.099,579.976 168.099,584.976 176.5,589.5C 178.618,590.946 180.951,591.613 183.5,591.5C 184.191,593.022 185.358,594.022 187,594.5C 188.925,592.461 191.092,590.795 193.5,589.5C 195.156,588.854 196.823,588.187 198.5,587.5C 201.189,587.545 202.523,588.879 202.5,591.5C 198.5,594.833 194.833,598.5 191.5,602.5C 188.157,601.776 184.824,600.943 181.5,600C 179.937,598.053 177.937,596.886 175.5,596.5C 172.667,594.655 169.667,592.989 166.5,591.5C 166.167,591.5 165.833,591.5 165.5,591.5C 162.443,588.777 159.11,586.444 155.5,584.5C 153.161,581.165 150.161,578.498 146.5,576.5C 145.311,575.571 143.978,575.238 142.5,575.5C 139.281,575.224 136.615,573.891 134.5,571.5C 132.45,569.453 130.117,567.786 127.5,566.5C 127.5,565.833 127.5,565.167 127.5,564.5C 133.608,561.354 139.608,558.02 145.5,554.5C 149.92,557.584 154.587,560.251 159.5,562.5 Z"/></g>
<g><path style="opacity:1" fill="#ecae65" d="M 151.5,566.5 C 149.956,566.297 148.622,565.63 147.5,564.5C 147.167,565.167 146.833,565.833 146.5,566.5C 148.486,569.165 150.486,571.831 152.5,574.5C 148.889,572.356 145.222,570.19 141.5,568C 140.663,566.989 140.33,565.822 140.5,564.5C 142.6,564.523 144.433,563.856 146,562.5C 148.505,562.994 150.339,564.328 151.5,566.5 Z"/></g>
<g><path style="opacity:1" fill="#f9a546" d="M 437.5,581.5 C 440.059,581.198 442.393,581.532 444.5,582.5C 441.269,583.862 438.102,585.529 435,587.5C 434.5,594.158 434.334,600.825 434.5,607.5C 433.167,607.5 431.833,607.5 430.5,607.5C 430.336,600.798 430.669,594.131 431.5,587.5C 427.606,586.483 423.773,586.483 420,587.5C 419.5,594.158 419.334,600.825 419.5,607.5C 418.833,607.5 418.167,607.5 417.5,607.5C 416.549,600.005 415.882,592.339 415.5,584.5C 421.026,584.821 426.36,584.488 431.5,583.5C 433.302,582.542 435.302,581.875 437.5,581.5 Z"/></g>
<g><path style="opacity:1" fill="#eeaa5d" d="M 143.5,578.5 C 147.255,580.904 151.255,582.904 155.5,584.5C 159.11,586.444 162.443,588.777 165.5,591.5C 163.738,591.357 162.071,591.691 160.5,592.5C 158.619,588.066 155.286,586.066 150.5,586.5C 150.629,588.216 150.962,589.883 151.5,591.5C 147.91,590.558 145.243,588.558 143.5,585.5C 145.527,585.662 147.527,585.495 149.5,585C 147.915,582.256 145.915,580.089 143.5,578.5 Z"/></g>
<g><path style="opacity:1" fill="#eaab5a" d="M 499.5,575.5 C 499.586,576.496 499.252,577.329 498.5,578C 494.031,580.642 490.031,583.809 486.5,587.5C 483.553,588.644 480.887,590.311 478.5,592.5C 476.929,591.691 475.262,591.357 473.5,591.5C 481.114,587.017 488.447,582.017 495.5,576.5C 496.689,575.571 498.022,575.238 499.5,575.5 Z"/></g>
<g><path style="opacity:1" fill="#f5a44d" d="M 151.5,566.5 C 160.415,572.354 169.415,578.02 178.5,583.5C 182.085,587.474 185.752,587.474 189.5,583.5C 190.428,582.232 190.595,580.899 190,579.5C 188.259,578.242 186.426,577.242 184.5,576.5C 181.841,576.083 179.508,575.083 177.5,573.5C 175.859,571.742 173.859,570.242 171.5,569C 175.312,565.795 179.312,565.295 183.5,567.5C 186.991,570.49 190.324,573.657 193.5,577C 196.767,579.129 200.101,580.962 203.5,582.5C 199.281,582.888 195.281,583.888 191.5,585.5C 191.5,586.5 191.5,587.5 191.5,588.5C 188.412,588.639 185.745,589.639 183.5,591.5C 180.951,591.613 178.618,590.946 176.5,589.5C 168.099,584.976 160.099,579.976 152.5,574.5C 150.486,571.831 148.486,569.165 146.5,566.5C 146.833,565.833 147.167,565.167 147.5,564.5C 148.622,565.63 149.956,566.297 151.5,566.5 Z"/></g>
<g><path style="opacity:1" fill="#e6ab6d" d="M 184.5,576.5 C 186.426,577.242 188.259,578.242 190,579.5C 190.595,580.899 190.428,582.232 189.5,583.5C 185.752,587.474 182.085,587.474 178.5,583.5C 181.526,584.577 184.526,584.577 187.5,583.5C 188.583,582.635 188.749,581.635 188,580.5C 186.624,579.295 185.458,577.962 184.5,576.5 Z"/></g>
<g><path style="opacity:1" fill="#f19f5b" d="M 383.5,579.5 C 383.5,580.5 383.5,581.5 383.5,582.5C 385.288,582.215 386.955,582.548 388.5,583.5C 387.068,585.297 387.401,586.63 389.5,587.5C 389.5,587.833 389.5,588.167 389.5,588.5C 387.435,588.517 385.435,588.85 383.5,589.5C 383.799,587.396 383.466,585.396 382.5,583.5C 376.621,589.023 369.621,591.023 361.5,589.5C 361.66,591.199 361.494,592.866 361,594.5C 359.007,597.661 357.507,600.994 356.5,604.5C 352.302,604.946 348.302,605.946 344.5,607.5C 349.391,604.455 353.891,600.788 358,596.5C 359.707,594.091 360.54,591.425 360.5,588.5C 369.482,588.85 377.148,585.85 383.5,579.5 Z"/></g>
<g><path style="opacity:1" fill="#f6a549" d="M 165.5,591.5 C 165.833,591.5 166.167,591.5 166.5,591.5C 165.076,593.155 163.243,594.488 161,595.5C 158.089,593.389 154.923,592.055 151.5,591.5C 150.962,589.883 150.629,588.216 150.5,586.5C 155.286,586.066 158.619,588.066 160.5,592.5C 162.071,591.691 163.738,591.357 165.5,591.5 Z"/></g>
<g><path style="opacity:1" fill="#f9f6eb" d="M 527.5,533.5 C 523.183,536.152 519.516,539.485 516.5,543.5C 514.5,544.833 512.833,546.5 511.5,548.5C 509.143,550.321 508.809,552.655 510.5,555.5C 512.345,556.395 513.678,555.728 514.5,553.5C 526.452,544.382 537.285,534.049 547,522.5C 549.763,519.177 550.263,515.51 548.5,511.5C 550.789,512.714 552.123,514.714 552.5,517.5C 550.151,519.204 549.151,521.537 549.5,524.5C 552.42,523.558 555.086,522.224 557.5,520.5C 555.422,522.39 554.089,524.724 553.5,527.5C 551.629,527.859 550.129,528.859 549,530.5C 545.483,534.894 541.983,539.228 538.5,543.5C 529.016,551.476 519.35,559.309 509.5,567C 508.004,567.507 506.837,567.007 506,565.5C 505.004,559.847 503.504,554.347 501.5,549C 501.833,548.167 502.167,547.333 502.5,546.5C 509.845,540.486 516.845,534.152 523.5,527.5C 525.86,525.14 528.194,522.806 530.5,520.5C 532.121,517.633 531.454,515.3 528.5,513.5C 523.416,517.58 519.083,522.246 515.5,527.5C 513.405,528.412 511.405,529.579 509.5,531C 505.26,535.745 500.593,539.912 495.5,543.5C 494.307,543.97 493.64,544.97 493.5,546.5C 493.436,548.557 494.102,550.223 495.5,551.5C 496.11,557.062 497.61,562.395 500,567.5C 500.722,570.261 500.555,572.927 499.5,575.5C 498.022,575.238 496.689,575.571 495.5,576.5C 488.447,582.017 481.114,587.017 473.5,591.5C 473.167,591.5 472.833,591.5 472.5,591.5C 463.379,596.628 454.046,601.295 444.5,605.5C 442.858,607.081 440.858,607.747 438.5,607.5C 437.5,607.5 436.5,607.5 435.5,607.5C 435.334,601.158 435.5,594.825 436,588.5C 440.1,586.868 443.933,584.868 447.5,582.5C 454.259,577.458 461.592,573.292 469.5,570C 470.381,569.292 471.047,568.458 471.5,567.5C 472.649,567.209 473.316,566.376 473.5,565C 473.233,561.836 471.567,560.836 468.5,562C 466.296,564.727 464.629,564.727 463.5,562C 464.618,559.941 465.285,557.774 465.5,555.5C 468.88,553.39 472.38,551.39 476,549.5C 477.412,550.686 478.579,552.019 479.5,553.5C 479.207,556.754 479.874,559.754 481.5,562.5C 482.426,566.93 481.093,570.263 477.5,572.5C 475.878,573.122 474.545,574.122 473.5,575.5C 464.822,579.853 456.155,584.187 447.5,588.5C 443.993,590.461 442.66,593.461 443.5,597.5C 455.325,592.387 466.992,586.721 478.5,580.5C 479.298,580.043 479.631,579.376 479.5,578.5C 481.411,577.925 483.078,576.925 484.5,575.5C 486.679,575.16 488.512,574.16 490,572.5C 490.939,567.864 490.439,563.531 488.5,559.5C 488.665,555.818 488.499,552.152 488,548.5C 486.193,546.26 486.026,543.927 487.5,541.5C 487.833,540.833 488.167,540.167 488.5,539.5C 500.105,531.561 510.439,522.227 519.5,511.5C 522.5,509.167 525.167,506.5 527.5,503.5C 528.712,502.77 529.712,501.77 530.5,500.5C 532.149,501.648 533.649,502.981 535,504.5C 537.375,508.714 539.541,513.047 541.5,517.5C 537.243,523.097 532.577,528.43 527.5,533.5 Z"/></g>
<g><path style="opacity:1" fill="#f1a756" d="M 473.5,575.5 C 474.911,577.539 476.911,578.539 479.5,578.5C 479.631,579.376 479.298,580.043 478.5,580.5C 466.992,586.721 455.325,592.387 443.5,597.5C 442.66,593.461 443.993,590.461 447.5,588.5C 456.155,584.187 464.822,579.853 473.5,575.5 Z"/></g>
<g><path style="opacity:1" fill="#f3c18b" d="M 481.5,562.5 C 482.634,564.966 482.801,567.633 482,570.5C 480.89,572.037 479.39,572.703 477.5,572.5C 481.093,570.263 482.426,566.93 481.5,562.5 Z"/></g>
<g><path style="opacity:1" fill="#eeac6e" d="M 488.5,559.5 C 490.439,563.531 490.939,567.864 490,572.5C 488.512,574.16 486.679,575.16 484.5,575.5C 484.384,572.09 486.05,570.756 489.5,571.5C 489.495,567.466 489.162,563.466 488.5,559.5 Z"/></g>
<g><path style="opacity:1" fill="#e5b07d" d="M 511.5,548.5 C 511.241,550.989 512.241,552.656 514.5,553.5C 513.678,555.728 512.345,556.395 510.5,555.5C 508.809,552.655 509.143,550.321 511.5,548.5 Z"/></g>
<g><path style="opacity:1" fill="#e8b87f" d="M 495.5,543.5 C 494.768,546.068 494.768,548.734 495.5,551.5C 494.102,550.223 493.436,548.557 493.5,546.5C 493.64,544.97 494.307,543.97 495.5,543.5 Z"/></g>
<g><path style="opacity:1" fill="#ecaa6a" d="M 527.5,533.5 C 525.732,538.935 522.066,542.268 516.5,543.5C 519.516,539.485 523.183,536.152 527.5,533.5 Z"/></g>
<g><path style="opacity:1" fill="#f7a247" d="M 530.5,520.5 C 528.194,522.806 525.86,525.14 523.5,527.5C 520.434,527.724 517.934,529.057 516,531.5C 515.51,530.207 515.343,528.873 515.5,527.5C 519.813,523.522 524.146,519.522 528.5,515.5C 530.217,516.668 530.884,518.335 530.5,520.5 Z"/></g>
<g><path style="opacity:1" fill="#e2b179" d="M 530.5,520.5 C 530.884,518.335 530.217,516.668 528.5,515.5C 524.146,519.522 519.813,523.522 515.5,527.5C 519.083,522.246 523.416,517.58 528.5,513.5C 531.454,515.3 532.121,517.633 530.5,520.5 Z"/></g>
<g><path style="opacity:1" fill="#f0a860" d="M 511.5,575.5 C 511.5,575.833 511.5,576.167 511.5,576.5C 506.243,578.837 501.576,581.837 497.5,585.5C 492.674,588.802 487.674,591.969 482.5,595C 481.552,595.483 480.552,595.649 479.5,595.5C 481.035,593.462 483.035,591.795 485.5,590.5C 486.127,589.583 486.461,588.583 486.5,587.5C 490.159,585.406 494.159,583.906 498.5,583C 502.055,578.897 506.388,576.397 511.5,575.5 Z"/></g>
<g><path style="opacity:1" fill="#730a07" d="M 383.5,579.5 C 377.148,585.85 369.482,588.85 360.5,588.5C 360.54,591.425 359.707,594.091 358,596.5C 353.891,600.788 349.391,604.455 344.5,607.5C 344.167,607.5 343.833,607.5 343.5,607.5C 335.187,610.387 327.187,614.053 319.5,618.5C 311.644,614.441 303.644,610.774 295.5,607.5C 286.611,603.95 280.945,597.617 278.5,588.5C 258.318,587.479 248.818,576.813 250,556.5C 254.589,541.786 264.422,536.286 279.5,540C 281.333,541.833 283.167,543.667 285,545.5C 285.567,548.168 286.067,550.834 286.5,553.5C 284.833,553.5 283.167,553.5 281.5,553.5C 282.167,552.833 282.833,552.167 283.5,551.5C 284.738,551.19 284.738,550.69 283.5,550C 270.507,543.67 262.174,547.337 258.5,561C 260.618,575.405 268.951,581.571 283.5,579.5C 285.322,585.305 288.322,590.471 292.5,595C 300.999,600.223 309.999,604.39 319.5,607.5C 329.296,604.062 338.629,599.562 347.5,594C 351.084,589.664 353.751,584.83 355.5,579.5C 374.812,580.703 382.312,572.037 378,553.5C 372.599,547.657 366.099,545.99 358.5,548.5C 356.77,549.026 355.436,550.026 354.5,551.5C 353.833,551.5 353.167,551.5 352.5,551.5C 353.788,544.706 357.788,540.206 364.5,538C 371.122,537.985 377.122,539.985 382.5,544C 391.5,555.544 391.834,567.377 383.5,579.5 Z"/></g>
<g><path style="opacity:1" fill="#feedcb" d="M 409.5,603.5 C 411.859,597.477 411.859,591.31 409.5,585C 402.795,585.842 396.128,587.008 389.5,588.5C 389.5,588.167 389.5,587.833 389.5,587.5C 394.882,586.373 400.216,585.039 405.5,583.5C 407.518,582.377 409.518,582.377 411.5,583.5C 412.497,590.134 412.83,596.8 412.5,603.5C 411.5,603.5 410.5,603.5 409.5,603.5 Z"/></g>
<g><path style="opacity:1" fill="#730f09" d="M 288.5,534.5 C 289.209,533.596 290.209,533.263 291.5,533.5C 296.062,535.726 300.062,538.726 303.5,542.5C 301.046,544.684 300.046,547.517 300.5,551C 300.787,556.395 302.453,561.228 305.5,565.5C 303.568,568.177 303.068,571.177 304,574.5C 305.113,576.329 306.613,577.163 308.5,577C 305.38,574.006 304.714,570.506 306.5,566.5C 308.819,569.294 311.819,571.128 315.5,572C 316.399,573.652 317.399,575.152 318.5,576.5C 317.376,578.792 316.043,580.958 314.5,583C 316.276,590.403 319.443,591.236 324,585.5C 322.062,581.208 320.896,576.541 320.5,571.5C 325.111,570.445 329.277,568.445 333,565.5C 333.765,565.57 334.265,565.903 334.5,566.5C 335.468,564.393 335.802,562.059 335.5,559.5C 336.5,559.5 337.5,559.5 338.5,559.5C 339.143,553.123 338.143,547.123 335.5,541.5C 339.508,538.83 343.508,536.164 347.5,533.5C 347.833,533.5 348.167,533.5 348.5,533.5C 349.239,533.369 349.906,533.536 350.5,534C 346.574,536.94 343.74,540.773 342,545.5C 341.18,552.014 341.347,558.347 342.5,564.5C 344.688,575.604 340.355,581.937 329.5,583.5C 329.664,586.187 329.497,588.854 329,591.5C 326.273,594.731 323.106,597.397 319.5,599.5C 312.353,596.389 309.02,591.055 309.5,583.5C 307.473,583.662 305.473,583.495 303.5,583C 300.594,580.931 298.261,578.431 296.5,575.5C 297.28,565.508 297.447,555.508 297,545.5C 295.73,541.086 293.23,537.753 289.5,535.5C 289.5,534.833 289.167,534.5 288.5,534.5 Z"/></g>
<g><path style="opacity:1" fill="#450203" d="M 306.5,533.5 C 310.927,534.419 315.26,535.753 319.5,537.5C 326.335,533.908 333.668,532.574 341.5,533.5C 339.091,535.902 337.091,538.569 335.5,541.5C 338.143,547.123 339.143,553.123 338.5,559.5C 337.5,559.5 336.5,559.5 335.5,559.5C 335.802,562.059 335.468,564.393 334.5,566.5C 334.265,565.903 333.765,565.57 333,565.5C 329.277,568.445 325.111,570.445 320.5,571.5C 318.744,572.552 318.077,574.219 318.5,576.5C 317.399,575.152 316.399,573.652 315.5,572C 311.819,571.128 308.819,569.294 306.5,566.5C 306.5,565.833 306.167,565.5 305.5,565.5C 302.453,561.228 300.787,556.395 300.5,551C 300.046,547.517 301.046,544.684 303.5,542.5C 303.649,541.448 303.483,540.448 303,539.5C 300.926,537.548 298.759,535.715 296.5,534C 299.817,533.502 303.15,533.335 306.5,533.5 Z"/></g>
<g><path style="opacity:1" fill="#6e0706" d="M 317.5,563.5 C 321.565,564.422 323.898,562.922 324.5,559C 322.981,553.363 319.815,552.196 315,555.5C 314.297,557.929 314.463,560.262 315.5,562.5C 314.778,562.918 314.278,563.584 314,564.5C 305.257,557.665 305.424,550.998 314.5,544.5C 318.167,543.167 321.833,543.167 325.5,544.5C 326.833,546.5 328.5,548.167 330.5,549.5C 333.466,559.231 329.966,565.231 320,567.5C 318.915,566.264 318.082,564.931 317.5,563.5 Z"/></g>
<g><path style="opacity:1" fill="#dc9970" d="M 341.5,533.5 C 343.5,533.5 345.5,533.5 347.5,533.5C 343.508,536.164 339.508,538.83 335.5,541.5C 337.091,538.569 339.091,535.902 341.5,533.5 Z"/></g>
<g><path style="opacity:1" fill="#faa343" d="M 486.5,587.5 C 486.461,588.583 486.127,589.583 485.5,590.5C 483.035,591.795 481.035,593.462 479.5,595.5C 476.626,594.903 474.292,593.569 472.5,591.5C 472.833,591.5 473.167,591.5 473.5,591.5C 475.262,591.357 476.929,591.691 478.5,592.5C 480.887,590.311 483.553,588.644 486.5,587.5 Z"/></g>
<g><path style="opacity:1" fill="#f1a555" d="M 235.5,577.5 C 238.5,578.833 241.5,580.167 244.5,581.5C 243.903,582.139 243.07,582.472 242,582.5C 239.315,580.933 236.482,580.433 233.5,581C 236.542,583.875 240.209,585.208 244.5,585C 245.056,585.383 245.389,585.883 245.5,586.5C 240.218,586.083 235.218,584.75 230.5,582.5C 227.025,583.372 224.692,585.372 223.5,588.5C 234.016,591.758 244.683,594.424 255.5,596.5C 256.32,600.24 254.987,602.573 251.5,603.5C 238.922,599.894 226.422,595.894 214,591.5C 211.761,592.091 209.594,592.758 207.5,593.5C 206.051,597.472 203.551,600.806 200,603.5C 199.209,604.745 198.709,606.078 198.5,607.5C 195.953,606.066 193.619,604.4 191.5,602.5C 194.833,598.5 198.5,594.833 202.5,591.5C 205.36,589.283 205.027,587.783 201.5,587C 198.073,585.834 195.407,586.668 193.5,589.5C 191.092,590.795 188.925,592.461 187,594.5C 185.358,594.022 184.191,593.022 183.5,591.5C 185.745,589.639 188.412,588.639 191.5,588.5C 191.5,587.5 191.5,586.5 191.5,585.5C 195.281,583.888 199.281,582.888 203.5,582.5C 210.138,583.498 216.805,583.665 223.5,583C 227.413,580.875 231.413,579.042 235.5,577.5 Z"/></g>
<g><path style="opacity:1" fill="#fbe5ba" d="M 202.5,591.5 C 202.523,588.879 201.189,587.545 198.5,587.5C 196.823,588.187 195.156,588.854 193.5,589.5C 195.407,586.668 198.073,585.834 201.5,587C 205.027,587.783 205.36,589.283 202.5,591.5 Z"/></g>
<g><path style="opacity:1" fill="#efaa60" d="M 151.5,591.5 C 154.923,592.055 158.089,593.389 161,595.5C 163.243,594.488 165.076,593.155 166.5,591.5C 169.667,592.989 172.667,594.655 175.5,596.5C 172.86,596.954 170.527,598.121 168.5,600C 169.108,600.87 169.941,601.37 171,601.5C 172.44,600.852 173.94,600.519 175.5,600.5C 175.5,601.5 175.5,602.5 175.5,603.5C 176.833,603.5 178.167,603.5 179.5,603.5C 179.5,604.833 179.5,606.167 179.5,607.5C 171.122,602.808 162.455,598.308 153.5,594C 152.619,593.292 151.953,592.458 151.5,591.5 Z"/></g>
<g><path style="opacity:1" fill="#eab47b" d="M 283.5,551.5 C 277.388,548.677 271.388,548.844 265.5,552C 263.951,553.214 262.785,554.714 262,556.5C 260.175,565.707 263.342,572.54 271.5,577C 276.202,577.172 280.868,577.672 285.5,578.5C 286.569,581.539 287.735,584.539 289,587.5C 289.708,588.381 290.542,589.047 291.5,589.5C 291.511,591.017 292.177,592.184 293.5,593C 301.739,597.952 310.406,602.119 319.5,605.5C 326.305,602.058 333.305,598.891 340.5,596C 342.747,594.723 344.747,593.223 346.5,591.5C 350.342,587.673 352.675,583.006 353.5,577.5C 360.196,578.151 366.529,576.985 372.5,574C 378.069,567.734 378.903,560.901 375,553.5C 371.177,550.036 366.677,548.703 361.5,549.5C 360.209,549.737 359.209,549.404 358.5,548.5C 366.099,545.99 372.599,547.657 378,553.5C 382.312,572.037 374.812,580.703 355.5,579.5C 353.751,584.83 351.084,589.664 347.5,594C 338.629,599.562 329.296,604.062 319.5,607.5C 309.999,604.39 300.999,600.223 292.5,595C 288.322,590.471 285.322,585.305 283.5,579.5C 268.951,581.571 260.618,575.405 258.5,561C 262.174,547.337 270.507,543.67 283.5,550C 284.738,550.69 284.738,551.19 283.5,551.5 Z"/></g>
<g><path style="opacity:1" fill="#440607" d="M 361.5,549.5 C 366.677,548.703 371.177,550.036 375,553.5C 378.903,560.901 378.069,567.734 372.5,574C 366.529,576.985 360.196,578.151 353.5,577.5C 352.675,583.006 350.342,587.673 346.5,591.5C 342.743,591.071 339.243,591.737 336,593.5C 335.517,594.448 335.351,595.448 335.5,596.5C 333.4,596.477 331.567,597.144 330,598.5C 329.5,598.167 329,597.833 328.5,597.5C 330.796,596.632 331.463,595.298 330.5,593.5C 331.265,590.904 331.599,588.237 331.5,585.5C 336.402,585.384 340.069,583.217 342.5,579C 344.109,574.335 344.942,569.501 345,564.5C 350.102,568.863 355.602,569.53 361.5,566.5C 362.652,563.894 362.818,561.227 362,558.5C 361.502,556.456 360.335,555.122 358.5,554.5C 355.985,554.231 353.985,553.231 352.5,551.5C 353.167,551.5 353.833,551.5 354.5,551.5C 357.01,551.073 359.343,550.407 361.5,549.5 Z"/></g>
<g><path style="opacity:1" fill="#461209" d="M 295.5,575.5 C 296.725,582.051 300.725,585.384 307.5,585.5C 307.5,587.5 307.5,589.5 307.5,591.5C 306.698,590.048 306.198,588.382 306,586.5C 304.108,587.617 303.275,589.284 303.5,591.5C 297.438,591.525 297.105,592.692 302.5,595C 301.833,595.333 301.167,595.667 300.5,596C 303.146,596.497 305.813,596.664 308.5,596.5C 308.5,595.5 308.5,594.5 308.5,593.5C 311.952,596.731 315.619,599.731 319.5,602.5C 323.476,599.855 327.143,596.855 330.5,593.5C 331.463,595.298 330.796,596.632 328.5,597.5C 329,597.833 329.5,598.167 330,598.5C 331.567,597.144 333.4,596.477 335.5,596.5C 335.351,595.448 335.517,594.448 336,593.5C 339.243,591.737 342.743,591.071 346.5,591.5C 344.747,593.223 342.747,594.723 340.5,596C 333.305,598.891 326.305,602.058 319.5,605.5C 310.406,602.119 301.739,597.952 293.5,593C 292.177,592.184 291.511,591.017 291.5,589.5C 292.822,589.33 293.989,589.663 295,590.5C 296.214,588.951 297.714,587.785 299.5,587C 297.586,585.587 296.253,583.753 295.5,581.5C 294.372,580.738 293.205,580.071 292,579.5C 293.061,577.944 293.561,575.444 293.5,572C 293.453,569.705 292.787,567.871 291.5,566.5C 291.811,565.522 292.478,564.855 293.5,564.5C 294.167,568.313 294.834,571.979 295.5,575.5 Z"/></g>
<g><path style="opacity:1" fill="#e49c67" d="M 320.5,571.5 C 320.896,576.541 322.062,581.208 324,585.5C 319.443,591.236 316.276,590.403 314.5,583C 316.043,580.958 317.376,578.792 318.5,576.5C 318.077,574.219 318.744,572.552 320.5,571.5 Z"/></g>
<g><path style="opacity:1" fill="#d68358" d="M 305.5,565.5 C 306.167,565.5 306.5,565.833 306.5,566.5C 304.714,570.506 305.38,574.006 308.5,577C 306.613,577.163 305.113,576.329 304,574.5C 303.068,571.177 303.568,568.177 305.5,565.5 Z"/></g>
<g><path style="opacity:1" fill="#e09265" d="M 334.5,566.5 C 336.52,571.105 335.52,574.771 331.5,577.5C 331.167,577.333 330.833,577.167 330.5,577C 334.835,574.336 335.501,571.003 332.5,567C 333.094,566.536 333.761,566.369 334.5,566.5 Z"/></g>
<g><path style="opacity:1" fill="#430707" d="M 283.5,551.5 C 282.833,552.167 282.167,552.833 281.5,553.5C 280.833,553.5 280.5,553.833 280.5,554.5C 278.926,554.937 277.759,555.937 277,557.5C 276.333,560.167 276.333,562.833 277,565.5C 281.512,569.165 286.346,569.498 291.5,566.5C 292.787,567.871 293.453,569.705 293.5,572C 293.561,575.444 293.061,577.944 292,579.5C 293.205,580.071 294.372,580.738 295.5,581.5C 296.253,583.753 297.586,585.587 299.5,587C 297.714,587.785 296.214,588.951 295,590.5C 293.989,589.663 292.822,589.33 291.5,589.5C 290.542,589.047 289.708,588.381 289,587.5C 287.735,584.539 286.569,581.539 285.5,578.5C 280.868,577.672 276.202,577.172 271.5,577C 263.342,572.54 260.175,565.707 262,556.5C 262.785,554.714 263.951,553.214 265.5,552C 271.388,548.844 277.388,548.677 283.5,551.5 Z"/></g>
<g><path style="opacity:1" fill="#e8a367" d="M 358.5,554.5 C 360.335,555.122 361.502,556.456 362,558.5C 362.818,561.227 362.652,563.894 361.5,566.5C 355.602,569.53 350.102,568.863 345,564.5C 344.942,569.501 344.109,574.335 342.5,579C 340.069,583.217 336.402,585.384 331.5,585.5C 331.599,588.237 331.265,590.904 330.5,593.5C 327.143,596.855 323.476,599.855 319.5,602.5C 315.619,599.731 311.952,596.731 308.5,593.5C 308.167,592.833 307.833,592.167 307.5,591.5C 307.5,589.5 307.5,587.5 307.5,585.5C 300.725,585.384 296.725,582.051 295.5,575.5C 295.833,575.5 296.167,575.5 296.5,575.5C 298.261,578.431 300.594,580.931 303.5,583C 305.473,583.495 307.473,583.662 309.5,583.5C 309.02,591.055 312.353,596.389 319.5,599.5C 323.106,597.397 326.273,594.731 329,591.5C 329.497,588.854 329.664,586.187 329.5,583.5C 340.355,581.937 344.688,575.604 342.5,564.5C 343.008,562.767 343.841,562.434 345,563.5C 345.219,562.062 345.719,560.729 346.5,559.5C 347.921,562.009 349.588,564.343 351.5,566.5C 354.896,568.13 357.729,567.463 360,564.5C 360.333,564.833 360.667,565.167 361,565.5C 361.952,562.356 361.119,559.856 358.5,558C 356.005,557.843 353.672,557.676 351.5,557.5C 354.295,557.062 356.628,556.062 358.5,554.5 Z"/></g>
<g><path style="opacity:1" fill="#4f2111" d="M 318.5,580.5 C 323.289,582.2 323.622,584.533 319.5,587.5C 315.967,585.58 315.633,583.246 318.5,580.5 Z"/></g>
<g><path style="opacity:1" fill="#f0a353" d="M 317.5,563.5 C 316.508,563.672 315.842,563.338 315.5,562.5C 314.463,560.262 314.297,557.929 315,555.5C 319.815,552.196 322.981,553.363 324.5,559C 323.898,562.922 321.565,564.422 317.5,563.5 Z"/></g>
<g><path style="opacity:1" fill="#ad6e5e" d="M 358.5,548.5 C 359.209,549.404 360.209,549.737 361.5,549.5C 359.343,550.407 357.01,551.073 354.5,551.5C 355.436,550.026 356.77,549.026 358.5,548.5 Z"/></g>
<g><path style="opacity:1" fill="#f2a657" d="M 472.5,591.5 C 474.292,593.569 476.626,594.903 479.5,595.5C 473.156,600.007 466.489,604.007 459.5,607.5C 455.043,608.961 451.043,610.961 447.5,613.5C 442.121,615.175 436.788,616.842 431.5,618.5C 431.5,617.5 431.5,616.5 431.5,615.5C 438.124,613.838 444.457,611.672 450.5,609C 450.833,608.667 451.167,608.333 451.5,608C 448.94,607.616 446.606,606.783 444.5,605.5C 454.046,601.295 463.379,596.628 472.5,591.5 Z"/></g>
<g><path style="opacity:1" fill="#f7cb9b" d="M 428.5,588.5 C 429.492,595.982 429.825,603.648 429.5,611.5C 428.313,613.975 426.313,614.975 423.5,614.5C 424.622,613.053 426.122,612.053 428,611.5C 428.5,603.841 428.666,596.174 428.5,588.5 Z"/></g>
<g><path style="opacity:1" fill="#e6ab6a" d="M 257.5,591.5 C 260.375,592.623 263.375,593.456 266.5,594C 267.804,594.804 268.471,595.971 268.5,597.5C 265.824,601.518 263.658,605.851 262,610.5C 259.758,613.474 257.592,613.807 255.5,611.5C 255.5,611.167 255.5,610.833 255.5,610.5C 257.144,610.714 258.644,610.38 260,609.5C 261.912,605.34 264.079,601.34 266.5,597.5C 262.957,596.222 259.957,594.222 257.5,591.5 Z"/></g>
<g><path style="opacity:1" fill="#fca142" d="M 175.5,596.5 C 178.794,599.59 182.294,602.59 186,605.5C 186.167,605.833 186.333,606.167 186.5,606.5C 184.955,607.452 183.288,607.785 181.5,607.5C 181.167,607.5 180.833,607.5 180.5,607.5C 180.167,607.5 179.833,607.5 179.5,607.5C 179.5,606.167 179.5,604.833 179.5,603.5C 178.167,603.5 176.833,603.5 175.5,603.5C 175.5,602.5 175.5,601.5 175.5,600.5C 173.94,600.519 172.44,600.852 171,601.5C 169.941,601.37 169.108,600.87 168.5,600C 170.527,598.121 172.86,596.954 175.5,596.5 Z"/></g>
<g><path style="opacity:1" fill="#f9f7ec" d="M 245.5,586.5 C 249.816,587.57 253.816,589.236 257.5,591.5C 259.957,594.222 262.957,596.222 266.5,597.5C 264.079,601.34 261.912,605.34 260,609.5C 258.644,610.38 257.144,610.714 255.5,610.5C 242.126,608.239 229.126,604.572 216.5,599.5C 214.303,599.848 212.47,600.848 211,602.5C 210.493,603.996 210.993,605.163 212.5,606C 220.706,608.089 228.706,610.589 236.5,613.5C 236.833,613.5 237.167,613.5 237.5,613.5C 243.319,615.252 249.319,616.586 255.5,617.5C 255.5,617.833 255.5,618.167 255.5,618.5C 256.694,619.777 258.36,620.444 260.5,620.5C 263.131,620.679 265.465,620.013 267.5,618.5C 268.537,614.333 269.87,610.333 271.5,606.5C 271.222,604.654 271.889,603.32 273.5,602.5C 275.705,603.871 277.372,605.704 278.5,608C 276.531,612.774 274.198,617.274 271.5,621.5C 271.5,622.167 271.5,622.833 271.5,623.5C 269.311,625.507 266.645,626.507 263.5,626.5C 263.167,626.5 262.833,626.5 262.5,626.5C 258.837,624.584 254.837,623.584 250.5,623.5C 239.927,621.918 229.593,619.418 219.5,616C 212.595,612.867 205.595,610.033 198.5,607.5C 198.709,606.078 199.209,604.745 200,603.5C 203.551,600.806 206.051,597.472 207.5,593.5C 209.594,592.758 211.761,592.091 214,591.5C 226.422,595.894 238.922,599.894 251.5,603.5C 254.987,602.573 256.32,600.24 255.5,596.5C 244.683,594.424 234.016,591.758 223.5,588.5C 224.692,585.372 227.025,583.372 230.5,582.5C 235.218,584.75 240.218,586.083 245.5,586.5 Z"/></g>
<g><path style="opacity:1" fill="#eda65d" d="M 409.5,580.5 C 416.515,583.236 423.849,584.236 431.5,583.5C 426.36,584.488 421.026,584.821 415.5,584.5C 415.882,592.339 416.549,600.005 417.5,607.5C 417.158,608.338 416.492,608.672 415.5,608.5C 414.209,606.685 412.376,605.685 410,605.5C 406.719,606.965 403.219,607.632 399.5,607.5C 399.611,606.883 399.944,606.383 400.5,606C 403.546,605.261 406.546,604.428 409.5,603.5C 410.5,603.5 411.5,603.5 412.5,603.5C 412.83,596.8 412.497,590.134 411.5,583.5C 409.518,582.377 407.518,582.377 405.5,583.5C 406.262,581.738 407.596,580.738 409.5,580.5 Z"/></g>
<g><path style="opacity:1" fill="#edae69" d="M 175.5,596.5 C 177.937,596.886 179.937,598.053 181.5,600C 184.824,600.943 188.157,601.776 191.5,602.5C 191.48,604.143 192.147,605.476 193.5,606.5C 191.604,607.466 189.604,607.799 187.5,607.5C 187.281,608.675 187.614,609.675 188.5,610.5C 189.739,610.942 190.739,611.609 191.5,612.5C 187.326,612.341 183.992,610.675 181.5,607.5C 183.288,607.785 184.955,607.452 186.5,606.5C 186.333,606.167 186.167,605.833 186,605.5C 182.294,602.59 178.794,599.59 175.5,596.5 Z"/></g>
<g><path style="opacity:1" fill="#f2a758" d="M 255.5,610.5 C 255.5,610.833 255.5,611.167 255.5,611.5C 250.28,611.612 245.28,610.612 240.5,608.5C 239.614,609.325 239.281,610.325 239.5,611.5C 237.821,611.285 236.821,611.952 236.5,613.5C 228.706,610.589 220.706,608.089 212.5,606C 210.993,605.163 210.493,603.996 211,602.5C 212.47,600.848 214.303,599.848 216.5,599.5C 229.126,604.572 242.126,608.239 255.5,610.5 Z"/></g>
<g><path style="opacity:1" fill="#f8a34c" d="M 415.5,608.5 C 413.039,609.531 410.373,610.198 407.5,610.5C 403.302,609.125 398.969,608.458 394.5,608.5C 395.919,607.549 397.585,607.216 399.5,607.5C 403.219,607.632 406.719,606.965 410,605.5C 412.376,605.685 414.209,606.685 415.5,608.5 Z"/></g>
<g><path style="opacity:1" fill="#e6a55f" d="M 444.5,582.5 C 445.5,582.5 446.5,582.5 447.5,582.5C 443.933,584.868 440.1,586.868 436,588.5C 435.5,594.825 435.334,601.158 435.5,607.5C 436.5,607.5 437.5,607.5 438.5,607.5C 435.564,608.834 432.564,610.167 429.5,611.5C 429.825,603.648 429.492,595.982 428.5,588.5C 425.833,588.5 423.167,588.5 420.5,588.5C 420.5,594.833 420.5,601.167 420.5,607.5C 420.167,607.5 419.833,607.5 419.5,607.5C 419.334,600.825 419.5,594.158 420,587.5C 423.773,586.483 427.606,586.483 431.5,587.5C 430.669,594.131 430.336,600.798 430.5,607.5C 431.833,607.5 433.167,607.5 434.5,607.5C 434.334,600.825 434.5,594.158 435,587.5C 438.102,585.529 441.269,583.862 444.5,582.5 Z"/></g>
<g><path style="opacity:1" fill="#ecaa64" d="M 291.5,623.5 C 290.167,623.5 288.833,623.5 287.5,623.5C 288.219,620.927 289.219,618.427 290.5,616C 289.005,614.839 287.505,613.673 286,612.5C 283.133,616.283 280.299,619.95 277.5,623.5C 279.215,620.407 280.548,617.074 281.5,613.5C 280.349,612.269 279.183,612.269 278,613.5C 276.988,617.236 274.821,619.903 271.5,621.5C 274.198,617.274 276.531,612.774 278.5,608C 277.372,605.704 275.705,603.871 273.5,602.5C 271.889,603.32 271.222,604.654 271.5,606.5C 270.85,606.804 270.183,607.137 269.5,607.5C 267.883,611.235 265.883,614.735 263.5,618C 260.854,618.497 258.187,618.664 255.5,618.5C 255.5,618.167 255.5,617.833 255.5,617.5C 257.924,617.808 260.257,617.474 262.5,616.5C 265.721,612.725 267.888,608.391 269,603.5C 272.298,599.653 275.631,599.653 279,603.5C 280.14,606.102 280.973,608.769 281.5,611.5C 283.827,611.335 285.993,610.669 288,609.5C 289.188,610.563 289.688,611.897 289.5,613.5C 291.124,613.36 292.29,614.027 293,615.5C 293.712,618.438 293.212,621.104 291.5,623.5 Z"/></g>
<g><path style="opacity:1" fill="#fcf2db" d="M 180.5,607.5 C 180.833,607.5 181.167,607.5 181.5,607.5C 183.992,610.675 187.326,612.341 191.5,612.5C 200.117,615.592 208.45,619.258 216.5,623.5C 213.482,623.665 210.482,623.498 207.5,623C 200.84,618.494 193.507,615.494 185.5,614C 182.466,612.809 180.799,610.642 180.5,607.5 Z"/></g>
<g><path style="opacity:1" fill="#f3a650" d="M 394.5,608.5 C 398.969,608.458 403.302,609.125 407.5,610.5C 406.4,611.558 405.066,612.392 403.5,613C 396.593,614.001 389.926,615.501 383.5,617.5C 378.135,617.956 372.801,618.623 367.5,619.5C 367.5,617.5 367.5,615.5 367.5,613.5C 376.582,612.25 385.582,610.583 394.5,608.5 Z"/></g>
<g><path style="opacity:1" fill="#fcedd0" d="M 459.5,607.5 C 456.871,612.148 452.871,614.148 447.5,613.5C 451.043,610.961 455.043,608.961 459.5,607.5 Z"/></g>
<g><path style="opacity:1" fill="#eaae70" d="M 237.5,613.5 C 244.13,613.067 250.13,614.4 255.5,617.5C 249.319,616.586 243.319,615.252 237.5,613.5 Z"/></g>
<g><path style="opacity:1" fill="#faa344" d="M 444.5,605.5 C 446.606,606.783 448.94,607.616 451.5,608C 451.167,608.333 450.833,608.667 450.5,609C 444.457,611.672 438.124,613.838 431.5,615.5C 431.5,616.5 431.5,617.5 431.5,618.5C 427.369,619.088 423.369,619.921 419.5,621C 418.241,620.077 416.908,619.243 415.5,618.5C 417.353,617.24 419.186,617.24 421,618.5C 421.41,617.099 421.91,615.766 422.5,614.5C 422.833,614.5 423.167,614.5 423.5,614.5C 426.313,614.975 428.313,613.975 429.5,611.5C 432.564,610.167 435.564,608.834 438.5,607.5C 440.858,607.747 442.858,607.081 444.5,605.5 Z"/></g>
<g><path style="opacity:1" fill="#fee7bf" d="M 361.5,607.5 C 361.833,607.5 362.167,607.5 362.5,607.5C 362.243,613.777 361.243,619.944 359.5,626C 359.743,626.902 360.077,627.735 360.5,628.5C 359.252,627.666 358.585,626.333 358.5,624.5C 359.828,618.862 360.828,613.195 361.5,607.5 Z"/></g>
<g><path style="opacity:1" fill="#fcf3e1" d="M 428.5,588.5 C 428.666,596.174 428.5,603.841 428,611.5C 426.122,612.053 424.622,613.053 423.5,614.5C 423.167,614.5 422.833,614.5 422.5,614.5C 417.897,615.82 413.23,617.153 408.5,618.5C 407.23,616.389 405.23,615.389 402.5,615.5C 396.269,617.103 389.936,617.769 383.5,617.5C 389.926,615.501 396.593,614.001 403.5,613C 405.066,612.392 406.4,611.558 407.5,610.5C 410.373,610.198 413.039,609.531 415.5,608.5C 416.492,608.672 417.158,608.338 417.5,607.5C 418.167,607.5 418.833,607.5 419.5,607.5C 419.833,607.5 420.167,607.5 420.5,607.5C 420.5,601.167 420.5,594.833 420.5,588.5C 423.167,588.5 425.833,588.5 428.5,588.5 Z"/></g>
<g><path style="opacity:1" fill="#f9fdfc" d="M 420.5,607.5 C 422.446,602.604 423.113,597.271 422.5,591.5C 424.167,591.5 425.833,591.5 427.5,591.5C 427.666,596.844 427.499,602.177 427,607.5C 424.607,610.041 422.44,610.041 420.5,607.5 Z"/></g>
<g><path style="opacity:1" fill="#f7a44b" d="M 267.5,529.5 C 269.492,529.328 271.158,529.995 272.5,531.5C 276.539,530.128 280.539,529.462 284.5,529.5C 286.565,530.654 287.898,532.32 288.5,534.5C 289.167,534.5 289.5,534.833 289.5,535.5C 288.427,536.251 288.26,537.251 289,538.5C 290.333,539.167 291.667,539.833 293,540.5C 293.765,548.289 294.765,555.955 296,563.5C 294.39,563.87 292.89,563.203 291.5,561.5C 290.167,562.167 289.167,563.167 288.5,564.5C 282.573,566.723 279.906,564.723 280.5,558.5C 282.924,558.808 285.257,558.474 287.5,557.5C 284.705,557.062 282.372,556.062 280.5,554.5C 280.5,553.833 280.833,553.5 281.5,553.5C 283.167,553.5 284.833,553.5 286.5,553.5C 286.067,550.834 285.567,548.168 285,545.5C 283.167,543.667 281.333,541.833 279.5,540C 264.422,536.286 254.589,541.786 250,556.5C 248.818,576.813 258.318,587.479 278.5,588.5C 280.945,597.617 286.611,603.95 295.5,607.5C 296.067,609.03 296.733,610.53 297.5,612C 300.877,612.452 304.211,613.118 307.5,614C 311.598,616.811 316.098,618.644 321,619.5C 327.013,615.762 333.513,613.262 340.5,612C 341.386,610.385 342.386,608.885 343.5,607.5C 343.833,607.5 344.167,607.5 344.5,607.5C 348.302,605.946 352.302,604.946 356.5,604.5C 357.507,600.994 359.007,597.661 361,594.5C 361.494,592.866 361.66,591.199 361.5,589.5C 369.621,591.023 376.621,589.023 382.5,583.5C 383.466,585.396 383.799,587.396 383.5,589.5C 382.969,591.624 381.635,593.124 379.5,594C 375.099,594.911 370.932,596.411 367,598.5C 366.568,599.6 367.068,600.267 368.5,600.5C 371.42,599.414 374.42,598.748 377.5,598.5C 381.983,598.468 385.983,597.468 389.5,595.5C 390.568,594.566 391.901,594.232 393.5,594.5C 396.807,593.949 400.14,593.616 403.5,593.5C 403.5,594.833 403.5,596.167 403.5,597.5C 401.517,597.157 400.183,597.824 399.5,599.5C 389.972,602.182 380.306,604.682 370.5,607C 367.854,607.497 365.187,607.664 362.5,607.5C 362.167,607.5 361.833,607.5 361.5,607.5C 359.735,610.393 358.568,613.726 358,617.5C 357.503,620.146 357.336,622.813 357.5,625.5C 355.5,625.5 353.5,625.5 351.5,625.5C 351.5,624.833 351.5,624.167 351.5,623.5C 352.75,623.423 353.583,622.756 354,621.5C 354.667,618.167 354.667,614.833 354,611.5C 353.586,611.043 353.086,610.709 352.5,610.5C 346.179,612.804 342.512,617.137 341.5,623.5C 337.167,623.5 332.833,623.5 328.5,623.5C 325.175,624.16 321.842,624.826 318.5,625.5C 316.452,625.328 314.452,624.995 312.5,624.5C 305.588,623.538 298.588,623.205 291.5,623.5C 293.212,621.104 293.712,618.438 293,615.5C 292.29,614.027 291.124,613.36 289.5,613.5C 289.688,611.897 289.188,610.563 288,609.5C 285.993,610.669 283.827,611.335 281.5,611.5C 280.973,608.769 280.14,606.102 279,603.5C 275.631,599.653 272.298,599.653 269,603.5C 267.888,608.391 265.721,612.725 262.5,616.5C 260.257,617.474 257.924,617.808 255.5,617.5C 250.13,614.4 244.13,613.067 237.5,613.5C 237.167,613.5 236.833,613.5 236.5,613.5C 236.821,611.952 237.821,611.285 239.5,611.5C 239.281,610.325 239.614,609.325 240.5,608.5C 245.28,610.612 250.28,611.612 255.5,611.5C 257.592,613.807 259.758,613.474 262,610.5C 263.658,605.851 265.824,601.518 268.5,597.5C 268.471,595.971 267.804,594.804 266.5,594C 263.375,593.456 260.375,592.623 257.5,591.5C 253.816,589.236 249.816,587.57 245.5,586.5C 245.389,585.883 245.056,585.383 244.5,585C 240.209,585.208 236.542,583.875 233.5,581C 236.482,580.433 239.315,580.933 242,582.5C 243.07,582.472 243.903,582.139 244.5,581.5C 245.043,581.44 245.376,581.107 245.5,580.5C 243.4,577.094 242.067,573.428 241.5,569.5C 240.617,564.897 240.283,560.23 240.5,555.5C 241.617,551.266 243.284,547.266 245.5,543.5C 246.978,543.762 248.311,543.429 249.5,542.5C 248.754,541.264 248.421,539.93 248.5,538.5C 251.313,538.975 253.313,537.975 254.5,535.5C 257.888,531.642 262.222,529.642 267.5,529.5 Z"/></g>
<g><path style="opacity:1" fill="#f09b5d" d="M 295.5,607.5 C 303.644,610.774 311.644,614.441 319.5,618.5C 327.187,614.053 335.187,610.387 343.5,607.5C 342.386,608.885 341.386,610.385 340.5,612C 333.513,613.262 327.013,615.762 321,619.5C 316.098,618.644 311.598,616.811 307.5,614C 304.211,613.118 300.877,612.452 297.5,612C 296.733,610.53 296.067,609.03 295.5,607.5 Z"/></g>
<g><path style="opacity:1" fill="#3d030f" d="M 307.5,591.5 C 307.833,592.167 308.167,592.833 308.5,593.5C 308.5,594.5 308.5,595.5 308.5,596.5C 305.813,596.664 303.146,596.497 300.5,596C 301.167,595.667 301.833,595.333 302.5,595C 297.105,592.692 297.438,591.525 303.5,591.5C 303.275,589.284 304.108,587.617 306,586.5C 306.198,588.382 306.698,590.048 307.5,591.5 Z"/></g>
<g><path style="opacity:1" fill="#fceed5" d="M 271.5,606.5 C 269.87,610.333 268.537,614.333 267.5,618.5C 265.465,620.013 263.131,620.679 260.5,620.5C 258.36,620.444 256.694,619.777 255.5,618.5C 258.187,618.664 260.854,618.497 263.5,618C 265.883,614.735 267.883,611.235 269.5,607.5C 270.183,607.137 270.85,606.804 271.5,606.5 Z"/></g>
<g><path style="opacity:1" fill="#f5a54e" d="M 191.5,602.5 C 193.619,604.4 195.953,606.066 198.5,607.5C 205.595,610.033 212.595,612.867 219.5,616C 229.593,619.418 239.927,621.918 250.5,623.5C 251.765,624.479 253.099,625.479 254.5,626.5C 257.096,625.787 259.763,625.787 262.5,626.5C 262.833,626.5 263.167,626.5 263.5,626.5C 268.209,627.045 272.875,628.212 277.5,630C 280.817,630.498 284.15,630.665 287.5,630.5C 287.5,630.833 287.5,631.167 287.5,631.5C 276.566,632.433 265.9,632.433 255.5,631.5C 251.802,631.448 248.135,631.114 244.5,630.5C 242.833,630.5 241.167,630.5 239.5,630.5C 232.278,627.86 224.945,625.527 217.5,623.5C 217.167,623.5 216.833,623.5 216.5,623.5C 208.45,619.258 200.117,615.592 191.5,612.5C 190.739,611.609 189.739,610.942 188.5,610.5C 187.614,609.675 187.281,608.675 187.5,607.5C 189.604,607.799 191.604,607.466 193.5,606.5C 192.147,605.476 191.48,604.143 191.5,602.5 Z"/></g>
<g><path style="opacity:1" fill="#faa546" d="M 277.5,623.5 C 277.167,624.167 276.833,624.833 276.5,625.5C 274.219,625.923 272.552,625.256 271.5,623.5C 271.5,622.833 271.5,622.167 271.5,621.5C 274.821,619.903 276.988,617.236 278,613.5C 279.183,612.269 280.349,612.269 281.5,613.5C 280.548,617.074 279.215,620.407 277.5,623.5 Z"/></g>
<g><path style="opacity:1" fill="#f0a559" d="M 422.5,614.5 C 421.91,615.766 421.41,617.099 421,618.5C 419.186,617.24 417.353,617.24 415.5,618.5C 416.908,619.243 418.241,620.077 419.5,621C 423.369,619.921 427.369,619.088 431.5,618.5C 428.746,619.641 426.079,620.975 423.5,622.5C 421.883,623.038 420.216,623.371 418.5,623.5C 417.66,621.214 416.16,620.881 414,622.5C 411.065,620.808 407.898,620.142 404.5,620.5C 405.671,619.655 407.005,618.989 408.5,618.5C 413.23,617.153 417.897,615.82 422.5,614.5 Z"/></g>
<g><path style="opacity:1" fill="#fdf0db" d="M 447.5,613.5 C 444.634,615.937 441.634,618.437 438.5,621C 435.77,621.728 433.103,621.562 430.5,620.5C 428.382,621.946 426.049,622.613 423.5,622.5C 426.079,620.975 428.746,619.641 431.5,618.5C 436.788,616.842 442.121,615.175 447.5,613.5 Z"/></g>
<g><path style="opacity:1" fill="#faf8ec" d="M 291.5,623.5 C 298.588,623.205 305.588,623.538 312.5,624.5C 314.891,627.917 318.225,629.25 322.5,628.5C 330.211,629.247 337.211,627.581 343.5,623.5C 343.34,621.801 343.506,620.134 344,618.5C 352.98,610.542 355.48,612.209 351.5,623.5C 351.5,624.167 351.5,624.833 351.5,625.5C 351.5,626.5 351.5,627.5 351.5,628.5C 346.341,630.1 341.007,630.934 335.5,631C 319.494,631.5 303.494,631.333 287.5,630.5C 284.003,629.598 280.337,628.931 276.5,628.5C 276.5,627.5 276.5,626.5 276.5,625.5C 276.833,624.833 277.167,624.167 277.5,623.5C 280.299,619.95 283.133,616.283 286,612.5C 287.505,613.673 289.005,614.839 290.5,616C 289.219,618.427 288.219,620.927 287.5,623.5C 288.833,623.5 290.167,623.5 291.5,623.5 Z"/></g>
<g><path style="opacity:1" fill="#ecac6a" d="M 351.5,623.5 C 355.48,612.209 352.98,610.542 344,618.5C 343.506,620.134 343.34,621.801 343.5,623.5C 342.833,623.5 342.167,623.5 341.5,623.5C 342.512,617.137 346.179,612.804 352.5,610.5C 353.086,610.709 353.586,611.043 354,611.5C 354.667,614.833 354.667,618.167 354,621.5C 353.583,622.756 352.75,623.423 351.5,623.5 Z"/></g>
<g><path style="opacity:1" fill="#fba244" d="M 404.5,620.5 C 407.898,620.142 411.065,620.808 414,622.5C 416.16,620.881 417.66,621.214 418.5,623.5C 417.209,623.263 416.209,623.596 415.5,624.5C 411.476,624.497 407.476,624.164 403.5,623.5C 401.667,623.415 400.334,622.748 399.5,621.5C 401.216,621.371 402.883,621.038 404.5,620.5 Z"/></g>
<g><path style="opacity:1" fill="#f9f8ee" d="M 409.5,603.5 C 406.546,604.428 403.546,605.261 400.5,606C 399.944,606.383 399.611,606.883 399.5,607.5C 397.585,607.216 395.919,607.549 394.5,608.5C 385.582,610.583 376.582,612.25 367.5,613.5C 367.5,615.5 367.5,617.5 367.5,619.5C 368.964,620.16 370.631,620.493 372.5,620.5C 376.395,619.861 380.062,618.861 383.5,617.5C 389.936,617.769 396.269,617.103 402.5,615.5C 405.23,615.389 407.23,616.389 408.5,618.5C 407.005,618.989 405.671,619.655 404.5,620.5C 402.883,621.038 401.216,621.371 399.5,621.5C 388.584,623.263 377.918,625.596 367.5,628.5C 366.833,628.5 366.167,628.5 365.5,628.5C 363.833,628.5 362.167,628.5 360.5,628.5C 360.077,627.735 359.743,626.902 359.5,626C 361.243,619.944 362.243,613.777 362.5,607.5C 365.187,607.664 367.854,607.497 370.5,607C 380.306,604.682 389.972,602.182 399.5,599.5C 401.467,599.739 403.301,599.406 405,598.5C 405.497,596.19 405.663,593.857 405.5,591.5C 401.076,591.272 397.076,592.272 393.5,594.5C 391.901,594.232 390.568,594.566 389.5,595.5C 385.2,595.755 381.2,596.755 377.5,598.5C 374.42,598.748 371.42,599.414 368.5,600.5C 367.068,600.267 366.568,599.6 367,598.5C 370.932,596.411 375.099,594.911 379.5,594C 381.635,593.124 382.969,591.624 383.5,589.5C 385.435,588.85 387.435,588.517 389.5,588.5C 396.128,587.008 402.795,585.842 409.5,585C 411.859,591.31 411.859,597.477 409.5,603.5 Z"/></g>
<g><path style="opacity:1" fill="#f5ca9b" d="M 383.5,617.5 C 380.062,618.861 376.395,619.861 372.5,620.5C 370.631,620.493 368.964,620.16 367.5,619.5C 372.801,618.623 378.135,617.956 383.5,617.5 Z"/></g>
<g><path style="opacity:1" fill="#f7cb7c" d="M 389.5,595.5 C 385.983,597.468 381.983,598.468 377.5,598.5C 381.2,596.755 385.2,595.755 389.5,595.5 Z"/></g>
<g><path style="opacity:1" fill="#efbf83" d="M 399.5,599.5 C 400.183,597.824 401.517,597.157 403.5,597.5C 403.5,596.167 403.5,594.833 403.5,593.5C 400.14,593.616 396.807,593.949 393.5,594.5C 397.076,592.272 401.076,591.272 405.5,591.5C 405.663,593.857 405.497,596.19 405,598.5C 403.301,599.406 401.467,599.739 399.5,599.5 Z"/></g>
<g><path style="opacity:1" fill="#f2a85a" d="M 399.5,621.5 C 400.334,622.748 401.667,623.415 403.5,623.5C 407.476,624.164 411.476,624.497 415.5,624.5C 408.649,626.802 401.649,628.969 394.5,631C 390.855,631.719 387.188,632.219 383.5,632.5C 387.796,631.06 392.129,629.393 396.5,627.5C 396.5,626.5 396.5,625.5 396.5,624.5C 387.182,627.912 377.516,630.245 367.5,631.5C 367.5,630.5 367.5,629.5 367.5,628.5C 377.918,625.596 388.584,623.263 399.5,621.5 Z"/></g>
<g><path style="opacity:1" fill="#fad399" d="M 250.5,623.5 C 254.837,623.584 258.837,624.584 262.5,626.5C 259.763,625.787 257.096,625.787 254.5,626.5C 253.099,625.479 251.765,624.479 250.5,623.5 Z"/></g>
<g><path style="opacity:1" fill="#e6a969" d="M 328.5,623.5 C 326.208,624.79 324.208,626.457 322.5,628.5C 318.225,629.25 314.891,627.917 312.5,624.5C 314.452,624.995 316.452,625.328 318.5,625.5C 321.842,624.826 325.175,624.16 328.5,623.5 Z"/></g>
<g><path style="opacity:1" fill="#fdf7e4" d="M 217.5,623.5 C 224.945,625.527 232.278,627.86 239.5,630.5C 236.482,630.665 233.482,630.498 230.5,630C 229.471,628.302 227.971,627.468 226,627.5C 221.412,629.455 218.579,628.121 217.5,623.5 Z"/></g>
<g><path style="opacity:1" fill="#fcf2de" d="M 328.5,623.5 C 332.833,623.5 337.167,623.5 341.5,623.5C 342.167,623.5 342.833,623.5 343.5,623.5C 337.211,627.581 330.211,629.247 322.5,628.5C 324.208,626.457 326.208,624.79 328.5,623.5 Z"/></g>
<g><path style="opacity:1" fill="#eaaa65" d="M 361.5,607.5 C 360.828,613.195 359.828,618.862 358.5,624.5C 358.585,626.333 359.252,627.666 360.5,628.5C 362.167,628.5 363.833,628.5 365.5,628.5C 361.002,629.375 356.335,629.375 351.5,628.5C 351.5,627.5 351.5,626.5 351.5,625.5C 353.5,625.5 355.5,625.5 357.5,625.5C 357.336,622.813 357.503,620.146 358,617.5C 358.568,613.726 359.735,610.393 361.5,607.5 Z"/></g>
<g><path style="opacity:1" fill="#fdf3dc" d="M 423.5,622.5 C 423.762,623.978 423.429,625.311 422.5,626.5C 419.464,628.465 416.297,628.798 413,627.5C 401.116,632.348 388.616,635.015 375.5,635.5C 375.5,635.167 375.5,634.833 375.5,634.5C 378.33,634.037 380.997,633.371 383.5,632.5C 387.188,632.219 390.855,631.719 394.5,631C 401.649,628.969 408.649,626.802 415.5,624.5C 416.209,623.596 417.209,623.263 418.5,623.5C 420.216,623.371 421.883,623.038 423.5,622.5 Z"/></g>
<g><path style="opacity:1" fill="#e6b06e" d="M 271.5,623.5 C 272.552,625.256 274.219,625.923 276.5,625.5C 276.5,626.5 276.5,627.5 276.5,628.5C 280.337,628.931 284.003,629.598 287.5,630.5C 284.15,630.665 280.817,630.498 277.5,630C 272.875,628.212 268.209,627.045 263.5,626.5C 266.645,626.507 269.311,625.507 271.5,623.5 Z"/></g>
<g><path style="opacity:1" fill="#f3c28d" d="M 244.5,630.5 C 248.135,631.114 251.802,631.448 255.5,631.5C 260.638,633.626 265.971,634.959 271.5,635.5C 268.15,635.665 264.817,635.498 261.5,635C 255.558,634.093 249.892,632.593 244.5,630.5 Z"/></g>
<g><path style="opacity:1" fill="#ebae6d" d="M 351.5,628.5 C 351.5,629.5 351.5,630.5 351.5,631.5C 330.011,632.757 308.678,632.757 287.5,631.5C 287.5,631.167 287.5,630.833 287.5,630.5C 303.494,631.333 319.494,631.5 335.5,631C 341.007,630.934 346.341,630.1 351.5,628.5 Z"/></g>
<g><path style="opacity:1" fill="#faa448" d="M 383.5,632.5 C 380.997,633.371 378.33,634.037 375.5,634.5C 365.434,634.421 355.434,635.087 345.5,636.5C 334.7,635.129 323.867,634.129 313,633.5C 309.742,633.493 306.575,633.993 303.5,635C 312.882,635.336 322.216,636.17 331.5,637.5C 326.833,637.833 322.167,638.167 317.5,638.5C 302.181,637.31 286.848,636.31 271.5,635.5C 265.971,634.959 260.638,633.626 255.5,631.5C 265.9,632.433 276.566,632.433 287.5,631.5C 308.678,632.757 330.011,632.757 351.5,631.5C 351.5,630.5 351.5,629.5 351.5,628.5C 356.335,629.375 361.002,629.375 365.5,628.5C 366.167,628.5 366.833,628.5 367.5,628.5C 367.5,629.5 367.5,630.5 367.5,631.5C 377.516,630.245 387.182,627.912 396.5,624.5C 396.5,625.5 396.5,626.5 396.5,627.5C 392.129,629.393 387.796,631.06 383.5,632.5 Z"/></g>
<g><path style="opacity:1" fill="#f0ac5d" d="M 375.5,634.5 C 375.5,634.833 375.5,635.167 375.5,635.5C 368.744,635.75 362.078,636.417 355.5,637.5C 350.217,637.096 345.217,637.762 340.5,639.5C 326.167,639.5 311.833,639.5 297.5,639.5C 293.1,637.896 288.434,637.229 283.5,637.5C 279.183,637.917 275.183,637.25 271.5,635.5C 286.848,636.31 302.181,637.31 317.5,638.5C 322.167,638.167 326.833,637.833 331.5,637.5C 322.216,636.17 312.882,635.336 303.5,635C 306.575,633.993 309.742,633.493 313,633.5C 323.867,634.129 334.7,635.129 345.5,636.5C 355.434,635.087 365.434,634.421 375.5,634.5 Z"/></g>
<g><path style="opacity:1" fill="#fadeaf" d="M 283.5,637.5 C 288.434,637.229 293.1,637.896 297.5,639.5C 294.167,639.5 290.833,639.5 287.5,639.5C 286.167,638.833 284.833,638.167 283.5,637.5 Z"/></g>
<g><path style="opacity:1" fill="#f7d7a3" d="M 355.5,637.5 C 352.167,638.167 348.833,638.833 345.5,639.5C 343.833,639.5 342.167,639.5 340.5,639.5C 345.217,637.762 350.217,637.096 355.5,637.5 Z"/></g>
</svg>

After

Width:  |  Height:  |  Size: 573 KiB

View File

@ -0,0 +1,21 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="186" height="20" role="img" aria-label="Current Version: v1.4.9">
<title>Current Version: v1.4.9</title>
<linearGradient id="s" x2="0" y2="100%">
<stop offset="0" stop-color="#bbb" stop-opacity=".1"/>
<stop offset="1" stop-opacity=".1"/>
</linearGradient>
<clipPath id="r">
<rect width="186" height="20" rx="3" fill="#fff"/>
</clipPath>
<g clip-path="url(#r)">
<rect width="97" height="20" fill="#555"/>
<rect x="97" width="89" height="20" fill="#007ec6"/>
<rect width="186" height="20" fill="url(#s)"/>
</g>
<g fill="#fff" text-anchor="middle" font-family="Verdana,Geneva,DejaVu Sans,sans-serif" text-rendering="geometricPrecision" font-size="110">
<text aria-hidden="true" x="495" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="700" style="letter-spacing: -5;">Current Version</text>
<text x="495" y="140" transform="scale(.1)" fill="#fff" textLength="700" style="letter-spacing: -5;">Current Version</text>
<text aria-hidden="true" x="1405" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="600" style="letter-spacing: -3;">v1.4.9</text>
<text x="1405" y="140" transform="scale(.1)" fill="#fff" textLength="600" style="letter-spacing: -3;">v1.4.9</text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,37 @@
$(document).ready(function () {
var pth = window.location.pathname;
if (pth === "/nekobox/settings.php"){
$.get("./lib/log.php?data=neko_ver", function (result) {
$('#cliver').html(result);
});
$.get("./lib/log.php?data=core_ver", function (result) {
$('#corever').html(result);
});
}
else{
setInterval(function() {
$.get("./lib/log.php?data=neko", function (result) {
$('#logs').html(result);
});
$.get("./lib/log.php?data=bin", function (result) {
$('#bin_logs').html(result);
});
$(document).ready(function () {
$.ajaxSetup({ cache: false });
var textarea = document.getElementById("logs");
textarea.scrollTop = textarea.scrollHeight;
});
}, 1000);
setInterval(function() {
$(document).ready(function() {
$.ajaxSetup({ cache: false });
});
$.get("./lib/up.php", function (result) {
$('#uptotal').html(result);
});
$.get("./lib/down.php", function (result) {
$('#downtotal').html(result);
});
}, 1000);
}
});

File diff suppressed because it is too large Load Diff

Some files were not shown because too many files have changed in this diff Show More