release 1.2.1

This commit is contained in:
Newcomer1989
2016-12-17 14:18:29 +01:00
parent d698c158fc
commit 47fea60ae3
268 changed files with 17305 additions and 91 deletions

View File

@@ -127,22 +127,22 @@ $db[\'dbname\']="'.$dbname.'";
$count++; $count++;
} }
if($mysqlcon->exec("CREATE TABLE $dbname.user (uuid varchar(29) CHARACTER SET utf8 COLLATE utf8_unicode_ci PRIMARY KEY,cldbid bigint(10) NOT NULL default '0',count bigint(11) NOT NULL default '0',ip VARBINARY(16) DEFAULT NULL,name text CHARACTER SET utf8 COLLATE utf8_unicode_ci,lastseen bigint(11) NOT NULL default '0',grpid bigint(10) NOT NULL default '0',nextup bigint(11) NOT NULL default '0',idle bigint(11) NOT NULL default '0',cldgroup text CHARACTER SET utf8 COLLATE utf8_unicode_ci,online int(1) NOT NULL default '0',boosttime bigint(11) NOT NULL default '0', rank bigint(11) NOT NULL default '0', platform text default NULL, nation text default NULL, version text default NULL, firstcon bigint(11) NOT NULL default '0', except int(1) NOT NULL default '0', grpsince bigint(11) NOT NULL default '0')") === false) { if($mysqlcon->exec("CREATE TABLE $dbname.user (uuid varchar(29) CHARACTER SET utf8 COLLATE utf8_unicode_ci PRIMARY KEY,cldbid int(10) NOT NULL default '0',count int(10) NOT NULL default '0',ip VARBINARY(16) DEFAULT NULL,name varchar(30) CHARACTER SET utf8 COLLATE utf8_unicode_ci,lastseen bigint(11) NOT NULL default '0',grpid int(10) NOT NULL default '0',nextup int(10) NOT NULL default '0',idle int(10) NOT NULL default '0',cldgroup varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci,online tinyint(1) NOT NULL default '0',boosttime int(10) NOT NULL default '0',rank int(10) NOT NULL default '0',platform varchar(32) CHARACTER SET utf8 COLLATE utf8_unicode_ci,nation varchar(3) CHARACTER SET utf8 COLLATE utf8_unicode_ci,version varchar(64) CHARACTER SET utf8 COLLATE utf8_unicode_ci,firstcon bigint(11) NOT NULL default '0',except tinyint(1) NOT NULL default '0',grpsince bigint(11) NOT NULL default '0')") === false) {
$err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2; $err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2;
$count++; $count++;
} }
if($mysqlcon->exec("CREATE TABLE $dbname.groups (sgid bigint(10) PRIMARY KEY,sgidname text CHARACTER SET utf8 COLLATE utf8_unicode_ci,iconid bigint(10) NOT NULL default '0',icondate bigint(11) NOT NULL default '0')") === false) { if($mysqlcon->exec("CREATE TABLE $dbname.groups (sgid int(10) NOT NULL default '0' PRIMARY KEY,sgidname varchar(30) CHARACTER SET utf8 COLLATE utf8_unicode_ci,iconid bigint(10) NOT NULL default '0',icondate bigint(11) NOT NULL default '0')") === false) {
$err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2; $err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2;
$count++; $count++;
} }
if($mysqlcon->exec("CREATE TABLE $dbname.config (webuser text CHARACTER SET utf8 COLLATE utf8_unicode_ci,webpass text CHARACTER SET utf8 COLLATE utf8_unicode_ci,tshost text CHARACTER SET utf8 COLLATE utf8_unicode_ci,tsquery int(5) NOT NULL default '0',tsvoice int(5) NOT NULL default '0',tsuser text CHARACTER SET utf8 COLLATE utf8_unicode_ci,tspass text CHARACTER SET utf8 COLLATE utf8_unicode_ci,language text CHARACTER SET utf8 COLLATE utf8_unicode_ci,queryname text CHARACTER SET utf8 COLLATE utf8_unicode_ci,queryname2 text CHARACTER SET utf8 COLLATE utf8_unicode_ci,grouptime text CHARACTER SET utf8 COLLATE utf8_unicode_ci,resetbydbchange int(1) NOT NULL default '0',msgtouser int(1) NOT NULL default '0',upcheck int(1) NOT NULL default '0',uniqueid text CHARACTER SET utf8 COLLATE utf8_unicode_ci,updateinfotime int(8) NOT NULL default '0',currvers text CHARACTER SET utf8 COLLATE utf8_unicode_ci,substridle int(1) NOT NULL default '0',exceptuuid text CHARACTER SET utf8 COLLATE utf8_unicode_ci,exceptgroup text CHARACTER SET utf8 COLLATE utf8_unicode_ci,dateformat text CHARACTER SET utf8 COLLATE utf8_unicode_ci,showexcld int(1) NOT NULL default '0',showcolcld int(1) NOT NULL default '0',showcoluuid int(1) NOT NULL default '0',showcoldbid int(1) NOT NULL default '0',showcolot int(1) NOT NULL default '0',showcolit int(1) NOT NULL default '0',showcolat int(1) NOT NULL default '0',showcolnx int(1) NOT NULL default '0',showcolsg int(1) NOT NULL default '0',showcolrg int(1) NOT NULL default '0',showcolls int(1) NOT NULL default '0',slowmode bigint(11) NOT NULL default '0',cleanclients int(1) NOT NULL default '0',cleanperiod bigint(11) NOT NULL default '0',showhighest int(1) NOT NULL default '0',boost text default NULL,showcolas int(1) NOT NULL default '0',defchid bigint(11) NOT NULL default '0',timezone varchar(29) CHARACTER SET utf8 COLLATE utf8_unicode_ci,logpath varchar(200) CHARACTER SET utf8 COLLATE utf8_unicode_ci, advancemode int(1) NOT NULL default '0', count_access int(2) NOT NULL default '0', last_access bigint(11) NOT NULL default '0', ignoreidle bigint(11) NOT NULL default '0', exceptcid text CHARACTER SET utf8 COLLATE utf8_unicode_ci, rankupmsg text CHARACTER SET utf8 COLLATE utf8_unicode_ci, boost_mode int(1) NOT NULL default '0', newversion varchar(25) CHARACTER SET utf8 COLLATE utf8_unicode_ci, servernews text CHARACTER SET utf8 COLLATE utf8_unicode_ci, adminuuid varchar(29) CHARACTER SET utf8 COLLATE utf8_unicode_ci, nextupinfo int(1) NOT NULL default '0', nextupinfomsg1 text CHARACTER SET utf8 COLLATE utf8_unicode_ci, nextupinfomsg2 text CHARACTER SET utf8 COLLATE utf8_unicode_ci, nextupinfomsg3 text CHARACTER SET utf8 COLLATE utf8_unicode_ci, shownav int(1) NOT NULL default '0', showgrpsince int(1) NOT NULL default '0', resetexcept int(1) NOT NULL default '0', upchannel varchar(20) NOT NULL default '0')") === false) { if($mysqlcon->exec("CREATE TABLE $dbname.config (webuser varchar(64) CHARACTER SET utf8 COLLATE utf8_unicode_ci,webpass varchar(64) CHARACTER SET utf8 COLLATE utf8_unicode_ci,tshost varchar(64) CHARACTER SET utf8 COLLATE utf8_unicode_ci,tsquery smallint(5) NOT NULL default '0',tsvoice smallint(5) NOT NULL default '0',tsuser varchar(30) CHARACTER SET utf8 COLLATE utf8_unicode_ci,tspass varchar(64) CHARACTER SET utf8 COLLATE utf8_unicode_ci,language char(2) CHARACTER SET utf8 COLLATE utf8_unicode_ci,queryname varchar(30) CHARACTER SET utf8 COLLATE utf8_unicode_ci,queryname2 varchar(30) CHARACTER SET utf8 COLLATE utf8_unicode_ci,grouptime varchar(5000) CHARACTER SET utf8 COLLATE utf8_unicode_ci,resetbydbchange tinyint(1) NOT NULL default '0',msgtouser tinyint(1) NOT NULL default '0',upcheck tinyint(1) NOT NULL default '0',uniqueid varchar(500) CHARACTER SET utf8 COLLATE utf8_unicode_ci,updateinfotime mediumint(6) NOT NULL default '0',currvers varchar(32) CHARACTER SET utf8 COLLATE utf8_unicode_ci,substridle tinyint(1) NOT NULL default '0',exceptuuid varchar(999) CHARACTER SET utf8 COLLATE utf8_unicode_ci,exceptgroup varchar(999) CHARACTER SET utf8 COLLATE utf8_unicode_ci,dateformat varchar(64) CHARACTER SET utf8 COLLATE utf8_unicode_ci,showexcld tinyint(1) NOT NULL default '0',showcolcld tinyint(1) NOT NULL default '0',showcoluuid tinyint(1) NOT NULL default '0',showcoldbid tinyint(1) NOT NULL default '0',showcolot tinyint(1) NOT NULL default '0',showcolit tinyint(1) NOT NULL default '0',showcolat tinyint(1) NOT NULL default '0',showcolnx tinyint(1) NOT NULL default '0',showcolsg tinyint(1) NOT NULL default '0',showcolrg tinyint(1) NOT NULL default '0',showcolls tinyint(1) NOT NULL default '0',slowmode mediumint(9) NOT NULL default '0',cleanclients tinyint(1) NOT NULL default '0',cleanperiod mediumint(9) NOT NULL default '0',showhighest tinyint(1) NOT NULL default '0',boost varchar(999) CHARACTER SET utf8 COLLATE utf8_unicode_ci,showcolas tinyint(1) NOT NULL default '0',defchid int(10) NOT NULL default '0',timezone varchar(29) CHARACTER SET utf8 COLLATE utf8_unicode_ci,logpath varchar(200) CHARACTER SET utf8 COLLATE utf8_unicode_ci,advancemode tinyint(1) NOT NULL default '0',count_access tinyint(2) NOT NULL default '0',last_access bigint(11) NOT NULL default '0',ignoreidle smallint(5) NOT NULL default '0',exceptcid varchar(999) CHARACTER SET utf8 COLLATE utf8_unicode_ci,rankupmsg varchar(500) CHARACTER SET utf8 COLLATE utf8_unicode_ci,boost_mode tinyint(1) NOT NULL default '0',newversion varchar(25) CHARACTER SET utf8 COLLATE utf8_unicode_ci,servernews varchar(5000) CHARACTER SET utf8 COLLATE utf8_unicode_ci,adminuuid varchar(29) CHARACTER SET utf8 COLLATE utf8_unicode_ci,nextupinfo tinyint(1) NOT NULL default '0',nextupinfomsg1 varchar(500) CHARACTER SET utf8 COLLATE utf8_unicode_ci,nextupinfomsg2 varchar(500) CHARACTER SET utf8 COLLATE utf8_unicode_ci,nextupinfomsg3 varchar(500) CHARACTER SET utf8 COLLATE utf8_unicode_ci,shownav tinyint(1) NOT NULL default '0',showgrpsince tinyint(1) NOT NULL default '0',resetexcept tinyint(1) NOT NULL default '0',upchannel varchar(20) NOT NULL default '0')") === false) {
$err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2; $err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2;
$count++; $count++;
} }
if($mysqlcon->exec("CREATE TABLE $dbname.server_usage (timestamp bigint(11) NOT NULL default '0', clients bigint(11) NOT NULL default '0', channel bigint(11) NOT NULL default '0')") === false) { if($mysqlcon->exec("CREATE TABLE $dbname.server_usage (timestamp bigint(11) NOT NULL default '0',clients smallint(5) NOT NULL default '0',channel smallint(5) NOT NULL default '0')") === false) {
$err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2; $err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2;
$count++; $count++;
if($mysqlcon->exec("CREATE INDEX serverusage_timestamp ON $dbname.server_usage (timestamp)") === false) { if($mysqlcon->exec("CREATE INDEX serverusage_timestamp ON $dbname.server_usage (timestamp)") === false) {
@@ -151,7 +151,7 @@ $db[\'dbname\']="'.$dbname.'";
} }
} }
if($mysqlcon->exec("CREATE TABLE $dbname.user_snapshot (timestamp bigint(11) NOT NULL default '0', uuid varchar(29) CHARACTER SET utf8 COLLATE utf8_unicode_ci, count bigint(11) NOT NULL default '0', idle bigint(11) NOT NULL default '0')") === false) { if($mysqlcon->exec("CREATE TABLE $dbname.user_snapshot (timestamp bigint(11) NOT NULL default '0',uuid varchar(29) CHARACTER SET utf8 COLLATE utf8_unicode_ci,count int(10) NOT NULL default '0',idle int(10) NOT NULL default '0')") === false) {
$err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2; $err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2;
$count++; $count++;
if($mysqlcon->exec("CREATE INDEX snapshot_timestamp ON $dbname.user_snapshot (timestamp)") === false) { if($mysqlcon->exec("CREATE INDEX snapshot_timestamp ON $dbname.user_snapshot (timestamp)") === false) {
@@ -160,12 +160,12 @@ $db[\'dbname\']="'.$dbname.'";
} }
} }
if($mysqlcon->exec("CREATE TABLE $dbname.stats_server (total_user bigint(11) NOT NULL default '0', total_online_time bigint(13) NOT NULL default '0', total_online_month bigint(11) NOT NULL default '0', total_online_week bigint(11) NOT NULL default '0', total_active_time bigint(11) NOT NULL default '0', total_inactive_time bigint(11) NOT NULL default '0', country_nation_name_1 varchar(3) NOT NULL default '0', country_nation_name_2 varchar(3) NOT NULL default '0', country_nation_name_3 varchar(3) NOT NULL default '0', country_nation_name_4 varchar(3) NOT NULL default '0', country_nation_name_5 varchar(3) NOT NULL default '0', country_nation_1 bigint(11) NOT NULL default '0', country_nation_2 bigint(11) NOT NULL default '0', country_nation_3 bigint(11) NOT NULL default '0', country_nation_4 bigint(11) NOT NULL default '0', country_nation_5 bigint(11) NOT NULL default '0', country_nation_other bigint(11) NOT NULL default '0', platform_1 bigint(11) NOT NULL default '0', platform_2 bigint(11) NOT NULL default '0', platform_3 bigint(11) NOT NULL default '0', platform_4 bigint(11) NOT NULL default '0', platform_5 bigint(11) NOT NULL default '0', platform_other bigint(11) NOT NULL default '0', version_name_1 varchar(35) NOT NULL default '0', version_name_2 varchar(35) NOT NULL default '0', version_name_3 varchar(35) NOT NULL default '0', version_name_4 varchar(35) NOT NULL default '0', version_name_5 varchar(35) NOT NULL default '0', version_1 bigint(11) NOT NULL default '0', version_2 bigint(11) NOT NULL default '0', version_3 bigint(11) NOT NULL default '0', version_4 bigint(11) NOT NULL default '0', version_5 bigint(11) NOT NULL default '0', version_other bigint(11) NOT NULL default '0', server_status int(1) NOT NULL default '0', server_free_slots bigint(11) NOT NULL default '0', server_used_slots bigint(11) NOT NULL default '0', server_channel_amount bigint(11) NOT NULL default '0', server_ping bigint(11) NOT NULL default '0', server_packet_loss float (4,4), server_bytes_down bigint(11) NOT NULL default '0', server_bytes_up bigint(11) NOT NULL default '0', server_uptime bigint(11) NOT NULL default '0', server_id bigint(11) NOT NULL default '0', server_name text CHARACTER SET utf8 COLLATE utf8_unicode_ci, server_pass int(1) NOT NULL default '0', server_creation_date bigint(11) NOT NULL default '0', server_platform text CHARACTER SET utf8 COLLATE utf8_unicode_ci, server_weblist text CHARACTER SET utf8 COLLATE utf8_unicode_ci, server_version text CHARACTER SET utf8 COLLATE utf8_unicode_ci)") === false) { if($mysqlcon->exec("CREATE TABLE $dbname.stats_server (total_user int(10) NOT NULL default '0',total_online_time bigint(13) NOT NULL default '0',total_online_month bigint(11) NOT NULL default '0',total_online_week bigint(11) NOT NULL default '0',total_active_time bigint(11) NOT NULL default '0',total_inactive_time bigint(11) NOT NULL default '0',country_nation_name_1 varchar(3) NOT NULL default '0',country_nation_name_2 varchar(3) NOT NULL default '0',country_nation_name_3 varchar(3) NOT NULL default '0',country_nation_name_4 varchar(3) NOT NULL default '0',country_nation_name_5 varchar(3) NOT NULL default '0',country_nation_1 int(10) NOT NULL default '0',country_nation_2 int(10) NOT NULL default '0',country_nation_3 int(10) NOT NULL default '0',country_nation_4 int(10) NOT NULL default '0',country_nation_5 int(10) NOT NULL default '0',country_nation_other int(10) NOT NULL default '0',platform_1 int(10) NOT NULL default '0',platform_2 int(10) NOT NULL default '0',platform_3 int(10) NOT NULL default '0',platform_4 int(10) NOT NULL default '0',platform_5 int(10) NOT NULL default '0',platform_other int(10) NOT NULL default '0',version_name_1 varchar(35) NOT NULL default '0',version_name_2 varchar(35) NOT NULL default '0',version_name_3 varchar(35) NOT NULL default '0',version_name_4 varchar(35) NOT NULL default '0',version_name_5 varchar(35) NOT NULL default '0',version_1 int(10) NOT NULL default '0',version_2 int(10) NOT NULL default '0',version_3 int(10) NOT NULL default '0',version_4 int(10) NOT NULL default '0',version_5 int(10) NOT NULL default '0',version_other int(10) NOT NULL default '0',server_status tinyint(1) NOT NULL default '0',server_free_slots smallint(5) NOT NULL default '0',server_used_slots smallint(5) NOT NULL default '0',server_channel_amount smallint(5) NOT NULL default '0',server_ping smallint(5) NOT NULL default '0',server_packet_loss float (4,4),server_bytes_down bigint(11) NOT NULL default '0',server_bytes_up bigint(11) NOT NULL default '0',server_uptime bigint(11) NOT NULL default '0',server_id smallint(5) NOT NULL default '0',server_name varchar(64) CHARACTER SET utf8 COLLATE utf8_unicode_ci,server_pass tinyint(1) NOT NULL default '0',server_creation_date bigint(11) NOT NULL default '0',server_platform varchar(32) CHARACTER SET utf8 COLLATE utf8_unicode_ci,server_weblist tinyint(1) NOT NULL default '0',server_version varchar(64) CHARACTER SET utf8 COLLATE utf8_unicode_ci,user_today int(10) NOT NULL default '0',user_week int(10) NOT NULL default '0',user_month int(10) NOT NULL default '0',user_quarter int(10) NOT NULL default '0')") === false) {
$err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2; $err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2;
$count++; $count++;
} }
if($mysqlcon->exec("CREATE TABLE $dbname.stats_user (uuid varchar(29) CHARACTER SET utf8 COLLATE utf8_unicode_ci PRIMARY KEY, removed int(1) NOT NULL default '0', rank bigint(11) NOT NULL default '0', total_connections bigint(11) NOT NULL default '0', count_week bigint(11) NOT NULL default '0', count_month bigint(11) NOT NULL default '0', idle_week bigint(11) NOT NULL default '0', idle_month bigint(11) NOT NULL default '0', achiev_count bigint(11) NOT NULL default '0', achiev_time bigint(11) NOT NULL default '0', achiev_connects bigint(11) NOT NULL default '0', achiev_battles bigint(11) NOT NULL default '0', achiev_time_perc int(3) NOT NULL default '0', achiev_connects_perc int(3) NOT NULL default '0', achiev_battles_perc int(3) NOT NULL default '0', battles_total bigint(11) NOT NULL default '0', battles_won bigint(11) NOT NULL default '0', battles_lost bigint(11) NOT NULL default '0', client_description text CHARACTER SET utf8 COLLATE utf8_unicode_ci, base64hash varchar(58) CHARACTER SET utf8 COLLATE utf8_unicode_ci, client_total_up bigint(15) NOT NULL default '0', client_total_down bigint(15) NOT NULL default '0')") === false) { if($mysqlcon->exec("CREATE TABLE $dbname.stats_user (uuid varchar(29) CHARACTER SET utf8 COLLATE utf8_unicode_ci PRIMARY KEY,removed tinyint(1) NOT NULL default '0',rank int(10) NOT NULL default '0',total_connections smallint(5) NOT NULL default '0',count_week int(10) NOT NULL default '0',count_month int(10) NOT NULL default '0',idle_week int(10) NOT NULL default '0',idle_month int(10) NOT NULL default '0',achiev_count tinyint(1) NOT NULL default '0',achiev_time int(10) NOT NULL default '0',achiev_connects smallint(5) NOT NULL default '0',achiev_battles tinyint(3) NOT NULL default '0',achiev_time_perc tinyint(3) NOT NULL default '0',achiev_connects_perc tinyint(3) NOT NULL default '0',achiev_battles_perc tinyint(3) NOT NULL default '0',battles_total tinyint(3) NOT NULL default '0',battles_won tinyint(3) NOT NULL default '0',battles_lost tinyint(3) NOT NULL default '0',client_description varchar(200) CHARACTER SET utf8 COLLATE utf8_unicode_ci,base64hash varchar(58) CHARACTER SET utf8 COLLATE utf8_unicode_ci, client_total_up bigint(15) NOT NULL default '0', client_total_down bigint(15) NOT NULL default '0')") === false) {
$err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2; $err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2;
$count++; $count++;
} }
@@ -185,6 +185,21 @@ $db[\'dbname\']="'.$dbname.'";
$count++; $count++;
} }
if($mysqlcon->exec("CREATE TABLE $dbname.stats_nations (nation varchar(3) CHARACTER SET utf8 COLLATE utf8_unicode_ci, count int(10) NOT NULL default '0')") === false) {
$err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2;
$count++;
}
if($mysqlcon->exec("CREATE TABLE $dbname.stats_versions (version varchar(64) CHARACTER SET utf8 COLLATE utf8_unicode_ci, count int(10) NOT NULL default '0')") === false) {
$err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2;
$count++;
}
if($mysqlcon->exec("CREATE TABLE $dbname.stats_platforms (platform varchar(32) CHARACTER SET utf8 COLLATE utf8_unicode_ci, count int(10) NOT NULL default '0')") === false) {
$err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2;
$count++;
}
if($count == 1) { if($count == 1) {
$err_msg = sprintf($lang['instdbsuc'], $dbname); $err_lvl = NULL; $err_msg = sprintf($lang['instdbsuc'], $dbname); $err_lvl = NULL;
$install_webuser = 1; $install_webuser = 1;
@@ -256,7 +271,7 @@ if(isset($_POST['confweb'])) {
$nextupinfomsg3 = $mysqlcon->quote("You are excepted from the Ranksystem. If you wish to rank contact an admin on the TS3 server."); $nextupinfomsg3 = $mysqlcon->quote("You are excepted from the Ranksystem. If you wish to rank contact an admin on the TS3 server.");
$servernews = $mysqlcon->quote("<strong>Message</strong><br>This is an example Message.<br>Change this Message inside the webinterface."); $servernews = $mysqlcon->quote("<strong>Message</strong><br>This is an example Message.<br>Change this Message inside the webinterface.");
$rankupmsg = $mysqlcon->quote('Hey, you reached a higher rank, since you already connected for %1$s days, %2$s hours and %3$s minutes to our TS3 server.[B]Keep it up![/B] ;-) '); $rankupmsg = $mysqlcon->quote('Hey, you reached a higher rank, since you already connected for %1$s days, %2$s hours and %3$s minutes to our TS3 server.[B]Keep it up![/B] ;-) ');
if($mysqlcon->exec("INSERT INTO $dbname.config (webuser,webpass,tshost,tsquery,tsvoice,tsuser,language,queryname,queryname2,grouptime,resetbydbchange,msgtouser,upcheck,uniqueid,updateinfotime,currvers,exceptuuid,exceptgroup,dateformat,showexcld,showcolcld,showcoluuid,showcoldbid,showcolot,showcolit,showcolat,showcolnx,showcolsg,showcolrg,showcolls,slowmode,cleanclients,cleanperiod,showhighest,showcolas,defchid,timezone,logpath,ignoreidle,rankupmsg,newversion,servernews,nextupinfo,nextupinfomsg1,nextupinfomsg2,nextupinfomsg3,shownav,showgrpsince,resetexcept,upchannel) VALUES ('$user','$pass','localhost','10011','9987','serveradmin','en','Ranksystem','RankSystem','31536000=>47,31536060=>50','1','1','1','xrTKhT/HDl4ea0WoFDQH2zOpmKg=,9odBYAU7z2E2feUz965sL0/Myom=','7200','1.2.0','xrTKhT/HDl4ea0WoFDQH2zOpmKg=','2,6','%a days, %h hours, %i mins, %s secs','1','1','1','1','1','1','1','1','1','1','1','200000','1','86400','1','1','0','Europe/Berlin','$logpath','600',$rankupmsg,'1.2.0',$servernews,'1',$nextupinfomsg1,$nextupinfomsg2,$nextupinfomsg3,'1','1','0','version')") === false) { if($mysqlcon->exec("INSERT INTO $dbname.config (webuser,webpass,tshost,tsquery,tsvoice,tsuser,language,queryname,queryname2,grouptime,resetbydbchange,msgtouser,upcheck,uniqueid,updateinfotime,currvers,exceptuuid,exceptgroup,dateformat,showexcld,showcolcld,showcoluuid,showcoldbid,showcolot,showcolit,showcolat,showcolnx,showcolsg,showcolrg,showcolls,slowmode,cleanclients,cleanperiod,showhighest,showcolas,defchid,timezone,logpath,ignoreidle,rankupmsg,newversion,servernews,nextupinfo,nextupinfomsg1,nextupinfomsg2,nextupinfomsg3,shownav,showgrpsince,resetexcept,upchannel) VALUES ('$user','$pass','localhost','10011','9987','serveradmin','en','Ranksystem','RankSystem','31536000=>47,31536060=>50','1','1','1','xrTKhT/HDl4ea0WoFDQH2zOpmKg=,9odBYAU7z2E2feUz965sL0/Myom=','7200','1.2.1','xrTKhT/HDl4ea0WoFDQH2zOpmKg=','2,6','%a days, %h hours, %i mins, %s secs','1','1','1','1','1','1','1','1','1','1','1','200000','1','86400','1','1','0','Europe/Berlin','$logpath','600',$rankupmsg,'1.2.1',$servernews,'1',$nextupinfomsg1,$nextupinfomsg2,$nextupinfomsg3,'1','1','0','version')") === false) {
$err_msg = $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true); $err_lvl = 2; $err_msg = $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true); $err_lvl = 2;
} else { } else {
$err_msg = $lang['isntwiusr'].'<br><br>'; $err_msg = $lang['isntwiusr'].'<br><br>';
@@ -278,37 +293,37 @@ if (!isset($_POST['install']) && !isset($_POST['confweb'])) {
$err_msg = sprintf($lang['winav10'], $host,'</a>!<br>', '<br>'); $err_lvl = 2; $err_msg = sprintf($lang['winav10'], $host,'</a>!<br>', '<br>'); $err_lvl = 2;
} }
if(!is_writeable('./other/dbconfig.php')) { if(!is_writeable('./other/dbconfig.php')) {
$err_msg .= "<br>".$lang['isntwicfg']; $err_lvl = 3; unset($err_msg); $err_msg .= "<br>".$lang['isntwicfg']; $err_lvl = 3;
} }
if(substr(sprintf('%o', fileperms('./avatars/')), -4)!='0777') { if(substr(sprintf('%o', fileperms('./avatars/')), -4)!='0777') {
$err_msg .= "<br>".sprintf($lang['isntwichm'],"avatars"); $err_lvl = 3; unset($err_msg); $err_msg .= "<br>".sprintf($lang['isntwichm'],"avatars"); $err_lvl = 3;
} }
if(substr(sprintf('%o', fileperms('./icons/')), -4)!='0777') { if(substr(sprintf('%o', fileperms('./icons/')), -4)!='0777') {
$err_msg .= "<br>".sprintf($lang['isntwichm'],"icons"); $err_lvl = 3; unset($err_msg); $err_msg .= "<br>".sprintf($lang['isntwichm'],"icons"); $err_lvl = 3;
} }
if(substr(sprintf('%o', fileperms('./logs/')), -4)!='0777') { if(substr(sprintf('%o', fileperms('./logs/')), -4)!='0777') {
$err_msg .= "<br>".sprintf($lang['isntwichm'],"logs"); $err_lvl = 3; unset($err_msg); $err_msg .= "<br>".sprintf($lang['isntwichm'],"logs"); $err_lvl = 3;
} }
if(substr(sprintf('%o', fileperms('./update/')), -4)!='0777') { if(substr(sprintf('%o', fileperms('./update/')), -4)!='0777') {
$err_msg .= "<br>".sprintf($lang['isntwichm'],"update"); $err_lvl = 3; unset($err_msg); $err_msg .= "<br>".sprintf($lang['isntwichm'],"update"); $err_lvl = 3;
} }
if(!class_exists('PDO')) { if(!class_exists('PDO')) {
$err_msg .= "<br>".$lang['insterr2']; $err_lvl = 3; unset($err_msg); $err_msg .= "<br>".$lang['insterr2']; $err_lvl = 3;
} }
if(!function_exists('exec')) { if(!function_exists('exec')) {
$err_msg .= "<br>".$lang['insterr3']; $err_lvl = 3; unset($err_msg); $err_msg .= "<br>".$lang['insterr3']; $err_lvl = 3;
} }
if(version_compare(phpversion(), '5.5.0', '<')) { if(version_compare(phpversion(), '5.5.0', '<')) {
$err_msg .= "<br>".sprintf($lang['insterr4'],phpversion()); $err_lvl = 3; unset($err_msg); $err_msg .= "<br>".sprintf($lang['insterr4'],phpversion()); $err_lvl = 3;
} }
if(!function_exists('simplexml_load_file')) { if(!function_exists('simplexml_load_file')) {
$err_msg .= "<br>".$lang['insterr5']; $err_lvl = 3; unset($err_msg); $err_msg .= "<br>".$lang['insterr5']; $err_lvl = 3;
} }
if(!in_array('curl', get_loaded_extensions())) { if(!in_array('curl', get_loaded_extensions())) {
$err_msg .= "<br>".$lang['insterr6']; $err_lvl = 3; unset($err_msg); $err_msg .= "<br>".$lang['insterr6']; $err_lvl = 3;
} }
if(!in_array('zip', get_loaded_extensions())) { if(!in_array('zip', get_loaded_extensions())) {
$err_msg .= "<br>".$lang['insterr7']; $err_lvl = 3; unset($err_msg); $err_msg .= "<br>".$lang['insterr7']; $err_lvl = 3;
} }
if(!isset($err_lvl)) { if(!isset($err_lvl)) {
unset($err_msg); unset($err_msg);
@@ -397,7 +412,7 @@ if ((!isset($_POST['install']) && !isset($_POST['confweb'])) || $err_lvl == 1 ||
<div class="form-group"> <div class="form-group">
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#isntwidbusrdesc"><?php echo $lang['isntwidbusr']; ?></label> <label class="col-sm-4 control-label" data-toggle="modal" data-target="#isntwidbusrdesc"><?php echo $lang['isntwidbusr']; ?></label>
<div class="col-sm-8 required-field-block"> <div class="col-sm-8 required-field-block">
<input type="text" class="form-control" name="dbuser" value="<?php echo $dbuser; ?>" required> <input type="text" class="form-control" name="dbuser" value="<?php echo $dbuser; ?>" maxlength="64" required>
<div class="required-icon"><div class="text">*</div></div> <div class="required-icon"><div class="text">*</div></div>
</div> </div>
</div> </div>

View File

@@ -10,7 +10,11 @@ function calc_serverstats($ts3,$mysqlcon,$lang,$dbname,$slowmode,$timezone,$serv
$platform_string = ''; $platform_string = '';
$server_used_slots = 0; $server_used_slots = 0;
$server_channel_amount = 0; $server_channel_amount = 0;
if(($uuids = $mysqlcon->query("SELECT uuid,count,idle,platform,nation FROM $dbname.user")) === false) { $user_today = 0;
$user_week = 0;
$user_month = 0;
$user_quarter = 0;
if(($uuids = $mysqlcon->query("SELECT uuid,count,idle,platform,nation,lastseen FROM $dbname.user")) === false) {
enter_logfile($logpath,$timezone,2,"calc_serverstats 1:".print_r($mysqlcon->errorInfo(), true)); enter_logfile($logpath,$timezone,2,"calc_serverstats 1:".print_r($mysqlcon->errorInfo(), true));
} }
$uuids = $uuids->fetchAll(); $uuids = $uuids->fetchAll();
@@ -25,6 +29,16 @@ function calc_serverstats($ts3,$mysqlcon,$lang,$dbname,$slowmode,$timezone,$serv
$uuid_platform = str_replace(' ','',$uuid['platform']); $uuid_platform = str_replace(' ','',$uuid['platform']);
$platform_string .= $uuid_platform . ' '; $platform_string .= $uuid_platform . ' ';
} }
if ($uuid['lastseen']>($nowtime-86400)) {
$user_quarter++; $user_month++; $user_week++; $user_today++;
} elseif ($uuid['lastseen']>($nowtime-604800)) {
$user_quarter++; $user_month++; $user_week++;
} elseif ($uuid['lastseen']>($nowtime-2592000)) {
$user_quarter++; $user_month++;
} elseif ($uuid['lastseen']>($nowtime-7776000)) {
$user_quarter++;
}
$total_online_time = $total_online_time + $uuid['count']; $total_online_time = $total_online_time + $uuid['count'];
$total_active_time = $total_active_time + $uuid['count'] - $uuid['idle']; $total_active_time = $total_active_time + $uuid['count'] - $uuid['idle'];
$total_inactive_time = $total_inactive_time + $uuid['idle']; $total_inactive_time = $total_inactive_time + $uuid['idle'];
@@ -105,6 +119,7 @@ function calc_serverstats($ts3,$mysqlcon,$lang,$dbname,$slowmode,$timezone,$serv
$country_nation_3 = 0; $country_nation_3 = 0;
$country_nation_4 = 0; $country_nation_4 = 0;
$country_nation_5 = 0; $country_nation_5 = 0;
$allinsertnation = '';
foreach ($country_array as $k => $v) { foreach ($country_array as $k => $v) {
$country_counter++; $country_counter++;
if ($country_counter == 1) { if ($country_counter == 1) {
@@ -125,8 +140,9 @@ function calc_serverstats($ts3,$mysqlcon,$lang,$dbname,$slowmode,$timezone,$serv
} else { } else {
$country_nation_other = $country_nation_other + $v; $country_nation_other = $country_nation_other + $v;
} }
$allinsertnation = $allinsertnation . "('" . $k . "', " . $v . "),";
} }
$allinsertnation = substr($allinsertnation, 0, -1);
$platform_array = array_count_values(str_word_count($platform_string, 1)); $platform_array = array_count_values(str_word_count($platform_string, 1));
$platform_other = 0; $platform_other = 0;
$platform_1 = 0; $platform_1 = 0;
@@ -134,6 +150,7 @@ function calc_serverstats($ts3,$mysqlcon,$lang,$dbname,$slowmode,$timezone,$serv
$platform_3 = 0; $platform_3 = 0;
$platform_4 = 0; $platform_4 = 0;
$platform_5 = 0; $platform_5 = 0;
$allinsertplatform = '';
foreach ($platform_array as $k => $v) { foreach ($platform_array as $k => $v) {
if ($k == "Windows") { if ($k == "Windows") {
$platform_1 = $v; $platform_1 = $v;
@@ -148,8 +165,9 @@ function calc_serverstats($ts3,$mysqlcon,$lang,$dbname,$slowmode,$timezone,$serv
} else { } else {
$platform_other = $platform_other + $v; $platform_other = $platform_other + $v;
} }
$allinsertplatform = $allinsertplatform . "('" . $k . "', " . $v . "),";
} }
$allinsertplatform = substr($allinsertplatform, 0, -1);
$version_1 = 0; $version_1 = 0;
$version_2 = 0; $version_2 = 0;
$version_3 = 0; $version_3 = 0;
@@ -160,10 +178,10 @@ function calc_serverstats($ts3,$mysqlcon,$lang,$dbname,$slowmode,$timezone,$serv
$version_name_3 = 0; $version_name_3 = 0;
$version_name_4 = 0; $version_name_4 = 0;
$version_name_5 = 0; $version_name_5 = 0;
$client_versions = $mysqlcon->query("SELECT version, COUNT(version) AS count FROM $dbname.user GROUP BY version ORDER BY count DESC LIMIT 5")->fetchAll(PDO::FETCH_ASSOC); $client_versions = $mysqlcon->query("SELECT version, COUNT(version) AS count FROM $dbname.user GROUP BY version ORDER BY count DESC")->fetchAll(PDO::FETCH_ASSOC);
$count_version = 0; $count_version = 0;
$version_other = $mysqlcon->query("SELECT COUNT(version) AS count FROM $dbname.user ORDER BY count DESC")->fetchAll(PDO::FETCH_ASSOC); $allinsertversion = '';
$sum_count = 0;
foreach($client_versions as $version) { foreach($client_versions as $version) {
$count_version++; $count_version++;
if ($count_version == 1) { if ($count_version == 1) {
@@ -182,8 +200,11 @@ function calc_serverstats($ts3,$mysqlcon,$lang,$dbname,$slowmode,$timezone,$serv
$version_5 = $version['count']; $version_5 = $version['count'];
$version_name_5 = $version['version']; $version_name_5 = $version['version'];
} }
$sum_count = $sum_count + $version['count'];
$allinsertversion = $allinsertversion . "('" . $version['version'] . "', " . $version['count'] . "),";
} }
$version_other = $version_other[0]['count'] - $version_1 - $version_2 - $version_3 - $version_4 - $version_5; $allinsertversion = substr($allinsertversion, 0, -1);
$version_other = $sum_count - $version_1 - $version_2 - $version_3 - $version_4 - $version_5;
$total_user = count($sqlhis); $total_user = count($sqlhis);
$server_used_slots = $serverinfo['virtualserver_clientsonline'] - $serverinfo['virtualserver_queryclientsonline']; $server_used_slots = $serverinfo['virtualserver_clientsonline'] - $serverinfo['virtualserver_queryclientsonline'];
@@ -202,27 +223,60 @@ function calc_serverstats($ts3,$mysqlcon,$lang,$dbname,$slowmode,$timezone,$serv
$server_weblist = $serverinfo['virtualserver_weblist_enabled']; $server_weblist = $serverinfo['virtualserver_weblist_enabled'];
$server_version = $serverinfo['virtualserver_version']; $server_version = $serverinfo['virtualserver_version'];
if($mysqlcon->exec("UPDATE $dbname.stats_server SET total_user='$total_user', total_online_time='$total_online_time', total_online_month='$total_online_month', total_online_week='$total_online_week', total_active_time='$total_active_time', total_inactive_time='$total_inactive_time', country_nation_name_1='$country_nation_name_1', country_nation_name_2='$country_nation_name_2', country_nation_name_3='$country_nation_name_3', country_nation_name_4='$country_nation_name_4', country_nation_name_5='$country_nation_name_5', country_nation_1='$country_nation_1', country_nation_2='$country_nation_2', country_nation_3='$country_nation_3', country_nation_4='$country_nation_4', country_nation_5='$country_nation_5', country_nation_other='$country_nation_other', platform_1='$platform_1', platform_2='$platform_2', platform_3='$platform_3', platform_4='$platform_4', platform_5='$platform_5', platform_other='$platform_other', version_name_1='$version_name_1', version_name_2='$version_name_2', version_name_3='$version_name_3', version_name_4='$version_name_4', version_name_5='$version_name_5', version_1='$version_1', version_2='$version_2', version_3='$version_3', version_4='$version_4', version_5='$version_5', version_other='$version_other', version_name_1='$version_name_1', server_status='$server_status', server_free_slots='$server_free_slots', server_used_slots='$server_used_slots', server_channel_amount='$server_channel_amount', server_ping='$server_ping', server_packet_loss='$server_packet_loss', server_bytes_down='$server_bytes_down', server_bytes_up='$server_bytes_up', server_uptime='$server_uptime', server_id='$server_id', server_name=$server_name, server_pass='$server_pass', server_creation_date='$server_creation_date', server_platform='$server_platform', server_weblist='$server_weblist', server_version='$server_version'") === false) { if($mysqlcon->exec("UPDATE $dbname.stats_server SET total_user='$total_user', total_online_time='$total_online_time', total_online_month='$total_online_month', total_online_week='$total_online_week', total_active_time='$total_active_time', total_inactive_time='$total_inactive_time', country_nation_name_1='$country_nation_name_1', country_nation_name_2='$country_nation_name_2', country_nation_name_3='$country_nation_name_3', country_nation_name_4='$country_nation_name_4', country_nation_name_5='$country_nation_name_5', country_nation_1='$country_nation_1', country_nation_2='$country_nation_2', country_nation_3='$country_nation_3', country_nation_4='$country_nation_4', country_nation_5='$country_nation_5', country_nation_other='$country_nation_other', platform_1='$platform_1', platform_2='$platform_2', platform_3='$platform_3', platform_4='$platform_4', platform_5='$platform_5', platform_other='$platform_other', version_name_1='$version_name_1', version_name_2='$version_name_2', version_name_3='$version_name_3', version_name_4='$version_name_4', version_name_5='$version_name_5', version_1='$version_1', version_2='$version_2', version_3='$version_3', version_4='$version_4', version_5='$version_5', version_other='$version_other', version_name_1='$version_name_1', server_status='$server_status', server_free_slots='$server_free_slots', server_used_slots='$server_used_slots', server_channel_amount='$server_channel_amount', server_ping='$server_ping', server_packet_loss='$server_packet_loss', server_bytes_down='$server_bytes_down', server_bytes_up='$server_bytes_up', server_uptime='$server_uptime', server_id='$server_id', server_name=$server_name, server_pass='$server_pass', server_creation_date='$server_creation_date', server_platform='$server_platform', server_weblist='$server_weblist', server_version='$server_version', user_today='$user_today', user_week='$user_week', user_month='$user_month', user_quarter='$user_quarter'") === false) {
enter_logfile($logpath,$timezone,2,"calc_serverstats 8:".print_r($mysqlcon->errorInfo(), true)); enter_logfile($logpath,$timezone,2,"calc_serverstats 8:".print_r($mysqlcon->errorInfo(), true));
} }
// Write Nations
if ($allinsertnation != '') {
if($mysqlcon->exec("DELETE FROM $dbname.stats_nations") === false) {
enter_logfile($logpath,$timezone,2,"calc_serverstats 9:".print_r($mysqlcon->errorInfo(), true));
} else {
if($mysqlcon->exec("INSERT INTO $dbname.stats_nations (nation, count) VALUES $allinsertnation") === false) {
enter_logfile($logpath,$timezone,2,"calc_serverstats 10:".print_r($mysqlcon->errorInfo(), true));
}
}
}
// Write Platforms
if ($allinsertplatform != '') {
if($mysqlcon->exec("DELETE FROM $dbname.stats_platforms") === false) {
enter_logfile($logpath,$timezone,2,"calc_serverstats 9:".print_r($mysqlcon->errorInfo(), true));
} else {
if($mysqlcon->exec("INSERT INTO $dbname.stats_platforms (platform, count) VALUES $allinsertplatform") === false) {
enter_logfile($logpath,$timezone,2,"calc_serverstats 10:".print_r($mysqlcon->errorInfo(), true));
}
}
}
// Write Versions
if ($allinsertversion != '') {
if($mysqlcon->exec("DELETE FROM $dbname.stats_versions") === false) {
enter_logfile($logpath,$timezone,2,"calc_serverstats 9:".print_r($mysqlcon->errorInfo(), true));
} else {
if($mysqlcon->exec("INSERT INTO $dbname.stats_versions (version, count) VALUES $allinsertversion") === false) {
enter_logfile($logpath,$timezone,2,"calc_serverstats 10:".print_r($mysqlcon->errorInfo(), true));
}
}
}
// Stats for Server Usage // Stats for Server Usage
if(($max_entry_serverusage = $mysqlcon->query("SELECT MAX(timestamp) AS timestamp FROM $dbname.server_usage")) === false) { if(($max_entry_serverusage = $mysqlcon->query("SELECT MAX(timestamp) AS timestamp FROM $dbname.server_usage")) === false) {
enter_logfile($logpath,$timezone,2,"calc_serverstats 9:".print_r($mysqlcon->errorInfo(), true)); enter_logfile($logpath,$timezone,2,"calc_serverstats 11:".print_r($mysqlcon->errorInfo(), true));
$sqlerr++; $sqlerr++;
} }
$max_entry_serverusage = $max_entry_serverusage->fetch(PDO::FETCH_ASSOC); $max_entry_serverusage = $max_entry_serverusage->fetch(PDO::FETCH_ASSOC);
$diff_max_serverusage = $nowtime - $max_entry_serverusage['timestamp']; $diff_max_serverusage = $nowtime - $max_entry_serverusage['timestamp'];
if ($max_entry_serverusage['timestamp'] == 0 || $diff_max_serverusage > 898) { // every 15 mins if ($max_entry_serverusage['timestamp'] == 0 || $diff_max_serverusage > 898) { // every 15 mins
if($mysqlcon->exec("INSERT INTO $dbname.server_usage (timestamp, clients, channel) VALUES ($nowtime,$server_used_slots,$server_channel_amount)") === false) { if($mysqlcon->exec("INSERT INTO $dbname.server_usage (timestamp, clients, channel) VALUES ($nowtime,$server_used_slots,$server_channel_amount)") === false) {
enter_logfile($logpath,$timezone,2,"calc_serverstats 10:".print_r($mysqlcon->errorInfo(), true)); enter_logfile($logpath,$timezone,2,"calc_serverstats 12:".print_r($mysqlcon->errorInfo(), true));
} }
} }
//Calc time next rankup //Calc time next rankup
$upnextuptime = $nowtime - 86400; $upnextuptime = $nowtime - 86400;
if(($uuidsoff = $mysqlcon->query("SELECT uuid,idle,count FROM $dbname.user WHERE online<>1 AND lastseen>$upnextuptime")) === false) { if(($uuidsoff = $mysqlcon->query("SELECT uuid,idle,count FROM $dbname.user WHERE online<>1 AND lastseen>$upnextuptime")) === false) {
enter_logfile($logpath,$timezone,2,"calc_serverstats 11:".print_r($mysqlcon->errorInfo(), true)); enter_logfile($logpath,$timezone,2,"calc_serverstats 13:".print_r($mysqlcon->errorInfo(), true));
} }
if ($uuidsoff->rowCount() != 0) { if ($uuidsoff->rowCount() != 0) {
$uuidsoff = $uuidsoff->fetchAll(PDO::FETCH_ASSOC); $uuidsoff = $uuidsoff->fetchAll(PDO::FETCH_ASSOC);
@@ -261,21 +315,21 @@ function calc_serverstats($ts3,$mysqlcon,$lang,$dbname,$slowmode,$timezone,$serv
} }
$allupdateuuid = substr($allupdateuuid, 0, -1); $allupdateuuid = substr($allupdateuuid, 0, -1);
if ($mysqlcon->exec("UPDATE $dbname.user set nextup = CASE uuid $allupdatenextup END WHERE uuid IN ($allupdateuuid)") === false) { if ($mysqlcon->exec("UPDATE $dbname.user set nextup = CASE uuid $allupdatenextup END WHERE uuid IN ($allupdateuuid)") === false) {
enter_logfile($logpath,$timezone,2,"calc_serverstats 12:".print_r($mysqlcon->errorInfo(), true)); enter_logfile($logpath,$timezone,2,"calc_serverstats 14:".print_r($mysqlcon->errorInfo(), true));
} }
} }
//Calc Rank //Calc Rank
if($mysqlcon->exec("SET @a:=0") === false) { if($mysqlcon->exec("SET @a:=0") === false) {
enter_logfile($logpath,$timezone,2,"calc_serverstats 13:".print_r($mysqlcon->errorInfo(), true)); enter_logfile($logpath,$timezone,2,"calc_serverstats 15:".print_r($mysqlcon->errorInfo(), true));
} }
if ($substridle == 1) { if ($substridle == 1) {
if($mysqlcon->exec("UPDATE $dbname.user u INNER JOIN (SELECT @a:=@a+1 nr,uuid FROM $dbname.user WHERE except IN ('0','1') ORDER BY (count - idle) DESC) s USING (uuid) SET u.rank=s.nr") === false) { if($mysqlcon->exec("UPDATE $dbname.user u INNER JOIN (SELECT @a:=@a+1 nr,uuid FROM $dbname.user WHERE except IN ('0','1') ORDER BY (count - idle) DESC) s USING (uuid) SET u.rank=s.nr") === false) {
enter_logfile($logpath,$timezone,2,"calc_serverstats 14:".print_r($mysqlcon->errorInfo(), true)); enter_logfile($logpath,$timezone,2,"calc_serverstats 16".print_r($mysqlcon->errorInfo(), true));
} }
} else { } else {
if($mysqlcon->exec("UPDATE $dbname.user u INNER JOIN (SELECT @a:=@a+1 nr,uuid FROM $dbname.user WHERE except IN ('0','1') ORDER BY count DESC) s USING (uuid) SET u.rank=s.nr") === false) { if($mysqlcon->exec("UPDATE $dbname.user u INNER JOIN (SELECT @a:=@a+1 nr,uuid FROM $dbname.user WHERE except IN ('0','1') ORDER BY count DESC) s USING (uuid) SET u.rank=s.nr") === false) {
enter_logfile($logpath,$timezone,2,"calc_serverstats 14:".print_r($mysqlcon->errorInfo(), true)); enter_logfile($logpath,$timezone,2,"calc_serverstats 17:".print_r($mysqlcon->errorInfo(), true));
} }
} }
} }

View File

@@ -1,6 +1,6 @@
<?PHP <?PHP
function check_db($mysqlcon,$lang,$dbname,$timezone,$currvers,$logpath) { function check_db($mysqlcon,$lang,$dbname,$timezone,$currvers,$logpath) {
$newversion = '1.2.0'; $newversion = '1.2.1';
enter_logfile($logpath,$timezone,5,"Check Ranksystem database for updates."); enter_logfile($logpath,$timezone,5,"Check Ranksystem database for updates.");
function set_new_version($mysqlcon,$dbname,$timezone,$newversion,$logpath) { function set_new_version($mysqlcon,$dbname,$timezone,$newversion,$logpath) {
@@ -134,7 +134,7 @@ function check_db($mysqlcon,$lang,$dbname,$timezone,$currvers,$logpath) {
enter_logfile($logpath,$timezone,1,"Please check the files pemissions. Shutting down!\n\n"); enter_logfile($logpath,$timezone,1,"Please check the files pemissions. Shutting down!\n\n");
exit; exit;
} else { } else {
enter_logfile($logpath,$timezone,5," done"); enter_logfile($logpath,$timezone,5," Check files permissions [done]");
} }
} }
@@ -365,6 +365,41 @@ function check_db($mysqlcon,$lang,$dbname,$timezone,$currvers,$logpath) {
} }
} }
} }
if(version_compare($currvers, '1.2.1', '<=')) {
if($mysqlcon->exec("ALTER TABLE $dbname.stats_server MODIFY COLUMN server_name varchar(64) CHARACTER SET utf8 COLLATE utf8_unicode_ci, MODIFY COLUMN server_platform varchar(32) CHARACTER SET utf8 COLLATE utf8_unicode_ci, MODIFY COLUMN server_weblist tinyint(1) NOT NULL default '0', MODIFY COLUMN server_version varchar(64) CHARACTER SET utf8 COLLATE utf8_unicode_ci, MODIFY COLUMN total_user int(10) NOT NULL default '0', MODIFY COLUMN country_nation_1 int(10) NOT NULL default '0', MODIFY COLUMN country_nation_2 int(10) NOT NULL default '0', MODIFY COLUMN country_nation_3 int(10) NOT NULL default '0', MODIFY COLUMN country_nation_4 int(10) NOT NULL default '0', MODIFY COLUMN country_nation_5 int(10) NOT NULL default '0', MODIFY COLUMN country_nation_other int(10) NOT NULL default '0', MODIFY COLUMN platform_1 int(10) NOT NULL default '0', MODIFY COLUMN platform_2 int(10) NOT NULL default '0', MODIFY COLUMN platform_3 int(10) NOT NULL default '0', MODIFY COLUMN platform_4 int(10) NOT NULL default '0', MODIFY COLUMN platform_5 int(10) NOT NULL default '0', MODIFY COLUMN platform_other int(10) NOT NULL default '0', MODIFY COLUMN version_1 int(10) NOT NULL default '0', MODIFY COLUMN version_2 int(10) NOT NULL default '0', MODIFY COLUMN version_3 int(10) NOT NULL default '0', MODIFY COLUMN version_4 int(10) NOT NULL default '0', MODIFY COLUMN version_5 int(10) NOT NULL default '0', MODIFY COLUMN version_other int(10) NOT NULL default '0', MODIFY COLUMN server_status tinyint(1) NOT NULL default '0', MODIFY COLUMN server_free_slots smallint(5) NOT NULL default '0', MODIFY COLUMN server_used_slots smallint(5) NOT NULL default '0', MODIFY COLUMN server_channel_amount smallint(5) NOT NULL default '0', MODIFY COLUMN server_ping smallint(5) NOT NULL default '0', MODIFY COLUMN server_id smallint(5) NOT NULL default '0', MODIFY COLUMN server_pass tinyint(1) NOT NULL default '0'") === false) { } else {
enter_logfile($logpath,$timezone,4," [1.2.1] Adjusted table stats_server (part1) successfully.");
}
if($mysqlcon->exec("ALTER TABLE $dbname.stats_server ADD (user_today int(10) NOT NULL default '0', user_week int(10) NOT NULL default '0', user_month int(10) NOT NULL default '0', user_quarter int(10) NOT NULL default '0')") === false) { } else {
enter_logfile($logpath,$timezone,4," [1.2.1] Adjusted table stats_server (part2) successfully.");
}
if($mysqlcon->exec("ALTER TABLE $dbname.stats_user MODIFY COLUMN removed tinyint(1) NOT NULL default '0', MODIFY COLUMN rank int(10) NOT NULL default '0', MODIFY COLUMN count_week int(10) NOT NULL default '0', MODIFY COLUMN count_month int(10) NOT NULL default '0', MODIFY COLUMN idle_week int(10) NOT NULL default '0', MODIFY COLUMN idle_month int(10) NOT NULL default '0', MODIFY COLUMN achiev_count tinyint(1) NOT NULL default '0', MODIFY COLUMN achiev_time int(10) NOT NULL default '0', MODIFY COLUMN achiev_connects smallint(5) NOT NULL default '0', MODIFY COLUMN achiev_battles tinyint(3) NOT NULL default '0', MODIFY COLUMN achiev_time_perc tinyint(3) NOT NULL default '0', MODIFY COLUMN achiev_connects_perc tinyint(3) NOT NULL default '0', MODIFY COLUMN achiev_battles_perc tinyint(3) NOT NULL default '0', MODIFY COLUMN battles_total tinyint(3) NOT NULL default '0', MODIFY COLUMN battles_won tinyint(3) NOT NULL default '0', MODIFY COLUMN battles_lost tinyint(3) NOT NULL default '0', MODIFY COLUMN total_connections smallint(5) NOT NULL default '0', MODIFY COLUMN client_description varchar(200) CHARACTER SET utf8 COLLATE utf8_unicode_ci") === false) { } else {
enter_logfile($logpath,$timezone,4," [1.2.1] Adjusted table stats_user successfully.");
}
if($mysqlcon->exec("ALTER TABLE $dbname.user MODIFY COLUMN cldbid int(10) NOT NULL default '0', MODIFY COLUMN count int(10) NOT NULL default '0', MODIFY COLUMN name varchar(30) CHARACTER SET utf8 COLLATE utf8_unicode_ci, MODIFY COLUMN grpid int(10) NOT NULL default '0', MODIFY COLUMN nextup int(10) NOT NULL default '0', MODIFY COLUMN idle int(10) NOT NULL default '0', MODIFY COLUMN cldgroup varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci, MODIFY COLUMN online tinyint(1) NOT NULL default '0', MODIFY COLUMN boosttime int(10) NOT NULL default '0', MODIFY COLUMN rank int(10) NOT NULL default '0', MODIFY COLUMN platform varchar(32) CHARACTER SET utf8 COLLATE utf8_unicode_ci, MODIFY COLUMN nation varchar(3) CHARACTER SET utf8 COLLATE utf8_unicode_ci, MODIFY COLUMN version varchar(64) CHARACTER SET utf8 COLLATE utf8_unicode_ci, MODIFY COLUMN except tinyint(1) NOT NULL default '0'") === false) { } else {
enter_logfile($logpath,$timezone,4," [1.2.1] Adjusted table user successfully.");
}
if($mysqlcon->exec("ALTER TABLE $dbname.config MODIFY COLUMN webuser varchar(64) CHARACTER SET utf8 COLLATE utf8_unicode_ci, MODIFY COLUMN webpass varchar(64) CHARACTER SET utf8 COLLATE utf8_unicode_ci, MODIFY COLUMN tshost varchar(64) CHARACTER SET utf8 COLLATE utf8_unicode_ci, MODIFY COLUMN tsquery smallint(5) NOT NULL default '0', MODIFY COLUMN tsvoice smallint(5) NOT NULL default '0', MODIFY COLUMN tsuser varchar(30) CHARACTER SET utf8 COLLATE utf8_unicode_ci, MODIFY COLUMN tspass varchar(64) CHARACTER SET utf8 COLLATE utf8_unicode_ci, MODIFY COLUMN language char(2) CHARACTER SET utf8 COLLATE utf8_unicode_ci, MODIFY COLUMN queryname varchar(30) CHARACTER SET utf8 COLLATE utf8_unicode_ci, MODIFY COLUMN queryname2 varchar(30) CHARACTER SET utf8 COLLATE utf8_unicode_ci, MODIFY COLUMN grouptime varchar(5000) CHARACTER SET utf8 COLLATE utf8_unicode_ci, MODIFY COLUMN resetbydbchange tinyint(1) NOT NULL default '0', MODIFY COLUMN msgtouser tinyint(1) NOT NULL default '0', MODIFY COLUMN upcheck tinyint(1) NOT NULL default '0', MODIFY COLUMN uniqueid varchar(500) CHARACTER SET utf8 COLLATE utf8_unicode_ci, MODIFY COLUMN updateinfotime mediumint(6) NOT NULL default '0', MODIFY COLUMN currvers varchar(32) CHARACTER SET utf8 COLLATE utf8_unicode_ci, MODIFY COLUMN substridle tinyint(1) NOT NULL default '0', MODIFY COLUMN exceptuuid varchar(999) CHARACTER SET utf8 COLLATE utf8_unicode_ci, MODIFY COLUMN exceptgroup varchar(999) CHARACTER SET utf8 COLLATE utf8_unicode_ci, MODIFY COLUMN dateformat varchar(64) CHARACTER SET utf8 COLLATE utf8_unicode_ci, MODIFY COLUMN showexcld tinyint(1) NOT NULL default '0', MODIFY COLUMN showcolcld tinyint(1) NOT NULL default '0', MODIFY COLUMN showcoluuid tinyint(1) NOT NULL default '0', MODIFY COLUMN showcoldbid tinyint(1) NOT NULL default '0', MODIFY COLUMN showcolot tinyint(1) NOT NULL default '0', MODIFY COLUMN showcolit tinyint(1) NOT NULL default '0', MODIFY COLUMN showcolat tinyint(1) NOT NULL default '0', MODIFY COLUMN showcolnx tinyint(1) NOT NULL default '0', MODIFY COLUMN showcolsg tinyint(1) NOT NULL default '0', MODIFY COLUMN showcolrg tinyint(1) NOT NULL default '0', MODIFY COLUMN showcolls tinyint(1) NOT NULL default '0', MODIFY COLUMN slowmode mediumint(9) NOT NULL default '0', MODIFY COLUMN cleanclients tinyint(1) NOT NULL default '0', MODIFY COLUMN cleanperiod mediumint(9) NOT NULL default '0', MODIFY COLUMN showhighest tinyint(1) NOT NULL default '0', MODIFY COLUMN boost varchar(999) CHARACTER SET utf8 COLLATE utf8_unicode_ci, MODIFY COLUMN showcolas tinyint(1) NOT NULL default '0', MODIFY COLUMN defchid int(10) NOT NULL default '0', MODIFY COLUMN advancemode tinyint(1) NOT NULL default '0', MODIFY COLUMN count_access tinyint(2) NOT NULL default '0', MODIFY COLUMN ignoreidle smallint(5) NOT NULL default '0', MODIFY COLUMN exceptcid varchar(999) CHARACTER SET utf8 COLLATE utf8_unicode_ci, MODIFY COLUMN rankupmsg varchar(500) CHARACTER SET utf8 COLLATE utf8_unicode_ci, MODIFY COLUMN boost_mode tinyint(1) NOT NULL default '0', MODIFY COLUMN servernews varchar(5000) CHARACTER SET utf8 COLLATE utf8_unicode_ci, MODIFY COLUMN nextupinfo tinyint(1) NOT NULL default '0', MODIFY COLUMN nextupinfomsg1 varchar(500) CHARACTER SET utf8 COLLATE utf8_unicode_ci, MODIFY COLUMN nextupinfomsg2 varchar(500) CHARACTER SET utf8 COLLATE utf8_unicode_ci, MODIFY COLUMN nextupinfomsg3 varchar(500) CHARACTER SET utf8 COLLATE utf8_unicode_ci, MODIFY COLUMN shownav tinyint(1) NOT NULL default '0', MODIFY COLUMN showgrpsince tinyint(1) NOT NULL default '0', MODIFY COLUMN resetexcept tinyint(1) NOT NULL default '0'") === false) { } else {
enter_logfile($logpath,$timezone,4," [1.2.1] Adjusted table config successfully.");
}
if($mysqlcon->exec("ALTER TABLE $dbname.server_usage MODIFY COLUMN clients smallint(5) NOT NULL default '0', MODIFY COLUMN channel smallint(5) NOT NULL default '0'") === false) { } else {
enter_logfile($logpath,$timezone,4," [1.2.1] Adjusted table server_usage successfully.");
}
if($mysqlcon->exec("ALTER TABLE $dbname.user_snapshot MODIFY COLUMN count int(10) NOT NULL default '0', MODIFY COLUMN idle int(10) NOT NULL default '0'") === false) { } else {
enter_logfile($logpath,$timezone,4," [1.2.1] Adjusted table user_snapshot successfully.");
}
if($mysqlcon->exec("ALTER TABLE $dbname.groups MODIFY COLUMN sgid int(10) NOT NULL default '0' PRIMARY KEY, MODIFY COLUMN sgidname varchar(30) CHARACTER SET utf8 COLLATE utf8_unicode_ci") === false) { } else {
enter_logfile($logpath,$timezone,4," [1.2.1] Adjusted table groups successfully.");
}
if($mysqlcon->exec("CREATE TABLE $dbname.stats_nations (nation varchar(3) CHARACTER SET utf8 COLLATE utf8_unicode_ci, count int(10) NOT NULL default '0')") === false) { } else {
enter_logfile($logpath,$timezone,4," [1.2.1] Create table stats_nations successfully.");
}
if($mysqlcon->exec("CREATE TABLE $dbname.stats_versions (version varchar(64) CHARACTER SET utf8 COLLATE utf8_unicode_ci, count int(10) NOT NULL default '0')") === false) { } else {
enter_logfile($logpath,$timezone,4," [1.2.1] Create table stats_versions successfully.");
}
if($mysqlcon->exec("CREATE TABLE $dbname.stats_platforms (platform varchar(32) CHARACTER SET utf8 COLLATE utf8_unicode_ci, count int(10) NOT NULL default '0')") === false) { } else {
enter_logfile($logpath,$timezone,4," [1.2.1] Create table stats_platforms successfully.");
}
}
$currvers = set_new_version($mysqlcon,$dbname,$timezone,$newversion,$logpath); $currvers = set_new_version($mysqlcon,$dbname,$timezone,$newversion,$logpath);
old_files($timezone,$logpath); old_files($timezone,$logpath);
check_chmod($timezone,$logpath,$lang); check_chmod($timezone,$logpath,$lang);

View File

@@ -5,7 +5,7 @@ function update_rs($mysqlcon,$lang,$dbname,$logpath,$timezone,$newversion,$norot
enter_logfile($logpath,$timezone,4," Backup the database due cloning tables...\n",$norotate); enter_logfile($logpath,$timezone,4," Backup the database due cloning tables...\n",$norotate);
$countbackuperr = 0; $countbackuperr = 0;
$tables = array('config','groups','job_check','server_usage','stats_server','stats_user','user','user_snapshot'); $tables = array('config','groups','job_check','server_usage','stats_nations','stats_platforms','stats_server','stats_user','stats_versions','user','user_snapshot');
foreach ($tables as $table) { foreach ($tables as $table) {
if($mysqlcon->query("SELECT 1 FROM bak_$table LIMIT 1") !== false) { if($mysqlcon->query("SELECT 1 FROM bak_$table LIMIT 1") !== false) {

View File

@@ -1,4 +1,4 @@
<?PHP <?PHP
$lang= array(); $lang= array();
$lang['adduser'] = "User %s (unique Client-ID: %s; Client-database-ID %s) is unknown -> added to the Ranksystem now."; $lang['adduser'] = "User %s (unique Client-ID: %s; Client-database-ID %s) is unknown -> added to the Ranksystem now.";
$lang['changedbid'] = "User %s (unique Client-ID: %s) got a new TeamSpeak Client-database-ID (%s). Update the old Client-database-ID (%s) and reset collected times!"; $lang['changedbid'] = "User %s (unique Client-ID: %s) got a new TeamSpeak Client-database-ID (%s). Update the old Client-database-ID (%s) and reset collected times!";
@@ -149,6 +149,15 @@ $lang['stix0051'] = "لقد فشل التيم سبيك لذا لن يكون ه
$lang['stix0052'] = "others"; $lang['stix0052'] = "others";
$lang['stix0053'] = "Active Time (in Days)"; $lang['stix0053'] = "Active Time (in Days)";
$lang['stix0054'] = "Inactive Time (in Days)"; $lang['stix0054'] = "Inactive Time (in Days)";
$lang['stix0055'] = "online last 24 hours";
$lang['stix0056'] = "online last 7 days";
$lang['stix0057'] = "online last 30 days";
$lang['stix0058'] = "online last 90 days";
$lang['stix0059'] = "List of user";
$lang['stix0060'] = "User";
$lang['stix0061'] = "View all versions";
$lang['stix0062'] = "View all nations";
$lang['stix0063'] = "View all platforms";
$lang['stmy0001'] = "العضوية"; $lang['stmy0001'] = "العضوية";
$lang['stmy0002'] = "رتبة"; $lang['stmy0002'] = "رتبة";
$lang['stmy0003'] = "Database ID:"; $lang['stmy0003'] = "Database ID:";
@@ -179,6 +188,12 @@ $lang['stmy0027'] = "عدد مرات الإتصال : فضي";
$lang['stmy0028'] = "عدد مرات الإتصال: برونزي"; $lang['stmy0028'] = "عدد مرات الإتصال: برونزي";
$lang['stmy0029'] = "عدد مرات الإتصال: لايوجد رتبة"; $lang['stmy0029'] = "عدد مرات الإتصال: لايوجد رتبة";
$lang['stmy0030'] = "التقدم للمستوى القادم"; $lang['stmy0030'] = "التقدم للمستوى القادم";
$lang['stna0001'] = "Nations";
$lang['stna0002'] = "statistics";
$lang['stna0003'] = "Code";
$lang['stna0004'] = "Count";
$lang['stna0005'] = "Versions";
$lang['stna0006'] = "Platforms";
$lang['stnv0001'] = "اخبار الخادم"; $lang['stnv0001'] = "اخبار الخادم";
$lang['stnv0002'] = "اغلاق"; $lang['stnv0002'] = "اغلاق";
$lang['stnv0003'] = "تحديث معلومات المستخدم"; $lang['stnv0003'] = "تحديث معلومات المستخدم";

View File

@@ -150,6 +150,15 @@ $lang['stix0051'] = "TeamSpeak hat gefailed, daher kein Erstelldatum...";
$lang['stix0052'] = "Andere"; $lang['stix0052'] = "Andere";
$lang['stix0053'] = "Aktive Zeit (in Tagen)"; $lang['stix0053'] = "Aktive Zeit (in Tagen)";
$lang['stix0054'] = "Inaktive Zeit (in Tagen)"; $lang['stix0054'] = "Inaktive Zeit (in Tagen)";
$lang['stix0055'] = "online in d. letzten 24 Std.";
$lang['stix0056'] = "online in d. letzten 7 Tagen";
$lang['stix0057'] = "online in d. letzten 30 Tagen";
$lang['stix0058'] = "online in d. letzten 90 Tagen";
$lang['stix0059'] = "Liste der User";
$lang['stix0060'] = "User";
$lang['stix0061'] = "zeige alle Versionen";
$lang['stix0062'] = "zeige alle Nationen";
$lang['stix0063'] = "zeige alle Plattformen";
$lang['stmy0001'] = "Meine Statistiken"; $lang['stmy0001'] = "Meine Statistiken";
$lang['stmy0002'] = "Rank"; $lang['stmy0002'] = "Rank";
$lang['stmy0003'] = "Datenbank ID:"; $lang['stmy0003'] = "Datenbank ID:";
@@ -180,6 +189,12 @@ $lang['stmy0027'] = "Verbindungen: Silber";
$lang['stmy0028'] = "Verbindungen: Bronze"; $lang['stmy0028'] = "Verbindungen: Bronze";
$lang['stmy0029'] = "Verbindungen: Unranked"; $lang['stmy0029'] = "Verbindungen: Unranked";
$lang['stmy0030'] = "Fortschritt nächste Servergruppe"; $lang['stmy0030'] = "Fortschritt nächste Servergruppe";
$lang['stna0001'] = "Nationen";
$lang['stna0002'] = "Statistiken";
$lang['stna0003'] = "Kürzel";
$lang['stna0004'] = "Anzahl";
$lang['stna0005'] = "Versionen";
$lang['stna0006'] = "Plattformen";
$lang['stnv0001'] = "Server News"; $lang['stnv0001'] = "Server News";
$lang['stnv0002'] = "Schließen"; $lang['stnv0002'] = "Schließen";
$lang['stnv0003'] = "Client Informationen aktualisieren"; $lang['stnv0003'] = "Client Informationen aktualisieren";

View File

@@ -150,6 +150,15 @@ $lang['stix0051'] = "TeamSpeak has failed, so no creation date...";
$lang['stix0052'] = "others"; $lang['stix0052'] = "others";
$lang['stix0053'] = "Active Time (in Days)"; $lang['stix0053'] = "Active Time (in Days)";
$lang['stix0054'] = "Inactive Time (in Days)"; $lang['stix0054'] = "Inactive Time (in Days)";
$lang['stix0055'] = "online last 24 hours";
$lang['stix0056'] = "online last 7 days";
$lang['stix0057'] = "online last 30 days";
$lang['stix0058'] = "online last 90 days";
$lang['stix0059'] = "List of user";
$lang['stix0060'] = "User";
$lang['stix0061'] = "View all versions";
$lang['stix0062'] = "View all nations";
$lang['stix0063'] = "View all platforms";
$lang['stmy0001'] = "My statistics"; $lang['stmy0001'] = "My statistics";
$lang['stmy0002'] = "Rank"; $lang['stmy0002'] = "Rank";
$lang['stmy0003'] = "Database ID:"; $lang['stmy0003'] = "Database ID:";
@@ -180,6 +189,12 @@ $lang['stmy0027'] = "Connects: Silver";
$lang['stmy0028'] = "Connects: Bronze"; $lang['stmy0028'] = "Connects: Bronze";
$lang['stmy0029'] = "Connects: Unranked"; $lang['stmy0029'] = "Connects: Unranked";
$lang['stmy0030'] = "Progress next servergroup"; $lang['stmy0030'] = "Progress next servergroup";
$lang['stna0001'] = "Nations";
$lang['stna0002'] = "statistics";
$lang['stna0003'] = "Code";
$lang['stna0004'] = "Count";
$lang['stna0005'] = "Versions";
$lang['stna0006'] = "Platforms";
$lang['stnv0001'] = "Server news"; $lang['stnv0001'] = "Server news";
$lang['stnv0002'] = "Close"; $lang['stnv0002'] = "Close";
$lang['stnv0003'] = "Refresh client information"; $lang['stnv0003'] = "Refresh client information";

View File

@@ -150,6 +150,15 @@ $lang['stix0051'] = "Il TeamSpeak non ha una data di creazione...";
$lang['stix0052'] = "others"; $lang['stix0052'] = "others";
$lang['stix0053'] = "Active Time (in Days)"; $lang['stix0053'] = "Active Time (in Days)";
$lang['stix0054'] = "Inactive Time (in Days)"; $lang['stix0054'] = "Inactive Time (in Days)";
$lang['stix0055'] = "online last 24 hours";
$lang['stix0056'] = "online last 7 days";
$lang['stix0057'] = "online last 30 days";
$lang['stix0058'] = "online last 90 days";
$lang['stix0059'] = "List of user";
$lang['stix0060'] = "User";
$lang['stix0061'] = "View all versions";
$lang['stix0062'] = "View all nations";
$lang['stix0063'] = "View all platforms";
$lang['stmy0001'] = "Le mie statistiche"; $lang['stmy0001'] = "Le mie statistiche";
$lang['stmy0002'] = "Rank"; $lang['stmy0002'] = "Rank";
$lang['stmy0003'] = "Database ID:"; $lang['stmy0003'] = "Database ID:";
@@ -180,6 +189,12 @@ $lang['stmy0027'] = "Connessioni: Silver";
$lang['stmy0028'] = "Connessioni: Bronze"; $lang['stmy0028'] = "Connessioni: Bronze";
$lang['stmy0029'] = "Connessioni: Unranked"; $lang['stmy0029'] = "Connessioni: Unranked";
$lang['stmy0030'] = "Progresso prossimo servergroup"; $lang['stmy0030'] = "Progresso prossimo servergroup";
$lang['stna0001'] = "Nations";
$lang['stna0002'] = "statistics";
$lang['stna0003'] = "Code";
$lang['stna0004'] = "Count";
$lang['stna0005'] = "Versions";
$lang['stna0006'] = "Platforms";
$lang['stnv0001'] = "News del server"; $lang['stnv0001'] = "News del server";
$lang['stnv0002'] = "Chiudi"; $lang['stnv0002'] = "Chiudi";
$lang['stnv0003'] = "Aggiorna le informazioni utente"; $lang['stnv0003'] = "Aggiorna le informazioni utente";
@@ -239,7 +254,7 @@ $lang['stri0013'] = "<a href=\"http://nya-pw.ru/\" target=\"_blank\">sergey</a
$lang['stri0014'] = "Bejamin Frost - for per i primi bootstrap design"; $lang['stri0014'] = "Bejamin Frost - for per i primi bootstrap design";
$lang['stri0015'] = "<a href=\"http://hydrake.eu/\" target=\"_blank\">ZanK</a> - per la traduzione italiana"; $lang['stri0015'] = "<a href=\"http://hydrake.eu/\" target=\"_blank\">ZanK</a> - per la traduzione italiana";
$lang['stri0016'] = "<a href=\"http://iraqgaming.net/\" target=\"_blank\">DeStRoYzR</a> & <a href=\"http://www.sagamer.net/\" target=\"_blank\">Jehad</a> - per avviare la traduzione in arabo"; $lang['stri0016'] = "<a href=\"http://iraqgaming.net/\" target=\"_blank\">DeStRoYzR</a> & <a href=\"http://www.sagamer.net/\" target=\"_blank\">Jehad</a> - per avviare la traduzione in arabo";
$lang['stri0017'] = "<a href=\"http://whitecs.ro/\" target=\"_blank\">SakaLuX</a> - per avviare la traduzione in rumeno" $lang['stri0017'] = "<a href=\"http://whitecs.ro/\" target=\"_blank\">SakaLuX</a> - per avviare la traduzione in rumeno";
$lang['stri0018'] = "<a href=\"https://r4p3.net/members/0x0539.5476/\" target=\"_blank\">0x0539</a> - for initialisation dutch translation"; $lang['stri0018'] = "<a href=\"https://r4p3.net/members/0x0539.5476/\" target=\"_blank\">0x0539</a> - for initialisation dutch translation";
$lang['sttw0001'] = "Top utenti"; $lang['sttw0001'] = "Top utenti";
$lang['sttw0002'] = "Della settimana"; $lang['sttw0002'] = "Della settimana";

View File

@@ -150,6 +150,15 @@ $lang['stix0051'] = "TeamSpeak mislukt, geen aanmaakdatum...";
$lang['stix0052'] = "overige"; $lang['stix0052'] = "overige";
$lang['stix0053'] = "Actieve Tijd (in Dagen)"; $lang['stix0053'] = "Actieve Tijd (in Dagen)";
$lang['stix0054'] = "Inactieve Tijd (in Dagen)"; $lang['stix0054'] = "Inactieve Tijd (in Dagen)";
$lang['stix0055'] = "online last 24 hours";
$lang['stix0056'] = "online last 7 days";
$lang['stix0057'] = "online last 30 days";
$lang['stix0058'] = "online last 90 days";
$lang['stix0059'] = "List of user";
$lang['stix0060'] = "User";
$lang['stix0061'] = "View all versions";
$lang['stix0062'] = "View all nations";
$lang['stix0063'] = "View all platforms";
$lang['stmy0001'] = "Mijn statistieken"; $lang['stmy0001'] = "Mijn statistieken";
$lang['stmy0002'] = "Rang"; $lang['stmy0002'] = "Rang";
$lang['stmy0003'] = "Database ID:"; $lang['stmy0003'] = "Database ID:";
@@ -180,6 +189,12 @@ $lang['stmy0027'] = "Connecties: Zilver";
$lang['stmy0028'] = "Connecties: Brons"; $lang['stmy0028'] = "Connecties: Brons";
$lang['stmy0029'] = "Connecties: Geen rang"; $lang['stmy0029'] = "Connecties: Geen rang";
$lang['stmy0030'] = "Vooruitgang volgende servergroep"; $lang['stmy0030'] = "Vooruitgang volgende servergroep";
$lang['stna0001'] = "Nations";
$lang['stna0002'] = "statistics";
$lang['stna0003'] = "Code";
$lang['stna0004'] = "Count";
$lang['stna0005'] = "Versions";
$lang['stna0006'] = "Platforms";
$lang['stnv0001'] = "Server nieuws"; $lang['stnv0001'] = "Server nieuws";
$lang['stnv0002'] = "Sluiten"; $lang['stnv0002'] = "Sluiten";
$lang['stnv0003'] = "Ververs client informatie"; $lang['stnv0003'] = "Ververs client informatie";

View File

@@ -150,6 +150,15 @@ $lang['stix0051'] = "TeamSpeak nu a reușit , deci nici o data creată...";
$lang['stix0052'] = "others"; $lang['stix0052'] = "others";
$lang['stix0053'] = "Active Time (in Days)"; $lang['stix0053'] = "Active Time (in Days)";
$lang['stix0054'] = "Inactive Time (in Days)"; $lang['stix0054'] = "Inactive Time (in Days)";
$lang['stix0055'] = "online last 24 hours";
$lang['stix0056'] = "online last 7 days";
$lang['stix0057'] = "online last 30 days";
$lang['stix0058'] = "online last 90 days";
$lang['stix0059'] = "List of user";
$lang['stix0060'] = "User";
$lang['stix0061'] = "View all versions";
$lang['stix0062'] = "View all nations";
$lang['stix0063'] = "View all platforms";
$lang['stmy0001'] = "Statisticile mele"; $lang['stmy0001'] = "Statisticile mele";
$lang['stmy0002'] = "Rank"; $lang['stmy0002'] = "Rank";
$lang['stmy0003'] = "Database ID:"; $lang['stmy0003'] = "Database ID:";
@@ -180,6 +189,12 @@ $lang['stmy0027'] = "Connects: Silver";
$lang['stmy0028'] = "Connects: Bronze"; $lang['stmy0028'] = "Connects: Bronze";
$lang['stmy0029'] = "Connects: Unranked"; $lang['stmy0029'] = "Connects: Unranked";
$lang['stmy0030'] = "Progress next servergroup"; $lang['stmy0030'] = "Progress next servergroup";
$lang['stna0001'] = "Nations";
$lang['stna0002'] = "statistics";
$lang['stna0003'] = "Code";
$lang['stna0004'] = "Count";
$lang['stna0005'] = "Versions";
$lang['stna0006'] = "Platforms";
$lang['stnv0001'] = "Server news"; $lang['stnv0001'] = "Server news";
$lang['stnv0002'] = "Close"; $lang['stnv0002'] = "Close";
$lang['stnv0003'] = "Refresh client information"; $lang['stnv0003'] = "Refresh client information";

View File

@@ -150,6 +150,15 @@ $lang['stix0051'] = "Ошибка при получении даты";
$lang['stix0052'] = "others"; $lang['stix0052'] = "others";
$lang['stix0053'] = "Active Time (in Days)"; $lang['stix0053'] = "Active Time (in Days)";
$lang['stix0054'] = "Inactive Time (in Days)"; $lang['stix0054'] = "Inactive Time (in Days)";
$lang['stix0055'] = "online last 24 hours";
$lang['stix0056'] = "online last 7 days";
$lang['stix0057'] = "online last 30 days";
$lang['stix0058'] = "online last 90 days";
$lang['stix0059'] = "List of user";
$lang['stix0060'] = "User";
$lang['stix0061'] = "View all versions";
$lang['stix0062'] = "View all nations";
$lang['stix0063'] = "View all platforms";
$lang['stmy0001'] = "Моя статистика"; $lang['stmy0001'] = "Моя статистика";
$lang['stmy0002'] = "Ранг"; $lang['stmy0002'] = "Ранг";
$lang['stmy0003'] = "ID в базе данных:"; $lang['stmy0003'] = "ID в базе данных:";
@@ -180,6 +189,12 @@ $lang['stmy0027'] = "Уровень: Серебро";
$lang['stmy0028'] = "Уровень: Бронза"; $lang['stmy0028'] = "Уровень: Бронза";
$lang['stmy0029'] = "Уровень: Без достижений"; $lang['stmy0029'] = "Уровень: Без достижений";
$lang['stmy0030'] = "Прогресс до следующего ранга на сервере"; $lang['stmy0030'] = "Прогресс до следующего ранга на сервере";
$lang['stna0001'] = "Nations";
$lang['stna0002'] = "statistics";
$lang['stna0003'] = "Code";
$lang['stna0004'] = "Count";
$lang['stna0005'] = "Versions";
$lang['stna0006'] = "Platforms";
$lang['stnv0001'] = "Наши новости"; $lang['stnv0001'] = "Наши новости";
$lang['stnv0002'] = "Закрыть"; $lang['stnv0002'] = "Закрыть";
$lang['stnv0003'] = "Обновление информации о клиенте"; $lang['stnv0003'] = "Обновление информации о клиенте";

View File

@@ -0,0 +1,150 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="480" width="640" viewBox="0 0 640 480">
<path fill="#d0103a" d="M0 0h640v480H0z"/>
<path fill="#fedf00" d="M0 0h435.2v480H0z"/>
<path fill="#0018a8" d="M0 0h204.8v480H0z"/>
<path d="M300.4 136.63c7.7 0 10.86 6.6 18.58 6.6 4.75 0 7.53-1.54 11.68-3.88 2.9-1.64 4.74-2.52 8.07-2.52 3.4 0 5.5 1.03 7.23 3.95 1 1.65 1.8 4.88 1.37 6.74-.82 3.5-1.32 5.04-2.73 8.3-.67 1.55-1.3 2.48-1.3 4.2 0 4.08 5.57 5.5 9.36 5.55.83 0 7.77.12 12.04-4.2-2.32-.1-4.9-1.9-4.9-4.22 0-2.62 1.84-4.4 4.33-5.15.48-.14 1.3.28 1.72.05.6-.3.32-1 .86-1.43 1.3-1 2.1-1.6 3.7-1.6 1.1 0 1.7.13 2.5.73.5.32.6.7 1.2.7 1.2 0 1.7-.7 2.9-.7.9 0 1.5.1 2.3.53.7.35.7 1.5 1.5 1.5.4 0 2.4-.83 3.5-.83 2.2 0 3.4.8 4.8 2.48.4.45.7 1.36 1.1 1.36.8 0 2.6.5 3.8 1.6.5.5.7.7 1.1 1.3.3.4.7 1.4 1.1 1.6.6.2 1 .1 1.7.6 1.7 1 2.9 3 2.8 4.8 0 .6-.3 1.5-.4 2.1-1.9 6.5-6.3 8.6-10.9 14.3-1.9 2.4-3.4 4.3-3.4 7.4 0 .7.9 2.1 1.3 2.7-.2-1.5.4-3.3 2-3.3 2.1-.2 3.7 1.4 4 3.5.1.4-.1 1.3-.3 1.8 1.1-.8 2.6-1.3 4-1.4.8-.1 1.2-.1 1.9-.1 3.4.1 7.1 1.9 9.3 3.9 6.9 5.8 7.7 14.4 7.4 16.7-.8 5.3-.3 14.8-13.8 18.6 2.5 1.1 4.2 2.9 4.2 5.2 0 2.5-1.9 4.6-4.4 4.6-1.4 0-2.4-.4-3.4-1.4-2.8 2.8-3.3 5.7-3.3 9.7 0 2.4.5 3.8 1.5 5.9 1.1 2.3 1.8 3.6 3.7 5.2 1-1.5 2.1-2.6 3.9-2.6 1.8 0 3.3.5 4 2.1.2.5 0 .9.3 1.3.3.6.9.7 1.2 1.3.5.9 0 1.7.4 2.7.3.6.9.7 1.2 1.3.5 1 .6 1.6.6 2.7 0 3-2.7 5.2-5.7 5.2-.9 0-1.4-.4-2.3-.3 1.7 1.7 3.1 2.4 4.4 4.5 1.9 2.9 2.3 5.1 2.8 8.6.1.6.1 1 .1 1.7 0 4.5-.7 7.2-2.7 11.2-2 3.8-3.6 6-7.1 8.5-5.5 3.9-9.4 5-16 6.3-4.3.8-6.7 1.2-11 1.5-5.5.4-8.6.4-14.1.7-7.2.5-12.2 1.5-17.3 6.6 2.4 1.8 4.1 3.5 4.1 6.5s-1.9 5.2-4.8 6.2c-.7.2-1.2 0-1.8.4-.8.4-.7 1.3-1.5 1.7-1.3.8-2.3 1-3.8 1-2.7 0-4.5-.7-6.4-2.6-2.2 1.9-2.9 3.5-5.4 4.9-.8.5-1.2 1.1-2.1 1.1-1.5 0-2.1-.9-3.3-1.8-1.9-1.4-2.9-2.3-4.4-4.1-2.2 1.3-3.6 2.4-6.2 2.4-1.6 0-2.6-.2-3.9-1.1-.7-.4-.9-1.1-1.6-1.5-.7-.5-1.4-.3-2.2-.6-3-1.3-5-3.6-5-6.9 0-2.9 1.9-4.7 4.5-6-5-5-9.9-5.9-17-6.3-5.5-.4-8.6-.4-14-.77-4.33-.3-6.74-.73-11.04-1.5-3.2-.5-5.14-.7-8.1-2.1-10.3-4.7-16.8-11.3-18.1-22.5-.1-1-.1-1.5-.1-2.5 0-5.8 2.3-9.4 6.4-13.5-1.1-.3-1.8.1-2.8-.3-2.6-.9-4.45-2.7-4.45-5.5 0-1 0-1.7.5-2.5.3-.65 1-.77 1.14-1.47.2-.97-.1-1.6.38-2.5.3-.6.88-.7 1.1-1.27.9-1.9 2-3.4 4.1-3.4 1.8 0 2.9.9 3.8 2.4 1.7-.8 2.2-2.1 3.2-3.7 1.6-2.7 2.4-4.6 2.4-7.7 0-2.2-.2-3.5-.9-5.6-.5-1.5-.7-2.5-1.8-3.6-1 1-2 1.4-3.45 1.4-2.8 0-5-2.4-5-5.3 0-2.1 1-3.7 3-4.6-1.6-1.35-2.9-1.5-4.6-2.5-2.6-1.6-3.5-3.4-5.3-5.96-1.1-1.7-1.4-2.9-2-4.8-.7-2.3-1.1-3.7-1.1-6.2 0-.6 0-1 .1-1.6.6-4.9 1.5-8 4.6-11.8 1.85-2.3 3.1-3.7 5.8-4.9 2.3-1 3.7-1.7 6.2-1.7.76 0 1.2 0 1.95.1 1.14.1 1.9.3 2.9.8.4.2 1.1.9 1.1.4s-.27-.8-.27-1.3c0-2.1 1.5-4 3.6-4 1.5 0 2.1 1.4 2.85 2.7.5-.8.7-1.4.7-2.3 0-3.4-1.8-5.2-4-7.8-4.7-5.85-10.5-8.57-10.5-16.04 0-2.2 1.1-3.7 3-4.8.58-.3 1.3 0 1.8-.3.4-.3.4-.9.7-1.3.4-.76.9-1.1 1.5-1.6 1-1 2-.7 3.1-1.5.6-.4.7-.9 1.2-1.5 1.3-1.6 2.5-2.3 4.6-2.3 1 0 1.6 0 2.6.4.3.1.9.6 1 .5.2-.25.7-.85 1.4-1.16.9-.4 1.3-.6 2.2-.6 1.18 0 1.9.6 3 .6.4 0 .5-.4.8-.62 1-.65 1.6-1 2.8-1 1.18 0 1.8.4 2.8 1 .9.6 1 1.4 2 1.9.5.3.9.2 1.5.4 2.6.8 4.6 2.5 4.6 5.3 0 1.5-.35 2.5-1.45 3.5-.9.8-1.7.6-2.8 1 3.6 2.9 6.7 3.6 11.3 3.6 4.2 0 9.33-1.7 9.33-5.9 0-2-1.1-3-1.85-4.8-1.4-3.2-2.2-5.1-2.2-8.6 0-2.8.3-4.4 1.9-6.7 1.66-2.3 3.68-2.84 6.5-2.84z" fill="#c7b37f"/>
<g fill="none" stroke="#703d29">
<path d="M272.38 159c.27 1.06 1.12 2.04 2.44 2.45.8.25 2.64.15 3.83-1.4.97-1.24.9-2.8.54-4.02-.3-.8-.9-1.57-1.8-2.22l-5.1 5.2v.1z" stroke-width=".67" stroke-linejoin="round"/>
<path d="M401.03 236.12c-1.2-2.88-4.28-1.6-4.47 0-.44 3.67 2.78 4.78 5.07 4.18 1.13-.3 1.96-1 2.5-1.94.6-1.05.77-2.42.38-3.73a4.9 4.9 0 0 0-.8-1.65 4.97 4.97 0 0 0-1.3-1.2c-.9-.57-1.8-.62-3.3-.62-5.5 0-10.4 6.58-12.1 13.42-.5 2.25-1.2 7.28-.2 12.04 1.1 5.08 3.3 8.6 5.9 11.26 1.4 1.44 3.3 2.72 5.8 4.12.8.42 2.8 1.3 4.2 1.7 1.5.42 2.8.36 4 .1 3.3-.7 4.8-3.78 3.2-6.93-1.4-2.57-5.4-3.98-7.3-.7-.1.28-.4.9-.4 1.55 0 .87.4 1.93 1 2.33 1.5.9 3.8.65 3.7-1.88" stroke-width=".66" stroke-linecap="round"/>
<path d="M383.8 273.96c1.12-1.3 3.7-3.3 6.62-3.65 2.98-.3 5.57.5 8.2 2 5.17 2.8 8.05 5.8 9.96 11.3.5 1.4.9 3.5.84 5.8-.1 3.6-1 7.5-1.98 9.4-.86 1.7-3.1 9-15.33 14-7.1 3-18.1 3.7-25.6 4-10.4.4-20 .8-25.6 7.7" stroke-width=".82"/>
<g stroke-width=".72">
<path d="M386.4 285.73c-.3-1.1-.02-2.15.85-3.34 1.16-1.6 3.63-2.2 5.87-.9.75.4 1.7.9 2.53 2.1.32.4.87 1.1 1.15 1.5.68 1.1.96 2.1 1.1 2.5 2.45 7-1.46 14.5-6.57 17.6-3.98 2.3-8.7 3.4-14.38 4.1-2.55.3-4 .3-6.57.4-2.07.1-3.85 0-5.53 0-1.38 0-2.7 0-4.03-.1-2.18-.1-4.44-.1-7.2.1-2.92.2-5.1.3-7.58.7-1.6.2-3.5.5-5.46.9-.6.1-1.2.2-1.8.4l-1.2.4c-3.57 1.1-7.04 2.4-9.77 4.1-.8.5-1.8 1-2.4 1.7-.4.4-.9.8-1.3 1.2-1.9 1.9-3.8 3.9-4.3 6.7-.1.5-.1 1-.1 1.6 0 1.8 1.5 4.2 5.4 5m5.5-170.1c.8 1.5 1.3 2.4.8 3.9-.5 1.7-1.8 2.8-3.5 2.8-3.9 0-6.3-4.7-4.5-7.7 3.2-5.4 9.4-2.4 15 .3-.3-1.4-.7-1.8-.7-3.5.1-4.2 3.3-6.1 4.5-10 .7-2.3 1-4.3-.7-6-1.4-1.5-3.1-1.4-5.1-.7-3.8 1.5-8.4 5.8-16.6 5.9-8.1-.1-12.8-4.5-16.6-6-1.9-.7-3.6-.8-5.1.7-1.7 1.6-1.4 3.6-.6 5.9 1.3 3.9 4.4 5.8 4.5 10 .1 1.7-.4 2.1-.7 3.5 5.7-2.7 12.1-5.9 15-.3 1.7 3.1-.5 7.7-4.5 7.7-1.7 0-3-1.1-3.5-2.8-.5-1.5 0-2.8.8-3.9"/>
<path d="M314.56 159.87c1.54 1.17 2.62 2.62 2.44 4.97-.2 2.55-.8 3.17-2.8 4.53m2.4-3.8c-.1 1.54-.73 2.53-2.27 3.16" stroke-linecap="round"/>
</g>
<path d="M276.74 153.27l.7.5.74.8.5 1 .24.84.05 1.1-.05.8-.25.9-.5.6-.6.7-.84.5-1.1.3-.94.2-1-.4-.9-.6-.6-.8-.4-1v-.4l4.9-4.6z" fill="#c7b37f" stroke="none"/>
<path d="M275.2 157.16c-.3-1.65-2.23-2-2.98-1-1.15 1.5-.3 4 2.03 4.73.8.2 2.64.1 3.83-1.4.97-1.3.9-2.8.54-4.1-.24-.8-.88-1.5-1.73-2.2-2.8-2.1-7.2-1.6-8.6 1.9-1.9 4.5 2.2 7.8 5.9 10.4 4.7 3.2 10 3.7 14.1 3.7 9.1-.1 16.1-4.5 20.6-7 1-.6 2.1-.5 2.6.2.6.7.6 1.9-.3 2.7" stroke-width=".67" stroke-linecap="round"/>
<path d="M248.06 281.18l-2.04.75-2.1 1.6-.88 1.24-1.15 2-.5 1.48-.4 1.84-.2 1.3m19-10.1l-.2 1.8-.3 1.2-.9 2.1-1.4 1.8-1.5 1.2-1.1.5-1.6.3" stroke-width=".68"/>
<path d="M319.74 329.1c-.37 1.66-1.92 3.56-5.3 4.24l-.65.14" stroke-width=".77"/>
<path d="M404.22 276.2c2.13 2 3.64 4.42 4.8 7.75.48 1.4.88 3.53.82 5.78-.1 3.58-1 7.5-1.98 9.4-.85 1.66-3.08 8.96-15.32 14-7.14 2.94-18.1 3.62-25.68 3.92-10.25.4-19.72.78-25.33 7.37" stroke-width=".87"/>
<path d="M387.5 282.85c.75-1.04 3.52-2.35 5.76-1.1.73.4 1.6.92 2.37 2.07" stroke-width=".59"/>
<path d="M401.6 273.8c.5.18 1 .35 1.44.48 1.43.4 2.78.44 3.94.1 2.83-.86 4.65-3.5 3.18-6.94-.34-.8-1-1.56-1.74-2.14" stroke-width=".87"/>
<path d="M240.28 199.76c-1.9 1.18-3.3 1.46-4.8 3.17-1.46 2.9-2.04 4.48-2.62 6.82m46.1-51.7c0 1.72-1.26 2.8-2.98 3.17" stroke-width=".67" stroke-linecap="round"/>
<path d="M397.1 192.02c4.74-.1 18.48 3.6 18.58 19.76.1 15.95-9.84 18.56-13.83 19.62" stroke-width=".64"/>
<path d="M398.36 192.02c8.15-.35 16.57 5.65 16.94 20.63.3 11.7-8 17-12 18.08" stroke-width=".66"/>
<path d="M393.8 248.42l.14-1.6.53-2.54.75-1.98.85-1.63 1.1-1.32m7.78-3.4l-.12 1.57-.45 1.07-.7 1-.8.6-1.2.4-1.08.1-.8-.2m-14.3-52.8l.34-1.7.75-1.6.9-1.6 1.6-2.2 1.3-1.5 2.1-2.2 1.8-1.9 1.2-1.4 1.5-1.9 1.3-2.1.8-1.7.4-2.2.1-2.7-.3-.8M387 290.4l1.6-.3 1.2-.7.7-.67.44-.77.3-1.2v-.8m-158-12l1.2.1 1.5-.15 1.56-.5m5-36.5l-.2 1.4-.3.7-.45.6-.63.5-.7.3-.93.2-.7.1m9.9-15.6l-.3 2.2-.4 1-.9 1.2-1.2.9-1.2.6-2.3.6m15.3-39.8l-.5 1.3-.5 1-.8 1-1.1 1-1.3.6-1 .3h-.7m.4-6.2v1" stroke-width=".56"/>
<g stroke-width=".63">
<path d="M254.28 224.06a6.86 6.86 0 0 1-2.1 1.3m150.53 44.82c.1.1.4.14.5.2 1.4.85 4.2-.2 3.4-2.4" stroke-linecap="round"/>
<path d="M397.8 239.6c1 1.32 2.9 1.66 4.4 1.27 1.12-.3 1.95-1 2.48-1.94.6-1.05.78-2.42.4-3.73a4.9 4.9 0 0 0-.85-1.65c-.43-.56-.96-1.16-1.37-1.43-.1-.07-.2-.16-.33-.24m6.42 34a3.94 3.94 0 0 0 .07-.7c0-1.16-.48-2.23-1.3-2.94-.26-.25-.53-.62-.86-.8m.48.48c-.05-1.86-1.57-3.2-3.46-3.53m-4.17 2.8c-.4-.4-.9-.7-1.3-1.1-2.4-2.6-4.3-6.4-4.3-10.7 0-4.2 1.7-8.4 3.6-10M341.2 324l1.8-1.64 1.3-.95 2.35-1.4 2.2-1 1.53-.4 3.1-.7 3.58-.5m-29.5 19.4c-1.3 2-4.4 5-7.6 6.2-3.25-1.2-6.33-4.1-7.63-6.1"/>
<path d="M314.42 332.63c-.4 1.5-1.14 2.96-2.22 4.13" stroke-linecap="round"/>
<path d="M314.74 330.54l-.45 2.2m-2.4 4.17l-1 1-1.7 1-2 .6m-5.6-177.8c.2-.7.5-1.3.4-2.5-.2-4.2-3.3-6.1-4.5-10-.8-2.3-1.1-4.3.6-5.9 1.5-1.4 3.2-1.4 5.2-.6 3.8 1.5 8.5 5.8 16.6 6-8.2-.1-12.8-4.5-16.7-6-2-.8-3.8-1-5.3.4-1.7 1.7-1.3 3.9-.5 6.2 1.2 3.9 4.2 5.8 4.3 10 0 1.3-.3 1.8-.6 2.6m18.9-13.7c8-.4 14.8-5.8 17.1-6.2 1.9-.4 3-.2 4.5 1.1-1.5-1.3-3.1-1.3-5-.6-3.9 1.5-8.5 5.8-16.6 5.9m79.6 112.9c-3.4-2.4-6.2-7-6.3-12.4 0-4.1 1.7-8.4 3.6-10m-70 97.6c-1.3 2-4.4 5-7.6 6.2-3.2-1.2-6.3-4.2-7.6-6.2"/>
<path d="M306.67 163.67l2.32-1.3c1-.57 2.3-.45 2.8.2.6.76.7 2.05-.2 2.84" stroke-linecap="round"/>
<path d="M294.7 169.27c5.5-1.14 9.98-3.6 13.37-5.5m32.27 164.18c.45.3.75.96.75.96l.3.9c.2 1.5-.8 2.5-2 2.6-1.7.2-3-.8-3.5-2M294.4 169c5.5-1.16 9.97-3.62 13.36-5.5m97.55 106.9c-1 .4-1.6.34-2.9-.24-.5-.23-1.1-.6-1.8-1-2.5-1.45-5.6-3.73-8.4-9.06a18.8 18.8 0 0 1-1.7-4.47c-.3-1.1-.4-2.2-.5-3.34-.1-2 .2-4 .6-6.3.8-3.8 1.8-5.9 4.1-9.1 1.2-1.6 2.2-2.6 4.3-2.6M255.3 195c1.8 1.5 2.6 3.4 2.6 5.73 0 3.1-2.6 8.15-8.97 9.95-2.4.66-4.9.1-6.3-.78"/>
<path d="M256.3 205.62c1.14.8 1.6 1.7 1.6 3.24 0 1.07-.7 2.45-1.87 3.76-1.92 2.14-5.18 3.96-8.78 4-1.96.03-4-.38-6.03-1.75-2.2-1.46-3.34-3.43-3.83-5.37"/>
<path d="M256.2 212.3c1.3 1.2 1.7 2.68 1.7 4.56 0 2.74-1.13 4.86-3.7 7.1-.57.5-1.2.98-1.93 1.4m129.43-22.08v3.54m-.3-4.4v4.97m.3-15.8v6.5m-.3-8v8.9m-1.9 82c-1.22 2.4-2.2 3.7-4.17 5.6-1.97 1.9-3.34 2.8-5.82 4.1-2.4 1.2-3.9 1.6-6.5 2.2-2.6.6-4.1.7-6.8.8-2.4.1-3.9 0-6.3-.2-2.6-.2-4.1-.6-6.7-.8-2.2-.2-3.4-.4-5.6-.4-2.2 0-3.5 0-5.7.4-2 .4-3.2.6-5.2 1.4-2.6 1.1-5.7 3-6.3 3.8-.6-.9-3.6-2.8-6.3-3.8-1.9-.8-3.1-1.1-5.2-1.5-2.2-.4-3.5-.4-5.7-.4-2.1 0-3.4.2-5.5.4-2.6.2-4.1.6-6.7.8-2.5.1-3.9.2-6.3.1-2.7-.1-4.2-.3-6.9-.9-2.6-.6-4.1-1-6.5-2.2-2.5-1.3-3.8-2.2-5.8-4.1l-.6-.6m42.1 53.4l1.8-.2m30.3-2.4l1.8-.2 1.8-.7 1.2-.7 1.7-2 .4-.8.3-1.7.1-.8M393.2 193c.77-2.6-.17-5.4-2.73-5.3m-132 46.5c-.64 2.2-2.04 3.7-3.6 4.7m3.6-46.7c-.6 1.85-1.8 3.2-3.62 4-1.82.84-4 .1-5.1-.8"/>
<path d="M243.8 202.37c1.54.8 3.1-.38 2.77-2.37-.15-.93-1.15-2.1-2.5-2.2" stroke-linecap="round"/>
<path d="M250.16 286.63c.33.3.4.7.84.8.67.12 1.2.37 1.87-.53.83-1.1.38-2.82-.48-3.9-1-1.15-3.6-2.18-5.9-.93-.8.4-1.7.96-2.6 2.1-.3.4-.9 1.1-1.2 1.58-.7 1.16-1 2.1-1.1 2.5-2.1 5.8.4 11.93 4.1 15.66"/>
<path d="M340.22 327.83c.4.42.64.8.64.8.13.3.23.58.28.84.26 1.52-.74 2.47-1.97 2.62-1.7.1-2.83-.9-3.37-2.1" stroke-linecap="round"/>
<path d="M389.44 154.76c3.35.4 6.26 3.6 6.26 7.03 0 4.4-1.5 6-3.82 9.2-2.5 3.4-10.65 9.6-10.65 16.6 0 4.3 1.2 7 4.28 8.4 2 .9 4.4-.1 5.4-1 2.6-2.4 1.6-6.5-1.1-7-3.3-.6-3.9 4.5-.7 4.2m17.9 69.1c-.3-1.8-1.8-3.2-3.6-3.2-2 0-3.6 1.7-3.6 3.7 0 1 .4 1.9 1.1 2.6"/>
<path d="M383.87 195.12c-1.78 1.5-2.64 3.4-2.64 5.72 0 3.1 2.6 8.16 8.96 9.96 2.4.68 4.7.62 6.2-.27m-156-10.33c-1.6.5-3.5 1.45-4.9 3.45-1.2 1.68-1.9 4.02-2.3 6.07-.2.9-.4 3.73.1 6.66.4 2.16 1.3 4.18 2.3 5.63a7.94 7.94 0 0 0 1 1.3c.3.4.8.6 1.1.9m64 92.1c4.8 2.2 8.4 3.8 11.4 8.5.9 1.5 1.2 3.7 1.2 4.9 0 2.7-1.1 5.7-3.4 7.6-2.1 1.8-4.1 2.3-6.7 2.1-1.9-.2-3.7-1.6-4-2.6M254 224.2c2.74 2.1 3.88 4.2 3.88 7.5 0 3.8-1.84 6.1-3.98 7.5"/>
<path d="M251.5 236.42c4.1 5.08 6.26 8.1 6.38 14.13.12 5.68-1.7 9.56-5.07 13.64" stroke-linecap="round"/>
<path d="M329.75 169.32c.74-.48 1.28-1.26 1.6-2.23.48-1.5.5-2.8-.3-3.9.97 1.2 1.06 2.3.8 3.9-.2 1-.82 1.5-1.6 2.2m51.45 86.1v16.1h.04s0 1.5-.14 2.5a34.4 34.4 0 0 1-.27 1.7"/>
<path d="M381.4 253.96v17.42h.06s0 1.53-.14 2.5c-.13 1-.28 1.84-.46 2.63m.55-42.9v14.6m.3-13.4v11.9m0-26.8v8.9m-.3-9.9v10.9m.3-18.9v3.5m-.3-4.1v4.9m-1.8 65.2l-.3.7c-1.2 2.5-2.2 3.8-4.2 5.7-1.9 2-3.3 2.8-5.8 4.1-2.4 1.2-3.9 1.6-6.5 2.2-2.6.6-4.1.8-6.8.9-2.4.1-3.8 0-6.3-.2-2.6-.2-4.1-.5-6.7-.8-2.1-.2-3.4-.3-5.6-.3-2.2 0-3.5 0-5.7.4-2 .4-3.2.7-5.1 1.5-2.7 1.1-5.7 3-6.3 3.8-.6-.8-3.7-2.7-6.3-3.8-2-.7-3.1-1-5.2-1.4-2.2-.4-3.5-.4-5.8-.4-2.2 0-3.4.2-5.6.4-2.6.3-4.1.6-6.7.8-2.5.2-3.9.3-6.3.2-2.7-.1-4.2-.3-6.9-.9-2.6-.6-4.1-1-6.6-2.2-2.4-1.2-3.8-2.1-5.8-4-1-1-1.8-1.8-2.4-2.7m-2-3.2c.4 3.2-.9 6.3-2.2 7.7-.9.9-2.7 2.6-5 2.6-3.8.1-4.9-2.5-5.1-3.2"/>
<path d="M255.62 278.85c.7.7 1.32 1.54 1.85 2.54.94 1.7.65 4.7-.1 6.1a4.43 4.43 0 0 1-.3.4M236.83 306c2.24 2.36 5.65 4.92 10.87 7.07 7.14 2.94 18.1 3.62 25.67 3.92 10.06.4 19.33.8 24.97 7m17.36-4c1.67 1.6 3.36 3.4 4.08 5.6m-7.34 11.4a8.22 8.22 0 0 1-.7.6c-2.08 1.7-4.13 2.3-6.67 2-1.92-.2-3.78-1.7-4.27-2.6m-5.36-2.9l.3.3c1.2 1.4 3.1 2.3 5.1 2.4m26.87-.1c-1.2 2-4.3 4.9-7.6 6.1-3.2-1.2-6.3-4.2-7.6-6.2l-.3-.5m15.6.5c.3.2.5.5.8.7 2.1 1.8 4.2 2.3 6.7 2 2-.2 3.5-1.5 4.1-2.6 0 0 .4-.4.5-.8"/>
<path d="M339.04 336.63l-.74 1.2-1.13.94-1.7.7-1.56.07"/>
<path d="M343.06 325.26c.92.7 1.8 1.77 2.3 2.9.32.73.46 1.54.5 2.37a5.85 5.85 0 0 1-1.42 4.14c-1.27 1.5-3.27 2.4-5.4 2.48a5.48 5.48 0 0 1-.46 0m.2-.3c-2.04.1-3.86-.77-5.2-2.15m63.68-67.86c-1.58-1.46-3.22-3.48-4.8-6.45a18.8 18.8 0 0 1-1.7-4.5c-.28-1.1-.47-2.2-.5-3.4-.08-1.9.13-4 .6-6.2.8-3.8 2.2-6.8 4.08-9.1.64-.8 1.38-1.8 2.08-2.3m-1.37-75.8c2.54.2 4.9 2.9 4.86 5.6 0 3.9-1.3 5.5-4.4 9.3-2.6 3.2-10.5 9-10.3 14.5.1 1 .6 2 1.2 2.8m-3.1 3.5c.6.5 1.3 1 2.1 1.4 1.5.6 3.1.3 4.3-.3M369 152.8c.86.58 1.7 1.46 2.2 2.6 1.85 4.5-2.2 7.86-5.93 10.4-2.67 1.8-5.56 2.8-8.3 3.28"/>
<path d="M364.6 161.56c-.9 0-1.98-.27-3.15-1.5-.27-.3-.58-.66-.7-1m-14.86 4.9c-.5-.23-1-.57-1.4-.95-.9-1-1.5-2.3-.8-4.3.6-1.9 3.7-7.2 3.8-10.9.2-5.6-2-8.9-5.4-10.2"/>
<path d="M347.3 146.46l-.12 2.12-.57 2.16-1.1 2.95-.8 1.9-.9 1.8-.4 1.3-.2.9.2.9m38.1 126.3c.2.4.6.8.6.8.7 1.1 3.2 3 5.5 3 3.8 0 4.7-2.6 4.8-3.2.5-2.9-.5-3.7-2-4.5 0 0-.8-.5-1.9-.3" stroke-linecap="round"/>
<path d="M236.95 274.35c-1.34.34-2.6.35-3.7.02-2.82-.85-5.1-3.56-3.94-6.93m13.4-31.82c.3.28.4.7.4 1.07.5 3.6-2.7 4.7-5 4.1-1.1-.3-2.5-1.4-3-2.3a4.7 4.7 0 0 1-.6-2.3m22.1-23.7c.6.5 1 1.1 1.3 1.7m-1.1-8.5c.6.3.9.8 1.2 1.3"/>
<path d="M257.86 210.52c-.3.76-.84 1.6-1.55 2.38-1.9 2.14-5.1 3.96-8.7 4-1.9.03-4-.38-6-1.74-2.2-1.46-3.6-3.54-4-5.58" stroke-linecap="round"/>
<path d="M255.43 195.28c1.1.94 1.96 2.14 2.37 3.4"/>
<path d="M257.83 203.24c-.9 2.93-3.53 6.55-8.62 7.84-2.4.6-5.5-.16-6.6-1.07" stroke-linecap="round"/>
<path d="M240.04 202.55c.27 2.64 2.03 4.62 5.38 4.68 4.7.1 7.56-6.77 3.38-11.58"/>
<path d="M229.45 225.53c.7.86 1.5 1.64 2.33 2.33 1.67 1.4 3.65 2.62 5.93 3.3m5.3.5c4.2-.52 6.6-3.65 6.1-7.3-.3-2.8-2.9-4.95-4.6-5.08" stroke-linecap="round"/>
<path d="M249.85 188.1c1.82-.06 2.86 1.6 2.84 3"/>
<path d="M249.42 163.08c1 2.6 2.95 4.65 5.03 5.82m144.18 30.97c1.72 2.35.6 7-4.08 7.08-1.83.04-3.48-.98-4.44-2.5" stroke-linecap="round"/>
<path d="M381.7 169.12v15.8"/>
<path d="M243.76 202.33c1.44 1.04 3.3-.72 2.58-2.6-.5-1.26-2.28-2.62-4.77-.93-2.75 1.87-2 7.76 3.28 7.86 4.7.1 7.57-6.76 3.4-11.58-4.03-4.63-11.36-3.54-16.13.26-2.04 1.6-5.88 5.85-7.07 11.62-.37 1.8-.6 3.27-.6 5.08.03 1.2.14 2.52.5 4.18.72 3.35 1.9 5.8 3.07 7.5.45.67.87 1.2 1.3 1.65.83.82 1.07 1.26 1.9 1.94 2.7 2.3 6.18 4.1 10.45 3.9 4.67-.2 7.36-3.5 6.86-7.3-.48-3.7-4.28-5.6-6.76-3.9-1.7 1.2-2.3 4.9.7 5.8 1.68.5 3.18-1.6 1.98-2.9M374.02 151c2.7-1.46 4.78-1.2 6.32.94 1.67 2.34 1.9 5.4 1.54 7.23-.55 2.66-1.33 3.8-3.46 5.73" stroke-linecap="round"/>
<path d="M380.53 152.03c3.1-2.04 6.43-1.17 8.26 1.55 1.3 2 1.6 3.65 1.5 6.12-.2 4.22-2.8 7.57-5.7 9.2" stroke-linecap="round"/>
<path d="M395.06 159.15c2.54.2 4.58 2.5 4.58 5.17 0 3.83-1.07 5.5-4.13 9.3-2.6 3.3-10.5 9.06-10.3 14.6.1 2.08 1.9 4.04 3.4 4.15"/>
<path d="M395.36 202.33c-1.44 1.04-3.28-.64-2.5-2.43.56-1.24 2.2-2.8 4.7-1.1 2.74 1.87 1.98 7.77-3.3 7.86-4.7.1-7.88-6.6-3.38-11.58 4.1-4.55 11.72-3.66 16.5.14 2.03 1.62 6.12 6.06 7 11.9 1.06 7.04.92 15.72-6.36 21.06-2.93 2.15-7 3.12-10.57 2.97-4.68-.2-7.37-3.5-6.87-7.37.48-3.76 4.1-5.35 6.77-3.88 2.76 1.53 2.28 5.42-.7 5.77-1.75.2-3.18-1.64-2-2.88" stroke-linecap="round"/>
<path d="M392.87 199.9c.78-3.5 3.77-3.82 6.18-3.78 6.6.1 11.15 7.9 11.22 15.47.1 9.5-4.05 15.1-11.03 15.4-1.8 0-4.92-.8-4.97-3"/>
<path d="M396.93 198.34c6.95 1.54 9.4 7.8 9.4 13.78 0 4.87-.5 11.53-9.98 13.87" stroke-linecap="square"/>
<path d="M408.4 265.33a3.9 3.9 0 1 0-6.27 2.34"/>
<path d="M394.45 259.4c1.3 1.95 2.9 4.1 6.24 5.92m-1.3 10.55c-3.3-2.15-9.5-4.96-15.1-2.2-2.1 1.04-3.5 2.3-4.3 4.4-1.4 3.72.1 7.84 1.8 9.55.8.9 2.7 2.6 5 2.64 3.7.05 4.6-2.6 4.7-3.18.4-2.74-1.2-3.84-2-4.13-.7-.23-2.8-.17-3.2 1.32-.2.5-.2 1.36.2 2" stroke-linecap="round"/>
<path d="M340.47 328.42c1.05 2.14-.14 3.22-1.6 3.4-2.13.24-3.27-1.46-3.42-3-.24-2.5 1.86-4.77 4.38-4.73 2.26 0 4.1 1.5 4.97 3.5.3.7.46 1.5.5 2.3a5.85 5.85 0 0 1-1.42 4.1c-1.28 1.5-3.27 2.4-5.4 2.4-4.22.1-7.5-3.8-7.5-7.8 0-7.7 11.43-12 15.96-13 5.58-1.4 8.97-1.9 17.92-2.4 3.58-.2 6.2-.1 10.15-.5 3.6-.4 5.4-.6 9-1.4 4.6-1.1 8.8-3 12.6-6.4 2.9-2.7 4.6-4.6 6-8.2 1.2-3.2 1.7-9.4-1.2-14-2.6-4.1-6.2-6.2-10.3-6.8-3.7-.6-7 1-9 4.7-.9 1.8-.6 4.8.1 6.2.7 1.2 2.5 2.9 4.8 3 3.8 0 4.7-2.6 4.8-3.2.5-2.7-1.1-3.8-2-4.1-.6-.3-2.7-.2-3.2 1.3-.1.5-.1 1.3.3 2" stroke-linecap="round"/>
<path d="M337.22 316.17c-4.85 2.15-8.4 3.76-11.42 8.52-.95 1.5-1.2 3.6-1.2 4.8 0 2.7 1.1 5.7 3.34 7.6 2.07 1.7 4.13 2.3 6.66 2 1.93-.2 3.74-1.6 4.03-2.6" stroke-linecap="round"/>
<path d="M385.1 224.13c-2.26.75-3.87 4.2-3.87 7.5 0 3.8 1.84 6.13 3.98 7.48"/>
<path d="M387.6 236.42c-4.08 5.08-6.25 8.1-6.37 14.13-.12 5.68 1.7 9.56 5.07 13.64" stroke-linecap="round"/>
<path d="M365.85 152.05l.35-.52c1.7-2.48 4.68-3.14 6.87-1.5 2.63 2 3.3 5.4 2.58 8.97-.44 2.24-1.96 4.1-4.04 5.45"/>
<path d="M265.1 150.84c-2.6-1.2-4.72-.97-6.32.94-1.84 2.2-1.9 5.4-1.54 7.22.55 2.68 1.32 3.8 3.46 5.75" stroke-linecap="round"/>
<path d="M258.58 152.03c-3.1-2.04-6.43-1.17-8.26 1.55-1.34 2-1.7 3.65-1.6 6.12.17 4.22 2.8 7.57 5.73 9.2"/>
<path d="M249.68 154.76c-3.35.4-6.02 3.24-6.02 6.68 0 4.42 1.1 6.22 3.58 9.6 2.5 3.4 10.65 9.6 10.65 16.67 0 4.3-1.2 7.1-4.3 8.5-2 .9-4.3-.1-5.4-1-2.6-2.3-1.6-6.4 1.1-6.9 3.3-.6 3.9 4.6.7 4.3"/>
<path d="M244.05 159.15c-2.54.2-5.03 2.38-5.03 5.06 0 3.9 1.52 5.7 4.58 9.5 2.64 3.3 10.1 9 9.9 14.5-.08 2.1-1.5 4.7-2.88 4.4"/>
<path d="M238.08 236.12c1.2-2.88 4.28-1.6 4.47 0 .44 3.67-2.78 4.78-5.07 4.18-1.13-.3-1.96-1-2.5-1.94-.6-1.05-.77-2.42-.38-3.73a4.9 4.9 0 0 1 .85-1.65 4.97 4.97 0 0 1 1.28-1.2c.88-.57 1.84-.62 3.34-.62 5.57 0 10.45 6.58 12.1 13.42.53 2.25 1.27 7.28.24 12.04-1 5.08-3.2 8.6-5.8 11.26-1.4 1.44-3.3 2.72-5.7 4.12-.7.42-2.7 1.3-4.1 1.7-1.4.42-2.8.45-3.9.1-2.8-.85-4.6-3.5-3.1-6.93 1.2-2.67 5.4-3.98 7.3-.7.2.28.4.9.4 1.55 0 .87-.4 1.93-1 2.33-1.4.9-3.7.65-3.6-1.88" stroke-linecap="round"/>
<path d="M233.75 270.4c1.05.4 1.62.34 2.92-.24.53-.23 1.15-.6 1.86-1 2.55-1.45 5.57-3.73 8.4-9.06a18.8 18.8 0 0 0 1.72-4.47c.27-1.1.46-2.2.5-3.34.07-2-.14-4-.62-6.3-.8-3.8-1.74-5.9-4.08-9.1-1.15-1.6-2.14-2.6-4.28-2.6m-9.44 30.9a3.9 3.9 0 1 1 6.26 2.3"/>
<path d="M232.24 261.45c.3-1.78 1.8-3.13 3.62-3.13 2.02 0 3.66 1.68 3.66 3.76a3.8 3.8 0 0 1-1.03 2.62"/>
<path d="M239.37 261.25c3.34-2.4 6.2-6.95 6.22-12.34 0-4.1-1.7-8.3-3.6-10"/>
<path d="M244.67 259.4c-1.3 1.95-2.9 4.1-6.24 5.92" stroke-linecap="round"/>
<path d="M254.6 273.68c-.93-2.18-2.77-3.2-5.77-3.5-3-.33-5.57.5-8.2 1.9-5.17 2.8-8.05 5.77-9.97 11.3-.48 1.4-.9 3.53-.83 5.78.1 3.6 1 7.5 1.98 9.4.9 1.66 3.1 8.96 15.4 14 7.2 2.94 18.1 3.62 25.7 3.9 10.4.42 20 .8 25.6 7.68"/>
<path d="M239.68 275.87c3.28-2.15 9.5-4.96 15.12-2.2 2.08 1.04 3.48 2.3 4.27 4.4 1.42 3.72-.17 7.84-1.78 9.55-.9.9-2.7 2.6-5 2.64-3.8.05-4.7-2.6-4.8-3.18-.5-2.74 1.1-3.84 2-4.13.6-.23 2.7-.17 3.2 1.32.1.5.1 1.36-.3 2" stroke-linecap="round"/>
<path d="M252.7 285.73c.3-1.1.16-2.25-.83-3.34-1-1.1-3.64-2.2-5.88-.9-.8.4-1.7.9-2.6 2.1-.3.4-.9 1.1-1.2 1.5-.7 1.1-1 2.1-1.1 2.5-2.5 7 1.5 14.4 6.6 17.6 4.3 2.8 8.8 3.6 14.3 4.1 2.5.2 4 .3 6.5.4 2 .1 3.8 0 5.5 0 1.4 0 2.7 0 4-.1 2.1-.1 4.4-.1 7.2.1 2.9.2 5.1.3 7.5.7 1.6.2 3.5.5 5.5.9.6.1 1.2.2 1.8.4l1.2.4c3.5 1.1 7 2.4 9.7 4.1.8.5 1.8 1 2.5 1.7.5.5.9.8 1.3 1.2 1.9 1.9 3.8 3.9 4.3 6.7.1.5.1 1 .1 1.6 0 1.8-1.4 4.2-5.4 5"/>
<path d="M298.64 328.42c-1.05 2.14.14 3.22 1.6 3.4 2.13.24 3.27-1.46 3.42-3 .24-2.5-1.87-4.77-4.38-4.73-2.26 0-4.1 1.5-4.97 3.5-.3.7-.4 1.5-.5 2.3a5.85 5.85 0 0 0 1.5 4.1c1.3 1.5 3.3 2.4 5.4 2.4 4.2.1 7.5-3.8 7.5-7.8 0-7.7-11.4-12-15.9-13-5.6-1.4-8.9-1.9-17.9-2.4-3.5-.2-6.2-.1-10.1-.5-3.5-.4-5.3-.6-9-1.4-4.5-1.1-8.7-3-12.5-6.4-2.9-2.7-4.6-4.6-5.9-8.2-1.1-3.2-1.7-9.4 1.3-14 2.6-4.1 6.2-6.2 10.4-6.8 3.8-.6 7 1 9 4.7 1 1.8.7 4.8-.1 6.2-.6 1.2-2.5 2.9-4.8 3-3.7 0-4.6-2.6-4.7-3.2-.4-2.7 1.2-3.8 2-4.1.7-.3 2.8-.2 3.2 1.3.2.5.2 1.3-.2 2"/>
<path d="M273.26 152.05l-.35-.52c-1.6-2.48-4.6-3.14-6.8-1.5-2.6 2-3.3 5.4-2.6 8.97.5 2.24 2 4.1 4.1 5.45" stroke-linecap="round"/>
<path d="M366.75 159.6c-4.03 4.38-8.06 5.77-14.1 5.97-1.87.06-5.46-.6-7.55-2.1-1.34-.94-2.84-2.58-1.9-5.42.64-1.9 3.7-7.2 3.84-10.9.22-5.62-1.94-8.7-5.32-9.9-6.26-2.2-12.97 3.98-17.02 5.33-2.12.7-3.2.8-5.13.8-1.93 0-3.04-.1-5.16-.8-4-1.35-10.7-7.54-17-5.33-3.4 1.2-5.5 4.28-5.3 9.9.2 3.7 3.2 9 3.9 10.9 1 2.84-.5 4.47-1.9 5.43-2 1.5-5.6 2.15-7.5 2.1-6-.2-10-1.6-14.1-5.98"/>
<path d="M297.33 314.4c.8.32.2-.18 5.25 2.06 4.85 2.15 8.3 4.04 11.3 8.8.95 1.5 1.2 3.63 1.2 4.87 0 .8-.1 1.64-.3 2.46" stroke-linecap="round"/>
<path d="M297.66 336.04a7.98 7.98 0 0 0 3.25.82c4.3.17 7.6-3.78 7.6-7.8 0-2.8-1.5-5.16-3.6-7.05"/>
<path d="M298.57 328.42c-1.02 2.27.44 3.5 1.88 3.67 2.14.2 3.35-1.5 3.5-3 .16-1.7-.74-3.3-2.1-4.2" stroke-linecap="round"/>
<path d="M390.1 154.8c3.2 0 6 3.57 6 7.24 0 4.23-2.24 6.8-3.88 8.77-1.33 1.6-2.77 3-4.47 4.7"/>
<path d="M386.3 151.4c1.08.52 2.04 1.37 2.77 2.45 1.35 2 1.7 3.66 1.6 6.12-.16 4.23-3.2 7.15-5.92 8.94m-4.78-17.5c.23.2.44.5.64.7 1.9 2.2 2 5.5 1.6 7.2-.6 2.7-1.5 3.9-3.7 5.5m-5-14.4c2.7 2 3.4 5.5 2.6 9-.6 2.6-2.2 4.1-4.2 5.3m11.1 41.1c.3 1 .9 1.3 1.5 2 1.4 1.5 3.5 2.8 6.2 3.6 2.5.7 4.7.2 6.3-.9m-163 54c1.3 0 2.5.8 3.3 2.3.2.3.4.9.4 1.5 0 .9-.4 1.8-1 2.2-1.4 1-4 .6-3.8-2" stroke-linecap="round"/>
<path d="M241.5 231.3c4.92.92 9.67 6.86 11.22 13.35.54 2.25 1.28 7.28.25 12.04-1.1 5-3.28 8.5-5.86 11.2a16.5 16.5 0 0 1-2.1 1.8l-1 .7m-7.9-12.1c2.1 0 3.8 1.9 3.8 4a3.8 3.8 0 0 1-1 2.6"/>
<path d="M234.64 260.7c2.1 0 4.1 2.04 4.1 4.2a3.9 3.9 0 0 1-1.47 3.06"/>
<path d="M253.98 239.5c1.94 2.6 3.2 4.83 3.8 7.7m-.06 8.5a17.27 17.27 0 0 1-1.45 4.04c-.8 1.62-2.23 3.43-3.55 4.65" stroke-linecap="round"/>
<path d="M254.28 224.33c1.87 1.46 3 2.97 3.52 4.78"/>
<path d="M257.86 219.47c-.5 1.7-1.6 3-3.37 4.6m-9.2-17.18l2.1-.6 1.2-1 .8-1.2.7-1.9.3-1.5" stroke-linecap="round"/>
<path d="M240.97 199.3c-.68.17-1.55.42-2.45.85-1.2.58-2.5 1.48-3.53 2.93-1.2 1.7-1.9 4.03-2.4 6.07-.2.9-.4 3.74.1 6.67.4 2.16 1.3 4.17 2.3 5.63.3.53.7.98 1 1.34 1.3 1.2 2.5 2 4.4 1.6"/>
<path d="M253.04 189.8c-.35 1.3-1.04 2.9-3.05 2.7" stroke-linecap="round"/>
<path d="M245.68 198.53c-1.94-1.9-6.04-2.4-10.1.2-.54.32-1.06.75-1.58 1.18-.56.5-1 1.1-1.44 1.6-.47.7-1.05 1.8-1.4 2.5-.48 1-.68 1.7-.94 2.7-.75 2.9-.74 5.5-.66 6.3.12 1 .2 1.9.37 2.7.54 2.8 1.37 4.8 2.22 6.2.9 1.5 3.14 4.9 7.72 5.4 1.8.2 4.87-.6 4.97-3"/>
<path d="M363.76 157.07c.3-1.65 2.3-1.97 3.05-1 1.2 1.5.4 4.1-1.9 4.82-.8.2-2.6.1-3.8-1.4-.9-1.3-.9-2.8-.5-4.1.3-.8.9-1.5 1.8-2.2 2.7-2.1 7.1-1.6 8.6 1.9 1.9 4.5-2.2 7.8-5.9 10.4-4.7 3.2-10 3.7-14.1 3.7-9.1-.1-16.1-4.5-20.6-7-1-.6-2.1-.5-2.7.2-.6.7-.6 1.9.3 2.7" stroke-linecap="round"/>
<path d="M365.6 155.52c.98.04 1.24.42 1.53.8 1.16 1.5.3 4.1-2.03 4.83m17.84 51.54c-3.5 3.8-.28 10.3 2.32 11.7.9.7 1.3.3 2 .7" stroke-linecap="round"/>
<path d="M383.12 205.43c-1.14.8-1.55 1.7-1.6 3.25-.02 1.3.2 2.74 1.42 4 1.9 2 5.63 3.7 9.23 3.76 1.96.02 4-.4 6.03-1.75 2.2-1.5 3.34-3.5 3.83-5.4m-20.86 61.8s0 1.5-.13 2.5c-.38 2.7-.83 4.4-2.1 6.9-1.23 2.4-2.22 3.7-4.17 5.6-1.98 1.9-3.35 2.8-5.83 4.1-2.4 1.2-3.93 1.6-6.56 2.2-2.64.6-4.17.7-6.87.8-2.4.1-3.8 0-6.3-.2-2.6-.2-4.1-.6-6.7-.8-2.2-.2-3.4-.4-5.6-.4-2.2 0-3.5 0-5.7.4-2 .3-3.2.6-5.2 1.4-2.6 1.1-5.7 3-6.3 3.8-.6-.9-3.7-2.8-6.3-3.8-1.9-.8-3.1-1.1-5.1-1.5-2.2-.4-3.5-.4-5.7-.4s-3.4.1-5.6.3c-2.6.2-4.1.6-6.7.8-2.4.1-3.8.2-6.3.1-2.7-.1-4.2-.3-6.8-.9-2.6-.6-4.2-1-6.6-2.2-2.5-1.2-3.8-2.1-5.8-4-1.9-1.9-2.9-3.2-4.2-5.7s-1.7-4.1-2.1-6.9c-.1-1-.1-2.5-.1-2.5V169.3h123.2v101.8h.1z"/>
</g>
<g fill="#c7b37f" stroke="#c7b37f">
<path d="M247.94 285.64a2.5 2.5 0 1 1 5 0 2.5 2.5 0 0 1-5 0zm-15.35-17.67c0-1.23.7-2.24 1.7-2.24.9 0 1.7 1 1.7 2.24 0 1.24-.8 2.24-1.8 2.24s-1.8-1-1.8-2.2z" stroke-width=".33"/>
<path d="M241.3 223.6c0-1.02.78-1.85 1.72-1.85s1.7.82 1.7 1.84c0 1-.76 1.8-1.7 1.8s-1.7-.8-1.7-1.9zm30.64-65.64c-.1-1.02.5-1.92 1.37-2 .9-.1 1.7.65 1.8 1.67.1 1.02-.5 1.92-1.3 2-.8.1-1.6-.65-1.7-1.67z" stroke="none"/>
</g>
<g stroke="#c7b37f" stroke-width=".63" stroke-linecap="round">
<path d="M239.3 233.95c-.36.16-.56.3-.84.58-.26.27-.32.38-.52.83-.15.33-.2.7-.24 1.2m4.7 26.74c.36-.42.57-.65.9-1.08.28-.36.45-.56.7-.94l.5-.92c.28-.5.4-.8.67-1.32m-1.26 13.94c-.5.27-.9.4-1.5.7l-1.1.64a17.4 17.4 0 0 0-1.2.83c-.5.36-.7.6-1.2.98m15-37.9l-.8-.84c-.3-.4-.5-.6-.9-.9-.3-.3-.6-.5-.9-.7"/>
<path d="M254.2 224.94c-.5.2-.74.38-1.23.54-.57.2-.95.3-1.5.3" stroke-linecap="butt"/>
<path d="M237.44 208.44c.16.58.2.92.42 1.48.27.7.5 1.08.92 1.7.44.67.7 1.03 1.28 1.58.5.5.8.73 1.4 1.1.54.37.9.5 1.47.8m-.98-5.85c.48.26.73.45 1.24.66.4.2.7.3 1.2.4.6.2 1 .2 1.7.2.7.1.9 0 1.8-.1m7.1-40.6c-.8-.4-1.3-.6-2.1-1.2-.8-.5-1.2-.8-1.9-1.5-.5-.5-.8-.7-1.2-1.3-.4-.5-.5-.8-.8-1.3m7.5-4.5c.2.7.3 1.1.6 1.7.4.9.8 1.3 1.4 2.1.9 1 1.7 1.3 2.7 2.1m1.4-5.9c.2.6.3 1 .6 1.6.3.5.5.8.8 1.2.4.6.7.9 1.3 1.4.7.5 1.1.7 1.9 1.1"/>
</g>
<path d="M333.3 151.62c-.05-1.7-1.72-1.87-2.36-1.87-1.85 0-2.35 1.15-4.65 2.4-2.9 1.54-4.2 1.9-6.7 1.9-2.6 0-3.9-.36-6.8-1.9-2.3-1.25-2.7-2.36-4.6-2.36a2.33 2.33 0 0 0-2.3 2.4v.8c0 .1.2.1.2.2 0-.8.1-1.2.5-1.7.5-.7 1.3-.9 1.6-.9 1.8 0 2.5 1.2 4.8 2.4 2.9 1.5 4.1 1.9 6.7 1.9 2.5-.1 3.8-.4 6.7-1.9 2.3-1.3 3-2.6 4.8-2.6.6 0 1.1.4 1.3 1 .1.4.1.7.1.8 0 .1.1 0 .1.1.1-.3.2-.4.2-1.1z" fill="#703d29" stroke-width=".18"/>
</g>
<g fill="#703d29">
<path d="M264.4 294.03c.52-.56.9-.35 1-.6.07-.2-.08-.22-.3-.3-.27-.1-.57-.16-.85-.27-.3-.1-.56-.26-.85-.37-.12-.1-.4-.2-.48 0-.15.4 1.02.3.63 1.4-.07.2-.23.5-.82 1.2l-2.65 2.9c-.06 0-.15.2-.22.2-.06-.1-.05-.2-.05-.3l.1-4.1c0-.8.1-1.4.2-1.7.2-.5.7-.1.9-.4.1-.2 0-.2-.3-.3-.1-.1-.5-.2-1.1-.4-.3-.2-.6-.3-1-.4-.1-.1-.4-.3-.5 0 0 .1.1.2.1.2.4.2.5.4.5.9l.1 7.4c0 .5.1.7.2.7s.2 0 .4-.3l5.3-5.7z"/>
<path d="M267.5 295.18c.33-1.08.97-.43 1.1-.82.03-.13 0-.17-.32-.27-.58-.2-.96-.3-1.33-.4-.36-.1-.75-.3-1.15-.4-.1-.1-.34-.2-.4 0-.12.4 1.14.4.8 1.5l-1.7 5.4c-.35 1.1-1 .5-1.12.9-.02 0-.03.1.06.1.27 0 .73.1 1.17.3l1.6.5c.3.1.4 0 .4-.1.1-.4-1.2-.2-.7-1.6l1.7-5.5zm3.7 1.1c.2-.7.5-.6.9-.48 1.03.3 1.36 1.32 1.03 2.45-.2.67-.45 1.3-2.02.83-.3-.1-.6-.2-.6-.5l.7-2.3zm-2.85 4.92c-.43 1.44-1.15.82-1.26 1.2-.1.22.1.24.2.28.5.15 1 .26 1.6.42.4.13.7.26.9.3.2.08.3.04.3-.07.1-.4-1.1-.24-.7-1.47l.6-1.98c.1-.4 0-.5.6-.33.5.15.7.3.7.88l.3 2.06c.1.7.2 1.5 1 1.8.4.1 1.1 0 1.2-.3 0-.1 0-.2-.1-.2-.1-.1-.2 0-.4-.1-.1-.1-.3-.1-.3-.3-.3-1.7-.7-3.6-.7-3.7 0-.1.3-.2.7-.3.4-.2.8-.6 1-1.3.1-.6.4-2.2-1.9-2.9l-2.1-.6c-.7-.2-.7-.3-1.2-.4-.1-.1-.3 0-.3.1-.1.4 1.1.3.7 1.6l-1.5 5zm8.42 2.47c-.33 1.38-1.37.54-1.48 1-.1.25.1.28.3.32.4.1.7.1 1.4.3.7.1 1 .3 1.4.4.3 0 .5.1.5-.2 0-.4-1.4-.3-1-1.8l1.2-5.3c.1-.6.2-.6.6-.5l.9.2c1.2.2.5 1.4 1 1.5.2 0 .2-.4.3-.6l.1-1.1c0-.1 0-.3-.1-.3-1-.3-1.7-.4-3.2-.7-1.6-.4-2.3-.6-3.2-.8-.2-.1-.2.1-.3.2l-.5 1.5c-.1.1-.2.3 0 .4.4.1.5-1.5 1.7-1.2l.8.2c.4.1.5.2.3.7l-1.3 5.4zm12.7-3.24c.42-.64.84-.5.9-.77.02-.2-.13-.2-.35-.24-.3-.05-.6-.06-.9-.1-.3-.07-.6-.17-.9-.23-.12-.1-.42-.2-.47.1-.07.4 1.08.1.87 1.2-.03.2-.13.6-.6 1.3l-2.1 3.3c-.05 0-.12.2-.2.2-.05 0-.07-.2-.1-.3l-.66-4.1c-.13-.8-.17-1.4-.1-1.7.1-.5.7-.2.75-.6.1-.2 0-.2-.3-.3-.1 0-.5-.1-1.1-.2l-1-.3c-.1 0-.4-.2-.5.1 0 .1.2.2.2.2.4.2.6.4.7.8l1.4 7.3c.1.5.2.6.3.6.1 0 .2-.1.4-.3l4.2-6.5zm.6 6.72c0 .3-.02.4.23.5.6.26 1.08.63 1.73.74 1.4.2 2.54-.7 2.8-2.2.25-1.5-.37-2.2-1.4-2.9-1.3-1-1.87-1.2-1.74-2 .1-.8.6-1.2 1.3-1.1 1.8.3 1.6 2.5 1.8 2.5.2 0 .3-.1.3-.4l.1-1.6c0-.3.1-.5-.1-.5-.2-.1-.5.1-.6.1-.3-.1-.7-.6-1.6-.8-1.3-.2-2.3.6-2.5 2-.2 1.2.3 1.8 1.2 2.4 1.5 1.1 2.2 1.4 2 2.4-.2.9-.9 1.4-1.7 1.3-1.2-.2-1.7-1.4-1.8-2.6 0-.2 0-.3-.2-.3-.3-.1-.2.3-.2.5v1.6zm15.82-4.46c.3-.7.7-.6.8-.9 0-.2-.2-.2-.4-.2h-.9l-.9-.2c-.2 0-.5-.1-.5.1-.1.4 1.1 0 1 1.2 0 .2-.1.6-.5 1.3l-1.8 3.5c-.1.1-.1.2-.2.2s-.1-.2-.2-.3l-1.1-4c-.2-.8-.3-1.3-.3-1.7 0-.5.7-.3.7-.6 0-.2 0-.2-.4-.2-.2 0-.5 0-1.2-.1l-1.1-.1c-.2 0-.5-.2-.5.1 0 .1.1.2.1.2.4.1.6.3.7.8l2.1 7.1c.1.5.2.6.3.6.1 0 .1-.1.3-.4l3.5-6.9z"/>
<path d="M307.58 308.48c0 1.22-1.04 1-1.04 1.47 0 .2.2.15.33.15.3 0 .58-.05.92-.04.3 0 .7.05 1.2.06.1 0 .4 0 .4-.16 0-.56-1.4.24-1.4-2.05v-4c0-.1 0-.2.1-.2l.2.2 5.1 6.3c0 .1.1.2.2.2s.1-.1.1-.3v-6.7c0-1.2.9-.9.9-1.3 0 0 0-.1-.2-.1-.1 0-.5.1-1.2.1H312c-.1 0-.13.1-.13.2-.05.4 1.3.2 1.3 1.3l-.08 4c0 .3 0 .5-.1.5s-.2-.1-.3-.3l-4.3-5.3c-.2-.2-.1-.3-.4-.3-.6 0-.9.1-1.2.1h-.6c-.1 0-.2.1-.2.2 0 .6 1.2-.2 1.1 2.1v4.5zm10.4-5.38c.02-1.13.82-.7.83-1.1 0-.14 0-.17-.3-.17-.6 0-1 .04-1.4.04-.4 0-.8-.06-1.2-.06-.1 0-.3 0-.3.2 0 .4 1.2.1 1.2 1.2v5.8c0 1.2-.8.8-.8 1.3 0 .1 0 .2.1.2h1.2c.9 0 1.2.1 1.6.1.3 0 .4 0 .4-.2 0-.3-1.2.2-1.2-1.3l.1-5.7zm4.52 5.55c0 1.42-1.2.86-1.2 1.33 0 .26.18.25.37.24.43 0 .78-.05 1.5-.06.73 0 1.08.04 1.5.04.32 0 .54.03.53-.26 0-.33-1.37.03-1.38-1.44l-.05-5.4c0-.57.1-.63.54-.64h1c1.3-.06.9 1.27 1.4 1.26.3 0 .2-.46.2-.6l-.1-1.1c0-.12 0-.3-.2-.3-1 .02-1.7.07-3.3.1-1.5 0-2.3-.04-3.3-.03-.1 0-.1.1-.1.2l-.1 1.5c0 .1-.1.4.1.4.5 0 .2-1.6 1.4-1.6h.9c.5 0 .6 0 .6.6l.1 5.5zm6.25-2.26c-.2 0-.34 0-.35-.1 0-.2.04-.3.1-.5l.65-2.2c.04-.2.08-.2.1-.2.06 0 .02 0 .1.1l1.04 2c0 .1.1.2.1.4 0 .1-.2.1-.4.1l-1.5.1zm1.84.5c.2-.1.3.1.7 1 .1.3.2.5.2.7 0 .7-.7.6-.7 1 0 .1.1.1.3.1l1.2-.2c.7-.1 1-.1 1.4-.1.3-.1.4 0 .4-.2-.1-.4-.6.1-1-.7l-3.5-7.1c-.2-.4-.2-.4-.3-.4-.2 0-.2.2-.3.4l-2.3 7.4c-.3.7-.8.6-.8.9 0 .1.1.1.3.1l.9-.2c.3-.1.6 0 1-.1.2 0 .6 0 .5-.2-.1-.4-1.2-.1-1.3-.9 0-.3.1-.7.1-1 .1-.8.4-.9.5-.9l2.1-.2zm8.3-5c-.1-.8-.1-.9 1.2-1 2-.3 1.4 1.2 1.9 1.1.2-.1.1-.5.1-.6l-.2-1.2c0-.1-.1-.2-.3-.2-1 .1-1.7.2-2.5.3l-2.9.3c-.2 0-.2.1-.2.2 0 .5 1.2-.1 1.3 1l.7 5.5c.2 1.4-.7.9-.6 1.4 0 0 .1.1.2.1.6-.1 1-.2 1.3-.2.5-.1.9-.1 1.3-.1.3 0 .5 0 .5-.3-.1-.4-1.2.1-1.4-1.2l-.3-1.8c-.1-.7-.2-.8.3-.9l.7-.1c1.1-.1 1 1.1 1.3 1.1.2 0 .1-.4.1-.6l-.4-2.1c0-.3-.2-.3-.2-.3-.2 0-.1 1.1-1 1.2l-.7.1c-.5 0-.5-.1-.6-.6l-.2-1.7zm3.9 2.7c.4 2.4 2.1 3.7 4.3 3.3 3.3-.7 3.4-3.6 3.1-5.3-.5-2.5-2.3-3.7-4.4-3.3-2.6.5-3.6 2.7-3.1 5.2zm1.1-.9c-.3-1.7-.1-3.4 1.7-3.8 1.3-.3 2.9.8 3.3 3.4.3 1.9 0 3.6-1.8 4-1.9.4-3-2-3.4-3.7zm8.3-4.2c-.2-.7.1-.8.5-.9 1-.3 1.8.4 2.1 1.6.1.7.2 1.3-1.4 1.7-.3 0-.7.1-.8-.1l-.6-2.4zm0 5.6c.3 1.4-.6 1.3-.5 1.6 0 .2.2.1.4.1.5-.1 1-.3 1.6-.4.4-.1.7-.1.9-.2.2-.1.3-.2.3-.3-.1-.5-1 .3-1.3-1l-.5-2c-.1-.4-.2-.5.3-.6.5-.1.7-.1 1.1.4l1.3 1.6c.5.6 1 1.2 1.8 1 .4-.1 1-.6.9-.9-.1-.1-.1-.2-.2-.2s-.2.1-.3.1c-.1 0-.3.1-.5-.1-1.1-1.3-2.4-2.8-2.4-2.8-.1-.1.2-.3.4-.7.2-.4.4-.9.3-1.6-.1-.6-.7-2.2-3-1.6-.7.1-1.4.3-2.1.5-.7.1-.8.1-1.3.2-.1 0-.2.1-.2.2.1.4 1.1-.3 1.5 1l1.2 5.1zm8.6-1.9c.3 1.3-1 1.1-.9 1.5 0 .2.2.2.4.1.4-.1.7-.2 1.4-.4s1-.2 1.4-.4c.3-.1.5-.1.4-.4-.1-.3-1.3.3-1.7-1.1l-1.4-5.3c-.2-.6-.1-.7.3-.8l.9-.2c1.1-.4 1.1 1 1.6.9.2-.1 0-.5-.1-.6l-.4-1.1c0-.1-.1-.3-.2-.3-1 .2-1.7.5-3.2.9-1.6.4-2.3.5-3.2.7-.2.1-.1.2-.1.3l.2 1.6c0 .2 0 .4.2.4.5-.2-.3-1.6.9-1.9l.8-.2c.4-.1.6-.1.7.4l1.4 5.3zm5.5-7.4c-.3-1.1.6-.9.4-1.3 0-.2-.1-.2-.4-.1-.6.1-1 .3-1.3.4l-1.2.3c-.1 0-.4 0-.3.2.1.4 1.2-.3 1.5.8l1.5 5.5c.3 1.1-.6 1-.5 1.4 0 0 0 .1.1.1.2-.1.7-.3 1.1-.4.8-.3 1.2-.3 1.6-.4.2-.1.3-.2.3-.3-.1-.4-1.1.5-1.5-.9l-1.6-5.5zm2.3 2.6c.7 2.3 2.6 3.3 4.7 2.6 3.2-1.1 2.9-4.1 2.4-5.7-.8-2.4-2.8-3.4-4.8-2.7-2.4.8-3.2 3.2-2.3 5.6zm1-1.1c-.6-1.7-.6-3.4 1.1-4 1.3-.5 3 .4 3.8 2.9.6 1.9.5 3.6-1.2 4.2-1.8.6-3.3-1.5-3.8-3.2zm7.6-5.4c-.3-.7 0-.8.4-1 1-.4 1.9.2 2.3 1.3.3.6.4 1.3-1.1 1.9-.3.1-.7.3-.8 0l-.9-2.3zm.8 5.6c.5 1.4-.4 1.4-.3 1.7.1.2.3.1.4.1.5-.2 1-.5 1.5-.7.4-.2.7-.3.9-.3.2-.1.3-.2.2-.3-.2-.4-1 .4-1.5-.8l-.8-1.9c-.2-.4-.3-.5.3-.7.5-.2.7-.2 1.1.2l1.5 1.4c.5.5 1.1 1.1 1.9.8.4-.2 1-.7.9-1.1 0-.1-.1-.1-.2-.1s-.2.2-.3.2c-.1 0-.3.1-.5 0-1.3-1.1-2.8-2.4-2.8-2.5-.1-.1.2-.3.4-.7.1-.4.3-.9 0-1.6-.2-.5-1-2-3.2-1.2-.7.2-1.4.6-2 .8-.7.2-.8.2-1.2.4-.1 0-.2.1-.2.3.2.4 1.1-.5 1.6.8l1.9 4.9z"/>
</g>
<g fill="#fedf00" transform="matrix(.64 0 0 .64 0 16)">
<path d="M412.66 249.25h82.18v82.02h-82.18z" fill="#d52b1e"/>
<path id="a" d="M451.2 313.83s-.05 2.93-.85 5.3c-.94 2.7-.95 2.7-1.8 4.03-1.15 1.78-2.56 3.08-3.8 3.9-1.97 1.24-3.96 1.87-5.96 1.7-5.5-.5-8.1-6.44-9.3-11.28-1.3-5.13-5.1-7.92-7.5-6.06-1.4 1.1-1.5 2.9-.3 4.66 1.2 1.87 4.1 2.8 4.1 2.8l-3 3.73s-6.3-.8-7.6-7.3c-.5-2.5.7-7.1 4.9-8.5 5.3-1.7 8.7 2 10.3 5.2 2.2 4.4 3.2 12.5 9.4 11.2 3.4-.7 4.9-5.6 4.9-7.8l2.4-2.6 3.6 1.2.1.1z" fill="#fff"/>
<use height="100%" width="100%" xlink:href="#a" transform="matrix(-1 0 0 1 907.52 0)"/>
<path d="M461.12 278.95l10.76-11.64s1.62-1.3 1.6-3.4l-2.2.4-.5-1.1-.12-1.1 2.98-.6c.05-.5 0-.8.1-1.4.08-.5.2-.7.3-1.2l-3.26.2c.17-.5.13-.8.3-1.4.17-.4.2-.6.52-1.1.6-.1 1.16-.2 1.9-.3.73-.1 1.15 0 1.88-.1 1.78-3.3 9.2-6.3 14.45-.9 3.8 4 3 11.2-1.95 13.2-2.8 1.1-5.05.5-6.86-1.1l1.97-3.9c2.7 1.7 4.9-.4 4.8-2.5-.2-2.6-1.9-4.3-4.4-4.5-2.3-.2-3.9 1.1-4.9 3.1-.7 1.3-.4 2.2-.6 3.5-.3 1.5-.1 2.4-.6 3.9-.3 1.1-1.2 2.5-2.4 3.6l-11 11.9-42.9 46.4-3.3-3 43.2-46.7z"/>
<path d="M429.5 283.04s2.7 13.37 11.88 33.43c4.67-1.7 7.42-2.8 12.37-2.8 4.94 0 7.7.94 12.36 2.8 9.2-20.07 11.9-33.43 11.9-33.43l-24.2-31.18-24.2 31.18z" fill="#fff"/>
<path d="M456.12 262.4l16.82 21.65s-2.24 10.52-9.08 26.35c-2.64-.6-4.9-1.13-7.73-1.32V262.4zm-4.74 0l-16.82 21.65s2.24 10.52 9.08 26.35c2.64-.6 4.9-1.13 7.73-1.32V262.4z"/>
</g>
<g fill="#d52b1e">
<path d="M322.3 175.52h52.6v52.5h-52.6z" fill="#fedf00"/>
<path d="M329.67 175.52h7.84v52.5h-7.8zm15.03 0h7.84v52.5h-7.84zm15.03 0h7.84v52.5h-7.84z"/>
</g>
<g fill="#d52b1e" stroke="#d52b1e" stroke-width=".51">
<path d="M264.3 273.54c.15.95.5 2.57 1.4 4.23.93 1.5.58 1.45 2.72 3.84 1.06 1.2 2.7 2.2 4 2.9 1.28.7 2.24 1.1 4.37 1.6 4.1 1.1 7 1.2 10.6 1.1 2.7-.1 4.8-.4 6.5-.6 2.4-.3 4.3-.5 7.1-.6h3.9c1.5.1 3 .4 4.6.7 3.5.7 7 2.1 7 2.1v-54.9h-52.6v37.5s.1 1.9.2 2.5z" fill="#fedf00" stroke="none"/>
<path d="M270.4 283.15l2.47 1.44 3.38 1.2v-52.2h-5.84zm29.23 2.38v-51.9h-5.85v52.73s4-.5 5.85-.63zm11.67-51.9h-5.83v52.1c1.9.2 3.85.53 5.84 1.06v-53.2zm-23.35 0v53.33c-.06 0-3.9.2-5.87 0v-53.32z" stroke-width=".33"/>
</g>
<g transform="matrix(.64 0 0 .64 0 16)">
<path d="M585.48 402.4c-.23 1.47-.76 4-2.16 6.6-1.48 2.33-.94 2.27-4.28 6-1.64 1.84-4.2 3.4-6.23 4.5-2 1.08-3.5 1.62-6.8 2.5-6.5 1.7-11.1 1.8-16.5 1.6-4.2-.18-7.5-.7-10.2-1.08-3.8-.5-6.7-.82-11.1-1-2.1-.1-4.1-.1-6.1 0-2.4.13-4.8.5-7.3 1-5.4 1.1-11 3.2-11 3.2l.1-85.66 82.2-.03v58.55s-.1 2.86-.3 3.8z" fill="#fedf00"/>
<g id="b">
<path d="M524.62 346.9l-.6.3c-.3.32-.44.5-.77.8-.45.4-.77.5-1.25.85-.23.16-.42.2-.6.44-.25.3-.08.6-.25 1-.18.4-.37.5-.65.9-.37.4-.65.6-1.07 1-.4.4-.58.7-1.1 1-.13 0-.2.1-.34.2h-.6c-.4.1-.5.5-.8.7.1.2.1.3.2.6s.7 1.2.8 1.4c.2.3.3.7.5.7.5.1.8.1 1.3.1.8.2 1.2.1 2 .5.6.2.8.5 1.4.8.4.2.7.3 1.2.4.4 0 .6.1 1 .1.2-.1.4-.2.6-.2h.1l-.1.3v.1l2 .9a1.72 1.72 0 0 0-.2.4c-.1.3-.1.7-.1.8.6 1.9 1.1 3.1 1.4 3.2.6.2.8.8 1.1 1.5l-.4.3c-.6.6-1.2 1-1.7 1.8-.7 1.2-1.2 1.2-.3 2.8.6.9.8 1.1 1.6 2.4.3.6.5 1.2.8 2 .2.7.2 1.2.3 1.9l.9.3.6-.7.6-1.2v-.9c-.3-.2-.3-.5-.3-.8.1-.4.5-.3.7-.6.3-.5-.3-.8-.7-1.1-.6-.7-1.4-.8-1.6-1.9-.1-.3.1-.5.4-.8.8-.9 1.1-1 1.9-1.8.2.1.6.2.9.1.3-.1.6.1 1.4.4.6.1.9 0 1.3 0l.4-.1c0 .2.1.4.1.7.1 1-.2 3 .2 3.5.1.2.2.3.3.5.1.2.2.4.2.7 0 .7.1 1.1 0 1.9 0 .7-.1 1-.2 1.7-.1.5-.2.7-.5 1.1-.3.3-.6.4-1 .7l-.1 1 1.1.4 1.3.3.7-.3c0-.3.1-.4.2-.6.1-.3.2-.5.47-.6.4-.2.8.1.9-.1.2-.3.1-.4.1-.8-.1-.7-.2-1-.3-1.7-.2-1.1-.2-1.7-.2-2.8.02-.6.1-1 .2-1.6.12-.9.5-1.3.7-2.2.2-1 .2-1.6.3-2.5 3.15.5 5.8.4 9.32-.4.1 0 .7-.2.7-.2.8.7 1.7 1.3 2.7 1.6v1c0 .3-.07.5.1.8l.3.3c.3.1.5 0 .7-.2.2-.2.2-.5.2-.8v-.7h1.8s0 .3.1.4c0 .3-.1.5 0 .7.1.2.2.33.5.4a.66.66 0 0 0 .5-.1c.3-.2.22-.5.3-.86v-.8c.2-.05.8-.27 1-.36a5.12 5.12 0 0 1-.1.8c-.03.4-.1.6-.2.96-.2.6-.4.9-.73 1.4-.4.7-.6 1-1 1.6l-.6.68c-.22.35-.3.6-.6.9-.3.5-.5.75-.9 1.1-.7.55-1.1.1-2.1.84l-.2 1 1.5.6 1.3.2.46-.2c0-.3.04-.5.23-.8.2-.3.4-.4.8-.4.3-.1.7 0 1-.2.4-.3.4-1 .6-1.5.8-1.7 1.6-2.6 3-3.9.6-.6 1.1-.8 1.6-1.5.2-.3.5-.5.5-.9 0-.3-.2-.4-.2-.7-.1-.4-.2-1-.2-1 1.5.8.9.7 1.2 1.4.2.6-.1 1.1 0 1.7.1.8.4 1.1.5 1.9.1.9-.1 1.4-.3 2.3-.2.8-.1 1.3-.5 2-.3.7-.6 1.1-1.2 1.6-.23.2-.4.2-.6.4l-.14 1 1.1.4 1.6.45.4-.4c.1-.7-.1-1.65.4-1.7.4-.1.7 0 .8-.3l.1-.65c.2-1.9.4-3.7.6-4.5.2-1 .2-1.2.4-1.9s-.1-.3.4-1.7c.7-2.1-.2-2.4-1.03-3.7-.5-.7-.7-.9-.7-1.5-.1-.8.1-1.5.1-2.7-.1-1.3-.03-2.2 0-2.9l.3-.2c1.2-.6 1.67-.8 2.4-2.5a3.43 3.43 0 0 0 .3-1.5c0-.3 0-.64-.1-1 0-.4-.13-.7-.3-1-.1-.3-.3-.5-.5-.8-.8-.9-1.8-1.1-2.7-1.4-1.5-.6-2.56-.5-4.18-.6-1.7-.1-2.6-.2-4.3-.1-2 .1-3.1.5-5.1.77-1.9.2-3 .4-4.9.4-2.25.1-4.4-.4-5.8-.3-2.45.2-2.5.8-6.2 1.1a66.92 66.92 0 0 1-3.8.2l-2.1-.7c.9-.3 1.1-.5 1.5-1.1.3-.4.2-.7.55-1.1.3-.3.5-.6.8-1a2.2 2.2 0 0 0-.9-.4c-.35-.1-.6-.05-.9 0-.5.05-.8.1-1.24.3-.4.2-.7.4-.9.6 0 0-1.3-.8-2.2-1.2-1.1-.5-1.6-.7-3-.9zm1.97 11.92l-.1.03-.1-.03z" fill="#d52b1e"/>
<g fill="none" stroke="#fedf00" stroke-width=".99" stroke-linecap="round">
<path d="M568.77 359.52l-.76.24c-.8.4-1.5.42-2.6.5-2.6.2-4.2-1.06-7-.85-1.4.2-2 1.2-3.4 1.6a9.25 9.25 0 0 1-1.7.3l.5-1s-1.3.3-2.1.3a7.55 7.55 0 0 1-1.5-.1l1-.9s-.8-.1-1.3-.3a3.92 3.92 0 0 1-1-.6 20.48 20.48 0 0 0 1.7-.3c1.6-.4 2.1-1.1 3.9-1.3 1.2-.1 3.1 0 7.7.7 3.1.5 4.4.3 5.6-.2.8-.3 1-1 1.1-1.8.1-.7-.4-1.4-.8-1.8-.1-.1-.4-.3-1.1-.3"/>
<path d="M524.8 350.6c-.53-.06-.88.02-1.34.3-.48.3-.54.7-.9 1.15.46.1.7.36 1.15.25.4-.1.6-.24.8-.5.3-.37.5-.7.5-1.17l-.1-.02z" fill="#fcd900" stroke-width=".51" stroke-linecap="butt"/>
<path d="M536.04 363.8s.26.47.4.8c.25.54.38.87.53 1.46.2.8.12 1.28.24 2.1l.1.37v1.13m6.8-6.95l-.3 1.4c-.3 1.4-.7 2.1-.9 3.5 0 .3-.1.5-.1.7m-10.8-4c.8.2.6 3.4 1.8 4.1"/>
<path d="M560.12 369.78l.38-.25a8.15 8.15 0 0 0 2.7-1.8" stroke-linecap="butt"/>
<path d="M552.38 368.02c3.54-.88 5.9-2.65 7.6-2.87m-4-1.55c.3 0 .57-.02.82-.06 1.47-.2 1.7.7 2.73 1.26 1.85 1.04 2.1 2.3 4.3 3.36l.32.15.84.5"/>
<path d="M517.7 354.53c.27.07.43.08.7.05.34-.03.5-.23.82-.25.27 0 .47-.03.7.13.13.1.2.2.27.34 0 .17.1.28.1.47-.1.28-.3.42-.6.42s-.5-.1-.6-.3a.47.47 0 0 1-.1-.4c-.3.1-.5.1-.8 0a1.04 1.04 0 0 1-.7-.5z" fill="#fcd900" stroke-width=".51" stroke-linecap="butt"/>
</g>
<path d="M525.13 364.17c-.8-.24-1.97-.83-1.97-.83.33-.25.6-.26.87-.55.4-.5.37-.8.6-1.4.2-.5.17-1 .66-1.4.2-.3.7-.3 1.1-.2.3.1.7.4.8.7.1.6-.2.9-.3 1.4-.1.5-.3.9-.2 1.4 0 .4.2.5.3.9 0 0-1.3-.1-2.1-.4zm-1 .95a.63.63 0 1 1 .65.62.63.63 0 0 1-.64-.62zm-1.75-16.5l-.14-.1c-.4-.32-.42-.67-.6-1.12-.18-.44-.26-.7-.32-1.16-.05-.4 0-.64 0-1.05 0-.4.04-.6 0-1s-.03-.6-.2-1c-.1-.2-.4-.4-.32-.4.1-.1.25-.1.42 0 .4 0 .63.1.94.4.37.3.52.5.67 1 .17.5.25.9.4 1.4.1.3.14.4.3.7.15.3.3.4.5.6-.3.3-.44.5-.77.8-.3.2-.56.4-.85.5zm3.6 10.63l2.23 1.03c1.2-.63 2.5-1.92 3.5-3.92.9-1.72 1.1-2.65 1.4-4.3l-1.8-.6-.3.08c-.5 1.72-.7 2.7-1.6 4.2-.8 1.28-1.7 2.3-2.6 3.03l-.7.48zm4.94 18.12c.36-.5.5-.8.92-1.26.46-.5.8-.7 1.3-1.1.17 0 .35 0 .5.1-.03.6-.06 1-.2 1.6-.1.5-.17.8-.33 1.2-.1.4-.1.7-.3 1-.1.2-.3.3-.5.5-.5-.7-1.3-1.3-1.3-1.9zm33 1.85c.58.2.93.27 1.48.54.6.3.9.57 1.47.94.02.16.1.32.06.5-.53.1-.93.2-1.53.24a8.4 8.4 0 0 1-1.26 0c-.4-.03-.66.02-1.05-.1-.3-.1-.4-.2-.7-.32.5-.7.9-1.64 1.4-1.8zm-9.75-2.04c.57.2.92.27 1.47.54.6.3.9.57 1.47.94.1.16.1.32.1.48-.5.13-.9.2-1.5.26-.5.03-.7.02-1.2 0-.4-.03-.6.02-1-.1-.2-.1-.4-.2-.6-.32.6-.7.9-1.64 1.5-1.8zm-17.34 2.13c.57.3.92.3 1.47.6.6.3.9.6 1.47 1 .02.2.1.3.06.5-.53.1-.93.2-1.53.3-.5.1-.77 0-1.26 0-.4 0-.66 0-1.05-.1-.3-.1-.4-.2-.7-.3.6-.7.9-1.6 1.4-1.8zm-8.98-29.8c-.6-.2-1.05-1-.66-1.5.1-.2.4-.2.5-.4.2-.2.1-.5.1-.8 0-.3-.2-.5-.2-.9-.1-.4-.2-.6-.2-1 0-.6-.1-1.1.3-1.5.2-.3.6-.6.8-.6.1.2-.1.5-.1.8 0 .5.1.8.2 1.2.2.6.5.8.7 1.4.2.5.4.8.4 1.4 0 .5-.1.8-.2 1.2-.2.4-.3.6-.7.9-.3.3-.5.4-.8.5a1.15 1.15 0 0 1-.6-.1z" fill="#0065bd"/>
</g>
<use height="100%" width="100%" xlink:href="#b" y="36.59"/>
</g>
<path d="M264.1 175.52h52.6v52.5h-52.6zm58.2 0h52.6v52.5h-52.6zm-58 98.02c.15.95.5 2.57 1.4 4.23.93 1.5.58 1.45 2.72 3.84 1.06 1.2 2.7 2.2 4 2.9 1.28.7 2.24 1.1 4.37 1.6 4.1 1.1 7 1.2 10.6 1.1 2.7-.1 4.8-.4 6.5-.6 2.4-.3 4.3-.5 7.1-.6h3.9c1.5.1 3 .4 4.6.7 3.5.7 7 2.1 7 2.1v-54.9h-52.6v37.5s.1 1.9.2 2.5zm110.4 0c-.14.93-.48 2.56-1.38 4.22-.94 1.5-.6 1.45-2.73 3.84-1.1 1.17-2.7 2.18-4 2.88-1.3.7-2.3 1.04-4.4 1.6-4.2 1.1-7.1 1.16-10.6 1.02-2.8-.1-4.9-.45-6.6-.68-2.5-.33-4.3-.53-7.1-.65-1.4-.06-2.7-.07-4 0-1.6.08-3.1.32-4.7.65-3.5.7-7.1 2.04-7.1 2.04v-54.82l52.6-.02v37.47s-.1 1.8-.2 2.4z" stroke-width=".51" fill="none" stroke="#703d29"/>
</svg>

After

Width:  |  Height:  |  Size: 40 KiB

View File

@@ -0,0 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<path fill="#00732f" d="M0 0h640v160H0z"/>
<path fill="#fff" d="M0 160h640v160H0z"/>
<path d="M0 320h640v160H0z"/>
<path fill="red" d="M0 0h220v480H0z"/>
</svg>

After

Width:  |  Height:  |  Size: 257 B

View File

@@ -0,0 +1,82 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="480" width="640" viewBox="0 0 640 480">
<g fill-rule="evenodd" stroke-width="1pt">
<path d="M0 0h640v480H0z"/>
<path d="M426.66 0H640v480H426.66z" fill="#090"/>
<path d="M213.34 0h213.34v480H213.34z" fill="#bf0000"/>
</g>
<g transform="matrix(1.06 0 0 1.06 .96 27.31)" fill="#fff" fill-rule="evenodd" stroke="#bd6b00" stroke-width=".5">
<path d="M319.5 225.84h8.35c.03 3.16 1.88 6.55 4.48 8.5h-16c2.5-2.28 3.2-4.97 3.17-8.5z"/>
<path d="M266.7 178.53l4.58 5.04 56.94.1 4.67-5.05-14.6-.18-7.1-4.95-22.9-.1-6.6 5.1h-15z" stroke="none"/>
<path d="M290.02 172.74l19.66-.02c2.66-1.4 3.5-5.9 3.48-8.42-.04-7.43-5.23-11-10.45-11.18-.7-.04-1.6-.64-1.8-1.36-.5-1.6-.4-2.64-.9-2.58-.5 0-.3.94-.8 2.45-.2.75-1.1 1.5-1.9 1.54-6.5.32-10.7 5.06-10.5 11.13.1 4.02.6 6.42 3.4 8.44z"/>
<path d="M257.66 242.83h84.47l-7.56-6.16h-69.35l-7.56 6.16z" stroke="none"/>
<path d="M296.4 219.7l1.53 4.6h3.5l-2.8-4.6h-2.24zm-1.97 4.6l.9 4.58 4.1.05-1.5-4.62h-3.5zm6.95.06l2.85 4.52h5.83l-4.57-4.57-4.2.1zm-34.44 10.36c3.1-2.88 5.07-5.34 5.1-8.87h7.55c0 1.98.7 3.16 1.8 3.08l7.6-.05-.1-4.52h-5.6v-24.7c-.2-8.72 10.6-13.8 15-13.76l-26.3-.04v-.8h55.2v.8l-26.7.04c7.9.02 15.5 7.5 15.6 13.82v7H315v-6.9c0-6.92-8.7-13.37-15.7-13.17-6.06.17-15.4 5.93-15.3 13.1v2.16l14.3.1-.15 2.5 2.3 1.5 4.5 1.5-.05 3.7 3.2 1 .07 3.7 3.8 1.7v3.9l2.5 1.5-.1 3.9 3.3 2.4H310l4.9 5.5h-7.25l-3.6-5.5h-4.76l2.1 5.4h-5.1l-1.2-5.4H289l.05 5.8h-22.2zm22.17-14.98v4.57h5.4l-1-4.5h-4.2z"/>
<path fill="none" d="M289.4 211.66h3.3v7.6h-3.3z"/>
<path d="M284.7 219.8h3.24l-.02-5.6c-.04-2.43 2.15-4.88 3.2-4.96 1.15-.05 2.86 2.3 2.9 4.77l.06 5.9h3.43v-14.5l-12.8.1v14.4zm25.6 3.34h4v3.13h-4zm-2.38-5.37h4v3.13h-4zm-3.87-5.37h4v3.13h-4zm-3.3-4.52h4V211h-4z" fill="none"/>
<path d="M298.08 219.82l4.1.14 7.33 6.5v-3.84l-2.4-1.77v-3.04l-3.6-2v-3.2l-3.5-1.1V207l-1.7-1.47-.1 14.35z" fill="none"/>
<path d="M315.43 210.35h.98v7.05h-.9z"/>
<g id="a">
<path d="M257.32 186.53c-1.23-1.98-2.7 2.75-7.8 6.27-2.35 1.6-4 5.9-4 8.7-.1 1.95.2 3.88 0 5.75-.15 1.2-1.4 3.82-.54 4.5 2.23 1.65 5.13 5.42 6.47 6.72 1.16 1.02 2.16-5.24 3.03-8.05.94-3 .52-6.6 3.1-9.37 1.84-1.87 6.46-3.72 5.94-4.55l-6.2-9.97z"/>
<path d="M257.06 201.88a10.1 10.1 0 0 0-1.66-2.6c-.7-.8-1.52-1.45-2.43-1.77-.88-.3-1.78-.7-2.4-1.5a3.65 3.65 0 0 1-.73-1.4c-.12-.5-.12-1.2-.03-1.9-.1.1-.1.2-.2.3-2.3 1.6-4 5.9-4 8.7a28.5 28.5 0 0 0 0 2.3c.2.5.4 1 .6 1.3.4.4.7.7 1.2.8.8.4 1.8.5 2.7.8.9.3 1.9 1.1 2.7 2a10.5 10.5 0 0 1 1.8 2.7l.2-.8c.9-2.7.7-5.9 2.6-8.5z" fill="#bf0000"/>
<path d="M249.82 192.4c-.48 3.35 1.4 4.46 3.15 5.1 1.82.66 3.32 2.62 4.1 4.4m-11.77 1.54c.77 2.9 2.8 2.53 4.56 3.18 1.83.65 3.75 2.96 4.52 4.73" fill="none"/>
<path d="M255.6 184.48l.94-.6 17.75 29.9-1 .6-17.8-29.9z"/>
<path d="M257.52 183.3a2.05 2.05 0 1 1-4.1 0 2.05 2.05 0 1 1 4.1 0zm15.18-24.03h7.2v1.65h-7.2zm0 3.13h7.2v13.78h-7.2zm-.44-5l7.98.04c.3-2.7-2.4-5.63-3.97-5.6-1.56.07-4.07 2.95-4 5.55z"/>
<path d="M292.62 155.76c-1.52.64-2.7 2.38-3.4 4.38-.73 2-1 4.26-.66 6.1v.02c.12.63.3 1.08.5 1.4.2.33.42.52.68.57.27.05.52-.1.66-.3.14-.23.2-.52.2-.86-.16-1.88-.15-3.73.3-5.4.45-1.68 1.34-3.17 2.97-4.38.3-.3.46-.5.5-.8.04-.3-.1-.5-.28-.6-.4-.3-1-.4-1.5-.2zm.16.44c.37-.16.84-.07 1.03.1.1.07.1.12.1.2 0 .1 0 .24-.3.42-1.7 1.27-2.6 2.87-3.1 4.62-.4 1.75-.4 3.66-.3 5.56a.93.93 0 0 1-.1.57c0 .1-.1.14-.2.12 0-.1-.2-.2-.4-.4-.1-.3-.3-.7-.4-1.3-.3-1.7 0-4 .7-5.9.7-2 1.8-3.6 3.2-4.1z" fill="#bd6b00" stroke="none"/>
<path d="M295.2 157.73c-1.53.64-2.5 2.3-3.04 4.2-.53 1.88-.62 4.05-.28 5.86.26 1.2.93 1.9 1.6 2 .32 0 .64-.1.83-.4.2-.3.3-.6.2-1.1-.3-1.5-.5-3.4-.2-5.1.3-1.7 1-3.3 2.2-4.2.3-.2.5-.5.5-.7.1-.3-.1-.5-.3-.7-.3-.3-.9-.4-1.4-.2zm.18.44c.37-.16.8-.07 1 .1.1.07.13.12.12.2 0 .1-.1.24-.34.42-1.4 1-2.13 2.6-2.4 4.4-.3 1.8-.1 3.6.27 5.2.1.3 0 .6-.1.7-.08.1-.2.2-.4.1-.38-.1-.98-.6-1.22-1.7-.3-1.8-.2-3.9.3-5.7.5-1.8 1.5-3.3 2.8-3.9z" fill="#bd6b00" stroke="none"/>
<path d="M272.3 187.4h8.04v11.1h-8.03zm.48 17.45h7.75v2.33h-7.75zm-.2 4.1h7.94v8.68h-7.93zm-.55 10.46h8.68v4.9h-8.6zm1.07-16.6h7l1.38-2.3h-9.63l1.25 2.3zm9.43-8.5l.07-6.1h4.8c-1.88 1.6-3.64 3.5-4.87 6.1z"/>
<path d="M273.56 196.74c.05 1.3 1.52.72 1.52.07 0-2 .02-4.1-.06-5.5 0-1 2.5-.8 2.48-.1 0 1.7.03 4 .04 6-.02 1 1.6.9 1.6 0-.02-2.2-.02-5.4 0-7 0-2.1-5.5-2-5.55 0 0 1.7-.1 4.6-.1 6.8zm0 13.24h5.7v7.1h-5.7z" fill="none"/>
<path d="M277.2 212.92h2.02v1.17h-2zm-3.5 0h1.97v1.17h-1.96z"/>
<path d="M275.67 210.07h1.54v2.9h-1.5zm0 3.97h1.54v3.08h-1.5zM244 138.97c.35 5.57-1.38 8.62-4.33 8.16-.8-3.1 1.04-5.16 4.32-8.16zm-6.48 12.34c-2.62-1.3-.73-11.5.28-15.7.74 5.5 2 13.3-.28 15.8z"/>
<path d="M238.45 151.8c4.4 1.52 7.9-3.22 9.07-8.72-3.63 5.02-9.55 5.03-9.07 8.7zm-3.34 5.13c-3.4-.9-1.3-11.7-.7-16.03.8 4.46 3.2 14.55.8 16.03zm1.2-.34c.2-3.8 3.9-2.7 6.5-4.7-.4 1.8-2 5.1-6.4 4.6zm-4.2 4.9c-3.4-.9-1.3-12.6-1.5-17.4 1 4.1 4.2 16.2 1.6 17.3zm1.6-.5c2.8.9 6.5-.9 6.8-4.3-2.4 1.6-6.2.4-6.8 4.2z"/>
<path d="M229.52 166.7c-3.27.27-1.8-9.63-1.8-18.85 1.2 8.62 4.47 16.5 1.8 18.86z"/>
<path d="M230.65 166.26c2.2 1.1 6.16-.66 7.28-4.4-3.98 1.75-6.64.05-7.28 4.4zm25.63-22.13c-.58 4.83-2.55 7.64-5.5 7.17-.8-3.08 1.58-5.06 5.5-7.17zm-7.8 12.4c4.9.68 6.66-3.07 9.96-7.88-4.62 3.34-10.15 4.04-9.96 7.87z"/>
<path d="M247.1 155.97c-2.68-3.2-.1-7.23 1.94-10.66-.44 5.1 1.3 8-1.95 10.7zm-1.2 5.3c-.3-3.14 5.05-3.84 7.46-5.58-.8 1.8-2.04 6.6-7.45 5.5z"/>
<path d="M244.8 161.33c-3.7-.42-2.17-6.7.48-10.17-1.12 4.8 1.95 8.15-.5 10.17z"/>
<path d="M242 166.55c-4.2-1.86-1.5-7.13.08-10.24-.67 4.1 2.7 7.2-.07 10.3z"/>
<path d="M242.84 166.06c2.2 2.88 6.5-.86 7.38-5.22-3.73 3.1-6.5 2.6-7.38 5.22zm-9.6 20.26c-.43-4.3 2.8-12.08.5-16.24-.3-.57.7-2.1 1.33-1.17 1 1.5 2.04 5.7 2.48 4.2.46-1.7.53-4.6 2-5.2.96-.3 2.3-.5 1.94 1-.4 1.5-1.2 3.4-.3 3.6.5.1 2-1.9 3.3-2.9 1-.8 2.5.5 1 1.8-4.9 4.1-9.6 5.9-12.4 15.3zm-8.73 64.53c-.5-.1-1.3-.3-.6.58 5.7 7 7.3 8.93 15.6 7.94 8.4-1.1 10.4-3.36 16.2-6.65 3.2-1.83 7.7-2.24 11.2-1.1 1.6.53 2.6.56 1.5-.6-1.1-1.16-2.5-2.73-3.9-3.82-3.1-2.4-8.4-3.43-12.7-2.66-6.1.96-11.1 4.85-17.1 6.32-3.1.72-6.6.6-9.9 0zm47.8 12.5c1.1.13 1.8 2.18 2.3.8.9-2.25.3-4.03-.7-3.84-1.1.4-3.1 3-1.5 3.1z"/>
<path d="M220.6 182.92c-1.22-1.27-.86-1.75.93-1.77 1.43-.1 4.25.87 5.32.1 1-.72.6-3.75 1.03-5.14.2-.7.74-2 1.96-.1 3.62 5.9 8.15 12.8 10.08 19.6 1.06 3.9.06 9.8-3.45 13.9.12-3.4-1.16-5.7-2.7-8.6-1.93-3.7-9.07-13.9-13.17-17.9z" stroke="none"/>
<path d="M235.53 213.44c3.98.02 4.67-5.32 4.67-6.8-1.96.36-5.42 3.63-4.67 6.8zm34.42 51.82c2.83.65 2.8-6.18-.1-9.07 1.27 4.3-2.13 8.3.1 9zm-1.1-.06c.2 3.24-7.96-.42-10.05-2.95 4.8 2.05 9.8.36 10.05 2.95zm-3.57-4.63c.3 3.14-7.06.38-9.24-2.07 4.83 1.56 8.92-.52 9.24 2.07zm1.35.44c2.83.7 2.37-6.4-.38-8.8 1.32 4.7-1.85 8.2.38 8.9zm-2.98-4.2c2.83.7 1.2-5.4-.9-7.8.35 4.5-1.05 7.5.9 7.9zm-1.5 0c.3 3.3-5.43.8-7.65-2.3 4.78 1.6 7.33-.3 7.65 2.3zm-1.56-2.4c1.8-1.3-.2-4.8-3.7-4.6.3 2.2 1.5 5.9 3.6 4.7zm13.9 14.6c.2 3.3-8 1.7-10.5-1.8 5.1 1 10.3-.8 10.5 1.8zm-32.4-5.8c.3 3.3-8.6-.3-10.8-3.3 4.8 1.6 10.5.8 10.8 3.4zm5.4 1.4c1.8-1.3-2-4.8-5-5.6.3 2.2 2.8 6.9 4.9 5.6zm.5 2.3c.2 2.9-9.6 1.3-12.1-1.4 8.4 1.5 11.8-1.1 12.1 1.4z"/>
<path d="M252.76 268.63c1.08 2.7-8.26 2.04-11.54.47 5.3-.05 10.8-2.35 11.54-.47z"/>
<path d="M257.13 270.6c1.03 2.42-7.6 2.37-11.82 1.03 5.6-.04 10.8-3.43 11.9-1.03zm6.3 1.3c1.52 2.87-7.6 3.14-10.56 1.73 5.28-.72 9.25-3.98 10.55-1.73zm-10.7-4.9c-2.9 1.83-2.74-3.56-5.04-7.3 3.6 3.3 7 5.56 5 7.3z"/>
<path d="M257.88 268.94c-2.43 2.16-4.38-5.25-6.6-9.4 3.6 3.95 8.85 7.6 6.6 9.4zm6.8 2.06c-2.06 2.4-8.02-7.02-10.2-11.92 3.3 3.82 11.84 9.9 10.2 11.92zm-5.8 7.18c-1.03 3.63-16.2-3.42-17.9-7.08 8.7 4.6 18.1 3.64 17.9 7.08zm-48.73-73.8c-.35-.46-1.37 0-1.12 1.12.24 1.5 2.45 9.2 6.25 11.85 2.7 1.96 16.97 5.1 23.43 6.44 3.6.7 6.6 2.4 8.9 5.3-.9-3.7-1.7-6.5-3-9.8-1.2-3-4.4-6.2-7.7-6.4-6.1-.3-14.1-.8-19.9-3.3-3-1.3-4.8-3-6.7-5.4z"/>
<path d="M245.54 234.87c1.95 1.43 4.1-3.7 1.62-8.6-.08 4.7-3.8 6.3-1.62 8.6z"/>
<path d="M247.4 239.58c2.7.83 3.55-3.94 1.77-7.75.3 4.1-4.23 6.56-1.76 7.75z"/>
<path d="M249.46 243.36c2.6 1.3 3.58-3.52 1.72-7.1.2 4.57-3.72 5.9-1.72 7.1z"/>
<path d="M248.4 243.65c-1.04 3.08-7.02-2.65-8.02-5.78 3.7 3.7 8.75 3.28 8 5.78z"/>
<path d="M245.68 238.94c-1.17 3.08-8.7-4.85-10.35-8.67 3.7 3.7 11.2 6.5 10.35 8.67z"/>
<path d="M244.2 234.32c-1.18 3.5-9.35-5.83-11.66-9.13 3.9 3.6 12.53 6.5 11.65 9.1zm-.27-3.46c2.88-.56-.16-2.96-3.7-6.85-.15 4.1.52 7 3.7 6.9z"/>
<path d="M239.08 228.53c1.24-1.35-1.2-1.93-4.2-5.3-.45 2.27 2.8 6.44 4.2 5.3zm13.92 15.2c1.57.92 2.65-2.3.7-5.22-.46 3.2-2.14 4.1-.7 5.3zm-34.2-20.35c-3.33 2-8.64-6-10.06-9.28 2.93 3.77 10.7 7.22 10.07 9.28z"/>
<path d="M221.65 228.04c-1.85 2.05-7.67-3.52-9.7-6.34 3.13 2.7 10.52 3.02 9.7 6.34z"/>
<path d="M224.82 232.22c-.6 2.8-9.1-3.5-11.1-6.48 3.67 3.46 11.66 3.14 11.1 6.48z"/>
<path d="M223.52 235.25c-1.3 2.52-8.22-3.73-9.88-7 4.22 3.7 10.95 4.5 9.88 7zm-3.55-12.28c2.18-2.3 1.25-3.38-.34-7-.87 3.72-2.18 5.2.34 7zm2.9 4.34c3.94.2.03-4.6-.9-8.6.34 4.6-1.02 8.3.9 8.7z"/>
<path d="M225.38 231.13c2.74-.62 1.95-4.5-.15-9.2.44 5.08-2.32 8 .15 9.2zm-.93 7.67c-1.03 3.08-8.83-4.06-10.07-6.76 3.95 3.32 10.77 4.45 10.07 6.76z"/>
<path d="M229.12 243.6c-1.17 3.1-9.34-3.16-11.84-6.56 4.92 3.87 12.44 3.52 11.84 6.57z"/>
<path d="M233.88 248.46c-1.3 4.3-9.85-2.56-12.4-5.9 5.44 4.14 13.1 2.85 12.4 5.9zm-8.03-11.03c2.32 1.2 3.26-5.38 1.95-10.03.02 5.07-4.66 8.84-1.95 10.03z"/>
<path d="M229.8 242.66c2.8.83 1.9-6.27-.47-10.87-.3 4.5-2.36 8.8.48 10.8zm4.96 4.9c3.1.17.97-6.08-1.6-9.6.44 4.6-1 9.07 1.6 9.6zm-5.46 2.67c-.94 1.6-3.23-1.35-7-3.5 3.4.9 7.42 2.03 7 3.5zm-1.78-52.74c2.9-2.2.7-6.2 0-10-.94 3.6-3.4 8.3 0 10zm-.1 5.3c-4.37-.5-3.7-6.2-3.84-9.8 1.3 4.8 4.9 5.6 3.84 9.7zm.7-.8c3.68-.2 3.5-4.4 3.68-8.7-1.87 3.9-4.1 4.5-3.7 8.6z"/>
<path d="M227.96 207.34c-2.87.23-4.37-2.6-5.02-7 2.72 4.06 5.2 2.8 5.02 7zM229 207c3.68.47 3.1-3.83 2.95-7-1.14 3.02-4.14 3.97-2.96 7z"/>
<path d="M223.23 205.17c.3 2.8 2.07 7.63 4.93 6.55 1.18-3.45-2.52-4.14-4.93-6.55z"/>
<path d="M229.04 212.02c-1.28-2.46 2.9-3.7 3.8-6.9.5 4.58.07 7.6-3.8 6.9zm-11.9-29.18c2.3-2.48.26-6.4-.43-10.23-.9 3.7-2.5 8.5.5 10.3zm-.08 4.6c-4.04.42-5.02-7.8-5.43-11.33 1.32 4.9 5.97 7.1 5.43 11.4zm.83-.07c2.8-1.47 2.1-4.65 3-7.04-1.9 2.93-3.7 3.35-3.1 7.04z"/>
<path d="M217.1 192.75c-4.23.36-6.75-8.74-6.88-12.32 1.3 4.86 7.36 7.5 6.87 12.32zm.8-.14c3.97-.9 3.5-3.4 2.9-7.6-1.26 4.2-3.48 3.3-2.9 7.7z"/>
<path d="M217.04 198c-4.65.8-4.32-6.56-8-11.9 3.18 3.97 8.93 8.96 8 11.9zm1.05-.25c3.5.1 3.8-5.18 3.6-7.32-.8 2.13-5 4.16-3.7 7.32z"/>
<path d="M209.78 192.34c1.74 5.65 4.22 11.32 7.26 10.9 1.46-3.22-2.9-3.63-7.26-10.9z"/>
<path d="M218.14 202.4c-1.28-2.46 2.9-3.7 3.8-6.9.5 4.58.07 7.6-3.8 6.9zm-7.16-3.6c2.5 5.1 3.6 10.95 7.02 10.1 1.28-3.96-3.77-4.8-7.02-10.1z"/>
<path d="M218.7 207.93c-1.46-2.7 2.73-3.65 3.76-7.36.55 4.86.03 8.33-3.75 7.36zm7.17-34.48c2.45.66 5.02-2.1 4.13-6.2-2.8.7-4.1 3.23-4.13 6.2zm-7.84-2.06c.2 1.1 1.62 1.2 1.2-.4-.33-1.4-.4-2.4 0-3.4.56-1.4.38-3.7-.03-4.7-.42-1-1.8-.5-1.22.3.64.9.68 2.8.24 3.7-.58 1.3-.42 3-.2 4.3zm22.87 15.9c-.95 1.4-2.88.5-1.4-1.4 1.2-1.6 2.92-2.8 3.05-4.4.1-2.1 1.3-5.1 2.37-6.2 1.12-1.1 2.4.4 1.2 1.2-1.33.8-2.2 4.4-2.17 5.8-.05 2-2.04 3.4-3.05 4.9zm-2.98-2.3c-.95 1.4-2.46.6-1.6-1.7.72-1.6.8-3.5 1.6-4.6 1.13-1.7 3.03-3.2 4.12-4.2 1.1-1.1 2.04-.1 1.02.9-1.25 1.2-2.6 2.8-3.35 3.9-1.4 2.3-.7 4.1-1.7 5.5zm-15.74-7.2c-.1 1.9 1.47 2.4 1.4-.4-.07-3-2.18-5.7-.9-10.3.7-2.2.7-6.3.3-8.5-.37-2.2-1.9-.8-1.3.9.62 1.9-.13 5.6-.62 7.5-1.46 5.4 1.2 8.1 1.12 10.6zm4.32-10.9c-.23 1.8-1.76 2-1.32-.6.37-2.1.44-3.7 0-5.4-.6-2.1-.4-5.7.05-7.2.45-1.6 1.95-.7 1.32.6-.7 1.4-.73 4.4-.25 5.8.62 2.1.45 4.8.2 6.7zM210.94 204c.76.9 2.04.3.87-.92-.9-1-.6-1.3-1.2-2.5-.5-1.35-.5-2.1-1.2-3.05-.6-.9-1.5.02-.9.8.8.9.6 1.56 1 2.44.9 1.5.7 2.3 1.5 3.23zm20.4 24.6c2.44 1.2 4.3 4.2 4.4 6.65.22 2.8.63 5.18 1.9 7.17-2.02-.56-2.98-3.76-3.27-6.82-.3-3.18-2-4.55-3.03-7zm5.08 5.9c1.7 3.1 4.05 4.3 4.17 6.6.2 2.67.4 2.8 1.1 5.42-2-.53-2.5-.7-3.1-4.68-.4-2.8-2.6-4.78-2.3-7.35z"/>
<path d="M288.97 263.32c.95 1.8 2.04 4.5 4 4 .04-1.36-2.12-2.3-4-4zm2.94.6c3.9 1.58 7.2 1.2 7.6 3.6-3.6.4-4.9-1.08-7.5-3.6zm-16-12.68c2.6 2.12 4.3 4.53 5.1 7.65.8 2.9 2 5.2 3.7 7.8-2.7-1.9-4.4-4.4-5.3-7.5-.7-3-1.6-5.3-3.3-8.1zm3.2 0c2.8 2.2 5.4 4.7 6.2 7.83.8 2.9 1.3 5.13 3.2 8.03-2.9-1.87-4.1-4.7-4.9-7.75-.7-3-2.5-5.26-4.4-8.12zm9.2 7.23c-.1-.55.3-1.02.8-1.17a33.43 33.43 0 0 1 2.6-.84c1-.23 1.6.47 1.6.94v2c0 .73-.2.78-.6.9-.7.1-1.7.24-2.4.74-.6.36-1.1.07-1.4-.56-.2-.5-.3-1.44-.4-2zm10.7 0c.1-.55-.2-1.07-.6-1.2-.8-.34-1.5-.42-2.4-.4-.9 0-1.1.2-1.1.67v2.1c0 .72 0 .78.4.88.7.13 1.8.16 2.5.66.5.36 1.1.07 1.2-.6 0-.52.1-1.54.1-2.1z" stroke="none"/>
</g>
<use transform="scale(-1 1)" xlink:href="#a" x="-600" width="100%" height="100%"/>
<g stroke="none">
<path d="M328.54 286.65c.05 1.18.2 2.13.9 3.08-4.1-1.63-9.84-.76-13.78 1.07-1.76.84-3.88-.95-1.82-2.66 2.93-2.37 9.7-1.02 14.7-1.5zm-57.5-.06c.05 1.1-.08 2.1-.5 3.1 4.44-1.9 9.2-.4 13.68 1.5 3.07 1.2 3.32-1 2.78-1.7-.93-1.4-2.74-2.9-5.03-2.9-1.52-.1-7.38-.1-10.94-.1zm3.74-21.7c-1.24-.6-2.68 0-3.96 1.3-4.33 4.2-9.4 8.3-13.5 11.6-1.54 1.3-3.1 3.7 3.42 6.1.24.1 5 1.8 8 1.9 1.24-.1 1.24 1.8 1 2.3-.5.9-.14 1.3-1.2 2.3-1.08.9.13 2.1 1 1.3 3.66-3.2 9.62-1.2 15.36.7 1.35.4 3.83.3 3.8-1.6.04-2 1.5-3.5 2.42-3.5 2.34.4 13.92.5 17.48.1 2.08-.3 2.2 2.8 3.32 4 .76.8 3.72 1 5.74.1 4-1.9 10.1-1.9 12.58-.1 1.02.8 1.83.1 1.25-.7-.8-1.1-.8-1.6-1.1-2.5-1-1.9-.2-2.4.7-2.5 11-1.4 14.6-5.2 11.2-8.3-4.4-3.9-9.2-7.7-13.4-12.2-1.2-1.2-1.9-1.7-4.3-.7-7.2 3.2-16.4 5.6-25.4 5.8-8.4 0-19.8-3.8-24.6-5.8z"/>
<path d="M326.62 265.54c-.58.06-1.2.24-1.66.4-8.92 3.14-17.1 5.33-25.65 5.32-8.3-.02-17-2.3-24.9-5.53-.4-.2-.9-.16-1.4-.03-.5.13-1 .36-1.3.68-3.6 3.63-7.6 7.15-11.8 10.35-.6.5-.5 1.73.5 2.15 8.3 2.98 16.5 8.54 39.7 8.32 23.5-.22 31.8-5.64 39.2-8.13.5-.2 1.1-.5 1.3-.97a1.03 1.03 0 0 0 .1-.8c-.1-.3-.3-.56-.6-.85-4.2-3.46-8.7-6.2-11.7-10.4-.3-.5-.9-.57-1.5-.5zm.03.44c.5-.05.9.02 1.1.3 3.04 4.3 7.62 7.08 11.8 10.5.3.26.45.5.5.67a.5.5 0 0 1-.02.43c-.15.3-.6.57-1.07.75-7.53 2.52-15.66 7.9-39.03 8.13-23.1.22-31.1-5.3-39.47-8.3-.75-.32-.68-1.17-.4-1.4 4.24-3.2 8.22-6.73 11.87-10.36.25-.25.65-.45 1.1-.57.44-.1.9-.13 1.2 0 7.9 3.24 16.63 5.58 25.04 5.6 8.62 0 16.9-2.2 25.85-5.35.45-.16 1.02-.35 1.53-.4z" fill="#bd6b00"/>
<path d="M269.7 114.56c-.06-1.38 2.08-1.48 1.83.4-.3 2.37 4.46 8.35 4.86 12.04.2 2.47-1.5 4.64-3.2 6-2.1 1.6-5.3 1.38-6.8.45-.9-.73-1.8-3.23-1.1-4.22.2-.34 1.3 3.67 3.7 3.66 3.2-.1 5.9-2.5 6-4.7.1-3.8-5.4-9.8-5.4-13.7zm9.54 9.4c.54-.4 1.4 1.3.8 1.7-.5.34-1.5-1.24-.8-1.7zm1.45-3.42c-.3.13-.9-.06-.7-.3.7-1.08 2.4-2.7 3.5-3.3.3-.16 1 .48.7.8-.7 1-2.4 2.18-3.7 2.8zm12.5-10c.3-.62 2.1-1.33 2.6-1.76.4-.44.6.37.4.75-.3.63-1.9 1.7-2.6 1.73-.4 0-.7-.33-.5-.7zm4.3.2c.4-1.1 1.6-2.78 2.5-3.33.4-.2 1.2 0 1.1.4-.4 1-1.9 2.6-2.9 3.4-.4.3-.8-.1-.7-.4zm-3.7 2.78c-.3.13-.2.7.1.78.5.18 1.5.2 1.9-.03.6-.4.3-2.85-.6-1.54-.6.8-1 .55-1.6.8zm-7.3 5.62c-1.3-1.03.3-2.46 1.7-1.46 2.7 2.02-4 9.78-7.7 13.4-.7.7-1.3-1.07-.4-1.84 2.6-2.22 5-4.86 6.7-7.6.3-.52.6-1.65-.4-2.5zm15.2-6.67c.1-.98-1.6.02-1.6-1.28 0-.7 1.9-1.2 2.7-.4 1.4 1.4.3 3.7-1.9 3.8-1.9.1-5.1 2.7-4.6 3.2.5.6 5.4 1.1 8.3.6 1.7-.3 1.4 1.3-.4 1.5-1.8.2-3.2 0-4.8.5-2 .5-2.8 3.1-3.9 4.1-.3.1-.9-.9-.7-1.2.8-1.2 2-3.1 3.3-3.6.9-.4-2.3-.5-3.4-.8-.8-.3-.6-1.3-.3-1.9.4-.9 3.4-3.9 4.6-3.9 1.1 0 2.3-.3 2.4-1.1zm5.1.26c.5-.5.8-1.34 1.4-1.85.3-.32.8.07.7.86-.1.62-.9 1.15-1.5 1.62-.5.34-1-.4-.7-.63zm6.4-2.3c.8-.1 1 1.54.1 1.8-.6.2-1.1-1.7-.2-1.8zm-2.2 5.04c0 1.4.6 1.28 2 1.23 1.2-.05 2.4.03 2.4-1.24 0-1.3-.8-2.46-1-1.57-.2.8-.4 2.2-.9 1.6-.5-.5-.3-.7-1.1.2-.4.4-.5-.3-.7-.7-.2-.3-.8.2-.8.4zm-9.3 7.16c-.3 1.86 0 4.46.9 4.5 1.1.03 3.6-4.07 4.7-6.2.7-1.2 1.9-1.4 1.4-.16-.8 1.9-.7 6-.1 7.2.3.65 3-.6 3.4-1.5.7-1.7.1-4.77.4-6.66.1-1.2 1.2-1.4 1.2-.3-.1 2.1-.3 5.8-.2 7.6.1 1 2.9 2.5 3.3-.5.2-1.8 1.2-3.7-.1-5.8-.8-1.3 1.1-1.1 2.2.7.7 1.2-.6 3.2-.6 4.7.1 2.4-1.7 3.7-3.1 3.8-1.2.1-2-1.4-3-1.4-1.1-.1-2.2 1.7-3.1 1.6-3.5-.2-1.6-5.3-2.7-5.4-1.2 0-2.6 5-4 4.8-1.5-.1-3-4.1-2.4-5.8.5-1.5 1.5-1.9 1.4-.9zm16.9-8.03c-1.7-1.04.1-3.74.9-2.8 1.6 1.94 3.2 6.5 4.3 6.88.7.24.6-3.38 1.1-5.02.3-1.2 1.8-.82 1.5.74-.1.52-1.9 6.42-1.8 6.65 1.2 2.52 2.5 5.08 3.3 7.8.3 1.16-1.1.37-1.3.13-.9-1.34-2.5-6.45-2.5-6.22-.7 3.6-.9 4.66-1.7 7.72-.3.98-1.7.8-1.4-.93.3-1.4 2.4-8.4 2.2-8.6-1.6-2.85-3.1-5.12-5.1-6.35z"/>
<path d="M322.03 131.2c-.47-.05-1.2 1.05 1.15 1.5 3.16.56 6.6-.5 7.67-3.6 1.2-3.68 2-7.17 2.65-8.5.8-1.52 1.8-1.4 1.05-3.64-.52-1.6-1.5-1.13-1.7-.26-.56 2.35-2.66 9.95-3.3 11.35-1.25 2.55-3.73 3.56-7.52 3.15z"/>
<path d="M328.35 119.07c-.34-.72-1.13-.16-1 .63a1.2 1.2 0 0 0 1.26 1.1c.7-.04 2.2 0 2.2-1.14 0-.8-.6-1.48-1.1-.6-.4.82-1 .73-1.3 0zm.8-3.04c-.25.17-.03 1.07.25 1.06 1.04-.1 2.5-.4 3.28-1 .23-.2.13-.7-.2-.7-1 0-2.57 0-3.34.5zm8.75 2.26c.75-1.2 2.8-1.3 2.07.3-.53 1.1-5.66 11-6.36 12.3-.7 1.4-1.3.7-.8-.4.8-1.5 4.9-12 5.2-12.3z"/>
<path d="M330.18 133.04c-.22-.8-1.44-1.95-1.3.15.24 3.8 5.5 2.6 7.1 1.2 1.44-1.3.18 4.3 2.1 4.9 1.06.3 3.05-1.1 4.03-2.4 2.8-3.6 4.5-8.6 7.1-12.1 1-1.4-.5-2.4-1.1-1.3-2.3 3.8-5.1 11.6-8.2 13.6-2.5 1.6-1.7-2.1-1.8-3.2-.1-.8-1.1-2-2.4-.9-.9.7-2.3 1.3-3.6 1.1-.7 0-1.4 0-1.7-1.4z"/>
<path d="M339.57 125.93c.03-.22-1.1-.3-1.06.8.1.8 1.1 1.03 1.2.92 1.6-1.12-.3-.57-.1-1.72zm-2.24 4.5c-.3.06-.58 1.03.13 1.1.66.03 3.22-.24 3.92-.2.46-.02.63-.9-.35-.85-1.2.06-2.75-.24-3.7-.06zm-61.96-16.67c.4.02 1.52 1.46 1.45 1.9-.05.23-1.2-.02-1.54-.3-.26-.23-.16-1.6.1-1.6zM270 124.2c-1.02.57.16 1.66.92 1.2 2.86-1.85 7.16-3.8 8.06-7.47.28-1.24 1.44-3.15 2.54-3.57 1.06-.4 2.6 1.92 3.6.08.6-1.04 2.65.7 3.15-.43.6-1.3.32-2.1.34-3.3 0-.8-.6-1.1-1.1.3-.2.6.1 1.3-.1 1.6-.1.3-.6.5-.9.3-.2-.2 0-.7-.7-.9-.2-.1-.6-.2-.7.1-.7 1.3-1.1 2.5-2.1 1.1-.9-1.2-1.3-3.2-2-.4-.2 1-1.7 2.4-2.6 2.4-1.1 0-.8-2.9-3.2-2.5-1.2.3-1.1 2.7-.9 3.6.3 1.2 3.9.4 3.8 1.2-.6 2.8-4.5 5.4-7.7 7.1zm-22.7 13.22c-.15.46.46 1.72 1.1 1.82.63.04.95-1.36.75-1.82-.15-.34-1.74-.33-1.85 0zm3.33 4.88c-.4-.43-1.6.73-.63 1.55.54.44 2.5 1.07 3.05.15.73-1.18-.72-5.5-.07-6.06.5-.44 2.82 2.88 3.97 3.12 2.7.37 2.05-4.62 4.96-4.28 2 .26 2.2-2.2 2-3.76-.2-1.48-2.6-3.62-3.7-4.58-1.4-1.2-2.1.9-1.1 1.58 1.2.94 3.3 2.84 3.6 4.1.2.6-1.4 1.77-2 1.45-1.3-.74-2.6-3.9-3.8-4.62-.4-.25-1.3.3-.9 1.3.6 1.05 2.9 2.7 3.1 3.8.2 1.04-1 3.27-1.8 3.27s-3-2.7-3.7-3.96c-.3-.6-1.5-.54-1.6.3-.2 1.25.2 3.9.5 5.55.3 1.6-.9 1.7-1.5 1.1zm-4.07-8.57c-.34.38.8 1.13 1.02.94.43-.38 2.13-2.3 1.8-2.98-.3-.6-2.62-2-3-1.3-.7 1.1 2.2 1.6 1.74 1.9-.22.1-1.02.6-1.56 1.3zm4.17-8.46s.73 2.5 1.32 1.45c.48-.72-1.32-1.45-1.32-1.45zm1.2 3.96c-.28.15-1.03.74-.54 1.06.7.4 2.8.8 2.4-.7-.3-.9 3.1 0 2.3-2.4-.2-.7-1.3-1.6-1.8-1.8-.3-.1-1.5.5-.8.8.5.2 2 1.1 1.4 1.7-.7.6-1.1-.3-1.9-.2-.4.1-.2 1.2-.4 1.5-.1.1-.7-.4-.9-.3zm5.47-9.46c-.43.22-1.2 1.4-1.24 1.94-.02.3.3.7.55.6.5-.2 1.2-1.3 1.2-1.8 0-.3-.2-.8-.5-.6zm2.84-.3c-.84-1.04.9-2.56 1.67-.5.5 1.28 5.5 7.9 6.6 10.13.8 1.5 0 2.14-.9 1.05-2.5-3.24-4.6-7.28-7.2-10.7zm5.15.13c.9-.97 2.7-2.95 2.2-4.05-.4-.95-1.5-.86-1.7-.64-1.1 1.3.7 1 .5 1.5-.6 1.1-1.1 1.6-1.4 2.6-.1.3.1.9.3.7zm77.7 3.24c-.7-.52.6-3.04 1.5-2.05 2.3 2.7 3.4 11.6 4.1 18.2 0 0-1.1.9-1.1.7 0-3.6-1.5-14.4-4.6-17zm-53.1-8.66c-.8-1.76 1.1-2.4 1.4-1.16 1.3 5.8 4.5 10.16 6.9 14.1.7 1.23.1 1.96-1.7.83-1.3-.85-2.5-3.92-3.1-4.04-1.1-.2-3.7 5-9.1 3.6-1.4-.4-1.3-4.5-1.3-6.3-.1-.8.9-1.1.9.1 0 1.7 0 5.2 2.1 5.3 1.7.1 5.6-2.4 6.4-4.3.7-2-1.9-5.9-2.8-8z"/>
<path d="M344.6 138.38c.44-1.2 6.12-10.73 6.87-12.84.38-1 2.02 1.74.42 3.22-1.4 1.26-5.6 8.04-6.3 10.4-.4 1.08-1.5.57-1-.78z"/>
<path d="M354.28 129.28c1.05-3.94 3.6.6 1.35 2.85-3.46 3.38-4.5 9.85-9.98 10.82-1.48.32-4.1-.66-4.86-1.2-.3-.22.2-1.63 1.1-.94 1.3 1.1 4.1 1.3 5.5.1 3.1-3 5.6-7.1 6.8-11.6zm-57 12.74c-.26.28-1 .24-1.08.64-.3 1.48 0 2.23-.33 3.65-.3 1.4-1.26 1.5-1.2.4.1-1.4 1.28-3.5.44-3.6-.5-.1-.9-.8-.4-1.2 1.1-.7 1.7-.6 2.5-.4.3.1.4.5.2.7z"/>
<path d="M296.5 140.1c-1.45 1.26-2.8 1.77-4.12 3.37-.55.66-.53 1.57-.86 2.4-.32.9-1.37 1.07-1.7.9-.54-.37-.46-2.02-1.07-1.13-.5.82-.84 1.94-1.6 1.93-.7-.02-2-1.43-1.33-1.5 2.25-.22 2.22-2.03 3.06-2.14.95-.13 1 1.48 1.6 1.16.45-.3.67-2.2 1.17-2.7 1.52-1.6 2.73-2.4 4.3-3.6.78-.7 1.34.5.55 1.1zm5.28 4.84c-1.16.23-.96 1.72-.62 1.9.56.27 1.43.38 1.75-1.33.2-.7.3 3.5 1.9 1.9.9-1 3.1.2 4-1 .7-.8.9-1.4.4-2.6-.1-.4-1-.2-1 .7.1.8-.5 1.7-1.3 1.6-.3 0 .3-1.8-.1-2.3-.2-.2-.5-.2-.7.1-.3.4.3 2.1-.6 2.3-1.2.3-.5-1.1-1-1.4-1.6-.8-1.7.2-2.4.4zm9.05-2.86c.85-.24.58-.24 1.92-1.33.52-.4.62.76.57 1.2-.1.8-1.02.24-1.3.92-.42.9-.25 2.95-.4 3.8-.1.42-.78.38-.84.04-.2-1 .14-2 .1-3.3 0-.4-.63-1.1-.05-1.3zm-5-2.62c-.2.93-.2 1.7-.2 2.32.06.52 1 .2 1 .12-.05-.8.13-1.94-.1-2.25-.14-.17-.65-.37-.7-.2z"/>
<path d="M299.54 130.2l-1.46 5.58-2.03-3.75v3.85l-4.37-5.2 1.52 5.57-3.93-3.34 2.1 3.8-6.98-4.5 4.4 5.2-5.6-2.7 4 3.4-9.2-3.4 8.8 4.4c3.2-1.6 7.6-2.5 12.5-2.5s9.3 1 12.5 2.6l8.7-4.3-9 3.5 3.9-3.4-5.5 2.7 4.4-5.2-7 4.5 2.1-3.8-3.9 3.4 1.5-5.5-4.4 5.2.1-3.8-2 3.7-1.5-5.6z"/>
</g>
</g>
<path d="M311.3 294.9c0 .64-.1 1.55-.28 2.74h-.44c0-.8-.04-1.43-.12-1.87a9.26 9.26 0 0 0-.42-1.56 7.26 7.26 0 0 0-.58-1.2c-.2-.3-.54-.8-1-1.4l.88-2.1.87 1.2.6 1.2a9.36 9.36 0 0 1 .6 3.2m6.9-4.2c0 .7-.1 1.2-.3 1.5-.2.3-.7.6-1.3.7.2.6.3 1.1.4 1.5.1.4.1.8.1 1.2v.9a22.48 22.48 0 0 1-.1 1.3h-.4a8.24 8.24 0 0 0-.1-1.2 5.53 5.53 0 0 0-.2-.9l-.4-1a10.53 10.53 0 0 0-.6-1.5c-.2-.4-.5-.9-1-1.6l.7-2c.4.5.7.9 1 1.1.2.2.6.3.9.3.8 0 1.2-.4 1.2-1.3h.4v1.4m6.4 4.8l-.5 2.2c-.3-.1-.6-.3-.8-.7-.2-.3-.3-.8-.4-1.3a12.42 12.42 0 0 1-.1-1.7c-.4.2-.7.2-1 .2-.5 0-.9-.1-1.2-.4a1.25 1.25 0 0 1-.4-1c0-.8.2-1.6.7-2.3.5-.7 1-1 1.5-1s.8.1.9.4a2 2 0 0 1 .4 1c0 .3.1 1 .1 2 0 .9.1 1.5.2 1.9.1.3.4.6.8 1m-2-3.6c-.1-.5-.4-.8-.8-.8-.2 0-.4.1-.6.2-.2.1-.3.2-.3.3 0 .3.3.4 1 .4.2 0 .4 0 .6-.1m8.7 3l-.3 2.6c-.5-.3-.9-1-1.4-1.9-.4-1-.9-2.3-1.3-4.1-.4 1.8-.7 3-1 3.8-.3.8-.5 1.4-.8 1.7-.16.2-.4.5-.8.7l.1-2.4c.4-.6.8-1.1.9-1.4a7.63 7.63 0 0 0 .7-1.7c.2-.6.4-1.5.5-2.62h.5c.3 1.1.6 2 .86 2.6.2.6.5 1.2.84 1.68.3.3.6.8 1.2 1.3" fill="#fff"/>
<path d="M350.82 319.4c.34.4.6.8.73 1.18.13.4.23.94.3 1.65l-.78.07c-.33-.65-.65-1.15-.96-1.5-.2-.3-.6-.7-1.1-1.2a46.04 46.04 0 0 0-1.6-1.5 34.38 34.38 0 0 0-2.1-1.7c-.3-.22-.5-.38-.5-.47-.1-.15-.2-.42-.3-.84a11.2 11.2 0 0 1-.1-1.6l2.7 2.2a44.32 44.32 0 0 1 2.5 2.2l1.4 1.4m-9.5-5.8l-.1 2-3.1-.1.3-2 3.1.1m8.3 8.8l-7.5 2.3-1.4-2 6.6-2c-.3-.4-.5-.7-.7-.9a2.83 2.83 0 0 0-.8-.6 1.42 1.42 0 0 1-.4.9c-.3.3-.6.5-1.1.6a3.38 3.38 0 0 1-1.7.1c-.6-.2-1-.4-1.3-.8-.4-.6-.6-1.3-.6-2.2 0-1 .3-1.6.8-1.8.8-.3 1.8-.1 3.1.6s2.3 1.5 3 2.4l2.3 3.1m-5.8-4c-.3-.2-.6-.3-.8-.3a1.14 1.14 0 0 0-.6 0 .7.7 0 0 0-.4.4.5.5 0 0 0 .1.5c.1.1.2.2.4.2s.4 0 .6-.1c.2-.1.3-.2.5-.3.2-.1.3-.3.4-.5m-8.1-1.6l-.4 1.9-3.1-.3.5-2 3.2.3m7.2 7.8l-1.7.4a5.3 5.3 0 0 1-1.7.1 3.56 3.56 0 0 1-1.5-.5c-.3.5-.8.9-1.5 1.2a7.4 7.4 0 0 1-1.6.5l-1.2.2-1.1-2 1.2-.3c.6-.1 1.1-.3 1.3-.4.3-.1.6-.3.9-.5-.4-.2-.7-.4-.9-.5-.3-.1-.5-.1-.8-.1a.4.4 0 0 0-.2.1.6.6 0 0 0-.1.2l-.6.1c-.5-.9-.6-1.6-.3-2.1s.9-.8 1.96-1.1c1.1-.2 2-.3 2.7-.1.77.1 1.3.4 1.5.9.17.3.2.5.2.8-.05.3-.2.7-.4 1.2.15 0 .33.1.54.1a2 2 0 0 0 .55-.1l1.7-.4 1.1 2m-8 1.9l-1.6.23c-.9.2-1.7 0-2.3-.4-.7-.4-1.2-1.3-1.7-2.6l-.8-2.1c-.2-.5-.4-.8-.75-1.1-.16-.1-.47-.2-.9-.4l.53-2.1c.6.4 1.1.7 1.4 1.1.4.44.7 1 1 1.72l.5 1.5c.4 1.03.8 1.74 1.14 2.12.3.3.6.4 1 .4l1.63-.2.8 2m-7-7.5l-1.06 1.82-3-.7 1.04-1.9 2.9.7m1.78 8.4l-7.44.7-.4-2.1 6.3-.6a2.32 2.32 0 0 0-.7-.8c-.18-.1-.5-.36-1-.6l.55-2c.7.4 1.2.8 1.5 1.3.4.5.6 1.2.8 2.1l.5 2.05m-5.9 1c-.9-.05-1.6-.1-2.2-.2a10.5 10.5 0 0 1-1.7-.47 5.6 5.6 0 0 1-1.3.4c-.4 0-.9.1-1.6 0l-2-.1c-.5 0-1-.1-1.3-.3-.2-.2-.5-.5-.7-1a4.12 4.12 0 0 1-1.5.9c-.44.1-1 .2-1.7.17H309l.17-2.1 1.7.06c.8.04 1.5-.1 2.1-.4.75-.35 1.2-.95 1.23-1.76l.72.1-.1.6-.06.7c0 .3.1.5.38.7.28.2.6.3.9.3l1.5.1c1 0 1.7 0 2.1-.2.5-.2.8-.6.9-1.1 0-.2.1-.3.2-.4l.5-.24.5-.2v.4a8.87 8.87 0 0 1 0 .3c0 .3-.1.7-.3 1.1l1 .3 1.2.2c0-.2-.1-.4-.27-.7s-.3-.5-.3-.6a.52.52 0 0 1 .1-.3s.1-.1.3-.2l1.1-.83c.2.4.3.7.4.9.06.3.1.6.05 1l-.2 3m-11.3-8.7l-1.9 1.4-1.4-.9-1.45 1-1.9-1.15 1.8-1.3 1.5.83 1.4-1.06 1.84 1.1m-2.9 8.1l-7.3-1.2.8-2.1 6.2 1c.1-.3 0-.67-.1-.9-.1-.2-.2-.48-.5-.87l1.7-1.6c.4.57.6 1.1.7 1.6 0 .5-.13 1.2-.5 2.1l-.76 2m-6.2-.9l-1.54-.4c-.9-.2-1.4-.6-1.5-1.15-.2-.6.1-1.5.8-2.73l1.2-2.1c.24-.5.4-.86.3-1.2 0-.14-.1-.4-.37-.7l2.2-1.56c.2.5.3.9.23 1.35-.1.5-.3 1.1-.7 1.8l-.9 1.4c-.6 1-.9 1.74-.9 2.2 0 .34.2.6.53.7l1.6.3-1.1 2m-3.7-7.9l-2.6 1.1-1.9-1.7 2.6-1.1 1.7 1.7m-1.1 6.6c-.5.6-1.1 1.1-1.6 1.4a4.24 4.24 0 0 1-1.7.6c-.6 0-1.4 0-2.4-.1a14.84 14.84 0 0 1-2.8-.7c-1.7-.6-2.9-1.3-3.5-2.1-.6-.7-.57-1.5.06-2.2a7.02 7.02 0 0 1 1.9-1.6c.87-.4 2.1-1 3.87-1.6l.4.5c-1.4.5-2.3.9-2.8 1.2-.5.3-.9.6-1.2 1-.4.5-.3 1 .2 1.6.57.6 1.48 1.1 2.77 1.6 1.2.5 2.4.7 3.6.7 1.1 0 1.8-.2 2.2-.7.2-.3.4-.6.5-.9.1-.3.1-.9.1-1.7l2.5-1.5c0 .7-.1 1.3-.1 1.5-.2.5-.5 1-1 1.6l-1.2 1.4" fill="#bf0000"/>
</svg>

After

Width:  |  Height:  |  Size: 24 KiB

View File

@@ -0,0 +1,15 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<defs>
<clipPath id="a">
<path fill-opacity=".67" d="M-79.698 0h682.67v512h-682.67z"/>
</clipPath>
</defs>
<g clip-path="url(#a)" fill-rule="evenodd" transform="translate(74.717) scale(.9375)">
<path fill="#fff" d="M-120 0h763.27v511.49H-120z"/>
<path d="M-118.31.617h760.88v216.09h-760.88z"/>
<path fill="#0061ff" d="M21.3 203.23h505.01v113.82H21.3z"/>
<path d="M642.75 1.753v510.25H262.03L642.75 1.753z" fill="#e20000"/>
<path d="M-118.69 1.753v510.25h380.72L-118.69 1.753z" fill="#e20000"/>
<path d="M440.37 203.34l-76.31-19.363L428.98 135l-79.726 11.39 41.003-69.475-70.616 41.003 12.53-80.867-47.837 63.783L264.97 26.8l-21.64 76.31-47.837-64.92 13.667 83.145-70.615-43.282 41.003 69.476-77.45-12.53 63.783 47.838-79.727 20.5h354.22z" fill="#ffd600"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 902 B

View File

@@ -0,0 +1,767 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<defs>
<clipPath id="a">
<path fill-opacity=".7" d="M0 0h640v480H0z"/>
</clipPath>
</defs>
<g clip-path="url(#a)">
<path fill-rule="evenodd" fill="#fff" d="M.4.4H403v240H.5z"/>
<path d="M.4.4v18l96 59.3 36.3 1.3L.4.4z" fill="#c00"/>
<path d="M41.6.4l116.5 73V.4H42z" fill="#006"/>
<path d="M173.6.4v93.3H.4V147h173.2v93.2H227V147h173V93.7H227V.4h-53.4z" fill="#c00"/>
<path d="M242.4.4v69L356.4.8l-114-.6z" fill="#006"/>
<path d="M246 76.8l32-.4L402.7 1l-33 .6L246 76.8z" fill="#c00"/>
<path d="M401.3 21l-95 56.7 93.8.4v85h-80l80 52 1 27h-42l-116-69v68h-85v-69L50 240l-49 .2V480h799V.4L402 0M.4 27L0 77l84.2 1L.4 27zm0 135.5v51l80-50.5-80-.5z" fill="#006"/>
<path d="M308.2 164.6l-33.3-.3 125 75-1-17-92-57.7zm-276.6 76l117.8-74.2-31 .3-118 73.8" fill="#c00"/>
<path d="M525.4 247.8l2 2-2-2z" fill="#49497d"/>
<path d="M527.4 247.8l2 2-2-2z" fill="#0e0e6e"/>
<path d="M521.3 249.8l2 2-2-2z" fill="#262678"/>
<path d="M523.3 249.8l2 2-2-2z" fill="#808067"/>
<path d="M529.4 249.8l2 2-2-2z" fill="#58587b"/>
<path d="M454.3 252l2 2-2-2z" fill="#0e0e6e"/>
<path d="M517.3 252l2 2-2-2z" fill="#1b1b74"/>
<path d="M519.3 252l2 2-2-2z" fill="#6e6c70"/>
<path d="M458 255.5c0 52.5-6.2 111.6 33 152.7 8 8.4 23.3 27.7 36.4 27 13.7-.8 31.4-21 39.3-31 34-44.8 28.6-98.2 29.7-150.2-15.3 7-23 9.2-36.4 9-10 1.2-25.3-5.5-34.5-10-6 4-14.7 9-30.4 9.4-18 .8-23-2.3-37-7z" fill="#cc3"/>
<path d="M531.5 252l2 2-2-2z" fill="#99994e"/>
<path d="M533.5 252l2 2-2-2z" fill="#49497d"/>
<path d="M596.4 252l2 2-2-2z" fill="#0e0e6e"/>
<path d="M456.4 254l2 2-2-2z" fill="#a4a43d"/>
<path d="M458.4 254l2 2-2-2z" fill="#6e6c70"/>
<path d="M460.4 254l2 2-2-2z" fill="#3a3a7c"/>
<path d="M513.2 254l2 2-2-2z" fill="#1b1b74"/>
<path d="M515.2 254l2 2-2-2z" fill="#6e6c70"/>
<path d="M517.3 254l2 2-2-2z" fill="#a4a43d"/>
<path d="M525.4 254l2 2-2-2z" fill="#d0d045"/>
<path d="M533.5 254l2 2-2-2z" fill="#a4a43d"/>
<path d="M535.5 254l2 2-2-2z" fill="#8d8d5b"/>
<path d="M537.6 254l2 2-2-2z" fill="#3a3a7c"/>
<path d="M590.3 254l2 2-2-2z" fill="#262678"/>
<path d="M592.4 254l2 2-2-2z" fill="#53527c"/>
<path d="M594.4 254l2 2-2-2z" fill="#8d8d5b"/>
<path d="M464.5 256l2 2-2-2z" fill="#737370"/>
<path d="M466.5 256l2 2-2-2z" fill="#53527c"/>
<path d="M468.5 256l2 2-2-2z" fill="#1b1b74"/>
<path d="M509 256l2.2 2-2-2z" fill="#262678"/>
<path d="M511.2 256l2 2-2-2z" fill="#6e6c70"/>
<path d="M513.2 256l2 2-2-2z" fill="#a4a43d"/>
<path d="M523.3 256l2 2-2-2z" fill="#e5e59d"/>
<path d="M462 261.2c-1 27.6-.2 58.6 4 88 5 15.5 4.2 24 11.3 33.2l99-.8c6-9.7 10.5-24.4 11-30.3 5.6-29.7 5.7-62.6 5.8-92-9 5.3-23 9-35 7.4-10-.8-19-3-30-9.2-9 5.6-12 8.2-28 9-12 .5-22 1.5-36-5.3z" fill="#fff"/>
<path d="M527.4 256l2 2-2-2z" fill="#f2f1d7"/>
<path d="M529.4 256l2 2-2-2z" fill="#d9d868"/>
<path d="M537.6 256l2 2-2-2z" fill="#a4a43d"/>
<path d="M539.6 256l2 2-2-2z" fill="#99994e"/>
<path d="M541.6 256l2 2-2-2z" fill="#49497d"/>
<path d="M543.6 256l2 2-2-2z" fill="#0e0e6e"/>
<path d="M584.3 256l2 2-2-2z" fill="#3a3a7c"/>
<path d="M586.3 256l2 2-2-2z" fill="#667"/>
<path d="M588.3 256l2 2-2-2z" fill="#99994e"/>
<path d="M590.3 256l2 2-2-2m-121.8 2l2 2-2-2z" fill="#a4a43d"/>
<path d="M470.6 258l2 2-2-2z" fill="#99994e"/>
<path d="M472.6 258l2 2-2-2z" fill="#6e6c70"/>
<path d="M474.6 258l2 2-2-2z" fill="#49497d"/>
<path d="M476.6 258l2 2-2-2m26.4 0l2 2-2-2z" fill="#1b1b74"/>
<path d="M505 258l2 2-2-2z" fill="#53527c"/>
<path d="M507 258l2 2-2-2z" fill="#8d8d5b"/>
<path d="M509 258l2.2 2-2-2z" fill="#a4a43d"/>
<path d="M519.3 258l2 2-2-2z" fill="#e5e59d"/>
<path d="M521.3 258l2 2-2-2z" fill="#fbfaf2"/>
<path d="M531.5 258l2 2-2-2z" fill="#f2f1d2"/>
<path d="M533.5 258l2 2-2-2z" fill="#d9d868"/>
<path d="M543.6 258l2 2-2-2z" fill="#a4a43d"/>
<path d="M545.7 258l2 2-2-2z" fill="#6e6c70"/>
<path d="M547.7 258l2 2-2-2z" fill="#3a3a7c"/>
<path d="M574 258l2 2-2-2z" fill="#0e0e6e"/>
<path d="M576 258l2.2 2-2-2z" fill="#32327b"/>
<path d="M578.2 258l2 2-2-2z" fill="#58587b"/>
<path d="M580.2 258l2 2-2-2z" fill="#808067"/>
<path d="M583.6 258.6l1.3.7-2-.7z" fill="#a4a43d"/>
<path d="M460.4 260l2 2-2-2z" fill="#dddc7a"/>
<path d="M462.4 260l2 2-2-2z" fill="#d0d045"/>
<path d="M478 260.7l1.4.6-1.4-.6z" fill="#a4a43d"/>
<path d="M480.7 260l2 2-2-2z" fill="#808067"/>
<path d="M482.7 260l2 2-2-2z" fill="#667"/>
<path d="M484.8 260l2 2-2-2z" fill="#58587b"/>
<path d="M486.8 260l2 2-2-2z" fill="#49497d"/>
<path d="M499 260l2 2-2-2z" fill="#737370"/>
<path d="M501 260l2 2-2-2z" fill="#99994e"/>
<path d="M503 260l2 2-2-2z" fill="#a4a43d"/>
<path d="M515.2 260l2 2-2-2z" fill="#e5e59d"/>
<path d="M517.3 260l2 2-2-2z" fill="#fbfaf2"/>
<path d="M535.5 260l2 2-2-2z" fill="#f2f1d2"/>
<path d="M537.6 260l2 2-2-2z" fill="#d9d868"/>
<path d="M549 260.7l1.4.6-1.3-.6z" fill="#a4a43d"/>
<path d="M551.8 260l2 2-2-2z" fill="#808067"/>
<path d="M553.8 260l2 2-2-2z" fill="#667"/>
<path d="M555.8 260l2 2-2-2z" fill="#58587b"/>
<path d="M558 260l2 2-2-2z" fill="#3a3a7c"/>
<path d="M567.3 260.7l1.4.6-1.4-.6z" fill="#58587b"/>
<path d="M570 260l2 2-2-2z" fill="#737370"/>
<path d="M572 260l2 2-2-2z" fill="#99994e"/>
<path d="M574 260l2 2-2-2z" fill="#a4a43d"/>
<path d="M590.3 260l2 2-2-2z" fill="#dddc7a"/>
<path d="M592.4 260l2 2-2-2z" fill="#d0d045"/>
<path d="M464.5 262l2 2-2-2z" fill="#f2f1d7"/>
<path d="M466.5 262l2 2-2-2z" fill="#e0dea1"/>
<path d="M468.5 262l2 2-2-2z" fill="#dddc7a"/>
<path d="M509 262l2.2 2-2-2z" fill="#d9d868"/>
<path d="M511.2 262l2 2-2-2z" fill="#e5e3af"/>
<path d="M539.6 262l2 2-2-2z" fill="#f6f6e4"/>
<path d="M541.6 262l2 2-2-2z" fill="#e1e18c"/>
<path d="M582.2 262l2 2-2-2z" fill="#d4d456"/>
<path d="M584.3 262l2 2-2-2z" fill="#e1e18c"/>
<path d="M586.3 262l2 2-2-2z" fill="#eeedc1"/>
<path d="M472.6 264l2 2-2-2z" fill="#f2f1d2"/>
<path d="M474.6 264l2 2-2-2z" fill="#e0dea1"/>
<path d="M476.6 264l2 2-2-2z" fill="#dddc7a"/>
<path d="M478.7 264l2 2-2-2z" fill="#d0d045"/>
<path d="M503 264l2 2-2-2z" fill="#dddc7a"/>
<path d="M505 264l2 2-2-2z" fill="#e5e3af"/>
<path d="M507 264l2 2-2-2z" fill="#f6f6e4"/>
<path d="M545.7 264l2 2-2-2z" fill="#eeedc1"/>
<path d="M547.7 264l2 2-2-2z" fill="#e1e18c"/>
<path d="M549.7 264l2 2-2-2z" fill="#d4d456"/>
<path d="M574 264l2 2-2-2z" fill="#d9d868"/>
<path d="M576 264l2.2 2-2-2z" fill="#e1e18c"/>
<path d="M578.2 264l2 2-2-2z" fill="#eeedc1"/>
<path d="M580.2 264l2 2-2-2z" fill="#f6f6e4"/>
<path d="M482.7 266l2 2-2-2z" fill="#f2f1d7"/>
<path d="M484.8 266l2 2-2-2z" fill="#f2f1d2"/>
<path d="M486.8 266l2 2-2-2z" fill="#eeedc1"/>
<path d="M496.3 266.7l1.3.7-1.3-.7z" fill="#f2f1d2"/>
<path d="M499 266l2 2-2-2z" fill="#fbfaf2"/>
<path d="M509 266l4.2 4v-4h-4z" fill="#fef8f1"/>
<path d="M553.8 266l2 2-2-2z" fill="#f2f1d7"/>
<path d="M555.8 266l2 2-2-2z" fill="#f2f1d2"/>
<path d="M558 266l2 2-2-2z" fill="#e5e3af"/>
<path d="M561.3 266.7l1.3.7-1.4-.7z" fill="#e5e59d"/>
<path d="M564 266l2 2-2-2z" fill="#e0dea1"/>
<path d="M567.3 266.7l1.4.7-1.4-.7z" fill="#f2f1d2"/>
<path d="M570 266l2 2-2-2z" fill="#fbfaf2"/>
<path d="M505 268l2 2-2-2z" fill="#fef8f1"/>
<path d="M507 268l2 2-2-2z" fill="#fbbe66"/>
<path d="M505 270l2 2.2-2-2z" fill="#fbc477"/>
<path d="M509 270l2.2 2.2-2-2z" fill="#fcb144"/>
<path d="M505 272.2l2 2-2-2z" fill="#fe9f11"/>
<path d="M509 272.2l2.2 2-2-2z" fill="#fea522"/>
<path d="M503 274.2l2 2-2-2m8.2 0l2 2-2-2z" fill="#fae3c9"/>
<path d="M521.3 274.2l2 2-2-2z" fill="#fbead6"/>
<path d="M523.3 274.2l2 2-2-2z" fill="#f9d6aa"/>
<path d="M531.5 274.2l2 2-2-2z" fill="#fae3c9"/>
<path d="M533.5 274.2l2 2-2-2z" fill="#fef8f1"/>
<path d="M503 276.2l2 2-2-2z" fill="#f9d099"/>
<path d="M511.2 276.2l2 2-2-2z" fill="#fdab33"/>
<path d="M515.2 276.2l2 2-2-2z" fill="#fcf1e4"/>
<path d="M517.3 276.2l2 2-2-2z" fill="#fbc477"/>
<path d="M519.3 276.2l2 2-2-2z" fill="#fea522"/>
<path d="M535.5 276.2l2 2-2-2z" fill="#fcb755"/>
<path d="M537.6 276.2l2 2-2-2z" fill="#f9d6aa"/>
<path d="M503 278.3l2 2-2-2z" fill="#faca88"/>
<path d="M513.2 278.3l2 2-2-2m26.4 0l2 2-2-2z" fill="#fea522"/>
<path d="M541.6 278.3l2 2-2-2z" fill="#f8dcbb"/>
<path d="M460.4 280.3l2 2-2-2z" fill="#f6f6e4"/>
<path d="M503 280.3l2 2-2-2z" fill="#fbc477"/>
<path d="M543.6 280.3l2 2-2-2z" fill="#fbbe66"/>
<path d="M545.7 280.3l2 2-2-2z" fill="#f8dcbb"/>
<path d="M503 282.3l2 2-2-2z" fill="#faca88"/>
<path d="M549.7 282.3l2 2-2-2z" fill="#fcb755"/>
<path d="M551.8 282.3l2 2-2-2z" fill="#f8dcbb"/>
<path d="M501 284.3l2 2-2-2z" fill="#fef8f1"/>
<path d="M503 284.3l2 2-2-2z" fill="#fe9f11"/>
<path d="M560 284.3l2 2-2-2z" fill="#fdab33"/>
<path d="M562 284.3l2 2-2-2z" fill="#fcb144"/>
<path d="M564 284.3l2 2-2-2z" fill="#fbc477"/>
<path d="M566 284.3l4 4-4-4z" fill="#f9d6aa"/>
<path d="M568 284.3l2 2-2-2z" fill="#fef8f1"/>
<path d="M501 286.4l2 2-2-2z" fill="#fcb144"/>
<path d="M529.4 286.4l2 2-2-2z" fill="#fdab33"/>
<path d="M531.5 286.4l2 2-2-2zm8 0l2 2-2-2z" fill="#fbc477"/>
<path d="M541.6 286.4l2 2-2-2z" fill="#fea522"/>
<path d="M499 288.4l2 2-2-2z" fill="#fae3c9"/>
<path d="M525.4 288.4l2 2-2-2z" fill="#fcb144"/>
<path d="M527.4 288.4l2 2-2-2z" fill="#fae3c9"/>
<path d="M543.6 288.4l2 2-2-2z" fill="#f8dcbb"/>
<path d="M545.7 288.4l2 2-2-2z" fill="#fdab33"/>
<path d="M558 288.4l2 2-2-2z" fill="#fe9f11"/>
<path d="M560 288.4l2 2-2-2z" fill="#fcb755"/>
<path d="M562 288.4l2 2-2-2z" fill="#f9d099"/>
<path d="M564 288.4l2 2-2-2z" fill="#fbead6"/>
<path d="M499 290.4l2 2-2-2z" fill="#fcb144"/>
<path d="M523.3 290.4l2 2-2-2z" fill="#fbbe66"/>
<path d="M547.7 290.4l2 2-2-2z" fill="#f9d099"/>
<path d="M555.8 290.4l2 2-2-2z" fill="#fbead6"/>
<path d="M497 292.5l2 2-2-2z" fill="#fcf1e4"/>
<path d="M521.3 292.5l2 2-2-2z" fill="#fbbe66"/>
<path d="M549.7 292.5l2 2-2-2z" fill="#f9d099"/>
<path d="M555.8 292.5l2 2-2-2z" fill="#fae3c9"/>
<path d="M497 294.5l2 2-2-2z" fill="#fbc477"/>
<path d="M519.3 294.5l2 2-2-2m32.5 0l2 2-2-2z" fill="#fcb144"/>
<path d="M555.8 294.5l2 2-2-2z" fill="#fbbe66"/>
<path d="M460.4 296.5l2 2-2-2z" fill="#f6f6e4"/>
<path d="M497 296.5l2 2-2-2z" fill="#fea522"/>
<path d="M519.3 296.5l2 2-2-2z" fill="#fbead6"/>
<path d="M551.8 296.5l2 2-2-2z" fill="#fcf1e4"/>
<path d="M558 296.5l2 2-2-2z" fill="#fef8f1"/>
<path d="M495 298.6l2 2-2-2z" fill="#fcf1e4"/>
<path d="M517.3 298.6l2 2-2-2z" fill="#fbbe66"/>
<path d="M553.8 298.6l2 2-2-2z" fill="#faca88"/>
<path d="M558 298.6l2 2-2-2z" fill="#f9d099"/>
<path d="M495 300.6l2 2-2-2z" fill="#f9d6aa"/>
<path d="M517.3 300.6l2 2-2-2z" fill="#fcf1e4"/>
<path d="M527.4 300.6l2 2-2-2z" fill="#fae3c9"/>
<path d="M529.4 300.6l2 2-2-2z" fill="#fea522"/>
<path d="M531.5 300.6l2 2-2-2z" fill="#fcb144"/>
<path d="M533.5 300.6l2 2-2-2z" fill="#f9d6aa"/>
<path d="M553.8 300.6l2 2-2-2z" fill="#fef8f1"/>
<path d="M555.8 300.6l2 2-2-2z" fill="#fea522"/>
<path d="M558 300.6l2 2-2-2z" fill="#fdab33"/>
<path d="M495 302.6l-2 6 2-6z" fill="#faca88"/>
<path d="M515.2 302.6l2 2-2-2z" fill="#fea522"/>
<path d="M517.3 302.6l2 2-2-2z" fill="#fef8f1"/>
<path d="M527.4 302.6l2 2-2-2z" fill="#f9d099"/>
<path d="M535.5 302.6l2 2-2-2z" fill="#fdab33"/>
<path d="M537.6 302.6l2 2-2-2z" fill="#fae3c9"/>
<path d="M555.8 302.6l2 2-2-2z" fill="#f8dcbb"/>
<path d="M558 302.6l2 2-2-2z" fill="#f90"/>
<path d="M560.6 304l.6 1.3-.6-1.3z" fill="#fbead6"/>
<path d="M519.3 304.6l2 2-2-2z" fill="#fea522"/>
<path d="M521.3 304.6l2 2-2-2z" fill="#fbbe66"/>
<path d="M523.3 304.6l2 2-2-2z" fill="#faca88"/>
<path d="M525.4 304.6l2 2-2-2z" fill="#fcb144"/>
<path d="M527.4 304.6l2 2-2-2z" fill="#fae3c9"/>
<path d="M529.4 304.6l2 2-2-2z" fill="#fe9f11"/>
<path d="M539.6 304.6l2 2-2-2z" fill="#fdab33"/>
<path d="M541.6 304.6l2 2-2-2z" fill="#fbc477"/>
<path d="M543.6 304.6l2 2-2-2z" fill="#faca88"/>
<path d="M545.7 304.6l2 2-2-2z" fill="#f9d6aa"/>
<path d="M549 305.3l1.4.7-1.3-.7z" fill="#fae3c9"/>
<path d="M551.8 304.6l2 2-2-2z" fill="#fef8f1"/>
<path d="M558 304.6l2 2-2-2z" fill="#fbc477"/>
<path d="M470.6 306.7l2 2-2-2z" fill="#fef8f1"/>
<path d="M472.6 306.7l2 2-2-2z" fill="#fcf1e4"/>
<path d="M525.4 306.7l2 2-2-2z" fill="#fcb755"/>
<path d="M529.4 306.7l2 2-2-2z" fill="#fbead6"/>
<path d="M531.5 306.7l2 2-2-2z" fill="#fea522"/>
<path d="M547.7 306.7l2 2-2-2z" fill="#fe9f11"/>
<path d="M549.7 306.7l-2 4 2-4z" fill="#fcb144"/>
<path d="M553.8 306.7l2 2-2-2z" fill="#fe9f11"/>
<path d="M555.8 306.7l2 2-2-2z" fill="#fbbe66"/>
<path d="M558 306.7l2 2-2-2z" fill="#fcf1e4"/>
<path d="M470.6 308.7l2 2-2-2z" fill="#fae3c9"/>
<path d="M472.6 308.7l4 4-4-4z" fill="#fe9f11"/>
<path d="M474.6 308.7l2 2-2-2zm18.3 0l2 2-2-2z" fill="#fbead6"/>
<path d="M495 308.7l2 2-2-2z" fill="#fae3c9"/>
<path d="M513.2 308.7l2 2-2-2z" fill="#fe9f11"/>
<path d="M515.2 308.7l2 2-2-2z" fill="#fbc477"/>
<path d="M517.3 308.7l2 2-2-2z" fill="#fea522"/>
<path d="M523.3 308.7l2 2-2-2z" fill="#fbc477"/>
<path d="M525.4 308.7l2 2-2-2z" fill="#fef8f1"/>
<path d="M533.5 308.7l2 2-2-2z" fill="#fbc477"/>
<path d="M549.7 308.7l2 2-2-2z" fill="#fff"/>
<path d="M551.8 308.7l2 2-2-2z" fill="#fdab33"/>
<path d="M560 308.7l2 2-2-2z" fill="#fbc477"/>
<path d="M470.6 310.7l2 2-2-2z" fill="#fef8f1"/>
<path d="M476.6 310.7l2 2-2-2z" fill="#fbead6"/>
<path d="M486.8 310.7l2 2-2-2z" fill="#f9d6aa"/>
<path d="M497 310.7l2 2-2-2z" fill="#fe9f11"/>
<path d="M500.3 311.4l1.4.7h-1.4z" fill="#f9d6aa"/>
<path d="M513.2 310.7l2 2-2-2z" fill="#f8dcbb"/>
<path d="M519.3 310.7l2 2-2-2z" fill="#fcf1e4"/>
<path d="M535.5 310.7l2 2-2-2z" fill="#f9d6aa"/>
<path d="M549.7 310.7l2 2-2-2z" fill="#fdab33"/>
<path d="M562 310.7l2 2-2-2z" fill="#fcb755"/>
<path d="M564 310.7l2 2-2-2z" fill="#fef8f1"/>
<path d="M454.3 312.8l2 2-2-2z" fill="#53527c"/>
<path d="M472.6 312.8l2 2-2-2z" fill="#fcb755"/>
<path d="M476.6 312.8l2 2-2-2z" fill="#fea522"/>
<path d="M484.8 312.8l2 2-2-2z" fill="#fbead6"/>
<path d="M488.8 312.8l2 2-2-2z" fill="#fe9f11"/>
<path d="M491 312.8l2 2-2-2z" fill="#fcf1e4"/>
<path d="M497 312.8l2 2-2-2z" fill="#fbbe66"/>
<path d="M499 312.8l2 2-2-2z" fill="#fbc477"/>
<path d="M501 312.8l2 2-2-2z" fill="#fbbe66"/>
<path d="M511.2 312.8l2 2-2-2z" fill="#fea522"/>
<path d="M537.6 312.8l2 2-2-2z" fill="#f9d6aa"/>
<path d="M564 312.8l2 2-2-2z" fill="#fcb144"/>
<path d="M596.4 312.8l2 2-2-2z" fill="#8d8d5b"/>
<path d="M460.4 314.8l2 2-2-2z" fill="#e5e3af"/>
<path d="M472.6 314.8l2 2-2-2z" fill="#f8dcbb"/>
<path d="M478.7 314.8l2 2-2-2z" fill="#fdab33"/>
<path d="M484.8 314.8l2 2-2-2z" fill="#fe9f11"/>
<path d="M488.8 314.8l2 2-2-2z" fill="#faca88"/>
<path d="M497 314.8l2 2-2-2z" fill="#fcf1e4"/>
<path d="M511.2 314.8l2 2-2-2m28.4 0l2 2-2-2z" fill="#f9d099"/>
<path d="M566 314.8l2 2-2-2z" fill="#fbbe66"/>
<path d="M474.6 316.8l2 2-2-2z" fill="#fea522"/>
<path d="M480.7 316.8l2 2-2-2z" fill="#fdab33"/>
<path d="M482.7 316.8l2 2-2-2z" fill="#fea522"/>
<path d="M486.8 316.8l2 2-2-2z" fill="#fe9f11"/>
<path d="M488.8 316.8l2 2-2-2z" fill="#fef8f1"/>
<path d="M499 316.8l2 2-2-2z" fill="#fbbe66"/>
<path d="M511.2 316.8l2 2-2-2z" fill="#fef8f1"/>
<path d="M541.6 316.8l2 2-2-2z" fill="#fbbe66"/>
<path d="M568 316.8l2 2-2-2z" fill="#f9d099"/>
<path d="M474.6 319l2 2-2-2z" fill="#f9d6aa"/>
<path d="M486.8 319l2 2-2-2z" fill="#f9d099"/>
<path d="M499 319l2 2-2-2z" fill="#fcf1e4"/>
<path d="M509 319l2.2 2-2-2m34.4 0l2 2-2-2z" fill="#fdab33"/>
<path d="M570 319l2 2-2-2z" fill="#fbead6"/>
<path d="M476.6 321l2 2-2-2z" fill="#fea522"/>
<path d="M484.8 321l2 2-2-2z" fill="#fe9f11"/>
<path d="M501 321l2 2-2-2z" fill="#fcb144"/>
<path d="M509 321l2.2 2-2-2z" fill="#faca88"/>
<path d="M543.6 321l2 2-2-2z" fill="#f8dcbb"/>
<path d="M570 321l2 2-2-2z" fill="#fcb144"/>
<path d="M460.4 323l2 2-2-2z" fill="#d3d079"/>
<path d="M476.6 323l2 2-2-2zm24.4 0l2 2-2-2z" fill="#faca88"/>
<path d="M509 323l2.2 2-2-2m34.4 0l2 2-2-2z" fill="#fae3c9"/>
<path d="M572 323l2 2-2-2z" fill="#f8dcbb"/>
<path d="M590.3 323l2 2-2-2z" fill="#f2f1d7"/>
<path d="M597 324.3l.8 1.3-.7-1.3z" fill="#58587b"/>
<path d="M461 326.3l.8 1.4-.7-1.4z" fill="#d9d868"/>
<path d="M476.6 325l2 2-2-2z" fill="#f8dcbb"/>
<path d="M541.6 325l2 2-2-2z" fill="#f9d6aa"/>
<path d="M543.6 325l2 2-2-2z" fill="#fe9f11"/>
<path d="M572 325l2 2-2-2z" fill="#fcb144"/>
<path d="M591 326.3l.7 1.4-.7-1.4z" fill="#f2f1d2"/>
<path d="M476.6 327l2 2-2-2z" fill="#fcf1e4"/>
<path d="M539.6 327l2 2-2-2z" fill="#fef8f1"/>
<path d="M541.6 327l2 2-2-2z" fill="#fe9f11"/>
<path d="M547.7 327l-2 4 2-4z" fill="#fdab33"/>
<path d="M549.7 327l2 2-2-2z" fill="#fcb755"/>
<path d="M574 327l2 2-2-2z" fill="#fea522"/>
<path d="M576 327l2.2 2-2-2z" fill="#f9d099"/>
<path d="M596.4 327l2 2-2-2z" fill="#53527c"/>
<path d="M457 330.4l.7 1.3-.7-1.3z" fill="#808067"/>
<path d="M478.7 329l2 2-2-2m6 0l2 2-2-2z" fill="#fea522"/>
<path d="M507 329l2 2-2-2z" fill="#fe9f11"/>
<path d="M539.6 329l2 2-2-2z" fill="#fae3c9"/>
<path d="M547.7 329l2 2-2-2z" fill="#fef8f1"/>
<path d="M551.8 329l2 2-2-2z" fill="#fcb144"/>
<path d="M578.2 329l2 2-2-2z" fill="#fcb755"/>
<path d="M580.2 329l4 4-4-4z" fill="#fef8f1"/>
<path d="M591 330.4l.7 1.3-.7-1.3z" fill="#e5e59d"/>
<path d="M597 330.4l.8 1.3-.7-1.3z" fill="#32327b"/>
<path d="M479.4 332.4l.6 1.4-.6-1.4z" fill="#fcb755"/>
<path d="M486.8 331l2 2-2-2z" fill="#fef8f1"/>
<path d="M507 331l2 2-2-2z" fill="#fbbe66"/>
<path d="M539.6 331l2 2-2-2z" fill="#fbead6"/>
<path d="M543.6 331l2 2-2-2z" fill="#fe9f11"/>
<path d="M545.7 331l2 2-2-2z" fill="#fcf1e4"/>
<path d="M551.8 331l2 2-2-2z" fill="#fbead6"/>
<path d="M580.2 331l2 2-2-2z" fill="#fdab33"/>
<path d="M456.4 333l2 2-2-2z" fill="#667"/>
<path d="M462.4 333l2 2-2-2z" fill="#f6f6e4"/>
<path d="M486.8 333l2 2-2-2z" fill="#f9d6aa"/>
<path d="M503 333l2 2-2-2z" fill="#fdab33"/>
<path d="M505 333l2 2-2-2z" fill="#fe9f11"/>
<path d="M507 333l2 2-2-2z" fill="#fcf1e4"/>
<path d="M541.6 333l2 2-2-2z" fill="#fea522"/>
<path d="M543.6 333l2 2-2-2m10.2 0l2 2-2-2z" fill="#faca88"/>
<path d="M582.2 333l2 2-2-2z" fill="#fcb144"/>
<path d="M590.3 333l2 2-2-2z" fill="#dddc7a"/>
<path d="M456.4 335l2 2-2-2z" fill="#58587b"/>
<path d="M462.4 335l2 2-2-2z" fill="#f2f1d2"/>
<path d="M479.4 336.5l.6 1.3-.6-1.3z" fill="#fcb144"/>
<path d="M486.8 335l2 2-2-2z" fill="#fea522"/>
<path d="M507 335l2 2-2-2z" fill="#fef8f1"/>
<path d="M509 335l2.2 2-2-2z" fill="#fea522"/>
<path d="M513.2 335l2 2-2-2z" fill="#fcb144"/>
<path d="M515.2 335l2 2-2-2z" fill="#fbead6"/>
<path d="M541.6 335l2 2-2-2z" fill="#f8dcbb"/>
<path d="M543.6 335l2 2-2-2z" fill="#fcf1e4"/>
<path d="M553.8 335l2 2-2-2z" fill="#fef8f1"/>
<path d="M555.8 335l2 2-2-2z" fill="#fe9f11"/>
<path d="M584.3 335l2 2-2-2z" fill="#fbead6"/>
<path d="M590.3 335l2 2-2-2z" fill="#d9d868"/>
<path d="M456.4 337l2 2.2-2-2z" fill="#3a3a7c"/>
<path d="M462.4 337l2 2.2-2-2z" fill="#e5e3af"/>
<path d="M488.8 337l2 2.2-2-2z" fill="#faca88"/>
<path d="M509 337l2.2 2.2-2-2z" fill="#fbead6"/>
<path d="M515.2 337l2 2.2-2-2z" fill="#fe9f11"/>
<path d="M517.3 337l2 2.2-2-2z" fill="#fcf1e4"/>
<path d="M539.6 337l2 2.2-2-2z" fill="#fbead6"/>
<path d="M541.6 337l2 2.2-2-2z" fill="#fae3c9"/>
<path d="M543.6 337l2 2.2-2-2z" fill="#fbead6"/>
<path d="M555.8 337l2 2.2-2-2m16.3 0l2 2-2-2z" fill="#fbbe66"/>
<path d="M574 337l2 2.2-2-2z" fill="#fcf1e4"/>
<path d="M576 337l2.2 2.2-2-2z" fill="#fef8f1"/>
<path d="M578.2 337l2 2.2-2-2z" fill="#f8dcbb"/>
<path d="M580.2 337l2 2.2-2-2z" fill="#fcb755"/>
<path d="M584.3 337l2 2.2-2-2z" fill="#fae3c9"/>
<path d="M594.4 337l2 2.2-2-2z" fill="#808067"/>
<path d="M456.4 339.2l2 2-2-2z" fill="#32327b"/>
<path d="M459 340.5l.7 1.4-.7-2z" fill="#a4a43d"/>
<path d="M462.4 339.2l2 2-2-2z" fill="#e5e59d"/>
<path d="M478.7 339.2l2 2-2-2z" fill="#fbc477"/>
<path d="M491 339.2l2 2-2-2z" fill="#f9d6aa"/>
<path d="M511.2 339.2l2 2-2-2z" fill="#fbbe66"/>
<path d="M517.3 339.2l2 2-2-2z" fill="#f9d099"/>
<path d="M535.5 339.2l2 2-2-2z" fill="#fae3c9"/>
<path d="M537.6 339.2l2 2-2-2z" fill="#fcb144"/>
<path d="M545.7 339.2l2 2-2-2z" fill="#fae3c9"/>
<path d="M555.8 339.2l2 2-2-2z" fill="#f8dcbb"/>
<path d="M572 339.2l2 2-2-2z" fill="#f9d099"/>
<path d="M582.2 339.2l2 2-2-2z" fill="#fbc477"/>
<path d="M584.3 339.2l2 2-2-2z" fill="#fbead6"/>
<path d="M594.4 339.2l2 2-2-2z" fill="#737370"/>
<path d="M462.4 341.2l2 2-2-2z" fill="#d9d868"/>
<path d="M478.7 341.2l2 2-2-2z" fill="#f9d099"/>
<path d="M493 341.2l2 2-2-2m18.2 0l2 2-2-2z" fill="#f9d6aa"/>
<path d="M517.3 341.2l2 2-2-2z" fill="#fbc477"/>
<path d="M527.4 341.2l2 2-2-2z" fill="#fef8f1"/>
<path d="M529.4 341.2l2 2-2-2z" fill="#f8dcbb"/>
<path d="M531.5 341.2l2 2-2-2z" fill="#fbc477"/>
<path d="M533.5 341.2l2 2-2-2z" fill="#fea522"/>
<path d="M545.7 341.2l2 2-2-2z" fill="#fbead6"/>
<path d="M588.3 341.2l2 2-2-2z" fill="#f2f1d2"/>
<path d="M594.4 341.2l2 2-2-2z" fill="#58587b"/>
<path d="M458.4 343.2l2 2-2-2z" fill="#99994e"/>
<path d="M462.4 343.2l2 2-2-2z" fill="#d0d045"/>
<path d="M495 343.2l2 2-2-2z" fill="#fcb144"/>
<path d="M497 343.2l2 2-2-2z" fill="#fae3c9"/>
<path d="M511.2 343.2l2 2-2-2z" fill="#fef8f1"/>
<path d="M519.3 343.2l2 2-2-2z" fill="#fcb755"/>
<path d="M521.3 343.2l2 2-2-2z" fill="#fbc477"/>
<path d="M523.3 343.2l2 2-2-2z" fill="#fcb144"/>
<path d="M525.4 343.2l2 2-2-2z" fill="#fea522"/>
<path d="M541.6 343.2l2 2-2-2z" fill="#fe9f11"/>
<path d="M543.6 343.2l2 2-2-2z" fill="#f9d6aa"/>
<path d="M572 343.2l2 2-2-2z" fill="#fef8f1"/>
<path d="M588.3 343.2l2 2-2-2z" fill="#e0dea1"/>
<path d="M594.4 343.2l2 2-2-2z" fill="#3a3a7c"/>
<path d="M458.4 345.3l2 2-2-2z" fill="#737370"/>
<path d="M464.5 345.3l2 2-2-2z" fill="#fbfaf2"/>
<path d="M480.7 345.3l2 2-2-2z" fill="#fea522"/>
<path d="M499 345.3l2 2-2-2z" fill="#fe9f11"/>
<path d="M501 345.3l2 2-2-2z" fill="#fcb144"/>
<path d="M503 345.3l2 2-2-2z" fill="#fbc477"/>
<path d="M505 345.3l2 2-2-2z" fill="#faca88"/>
<path d="M507 345.3l2 2-2-2z" fill="#fbc477"/>
<path d="M509 345.3l2.2 2-2-2z" fill="#fcb144"/>
<path d="M511.2 345.3l2 2-2-2z" fill="#fdab33"/>
<path d="M539.6 345.3l2 2-2-2z" fill="#fbc477"/>
<path d="M541.6 345.3l2 2-2-2z" fill="#fef8f1"/>
<path d="M570 345.3l2 2-2-2z" fill="#fdab33"/>
<path d="M588.3 345.3l2 2-2-2z" fill="#e1e18c"/>
<path d="M593 346.6l.7 1.4-.7-1.4z" fill="#a4a43d"/>
<path d="M594.4 345.3l2 2-2-2z" fill="#262678"/>
<path d="M458.4 347.3l2 2-2-2z" fill="#58587b"/>
<path d="M464.5 347.3l2 2-2-2z" fill="#f2f1d2"/>
<path d="M480.7 347.3l2 2-2-2z" fill="#faca88"/>
<path d="M535.5 347.3l2 2-2-2z" fill="#fe9f11"/>
<path d="M537.6 347.3l2 2-2-2z" fill="#fbead6"/>
<path d="M555.8 347.3l2 2-2-2z" fill="#fbc477"/>
<path d="M570 347.3l2 2-2-2z" fill="#faca88"/>
<path d="M588.3 347.3l2 2-2-2z" fill="#d4d456"/>
<path d="M458.4 349.3l2 2-2-2z" fill="#32327b"/>
<path d="M464.5 349.3l2 2-2-2z" fill="#e5e59d"/>
<path d="M480.7 349.3l2 2-2-2z" fill="#fef8f1"/>
<path d="M482.7 349.3l2 2-2-2z" fill="#fe9f11"/>
<path d="M535.5 349.3l2 2-2-2z" fill="#fbead6"/>
<path d="M555.8 349.3l2 2-2-2z" fill="#fea522"/>
<path d="M570 349.3l2 2-2-2z" fill="#fcf1e4"/>
<path d="M592.4 349.3l2 2-2-2z" fill="#808067"/>
<path d="M458.4 351.3l2 2-2-2z" fill="#0e0e6e"/>
<path d="M460.4 351.3l2 2-2-2z" fill="#a4a43d"/>
<path d="M464.5 351.3l2 2-2-2z" fill="#d9d868"/>
<path d="M482.7 351.3l2 2-2-2z" fill="#f8dcbb"/>
<path d="M553.8 351.3l2 2-2-2z" fill="#f9d6aa"/>
<path d="M568 351.3l2 2-2-2z" fill="#faca88"/>
<path d="M586.3 351.3l2 2-2-2z" fill="#f2f1d2"/>
<path d="M592.4 351.3l2 2-2-2z" fill="#58587b"/>
<path d="M460.4 353.4l2 2-2-2z" fill="#8d8d5b"/>
<path d="M484.8 353.4l2 2-2-2z" fill="#f9d6aa"/>
<path d="M525.4 353.4l2 2-2-2z" fill="#fdab33"/>
<path d="M527.4 353.4l2 2-2-2z" fill="#fff"/>
<path d="M530.8 354l1.3.7-1-.7z" fill="#fcb144"/>
<path d="M551.8 353.4l-2 4 2-4z" fill="#fef8f1"/>
<path d="M553.8 353.4l2 2-2-2z" fill="#fe9f11"/>
<path d="M566 353.4l-2 4 2-4z" fill="#fdab33"/>
<path d="M586.3 353.4l2 2-2-2z" fill="#e5e59d"/>
<path d="M592.4 353.4l2 2-2-2z" fill="#3a3a7c"/>
<path d="M460.4 355.4l2 2-2-2z" fill="#667"/>
<path d="M466.5 355.4l2 2-2-2z" fill="#f2f1d2"/>
<path d="M486.8 355.4l2 2-2-2z" fill="#f9d6aa"/>
<path d="M525.4 355.4l2 2-2-2z" fill="#fe9f11"/>
<path d="M527.4 355.4l2 2-2-2z" fill="#faca88"/>
<path d="M529.4 355.4l2 2-2-2z" fill="#fea522"/>
<path d="M531.5 355.4l2 2-2-2z" fill="#fcf1e4"/>
<path d="M551.8 355.4l2 2-2-2z" fill="#fdab33"/>
<path d="M566 355.4l2 2-2-2z" fill="#fef8f1"/>
<path d="M586.3 355.4l2 2-2-2z" fill="#d9d868"/>
<path d="M590.3 355.4l2 2-2-2z" fill="#a4a43d"/>
<path d="M592.4 355.4l2 2-2-2z" fill="#0e0e6e"/>
<path d="M460.4 357.4l2 2-2-2z" fill="#3a3a7c"/>
<path d="M466.5 357.4l2 2-2-2z" fill="#e5e59d"/>
<path d="M488.8 357.4l4 4-4-4z" fill="#fae3c9"/>
<path d="M491 357.4l2 2-2-2z" fill="#fe9f11"/>
<path d="M529.4 357.4l2 2-2-2z" fill="#f8dcbb"/>
<path d="M547.7 357.4l2 2-2-2z" fill="#fcf1e4"/>
<path d="M549.7 357.4l2 2-2-2z" fill="#fdab33"/>
<path d="M562 357.4l2 2-2-2z" fill="#fcb144"/>
<path d="M564 357.4l2 2-2-2z" fill="#fef8f1"/>
<path d="M584.3 357.4l2 2-2-2z" fill="#fbfaf2"/>
<path d="M590.3 357.4l2 2-2-2z" fill="#8d8d5b"/>
<path d="M460.4 359.5l2 2-2-2z" fill="#0e0e6e"/>
<path d="M462.4 359.5l2 2-2-2z" fill="#a4a43d"/>
<path d="M466.5 359.5l2 2-2-2z" fill="#d4d456"/>
<path d="M527.4 359.5l2 2-2-2z" fill="#f9d6aa"/>
<path d="M545.7 359.5l2 2-2-2z" fill="#f9d099"/>
<path d="M547.7 359.5l2 2-2-2z" fill="#fe9f11"/>
<path d="M560 359.5l2 2-2-2z" fill="#faca88"/>
<path d="M584.3 359.5l2 2-2-2z" fill="#eeedc1"/>
<path d="M590.3 359.5l2 2-2-2z" fill="#58587b"/>
<path d="M462.4 361.5l2 2-2-2z" fill="#737370"/>
<path d="M468.5 361.5l2 2-2-2z" fill="#f6f6e4"/>
<path d="M491 361.5l2 2-2-2z" fill="#fbbe66"/>
<path d="M523.3 361.5l2 2-2-2z" fill="#fcb144"/>
<path d="M526 363l.7 1.2-.7-1.3z" fill="#f8dcbb"/>
<path d="M541.6 361.5l2 2-2-2z" fill="#fbbe66"/>
<path d="M543.6 361.5l2 2-2-2z" fill="#fe9f11"/>
<path d="M555.8 361.5l2 2-2-2z" fill="#fbc477"/>
<path d="M558 361.5l2 2-2-2z" fill="#fcf1e4"/>
<path d="M584.3 361.5l2 2-2-2z" fill="#d3d079"/>
<path d="M588.3 361.5l2 2-2-2z" fill="#a4a43d"/>
<path d="M590.3 361.5l2 2-2-2z" fill="#262678"/>
<path d="M462.4 363.5l2 2-2-2z" fill="#49497d"/>
<path d="M468.5 363.5l2 2-2-2z" fill="#e0dea1"/>
<path d="M488.8 363.5l2 2-2-2z" fill="#fae3c9"/>
<path d="M517.3 363.5l2 2-2-2z" fill="#fdab33"/>
<path d="M519.3 363.5l2 2-2-2z" fill="#fbc477"/>
<path d="M521.3 363.5l2 2-2-2z" fill="#fbead6"/>
<path d="M527.4 363.5l2 2-2-2z" fill="#fcb144"/>
<path d="M553.8 363.5l2 2-2-2z" fill="#f9d6aa"/>
<path d="M588.3 363.5l2 2-2-2z" fill="#99994e"/>
<path d="M462.4 365.6l2 2-2-2z" fill="#0e0e6e"/>
<path d="M464.5 365.6l2 2-2-2z" fill="#a4a43d"/>
<path d="M468.5 365.6l2 2-2-2z" fill="#d4d456"/>
<path d="M486.8 365.6l2 2-2-2z" fill="#f9d099"/>
<path d="M488.8 365.6l2 2-2-2m10.2 0l2 2-2-2z" fill="#fe9f11"/>
<path d="M501 365.6l2 2-2-2z" fill="#f9d6aa"/>
<path d="M503 365.6l2 2-2-2z" fill="#f9d099"/>
<path d="M511.2 365.6l2 2-2-2z" fill="#f9d6aa"/>
<path d="M513.2 365.6l2 2-2-2z" fill="#fae3c9"/>
<path d="M515.2 365.6l2 2-2-2z" fill="#fef8f1"/>
<path d="M531.5 365.6l2 2-2-2z" fill="#fbead6"/>
<path d="M533.5 365.6l2 2-2-2z" fill="#fae3c9"/>
<path d="M535.5 365.6l2 2-2-2z" fill="#faca88"/>
<path d="M537.6 365.6l2 2-2-2z" fill="#fbc477"/>
<path d="M539.6 365.6l2 2-2-2z" fill="#fdab33"/>
<path d="M549.7 365.6l2 2-2-2z" fill="#fe9f11"/>
<path d="M551.8 365.6l2 2-2-2z" fill="#f9d6aa"/>
<path d="M582.2 365.6l2 2-2-2z" fill="#e5e3af"/>
<path d="M588.3 365.6l2 2-2-2z" fill="#667"/>
<path d="M464.5 367.6l2 2-2-2z" fill="#737370"/>
<path d="M470.6 367.6l2 2-2-2z" fill="#f2f1d7"/>
<path d="M484.8 367.6l2 2-2-2z" fill="#fea522"/>
<path d="M495 367.6l2 2-2-2z" fill="#fe9f11"/>
<path d="M497 367.6l2 2-2-2z" fill="#fbbe66"/>
<path d="M499 367.6l2 2-2-2z" fill="#fcf1e4"/>
<path d="M547.7 367.6l2 2-2-2z" fill="#fea522"/>
<path d="M549.7 367.6l2 2-2-2z" fill="#fbead6"/>
<path d="M582.2 367.6l2 2-2-2z" fill="#dddc7a"/>
<path d="M586.3 367.6l2 2-2-2z" fill="#a4a43d"/>
<path d="M588.3 367.6l2 2-2-2z" fill="#262678"/>
<path d="M464.5 369.6l2 2-2-2z" fill="#49497d"/>
<path d="M467.2 371l.6 1.3-.6-1.3z" fill="#a4a43d"/>
<path d="M470.6 369.6l2 2-2-2z" fill="#d3d079"/>
<path d="M486.8 369.6l2 2-2-2z" fill="#f9d099"/>
<path d="M488.8 369.6l2 2-2-2z" fill="#fcb144"/>
<path d="M491 369.6l2 2-2-2z" fill="#faca88"/>
<path d="M493 369.6l2 2-2-2z" fill="#f8dcbb"/>
<path d="M495 369.6l2 2-2-2z" fill="#fef8f1"/>
<path d="M539.6 369.6l2 2-2-2z" fill="#f8dcbb"/>
<path d="M547.7 369.6l2 2-2-2z" fill="#fcf1e4"/>
<path d="M580.2 369.6l2 2-2-2z" fill="#f6f6e4"/>
<path d="M586.3 369.6l2 2-2-2z" fill="#8d8d5b"/>
<path d="M472.6 371.6l2 2-2-2z" fill="#fbfaf2"/>
<path d="M539.6 371.6l2 2-2-2z" fill="#fbbe66"/>
<path d="M545.7 371.6l2 2-2-2z" fill="#faca88"/>
<path d="M580.2 371.6l2 2-2-2z" fill="#e1e18c"/>
<path d="M586.3 371.6l2 2-2-2z" fill="#49497d"/>
<path d="M466.5 373.7l2 2-2-2z" fill="#58587b"/>
<path d="M472.6 373.7l2 2-2-2z" fill="#e5e59d"/>
<path d="M539.6 373.7l2 2-2-2z" fill="#fe9f11"/>
<path d="M543.6 373.7l2 2-2-2z" fill="#fdab33"/>
<path d="M578.2 373.7l2 2-2-2z" fill="#fbfaf2"/>
<path d="M584.3 373.7l2 2-2-2z" fill="#a4a43d"/>
<path d="M586.3 373.7l2 2-2-2z" fill="#0e0e6e"/>
<path d="M466.5 375.7l2 2-2-2z" fill="#1b1b74"/>
<path d="M468.5 375.7l2 2-2-2z" fill="#a4a43d"/>
<path d="M472.6 375.7l2 2-2-2z" fill="#d0d045"/>
<path d="M537.6 375.7l2 2-2-2z" fill="#fbead6"/>
<path d="M541.6 375.7l2 2-2-2z" fill="#fe9f11"/>
<path d="M543.6 375.7l2 2-2-2z" fill="#fbead6"/>
<path d="M578.2 375.7l2 2-2-2z" fill="#e5e59d"/>
<path d="M584.3 375.7l2 2-2-2z" fill="#667"/>
<path d="M468.5 377.7l2 2-2-2z" fill="#6e6c70"/>
<path d="M474.6 377.7l2 2-2-2z" fill="#e5e3af"/>
<path d="M538.2 379l.7 1.4-1-1.3z" fill="#faca88"/>
<path d="M541.6 377.7l2 2-2-2z" fill="#fae3c9"/>
<path d="M576 377.7l2.2 2-2-2z" fill="#fbfaf2"/>
<path d="M582.2 377.7l2 2-2-2z" fill="#a4a43d"/>
<path d="M584.3 377.7l2 2-2-2m-115.8 2l2 2-2-2z" fill="#1b1b74"/>
<path d="M470.6 379.8l2 2-2-2z" fill="#a4a43d"/>
<path d="M474.6 379.8l2 2-2-2z" fill="#d0d045"/>
<path d="M476.6 379.8l2 2-2-2z" fill="#fbfaf2"/>
<path d="M539.6 379.8l2 2-2-2z" fill="#f9d6aa"/>
<path d="M576 379.8l2.2 2-2-2z" fill="#e5e59d"/>
<path d="M582.2 379.8l2 2-2-2m-111.6 2l2 2-2-2z" fill="#6e6c70"/>
<path d="M476.6 381.8l2 2-2-2z" fill="#8cbf84"/>
<path d="M477.5 381.8c7 14.8 32 49.8 51 49.2 18.6-.7 39.5-35 47.6-49.2h-98z" fill="#0cf"/>
<path d="M580.2 381.8l2 2-2-2z" fill="#a4a43d"/>
<path d="M582.2 381.8l2 2-2-2m-111.6 2l2 2-2-2z" fill="#1b1b74"/>
<path d="M472.6 383.8l2 2-2-2z" fill="#a4a43d"/>
<path d="M476.6 383.8l2 2-2-2z" fill="#adb333"/>
<path d="M478.7 383.8l2 2-2-2z" fill="#1ac5b5"/>
<path d="M574 383.8l2 2-2-2z" fill="#68b070"/>
<path d="M580.2 383.8l2 2-2-2z" fill="#667"/>
<path d="M472.6 386l2 2-2-2z" fill="#58587b"/>
<path d="M478.7 386l2 2-2-2z" fill="#7fb15c"/>
<path d="M572 386l2 2-2-2z" fill="#27c2aa"/>
<path d="M578.2 386l-2 4 2-4z" fill="#a4a43d"/>
<path d="M580.2 386l2 2-2-2m-107.6 2l2 2-2-2z" fill="#0e0e6e"/>
<path d="M474.6 388l4 4-4-4z" fill="#a4a43d"/>
<path d="M480.7 388l2 2-2-2z" fill="#34be9e"/>
<path d="M572 388l2 2-2-2z" fill="#96b247"/>
<path d="M578.2 388l2 2-2-2z" fill="#53527c"/>
<path d="M474.6 390l2 2-2-2z" fill="#3a3a7c"/>
<path d="M480.7 390l2 2-2-2z" fill="#a2b23d"/>
<path d="M482.7 390l2 2-2-2z" fill="#0dc9c1"/>
<path d="M570 390l2 2-2-2z" fill="#5bb47c"/>
<path d="M576 390l2.2 2-2-2z" fill="#8d8d5b"/>
<path d="M476.6 392l2 2-2-2z" fill="#737370"/>
<path d="M482.7 392l2 2-2-2z" fill="#74b166"/>
<path d="M568 392l2 2-2-2z" fill="#27c2aa"/>
<path d="M574 392l-2 4 2-4z" fill="#a4a43d"/>
<path d="M576 392l2.2 2-2-2z" fill="#262678"/>
<path d="M476.6 394l2 2-2-2z" fill="#0e0e6e"/>
<path d="M478.7 394l4 4-4-4z" fill="#a4a43d"/>
<path d="M484.8 394l2 2-2-2z" fill="#42bb92"/>
<path d="M566 394l2 2-2-2z" fill="#0dc9c1"/>
<path d="M568 394l2 2-2-2z" fill="#96b247"/>
<path d="M574 394l2 2-2-2z" fill="#58587b"/>
<path d="M478.7 396l2 2-2-2z" fill="#3a3a7c"/>
<path d="M484.8 396l2 2-2-2z" fill="#adb333"/>
<path d="M486.8 396l2 2-2-2z" fill="#27c2aa"/>
<path d="M566 396l2 2-2-2z" fill="#74b166"/>
<path d="M572 396l2 2-2-2z" fill="#8d8d5b"/>
<path d="M480.7 398l2 2-2-2z" fill="#6e6c70"/>
<path d="M486.8 398l2 2-2-2z" fill="#96b247"/>
<path d="M488.8 398l2 2-2-2z" fill="#0dc9c1"/>
<path d="M564 398l2 2-2-2z" fill="#42bb92"/>
<path d="M570 398l-4 6 4-6z" fill="#a4a43d"/>
<path d="M572 398l2 2-2-2z" fill="#1b1b74"/>
<path d="M480.7 400l2 2-2-2z" fill="#0e0e6e"/>
<path d="M482.7 400l2 2-2-2z" fill="#8d8d5b"/>
<path d="M488.8 400l2 2-2-2z" fill="#7fb15c"/>
<path d="M562 400l2 2-2-2z" fill="#34be9e"/>
<path d="M570 400l2 2-2-2z" fill="#3a3a7c"/>
<path d="M482.7 402l2 2-2-2z" fill="#1b1b74"/>
<path d="M484.8 402l22.3 22.4-22-22.4z" fill="#a4a43d"/>
<path d="M491 402l2 2-2-2z" fill="#74b166"/>
<path d="M560 402l2 2-2-2z" fill="#27c2aa"/>
<path d="M562 402l2 2-2-2z" fill="#adb333"/>
<path d="M568 402l2 2-2-2z" fill="#667"/>
<path d="M484.8 404l2 2.2-2-2z" fill="#32327b"/>
<path d="M493 404l2 2.2-2-2z" fill="#42bb92"/>
<path d="M558 404l-8.3 10.3L558 404z" fill="#0dc9c1"/>
<path d="M560 404l2 2.2-2-2z" fill="#adb333"/>
<path d="M566 404l2 2.2-2-2z" fill="#737370"/>
<path d="M486.8 406.2l2 2-2-2z" fill="#49497d"/>
<path d="M495 406.2l2 2-2-2z" fill="#42bb92"/>
<path d="M558 406.2l2 2-2-2z" fill="#96b247"/>
<path d="M564 406.2l-2 4 2-4z" fill="#8d8d5b"/>
<path d="M566 406.2l2 2-2-2z" fill="#0e0e6e"/>
<path d="M488.8 408.2l2 2-2-2z" fill="#53527c"/>
<path d="M497 408.2l2 2-2-2z" fill="#42bb92"/>
<path d="M555.8 408.2l2 2-2-2z" fill="#96b247"/>
<path d="M564 408.2l2 2-2-2z" fill="#0e0e6e"/>
<path d="M491 410.2l2 2-2-2z" fill="#6e6c70"/>
<path d="M499 410.2l2 2-2-2z" fill="#42bb92"/>
<path d="M553.8 410.2l2 2-2-2z" fill="#96b247"/>
<path d="M560 410.2l-4.2 6 4-6z" fill="#a4a43d"/>
<path d="M562 410.2l2 2-2-2z" fill="#262678"/>
<path d="M493 412.2l2 2-2-2z" fill="#6e6c70"/>
<path d="M501 412.2l2 2-2-2z" fill="#42bb92"/>
<path d="M551.8 412.2l2 2-2-2z" fill="#96b247"/>
<path d="M560 412.2l2 2-2-2z" fill="#262678"/>
<path d="M495 414.3l2 2-2-2z" fill="#6e6c70"/>
<path d="M503 414.3l2 2-2-2z" fill="#68b070"/>
<path d="M547.7 414.3l2 2-2-2z" fill="#27c2aa"/>
<path d="M549.7 414.3l2 2-2-2z" fill="#adb333"/>
<path d="M558 414.3l2 2-2-2z" fill="#262678"/>
<path d="M497 416.3l2 2-2-2z" fill="#667"/>
<path d="M505 416.3l2 2-2-2z" fill="#74b166"/>
<path d="M545.7 416.3l2 2-2-2z" fill="#34be9e"/>
<path d="M547.7 416.3l2 2-2-2z" fill="#adb333"/>
<path d="M553.8 416.3l-2 4 2-4z" fill="#8d8d5b"/>
<path d="M555.8 416.3l2 2-2-2z" fill="#262678"/>
<path d="M499 418.3l2 2-2-2z" fill="#49497d"/>
<path d="M507 418.3l2 2-2-2z" fill="#96b247"/>
<path d="M509 418.3l2.2 2-2-2z" fill="#0dc9c1"/>
<path d="M543.6 418.3l2 2-2-2z" fill="#42bb92"/>
<path d="M553.8 418.3l2 2-2-2z" fill="#0e0e6e"/>
<path d="M501 420.4l2 2-2-2z" fill="#49497d"/>
<path d="M509 420.4l2.2 2-2-2z" fill="#a2b23d"/>
<path d="M511.2 420.4l2 2-2-2z" fill="#27c2aa"/>
<path d="M541.6 420.4l2 2-2-2z" fill="#74b166"/>
<path d="M547.7 420.4l-6 8 6-8z" fill="#a4a43d"/>
<path d="M549.7 420.4l2 2-2-2z" fill="#808067"/>
<path d="M551.8 420.4l2 2-2-2z" fill="#0e0e6e"/>
<path d="M503 422.4l2 2-2-2z" fill="#262678"/>
<path d="M511.2 422.4l2 2-2-2z" fill="#adb333"/>
<path d="M513.2 422.4l2 2-2-2z" fill="#42bb92"/>
<path d="M537.6 422.4l2 2-2-2z" fill="#0dc9c1"/>
<path d="M539.6 422.4l2 2-2-2z" fill="#96b247"/>
<path d="M547.7 422.4l2 2-2-2z" fill="#6e6c70"/>
<path d="M505 424.4l2 2-2-2z" fill="#1b1b74"/>
<path d="M507 424.4l2 2-2-2z" fill="#8d8d5b"/>
<path d="M515.2 424.4l2 2-2-2z" fill="#74b166"/>
<path d="M517.3 424.4l2 2-2-2z" fill="#0dc9c1"/>
<path d="M535.5 424.4l2 2-2-2z" fill="#34be9e"/>
<path d="M537.6 424.4l2 2-2-2z" fill="#adb333"/>
<path d="M545.7 424.4l2 2-2-2z" fill="#49497d"/>
<path d="M507 426.5l2 2-2-2z" fill="#0e0e6e"/>
<path d="M509 426.5l2.2 2-2-2z" fill="#6e6c70"/>
<path d="M511.2 426.5l4 4-4-4z" fill="#a4a43d"/>
<path d="M517.3 426.5l2 2-2-2z" fill="#96b247"/>
<path d="M519.3 426.5l2 2-2-2z" fill="#27c2aa"/>
<path d="M533.5 426.5l2 2-2-2z" fill="#68b070"/>
<path d="M543.6 426.5l2 2-2-2z" fill="#32327b"/>
<path d="M511.2 428.5l2 2-2-2z" fill="#49497d"/>
<path d="M521.3 428.5l2 2-2-2z" fill="#5bb47c"/>
<path d="M529.4 428.5l2 2-2-2z" fill="#27c2aa"/>
<path d="M531.5 428.5l2 2-2-2z" fill="#96b247"/>
<path d="M537.6 428.5l-2 4 2-4z" fill="#a4a43d"/>
<path d="M539.6 428.5l2 2-2-2z" fill="#808067"/>
<path d="M541.6 428.5l2 2-2-2z" fill="#0e0e6e"/>
<path d="M513.2 430.5l2 2-2-2z" fill="#262678"/>
<path d="M515.2 430.5l2 2-2-2z" fill="#8d8d5b"/>
<path d="M523.3 430.5l2 2-2-2z" fill="#8bb252"/>
<path d="M525.4 430.5l2 2-2-2z" fill="#1ac5b5"/>
<path d="M527.4 430.5l2 2-2-2z" fill="#5bb47c"/>
<path d="M537.6 430.5l2 2-2-2z" fill="#58587b"/>
<path d="M515.2 432.6l2 2-2-2z" fill="#0e0e6e"/>
<path d="M517.3 432.6l2 2-2-2z" fill="#667"/>
<path d="M519.3 432.6l2 2-2-2z" fill="#a4a43d"/>
<path d="M533.5 432.6l2 2-2-2z" fill="#99994e"/>
<path d="M535.5 432.6l2 2-2-2m-16.2 2l2 2-2-2z" fill="#32327b"/>
<path d="M521.3 434.6l2 2-2-2z" fill="#99994e"/>
<path d="M529.4 434.6l2 2-2-2z" fill="#a4a43d"/>
<path d="M531.5 434.6l2 2-2-2z" fill="#667"/>
<path d="M533.5 434.6l2 2-2-2m-12.2 2l2 2-2-2z" fill="#0e0e6e"/>
<path d="M523.3 436.6l2 2-2-2z" fill="#667"/>
<path d="M525.4 436.6l2 2-2-2z" fill="#a4a43d"/>
<path d="M527.4 436.6l2 2-2-2z" fill="#99994e"/>
<path d="M529.4 436.6l2 2-2-2z" fill="#32327b"/>
<path d="M525.4 438.6l2 2-2-2z" fill="#262678"/>
<path d="M527.4 438.6l2 2-2-2z" fill="#0e0e6e"/>
<path d="M529.4 302.6c3.2 7.4 13.2 15.5 16 19.5-3.5 4-4.2 4-3.8 11 6-6 6.2-7 10.2-6 8.6 9 1.5 27-5.6 31-7 5-5.8 0-16.5 6 5 4 10.6 0 15.2 1 2 3-2 9 0 14 4 0 3-8 4-11 3-11 21-18 22-28 3-1.4 7-.2 12 2.4-2-9.5-10-9.4-12-12.3-5-8-9-16-20-18-8-2-8 0-13-3-3-3-13-7-11-4z" fill="#f90"/>
<path d="M552 311a1.6 1.6 0 1 1-3.3 0 1.6 1.6 0 0 1 3.3 0z" fill-rule="evenodd" fill="#fff"/>
<path d="M504.3 334c5-6.3 7.6-19 9.8-23.3 6 1.2 6 2 12-1.8-8-3-9-3-10-7 4-12 23-14 30-10s3 5 13 12c2-6-5-9-6-14 2-4 8-3 12-7-2-4-9 1-12 1-11 2-26-10-35-6-3.6-3-4-7-4-12-7.4 6-4 13-5.5 16-4.5 7-10 15-7 25 2 8 3.6 6 3 12-.7 4-.4 14.3 2 11.2z" fill="#f90"/>
<path d="M501.2 310c.8-.4 1.8 0 2.2.7a1.6 1.6 0 1 1-2.2-.7z" fill-rule="evenodd" fill="#fff"/>
<path d="M545.4 338.2c-8-1-20 3.3-25 3.7-1.6-6-.8-6-7.4-9 2.3 8 2.8 9 0 11-11.8 3-24-13-23.8-21 0-9 3.2-5 4-17-6 2-5 9-8.3 13-4 0-7-6-12-7-2 3 5 7 7 10 8 8 5 27 13 33-1 4-4 6-8 9 9 3 13-4 16-4 9 0 18 0 25-8 5-5.6 3-6 8-9 3.3-1 12.2-7 8.2-7.6z" fill="#f90"/>
<path d="M526.6 353.3a1.6 1.6 0 1 1 1.7-2.8 1.6 1.6 0 0 1-1.7 2.8z" fill-rule="evenodd" fill="#fff"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 40 KiB

View File

@@ -0,0 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="480" width="640" viewBox="0 0 640 480">
<path fill="#e41e20" d="M0 0h640v480H0z"/>
<path id="a" d="M272.1 93.32c-4.68-.08-12.42 1.48-12.25 5.07-13-2.3-14.35 3.1-13.6 7.9 1.25-1.9 2.75-3 3.9-3.1 1.74-.3 3.56.2 5.4 1.4 1.86 1.1 3.9 2.9 4.8 4.1-4.58 1.1-8.12.4-11.72-.3-1.77-.3-4.25-1.3-5.73-2.4-1.48-1.04-1.94-2-4.26-4.38-2.73-2.8-5.65-2.03-4.74 2.33 2.1 4.03 5.6 5.83 10.02 6.56 2.13.35 5.3 1.1 8.88 1.1 3.6 0 7.62-.5 9.8-.05-1.3.84-2.8 2.27-5.75 2.84-3 .56-7.57-1.8-10.35-2.44.35 2.32 3.3 4.5 9.12 5.65 9.55 2.08 17.5 3.66 22.74 6.5 5.25 2.86 8.56 6.4 10.92 9.2 4.7 5.57 4.95 9.84 5.25 10.78.97 8.9-2.13 13.9-7.9 15.42-2.87.76-7.98-.68-9.86-2.88-1.88-2.2-3.7-6-3.18-11.9.5-2.34 3.1-8.4.9-9.64-10.5-5.76-23.1-11.6-32.3-15.05-2.5-.95-4.6 2.45-5.4 3.78-15.6-1.9-29.6-12.42-35.9-23.63-4.3-7.65-11.4 0-10.2 7.22 1.9 8.04 8 13.86 15.4 18 7.5 4.15 17 8.24 26.5 8.03 5.15.97 5.1 7.63-1.08 8.9-12.1.05-21.7-.25-30.8-9-6.9-6.3-10.8 1.2-8.8 5.44 3.37 13.1 22.1 16.8 41 12.56 7.33-1.26 2.94 6.6.87 6.7-7.9 5.65-22.04 11.2-34.5-.08-5.7-4.4-9.58-.7-7.46 5.6 5.53 16.43 26.7 13 41.22 4.9 3.73-2.1 7.12 2.74 2.57 6.43-18.06 12.64-27.1 12.78-35.24 7.94-10.2-4.04-11.1 7.3-5.05 11 6.75 4.13 23.9 1.03 36.46-6.87 5.4-4 5.65 2.27 2.24 4.75-14.94 12.9-20.8 16.3-36.38 14.2-7.7-.6-7.6 8.9-1.54 12.63 8.3 5.07 24.46-3.37 37.02-13.78 5.28-2.86 6.15 1.8 3.54 7.3-7.7 9.64-14.9 15.34-21.8 18-6.97 2.63-13.6 2.2-18.36.6-5.77-2-6.5 4-3.3 9.44 1.9 3.3 9.86 4.33 18.44 1.3 8.54-3.06 17.8-10.2 24.1-18.55 5.5-4.8 4.8 1.66 2.3 6.2-12.68 20.04-24.26 27.47-39.5 26.2-6.8-1.14-8.3 4.1-4 9 7.6 6.26 17.03 6.06 25.3-.14 7.37-7.1 21.45-22.4 28.84-30.56 5.2-4.17 6.87-.08 5.34 8.35-1.4 4.8-4.87 9.9-14.34 13.6-6.42 3.7-1.6 8.77 3.3 8.87 2.66.05 8.1-3.07 12.23-7.74 5.43-6.12 5.75-10.24 8.8-19.8 2.8-4.67 7.9-2.5 7.9 2.4-2.46 9.56-4.55 11.3-9.47 15.2-4.7 4.4 3.3 5.9 5.98 4.1 7.8-5.27 10.66-12.06 13.26-18.23 1.87-4.43 7.32-2.3 4.8 5-6.04 17.4-15.96 24.25-33.3 27.77-1.77.3-2.84 1.37-2.23 3.4 2.33 2.4 4.66 4.6 7 7-10.74 3.15-19.45 4.9-30.2 8.04-5.26-3.45-9.5-6.4-14.78-9.83-1.4-3.26-2.07-8.2-9.8-4.7-5.3-2.46-7.7-1.56-10.66.9 4.24.13 6.08 1.26 7.73 3.2 2.18 5.7 7.16 6.23 12.26 4.6 3.3 2.8 5.06 4.94 8.4 7.75-6.2-.23-10.5-.34-16.7-.5-5.9-6.35-10.6-6-14.8-1.04-3.24.5-4.6.58-6.8 4.5 3.46-1.44 5.64-1.87 7.14-.3 6.3 3.6 10.37 2.8 13.5 0 6.03.35 11.5.66 17.53 1.06-2.23 1.9-5.3 2.9-7.5 4.8-9.1-2.6-13.83.9-15.43 8.3-1.2 3-1.8 6.1-1.25 9.3.9-2.9 2.3-5.43 4.9-7 8.1 2.05 11.14-1.25 11.58-6.1 3.9-3.2 9.8-3.9 13.68-7.1 4.6 1.45 6.8 2.36 11.4 3.8 1.63 4.96 5.32 6.9 11.3 5.65 7.14.2 5.9 3.12 6.46 5.5 1.9-3.4 1.85-6.67-2.54-9.6-1.6-4.38-5.15-6.36-9.8-3.85-4.36-1.22-5.5-3-9.86-4.24 11.03-3.5 18.84-4.3 29.84-7.8 2.75 2.6 4.94 4.47 7.7 6.8 1.47.86 2.87 1.1 3.73 0 6.9-10 9.98-18.8 16.4-25.36 2.44-2.74 5.5-6.4 8.96-7.3 1.73-.45 3.83-.18 5.17 1.3 1.35 1.45 2.4 4.15 1.96 8.2-.63 5.76-2.03 7.6-3.65 11.05-1.6 3.47-3.6 5.6-5.62 8.26-4.05 5.3-9.43 8.37-12.6 10.45-6.37 4.17-9.06 2.35-14 2.1-6.36.7-8.05 3.8-2.84 8.1 4.9 2.5 9.3 2.83 12.8 2.2 3.1-.6 6.67-4.53 9.2-6.65 2.9-3.3 7.6.6 4.4 4.48-5.9 7-11.8 11.63-19.05 11.53-7.65 1.04-6.2 5.34-1.15 7.4 9.1 3.8 17.4-3.26 21.57-7.9 3.22-3.52 5.5-3.66 4.94 1.8-3.2 9.9-7.6 13.7-14.73 14.2-5.8-.5-5.86 3.96-1.62 7 9.67 6.67 16.66-4.7 19.93-11.6 2.33-6.2 5.9-3.25 6.27 1.87.06 6.85-3.03 12.4-11.3 19.4 6.33 10.1 13.7 20.36 20.04 30.48l19.2-213.9L320 139c-2-1.85-8.76-9.82-10.52-10.92-.65-.7-1.04-1.18-.1-1.53.92-.35 3.07-.73 4.5-1-4.07-4.07-7.55-5.38-15.26-7.6 1.88-.8 3.7-.35 9.24-.6-2.2-3.13-7.1-7.9-13.44-10.2 4.18-3 5-3.2 9.15-6.67-7.2-.5-13.33-1.88-19.5-3.75-3.9-1.83-9.33-3.38-11.97-3.42zm.68 8.37c3.8 0 6.15 1.3 6.15 2.8 0 1.6-2.35 2.9-6.15 2.9-3.78 0-6.18-1.4-6.18-3s2.4-2.8 6.18-2.8z"/>
<use height="100%" width="100%" xlink:href="#a" transform="matrix(-1 0 0 1 640 0)"/>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@@ -0,0 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<path d="M0 0h640v160H0z" fill="red"/>
<path d="M0 160h640v160H0z" fill="#00f"/>
<path d="M0 320h640v160H0z" fill="orange"/>
</svg>

After

Width:  |  Height:  |  Size: 226 B

View File

@@ -0,0 +1,13 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<g fill-rule="evenodd" stroke-width="1pt">
<path fill="red" d="M0 0h640v243.574H0z"/>
<path d="M0 236.428h640v243.574H0z"/>
</g>
<path d="M228.67 148.173c165.22 43.304 58.99 255.64-71.216 167.26l-8.817 13.545c76.628 54.658 152.57 10.66 173.9-46.358 22.297-58.788-7.52-141.48-92.51-150.03l-1.356 15.576z" fill-rule="evenodd" fill="#ffec00"/>
<path fill-rule="evenodd" fill="#ffec00" d="M169.955 330.827l21.73 10.125-10.142 21.696-21.73-10.125zm148.985-99.48h23.98v23.942h-23.98zm-11.684-38.892l22.342-8.694 8.707 22.31-22.342 8.693zm-25.894-29.188l17.035-16.85 16.877 17.01-17.035 16.85zm-26.284-39.787l22.434 8.455-8.468 22.4-22.434-8.455zM316.1 270.01l22.265 8.888-8.902 22.23-22.265-8.887zm-69.876 70.05l22.06-9.388 9.402 22.025-22.058 9.39zm-39.504 2.77h23.98v23.94h-23.98zm41.29-115.937l-20.35-15.006-20.245 14.47 8.034-22.92-20.348-14.956 24.447-.17 8.567-22.55 7.782 22.702 24.7-.242-19.586 15.232 6.996 23.44z"/>
<path d="M336.03 346.376c-1.21.418-6.23 12.39-9.675 18.248 1.797.51 2.56.596 3.625 1.025 13.655 4.8 20.384 9.18 26.186 17.504 2.888 2.79 7.032 2.93 10.198.697 0 0 2.795-1.114 6.43-5.02 2.968-4.52 2.194-8.11-1.384-11.16-10.944-7.952-22.9-13.902-35.38-21.295z" fill-rule="evenodd" fill="#fe0"/>
<path d="M365.247 372.842c0 2.388-1.94 4.324-4.33 4.324s-4.333-1.936-4.333-4.324 1.94-4.325 4.332-4.325 4.33 1.936 4.33 4.325zM343.87 359.17c0 2.388-1.94 4.324-4.33 4.324s-4.333-1.936-4.333-4.324 1.94-4.325 4.332-4.325 4.33 1.936 4.33 4.325zm10.898 6.975c0 2.39-1.94 4.325-4.33 4.325s-4.333-1.936-4.333-4.325 1.94-4.324 4.332-4.324 4.33 1.937 4.33 4.325z" fill-rule="evenodd"/>
<path d="M324.47 363.667c-42.57-24.273-87.31-50.52-129.88-74.796-18.75-11.635-19.683-33.384-7.17-49.875 1.302-2.337 2.836-1.758 3.514-.524 1.463 8.03 5.97 16.325 11.37 21.496 44.693 28.383 87.732 55.804 131.71 85.613-3.448 5.767-6.104 12.32-9.55 18.086z" fill-rule="evenodd" fill="#fe0"/>
<path fill-rule="evenodd" fill="#ffec00" d="M297.174 305.457l17.85 15.986-16.01 17.824-17.85-15.986z"/>
<path d="M331.54 348.82L206.58 273.3m109.53 58.093l-42.24-27.28m18.21 42.687l-42.75-24.755" stroke="#000" stroke-width="3.05" fill="none"/>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1,32 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="480" width="640" viewBox="0 0 640 480">
<path fill="#74acdf" d="M0 0h640v480H0z"/>
<path fill="#fff" d="M0 160h640v160H0z"/>
<g id="c" transform="translate(-64) scale(.96)">
<path id="a" d="M396.84 251.3l28.45 62s.4 1.2 1.2.86c.8-.33.3-1.5.3-1.5l-23.7-63.97m-.7 24.1c-.4 9.4 5.4 14.6 4.7 23-.8 8.4 3.8 13.2 4.9 16.4 1 3.2-1.2 5.2-.2 5.7.9.4 3-2.2 2.4-6.8-.7-4.7-4.3-6.1-3.4-16.3.8-10.3-4.2-12.7-3-22.1" fill="#f6b40e" stroke="#85340a" stroke-width="1.11"/>
<use height="100%" width="100%" xlink:href="#a" transform="rotate(22.5 400 250)"/>
<use height="100%" width="100%" xlink:href="#a" transform="rotate(45 400 250)"/>
<use height="100%" width="100%" xlink:href="#a" transform="rotate(67.5 400 250)"/>
<path id="b" d="M404.3 274.4c.46 9.06 5.6 13.07 4.6 21.32 2.2-6.52-3.13-11.58-2.83-21.22m-7.65-23.75l19.5 42.57-16.34-43.88" fill="#85340a"/>
<use height="100%" width="100%" xlink:href="#b" transform="rotate(22.5 400 250)"/>
<use height="100%" width="100%" xlink:href="#b" transform="rotate(45 400 250)"/>
<use height="100%" width="100%" xlink:href="#b" transform="rotate(67.5 400 250)"/>
</g>
<use height="100%" width="100%" xlink:href="#c" transform="rotate(90 320 240)"/>
<use height="100%" width="100%" xlink:href="#c" transform="rotate(180 320 240)"/>
<use height="100%" width="100%" xlink:href="#c" transform="rotate(-90 320 240)"/>
<circle r="26.67" cy="240" cx="320" fill="#f6b40e" stroke="#85340a" stroke-width="1.44"/>
<path id="h" d="M329.1 234.3c-1.83 0-3.57.8-4.6 2.43 2.05 1.84 6.58 2.04 9.66-.2a7.04 7.04 0 0 0-5.07-2.23zm-.04.42c1.77-.04 3.43.78 3.66 1.6-2.05 2.24-5.33 2.05-7.38.4.9-1.43 2.34-1.98 3.72-2z" fill="#843511"/>
<use height="100%" width="100%" xlink:href="#d" transform="matrix(-1 0 0 1 640.24 0)"/>
<use height="100%" width="100%" xlink:href="#e" transform="matrix(-1 0 0 1 640.24 0)"/>
<use height="100%" width="100%" xlink:href="#f" transform="translate(18.11)"/>
<use height="100%" width="100%" xlink:href="#g" transform="matrix(-1 0 0 1 640.24 0)"/>
<path d="M315.92 243.7c-.88.15-1.5.93-1.5 1.82 0 1.02.84 1.83 1.86 1.83.6 0 1.15-.3 1.5-.78.7.53 1.7.6 2.22.6h.24c.53 0 1.5-.07 2.22-.6.35.5.9.78 1.5.78 1.02 0 1.86-.8 1.86-1.83 0-.9-.62-1.67-1.5-1.83.5.1.8.6.8 1.1 0 .7-.54 1.2-1.22 1.2a1.24 1.24 0 0 1-1.23-1.2c-.2.4-1 1.6-2.55 1.6-1.56-.1-2.35-1.3-2.55-1.7a1.24 1.24 0 0 1-1.23 1.16c-.68 0-1.23-.56-1.23-1.24 0-.54.4-1 .9-1.2zm2 5.45c-2.05 0-2.86 1.86-4.7 3.1 1.02-.42 1.83-1.23 3.27-2.05 1.4-.82 2.6.18 3.4.18.8 0 2-1 3.4-.18 1.4.82 2.24 1.63 3.3 2.04-1.88-1.23-2.7-3.1-4.77-3.1-.4 0-1.2.23-2.04.64h-.05c-.84-.4-1.65-.63-2.06-.63z" fill="#85340a"/>
<path d="M317.24 251.58c-.8.03-1.9.2-3.42.66 3.7-.82 4.5.42 6.15.42h.02c1.6 0 2.4-1.24 6.1-.42-4.1-1.23-4.9-.42-6.2-.42h-.1c-.8 0-1.4-.3-2.78-.24z" fill="#85340a"/>
<path d="M314 252.2c-.24 0-.5.02-.78.04 4.3.4 2.24 2.88 6.75 2.88h.03c4.5 0 2.47-2.47 6.78-2.88-4.5-.4-3.1 2.25-6.78 2.25h-.03c-3.46 0-2.4-2.4-5.97-2.3z" fill="#85340a"/>
<path d="M323.7 258.87a3.7 3.7 0 0 0-7.4 0 3.8 3.8 0 0 1 7.4 0z" fill="#85340a"/>
<path id="e" d="M303.42 234.26c4.72-4.1 10.67-4.72 13.95-1.64.8 1.07 1.32 2.22 1.53 3.43.4 2.33-.32 4.85-2.15 7.44.2 0 .62.2.82.4 1.63-3.1 2.2-6.3 1.67-9.4a13.26 13.26 0 0 0-.64-2.4c-4.5-3.7-10.66-4.1-15.18 2z" fill="#85340a"/>
<path id="d" d="M310.8 233.03c2.67 0 3.28.62 4.52 1.64 1.23 1.03 1.84.82 2.05 1.03.2.2 0 .82-.4.6-.42-.2-1.24-.6-2.47-1.63-1.24-1.02-2.46-1.02-3.7-1.02-3.7 0-5.74 3.07-6.15 2.87-.4-.2 2.05-3.5 6.15-3.5z" fill="#85340a"/>
<use height="100%" width="100%" xlink:href="#h" transform="translate(-18.41)"/>
<circle id="f" cy="236.3" cx="310.92" r="1.85" fill="#85340a"/>
<path id="g" d="M305.88 237.54c3.5 2.67 6.97 2.46 9.02 1.23 2.06-1.23 2.06-1.64 1.65-1.64-.4 0-.82.4-2.47 1.23-1.64.82-4.1.82-8.2-.82z" fill="#85340a"/>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <svg version="1" xmlns="http://www.w3.org/2000/svg" width="900" height="600">
<svg version="1.0" xmlns="http://www.w3.org/2000/svg" width="900" height="600"> <path d="M0 0h900v200H0z"/>
<rect width="900" height="200" fill="#000"/> <path fill="#007a3d" d="M0 200h900v200H0z"/>
<rect y="200" width="900" height="200" fill="#007a3d"/> <path fill="#fff" d="M0 400h900v200H0z"/>
<rect y="400" width="900" height="200" fill="#fff"/> <path d="M0 0l300 300L0 600z" fill="#ce1126"/>
<path d="M 0,0 L 300,300 L 0,600 z" fill="#ce1126"/> </svg>
<link xmlns="" id="lite-css-list"/></svg>

Before

Width:  |  Height:  |  Size: 371 B

After

Width:  |  Height:  |  Size: 255 B

View File

@@ -0,0 +1,31 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<defs>
<clipPath id="a">
<path fill-opacity=".7" d="M0 0h640v480H0z"/>
</clipPath>
</defs>
<g clip-path="url(#a)">
<path fill="#006" d="M-374-16H650v512H-374z"/>
<path d="M-374 240L650 496V-16L-374 240z" fill-rule="evenodd" fill="#bd1021"/>
<path d="M650 11.4v457.2L-264.3 240 650 11.4z" fill-rule="evenodd" fill="#fff"/>
<g stroke="#000">
<path stroke-linejoin="round" d="M478 297.4s-6.4-5.2 1.2-13.7c-4-3.4-.3-10-.3-10s-7-2.7 0-13.5c-6-3.5-3-11.3-3-11.3s-17-7-1-13c-14 6-26-8-26-8h-20c-4-16-29-2-10-49-5-1-11-3-16 1s-21 12-31 4 6-21 6-22 21-11 23-18c-1-6-7-10-1-21 7-11 48-21 66-25 9-4 13-12 13-12l2 7s42-11 44-17 1 5 1 5c16-2 37-16 39-9 13-3 40-14 40-14s9-1 2 9c4 6-1 12-2 12 0 0 2 6-3 10 2 5-3 10-3 10s3 6-7 10c1 6-5 7-5 7s1 6-3 9c0 4-4 6-4 6s3 1-1 4c-5 3-47 29-47 28 0 0 31 5 33 7l26 16-23 29s-26-3-27-2 5 2 7 5c1 2 4 8 8 7 4 0-9 9-18 9 0 3 11 3 14 1 3-3-7 7-8 9s13-2 13-2-2 9-15 12c5 8 3 13 2 13s-8-8-16-7c2 7 8 15 10 16s-14 1-16-4-4 10.2 2 15c-6 .2-12-3.6-12-3.6s-4 8-1 13c2 4-9-9-9-9l-22 9-5-9z" fill-rule="evenodd" stroke-width="1.8" fill="#9c3900"/>
<path d="M307.3 280c.5 0 32-.4 46.6-8.7 7 11.4 17 19 17 19l4-16.3s11 0 12 3c-2 3-2 7-2 7s7 .4 8 1.4c0 1-2 9.8-2 9.8l33 7.8s2-13 5-11.3c2 1.5 14 17.5 30 18.5s17-13.4 17-13.4l4 2s6-14.4 8-14.4 2 2 11 2c2 3 4 10.4 4 10.4s-10 10-7 17.7 4 5.7 4 5.7l71 17s3 5.7-3 8.8c0 .6-72-16.5-72-16.5s-7 7.7-12 6.2-2 3-2 3l77 6s5 7.3 1 9.4c-5 1-84-5-84-5s-4 10-10 2c-4 6-8-1-8-1s-7 6-8 0c-6 4-10-2-10-2l-33-2-3 3s6 2-3 5c-9 4 53 2 54 3s-4 5-4 5 31 2 37-5c6-6-2 9-2 9s25-1 25-2-1 8-18 7c10 7 23 11 23 11s-13 3-28-1c2 7 14 13 14 13s-8 8-27-10c5 9 1 13 0 12s-9-14-30-19c13 8 8 12 8 12s-7-12-18 0c-5-11-21-17-40-18-7-7-10-5-25-9-8-9-20-20-20-20s.2-14 14.2-12c1.6 5 1.6 3 1.6 3s15.3-5 20 2c7-12 16-2 18 3 4 1 27 2 27 2s-3-4-1-4c1 1 14-5 13-6-.6-1-1-7 1-6s-17.5-3-28 5c-4-4-1-13-1-13l-32-6-2 8s-9.8 2-9 0l-2 8s-12.8-3-12.8-4l3-18c0 1-10 1-25 12-4-13-37-30-37-30z" fill-rule="evenodd" stroke-width="1.9" fill="#ffc221"/>
<path d="M386 284.8l-6.7 30m13-18.7l-2.2 10m36-2l-3 10m61 54s-16 2-18 2 26 9 26 12m-36-10s-16-10-18-9 16 0 18-2m-32 0s-16 1-18-1 16 12 19 11m-36-19s-11-4-16-5c4 4 8 10 18 12m2-14c0-1-20-7-20-10 5 2 12 4 18 2m109-16l-2 10" stroke-width="1.9" fill="none"/>
<path d="M347.7 237.7s-21.7 18.6 0 29.5c1-7.3 2.6-8.3 2.6-8.3s18 6 29-10c-4.7-7-13-4-13-4s-17 0-18.6-8z" fill-rule="evenodd" stroke-width="1.9" fill="#ffc221"/>
<path d="M365.8 246l-15 13m61.2 76.8s3.5 3.8.4 8.5m72.4-4.7l-5.7.5m-40-3l11 2m18-28s1 11-8 10c-9 0-6 1-6 1" stroke-width="1.9" fill="none"/>
<path d="M472.8 308s3.5 1.3 2.6 4c-1 2.5 1 10-9.3 17.4-10 2.3-9-9-9-9" stroke-width="1.9" fill="none"/>
<path d="M476.6 311.3s6.3-3.7 7.2 2.4c1 6-5.2 17.4-9.6 19.2-4.3 1-9.3-1-8.7-4m19-16s5.7-5 7.5 1c1.7 6-4.7 20-7.3 20m7.8-20s3-2 5 0m-14.3 21c-1 0-6 0-7.8-4m-18.4-6h-6m28.7 22l-.6-10-2-3-4 4s0 9-2 10m3-11l-3-6-5 6s0 8-2 9m3-10l-2-6s-6 3-6 5-1 8-2 9m2-10s1-6-1-6-9 7-10 14" stroke-width="1.9" fill="none"/>
<path stroke-linejoin="round" d="M348.4 237.8s3-3 3.8-6.4c.8-3.5-1.2-7.2 2.3-10.4s49.4-22.7 53.2-26.5c3.8-3.7 10.7-12 11.6-13.6 1-2 3.5 8-4.4 13 8-3 14-5 17-4-4 5-13 13-17 13 10-4 19-7 22-5 2 2-13 12-19 13 10-3 24-7 25-3-6 1-4 3-15 9-2 1-9 1-9 1 8-1 20-4 21 2-7 3-10 6-15 8-6 1-20 4-28 7s-20 12-20 12-26 1-26 0l-5-12z" fill-rule="evenodd" stroke-width="1.9" fill="#fff"/>
<path d="M360.6 235.8s.3-5.8 3-7.8c2.5-2 15.6-7 18.5-11.4 3-4.3-4 7.6-3 10.8m-13-.3s7 3 5 8" stroke-width="1.9" fill="none"/>
<path d="M373.4 230.4a4.8 4.8 0 1 1-9.6 0 4.8 4.8 0 0 1 9.6 0z" stroke-width="1.6" fill="none"/>
<path d="M570 220l50.4 9.7s5.5-6.4 2.6-10c7.6-1.6 5.5-11.5 5.5-11.5s8.7-3.8 1.5-12.5c5-5-1.2-8.7-1.2-8.7s2-8.7-4.3-9.6c1.7-7-11-9.3-11-9.3s-26.5 8-45 8c6 6-2.5 10-2.5 10s5 4 3.5 7c-1.4 3 1 6-5.5 8 8.4 4-1 11-1 11s9.4 7 7 10z" fill-rule="evenodd" stroke-width="1.9" fill="#fff"/>
<path d="M565.2 209.4s44.4 5.2 46.5 5.2 9.8 2.6 11.3 5.2m-55.5-13l62 1.4m-61.7-3s58.7-3.4 62.8-9.5m-61-3.2s59-6.4 59.5-5.5m-61-1.8s57-9 58-7.5m-221-29.4s18 19.8 16 33.2" stroke-width="1.9" fill="none"/>
<path d="M419.3 171s5.8 8.4 8 9.3 22.8 2 24 10.7c1 5.6-4.4 3.8-3.5 8 1.4 5 15 11.8 30 4m-13.7 4s13 18 31-1.4m-9 7.8s15 8 27-12.5m-16 14s8 6 23-2m21-9s23 4 24 6m-17-10h16m-25-9s27-2 31 4m-42-12s38 2 40 4m-31 35s7-2 8-1m-22 16s9 8 19 4m-15 9s9 4 21 2m-18 5s9 6 16 5m-20-1s6 5 7 8m-16-2s2 10 9 14m-14-10s-4 13 5 22m-14-12s-1 6 0 7m-52-60l15-1s6-3 2-6m2 3s15 2 18 6c4 5 9 13 11 15 3 1 4-1 4-1m-6-3s-7 13-1 17m-2-2s-7 9-1 14m-1-2s-6 9 1 15m-4-39c0 1-7 5-9 4m2 11s3 3 5 2m-4 11l4 3m-3 7l4 2m-69-145s8 4 14 0 36-19 43-22c8-3 12-17 14-23m-6 16l42-13s7-6 8-16m-4 12s43-5 43-21m-11 16s45-12.5 49-17" stroke-width="1.9" fill="none"/>
<path d="M436.2 151.5s27.2-14 31.5-15.6c4.3-2 14-14-.6-14m-17 35c1 0 23-15 30-17 4-6 2-12-5-10" stroke-width="1.9" fill="none"/>
<path d="M480.8 137c.7-.2 12-.5 8 8.4-5.8 4.2-31 16.8-31 16.8m17.2-34.6l47.7-15.8s4-8.3-1.8-9.5M560 88c0 .2 6 3.6 2.5 9-6.8 4-38.5 11.7-38.5 11.7M609 83l-45 12.6m41.5-2.5l-39 12m35.7-2l-34.6 11m28 0c-.8 0-25.5 8-25.5 8m21 0l-16 7m12 2l-14 6m10 1l-12 6m-8 7s2 1 1 3m-32 14s5 2 1 7c-2 4-9 3-14 9m45-86s7 2 2 10c-13 5-39 13-39 13s-1 2-4 4-40 12-40 12m84-29s7 3 0 8c-8 5-36 13-36 13s0 3-1 4-38 13-38 13m77-29s8 3 1 9c-7 5-32 13-32 13s-2 3-6 5c-4 1-29 11-29 11m69-28c2 1 8 2 1 8l-28 11-2 4-32 14m64-28s3 4-3 8c-7 4-23 10-23 10m23-9s4 2-1 5.4l-28 11-12 8" stroke-width="1.9" fill="none"/>
<path d="M523.6 112c0 .4 5.2 4.6 3.4 9.5 4.6 3.4 3.7 7 3.7 7s6.4 3.7 5.5 9c6.4 1.5 6 5 6 5l-2 3.5s6.3-.3.8 8c3.4 1.8 2 4 2 4m-2-3.8c-1 0-22.3 8-27.8 13" stroke-width="1.9" fill="none"/>
<path d="M489.4 144.8s6.4-.3 5.5 6.7c7-2.5 5 4.6 5 4.6s8-3 7 8c5-1 4 5 4 5s5 0 5 3c3-3 7-1 7-1s2-3 6-2m-35-15c0 1-29 17-29 17m34-11l-22 13m29-6c0 1-19 12-19 12m23-7s-13 11-16 10m21-7s-8 6-14 9m22-11s2 3-13 11" stroke-width="1.9" fill="none"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.9 KiB

View File

@@ -0,0 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<g fill-rule="evenodd">
<path fill="#fff" d="M640 480H0V0h640z"/>
<path fill="#df0000" d="M640 480H0V320h640zm0-320H0V0h640z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 240 B

View File

@@ -0,0 +1,9 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<g stroke-width="1pt">
<path fill="#006" d="M0 0h640v480H0z"/>
<path d="M0 0v28l307 222h38.7v-28L38.7 0H0zm345.7 0v28l-307 222H0v-28L307 0h38.7z" fill="#fff"/>
<path d="M144 0v250h57.6V0H144zM0 83.3v83.4h345.7V83.3H0z" fill="#fff"/>
<path d="M0 100v50h345.7v-50H0zM155.6 0v250H190V0h-34.4zM0 250l115.2-83.3H141L25.8 250H0zM0 0l115.2 83.3H89.5L0 18.6V0zm204.7 83.3L320 0h25.7L230.5 83.3h-25.8zm141 166.7l-115.2-83.3h25.7l89.5 64.7V250z" fill="#c00"/>
<path d="M299.8 392.5l-43.7 3.8 6 43.4-30-31.7-30 31.7 6-43.4-43-3.8 38-22.3-24-36.5 41 15.5 13.6-41.7 13.5 41.7 41-15.5-24.4 36.5m224 62.3l-11-15.8 18 6.7 5.7-18 6 18 18-6.7-10.8 15.8 16.5 9.7-19 1.7 3 18-13-14-13 13.2 2-18-18.6-2M487 150l-11-15.4 17.8 6.7 5.8-18 5.8 18 18-6.7-10.7 15.8L529 160l-19 1.8 2.7 18.8-13-13.7-13.2 13 2.6-19-18-2m-90 106l-10.3-16 17.6 7 6-18.5 6 18L418 249l-10.7 16 16.3 9.7-19 1.6 2.7 19-13.2-14-13 14 2.6-19-19-1.6m216.3-38L570 221l18 6.7 5.6-18 6 18 17.7-6.7-10.5 15.8 16.3 9.7-19 1.7 3 18.8-13-13.8-13 13.8 3-18.8-19-1.7M542 320l-10.4 6.4 3-12-9.4-7.7 12-1 4.7-11.2 4 11.3 12 1-10 7.7 3 12" fill-rule="evenodd" fill="#fff"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1,186 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<defs>
<clipPath id="a">
<path fill-opacity=".7" d="M0 0h288v216H0z"/>
</clipPath>
</defs>
<g transform="scale(2.22)" clip-path="url(#a)">
<path fill="#39c" d="M0 0v216h324V0H0z"/>
<path fill="#ff0" d="M0 144v12h324v-12H0zm0 24v12h324v-12H0z"/>
</g>
<path fill="#9cc" d="M142.6 28l3 3-3-3zm-3 6l3 3-3-3m6 0l3 3-3-3z"/>
<path fill="#ccf" d="M139.7 37l3 3-3-3m6 0l2.8 3-3-3z"/>
<path fill="#6cc" d="M136.7 42.8l3 3-3-3z"/>
<path fill="#c66" d="M142.6 42.8l3 3-3-3z"/>
<path fill="#6cc" d="M148.6 42.8l3 3-3-3z"/>
<path fill="#ccf" d="M136.7 45.8l3 3-3-3zm12 0l2.8 3-3-3z"/>
<path fill="#fcc" d="M139.7 48.7l3 3-3-3m6 0l2.8 3-3-3z"/>
<path fill="#6cc" d="M133.8 51.7l3 3-3-3z"/>
<path d="M142.2 34l-20.7 78.5L42.8 134l78.4 20.4 21 78.4 21-78.4 78.3-21-78.4-21L142.5 34z" stroke="#fff" stroke-width="3.7" fill="#c00"/>
<path fill="#6cc" d="M151.5 51.7l3 3-3-3z"/>
<path fill="#9cf" d="M133.8 54.6l3 3-3-3m17.7 0l3 3-3-3z"/>
<path fill="#fcc" d="M136.7 57.6l3 3-3-3m12 0l2.8 3-3-3z"/>
<path fill="#69c" d="M130.8 60.5l3 3-3-3z"/>
<path fill="#c33" d="M137.7 62.5l1 2-1-2m11.8 0l1 2-1-2z"/>
<path fill="#69c" d="M154.5 60.5l3 3-3-3z"/>
<path fill="#9cf" d="M130.8 63.5l3 3-3-3m23.7 0l3 3-3-3z"/>
<path fill="#fcc" d="M133.8 66.4l3 3-3-3m17.7 0l3 3-3-3z"/>
<path fill="#69c" d="M128 69.4l2.8 3-3-3zm29.4 0l3 3-3-3z"/>
<path fill="#9cc" d="M128 72.3l2.8 3-3-3m29.6 0l3 3-3-3z"/>
<path fill="#cff" d="M128 75.3l2.8 3-3-3m29.6 0l3 3-3-3z"/>
<path fill="#69c" d="M125 78.3l3 3-3-3z"/>
<path fill="#fcc" d="M130.8 78.3l3 3-3-3m23.7 0l3 3-3-3z"/>
<path fill="#69c" d="M160.4 78.3l3 3-3-3z"/>
<path fill="#9cc" d="M125 81.2l3 3-3-3z"/>
<path fill="#c33" d="M131.8 83.2l1 2-1-2m23.6 0l1 2-1-2z"/>
<path fill="#9cc" d="M160.4 81.2l3 3-3-3z"/>
<path fill="#cff" d="M125 84.2l3 3-3-3m35.4 0l3 3-3-3z"/>
<path fill="#fcc" d="M128 87l2.8 3-3-3m29.6 0l3 3-3-3z"/>
<path fill="#9cc" d="M122 90l3 3-3-3z"/>
<path fill="#c33" d="M129 92l1 2-1-2m29.4 0l1 2-1-2z"/>
<path fill="#9cc" d="M163.3 90l3 3-3-3z"/>
<path fill="#ccf" d="M122 93l3 3-3-3m41.3 0l3 3-3-3z"/>
<path fill="#fcc" d="M125 96l3 3-3-3m35.4 0l3 3-3-3z"/>
<path fill="#9cc" d="M119 99l3 3-3-3z"/>
<path fill="#c33" d="M126 101l1 2-1-2m35.3 0l1 2-1-2z"/>
<path fill="#9cc" d="M166.3 99l3 3-3-3z"/>
<path fill="#ccf" d="M119 102l3 2.8-3-3m47.3 0l3 3-3-3z"/>
<path fill="#fcc" d="M122 104.8l3 3-3-3m41.3 0l3 3-3-3z"/>
<path fill="#9cc" d="M116 107.8l3 3-3-3z"/>
<path fill="#c33" d="M122 107.8l3 3-3-3m41.3 0l3 3-3-3z"/>
<path fill="#9cc" d="M169.2 107.8l3 3-3-3m-62 3l3 3-3-3z"/>
<path fill="#ccf" d="M110.2 110.7l3 3-3-3m65 0l3 3-3-3z"/>
<path fill="#9cc" d="M178 110.7l3 3-3-3m-79.6 3l3 3-3-3z"/>
<path fill="#ccf" d="M101.3 113.7l3 3-3-3z"/>
<path fill="#fcc" d="M113 113.7l3 3-3-3z"/>
<path fill="#c33" d="M116 113.7l3 3-3-3m53.2 0l3 3-3-3z"/>
<path fill="#fcc" d="M172.2 113.7l3 3-3-3z"/>
<path fill="#ccf" d="M184 113.7l3 3-3-3z"/>
<path fill="#9cc" d="M187 113.7l3 3-3-3z"/>
<path fill="#69c" d="M86.6 116.6l3 3-3-3z"/>
<path fill="#9cc" d="M89.5 116.6l3 3-3-3z"/>
<path fill="#cff" d="M92.5 116.6l3 3-3-3z"/>
<path fill="#fcc" d="M104.3 116.6l3 3-3-3z"/>
<path fill="#c33" d="M109.2 117.6l2 1-2-1m68 0l2 1-2-1z"/>
<path fill="#fcc" d="M181 116.6l3 3-3-3z"/>
<path fill="#cff" d="M192.8 116.6l3 3-3-3z"/>
<path fill="#9cc" d="M195.8 116.6l3 3-3-3z"/>
<path fill="#69c" d="M198.7 116.6l3 3-3-3m-121 3l3 3-3-3z"/>
<path fill="#9cc" d="M80.7 119.6l3 3-3-3z"/>
<path fill="#cff" d="M83.6 119.6l3 3-3-3z"/>
<path fill="#fcc" d="M95.4 119.6l3 3-3-3z"/>
<path fill="#c33" d="M100.3 120.6l2 1-2-1m85.6 0l2 1-2-1z"/>
<path fill="#fcc" d="M190 119.6l2.8 3-3-3z"/>
<path fill="#cff" d="M201.7 119.6l3 3-3-3z"/>
<path fill="#9cc" d="M204.6 119.6l3 3-3-3z"/>
<path fill="#69c" d="M207.6 119.6l3 3-3-3m-138.8 3l3 3-3-3z"/>
<path fill="#9cf" d="M71.8 122.5l3 3-3-3z"/>
<path fill="#fcc" d="M86.6 122.5l3 3-3-3z"/>
<path fill="#c33" d="M91.5 123.5l2 1-2-1m103.3 0l2 1-2-1z"/>
<path fill="#fcc" d="M198.7 122.5l3 3-3-3z"/>
<path fill="#9cf" d="M213.5 122.5l3 3-3-3z"/>
<path fill="#69c" d="M216.4 122.5l3 3-3-3z"/>
<path fill="#6cc" d="M60 125.5l3 3-3-3z"/>
<path fill="#9cf" d="M63 125.5l3 3-3-3z"/>
<path fill="#fcc" d="M74.8 125.5l3 3-3-3zm135.7 0l3 3-3-3z"/>
<path fill="#9cf" d="M222.4 125.5l3 3-3-3z"/>
<path fill="#6cc" d="M225.3 125.5l3 3-3-3m-174.2 3l3 3-3-3z"/>
<path fill="#ccf" d="M54 128.4l3 3-3-3z"/>
<path fill="#fcc" d="M66 128.4l2.8 3-3-3z"/>
<path fill="#c33" d="M70.8 129.4l2 1-2-1m144.7 0l2 1-2-1z"/>
<path fill="#fcc" d="M219.4 128.4l3 3-3-3z"/>
<path fill="#ccf" d="M231.2 128.4l3 3-3-3z"/>
<path fill="#6cc" d="M234.2 128.4l3 3-3-3z"/>
<path fill="#9cc" d="M42.3 131.4l3 3-3-3z"/>
<path fill="#ccf" d="M45.2 131.4l3 3-3-3z"/>
<path fill="#fcc" d="M57 131.4l3 3-3-3zm171.3 0l3 3-3-3z"/>
<path fill="#ccf" d="M240 131.4l3 3-3-3z"/>
<path fill="#9cc" d="M243 131.4l3 3-3-3m-206.6 3l3 3-3-3z"/>
<path fill="#c66" d="M51 134.3l3 3-3-3zm183.2 0l3 3-3-3z"/>
<path fill="#9cc" d="M249 134.3l3 3-3-3m-206.7 3l3 3-3-3z"/>
<path fill="#ccf" d="M45.2 137.3l3 3-3-3z"/>
<path fill="#fcc" d="M57 137.3l3 3-3-3m171.3 0l3 3-3-3z"/>
<path fill="#ccf" d="M240 137.3l3 3-3-3z"/>
<path fill="#9cc" d="M243 137.3l3 3-3-3z"/>
<path fill="#6cc" d="M51 140.2l3 3-3-3z"/>
<path fill="#ccf" d="M54 140.2l3 3-3-3z"/>
<path fill="#fcc" d="M66 140.2l2.8 3-3-3z"/>
<path fill="#c33" d="M70.8 141.2l2 1-2-1m144.7 0l2 1-2-1z"/>
<path fill="#fcc" d="M219.4 140.2l3 3-3-3z"/>
<path fill="#ccf" d="M231.2 140.2l3 3-3-3z"/>
<path fill="#6cc" d="M234.2 140.2l3 3-3-3m-174.2 3l3 3-3-3z"/>
<path fill="#9cf" d="M63 143.2l3 3-3-3z"/>
<path fill="#fcc" d="M74.8 143.2l3 3-3-3zm135.7 0l3 3-3-3z"/>
<path fill="#9cf" d="M222.4 143.2l3 3-3-3z"/>
<path fill="#6cc" d="M225.3 143.2l3 3-3-3z"/>
<path fill="#69c" d="M68.8 146.2l3 3-3-3z"/>
<path fill="#9cf" d="M71.8 146.2l3 3-3-3z"/>
<path fill="#fcc" d="M86.6 146.2l3 3-3-3z"/>
<path fill="#c33" d="M91.5 147l2 1-2-1m103.3 0l2 1-2-1z"/>
<path fill="#fcc" d="M198.7 146.2l3 3-3-3z"/>
<path fill="#9cf" d="M213.5 146.2l3 3-3-3z"/>
<path fill="#69c" d="M216.4 146.2l3 3-3-3m-138.7 3l3 3-3-3z"/>
<path fill="#9cc" d="M80.7 149l3 3-3-3z"/>
<path fill="#cff" d="M83.6 149l3 3-3-3z"/>
<path fill="#fcc" d="M95.4 149l3 3-3-3z"/>
<path fill="#c33" d="M100.3 150l2 1-2-1m85.6 0l2 1-2-1z"/>
<path fill="#fcc" d="M190 149l2.8 3-3-3z"/>
<path fill="#cff" d="M201.7 149l3 3-3-3z"/>
<path fill="#9cc" d="M204.6 149l3 3-3-3z"/>
<path fill="#69c" d="M207.6 149l3 3-3-3m-121 3l3 3-3-3z"/>
<path fill="#9cc" d="M89.5 152l3 3-3-3z"/>
<path fill="#cff" d="M92.5 152l3 3-3-3z"/>
<path fill="#fcc" d="M104.3 152l3 3-3-3z"/>
<path fill="#c33" d="M109.2 153l2 1-2-1m68 0l2 1-2-1z"/>
<path fill="#fcc" d="M181 152l3 3-3-3z"/>
<path fill="#cff" d="M192.8 152l3 3-3-3z"/>
<path fill="#9cc" d="M195.8 152l3 3-3-3z"/>
<path fill="#69c" d="M198.7 152l3 3-3-3z"/>
<path fill="#9cc" d="M98.4 155l3 3-3-3z"/>
<path fill="#ccf" d="M101.3 155l3 3-3-3z"/>
<path fill="#fcc" d="M113 155l3 3-3-3z"/>
<path fill="#c33" d="M116 155l3 3-3-3m53.2 0l3 3-3-3z"/>
<path fill="#fcc" d="M172.2 155l3 3-3-3z"/>
<path fill="#ccf" d="M184 155l3 3-3-3z"/>
<path fill="#9cc" d="M187 155l3 3-3-3m-79.8 3l3 3-3-3z"/>
<path fill="#ccf" d="M110.2 158l3 3-3-3m65 0l3 3-3-3z"/>
<path fill="#9cc" d="M178 158l3 3-3-3m-62 3l3 3-3-3z"/>
<path fill="#c33" d="M122 161l3 3-3-3m41.3 0l3 3-3-3z"/>
<path fill="#9cc" d="M169.2 161l3 3-3-3z"/>
<path fill="#fcc" d="M122 164l3 2.8-3-3m41.3 0l3 3-3-3z"/>
<path fill="#ccf" d="M119 166.8l3 3-3-3z"/>
<path fill="#c33" d="M126 168.8l1 2-1-2m35.3 0l1 2-1-2z"/>
<path fill="#ccf" d="M166.3 166.8l3 3-3-3z"/>
<path fill="#9cc" d="M119 169.8l3 3-3-3m47.3 0l3 3-3-3z"/>
<path fill="#fcc" d="M125 172.7l3 3-3-3m35.4 0l3 3-3-3z"/>
<path fill="#ccf" d="M122 175.7l3 3-3-3z"/>
<path fill="#c33" d="M129 177.6l1 2-1-2m29.4 0l1 2-1-2z"/>
<path fill="#ccf" d="M163.3 175.7l3 3-3-3z"/>
<path fill="#9cc" d="M122 178.6l3 3-3-3m41.3 0l3 3-3-3z"/>
<path fill="#fcc" d="M128 181.6l2.8 3-3-3m29.6 0l3 3-3-3z"/>
<path fill="#cff" d="M125 184.5l3 3-3-3z"/>
<path fill="#c33" d="M131.8 186.5l1 2-1-2m23.6 0l1 2-1-2z"/>
<path fill="#cff" d="M160.4 184.5l3 3-3-3z"/>
<path fill="#9cc" d="M125 187.5l3 3-3-3m35.4 0l3 3-3-3z"/>
<path fill="#69c" d="M125 190.4l3 3-3-3z"/>
<path fill="#fcc" d="M130.8 190.4l3 3-3-3m23.7 0l3 3-3-3z"/>
<path fill="#69c" d="M160.4 190.4l3 3-3-3z"/>
<path fill="#cff" d="M128 193.4l2.8 3-3-3zm29.4 0l3 3-3-3z"/>
<path fill="#9cc" d="M128 196.3l2.8 3-3-3m29.6 0l3 3-3-3z"/>
<path fill="#69c" d="M128 199.3l2.8 3-3-3m29.6 0l3 3-3-3z"/>
<path fill="#fcc" d="M133.8 202.2l3 3-3-3m17.7 0l3 3-3-3z"/>
<path fill="#9cf" d="M130.8 205.2l3 3-3-3z"/>
<path fill="#c33" d="M137.7 207.2l1 2-1-2m11.8 0l1 2-1-2z"/>
<path fill="#9cf" d="M154.5 205.2l3 3-3-3z"/>
<path fill="#69c" d="M130.8 208l3 3-3-3m23.7 0l3 3-3-3z"/>
<path fill="#fcc" d="M136.7 211l3 3-3-3m12 0l2.8 3-3-3z"/>
<path fill="#9cf" d="M133.8 214l3 3-3-3zm17.7 0l3 3-3-3z"/>
<path fill="#6cc" d="M133.8 217l3 3-3-3m17.7 0l3 3-3-3z"/>
<path fill="#fcc" d="M139.7 220l3 3-3-3m6 0l2.8 3-3-3z"/>
<path fill="#ccf" d="M136.7 223l3 3-3-3m12 0l2.8 3-3-3z"/>
<path fill="#6cc" d="M136.7 226l3 2.8-3-3z"/>
<path fill="#c66" d="M142.6 226l3 2.8-3-3z"/>
<path fill="#6cc" d="M148.6 226l3 2.8-3-3z"/>
<path fill="#ccf" d="M139.7 231.8l3 3-3-3m6 0l2.8 3-3-3z"/>
<path fill="#9cc" d="M139.7 234.7l3 3-3-3m6 0l2.8 3-3-3m-3 6l3 3-3-3z"/>
</svg>

After

Width:  |  Height:  |  Size: 9.6 KiB

View File

@@ -0,0 +1,18 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<defs>
<clipPath id="a">
<path fill-opacity=".67" d="M106.25 0h1133.3v850H106.25z"/>
</clipPath>
</defs>
<g clip-path="url(#a)" transform="matrix(.56472 0 0 .56482 -60.002 -.1)">
<path d="M0 0h1300v850H0z" fill="#0053a5"/>
<g fill="#ffce00">
<path d="M400 0h250v850H400z"/>
<path d="M0 300h1300v250H0z"/>
</g>
<g fill="#d21034">
<path d="M475 0h100v850H475z"/>
<path d="M0 375h1300v100H0z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 563 B

View File

@@ -0,0 +1,8 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<path fill="#3f9c35" d="M.1 0h640v480H.1z"/>
<path fill="#ed2939" d="M.1 0h640v320H.1z"/>
<path fill="#00b9e4" d="M.1 0h640v160H.1z"/>
<circle cx="304" cy="240" r="72" fill="#fff"/>
<circle cx="320" cy="240" r="60" fill="#ed2939"/>
<path d="M384 200l7.654 21.522 20.63-9.806-9.806 20.63L424 240l-21.522 7.654 9.806 20.63-20.63-9.806L384 280l-7.654-21.522-20.63 9.806 9.806-20.63L344 240l21.522-7.654-9.806-20.63 20.63 9.806L384 200z" fill="#fff"/>
</svg>

After

Width:  |  Height:  |  Size: 555 B

View File

@@ -0,0 +1,12 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<defs>
<clipPath id="a">
<path fill-opacity=".7" d="M-85.3 0h682.6v512H-85.3z"/>
</clipPath>
</defs>
<g clip-path="url(#a)" transform="matrix(.9 0 0 .9 80 0)" fill-rule="evenodd">
<path d="M-85.3 0h682.6v512H-85.3z" fill="#009"/>
<path d="M-85.3 0l682.6 512V0H-85.3z" fill="#fc0"/>
<path d="M-21.5 75L-46 57.5-70.2 75l9.4-28.6L-85 28.7h30L-46 0l9.5 28.7h30l-24.3 17.7m61 65.6L5.6 129.7 15 101-9.4 83.3h30.2L30 54.6l9.4 28.7h30.2L45.2 101l9.3 28.7m27 54.6l9.5-28.7L66.6 138h30l9.4-29 9.4 28.7h30L121 155.3l9.5 28.7-24.4-17.7m61 43.7l-24-17.8h30l9.6-28.7 9.4 28.7h30l-24.7 18 9.4 28.7-24.4-18-24.4 18m61 8h30l9-29 9 28.3h30l-24 18 9.2 28.4L258 275l-24.5 18 9.5-28m81.6 36.6L334 273l9.2 28.7h30.2L349 319.5l9.3 28.7-24.4-17.8-25 17.8 9-28.7-24.4-17.8m115.4 26l9.4 28.7H449L425 374l9 29-24.2-18-24.4 17.8 9.3-28.7-24.4-17h30.2m85.3 26l9.2 28h30.2l-24.4 18 9.4 28.8-24.4-17.7-24.4 17.8 9.3-28.7-24.4-17.6h30.2M571 466h30.2l-24.4 17.7L586 512l-24.3-17.7-24.4 17.7 9.3-28.7-24.4-17.7h30.2l9.3-28.7" fill="#fff"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="480" width="640" viewBox="0 0 640 480">
<path fill="#00267f" d="M0 0h640v480H0z"/>
<path fill="#ffc726" d="M213.333 0h213.333v480H213.333z"/>
<path id="a" d="M319.77 135.527c-6.933 18.907-14 38.587-29.12 53.654 4.694-1.546 12.907-2.933 18.187-2.8v79.52l-22.453 3.334c-.8-.08-1.067-1.333-1.067-3.04-2.16-24.693-8-45.44-14.72-66.907-.48-2.933-8.987-14.133-2.427-12.16.8.107 9.574 3.68 8.187 1.974-11.947-12.373-29.413-21.28-46.373-23.92-1.494-.373-2.374.374-1.04 2.107 22.506 34.64 41.333 75.52 41.173 124.027 8.747 0 29.947-5.173 38.72-5.173v56.107h11.067l2.533-156.693z"/>
<use height="100%" width="100%" xlink:href="#a" transform="matrix(-1 0 0 1 639.54 0)"/>
</svg>

After

Width:  |  Height:  |  Size: 767 B

View File

@@ -0,0 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<path fill="#006a4e" d="M0 0h640v480H0z"/>
<circle cx="280" cy="240" r="160" fill="#f42a41"/>
</svg>

After

Width:  |  Height:  |  Size: 193 B

View File

@@ -0,0 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<g fill-rule="evenodd" stroke-width="1pt">
<path d="M0 0h213.3v480H0z"/>
<path fill="#ffd90c" d="M213.3 0h213.4v480H213.3z"/>
<path fill="#f31830" d="M426.7 0H640v480H426.7z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 293 B

View File

@@ -0,0 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<g fill-rule="evenodd">
<path fill="#de0000" d="M640.003 479.578H.378V0h639.625z"/>
<path fill="#35a100" d="M639.628 480H.003V240.216h639.625z"/>
<path fill="#fff300" d="M254.612 276.188l-106.066-72.434 131.043.122 40.386-117.322 40.388 117.322 131.043-.087-106.085 72.398 40.59 117.27-105.954-72.573-105.955 72.556"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 435 B

View File

@@ -0,0 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<g fill-rule="evenodd" stroke-width="1pt">
<path fill="#de2110" d="M0 320h640v160H0z"/>
<path fill="#fff" d="M0 0h640v160H0z"/>
<path fill="#319400" d="M0 160h640v160H0z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 289 B

View File

@@ -0,0 +1,11 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<defs>
<clipPath id="a">
<path fill-opacity=".67" d="M0 0h640v480H0z"/>
</clipPath>
</defs>
<g fill-rule="evenodd" stroke-width="1pt" clip-path="url(#a)">
<path fill="#e10011" d="M-32.5 0h720v480h-720z"/>
<path d="M114.25 479.77L-32.5 480V0l146.06.075 94.242 30.306-93.554 29.542 93.554 30.458-93.554 29.542 93.554 30.458-93.554 29.54 93.554 30.46-93.554 29.54 93.554 30.46-93.554 29.54 93.554 30.46-93.554 29.54 93.554 30.46-93.554 29.54 93.554 30.46-93.554 29.54" fill="#fff"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 610 B

View File

@@ -0,0 +1,15 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<defs>
<clipPath id="a">
<path fill-opacity=".67" d="M-90.533 0h682.67v512h-682.67z"/>
</clipPath>
</defs>
<g clip-path="url(#a)" fill-rule="evenodd" transform="translate(84.875) scale(.9375)">
<path d="M-178 0l428.8 256L-178 512zm857.6 0L250.8 256l428.8 256z" fill="#00cf00"/>
<path d="M-178 0l428.8 256L679.6 0zm0 512l428.8-256 428.8 256z" fill="red"/>
<path d="M679.6 0h-79.902l-777.7 464.3v47.703H-98.1l777.7-464.3z" fill="#fff"/>
<path d="M398.855 256c0 81.767-66.285 148.05-148.052 148.05S102.75 337.768 102.75 256s66.285-148.053 148.053-148.053S398.855 174.232 398.855 256z" fill="#fff"/>
<path d="M-178 0v47.703l777.7 464.3h79.902V464.3L-98.098 0z" fill="#fff"/>
<path stroke="#00de00" stroke-width="3.901" fill="red" d="M279.943 200.164l-19.25.322-9.948 16.442-9.92-16.472-19.22-.41 9.303-16.822-9.245-16.875 19.222-.332 9.977-16.457 9.918 16.496 19.222.41-9.333 16.817zm-64.5 111.62l-19.25.322-9.948 16.442-9.92-16.47-19.22-.41 9.303-16.824-9.245-16.875 19.222-.332 9.977-16.457 9.918 16.496 19.222.41-9.333 16.817zm130.57 0l-19.25.322-9.948 16.442-9.92-16.47-19.22-.41 9.303-16.824-9.245-16.875 19.222-.332 9.977-16.457 9.918 16.496 19.222.41-9.333 16.817z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1,14 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<defs>
<clipPath id="a">
<path fill="gray" d="M67.64-154h666v666h-666z"/>
</clipPath>
</defs>
<g transform="matrix(.961 0 0 .7207 -65 110.99)" clip-path="url(#a)">
<g fill-rule="evenodd" stroke-width="1pt">
<path fill="#319400" d="M0-154h333v666H0z"/>
<path fill="#ffd600" d="M333-154h666v333H333z"/>
<path fill="#de2110" d="M333 179h666v333H333z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 503 B

View File

@@ -0,0 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<g fill-rule="evenodd" stroke-width="1pt">
<path fill="#fff" d="M0 0h640v479.997H0z"/>
<path fill="#00267f" d="M0 0h213.33v479.997H0z"/>
<path fill="#f31830" d="M426.663 0h213.33v479.997h-213.33z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 315 B

View File

@@ -0,0 +1,97 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<path fill="#cf142b" d="M0 0h640v480H0z"/>
<path fill="#00247d" d="M0 0h320v160H0z"/>
<path d="M0 0v17.9L284.22 160H320v-17.9L35.78 0H0zm320 0v17.9L35.78 160H0v-17.9L284.22 0H320z" fill="#fff"/>
<path d="M133.33 0v160h53.34V0h-53.34zM0 53.33v53.34h320V53.33H0z" fill="#fff"/>
<path d="M0 64v32h320V64H0zM144 0v160h32V0h-32zM0 160l106.67-53.33h23.85L23.85 160H0zM0 0l106.67 53.33H82.82L0 11.93V0zm189.48 53.33L296.15 0H320L213.33 53.33h-23.85zM320 160l-106.67-53.33h23.85l82.82 41.4V160z" fill="#cf142b"/>
<path d="M553.83 148.26v135.5c0 36.2-72.36 47.97-72.36 47.97s-72.36-11.76-72.36-47.96v-135.5h144.8z" fill="#fff"/>
<path d="M553.83 283.77c0 36.2-72.36 47.96-72.36 47.96s-72.36-11.76-72.36-47.96c0 0 0-2.9 1.5-4.57 0 0-.8 6.02 3.9 10.57 0 0-3.6-6.42 0-12.73 0 0-1.3 8.12 3.8 12.78 0 0-2.8-6.63.4-14.03 0 0-1.5 12.1 4 14.5 0 0 1.5-7-.7-11.4 0 0 3.8 1.5 3.6 11.6 0 0 1.2-1.5 1.5-8.8 0 0 .2 8.3 3.1 10.2 0 0 .9-.9-.3-4.7s.6-5.1.8-5c0 0-.6 4.2 2.9 7.3 0 0-1.5-6.6.6-7.5 0 0-.4 5.5 4 6.8 0 0 .3-1.7-.6-3.5 0 0-.8-2.2-.2-3.8 0 0 1.4 5 3.3 5.9 0 0-1.1-3-.1-5.9 0 0 .2 4.2 4 5.9 0 0-2.5-3.3-1.5-6.8l24.1 1.1 12.5.6 37.5-2.7 6.5-5.6s2.6 3.6-1.5 9.1c0 0 4-.8 5.3-7 0 0 1.7 3.4-.6 7.2 0 0 4.5-4.5 5.1-9.5 0 0 1.7 4.9-2.4 10.1 0 0 3.8-1.3 5.4-6.8 0 0 1.3 3.3-2.3 8.1 0 0 6.8-3.6 6.6-11.1 0 0 2.9 4.1-.4 9.7 0 0 3.5-3.1 3.8-7.7 0 0 1.9 2.1-.1 7.8 0 0 4.3-4 4.9-8.3 0 0 .9 4-2.7 9 0 0 2.5-.6 4.8-5.5 0 0 .7 1.9-1.5 5.42 0 0 2.3-.4 3.9-4.8 0 0 .3 2.62-.4 5 0 0 1.8-1.2 2.2-6.2 0 0 1 1.7 1 3.7v.7z" fill="#2f8f22"/>
<path d="M516.57 205.44s-2.52.42-5.75-.56c-3.22-1-4.53-.6-5.53 0 0 0 1.3-2.6-1.9-4.65 0 0 1 2.62-.4 3.85 0 0-.7.6-1.4-.3 0 0-1.1-1.15-2.3-2.04 0 0 2.7-.94 2.2-3.7-.5-2.75-2-3.1-2.8-3.45 0 0 .2 1.2 0 2 0 0-3-1.7 1-4 4-2.4 3.2-3.7 2.5-4.9-.7-1.2-2.3-2.5-3-3 0 0 .8 1.2.6 2.3-.1 1-2 1.7-1.6-.1.4-1.9 0-1.6-.1-3.6 0 0 3.5 1.2 4.9-2.3 0 0 1.3-3.6-3.2-5.4 0 0 1.1 1.5.5 2.6 0 0-.9 1.8-2.1.3s-1.8-1.8-1.7-3.5c0 0 4.1.5 3-3.9 0 0-.7 2.9-6-1 0 0 3.5-3.6 2.1-6.4 0 0-.4-1.3-4.1-.6 0 0 3.2-2 1.9-3.8 0 0-.7-1.1-3.8.4 0 0 1.2-2-1.8-4.2 0 0-2 1-3 2 0 0-2.1-2.6-3.4-3.6 0 0-2.4.9-3 3.6 0 0-1.1-1.3-3.6-1.9 0 0-1.2 2.2.3 4.1 0 0-1.2 0-3.3-.9 0 0-2.4-1.2-2.1.9.4 2.1.5 2.5 1 3.5 0 0-5.4-1.3-5.2 1.7.2 2 .9 3.8 2.6 5.2 0 0-3 3.9-5.6 1 0 0-.9.9 1.1 3.5 0 0 1.9 2.1.3 3.4 0 0-2.2 1.7-3.2-1.6 0 0-3.5 3.4.6 6 0 0 2.6 1.5 5.3-.8 0 0-.8 6.6-3.4 5.3 0 0-1.6-1.1 1.2-2.5 0 0-4-.5-4.6 3.3 0 0-.5 3 3 4.1 0 0 2.7 1-.1 3.1 0 0-1.9 1.5-.6 3.7 0 0 1.5 2.4-2.4 2.7 0 0-2.1 0-2.9-.3 0 0-.8 1.6-.2 3.4 0 0-2-1.5-6.4.1s-4.1.4-4.4.9c-.4.5-1.2 2.1-1.2 2.1l2.3 2.8-.5 3.2 1.1.5 9.04-4.1 9.2-4.8 7.45.4 4.7 1.1 6.2.4 4.4-2.4h6.4l7.1 3.5 8.1 4.8 4.2.76 3.2-.13v-6.5l-1.57-2.4z" fill="#d40000" stroke="#000" stroke-width=".53" stroke-linejoin="round"/>
<path d="M443.5 213.04s3.5 1.8 4.98-.38c0 0 1.9-3.65-2.3-4.9 0 0 2.3-2.76-.16-5.3 0 0-1.28-1.35-3.53-.35 0 0-1-1.9-3.2-1.8 0 0-1.9 0-2.6 2.1 0 0-2.7-1.1-4.1.5 0 0-2.4 2.8.9 4.9l2.4.2 2.4-1.1 2.6.8s-.7 2.7 2.3 5.5z" fill="#d40000" stroke="#000" stroke-width=".53" stroke-linejoin="round"/>
<path d="M521.83 206.63c4.23-.4 5.72 3.17 5.72 3.17 2.22 5.2-2.5 7.97-2.5 7.97.37 1.16.4 2.7.4 2.7 6.63.8 5.47 8.24 5.47 8.24l-2.2-1.8c-3.82-1.5-7.77 1.8-10.6 7.3s-1.47 8.1-1 14.5c.5 6.5 11 10.4 11 10.4s-4.97 12.9-8.2 21.1c-3.23 8.3-9.97 4.8-11.93 3.1-2-1.7-2.5-.8-3.5 0s4.4 5-5.4 9c-9.9 4-11.6 7.1-13.2 8.1-1.7 1-8.5.3-9.2-.5-.7-.8-.3-.8-2.9-2.4-2.6-1.6-6.9-2.9-11.6-5.2s-4.6-5.2-4.6-5.8c0-.6 1.6-5.5-3.9-1.6s-10.2-1.9-10.2-1.9c-1.1-1.4-5.7-13.7-5.7-13.7-1.3-4.6-3.7-9.9-3.7-9.9.1 0-.3.6 3.8-1.7 4-2.4 5.8-6.2 7.3-10.1 1.4-3.8 0-10.4-.5-11.7-.5-1.3-3.6-7.4-7.3-8.7-3.8-1.3-6.3 1.9-6.3 1.9s-1.2-7.4 5.5-8.2c0 0 0-1.5.4-2.7 0 0-4.7-2.7-2.5-7.9 0 0 1.5-3.5 5.7-3.2l-1 2s-1.1 10.6 14.5 3.5c15.5-7.1 15-8.4 23.9-4l6.4-.1s9.3-4.3 12.3-2.5c3 1.9 13.7 7.9 13.7 7.9s10.4 3.9 12.4-3.3l-1.2-3.4z" fill="#64b4d1" stroke="#000" stroke-width=".4"/>
<path stroke-miterlimit="10" d="M475.08 252.65s-.54-3.26-1.1-5.37c0 0-1.16-3.3.8-5.63l2.45-2.8s1.5-2.05 3.4-2.33c0 0 1.87-.05 2.04-.44.18-.38 2.24-3.76 7.12 0 0 0 1.5-2.5 3.9-2.9 0 0 2.6-.8 3.8 1.13 0 0 2.9-2.2 5.4 1.4 0 0 3.4-1.9 5.9 1.9 0 0 3.4-1.6 5.5 1.9 2.1 3.6 1.7 5 1.7 5l1.5 5.6 5.5 6.8-12.8 4.8h-5.8l-11.5 3.1-20.4 1.6-5.7-6.7 8-7z" fill="#fff" stroke="#00247d" stroke-width=".53"/>
<path d="M457.84 286.55s-3.05.18-4.6.96c-1.56.8-2.76 1.7-4.55 2.8 0 0-.9 1.1-4.4.5 0 0-6.1-1.4-6.1 3.3 0 0-7.3.6-4.3 7 0 0 2 5 6.2 1.5 0 0-2.7 3.9 2.5 5.4 0 0 3.7.9 4.8-2.9 0 0 .6-1.5-.9-3.3 0 0 1.8-.4 3-2.3 0 0-3.8 4.8.3 6.6 0 0 5.2 1.3 5.5-4.2 0 0-.4-2.5 1.6-3.4 0 0 4.2-.9 6.1-5.6 0 0-6.1-3.2-5.5-6zm-12.32-48.1s-4.7-2.18-6.94 0c0 0-3.1-1.94-6.38 0 0 0-3.1 2.02-5.26 4.26 0 0-1.5 1.3-.96 5.4 0 0 .8 2.9.32 4.4 0 0-1.04-.2-3.1 2.3 0 0-2.64 3.1-4.95.4 0 0 .7 3.8 5.06 3.2 0 0-2.1 1.7-.2 5.9 0 0 1.4 3-.8 6.8 0 0 3.8-1.5 3.7-6 0 0-.3-3 .8-5.1 0 0-1.1 2 1.5 6.1 0 0 2 3 .4 6.1 0 0 3.8-1.4 3.4-5.9-.3-4.5-2.6-2.6-1.1-6.8 0 0 .4 2.2 1.5 3.3 1.2 1.1 2.6 2.9 2 5.9 0 0 2.3-2.7 1.7-5.6-.5-2.8-1-3.7-1-3.7l7.1-4 3.5-6.3.2-10.2z" fill="#d40000" stroke="#000" stroke-width=".53" stroke-linejoin="round"/>
<path stroke-miterlimit="10" d="M434.8 256.37s-2.9-.2-3.4-2.45m-5.1-1.5s1.02-.03 1.93.9c0 0 .7 1.04 1.7.92" fill="none" stroke="#000" stroke-width=".53"/>
<path d="M439.1 247.8s-1.5 0-2.35-.72c0 0-.88-.6-1.4.36 0 0-.8 1.37.68 1.97 0 0 1.84 1-1.07 2.8 0 0 3.47-1.2 2.07-2.9 0 0-1.52-1.1-.96-1.5 0 0 .16-.3.76.1s1.8.3 2.27 0z"/>
<path fill="#784421" stroke="#000" stroke-width=".4" d="M484.88 256.1l1.78-.6L475 215.2l-.42.12z"/>
<path d="M446.06 300.66s-2.75-1.55-5.03.26c0 0 .24-1 1.97-1.45 0 0 .94-2.65 3.58-2.4 0 0-1.08 1.28-2.52 2.37 0 0 1.52.15 2 1.22z"/>
<path stroke-miterlimit="2.61" d="M436.37 307.05s-4.37-2.74-2-7.35c0 0 .68-1.33 2-1.06 0 0 2.72.84.6 4.62 0 0-1.08 2.44-.6 3.8zm8.85 4.35s-6.22-2.84-4.3-7.66c0 0 .58-1.63 1.96-1.5 0 0 2.4.1 1.92 3.3 0 0-.72 3.14.42 5.86z" fill="#64b4d1" stroke="#00247d" stroke-width=".4"/>
<path d="M443.9 293.4s-1.87 1.37-2.63 2.3c0 0-.76-.95-1.75-1.52 0 0 1.15-.15 1.76.36 0 0 .95-.92 2.63-1.15z"/>
<path stroke-miterlimit="2.61" d="M449.44 310.2s4.87-1.24 3.97-6.28c0 0-.4-2.2-2.5-1.9 0 0-2.5.63-.8 3.83 0 0 1 2.3-.5 4.34z" fill="#64b4d1" stroke="#00247d" stroke-width=".4"/>
<path stroke-miterlimit="2.61" d="M471.46 203.65s3.14.96 4.84 1.65c0 0 4.55 2.05 10.32 0 0 0 3.9-1.54 4.43-1.66l-3 4.56-.14 2.35 1.9 2.74s-1.1.4-4.4-1.6c0 0-3.7-2.9-8.1 0 0 0-2.4 1.6-4.4 1.6l2.9-3.2-1.1-2.9-3-3.6z" fill="#f5ce00" stroke="#000" stroke-width=".53"/>
<path d="M451.32 304.17s.18-.24-.03-.34c0 0-.3-.1-.4.2 0 0-.5.8-.1 1.9 0 0 .4.78.2 1.58 0 0 0 .3.1.3 0 0 .2 0 .2-.2 0 0 .2-.8-.2-1.5 0 0-.5-1.2 0-1.8z" fill="#fff"/>
<path d="M518.84 213.04s-3.5 1.8-4.97-.38c0 0-1.92-3.65 2.28-4.9 0 0-2.28-2.76.17-5.3 0 0 1.28-1.35 3.53-.35 0 0 .92-1.9 3.1-1.8 0 0 1.92 0 2.58 2.1 0 0 2.63-1.1 4.1.5 0 0 2.42 2.8-.96 4.9l-2.43.2-2.4-1.1-2.67.8s.7 2.7-2.33 5.5z" fill="#d40000" stroke="#000" stroke-width=".53" stroke-linejoin="round"/>
<path stroke-miterlimit="2.61" d="M491.05 210.2s-.1.73-.8.8c0 0-.76.26-1.2-.68l-.06-.3c-.1-.45-.2-1.7 1.1-2.73 0 0 2.2-1.9 6.4.3 0 0 3.3 1.6 5.6 2.9 0 0 6 3.2 6.7 3.4 0 0 2.6 1.3 6.6 1.5 0 0 5.5.4 7.8-3.5 0 0 1.8-3 0-4.8 0 0-.7-.9-1.9-.7-.5 0-1.1.3-1.6.9 0 0-.9 1.2.1 2.2 0 0 1.3.8 1.7-.9 0 0 0-.1 0 0s.3 1.3-.4 2.4c0 0-3.4 5-12.5-.2l-12-6.7s-6.1-3.1-9.7 1.7c0 0-2.9 4 .8 6.6 0 0 2.8 1.6 4.5-1 0 0 1.4-2.6-.9-3.8 0 0-2-1-2.8 1-.8 2 1.5 2.5 1.8 1.1 0 0 0-.3.1 0z" fill="#f5ce00" stroke="#000" stroke-width=".53"/>
<path stroke-miterlimit="2.61" d="M443.3 230.94v-7.54c0-.6.02-1.1.9-1.8.9-.74 1.87-1.88 3.24 1.38 0 0 2.7-2.84 3.6-3.26 0 0 1.55-1.33 2.62.6 0 0 1.44-2.17 2.58-2.7 0 0 2.7-1.76 2.8 3.5l2.1-1.95s1.62-1.32 3.4.5c0 0 3.06 2.94 3.48 3.8 0 0 .67.9.73 2.34 0 0 0 1.7.83 2.6 0 0 .95.9 1.88 1.1 0 0 2.18.1 2.96 2.1 0 0 .36-.3 1.43 9.5V259l-12.08 14.43-19.38-5.55-7.8-3.2-1.8-5.67 7.5-4.8 4-11-1.4-7.7-1.9-4.4z" fill="#e4cb5e" stroke="#000" stroke-width=".4"/>
<path d="M496.7 240.45l.93-1.37 2.2-1.7s3.34 8.8 3.5 10.72v2.73s5.02 1.28 5.9 9l-4.15 7.64-6.5-3.62-1.87-1.37v-22.04z" fill="#784421" stroke="#000" stroke-width=".4"/>
<path d="M435.16 300.8s.24-.32.07-.45c0 0-.1-.15-.4.2 0 0-1.3 1.48-.26 3.75 0 0 .12.33.33.22 0 0 .18-.1.02-.36 0 0-.94-1.87.24-3.36z" fill="#fff"/>
<path stroke-miterlimit="10" d="M454.75 299.3s.2-.67-.28-1.4c0 0-.32-.52-.2-1.2" fill="none" stroke="#000" stroke-width=".53"/>
<path stroke-miterlimit="10" d="M459.05 221.1s.02 1.9.56 3.28 2.4 3.78 2.5 5.08" fill="none" stroke="#000" stroke-width=".4"/>
<path d="M504.63 286.55s3.05.18 4.6.96c1.55.8 2.75 1.7 4.54 2.8 0 0 .84 1.1 4.37.5 0 0 6.1-1.4 6.1 3.3 0 0 7.3.6 4.3 7 0 0-2.02 5-6.2 1.5 0 0 2.68 3.9-2.52 5.4 0 0-3.7.9-4.8-2.9 0 0-.6-1.5.85-3.3 0 0-1.8-.4-3.05-2.3 0 0 3.83 4.8-.36 6.6 0 0-5.26 1.3-5.56-4.2 0 0 .43-2.5-1.6-3.4 0 0-4.2-.9-6.12-5.6 0 0 6.03-3.2 5.45-6z" fill="#d40000" stroke="#000" stroke-width=".53" stroke-linejoin="round"/>
<path stroke-miterlimit="10" fill="none" stroke="#000" stroke-width=".4" d="M456.64 229.46l4.98 40.18m-3.83-40.27l5.5 37.45m-4.6-37.62l6.4 37.14"/>
<path fill="#784421" stroke="#000" stroke-width=".4" d="M469 263.14l1.8-.6-11.67-40.26-.43.1z"/>
<path stroke-miterlimit="10" fill="none" stroke="#000" stroke-width=".4" d="M462.4 227.72l11.78 29.76m-12.56-29.28l11.36 31.08"/>
<path d="M442.97 308.54s-1.37-1.3-1.18-3.66c0 0 0-.5-.2-.57 0 0-.3-.1-.3.5 0 0-.4 2.5 1.2 3.9 0 0 .1.2.3.1 0 0 .2 0 .1-.2z" fill="#fff"/>
<path stroke-miterlimit="10" fill="none" stroke="#000" stroke-width=".4" d="M462.94 227.32l12.14 27.14M459.62 229l7.44 36.56"/>
<path stroke-miterlimit="2.61" d="M520.53 256.1c-5.32-3.03-6.5-9.72-6.5-9.72-1.27-6.67 1.33-11.95 1.33-11.95 3.44-7.26 9.33-8.62 9.33-8.62s-5.8 4.1-7.4 9.5c0 0-1.3 4.6-.6 9.1.7 4.5.4 3.4 1.5 6.8l2.2 5z" fill="#f5ce00" stroke="#000" stroke-width=".53"/>
<path d="M497.63 239.08l-22.35 7.05-1.22 9.96c-5.3 7.6-16.08 9-16.08 9l8.4 8.9 16.1 3.4 8.45-6.5 7.65-7.1c-.8-3.8-.36-9.4-.36-9.4 0-1 .36-3.2.36-3.2s-1.3-9.1-.95-12.3z" fill="#784421" stroke="#000" stroke-width=".24"/>
<path stroke-miterlimit="10" d="M474.37 253.6s14.72-4.6 23.5-8.3m-30.57 16.68s18.36-3.32 31.28-10.68l4.75-3.2" fill="none" stroke="#000" stroke-width=".4"/>
<path stroke-miterlimit="10" d="M503.33 250.83l-5.1 3.63s-20.54 9.47-36.18 9.72m36.17-3s-15.8 8.14-24.84 8.26" fill="none" stroke="#000" stroke-width=".4"/>
<path d="M517.04 238.44s4.7-2.17 6.94 0c0 0 3.1-1.93 6.38 0 0 0 3.1 2.03 5.27 4.27 0 0 1.5 1.3.95 5.4 0 0-.8 2.9-.32 4.4 0 0 1.04-.2 3.1 2.3 0 0 2.64 3.1 4.96.4 0 0-.72 3.8-5.07 3.2 0 0 2.12 1.7.28 5.9 0 0-1.35 3 .8 6.8 0 0-3.8-1.5-3.63-6 0 0 .32-3-.8-5.1 0 0 1.12 2-1.47 6.1 0 0-2 3-.36 6.1 0 0-3.75-1.4-3.4-5.9.37-4.5 2.64-2.6 1.17-6.8 0 0-.36 2.2-1.48 3.3-1.1 1.1-2.55 2.9-1.95 5.9 0 0-2.2-2.7-1.7-5.6s1.1-3.7 1.1-3.7l-7-4-3.5-6.3-.1-10.2z" fill="#d40000" stroke="#000" stroke-width=".53" stroke-linejoin="round"/>
<path stroke-miterlimit="10" d="M437.1 263.87s.66-3.12 3.65-1.9c0 0 1.02-5.1 6.46-5.28 5.5-.2 5.8 5.3 5.8 5.6 0 0 1.6-2.4 4.3-2.1 0 0 4.6-.3 2.9 7.1l.9.9s3.5-8.3 10.8-6.1c0 0 7.1 2.1 2.5 9 0 0 3.5 4.5 6.4 4.1 3-.5 5.6-1.4 8.5-6.6 3-5.2 9.8-6 11.5-5.7 1.8.3 3.1 1.4 3.4 2.6 0 0 3.6-12.1 16.6-10.2l5.2 2.7 2 .9-2.9 8.3-7.2 16.2-5.4 1.7-5.7-3.3-2 1-.1 4.8-7.5 5.4-5.2 2.1-5.7 3.9-1.3 3.5s-3.2-1.3-6.7 0l-1.2-2.9-3.3-3.2-13-6.1-2.3-7.6-2.4-1.1-2.7 3-3.9.4-5.8-3.9-6.1-17.8z" fill="#fff" stroke="#00247d" stroke-width=".53"/>
<path stroke-miterlimit="2.61" d="M493.76 204.88s-4.97-.22-4.8 4.93" fill="none" stroke="#000" stroke-width=".53"/>
<path stroke-miterlimit="2.61" d="M526.43 259.56c-8.65-2.66-11-11.95-11-11.95-1.77-6.9 1.07-13 1.07-13 3.95-9.2 10.63-9.2 10.63-9.2 3.35-.1 3.75 2.8 3.75 2.8.3 2.1-1.1 2.8-1.1 2.8-2.3 1.3-3.75-.4-3.75-.4-.96-1.2-.22-2.3-.22-2.3.6-.8 1.8-.4 1.8-.4.9.3.8 1.4.8 1.4h.1c.1 0 0 0 0 0s.2-1.3-1.1-1.5c0 0-2.6-.5-5.6 3.3 0 0-4 5.1-4 11.7 0 0-.5 12.5 12.5 15.7 0 0-1.4 2-3.9 9.3 0 0-2.8 9.4-5.5 14.5 0 0-3.5 7.3-11.5 4.3 0 0-4.7-2.1-4.7-5.5 0 0-.3-3.1 2.5-3.4 0 0 2.8-.2 2.8 2.2 0 0 .1 2.6-3 2 0 0-1-.2-.8-1.3 0 0 .2-.9 1.5-.5h.1v-.1s-.5-.2-1 0c0 0-.4.2-.5.9 0 0 0 .6.6.9 0 0 .8.3 1.4.2 0 0 .8 1.6 2.7 2.2 2.5.8 4.6 0 5.9-1 1.4-1.1 2.3-3 2.5-3.5.3-.4 2.6-5.7 4.4-11.3 0 0 1.5-4.8 2.8-7.3l.5-1z" fill="#f5ce00" stroke="#000" stroke-width=".53"/>
<path stroke-miterlimit="2.61" d="M502.04 283.17s1.6-.22 1.6 1.22c0 0-.1 2.1-2.65 1.6 0 0-2.6-.6-1.7-3.4 0 0 .6-2 3-1.7 0 0 2.3.1 3.3 3.2 0 0 .7 2.6-.6 4.9-1.5 2.5-5.3 4.2-7.1 4.9 0 0-7.3 2.8-9.5 4.5 0 0-3.3 2.4-1.9 4.7 0 0 .5.8 1.4.8 0 0 1 0 1.1-1s-.1.6-.6.8c0 0-.7.3-1.5-.3 0 0-.8-.8-.2-1.9 0 0 .9-1.5 2.9-.6 0 0 1.8.9 1 2.7 0 0-.7 1.7-2.8 1.7 0 0-1.6-.1-2.7-1.1-1.6-1.7-1.7-5-.3-6.7 0 0 1.3-1.8 4-2.9 1.6-.6 4.5-1.9 7.5-3.1 2.1-.9 4.1-1.9 5.4-3.4 0 0 1.1-1.3 1.4-3.4 0 0 .3-1.6-.7-2 0 0-.5-.2-1.1-.2 0 0-.1.1 0 .1z" fill="#f5ce00" stroke="#000" stroke-width=".53"/>
<path stroke-miterlimit="2.61" d="M502.17 283.16s1.8-.32 2.9 1.8c0 0 .66 1.37.77 2.16m.58-7.6s-1.8.32-.87 2.85c.87 2.4 2.48 3.17 2.96 3.5" fill="none" stroke="#000" stroke-width=".53"/>
<path stroke-miterlimit="2.61" d="M471.46 210.2s.1.73.8.8c0 0 .75.25 1.2-.68l.05-.3c.1-.45.2-1.7-1.1-2.73 0 0-2.2-1.9-6.4.3 0 0-3.3 1.6-5.6 3 0 0-6 3.2-6.7 3.4 0 0-2.6 1.3-6.6 1.5 0 0-5.5.4-7.8-3.5 0 0-1.7-3 0-4.8 0 0 .7-.9 1.9-.7.5 0 1.1.3 1.6.9 0 0 .9 1.2-.1 2.1 0 0-1.3.8-1.7-.9 0 0 0-.1 0 0s-.3 1.3.4 2.4c0 0 3.3 5 12.5-.2l12-6.7s6.1-3.1 9.7 1.7c0 0 2.9 4-.8 6.6 0 0-2.8 1.6-4.5-1 0 0-1.4-2.6.9-3.8 0 0 2-1 2.8 1 .8 2-1.5 2.5-1.8 1.1 0 0 0-.3-.1 0zm-29.48 45.9c5.32-3.03 6.48-9.72 6.48-9.72 1.3-6.67-1.3-11.95-1.3-11.95-3.45-7.26-9.35-8.62-9.35-8.62s5.8 4.1 7.4 9.5c0 0 1.3 4.6.6 9.1-.7 4.5-.4 3.4-1.5 6.8l-2.2 5z" fill="#f5ce00" stroke="#000" stroke-width=".53"/>
<path stroke-miterlimit="2.61" d="M468.75 204.88s4.96-.22 4.78 4.93" fill="none" stroke="#000" stroke-width=".53"/>
<path stroke-miterlimit="2.61" d="M436.08 259.56c8.64-2.66 11-11.95 11-11.95 1.77-6.9-1.07-13-1.07-13-3.9-9.2-10.6-9.2-10.6-9.2-3.3-.1-3.7 2.8-3.7 2.8-.3 2.1 1.1 2.8 1.1 2.8 2.3 1.3 3.8-.4 3.8-.4 1-1.2.2-2.3.2-2.3-.6-.8-1.7-.4-1.7-.4-.9.3-.8 1.4-.8 1.4s-.2-1.3 1.1-1.5c0 0 2.6-.5 5.7 3.3 0 0 4 5.1 4 11.7 0 0 .5 12.5-12.4 15.7 0 0 1.4 2 3.9 9.3 0 0 2.8 9.4 5.5 14.5 0 0 3.6 7.3 11.6 4.3 0 0 4.8-2.1 4.7-5.5 0 0 .4-3.1-2.5-3.4 0 0-2.8-.2-2.7 2.2 0 0-.1 2.6 3 2 0 0 1.1-.2.9-1.3 0 0-.1-.9-1.4-.5v-.1s.5-.2 1 0c0 0 .5.2.5.9 0 0 .1.6-.6.9 0 0-.7.3-1.3.2 0 0-.8 1.6-2.6 2.2-2.5.8-4.6 0-5.9-1-1.4-1.1-2.3-3-2.5-3.5-.2-.4-2.6-5.7-4.3-11.3 0 0-1.5-4.8-2.7-7.3l-.5-1z" fill="#f5ce00" stroke="#000" stroke-width=".53"/>
<path stroke-miterlimit="2.61" d="M460.47 283.17s-1.62-.22-1.62 1.22c0 0 .1 2.1 2.66 1.6 0 0 2.6-.6 1.7-3.4 0 0-.6-2-3-1.7 0 0-2.3.1-3.3 3.2 0 0-.8 2.6.6 4.9 1.5 2.5 5.3 4.2 7.1 4.9 0 0 7.3 2.8 9.5 4.5 0 0 3.3 2.4 1.9 4.7 0 0-.5.8-1.4.8 0 0-.9 0-1.1-1s.1.6.6.8c0 0 .7.3 1.5-.3 0 0 .8-.8.1-1.9 0 0-.8-1.5-2.8-.6 0 0-1.8.9-1 2.7 0 0 .7 1.7 2.8 1.7 0 0 1.6-.1 2.7-1.1 1.6-1.7 1.7-5 .3-6.7 0 0-1.3-1.8-4-2.9-1.5-.6-4.5-1.9-7.5-3.1-2.1-.9-4.1-1.9-5.4-3.4 0 0-1.1-1.3-1.4-3.4 0 0-.3-1.6.7-2 0 0 .5-.2 1.1-.2s0 .1 0 .1z" fill="#f5ce00" stroke="#000" stroke-width=".53"/>
<path stroke-miterlimit="2.61" d="M460.33 283.16s-1.78-.32-2.9 1.8c0 0-.66 1.37-.76 2.16m-.58-7.6s1.7.32.8 2.85c-.9 2.38-2.5 3.16-3 3.5m22.9-76.35s4.3-2.7 8.7.3" fill="none" stroke="#000" stroke-width=".53"/>
<path stroke-miterlimit="2.61" d="M452.35 235.94s.6-2.4-2.15-6.63c0 0-1.8-3.8-2.75-6.3m6.22-2.6s1.55 3.8 2.1 5.5c0 0 1.92 4.8 2.33 5.7" fill="none" stroke="#000" stroke-width=".4"/>
<path stroke-miterlimit="10" d="M454.44 238.6s1.63 1.75 1.44 4.7m-6.82-6.57s1.8.86 1.68 5.63c0 0-.18 3.47 2.5 5.22m-4.42 1.23s5.6-.6 5.92 2.9c0 0 .12 3.3 2.04 3.7 0 0 2.86.3 3.43 3m-9.6-5.6s1 1.5 2 2.1m5.3-5.7s1.5 2.2 1.7 3.5M464 223s1.32 1.8 2.6 2.63m2.67 7.97s2.8 1.36 2.3 8.4c0 0-.35 4.12.8 6.4" fill="none" stroke="#000" stroke-width=".4"/>
<path d="M456.1 228.8l.17.66s5 .2 7.7-3.2l-.3-.65s-4.35-.2-7.58 3.2z" fill="#784421" stroke="#000" stroke-width=".4"/>
<path stroke-miterlimit="10" d="M474.12 255.64s17.3-5.16 23.97-8.16" fill="none" stroke="#000" stroke-width=".4"/>
<path fill="#784421" stroke="#000" stroke-width=".24" d="M472.26 223.72l-.2-.56 8.56-3.26.2.57z"/>
<path stroke-miterlimit="10" fill="none" stroke="#000" stroke-width=".4" d="M473 223.45l5.67 27.85m-4.7-28.23l6.5 27.73m-5.4-28.15l7.13 27.53m-4.33-28.6l9.7 20.67m-8.42-21.14l10.35 20.6m-9.4-20.9l11.2 20.4m-13.02 10.5l4.4-1.4m-7.72-1.3s12.87-3.8 22.6-7.7m-22.77 9.1s16.3-4.3 22.7-7.5m-17.8 20.8l.8 2.6 2.3-.7-.8-2.6m4.2-1.1l.8 2.6 2.3-.7-.8-2.6M475 246.4l-.2-3.53 21.4-6.5 1.12 3m-13.5.77l1.2 3.16m6.3-5.4l1.4 2.96m.4-3.5l1.23 2.8m.44-3.3l1.4 2.94m0-3.4l2.3-1.4 1 2.6m-2.2-1.95l1.2 2.7"/>
<path stroke-miterlimit="10" d="M444.57 276.17s-4.18-4.24 0-8.4c0 0-4.54-2.2-3.82-5.8m11.3 17.56s-4.33.6-3.05-7.85c0 0-1.8 3.35-2.4 5.07-.48 1.3-.17 3.36 1.67 4.5.73.44 4.62 1.45 5.87-1.13m-6.93-13.5s-1.7 1.62-.5 4.6m2.4-4.22s.2 2.9 1.7 4.53m-.4-5.67s0 3.4 2.5 5.52m-1.2-6.7s0 3.83 2.9 6.2m11.3-.6s1.5-3.12 4.5-2.97c0 0-1.4.7-1.4 2.2 0 0-.1 2.4 2.5 2.7 0 0 2.1.3 3.2-.8" fill="none" stroke="#00247d" stroke-width=".53"/>
<path stroke-miterlimit="10" d="M472.75 284.62s-7.45-3.5-6.67-8.54c0 0 .3-3.07 3.3-4.52m-1.57 3.2s-.6 2.17.9 3.68m.9-5.16s-.9 2.38.6 4.16m1.2-5.32s-1.1 1.97.2 3.75m-7 9.26s4.1 3.53 7.3 3.56m-8.5-2.5s3.8 3 6.2 3.5M462 287s4.7 4.1 7.6 4.4m11.5 3.8s-4.63 2.5-1.05 5.1m-1.9-7.88s5.24-2.74 7.5-3.77m-5.6 5.2s7.56-4.64 9.8-5.63m-5.92 5.9s6.48-4.3 9.95-6.14m-5.62 6.04s4.44-3.5 8.75-6.03m1.5-4.4s-2.2-3.2-9.3 0c0 0 2.7-2.4 7.9-4.3m7.2-13.8s.6 2.6 0 4.1m-11.9 8.7s1.5-2.2 5.3-3.3c0 0 1 2.5 4 2 0 0 4.5-.9 3.1-5.8 0 0-.9-3.7-6-4m15.2-6.1s5.2.9 5.1 5.1c0 0 .5 6.3-6.2 7.5m5.5-10.1s1.5-3.1 4.6-4.4m-3.8-1.8s1.4 2.2 2.4 2.6m-3.1-.8s1.4 1.6 1.8 1.9m-2.2-.4s.7 1 1.4 1.3m-27.9-25.8s1-1.7 3.5-1m10.2 13.2s1.6-6.7 7.1-4.2m-2.2-.6s.6-3.1-.8-4.6m-3 4.4s.7 1.2.1 2.3" fill="none" stroke="#00247d" stroke-width=".53"/>
<path stroke-miterlimit="2.61" d="M517.25 311.4s6.22-2.84 4.3-7.66c0 0-.6-1.63-1.97-1.5 0 0-2.4.1-1.92 3.3 0 0 .72 3.14-.4 5.85z" fill="#64b4d1" stroke="#00247d" stroke-width=".4"/>
<path d="M519.5 308.54s1.37-1.3 1.17-3.66c0 0-.08-.5.17-.57 0 0 .27-.1.3.5 0 0 .4 2.5-1.26 3.9 0 0-.12.2-.3.1 0 0-.2 0-.08-.2z" fill="#fff"/>
<path stroke-miterlimit="2.61" d="M526.1 307.05s4.36-2.74 2-7.35c0 0-.7-1.33-2-1.06 0 0-2.73.84-.6 4.62 0 0 1.07 2.44.6 3.8z" fill="#64b4d1" stroke="#00247d" stroke-width=".4"/>
<path d="M527.2 300.8s-.25-.32-.1-.46c0 0 .12-.15.4.2 0 0 1.32 1.5.27 3.76 0 0-.12.33-.33.22 0 0-.18-.1 0-.36 0 0 .93-1.87-.25-3.37z" fill="#fff"/>
<path stroke-miterlimit="2.61" d="M513.03 310.2s-4.88-1.24-3.98-6.28c0 0 .48-2.2 2.54-1.9 0 0 2.4.63.8 3.83 0 0-1 2.3.5 4.34z" fill="#64b4d1" stroke="#00247d" stroke-width=".4"/>
<path d="M511.14 304.17s-.18-.24.03-.34c0 0 .2-.1.36.2 0 0 .5.8.08 1.9 0 0-.4.78-.2 1.58 0 0 .1.3-.1.3 0 0-.1 0-.2-.2 0 0-.2-.8.2-1.5 0 0 .5-1.2-.1-1.8z" fill="#fff"/>
<path d="M516.53 300.66s2.75-1.55 5.02.26c0 0-.23-1-1.97-1.45 0 0-.94-2.65-3.57-2.4 0 0 1.1 1.28 2.6 2.37 0 0-1.5.15-2 1.22zm2.03-7.27s1.87 1.3 2.63 2.3c0 0 .7-1 1.7-1.6 0 0-1.2-.2-1.8.3 0 0-1-.9-2.7-1.2z"/>
<path stroke-miterlimit="10" d="M507.7 299.3s-.2-.67.3-1.4c0 0 .3-.52.2-1.2m19.57-40.33s2.9-.2 3.4-2.45m5.1-1.5s-1.02-.03-1.94.9c0 0-.7 1.04-1.7.92" fill="none" stroke="#000" stroke-width=".53"/>
<path d="M523.47 247.8s1.5 0 2.35-.72c0 0 .87-.6 1.4.36 0 0 .8 1.37-.68 1.97 0 0-1.84 1 1.07 2.8 0 0-3.4-1.2-2-2.9 0 0 1.5-1.1 1-1.5 0 0-.1-.3-.7.1s-1.8.3-2.3 0z"/>
<path stroke-miterlimit="2.61" d="M525.53 211.2s.68-.94.4-3.74 2.15-3.1 3.08-2.3c0 0 1 .83.1 2.6-.5 1.02-1.3 2.35-3.5 3.43z" fill="#64b4d1" stroke="#00247d" stroke-width=".4"/>
<path d="M526.44 209.1s.9-.98.47-3.1c0 0 0-.2.2-.22 0 0 .2-.06.3.15 0 0 .5 2.27-.5 3.5 0 0-.2.18-.3 0 0 0-.1-.13 0-.33z" fill="#fff"/>
<path stroke-miterlimit="2.61" d="M524.75 210.17s-.07-1.12-2.02-3.04c-1.95-1.9-.34-3.68.85-3.66 0 0 1.23.02 1.68 1.9.25 1.1.47 2.6-.5 4.8z" fill="#64b4d1" stroke="#00247d" stroke-width=".4"/>
<path d="M524.45 207.72s.03-1.38-1.73-2.82c0 0-.14-.16-.06-.25 0 0 .13-.2.3-.05 0 0 1.9 1.52 1.94 3.18 0 0-.02.27-.24.2 0 0-.2 0-.2-.25z" fill="#fff"/>
<path stroke-miterlimit="2.61" d="M522.1 209.32s-.5-.9-2.9-1.77c-2.4-.85-1.76-2.95-.75-3.4 0 0 1.05-.46 2.18.95.65.8 1.43 2 1.48 4.23z" fill="#64b4d1" stroke="#00247d" stroke-width=".4"/>
<path d="M521.05 207.64s-.54-1.27-2.74-1.82c0 0-.2-.1-.1-.2 0 0 .1-.23.3-.17 0 0 2.4.56 3.1 2.05 0 0 .1.25-.1.28 0 0-.2.07-.3-.14z" fill="#fff"/>
<path stroke-miterlimit="2.61" d="M523.6 210.24s-1.1.32-3.68-.92-3.7.92-3.25 2.07c0 0 .47 1.2 2.46.9 1.15-.1 2.7-.4 4.48-2.2z" fill="#64b4d1" stroke="#00247d" stroke-width=".4"/>
<path d="M517.63 211.06s1.16.72 3.28-.1c0 0 .3-.04.3.08 0 0 .1.2-.1.28 0 0-2.2.9-3.7.1 0 0-.2-.14 0-.3 0 0 .1-.16.4-.06z" fill="#fff"/>
<path stroke-miterlimit="2.61" d="M519.85 202.1s1.28.63.98 2.14" fill="none" stroke="#000" stroke-width=".53"/>
<path stroke-miterlimit="10" d="M525.53 202.32s.5 1.6-.05 2.45" fill="none" stroke="#000" stroke-width=".53"/>
<path stroke-miterlimit="2.61" d="M436.82 211.2s-.7-.94-.4-3.74c.27-2.8-2.15-3.1-3.1-2.3 0 0-.95.83-.06 2.6.5 1.02 1.33 2.35 3.56 3.43z" fill="#64b4d1" stroke="#00247d" stroke-width=".4"/>
<path d="M435.9 209.1s-.9-.98-.47-3.1c0 0 0-.2-.12-.22 0 0-.2-.06-.2.15 0 0-.5 2.27.6 3.5 0 0 .2.18.3 0 0 0 .2-.13 0-.33z" fill="#fff"/>
<path stroke-miterlimit="2.61" d="M437.6 210.17s.06-1.12 2-3.04c1.96-1.9.36-3.68-.84-3.66 0 0-1.23.02-1.68 1.9-.25 1.1-.47 2.6.5 4.8z" fill="#64b4d1" stroke="#00247d" stroke-width=".4"/>
<path d="M437.9 207.72s-.04-1.38 1.72-2.82c0 0 .15-.16.06-.25 0 0-.13-.2-.3-.05 0 0-1.9 1.52-1.94 3.18 0 0 .02.27.24.2 0 0 .2 0 .22-.25z" fill="#fff"/>
<path stroke-miterlimit="2.61" d="M440.24 209.32s.5-.9 2.9-1.77c2.4-.85 1.76-2.95.75-3.4 0 0-1.1-.46-2.2.95-.7.8-1.5 2-1.5 4.23z" fill="#64b4d1" stroke="#00247d" stroke-width=".4"/>
<path d="M441.3 207.64s.54-1.27 2.74-1.82c0 0 .2-.1.16-.2 0 0-.04-.23-.25-.17 0 0-2.36.56-3.1 2.05 0 0-.1.25.13.28 0 0 .2.07.3-.14z" fill="#fff"/>
<path stroke-miterlimit="2.61" d="M438.73 210.24s1.12.32 3.7-.92c2.57-1.24 3.7.92 3.25 2.07 0 0-.47 1.2-2.47.9-1.1-.1-2.6-.4-4.4-2.2z" fill="#64b4d1" stroke="#00247d" stroke-width=".4"/>
<path d="M444.72 211.06s-1.17.72-3.3-.1c0 0-.2-.04-.24.08 0 0-.1.2.1.28 0 0 2.27.9 3.7.1 0 0 .23-.14.07-.3 0 0-.1-.16-.33-.06z" fill="#fff"/>
<path stroke-miterlimit="2.61" d="M442.5 202.1s-1.3.63-1 2.14" fill="none" stroke="#000" stroke-width=".53"/>
<path stroke-miterlimit="10" d="M436.8 202.32s-.5 1.6.07 2.45" fill="none" stroke="#000" stroke-width=".53"/>
<path d="M492.63 187.7s.82 2.32.47 4.42c-.32 1.9.1 2.38.8 2.75.58.32 1.95-.24 2.1-1.72 0 0 1.63 3.15-1.5 5.28 0 0-2.27 1.38-4.18-.47-.68-.65-.98-2.46-.65-4.13 0 0 .5-2.27-.33-4.6 0 0 1.3 1.37.96 4.1 0 0-.66 4.9 2.98 4.67 0 0 2.5-.03 2.58-3.07 0 0-.94 1.08-2.1.72-.83-.25-1.6-1.05-1.46-2.3.14-1.33.5-3.64.33-5.66zm-4.1 8.05s-.2 3.88-3.76 4.83c0 0 .5-.7-.3-2.64 0 0-.78-1.12-.72-2.87 0 0-1.13.88.16 3.22.8 1.4.1 3-.1 3.1-.2 0 5.9-.8 4.8-5.7zm-4.62-3.86s-.8-1-.9-3.2c0-2.3-.5-2.8-.7-3.1 0 0 .5 1.9.3 3.1-.1 1.2.1 1.8.3 2.4 0 0-1.9.3-3.1-2.5-1.1-2.7-2.3-2.5-2.9-2.5 0 0 .7.1 2.1 2.5 1.4 2.4 1.8 2.9 5.2 3.1zm-9-5.9s1.1 2.7 1.2 4.1c0 0-2.6-.9-3.3-3.1 0 0-2.7.9-1.7 4.1 0 0-2.4-.9-3.4-2.8 0 0 1.4 1 2.6 1.4 0 0-.1-2.6 3.1-3.6 0 0 .5 2.3 2.1 2.8 0 0-.1-1.5-.4-3.1zm4.3-4.6s.9 1.3 2.8 1.3c.9 0 1.8-.2 2.8-1.4 0 0-.1 2.2-2.7 2.3 0 0-2.7.1-2.7-2.3zM467.9 197s1.3 1.25 1.6 1.65c0 0 .95.94 1.8-.27 0 0 1.02-1.94 2.3-1.88 0 0-.9.63-1.93 2.46 0 0-.28.67-1.04.75-.3.1-.8.2-1.4-.5 0 0-.6-.7-1.3-2.1zm14-24.63c-2.75 0-.45 2.1-.45 2.1.06 3.36-2.63 4.4-4.46 3.42-1.9-1-.4-3.5-.4-3.5s-2.1 1.3-.8 3.3c1.3 1.9 4.7 1 6-.8 1.2 1.8 4.7 2.7 6 .7 1.3-2-.8-3.4-.8-3.4s1.4 2.4-.4 3.4c-1.9 1-4.5-.1-4.5-3.4 0 0 2.3-2.1-.5-2.1zm1.63-3.62s1 1.63.8 4.1c0 0 .9-2.47-.72-4.1zm-8.3 3.83s-.2-1.78-1.94-1.93c0 0 1.4 1.06 1.9 1.93zm13.47 0s.2-1.78 1.95-1.93c0 0-1.46 1.06-1.93 1.93zm-16.2 2.72s1.37.42 2.2-.6c0 0-1.6.42-2.2.6zm-4.5-10.92s1.6-.18 3.2 2.2c0 0-1.6.84-1.98 1.36 0 0 0-.8.77-1.48 0 0-.3-1.2-2-2.08zm26.8 0s-1.6-.18-3.2 2.2c0 0 1.57.84 1.96 1.36 0 0 0-.8-.77-1.48 0 0 .3-1.2 2-2.08zm-12.36 1.78s1.43.4 3.23-.6c0 0 2.22-1.18 3.62 0 0 0-1.3-.55-3.6.6 0 0-2.4 1.3-3.3 0z"/>
<path d="M483.87 167.6s1.23-2.14 4.96-1.72c0 0-1 3-4.96 1.73z" fill="#fff"/>
<ellipse cx="486.45" cy="166.94" rx=".74" ry=".94" fill="#784421"/>
<ellipse cx="486.45" cy="166.94" rx=".44" ry=".57"/>
<path d="M475.86 163.02s2.36.15 3.8 1.06c0 0 1.52.9 3.25-.4 0 0 1.9-1.08 3.1-2.6 0 0-2.8 2-3.9 2.3 0 0-1-.75-1.4-1.84 0 0 .2-.8 1.7-2.32 0 0-2.1.64-2.5 2.4 0 0 .4 1.1 1.2 1.95 0 0-.4.18-1.4-.46 0 0-2.2-.7-3.8 0zm6 14.2c-2.05 1.76 0 1.57 0 1.57s2.04.1 0-1.6zm-1.2-11.06s-1.42.4-3.22-.6c0 0-2.2-1.18-3.62 0 0 0 1.23-.55 3.6.6 0 0 2.36 1.3 3.25 0z"/>
<path d="M479.18 167.6s-1.23-2.14-4.96-1.72c0 0 1 3 4.96 1.73z" fill="#fff"/>
<ellipse cx="476.6" cy="166.94" rx=".74" ry=".94" fill="#784421"/>
<ellipse cx="476.6" cy="166.94" rx=".44" ry=".57"/>
<path d="M554.06 148.26v135.5c0 36.2-72.36 47.97-72.36 47.97s-72.36-11.76-72.36-47.96v-135.5h144.72z" fill="none" stroke="#000" stroke-width="1.28"/>
</svg>

After

Width:  |  Height:  |  Size: 25 KiB

View File

@@ -0,0 +1,36 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="480" width="640" viewBox="0 0 640 480">
<path fill="#f7e017" d="M0 0h640v480H0z"/>
<path d="M0 33.3v213.4l640 100V233.3z" fill="#fff"/>
<path d="M0 146.7v100l640 200v-100z"/>
<g transform="translate(-160) scale(.67)" fill="#cf1126">
<path d="M695.7 569.7c-19.3-2.6-37-8.7-49.4-17.2-2.4-1.6-4.6-3-5-3-.4 0-.6 2-.6 4 0 6.5-2.6 9.7-9 11.4-6.2 1-15.6-2-23.2-8-8-7-17-12-24.7-14-6.4-2-14.8-2-21 0-2.7 1-6 2-7 3-1.2 0-2.4 1-2.8 1-1 0-1-7 .2-9 1.5-3 5-6 9.4-8 2.2-1 4-2 4-3s-.8-2-1.7-4c-3-5-2-10 3-14s14-5 21-2l4 1c1 0 0-2-3-6-3-5-4-7-4-13 0-7 6-13 13-14 6 0 9 2 18 10 25 24 53 38 86 41 8 1 25 0 34-1 29-5 59-19 82-41 6-6 9-8 14-8 4 0 7 1 11 5 3 3 4 6 3 12-1 3-1 5-3 8-3 4-3 5 3 3 7-3 17-2 22 3 4 4 4 8 1 14l-2 4 5 1c6 1 10 5 10 12 0 2 0 4-1 4s-3-1-5-2c-7-3-11-4-20-4-6 0-8 0-13 1-7 2-14 6-20 11-7 6-11 8-17 8s-10-2-12-5c-1-2-1-3-1-7v-5l-5 3c-7 4-11 7-19 10-23 9-56 13-82 9z"/>
<path d="M706.3 525.2c-38.5-3.7-75.5-23.8-98-55.7-24.3-33.2-32-77-24.5-117.2 4-18.3 12-36.6 25.5-49.6-10.8 23-14.5 49.4-8.7 74.3 9 49.8 51 92 101.3 99.2 19 5.7 40-.4 59-6.5 42-14.8 74-54.6 78-99 3-24.2-1-49.2-11-71 6 3.2 14 16 18 24.7 16 31 16 68 7 101.2-13 42-45 79-88 92.4-20 6.3-40 8.2-60 7.2z"/>
<g id="a">
<path d="M512 470c-2.5-.5-5.3 2-4.3 4.6 1.8 2.6 5 4 7.8 5.2 6.7 2.7 14 3.8 21.4 3.6h1c6 0 11-1 17-3 3-1 7-2 8-5.4 1-2-1-4.3-3-4-3 .8-6 2.2-9 3-7 1.8-14 2.6-21 2-5-.6-10-2.2-15-4-2-1-3-2-5-2z"/>
<path d="M514.8 459.5c-2.5-.4-4.7 2.6-3.7 5 2 2.8 6 4.3 9 5.6 6 3 11 4 17 3h2a37.6 37.6 0 0 0 15-2c3-1 6-2 8-5 1-1 1-4-2-4-1 0-3 2-5 2-6 3-13 4-20 4-4 0-8-2-12-4-2-1-3-2-5-2z"/>
<path d="M518.3 449.6c-2.2-.3-3.7 2.2-3.3 4.2.3 1.7 1.8 2.8 3 4 5.4 3.8 12.2 5.5 18.7 5.3h1.6c4.2 0 8.3-1 12-2 2.5-1 5.4-2 6.3-5 .4-1 .6-3-1-4-1.4 0-3 1-4.4 1-4.8 3-10 4-15.5 4-4.7 0-9-2-13-4-1.6 0-2.8-2-4.4-2z"/>
<path d="M481.5 302.7c-3.2 3.3-.7 9.3-1 13.5 1.8 13.2 4 26.5 8.8 39 6 12 18.8 18.5 26.5 29.2 2.8 5 1.8 11.3 2.4 17 .4 15.3.3 30.7 0 46 7 3.6 14.5 7 22.5 5.7 4.7-1 13.5-1 14.5-6l-1-79c-2.7-8-11-12-17-17a155.5 155.5 0 0 1-14.3-16c-3-4-13-6-10 2 2 7 7 12 9 19 0 4 5 11 1 14-3-4-6-8-11-10-5-3-12-5-14-10-1-8-6-15-11-22 1-7 0-16-7-21h-1z"/>
<path d="M491.4 304.2c-3 .5-2.8 4.2-1.5 6.2 1 4.3 1 9 1 13.4 5 6.2 9 13.6 10 21.7 0 3 3 4 5 5.5 5 3 10 5.4 14 9.3 1 1 1 2 1 0-1-2.5-1-5.4-3-7.3-3-3-6-5.5-10-6.4-1-4.2-3-8-4-11.6-2-3.5-4-7.2-8-9.4 0-6 0-12.5-3-18.2-1-1.4-2-3-4-3.2z"/>
<path d="M499.7 306.6c-2 .6-1.6 3.2-1 4.7 1 4.4 1.2 8.8 1 13.2 4 3 6.2 7.4 8.4 11.6 2 3 3 6 4 9 3 1 6 3 8 5-1-2-3-5-4-7s-3-5-3-8c-3-3-4-7-4-12 0-4-1-9-4-13 0 0-1-1-3-1z"/>
<path d="M509.2 308c-1.2.2-1.8 1.2-2.4 2-.3 1 .8 2 1 3a21.8 21.8 0 0 1 1.4 10.3c0 2.5.8 5 2 7 .4-1.5 2-2.6 3.4-2.8.6 0 1.5.2 1-.7-.3-4.8-1-9.6-2.7-14-1-1.7-2-3.4-3-4.5 0-.2-1-.4-1-.3z"/>
</g>
<use height="100%" width="100%" xlink:href="#a" transform="matrix(-1 0 0 1 1440 0)"/>
<path d="M715.7 476c-13.5-1.3-25.7-11-30-24 .4-2.2 3 1.2 4.4 1.5 3 1.3 6 2.4 8 2.6 4 2 6 5 10 7 2 2 7 4 6 0-1-2-2-4-1-7 2-4 5-7 8-11 2 0 4 4 5 5 3 4 5 8 4 12-1 2-2 6 1 5 4-1 8-4 11-7 3-2 7-2 10-4 2 0 5-3 5-2-1 5-4 9-7 13-5 6-11 10-19 11-4 1-9 1-13 1z"/>
<path d="M731.5 460.2c.3-2.7-.3-5.5-1.7-8-2-4.2-5-8-8-12-2.8-1.5-4.3 3.8-6 5.3-3 4.3-6.6 8.7-6.8 14-1.6 2.5-4.6-2-6-3.5-2.3-3.5-4.2-7.6-4-12-.2-7 1.2-14 3.7-20.6 2-5.6 5-11 4.8-17 .2-4.7-.7-9.7-4.4-12.8-3-2.8 3-3.4 5-2 3 .3 5 5.5 8 4.2 1-2.7 2-6 4-8 3-3.3 5 1.2 6 3.4 2 1.8 0 6.5 3 6.6 3-2.3 6-6 10-7 2-.8 5 0 3 2-3 2.8-5 6.3-6 10.6-1 5.3 1 10.6 3 15.4 4 9.4 8 20 6 30.5-1 4.6-4 8.6-8 11.3 0 .3-1 .3-1-.4z"/>
<path d="M726.7 389.6c-1.4-2.6-3.2-5.2-5.6-7-2 0-3 3-5 4.6-1 2-2 5.6-5 3-4-2.7-5-8.4-5-13 0-7.7 3-14.7 6-21.7 2-4.3 2-9.2 0-13.6-1-6-5-9-8-13 0-2 4-1 6-1 4 1 6 3 8 6 2-1 1-4 2-6 0-3 4-6 5-2 2 2 0 6 3 7 3-1 4-4 6-5 3-2 6-2 8-1 1 2-2 4-3 6-4 5-5 12-3 18 2 5 4 9 5 14s1 11-1 17c-1 3-4 5-7 7-1-1-1-2-1-3z"/>
<path d="M711.6 327c-3.4-2.6-4.5-5-4.5-9.6 0-2.3 1-3.6 2-5.8 3-3.2 2-4.2-1-3.3-5 1.5-8 .2-8-4.3 0-2.2 1-3 4-6.7 3-2.8 4-4.3 3-4.8 0-.4-3 2-9 7.8-4 4.7-10 9.4-11 10.6-10 6-19 7-23 2-2-3-2-4 1-6l5-4c3-3 12-10 16-12s5-3 3-3c-3 0-12 6-20 13-2 2-5 4-7 5-3 1-11 2-14 1-2-1-6-5-6-6s1-1 2-2l5-3c6-5 17-11 26-12 3-1 2-2-1-2-6 0-18 6-25 12-8 7-21 6-25-1l-1-3 6-2c3-1 9-4 15-7 9-5 12-6 18-7 3-1 3-2 1-3-3-1-9 1-18 6-12 6-16 7-22 6s-9-2-14-7c-3-3-7-11-7-12h3c2 0 7 1 13 1 8 0 11-1 15-2 7-2 17-7 24-12 13-10 23-14 37-14 13 0 20 3 27 10 3 2 5 4 5 3 0 0 1-4 1-9 0 0 4-1 5 0 0 8 0 8 2 8l2-2c1-3 5-6 9-8 9-5 25-5 37-1 5 2 11 5 16 10s17 10 24 12 19 2 25 1l5-1c3 0-1 8-6 12-8 8-19 8-34 0-9-5-21-8-21-5 0 0 1 1 2 1 4 0 10 2 19 6 10 4 15 6 18 6 2 0 2 1 0 5-3 3-6 5-12 5s-8-1-13-5c-8-7-28-14-27-10 0 1 1 1 3 2 7 1 15 5 23 11l6 4c1 1 1 1 1 3-1.5 2-5 5-9 5-5 0-10-1-15-5-10-8-20-14-23-14-2 0-1 1 3 4 6 3 12 7 16 11 2 2 4.8 3 5 4 2 1 2 2 0 5s-5 4-9.3 3c-9-1-16-5-26-16l-8-8c-1 0 0 2 2 5 3 4 4 6 2.4 9-1 3-3 3-7 2s-4 0-2 3c4 5 3.7 11-1 15-1 1-3 2-3 2-.5 0-1.5-1-2.4-2-3-4-5.6-4-8.6 0l-2 3-3-2z"/>
<path d="M726.7 233l-5.2 4-4.6-3.4v27.8h9z"/>
<path d="M695 204.3c-1 13-4.5 22.2-9 32.3l11-10.3 7.7 9.2 8.4-9.4 9 8 8-8 9 10 8-8 13 9c-4-10-10-18-10-33-12 9-41 11-53 1z"/>
<path d="M717 197.6c-4.5 0-9.2 0-13.4 1-3 .5-5.6 1.5-7.8 3 .3 8.6 41 12 52 .2-2.4-1.7-5.2-2.7-8.3-3.3-4-.8-8.6-.8-13-1l.2 7H717v-7z"/>
<path d="M725 154h-6.4v49.4h6.4z"/>
<path d="M725 155.2l-2.5 23.7 24.3 11-12.3-17 16.8-6zm-2.8-6c-3.7 0-6.4 1.3-6.4 3 0 1.5 2.7 3 6.4 3s6.4-1.5 6.4-3-2.7-3-6.4-3z"/>
</g>
<g fill="#f7e017">
<path d="M314 376c2.7-1 4.2-2.6 5.3-5.7.5-1.6 1-3.2.8-3.6 0-1-1-1-2 0-1 .8-1 1.2-1 2.7 1 3.7 0 4.7-7 5.4 0 0-2 0-4-.3-3-.4-4 0-3 1l2 1c2 .4 9 0 11-.6zm14.7-.7c.4-.4 1.8-1 3-1.5 1.7-.5 2.6-1 3.3-2.2 2-3 1.7-5.7-1.3-9.3-1.7-2-2.4-2-3.7.3-1.2 1.8-1 2 .5 2.4 1 .2 1.7.8 2 1.6 2 3 1.4 5-1.2 5-2.4 0-3 .4-3.8 2-.3.8-.6 1.6-.6 2 0 .5 0 .4 1-.3zm-4.8-3.5v-8c0-3.4 0-6.3-1-6.4-1-.4-3 .8-3 1.7v10c0 6 0 7 1 4z"/>
<path d="M312.6 369l.7-5c0-1.7.5-3.8.7-4.7.7-2.3 0-3-1.8-1.6l-1.4 1 .3 3.3c1 3 0 8.5 0 10.7 0 .6 0 .4 1-.5 1-.7 1-2 2-3.2zm-10 1.6c2.4-2 2-5.6 2.7-8.4 0-2 1.2-4 .4-5.8-2.3.4-3.7 2.6-2.5 4.7 0 3 0 6-1.3 8-2 2-5 1-5-1 1-3-3-1-5-1-1 1-4 1-3-1-1-2-4-1-6-1s0-3-3-3c-5 0-10 0-14-2-3-1-2-4-1-5 1-2 1-5 4-7 2-2-2-1-3 0-3 1-1 5-2 6-1 2-3 4-5 4-4-1-6-4-8-6-2 0-1 4 0 4 2 2 4 3 7 4 2 0 2 3 5 4 4 2 8 3 13 3 2 0 1 4 3 3 1 1 4 0 4 1-2 3 2 3 3 2 2 0 4-1 5 2 1 2 4 2 6 1z"/>
<path d="M262.7 350.4c.8-1 2-3 2.5-4.2.6-1.4 1.5-3 2-3.6 1.2-1.2.5-2-1.3-1.6-1 .2-2 .6-2 1.5-1 2.8-2 5.7-3 7-2 2.5-2 2.6-1 2.6 0 0 1 0 2-1zm-25-15.7c-1.8 0-2 1.2 0 1.8.8.3 1.6 1 2.2 2.3 1 3.5 2 4 7 4.6l3 .2v3.7l2-1c2-1.2 4-3.8 4-5.4 0-2-2-3-4-3-1 0-2 0-3 1-4 2-7 2-9-2-2-3-4-4-5-4zm16.4 6.5c1 0 2 .7 1 2 0 .8-1 .8-1 0 0-1 0-2 1-2zm127-4c-1 0-1 .2-2 1.4-1 2-1 6 0 7.4 1 1 1 1 3 .3 2-1 3-1 3 .2 0 3-4 8.7-9 11.7l-2 2c0 .8 2 .7 4-.4 3-1.4 7-5 8-8 1-2.3 2-3 2-7v-6.2c-1-1.3-1-1.5-3-1.5zm0 2.5c1 0 1 .2 2 1.6v2.3c-1 .7-1 .7-1-.4-1-1.6 0-3.5 1-3.5zm-20 28.5c4-2 6-4 8-7.2l2-3.2c0-.5-2-1.4-3-1.4s-1-.8-1-3c1-2 0-4.8-1-4.8 0 0-1 .5-1 1v2.8c1 2 0 3.6-2 5-1 .5-1 1.2-1 2v1l2-1.2 2-1 2 .8c1 .5 1 1.3 1 1.8 0 2.4-7 6.4-11 6.8-2 .2-3 0-4-.8 0-.7-1-1.3 0-2v-2.6c1-2 0-1.8-2 .6-1 2-1 4-1 5.2 1 1 5 1.8 8 1.6 2 0 4-.5 6-1.4zm26-14.5c3-2.5 4-5.5 4-10V340l2-1c3-1.2 6-3.7 6-5 0-1.6 0-1.5-2 0-1 1.2-2 2-6 3.8-1 .4-1 .7-1 5 0 5-1 6.8-3 10.2-2 2-2 2.3 0 2.3 1 0 2-.8 3-1.8zm-27-2.7c0-1-1-1.4-1-1v1c1 .7 2 .5 2-.2zm37-9.8c1-.7-1-1.2-1-.6v1c1 .6 2 .4 2-.4zm-44-25.8c-1 .5-1 1.5-2 2.3v1c2 1.7 3 4.2 4 6.5 1 2.7 2 5.5 1 8.4 0 1-1 2-2 1.8-2 0-4-.7-6-.7s-3 1.8-5 1.6c-1 0-1-2.4-2-1.7v4c0 .3 1 0 1 .2h4c0 1 0 2.5 1 3.5 2 .5 3 0 4-.4 2-1 2-2 2-4 1-2 2-1 3-2 3-1 4-3 4-6 0-4-1-8-3-11l-1-5zm-6 21.8c2 0 2 1.6 2 2.7 0 1-2 0-2-1s0-3 1-2z"/>
<path d="M296 324.8c-.6 0-1.3.2-2 .7-3.5 2.5-4.4 5.4-2 6.6 1.7 1 1.3 2-1.5 4-4 2-7.5 2-14.2-1-1.6 0-2 0-1.7 1 .4 2 1.8 3 5 3 3.7 1 8 1 11 0 1.2 0 2.8-2 4.2-3l2.2-2 2.5 1c3 1 3.2 1 3.2 2s0 1 3 2l4.6 1c1.3 0 2 1 2.4 1 .5 1 1 1 5.6 1h7.2c1.4 1 3 1 4 1 3.5 0 8-3 8.8-5 0 0 1.3-1 2.7-1 3.4-1 3.5-1 .4-2-1.4 0-3.5 0-4.6-1-1.2 0-2.7-1-3.5-1-1.7 0-3.3 1-3.3 3 0 1 .2 1 2.3 0 2 0 2.4 0 3.4 1 .7 1 1 1 1 2-.5 1-4.4 3-6.2 3h-3c-1.6-1-3.8-1-4.3 0-.2 0-.6 0-1.3-1l-1-1-3 1c-3 1-4 1-4 0h-4c-4 1-5 0-5 0-1-1-1-1-1-2v-2h-3c-4 1-5 0-5-3 0-2-1-3-3-3zm-1 2.8c.2 0 .4 0 .6.4.4.3.6 1 .4 1.3-.3 1-2 1-2.3 0-.2-.5 0-1 .5-1.3l.8-.4z"/>
<path d="M288 330.4c2.4-1.5 2.4-1.4 2.7-5.5.2-3 .2-4-.6-4-1 0-1 1-1 3 0 1 0 2-1 3-2 2-7 1-7-2 0-1 0-2 1-3 3-3 2-4-1-2-1 1-2 1-1 0 1-2 0-2-2-2-1 0-1 0-1 1s0 1-1 1-3-1-3-2 3-5 7-9l3-3s-1-1-2-1-1 0-1 1c0 0-2 3-4 5-5 5-5 6-3 8 2 1 5 1 7 0l2-1v2c0 2 1 3 3 4s6 1 8-1zm104.4-34.6c-1.8 1-.4 3.4 0 5-.8 2-3.5 2.6-5.5 3-3 .5-5 2.8-6 5.3-1 2-2 5-4 2-2-1-4-2-5-1s-2 3-2 4c-1-1-1-2-3-3-3 1-2 4-1 5 1 2 2 4 1 5-1 2-4 4-6 2-2 0-1-4-3-4-1 1-1 4-2 2-1-1-1-3-2-5-2 1-3 3-2 4 1 3 2 6 3 8 0 2 0 4 1 4v-6c1 0 3 1 5 0 3 0 5-2 6-5v-5c2 1 4 1 6 1 1 2 0 4-1 6-1 4-4 6-6 8-1 1-2 3 0 2 3-1 6-4 7-8 1-2 0-5 1-8 1-2 4-1 5-1 2 0 3-2 3-4-1-2 1-3 3-4s4-3 3-5c0-1 0-4-2-4zm-7.3 12.5c3 .6 0 4.8-1 2 0-1 1-2 2-2zm-10 3c3 0 2 4 0 2.2-1-.7-1-2.2 1-2.2zm-105 16.4v-.8c-1 0-1 0-1 1 1 0 2 0 2-1zm34-3.8v-1c-1 0-1 1 0 1s1-1 1-1zm-42-21c-1-1-2 1-2 2-1 1-2 3-4 4-1 0-3 0-4-1s-1-3-1-4c-1-1-2 0-2 1s2 2 3 3c1 0 3 1 3 2s0 2 2 2 2 1 1 2c0 1-1 2-1 4 1 0 2-1 2-2l1-2h8c2 0 4-1 5-3 2-2 3-4 5-6 2 0 1-3-1-2-1 0-1 2-2 3-1 2-3 3-5 5-1 1-3 0-4 0-1-1 1-1 1-2 1 0 2-1 3-2 0-1-2-1-3-1-2 0-4 2-6 2s-1-2 0-3c1-2 3-4 5-6 0-1 2-1 1-2h-2zm2 10c2 0-1 1-1 1-1 0-1-1 0-1l2-1zm-4 2c1 0 2 0 1 1s-2-1-1-1z"/>
<path d="M289.4 317.8c0-1-1.7-.8-1.8.2-.2.6 0 .7.8.6.6 0 1-.4 1-.8zm74.7-6.6c1-1-1-1.5-1-.8 0 .6 0 2 1 1.7h1zm-116-9c1-1 1-1.2 1-3.4-1-3 0-3.5 1-3.8 2-.3 6 1.7 6 3.3 1 1.3 1 1.4 0 2.4s-1 2.4 0 2.4 4-2 4-3-3-4-5-5c-1 0-3-1-4-1-3 0-3 1-2 5s0 5-4 2c-2-2-3-4-3-8s2-6 5-7c3 0 3-1 0-1s-6 2-7 6c-1 5 1 11 7 13 3 2 4 2 5 1zm139-5.3c1-1 1-1 1-2s1-2 1-3c1-1 1-2 1-2 0-1-1-1-2 0s-2 1-2 0l1-1c2-1 2-2 1-2-1-1-3 0-3 3 0 1 0 1 1 2s2 1 1 2c0 1 1 2 2 1zm14-2l2-2c0-1 1-1 2-2 3-2 4-4 2-8 0-2-2-3-5-6-2-3-5-5-5-5s0 3 1 3c2 0 3 1 5 3 3 2 5 5 4 7 0 1-1 1-4-2l-3-3s-1 0-1 1 1 2 2 4c2 2 3 4 1 5-1 0-1 1-1 1l-1-2c-1-2-7-9-8-9v1s0 1 1 2c1 0 4 3 7 7l2 2 2-2zm6-17c0-1-8-10-9-10v2c0 1 1 2 2 2s3 2 5 3l4 3v-1zm-48 93a1.2 1 0 1 1-2 0 1.2 1 0 1 1 3 0zm5-2a1.2 1 0 1 1-2 0 1.2 1 0 1 1 3 0z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

View File

@@ -0,0 +1,637 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<path fill="#007934" d="M0 0h640v480H0z"/>
<path fill="#ffe000" d="M0 0h640v320H0z"/>
<path fill="#d52b1e" d="M0 0h640v160H0z"/>
<path d="M368.6 210.7l-98 98a91.8 91.8 0 0 0-1.3-1l98-98 1.3 1z" fill="#a05a2c" stroke="#000" stroke-width=".1"/>
<path d="M374.7 204.5c-.4.7-1.4 2.5-1 3.8l-2-1.5c.5 1 .4 1.4 0 1.8-.4.4-1.5.3-2.2.2.7.4 1.5.8 2.4 1h1c-1 .3-2 .8-3 1-1 0-2 .2-2 0-1 .5-2-.4-2-1-1-.3-1-.8-1-1.4v-3 1.7c0 1 1 1 1 2-1 0-1-1 0-2h2l-2-1c1 0 3-1 4-1l5-4-4 5z" fill="#e7e7e7" stroke="#000" stroke-width=".1"/>
<path d="M387 222.8l-125.7 71-1-1.3 125.8-71c0-.3 2 1.7 1 1.3z" fill="#a05a2c" stroke="#000" stroke-width=".1"/>
<path d="M395 218.3c-.7.6-2.3 2-2.3 3.4l-1.4-2c.2 1 0 1.5-.7 1.7-.4.4-1.4 0-2-.3.5 1 1 2 2 2l1.8 1c-.7 0-2.4 1-3.4 0h-2c-.7 1-1.6-1-1-1l.2-1c.2 0 .7-1 1.6-2a7.8 7.8 0 0 0 0 2c0 1 .3 1 .5 2 0 0 0-1 .7-2 .7 0 1.4 0 2 1l-1.4-1h4.4l6-2-5 3z" fill="#e7e7e7" stroke="#000" stroke-width=".1"/>
<path d="M376.3 217.5l-113 85.2-1-1c.4-.5 112.2-84.8 113-85.3l1 1z" fill="#a05a2c" stroke="#000" stroke-width=".1"/>
<path d="M383.4 212c-.5.7-1.8 2.3-1.6 3.7L380 214c.4 1 .2 1.5-.3 1.7-.4.4-1.5.2-2.2 0 .7.5 1.4 1 2.3 1.2h2-3.5c-.5 0-1.6 0-2-1-.6 0-1.8-1-1-1-.3-1-.2-1-.2-2s1-2 2-3a7.8 7.8 0 0 0 0 1l1 1c0-1 0-2 1-2 1-1 2-1 2 0l-2-2c1 0 4-1 5-1s4-2 6-3c-1 1-4 3-4 4z" fill="#e7e7e7" stroke="#000" stroke-width=".1"/>
<path d="M271.4 210.7l98 98c.4-.4 1-1 1.3-1l-98-98-1.3 1z" fill="#a05a2c" stroke="#000" stroke-width=".1"/>
<path d="M265.3 204.5c.4.7 1.4 2.5 1 3.8l2-1.5c-.5 1-.4 1.4 0 1.8.4.4 1.5.3 2.2.2-.7.4-1.5.8-2.4 1h-1c1 .3 2 .8 4 1 1 0 2 .2 2 0 1 .5 2-.4 1-1 1-.3 1-.8 1-1.4v-3a8 8 0 0 1 0 1.7c0 1-1 1-1 2 1 0 1-1 0-2h-2l2-1c-1 0-3-1-4-1l-5-4 4 5z" fill="#e7e7e7" stroke="#000" stroke-width=".1"/>
<path d="M253 222.8l125.7 71 1-1.3-125.8-71c0-.3-2 1.7-1 1.3z" fill="#a05a2c" stroke="#000" stroke-width=".1"/>
<path d="M245 218.3c.7.6 2.3 2 2.3 3.4l1.4-2c-.2 1 0 1.5.7 1.7.4.4 1.4 0 2-.3-.5 1-1 2-2 2l-1.8 1c.7 0 2.4 1 3.4 0h2c.7 1 1.6-1 1-1l-.2-1c-.2 0-.7-1-1.6-2v2c0 1-.3 1-.5 2 0 0 0-1-.7-2-.7 0-1.4 0-2 1l1.4-1H246l-6-2 5 3z" fill="#e7e7e7" stroke="#000" stroke-width=".1"/>
<path d="M263.7 217.5l113 85.2 1-1c-.4-.5-112.2-84.8-113-85.3l-1 1z" fill="#a05a2c" stroke="#000" stroke-width=".1"/>
<path d="M256.6 212c.5.7 1.8 2.3 1.6 3.7l1.7-1.7c-1 1-1 1.5 0 1.7 0 .4 1 .2 2 0-1 .5-2 1-3 1.2h-2 3s1 0 2-1c0 0 2-1 1-1v-2l-2-3a7.8 7.8 0 0 1 0 1l-1 1v-2c-1-1-1-1-2 0l2-2c-1 0-4-1-5-1s-4-2-6-3l4 4z" fill="#e7e7e7" stroke="#000" stroke-width=".1"/>
<path d="M300 283.5c4-2.7 15.2-4 16.8-3.7-8 6-16 6.3-16.7 3.7z" fill="#00e519" stroke="#000" stroke-width=".1"/>
<path d="M300.2 283.5c.7 2.6 8.7 2.4 16.6-3.6-8.5 2-15.7 4-16.6 3z" fill="#ffe533" stroke="#000" stroke-width=".1"/>
<path d="M300.2 283.5c.7 2.6 8.7 2.4 16.6-3.6-8.5 2-15.7 4-16.6 3z" fill="none" stroke="#000" stroke-width=".1" stroke-linecap="round"/>
<path d="M300.2 283.4c4-2.8 15.6-4 16.6-3.6-8 6-16 6.3-16.6 3.6z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M347.6 220.2L322 272.5c-1.2 1-2.2-.4-2.6-.2-1.5 1.7-3.6 2-4 2.5-1.8 2.4-.8 4.3-.7 4.5 1.3 1.8-1.6 3.5-1.5 4-.6 1-2.7 1-3 2-.2 0-4.5 8.4-5 9.3-.5.5-3.6 6-3.6 6-2 0-10.2-5-10.4-5 4.6-7.3 15.6-18.5 15.3-19.2 3-5.2 8-11 10-10.8 3-1.6 4.6-5.7 4-6.6 2.3 0 3.6-1.4 3.7-1.5L343 220c1.6-.6 1.4 0 2 1 0 0 1-1.3.8-1.4 1-.4 1.7.2 1.8.6z" fill="#a05a2c" stroke="#000" stroke-width=".1"/>
<path d="M348.5 208.8c-.4 1 .3 1 .6 1l2 .4c1 0 2 .7 2 1l-30 61.3c-1 1-2-.3-2 0l21-42 10-18.7-3-1.2c0-.2-1-.8 0-1.6l13-21.6-10 21v.3" fill="#cce5e5" stroke="#000" stroke-width=".1"/>
<path d="M348.5 208.8c-.4 1 .3 1 .6 1l2 .4c1 0 2 .7 2 1l-30 61.3c-1 1-2-.3-2 0l21-42 10-18.7-3-1.2c0-.2-1-.8 0-1.6l13-21.6-10 21v.3" fill="#e7e7e7" stroke="#000" stroke-width=".1"/>
<path d="M308.8 272.4c-3 0-4.6 2-2.7 4.7m2-2c-1 1-1 0-1 0m15-13c-1 6-4 10-5 11-2 2-4 7-3 8l-8 14" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M322 272.7c-1.4-.5-5.7-4.5-10-3.8-3.3 3-5.3 7-6 8 4 3 6.8 5 7.7 5 .7-1 1-2 1-2 1-1-.2-2-.2-2 .2-3 2-4 3.8-4 2.2-1 1.6-1 2-1 1-1 1.7-2 1.7-2z" fill="#cce5e5" stroke="#000" stroke-width=".1"/>
<path d="M322 272.7c-1.4-.5-5.7-4.5-10-3.8-3.3 3-5.3 7-6 8 4 3 6.8 5 7.7 5 .7-1 1-2 1-2 1-1-.2-2-.2-2 .2-3 2-4 3.8-4 2.2-1 1.6-1 2-1 1-1 1.7-2 1.7-2z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M317.6 272.8c-2 0-4 1-4.7 2.6l4-2.6" fill="#cce5e5" stroke="#000" stroke-width=".1"/>
<path d="M317.6 272.8c-2 0-4 1-4.7 2.6m-4 .7c0 1 0 1 1 1v-1h-2c-1 0-1 1-1 1zm2-3c0 1 0 1 1 1v-1h-1c-1 0-1 1-1 1z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M345.3 226c.8-.2 1.2-1 .8-2l-4-1.6-1 .7v2l5 2" fill="#cce5e5" stroke="#000" stroke-width=".1"/>
<path d="M345.3 226c.8-.2 1.2-1 .8-2l-4-1.6-1 .7v2l5 2" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M294.5 286c4-2.7 15-4.2 16.6-3.8-7 6-15 6.5-16 4z" fill="#00e519" stroke="#000" stroke-width=".1"/>
<path d="M294.6 286c.7 2.7 8.7 2.3 16.5-3.8-8 2.7-15 4.3-16 4z" fill="#ffe533" stroke="#000" stroke-width=".1"/>
<path d="M294.6 286c.7 2.7 8.7 2.3 16.5-3.8-8 2.7-15 4.3-16 4z" fill="none" stroke="#000" stroke-width=".1" stroke-linecap="round"/>
<path d="M294.5 286c4.2-3 15.6-4 16.7-4-8 6.3-16 6.7-16.7 4z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M340.7 222l-24.4 53c-1.3 1-2.4-.3-2.7-.2-1.5 1.7-3.6 2-4 2.5-1.8 2.6-.7 4.5-.6 4.7 1.3 1.7-1.5 3.5-1.4 4-.6 1-2.7 1-3 2-.2 0-4.3 8.5-4.7 9.4-1 .6-4 6.3-4 6.3-2 0-11-5-11-5 4-7.3 15-18.7 15-19.4 3-5.4 7-11 10-11 3-1.7 4-5.8 3-6.7 2 0 3-1.5 3-1.6l18-37.8c1-.7 1 0 2 1 0 0 1-1.3 1-1.5 0-.4 1 .2 1 .6z" fill="#a05a2c" stroke="#000" stroke-width=".1"/>
<path d="M340.7 222l-24.4 53c-1.3 1-2.4-.3-2.7-.2-1.5 1.7-3.6 2-4 2.5-1.8 2.6-.7 4.5-.6 4.7 1.3 1.7-1.5 3.5-1.4 4-.6 1-2.7 1-3 2-.2 0-4.3 8.5-4.7 9.4-1 .6-4 6.3-4 6.3-2 0-11-5-11-5 4-7.3 15-18.7 15-19.4 3-5.4 7-11 10-11 3-1.7 4-5.8 3-6.7 2 0 3-1.5 3-1.6l18-37.8c1-.7 1 0 2 1 0 0 1-1.3 1-1.5 0-.4 1 .2 1 .6z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M341.4 210.6c-.5 1 .3 1 .6 1.2l1 .3c1.3 0 2 1 2 1l-28.8 62c-1.3 1-2.5 0-3 0l19.8-42 9.7-19-2.8-1c-1 0-2-1-1-1l12-22-10 22v1" fill="#cce5e5" stroke="#000" stroke-width=".1"/>
<path d="M341.4 210.6c-.5 1 .3 1 .6 1.2l1 .3c1.3 0 2 1 2 1l-28.8 62c-1.3 1-2.5 0-3 0l19.8-42 9.7-19-2.8-1c-1 0-2-1-1-1l12-22-10 22v1" fill="#e7e7e7" stroke="#000" stroke-width=".1"/>
<path d="M303 275c-3-.2-4.6 2-2.6 4.6m1.3-2.4c-1 .6-1.7-.3-1.7-.3m15-14c-1.5 5-4.2 9-4.8 10-2 2-3.8 7-3.4 8l-7.8 14" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M316 275c-1.2-.5-5.7-4.5-10-3.7-3 4-5 7.8-5.6 8.3 4 3.2 6.7 4.8 7.7 5.3 1-1 1-2 1-2 1-1 0-2 0-2 0-3 2-4 4-5 2 0 2-1 2-1l2-2z" fill="#cce5e5" stroke="#000" stroke-width=".1"/>
<path d="M316 275c-1.2-.5-5.7-4.5-10-3.7-3 4-5 7.8-5.6 8.3 4 3.2 6.7 4.8 7.7 5.3 1-1 1-2 1-2 1-1 0-2 0-2 0-3 2-4 4-5 2 0 2-1 2-1l2-2z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M311.8 275c-2 0-4 1-4.7 2.8l5-2.7" fill="#cce5e5" stroke="#000" stroke-width=".1"/>
<path d="M311.8 275c-2 0-4 1-4.7 2.8m-3 .8c0 .4 1 .6 1 .4 1 0 1-.6 1-1 0-.5 0-.6-1-.5v1zm3-3.5c0 1 1 1 2 1s1 0 1-1h-1s-1 1 0 1z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M338.5 228c.8-.2 1.2-1 .8-2l-4.8-1.6s-.5 0-1 .7c-.4 1 .2 2 .2 2l4.8 2" fill="#cce5e5" stroke="#000" stroke-width=".1"/>
<path d="M338.5 228c.8-.2 1.2-1 .8-2l-4.8-1.6s-.5 0-1 .7c-.4 1 .2 2 .2 2l4.8 2" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M340.6 283.3c-4-2.7-15.2-4-16.8-3.7 8 6 16 6.4 16.8 3.7z" fill="#00e519" stroke="#000" stroke-width=".1"/>
<path d="M340.6 283.3c-.7 2.7-8.8 2.4-16.8-3.6 8.6 2.5 15.8 4 16.8 3.6z" fill="#ffe533" stroke="#000" stroke-width=".1"/>
<path d="M340.6 283.3c-.7 2.7-8.8 2.4-16.8-3.6 8.6 2.5 15.8 4 16.8 3.6z" fill="none" stroke="#000" stroke-width=".1" stroke-linecap="round"/>
<path d="M340.6 283.2c-4.2-2.8-15.8-4-17-3.6 8.2 6 16.3 6.3 17 3.6z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M292.7 219.3l25.7 53c1.3 1 2.4-.4 2.7-.3 2 1.7 4 2 5 2.5 2 2.4 1 4.4 1 4.6-1 2 2 4 2 5 1 1 3 1 3 2l5 10c1 1 4 6 4 6 2 0 11-5 11-5-4-7-15-19-15-19-3-5-8-11-10-11-3-1-4-5-4-6-2 0-3-1-3-1l-19-38c-1 0-1 1-2 1l-1-1c-1 0-2 1-2 1z" fill="#a05a2c" stroke="#000" stroke-width=".1"/>
<path d="M291.7 207.8c.5 1-.2 1-.5 1.2l-1 .3c-1.3 0-2 .7-2 1l30.2 62c1.3 1 2.5-.4 3-.2l-21-42-10-19 2.8-1c.8 0 1-1 .7-1l-13-22 10 22v1" fill="#cce5e5" stroke="#000" stroke-width=".1"/>
<path d="M291.7 207.8c.5 1-.2 1-.5 1.2l-1 .3c-1.3 0-2 .7-2 1l30.2 62c1.3 1 2.5-.4 3-.2l-21-42-10-19 2.8-1c.8 0 1-1 .7-1l-13-22 10 22v1" fill="#e7e7e7" stroke="#000" stroke-width=".1"/>
<path d="M332 272.2c2.8-.2 4.5 2 2.6 4.7m-1.4-3c1 0 1.7-1 1.7-1m-16-12c1 5 4 9 5 10 2 2 4 7 3 8l8 13" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M318.6 272.4c1.3-.5 5.7-4.6 10-4 3.4 4 5.4 8 6 8.5-4 3-6.7 4-7.7 5-1-1-1-2-1-2-1-1 0-2 0-2 0-3-2-5-4-5-3 0-2-1-2-1l-2-2z" fill="#cce5e5" stroke="#000" stroke-width=".1"/>
<path d="M318.6 272.4c1.3-.5 5.7-4.6 10-4 3.4 4 5.4 8 6 8.5-4 3-6.7 4-7.7 5-1-1-1-2-1-2-1-1 0-2 0-2 0-3-2-5-4-5-3 0-2-1-2-1l-2-2z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M323 272.5c2 0 4 1 4.8 2.7l-4.8-2.7" fill="#cce5e5" stroke="#000" stroke-width=".1"/>
<path d="M323 272.5c2 0 4 1 4.8 2.7m3.6.6c-.2.5-.7.7-1.2.5-.5 0-.7-.6-.6-1 .2-.5.8-.6 1.3-.5v1zm-2.5-3.4c-1 .4-1 .6-2 .5-1-1-1-1-1-2s0-1 1-1v1z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M295 225.4c-.8-.3-1.2-1.2-.8-2l4.8-1.8s.5 0 1 .7c.4.7-.2 1.2-.2 1.2l-4.8 2" fill="#cce5e5" stroke="#000" stroke-width=".1"/>
<path d="M295 225.4c-.8-.3-1.2-1.2-.8-2l4.8-1.8s.5 0 1 .7c.4.7-.2 1.2-.2 1.2l-4.8 2" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M345.6 286c-3.8-2.7-15-4.2-16.6-3.8 8 6 16 6.5 16.6 4z" fill="#00e519" stroke="#000" stroke-width=".1"/>
<path d="M345.6 286c-.8 2.7-8.7 2.3-16.5-3.8 9 2.7 16 4.3 17 4z" fill="#ffe533" stroke="#000" stroke-width=".1"/>
<path d="M345.6 286c-.8 2.7-8.7 2.3-16.5-3.8 9 2.7 16 4.3 17 4z" fill="none" stroke="#000" stroke-width=".1" stroke-linecap="round"/>
<path d="M345.6 286c-4-3-15.6-4-16.6-4 7.8 6.3 16 6.7 16.6 4z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M299.5 222l24.5 53c1 1 2.2-.3 2.6-.2 1.5 1.7 3.6 2 4 2.5 1.7 2.6.7 4.5.6 4.7-1.4 1.7 1.5 3.5 1.4 4 .5 1 2.7 1 3 2 .2 0 4.2 8.5 4.7 9.4.6.6 3.5 6.3 3.5 6.3 2 0 10.3-5 10.5-5-4.4-7.3-15.2-18.7-15-19.4-3-5.4-7.7-11-9.8-11-3-1.7-4.3-5.8-3.7-6.7-2.3 0-3.6-1.5-3.7-1.6l-18-38c-1-.7-1 0-1 1 0 0-1-1.3-1-1.5-1-.4-1 .2-1 .6z" fill="#a05a2c" stroke="#000" stroke-width=".1"/>
<path d="M299.5 222l24.5 53c1 1 2.2-.3 2.6-.2 1.5 1.7 3.6 2 4 2.5 1.7 2.6.7 4.5.6 4.7-1.4 1.7 1.5 3.5 1.4 4 .5 1 2.7 1 3 2 .2 0 4.2 8.5 4.7 9.4.6.6 3.5 6.3 3.5 6.3 2 0 10.3-5 10.5-5-4.4-7.3-15.2-18.7-15-19.4-3-5.4-7.7-11-9.8-11-3-1.7-4.3-5.8-3.7-6.7-2.3 0-3.6-1.5-3.7-1.6l-18-38c-1-.7-1 0-1 1 0 0-1-1.3-1-1.5-1-.4-1 .2-1 .6z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M298.8 210.6c.4 1-.3 1-.6 1.2l-1 .3c-1.3 0-2 1-2 1l28.8 62c1 1 2.4 0 2.8 0L307 233l-9.5-19 2.7-1c1-.3 1.2-.8.8-1.7l-12-22 9.6 21 .2.6" fill="#cce5e5" stroke="#000" stroke-width=".1"/>
<path d="M298.8 210.6c.4 1-.3 1-.6 1.2l-1 .3c-1.3 0-2 1-2 1l28.8 62c1 1 2.4 0 2.8 0L307 233l-9.5-19 2.7-1c1-.3 1.2-.8.8-1.7l-12-22 9.6 21 .2.6" fill="#e7e7e7" stroke="#000" stroke-width=".1"/>
<path d="M337.2 275c3-.2 4.5 2 2.6 4.6m-1.4-2.4c1 .6 1.8-.3 1.8-.3m-15-14c1.4 5 4.2 9 4.7 10 2 2 3 7 3 8l8 13" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M324 275c1.4-.5 5.8-4.5 10-3.7 3.3 4 5.2 7.8 5.8 8.3-4 3.2-6.8 4.8-7.8 5.3l-1-2c-.7-1 .3-2 .3-2 0-3-1.8-4-3.6-5-2.3 0-1.6-1-2-1-1-1-1.7-2-1.7-2z" fill="#cce5e5" stroke="#000" stroke-width=".1"/>
<path d="M324 275c1.4-.5 5.8-4.5 10-3.7 3.3 4 5.2 7.8 5.8 8.3-4 3.2-6.8 4.8-7.8 5.3l-1-2c-.7-1 .3-2 .3-2 0-3-1.8-4-3.6-5-2.3 0-1.6-1-2-1-1-1-1.7-2-1.7-2z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M328.4 275c2 0 4 1 4.7 2.8l-4-2.8" fill="#cce5e5" stroke="#000" stroke-width=".1"/>
<path d="M328.4 275c2 0 4 1 4.7 2.8m4 .8c0 .4-1 .6-1 .4 0 0-1-.6 0-1 0-.5 1-.6 2-.5 1 .2 1 .6 1 1zm-2-3.6c0 1 0 1-1 1v-1c0-.3 1-.5 1-.3 1 .2 1 .7 1 1z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M301.6 228c-.8-.2-1-1-.7-2l4-1.6 1 .7v2l-5 2" fill="#cce5e5" stroke="#000" stroke-width=".1"/>
<path d="M301.6 228c-.8-.2-1-1-.7-2l4-1.6 1 .7v2l-5 2" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M315.3 250.7l35.5-38a97.4 97.4 0 0 1-1.4-1l-35.6 38c-.4 0 2 1.3 1.5 1z" fill="#a05a2c" stroke="#000" stroke-width=".1"/>
<path d="M349.8 212.2c-1.2-1-3.4-2.2-5-1.8-.5-2.2 2.5-4.4 3.8-4-.3 2.3 3.2 3.8 3 3.8l-1.8 2z" fill="#e7e7e7" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M352 210.4c1 .8 1.5.8 3 1.6 1.3.7 3-1 4-1.7 0 0 1 3.4-1 5.6-2.2 2-4.7 2-6.6 2 0 0 2.5-3 1.5-4l-3-2" fill="#e7e7e7" stroke="#000" stroke-width=".1"/>
<path transform="matrix(-.68 .74 -.82 -.57 0 0)" fill="#e7e7e7" stroke="#000" stroke-width=".1" d="M-27.7-406.5h4v2.2h-4z"/>
<path d="M308.2 290.3l-1 9 1.8-2.2c.3 0 1.5-2 1.8-7 0 0-1-3-1.4-3-.7 0-1.2 4-1.2 4zm2.2-20l-2.7 15.7c0 .4 1.3 1.6 2-1.2l1.6-10.5-1-4z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M316 284.6c-.7-.8-1.5-1.7-1.5-2l-.4 3s2 1.6 2 4.4l1-.6v-1s1-2 1-3l-1-.8z" fill="#d52b1e" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M307.2 299.4s3.4-3 3.6-9.7l.4-2s0 1.6.7.5v-2.8s1-1.6 1 .3l-1 9.6a51.4 51.4 0 0 1-1 2s-1-1-2 0c-1 1.3-2 2.8-4 2zm4-25l-1.4 10.4s1.2.6 1.4 3c0 1.2.6.6.7.4v-9.7l-2-4.3z" fill="#ffe000" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M310 298.7v2.7s1 0 1.6-1.2c.8-1 1-2.8 1-2.8s-.7-1-1.3 0c-.5 1-1.2 1.3-1.2 1.3zm2-10.5c.5-1 .7-2.6.6-2.8l-.7.5v2z" fill="#ffe000" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M315.2 287a4.4 4.4 0 0 0-1.2-1.4l-1.5 12s-.4 3-2.3 3.7c0 0 1 10.3 4.5 7.5.4-.4 1-3.6.8-5.5l-.8-6c0-1.3.2-2.7.5-4.7 0-.8.5-2.4.6-2.6.2-.2 0-1.7-.6-3z" fill="#d52b1e" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M317 285.3s.8 1 1 1c.2 0-2.4 19.3-2.4 19.3s0-2-.7-6c-1-3.2 0-7.5 0-9.5 0 0 1 0 1-4z" fill="#d52b1e" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M312.6 278.8l-.6 7s1.7-2.3 2 0l.5-3.3s-1.5-2.4-2-3.7z" fill="#f7e214" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M311.3 287.8s-.6-6-3.6-1.8c0 0-.2 2.4 0 3 0 .8 1 1.8 1.2 2.3 0 1 1-.2 1-.2l1-3z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M287.8 237c0-3.5-1.2-9.3-1.3-13.3l-12-12.2s-1.4 10-5.8 15.5l19 10" fill="#d52b1e" stroke="#000" stroke-width=".1"/>
<path d="M288.7 237.3c.5-2.4 1-5 1.5-10.2l-7.7-7c0 3-3.6 8-4 14" fill="#ffe000" stroke="#000" stroke-width=".1"/>
<path d="M295.3 244.7c1-4.3-1.3-4.8 2-10.8l-7.2-7c-1 4-2 6-2 10l6 4" fill="#007934" stroke="#000" stroke-width=".1"/>
<path d="M267.6 270c-1.5-4.2.5-12.6.3-18-1-3.5 2-16.6 2-20.6l-14-8.8s-1 14.3-3 30c-2 8-2 15.2-1 21.4 1 8.7 3 12.2 6 16 6 6.4 19 2.6 19 2.6 11-2.3 18-9.4 18-9.4s-4 .8-10 1.4c-13-1-18 2.4-19-11" fill="#d52b1e" stroke="#000" stroke-width=".1"/>
<path d="M305.4 278.8h.2l-6 1.8-7.8.6c-17.3.4-15-10.3-14.4-27.5 0-6.6 1.4-14.8 1-17.7l-11.5-6.6c-4 10.6-3 18-4 23.5-1 5-2 17 0 22 2 11 12 11 24 10 6-1 9-2 9-2l8-5" fill="#f7e214" stroke="#000" stroke-width=".1"/>
<path d="M305.6 278.5c-2.4 1.3-6 2.2-6 2.2l-8 .8c-12.5 1-19.8-7.7-18.2-27.6 0-7 .2-11 2.6-20l7 4c-.5 2-1.5 7-1.5 9 0 16 10 28 24 30" fill="#007a3d" stroke="#000" stroke-width=".1"/>
<path d="M260 230.5c1 2 8 12.6 12 14.6m-11-7c1.3 2 9.8 14 13.6 15m-15.6 3c2 3 4 7 10 10m-7 4c4 4 13.5 12 23 12m-23-6c2 3 6.2 14 24 9m-26.8-6c1.3 3 10.2 18 26 12" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M277.8 264.8c-1.5-4.3.5-12.7.2-18 0-3.6 1.5-15.6 1.5-19.6l-13.2-10s-.6 14.4-2.3 30c-1.4 8-2.5 18-1.5 24 1.8 10 6.6 12.8 7.5 13.6 6.7 6 22 5.4 23.5 5 10.8-4 15.6-11 15.6-11s-5 0-11 .6c-13-1-19-.4-20-13.8" fill="#d52b1e" stroke="#000" stroke-width=".1"/>
<path d="M315.6 273.5h.2l-6 1.8-7.8.7c-17.3.4-15-10.3-14.4-27.6 0-6.5.3-12.4 0-15.3l-10.3-7c-3.8 11-2.8 17-3.5 22-.4 6-1.7 18 .2 23 2.7 12 11.8 12 24.2 11 6 0 9.4-2 9.4-2l8-4" fill="#ffe000" stroke="#000" stroke-width=".1"/>
<path d="M316 273.4c-2.5 1.2-6 2-6 2l-8 1c-12.6 1-20-7.8-18.3-27.7 0-7-.3-7.5 2.2-17l11 9s-2 2.7-2 6.6c0 16 6 24 20 26l1-13" fill="#007934" stroke="#000" stroke-width=".1"/>
<path d="M270 225.3c1.3 2 8.2 12.6 12.2 14.6m-11-8c1.3 2 9.8 14 13.6 14m-15.5 3c2 2 4 7 9.7 10m-7 3c4 3 13.6 11 23 12m-23-6c2 2 6.2 13 24 8m-26.7-7c1.2 2 10 17 26 11" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M256.2 224l-.7 6c-.2 4.4 0 7.7 0 9.8 0 .2 1 5.5.6 5.8-1 1-1 1.2-2 .4l1-6.3 1-10c0-1 1-6.3 1-6.3s0-1.2 1 .5" fill="#e8a30e" stroke="#000" stroke-width=".1"/>
<path d="M256.2 224l-.7 6c-.2 4.4 0 7.7 0 9.8l.8 5.8c-1 1-1.2 1.6-2.3.7l.5-6.6.4-10c0-1 1-6.3 1-6.3v.5z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M256 222.2s-1 6-1.2 9.6c0 4.2-.3 5.4-.3 8l-.5 4.4v.2c-1 .5-1.5 0-2-.3-.2 0 1.4-3 1.4-4 1-11 2.4-17 2.4-17s-.6 4 .3 0" fill="#f7e214" stroke="#000" stroke-width=".1"/>
<path d="M256 222.2s-1 6-1.2 9.6c0 4.2-.3 5.4-.3 8l-.5 4.4v.2c-1 .5-1.5 0-2-.3-.2 0 1.4-3 1.5-4 .8-11 2.3-17 2.3-17s-.6 4 .3 0zm-.4 17.3s-1 .4-1 .2m0-1.3s.7 0 .8-.2m0-1s-.6.3-.8 0m.8-1.6h-.6m.6-1.5h-.6m.5-2h-.4m0-1h-1m-1 10h-1m1-2h-1m1-1h-1m1-1h-1m0-2h-1m0-1h-1m0-2s-1 1-1 0m0 9h-1m13-20l-1 6v10c0 1 1 6 0 6-1 1-1 2-2 1v-16c0-1 1-6 1-6v1" fill="#e8a30e" stroke="#000" stroke-width=".1"/>
<path d="M266.4 218.7l-.7 6c-.2 4.4 0 7.8 0 9.8l.8 5.8c-1 1.2-1.2 1.6-2.3.7l.5-6.6.4-9.8c0-1 1-6.5 1-6.5s1-1 1 1z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M266.3 217s-1.2 6-1.3 9.5c0 4.3-.3 5.5-.3 8l-.5 4.4c-1 0-1.5 0-2-1-.2 0 1.4-4 1.4-5 1-11 2.4-17 2.4-17l.3-1" fill="#e8a30e" stroke="#000" stroke-width=".1"/>
<path d="M266.3 217s-1.2 6-1.3 9.5c0 4.3-.3 5.5-.3 8l-.5 4.4c-1 0-1.5 0-2-1-.2 0 1.4-4 1.4-5 1-11 2.4-17 2.4-17l.3-1zm-.5 17.2s-1 .5-1 .2m0-1.2s.7 0 .8-.3m0-1h-.8m.8-2h-.6m.6-2h-.6m.5-2h-.4m1 7h-1m1-2h-1m2-4h-1m3 3s-1 0-1-1" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M274.3 211.3s.5 5 .2 8c-.3 3.5-.3 4.5-.6 6.6-1 0 0 2 0 3 0 0-1 0 0 0h2s-1-3-1-4c0-9-1-15-1-15v-1" fill="#e8a30e" stroke="#000" stroke-width=".1"/>
<path d="M274.3 211.3s.5 5 .2 8c-.3 3.5-.3 4.5-.6 6.6-1 0 0 2 0 3 0 0-1 0 0 0h2s-1-3-1-4c0-9-1-15-1-15zM274 226h1m-.8-1.8s1 .2 1 0m-1-1.2h1m-1-1.2h.8m-.5-1.4h.5m-.5-1.3s.4 1 .5 0m-.4-1h.4m-1 8h1" fill="#e8a30e" stroke="#000" stroke-width=".1"/>
<path d="M306 221.6h.8-.8z" fill="#005000" stroke="#000" stroke-width=".1"/>
<path d="M316.7 256.4s-.3-.2-.4 0v.2l.4-.2zm-1 1h2" fill="#fff" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M292.2 284.2c-.2 3-7.4 6.6-12.7 0-5.7-4.4-4.4-11.3 0-12.2l54.7-53.3c2.2-1.2 2.4-2.3 3.5-3.5 2.3 2.4 7 6.8 9.6 9-1.6 1.2-2.8 2.5-3.2 3.5l-51 56.5z" fill="#e8a30e" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M337.8 215c2.6-3.5 12.8 5.8 10 8.7-2.6 2.8-12.4-5-10-8.6z" fill="#e7e7e7" fill-rule="evenodd" stroke="#000" stroke-width=".1" stroke-linejoin="round"/>
<path d="M347 223c-2 1.4-9.3-4.8-8-7.2 2-2.2 10 5.7 8 7.2z" fill="#cccccf" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M344 228c-4.5-1.6-7.8-4.6-9.8-9.2m-23 45c-5.8-1.8-9.7-5.6-11.5-11.7m9 15c-5.6-2-9.5-5-11.3-11m-2 26c-6-1-10.5-6-12.3-12m10 15c-6-1-10-6-12-12" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M279.3 285c-.2 1.4-1 1.8-2 1.4m13.7-2c-2 3.5-4.5 2.4-6.5 2.5" fill="none" stroke="#000" stroke-width=".1" stroke-linecap="round"/>
<path d="M276.4 285.2c0 1 .8 1.6 1.7 1.6 1 0 2-.7 2-1.6 0-1 0-1.7-1-1.7s-1 1-1 2" fill="#e8a30e" stroke="#000" stroke-width=".1"/>
<path d="M279.5 285c-.3 1.2-1 1.6-2 1.2m13.5-1.7c-2 3.4-4.5 2.3-6.5 2.4" fill="none" stroke="#000" stroke-width=".1" stroke-linecap="round"/>
<path d="M331.8 290.3l1 9-1.8-2.2c-.3 0-1.5-2-1.8-7 0 0 1-3 1.4-3 .7 0 1.2 4 1.2 4zm-2.2-20l2.7 15.7c0 .4-1.3 1.6-2-1.2l-1.6-10.5 1-4z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M324 284.6c.7-.8 1.5-1.7 1.5-2l.4 3s-2 1.6-2 4.4l-1-.6v-1s-1-2-1-3l1-.8z" fill="#d52b1e" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M332.8 299.4s-3.4-3-3.6-9.7l-.4-2s0 1.6-.7.5v-2.8s-1-1.6-1 .3l1 9.6 1 2s1-1 2 0c1 1.3 2 2.8 4 2zm-4-25l1.4 10.4s-1.2.6-1.4 3c0 1.2-.6.6-.7.4v-9.7l2-4.3z" fill="#ffe000" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M330 298.7v2.7s-1 0-1.6-1.2c-.8-1-1-2.8-1-2.8s.7-1 1.3 0c.5 1 1.2 1.3 1.2 1.3zm-2-10.5c-.5-1-.7-2.6-.6-2.8l.7.5v2z" fill="#ffe000" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M324.8 287a4.4 4.4 0 0 1 1.2-1.4l1.5 12s.4 3 2.3 3.7c0 0-1 10.3-4.5 7.5-.4-.4-1-3.6-.8-5.5l.8-6c0-1.3-.2-2.7-.5-4.7 0-.8-.5-2.4-.6-2.6-.2-.2 0-1.7.6-3z" fill="#d52b1e" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M323 285.3s-.8 1-1 1c-.2 0 2.4 19.3 2.4 19.3s0-2 .7-6c1-3.2 0-7.5 0-9.5 0 0-1 0-1-4z" fill="#d52b1e" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M327.4 278.8l.6 7s-1.7-2.3-2 0l-.5-3.3s1.5-2.4 2-3.7z" fill="#f7e214" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M328.7 287.8s.6-6 3.6-1.8c0 0 .2 2.4 0 3 0 .8-1 1.8-1.2 2.3 0 1-1-.2-1-.2l-1-3z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M352.2 237c0-3.5 1.2-9.3 1.3-13.3l12-12.2s1.4 10 5.8 15.5l-19 10" fill="#d52b1e" stroke="#000" stroke-width=".1"/>
<path d="M351.3 237.3c-.5-2.4-1-5-1.5-10.2l7.7-7c0 3 3.6 8 4 14" fill="#ffe000" stroke="#000" stroke-width=".1"/>
<path d="M344.7 244.7c-1-4.3 1.3-4.8-2-10.8l7.2-7c1 4 2 6 2 10l-6 4" fill="#007934" stroke="#000" stroke-width=".1"/>
<path d="M372.4 270c1.5-4.2-.5-12.6-.3-18 1-3.5-2-16.6-2-20.6l14-8.8s1 14.3 3 30c2 8 2 15.2 1 21.4-1 8.7-3 12.2-6 16-6 6.4-19 2.6-19 2.6-11-2.3-18-9.4-18-9.4s4 .8 10 1.4c13-1 18 2.4 19-11" fill="#d52b1e" stroke="#000" stroke-width=".1"/>
<path d="M334.6 278.8h-.2l6 1.8 7.8.6c17.3.4 15-10.3 14.4-27.5 0-6.6-1.4-14.8-1-17.7l11.5-6.6c4 10.6 3 18 4 23.5 1 5 2 17 0 22-2 11-12 11-24 10-6-1-9-2-9-2l-8-5" fill="#f7e214" stroke="#000" stroke-width=".1"/>
<path d="M334.4 278.5c2.4 1.3 6 2.2 6 2.2l8 .8c12.5 1 19.8-7.7 18.2-27.6 0-7-.2-11-2.6-20l-7 4c.5 2 1.5 7 1.5 9 0 16-10 28-24 30" fill="#007a3d" stroke="#000" stroke-width=".1"/>
<path d="M380 230.5c-1 2-8 12.6-12 14.6m11-7c-1.3 2-9.8 14-13.6 15m15.6 3c-2 3-4 7-10 10m7 4c-4 4-13.5 12-23 12m23-6c-2 3-6.2 14-24 9m26.8-6c-1.3 3-10.2 18-26 12" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M362.3 264.8c1.4-4.3-.6-12.7-.3-18 0-3.6-1.5-15.6-1.5-19.6l13.2-10s.6 14.4 2.3 30c1.4 8 2.5 18 1.5 24-1.8 10-6.6 12.8-7.5 13.6-6.7 6-22 5.4-23.5 5-10.8-4-15.6-11-15.6-11s5 0 11 .6c13-1 19-.4 20-13.8" fill="#d52b1e" stroke="#000" stroke-width=".1"/>
<path d="M324.4 273.5h-.2l6 1.8 7.8.7c17.3.4 15-10.3 14.4-27.6 0-6.5-.3-12.4 0-15.3l10.3-7c3.8 11 2.8 17 3.5 22 .4 6 1.7 18-.2 23-2.7 12-11.8 12-24.2 11-6 0-9.4-2-9.4-2l-8-4" fill="#ffe000" stroke="#000" stroke-width=".1"/>
<path d="M324 273.4c2.5 1.2 6 2 6 2l8 1c12.6 1 20-7.8 18.3-27.7 0-7 .3-7.5-2.2-17l-11 9s2 2.7 2 6.6c0 16-6 24-20 26l-1-13" fill="#007934" stroke="#000" stroke-width=".1"/>
<path d="M370 225.3c-1.3 2-8.2 12.6-12.2 14.6m11-8c-1.3 2-9.8 14-13.6 14m15.5 3c-2 2-4 7-9.7 10m7 3c-4 3-13.6 11-23 12m23-6c-2 2-6.2 13-24 8m26.7-7c-1.2 2-10 17-26 11" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M383.8 224l.7 6c.2 4.4 0 7.7 0 9.8 0 .2-1 5.5-.6 5.8 1 1 1 1.2 2 .4l-1-6.3-1-10c0-1-1-6.3-1-6.3s0-1.2-1 .5" fill="#f7e214" stroke="#000" stroke-width=".1"/>
<path d="M383.8 224l.7 6c.2 4.4 0 7.7 0 9.8l-.8 5.8c1 1 1.2 1.6 2.3.7l-.5-6.6-.4-10c0-1-1-6.3-1-6.3v.5z" fill="#e8a30e" stroke="#000" stroke-width=".1"/>
<path d="M384 222.2s1 6 1.2 9.6c0 4.2.3 5.4.3 8l.5 4.4v.2c1 .5 1.5 0 2-.3.2 0-1.4-3-1.4-4-1-11-2.4-17-2.4-17s.6 4-.3 0" fill="#f7e214" stroke="#000" stroke-width=".1"/>
<path d="M384 222.2s1 6 1.2 9.6c0 4.2.3 5.4.3 8l.5 4.4v.2c1 .5 1.5 0 2-.3.2 0-1.4-3-1.5-4-.8-11-2.3-17-2.3-17s.6 4-.3 0zm.4 17.3s1 .4 1 .2m0-1.3s-.7 0-.8-.2m0-1s.6.3.8 0m-.8-1.6h.6m-.6-1.5h.6m-.5-2h.4m0-1h1m1 10h1m-1-2h1m-1-1h1m-1-1h1m0-2h1m0-1h1m0-2s1 1 1 0m0 9h1" fill="#e8a30e" stroke="#000" stroke-width=".1"/>
<path d="M373.6 218.7l.7 6c.2 4.4 0 7.8 0 9.8 0 .2-1 5.5-.6 5.8 1 1.2 1 1.3 2 .4.2 0-.4-5.5-.4-6.3l-.4-9.8c0-1-1-6.5-1-6.5s-1-1-1 1" fill="#f7e214" stroke="#000" stroke-width=".1"/>
<path d="M373.6 218.7l.7 6c.2 4.4 0 7.8 0 9.8l-.8 5.8c1 1.2 1.2 1.6 2.3.7l-.5-6.6-.4-9.8c0-1-1-6.5-1-6.5s-1-1-1 1z" fill="#e8a30e" stroke="#000" stroke-width=".1"/>
<path d="M373.7 217s1.2 6 1.3 9.5c0 4.3.3 5.5.3 8l.5 4.4c1 0 1.5 0 2-1 .2 0-1.4-4-1.4-5-1-11-2.4-17-2.4-17l-.3-1" fill="#f7e214" stroke="#000" stroke-width=".1"/>
<path d="M373.7 217s1.2 6 1.3 9.5c0 4.3.3 5.5.3 8l.5 4.4c1 0 1.5 0 2-1 .2 0-1.4-4-1.4-5-1-11-2.4-17-2.4-17l-.3-1zm.5 17.2s1 .5 1 .2m0-1.2s-.7 0-.8-.3m0-1h.8m-.8-2h.6m-.6-2h.6m-.5-2h.4m-1 7h1m-1-2h1m-2-4h1m-3 3s1 0 1-1m-11-22s-1 5-1 8v10h-2l1-4c-1-9 0-15 0-15m2 2s-1 5 0 8v6c1 0 0 2 0 3 0 0 1 0 0 0h-2s1-3 1-4c0-9 1-15 1-15zm0 14h-1m1-2h-1m1-1h-1m1-2h-1m0-2h-1m1 4h-1" fill="#e8a30e" stroke="#000" stroke-width=".1"/>
<path d="M334 221.6h-.8.8z" fill="#005000" stroke="#000" stroke-width=".1"/>
<path d="M323.3 256.4s.3-.2.4 0v.2l-.4-.2zm1 1h-2" fill="#fff" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M291.7 215.5c0-2 2-3.3 2.2-3.5 1-.7 1-1.3 3-1.5v.8c0 .3-1 1.6-2 2.7-2 1-4 1.5-4 1.5z" fill="#d52b1e" stroke="#000" stroke-width=".1"/>
<path d="M291.6 214.7l29.7 38.5 1.4-1.4-30.2-39-1 2z" fill="#a05a2c" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M291.2 207.2s3.2-.4 2.8-2.2c-.5-1.8-2.6-1.8-3.5-2-1 0-4 .8-4.8 1.6-1 1-2.7 2.5-2 5s1.2 4.4 2.2 6v4c0 .2-1 1.2 0 1.5 1 1 1 1 2 0s2-3 2-5 2-3 2-3c1 0 1-1 3-1 0 0-1-1-2-1s-4-1-5-2z" fill="#d52b1e" stroke="#000" stroke-width=".1"/>
<path d="M291.2 207.2s3.2-.4 2.8-2.2c-.5-1.8-2.6-1.8-3.5-2-1 0-4 .8-4.8 1.6-1 1-2.7 2.5-2 5s1.2 4.4 2.2 6v4c0 .2-1 1.2 0 1.5 1 1 1 1 2 0s2-3 2-5 2-3 2-3c1 0 1-1 3-1 0 0-1-1-2-1s-4-1-5-2z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M291.2 207.2c-.4 0-1.7-.6-2.6-.3-1 0-2.7 1-2.4 2m10.4 0l-3 1c-.7 0-2.5 2-3.6 3-1 1-1.3 2-3.5 4m9-10c-.4 0-.8 1-1.4 1 0 0 0 1-1 1" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M347.8 284.2c.2 3 7.4 6.6 12.7 0 5.7-4.4 4.4-11.3 0-12.2l-54.7-53.3c-2.2-1.2-2.4-2.3-3.5-3.5-2.3 2.4-7 6.8-9.6 9 1.6 1.2 2.8 2.5 3.2 3.5l51 56.5z" fill="#e8a30e" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M302.2 215c-2.6-3.5-12.8 5.8-10 8.7 2.6 2.8 12.4-5 10-8.6z" fill="#e7e7e7" fill-rule="evenodd" stroke="#000" stroke-width=".1" stroke-linejoin="round"/>
<path d="M293 223c2 1.4 9.3-4.8 8-7.2-2-2.2-10 5.7-8 7.2z" fill="#cccccf" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M296 228c4.5-1.6 7.8-4.6 9.8-9.2m23 45c5.8-1.8 9.7-5.6 11.5-11.7m-9 15c5.6-2 9.5-5 11.3-11m2 26c6-1 10.5-6 12.3-12m-10 14c6-1 10-6 12-12" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M360.7 285c.2 1.4 1 1.8 2 1.4m-13.7-2c2 3.5 4.5 2.4 6.5 2.5" fill="none" stroke="#000" stroke-width=".1" stroke-linecap="round"/>
<path d="M363.6 285.2c0 1-.8 1.6-1.7 1.6-1 0-2-.7-2-1.6 0-1 0-1.7 1-1.7s1 1 1 2" fill="#e8a30e" stroke="#000" stroke-width=".1"/>
<path d="M360.5 285c.3 1.2 1 1.6 2 1.2m-13.5-1.7c2 3.4 4.5 2.3 6.5 2.4" fill="none" stroke="#000" stroke-width=".1" stroke-linecap="round"/>
<path d="M339.6 175.5c1.8 3 4.5 8 5.2 12 1.3 7-.8 15.2-7 20.8-5.2 4.7-13.3 6-16.6 6.8-3.4 1-5.8 2-6.4 3 0 0 0-1 .5-1 1.6 0 4-1 7.8-1 8-1 15-4 19-12 6-10 3-18-2-26z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M341.6 206.2a.4.6 50 0 1-.6-.6.4.6 50 1 1 .6.6z" fill="#d52b1e" stroke="#000" stroke-width=".1"/>
<path d="M346.6 205c-1 .6-2.2.7-3 1l-2.2.8c-.4 0-1 .4-1.5.6-1 .4-2 1.3-2 1.3s1 1.3 2 1c1 0 1-.3 2-.6l1-1c1 0 1-2 2-3zm-5.7 1c-1 .7-2 .6-2 .6v.2s1 0 2-.5v-.2z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M346.6 205c-1 1-2.8 2-4.7 2.8-2 .8-4 1-5 1l-1 .3c1 0 3 0 5-1s4-2 5-3zm-2.4 4.6c-2 0-3 .5-4.8 1-1.7.3-3.7-.6-4.8 1 4.4 3 7.6 1 9.6-2z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M340.2 213.6c-.8-.8-8-3.2-9.2-.5 1.7 2 6.8 3 9.2 1z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M338.5 215.5c-.8 0-1.6-.3-2.5-.4h-2c-1 0-2.2-1-6 0 1.5 4 6.5 4 10.5 2zm1.6-2c-3 1-8 0-10-1v.3c4 1.7 8 1.5 11 .8zm4-4c-2 1.6-5 2.7-11 2 9 .8 10-.7 12-2z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M338.5 215.5c-3 0-4.7 1.4-10.3-1.3l-1.4-.6-.5.2 1.4.4c7 3 6.7 1.6 10.8 1.3z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M327.3 211.6a.4.6 66.2 1 0 .4.7.4.6 66.2 0 0-.4-.7z" fill="#d52b1e" stroke="#000" stroke-width=".1"/>
<path d="M327 212.3c-.5 0-.7 1-.7 1.3l-.4.2c0-.6 0-1.4 1-1.7v1z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M346 186.8a.4.6 15.8 1 1-1-.2.4.6 15.8 0 1 1 .2z" fill="#d52b1e" stroke="#000" stroke-width=".1"/>
<path d="M341.6 203.2c0-2-1 .8-3.2-4-.6-1.3-.6-2-1-4.2 1 1.8 3 2.3 3.8 3.6.7 1.4.5 3.5.4 4.6z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M337.5 195.2s1 2.4 2.4 4c1 1.7 1 3.7 1 3.7" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M338.5 197.2c1.3 1.7 3 3.8 3 6h.3c-.3-2.8-2-4-3-5.6l-.3-.4zm10.8 2.7c-1 0-2 1-2.7 1l-1.4 1h-1.4l-2 2s1.3 1 2 1c2.4-1 3-2 4.3-3 1-1 1-3 2-4z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M340.7 204.8l-.2.4c1.3-.2 3.5-1.5 5-2.2 1.8-1 3-1.7 3.7-3-1 1.3-2 2-4 3-1.4.7-3.6 2-4.5 1.8z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M350 195.3c-.7 1-1.6 1.3-2.3 1.8l-1.3 2-1.2 1-1.5 3s.7 1 1.4 1c3 0 4-1 4-3 1-1 1-1 1-2z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M341.5 199.4a.6.4 62 1 0 .8-.3.6.4 62 0 0-.8 1z" fill="#d52b1e" stroke="#000" stroke-width=".1"/>
<path d="M342.5 201.6l-.2.3c3-2 6.6-4 8-7-2 3-4.8 4-7.8 6zm8.3-10.7c-.7 1-1.5 1-2.2 2l-1 1c-.4 0-.8 0-1.2 1-.5 0-1.3 2-1.3 2s1 1 2 0 2-1 2-2c1-1 1-2 2-3s1-2 1-3z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M348.7 193.8c-1.4 1.6-3 3-4.7 3.8v.4c2.5-1.5 3.6-2.8 4.8-4v-.2zm1-5.6c-.4 1-1 1.5-1.6 2v1.2c0 .3 0 .5-1 1v2s1 .6 1 .2l2-1.6c1-.5 1-1.4 1-2.2 1-1 1-1.7 0-2.6zm-4.3-1l-.5 1.5-1-.4V187z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M348.4 191c-1 1.6-2.4 3.2-3.8 4v.3c2.2-1.6 3-3 3.8-4.2zm-5.6 10c-.2-.6-.3-1-.6-1.4l.4 1.5z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M342 181.3a.4.3 39.5 0 1-.6.5.4.3 39.5 0 1 .5-.5z" fill="#d52b1e" stroke="#000" stroke-width=".1"/>
<path d="M343 182.5c-.2-.3-.7-.6-1-.8-.2 0-.2 0 0 0l1.2 1v-.2zm5.7.4c-1.2 2-4 4-2.8 7 2 2 3-5 2-8z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M346 177.7c-.4 2.4-2.5 4.4-1 7.7 4 1 2-4.4 1-7.7z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M343.7 174c2 3.7 2.5 6 .2 8.3 0 0-2-1-2-3.3 0-1.8 1-4 1-5z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M340.4 172c.5 2.2-1.5 3.3 1.4 6.3 2-2.4 1-3-1.4-6.4z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M339.6 176c-3.3.3-2-2.6-3-5.3 2 1.5 4.7 2 3 5.3zm2.2 4.4c-1-4.4-4-2.6-5.6-4.6.8 3 2 4.8 5.6 4.6zm1.4 4c-2.6 0-4.8-1.3-6.2-4.3 2.7 2 5.7 2 6.2 5z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M343.6 188.3c-1-1.2-1-2-1.5-2.7 0-1.3-1-2.5-3-3.7 0 3 1 6 5 6zm.6 3.3c-1.6-2.3-3-4.2-5.6-5.8 1 2.3.6 6.3 5.6 5.8z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M343.7 196c-5 0-4.5-4.8-4.5-7l2.8 3.5c1 1 1.7 2.2 1.7 3.5z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M343 198.8c-.3-1 0-1.4-1-2.3-.8-1-2.6-2.7-3.6-4.6 0 1-.2 4 1.2 5 1 0 2 1 3.5 1zm-4 7.2c-4-3-1.6-5.5-1.2-7.8 1 2.6 3.7 4.8 1.2 8zm1.6-29c-1.3-2.4-2-3.7-3.7-6.2 2 2.8 2 4.6 4 6.5" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M339 206.8c0-3-.8-5.7-1.4-8.5.5 3 1.3 6 1 8.8h.3zm4.5-7.4c-.4-1.8-4-3-5-7.5.7 4 4.4 5 4.8 7l.2-1zm.8-2.5c-.6-3-4-5-5-9 1.3 4 4.2 4 5 8zm.7-5c-1.7-3-4-4-6.4-7 2.2 3 4.8 4 6.4 7v-1zm0-4c-2-1-4-3-6-7 1.4 3 3 5 6 7v-1zm-1-4c-2-2-5-3-7-5 1.7 2 5 3 7 5v-1zm-1.6-5c-2.2-2-4.4-2-6.2-5 1.5 2 3.8 3 6.2 5v-1zm6.3 2c-.8 3-1.5 6-3.6 8v-1c1-1 3-4 4-8zm-2.7-5c0 3 0 6-1 8 1.4-2 1.3-5 1.6-8zm-2-4c1 3 1 5 0 9 .5-2 1-5 0-9zm-3-2c1 2 2 4 1 7 1-3 0-5-1-7zm-5 31c1.6 3-.2 5-2.3 6-1.6-5 1.8-4 2.5-7z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M336.2 203c.2 2-2 4.3-2.6 7.7l-.3.2c1-4 3-6 3-8z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M343.7 181.2a.3.4 1.8 1 1-.6 0 .3.4 1.8 0 1 1 0z" fill="#d52b1e" stroke="#000" stroke-width=".1"/>
<path d="M343.5 183v-1.6h-.2v1.8l.2-.2z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M342.8 181a.3.4 2 0 1-.5 0 .3.4 2 0 1 .5 0z" fill="#d52b1e" stroke="#000" stroke-width=".1"/>
<path d="M343.2 182.4l-.5-1.2c0 .5.3 1 .4 1.4l1-.2z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M344.7 187a.4.3 80.5 1 1-.7 0 .4.3 80.5 0 1 .7 0z" fill="#d52b1e" stroke="#000" stroke-width=".1"/>
<path d="M345 188.6l-.5-1.5v1l.2 2h.2z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M343.6 187.2a.4.3 57 1 1-.4.5.4.3 57 0 1 .4-.5z" fill="#d52b1e" stroke="#000" stroke-width=".1"/>
<path d="M344.8 188.6c-.3-.4-.8-.7-1.2-1l1.3 1.2-1-.2z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M343.4 199a.3.4 12.7 1 1-.7 0 .3.4 12.7 0 1 .7 0z" fill="#d52b1e" stroke="#000" stroke-width=".1"/>
<path d="M342.8 200.8c.2-.5.2-1 .2-1.5 0 .6-.2 1.2-.3 1.7v-.2z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M344 200a.3.4 50.5 1 0 .5.3.3.4 50.5 1 0-.5-.4z" fill="#d52b1e" stroke="#000" stroke-width=".1"/>
<path d="M342.7 201l1.3-.8-1.3 1z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M340.7 205a.3.4 40.3 1 1-.4-.6.3.4 40.3 0 1 .4.5z" fill="#d52b1e" stroke="#000" stroke-width=".1"/>
<path d="M339.5 206.2l1-1.3h-.2l-1 1h.2z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M338.8 204.5a.4.6 10 0 0 1 0 .4.6 10 1 0-1 0z" fill="#d52b1e" stroke="#000" stroke-width=".1"/>
<path d="M339.4 205c-.3.7 0 1 0 1.2v.3c-.3-.4-.4-.7-.2-1.5h.2zm-12 9.5c-.8 0-1-.4-1.3-.8 1 .5 1 1 2 1v-.2z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M327.3 215a.6.4 9.5 0 1 .2-.7.6.4 9.5 1 1-.2.8z" fill="#d52b1e" stroke="#000" stroke-width=".1"/>
<path d="M332.7 206c.5 3.2-1.3 5.7-4 6.4-1-4 2.8-4 4-6.3z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M332.7 206c-1 2.5-2.3 4.8-4.8 7.3h-1c2-2 4-5 5-7.2z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M327.8 213.3a.5.4 9.8 1 1-.4-.7.5.4 9.8 0 1 .4.7z" fill="#d52b1e" stroke="#000" stroke-width=".1"/>
<path d="M326 213.8l1.4-.7c-.7 1-1.2 1-1.8 1h.3zm2.5-5c0 1.2-1 2.4-2 3.2-1 1-1 1.2-2.2 1.6-1.2-2.8 2.8-3.3 4.2-4.8z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M328.5 208.8c-1.3 2.5-3.5 3.8-4.7 5.4 1.5-2.2 3-2.7 4.7-5.4zm-28-33.3c-2 3-4.5 8-5 12-1.5 7 .5 15.2 7 20.8 5 4.7 13 6 16.4 6.8 3 1 5 2 6 3 0 0 0-1-1-1-2 0-4-1-8-1-8-1-15-4-19-12-6-10-3-18 2-26z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M314 213.6c0 .4-4 3.7-7.4 3.5h-3l2-1c2.4 0 6.3-2 8.5-1z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M303.8 216.3c2.7.3 5.5-.8 7.7-1.6" fill="#007934" stroke="#000" stroke-width=".1"/>
<path d="M311.2 208.7c.3 0 3.4 1.6 4.6 3.7 1 1.5.7 2 .7 2s-.2 0-1.3-1c-1-1.3-3.4-3.4-4-4.7z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M316.5 214.2c-1-1.7-2.5-3-3.7-4.2" fill="#007934" stroke="#000" stroke-width=".1"/>
<path d="M300.3 175.8c0-.3.3-3.4 2-4.4 1.3-.7 1.8-.5 1.8-.5s1 0 0 1-2 3-3 3z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M304 171c-1.4.7-2.3 2.2-3 3.4" fill="#007934" stroke="#000" stroke-width=".1"/>
<path d="M299.4 177.4c-.2-.2-1-3-.3-4.7l1-1.4s1 0 1 1.3 0 3.7-1 4.8z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M300 171.4c-.6 1.4-.6 3-.6 4.4" fill="#007934" stroke="#000" stroke-width=".1"/>
<path d="M299.4 177.5c.2 0 2.7-.8 4-2 .7-1 .7-1.4.7-1.4l-1 1c-1 1-3 2-3 3z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M304 174c-1 1.2-2.2 2-3.3 2.7" fill="#007934" stroke="#000" stroke-width=".1"/>
<path d="M298.2 179.6c-.2-.2-1.3-3-1-5.2.4-1.6.7-1.7.7-1.7v7.4z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M298 172.7c-.5 1.7-.2 3.6 0 5" fill="#007934" stroke="#000" stroke-width=".1"/>
<path d="M297.3 181.6c-.3-.2-2.3-3-2-5.2 0-1.7.4-2 .4-2s.4 0 .7 1.4c.3 1.6 1.2 4.3 1 5.8z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M295.7 174.5c-.2 1.8.5 3.7 1 5.2" fill="#007934" stroke="#000" stroke-width=".1"/>
<path d="M296.2 184c-.2 0-2.2-2.4-2.4-4.6-.2-1.5 0-1.8 0-1.8s.4 0 .8 1.3c.5 1 1.6 3 1.6 5z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M294 177.7c0 1.7.8 3.4 1.4 4.8" fill="#007934" stroke="#000" stroke-width=".1"/>
<path d="M298.2 179.6c.3 0 3.2-.2 4.6-1.7l1-2s-.2-1-1.4 0c-1 1-3.4 2-4.2 3z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M303.7 176.5c-1 1.2-2.7 2-4 2.5" fill="#007934" stroke="#000" stroke-width=".1"/>
<path d="M297.3 181.6c.2 0 3.2 0 4.6-1.4 1-1 1-1.4 1-1.4s-1-.3-2 .3c-1 1-4 2-5 3z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M303 179c-1.2 1-2.8 1.6-4 2" fill="#007934" stroke="#000" stroke-width=".1"/>
<path d="M296.4 184.2c.2 0 3.4-.2 5-1.7 1-1 1-1.5 1-1.5s-.2-.4-1.5.3c-2 .8-4 1.8-5 3z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M302.3 181c-1.2 1.3-3 2-4.3 2.5" fill="#007934" stroke="#000" stroke-width=".1"/>
<path d="M296.8 183s-.3-.5-.3-1c0-.6.2-.8.2-.8l-.2-.2v1.2l-.6-.5-1-.4v1.7" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M295.6 180.3a.5.4 83.5 1 1 0 1 .5.4 83.5 1 1 0-1z" overflow="visible" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M296.8 180.3a.4.5 19.3 1 1-.3 1 .4.5 19.3 1 1 .3-1z" overflow="visible" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M296.7 183l1-.7c.3-.4.3-.7.3-.7h.2l-.4.7-.2.3h.6l.5-.3-.6.5-1 .3" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M299.4 181.6a.4.5 45.6 1 0-.8.8.4.5 45.6 1 0 .8-.8z" overflow="visible" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M298.4 180.8a.4.5 19.8 1 0-.3 1 .4.5 19.8 1 0 1-1z" overflow="visible" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M295.4 187c-.2-.3-2.4-2.7-2.8-5-.2-1.5 0-1.8 0-1.8s.3 0 .8 1.3c.6 1.5 2 4 2 5.4z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M292.6 180.3c.2 1.8 1.2 3.5 2 5" fill="#007934" stroke="#000" stroke-width=".1"/>
<path d="M295.6 187c.3 0 3.5-.5 5-2.2 1-1.2 1-1.6 1-1.6s-.2-.4-1.4.5c-1.3.8-3.8 2-4.6 3.2z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M301.5 183.2c-1 1.4-2.8 2.2-4.2 3" fill="#007934" stroke="#000" stroke-width=".1"/>
<path d="M295.2 189.6c.3 0 3.5-1 5-2.6 1-1.3 1-1.7 1-1.7s0-.2-1.4.7c-1.2 1-3.8 2.5-4.6 3.6z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M301.2 185.4c-1.2 1.4-3 2.4-4.3 3.3" fill="#007934" stroke="#000" stroke-width=".1"/>
<path d="M295 189.6c-.3 0-3.3-2.2-3.8-4.5-.3-1 0-2 0-2s.5 0 1.2 2 2.6 4 2.7 6z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M291.3 183.2c.3 1.8 1.5 3.5 2.5 4.8" fill="#007934" stroke="#000" stroke-width=".1"/>
<path d="M295.2 193c.3 0 3.4-1.5 4.6-3.6 1-1.5.7-1.8.7-1.8s-.2-.3-1.3 1c-1 1.2-3.4 3-4 4.5z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M300.5 187.7c-1 1.6-2.5 3-3.8 4" fill="#007934" stroke="#000" stroke-width=".1"/>
<path d="M295 193.2c-.3 0-3.6-1.7-4.4-4-.6-1.6-.4-2-.4-2s.4-.4 1.3 1c1 1.3 3 3.5 3.5 5z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M290.3 187.2c.5 1.8 2 3.4 3.2 4.5" fill="#007934" stroke="#000" stroke-width=".1"/>
<path d="M295 191.6s-.4-.5-.5-1c-.2-.6 0-1 0-1h-.3v1l.2.3-.6-1-.3-1h-.2.5c.6 0 1 1 1 1" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M293 189a.6.4 69.4 1 1 .4 1.2.6.4 69.4 1 1-.4-1z" overflow="visible" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M294.3 188.7a.4.6 5.2 1 1 0 1.2.4.6 5.2 1 1 0-2z" overflow="visible" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M295 191.6s.6-.5.8-1c.3-.5.3-.8.3-.8h1v1.2l1-.3 1-.4v.7l-1 .7" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M297.5 189.5a.4.6 31.5 1 0-.6 1 .4.6 31.5 1 0 0-1z" overflow="visible" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M296.3 189a.4.6 5.7 1 0 0 1 .4.6 5.7 1 0 0-1z" overflow="visible" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M295.4 196.2c-.3 0-3.8-1.8-5-4-1-1.7-1-2-1-2s.3-.4 1.5 1c1 1.3 3 3.5 4 5z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M289.5 190.2c1 1.8 2.8 3.3 4.2 4.6" fill="#007934" stroke="#000" stroke-width=".1"/>
<path d="M295.7 196.2c.3 0 4-2 4.8-4.4.7-1.8.4-2.3.4-2.3s-1-.3-2 1.2c-1 1.4-4 3.8-4 5.5z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M301 189.6c-.8 2-2.4 3.7-3.7 5" fill="#007934" stroke="#000" stroke-width=".1"/>
<path d="M296.6 199.2c.3 0 3.7-2.2 4.5-4.7 1-2 1-2.3 1-2.3s0-.3-1 1.3c-1 1.5-3 4-3 5.7z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M301.5 192.3c-.7 2-2.2 3.8-3.4 5.2" fill="#007934" stroke="#000" stroke-width=".1"/>
<path d="M296.3 199.2c-.4 0-4.7-1.2-6.2-3.7-1-2 0-2.5 0-2.5s1-.4 2 1 5 3.5 6 5.2z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M289.3 193c1 2.2 3.3 3.7 5 4.8" fill="#007934" stroke="#000" stroke-width=".1"/>
<path d="M300.2 205.7c.2-.2 2.5-3 2.7-5.6 0-1-1-2-1-2s-1 0-1 2-2 5-2 6z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M302.7 198c0 2-1 4-1.6 5.7" fill="#007934" stroke="#000" stroke-width=".1"/>
<path d="M300 205.6c-.5.2-5.3 0-7.6-2-1.7-1.7-1.6-2.3-1.6-2.3s.2-.5 2 .5c2 1 5.8 2.3 7.2 3.8z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M290.8 201.4c1.8 1.7 4.5 2.6 6.5 3.4" fill="#007934" stroke="#000" stroke-width=".1"/>
<path d="M298.2 203c-.4 0-4.8-1-6.8-3-1.6-1.7-1.5-2.2-1.5-2.2s0-.4 1 .8c1 1.2 5 3 6 4.5z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M290 198c1.5 1.6 4 3 5.8 4" fill="#007934" stroke="#000" stroke-width=".1"/>
<path d="M298.4 203c.4-.2 3.6-2.8 4-5.6.2-2-.2-2.5-.2-2.5s-.5-1-1.2 1-2.5 4-2.6 6z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M302.2 195c-.2 2.2-1.5 4.3-2.5 6" fill="#007934" stroke="#000" stroke-width=".1"/>
<path d="M297.4 201.5s-.6-.4-1-1c-.4-.3-.5-.7-.5-.7h-1v1.2h-1l-1-.4v.2l1 .4 1 .5" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M294.2 199.8a.7.5 46 1 1 1 1 .7.5 46 1 1-1-1z" overflow="visible" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M295.4 198.8a.7.5 71.6 1 1 .4 1.3.7.5 71.6 1 1-.4-1z" overflow="visible" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M297.5 201.4s.4-.6.4-1.3h-1v2-1l-1 1-1 2" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M299 198.2a.5.7 8 1 0 0 1.3.5.7 8 1 0 0-1.3z" overflow="visible" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M297.6 198a.7.5 72.2 1 0 .4 1.4.7.5 72.2 1 0-.4-1.3z" overflow="visible" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M301.8 207.6c-.3.2-4.3 1-6.8-.2-1.8-1-2-1.5-2-1.5s0-1 2-1c1.8 0 5.2 1 6.8 2z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M293 206c2 1 4.5 1.2 6.4 1.4" fill="#007934" stroke="#000" stroke-width=".1"/>
<path d="M302 207.5c.2 0 2-2.5 2-4.8-.2-1.7-.5-2-.5-2s-.3-.2-.5 1.3c-.3 1.5-1.2 4-1 5.5z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M303.5 200.8c.2 1.8-.4 3.6-1 5" fill="#007934" stroke="#000" stroke-width=".1"/>
<path d="M305.5 210.3c-.3.3-5 1.5-8 .3-2-1-2-1.5-2-1.5h2c2.2 1 6.3 1 8 2z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M295.5 209.2c2.2 1 5 1 7.3 1" fill="#007934" stroke="#000" stroke-width=".1"/>
<path d="M305.8 210.3c.2-.3 1.2-3.8 0-5.6-1-1.4-1.5-1.4-1.5-1.4s-.4.2 0 1.6c.3 1 .5 4 1.5 5z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M304.4 203.4c1 1.4 1.2 3.4 1.3 5" fill="#007934" stroke="#000" stroke-width=".1"/>
<path d="M303.3 208.6s-.5.5-1.2 0v-.6.2l1 .7h1-1 1l2-1" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M299.5 208.7a.8.5 24 1 1 1.4.7.8.5 24 1 1-2-.7z" overflow="visible" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M300.3 207.2a.8.5 50 1 1 1 1.2.8.5 50 1 1-1-1.2z" overflow="visible" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M303.5 209s.4-.5 0-1.2l-.5-1 .8.8c0 .3.2.4.2.4l.2-.8v-.7h.2v1l-.5 1.5" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M303.7 205a.8.5 69.4 1 0 .6 1.6.8.5 69.4 1 0-.6-1.5zm-1.5 1a.8.5 43.7 1 0 1 1 .8.5 43.7 1 0-1-1z" overflow="visible" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M308.3 212c-.3.2-4.2 2.8-7.4 2.2-3-.5-3-1-3-1s0-.7 2-1c2 0 6-1 8-.3z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M298.4 213c2.5.7 5.2 0 7.3-.5" fill="#007934" stroke="#000" stroke-width=".1"/>
<path d="M310.8 212.5s-.5.8-1.3.6h-1.2l-.3 1 1.3 1h.5l-1 1h-.6v1h1.2c.2 0 1.4-1 1.4-1" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M306.6 214a1 .6 5.4 1 1 1.7.2 1 .6 5.4 1 1-1.7 0zm.4-2a1 .6 31.2 1 1 1.5 1 1 .6 31.2 1 1-1.5-1z" overflow="visible" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M309.5 212.2c.2-.3.7-4-1-5.6-1-1.2-1.7-1-1.7-1s-.5 0 0 1.5c.8 2 1.5 5 2.7 6z" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M306.8 205.6c1.4 1.2 2 3.2 2.3 4.7" fill="#007934" stroke="#000" stroke-width=".1"/>
<path d="M311.4 213s.2-.7-.5-1.2l-2-.6v-.4l1 .6v.4-1l-1-.7v3" fill="#007934" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M309.7 209a1 .6 42.7 1 0 1.3 1 1 .6 42.7 1 0-1.3-1zm-1.2 1.5a1 .6 17 1 0 1.7.6 1 .6 17 1 0-1.7 0z" overflow="visible" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M319 209s-2.2 5.4-1.4 6c0 0 2.3-4.3 4.4-6 1-1 1.8.2 2-.7 0-1-3-2.2-3-2.2l-2 3" fill="#452c25"/>
<path d="M319 209s-2.2 5.4-1.4 6c0 0 2.3-4.3 4.4-6 1-1 1.8.2 2-.7 0-1-3-2.2-3-2.2l-2 3" fill="none" stroke="#000" stroke-width=".2"/>
<path d="M310.6 213s-3.4 6-2.5 6c1 .2 5-7.4 5-7.4l-1 .2v1.3z" fill="#452c25"/>
<path d="M310.6 213s-3.4 6-2.5 6c1 .2 5-7.4 5-7.4l-1 .2v1.3z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M311.6 211.5s-3.6 5.8-2.7 6l4-7.5-2 .2-1 1.3z" fill="#452c25"/>
<path d="M311.6 211.5s-3.6 5.8-2.7 6l4-7.5-2 .2-1 1.3z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M312.3 210.5s-4 5.4-3.2 5.6c1 1 6-6 6-6h-1l-1 2z" fill="#452c25"/>
<path d="M312.3 210.5s-4 5.4-3.2 5.6c1 1 6-6 6-6h-1l-1 2z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M313.4 209.5s-4.7 5-4 5.2c1 .3 6.3-6.2 6.3-6.2h-1.2l-1 1z" fill="#452c25"/>
<path d="M313.4 209.5s-4.7 5-4 5.2c1 .3 6.3-6.2 6.3-6.2h-1.2l-1 1z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M313.6 207.7s-4.2 5.4-3.3 5.6c1 .2 5.5-6.8 5.5-6.8h-1.3l-1 1.2z" fill="#452c25"/>
<path d="M313.6 207.7s-4.2 5.4-3.3 5.6c1 .2 5.5-6.8 5.5-6.8h-1.3l-1 1.2z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M312.5 212.4s-4 5.5-3.2 5.6c1 .2 5.4-7 5.4-7h-1.3l-1 1.4z" fill="#452c25"/>
<path d="M312.5 212.4s-4 5.5-3.2 5.6c1 .2 5.4-7 5.4-7h-1.3l-1 1.4z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M314.8 211.3s-2.4 4.5-2 4.6c.2 0 3-3 4.5-6 1.4-3-2.6 0-2.6 0" fill="#452c25"/>
<path d="M314.8 211.3s-2.4 4.5-2 4.6c.2 0 3-3 4.5-6 1.4-3-2.6 0-2.6 0" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M315 211s-2.3 5.3-1.5 5.8c0 0 3-3.2 3.7-6 .8-2.5 0 0 0 0l-.2-3-2 2.8" fill="#452c25"/>
<path d="M315 211s-2.3 5.3-1.5 5.8c0 0 3-3.2 3.7-6 .8-2.5 0 0 0 0l-.2-3-2 2.8" fill="none" stroke="#000" stroke-width=".2"/>
<path d="M313.8 210.4s-4.7 4.8-4 5c1 .4 6.4-6 6.4-6H315l-1.2 1z" fill="#452c25"/>
<path d="M313.8 210.4s-4.7 4.8-4 5c1 .4 6.4-6 6.4-6H315l-1.2 1z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M314.2 211s-4.7 5-4 5.2c1 .3 6.3-6.2 6.3-6.2h-1.2l-1 1z" fill="#452c25"/>
<path d="M314.2 211s-4.7 5-4 5.2c1 .3 6.3-6.2 6.3-6.2h-1.2l-1 1z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M314.6 211.8s-4.8 5-4 5.2c1 .3 6.3-6.2 6.3-6.2h-2l-1 1z" fill="#452c25"/>
<path d="M314.6 211.8s-4.8 5-4 5.2c1 .3 6.3-6.2 6.3-6.2h-2l-1 1z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M315 205s-3.6 4.6-3 5.4c.4.8 3.6-2 4.7-4 1-2-1.7-1.4-1.7-1.4" fill="#452c25"/>
<path d="M315 205s-3.6 4.6-3 5.4c.4.8 3.6-2 4.7-4 1-2-1.7-1.4-1.7-1.4" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M314.8 210s-3 5.7-2.2 5.4c.8-.4 3.8-4.7 4.2-5.7.3-1 .2-2 .2-2l-2.4 1.5.2 1" fill="#452c25"/>
<path d="M314.8 210s-3 5.7-2.2 5.4c.8-.4 3.8-4.7 4.2-5.7.3-1 .2-2 .2-2l-2.4 1.5.2 1" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M314.8 208s2.5-4.6 0 1c-2.5 5.3-3.4 4.4-3.4 4.4-.2-.3 2.2-4 2.2-4s1.7-2.8 2-3" fill="#452c25"/>
<path d="M314.8 208s2.5-4.6 0 1c-2.5 5.3-3.4 4.4-3.4 4.4-.2-.3 2.2-4 2.2-4s1.7-2.8 2-3" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M317.5 207.4s2.8-4.6 0 1c-2.8 5.3-4 4.4-4 4.4 0-.3 2.6-4 2.6-4s2-2.8 3-3" fill="#452c25"/>
<path d="M317.5 207.4s2.8-4.6 0 1c-2.8 5.3-4 4.4-4 4.4 0-.3 2.6-4 2.6-4s2-2.8 3-3" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M316.5 205.5s-3.5 4.5-3 5.2c.5.8 3.7-2 4.7-4s-1.7-1.4-1.7-1.4" fill="#452c25" stroke="#000" stroke-width=".1"/>
<path d="M352.8 251a32.8 37 0 1 1-65.6 0 32.8 37 0 1 1 65.6 0z" fill="#e8a30e"/>
<path d="M293.7 251c0-17 12-30.2 26.3-30.2 14.2 0 26.3 13 26.3 30.3" style="line-height:normal;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration-line:none;text-transform:none;block-progression:tb" font-weight="400" overflow="visible" color="#000" font-family="Sans" fill="none" stroke="#390" stroke-width=".8"/>
<path d="M287.2 253c1 19.5 15.3 35 32.8 35 17.5 0 32-15.5 32.8-35h-65.6z" fill="#007934" stroke="#eee" stroke-width=".1"/>
<path d="M352.8 251a32.8 37 0 1 1-65.6 0 32.8 37 0 1 1 65.6 0z" fill="none" stroke="#000" stroke-width=".4"/>
<path d="M314.5 225.4c-.4 1.4 0 2.5.7 3.6.6 1 1 1.8 1 2.7a8 8 0 0 0-.8.5l-5.6-3.7 3.8 5.5a8 8 0 0 0-.2.2c-1-.4-2-.5-3-.3-1.4 0-2.5-1-3.7-1 .8 1 2 2 3 2s2 0 2.7 1a8 8 0 0 0-.2 1l-6.6 1 6.6 1c-1 0-1.8 1-2.4 2-.7 1-1.7 1-3 2 1.3 0 2.5 0 3.6-1 .8-1 1.7-1 2.7-1l1 1-3 5 6-4h1v3c0 1 0 2-1 3 1-1 2-2 2-3l2-3h1l2 6 2-7h1c1 1 1 2 2 2 1 1 2 2 2 3 1-2 0-3 0-4-1-1-1-2-1-3 0 0 1 0 1-1l6 4-4-6h3c2 0 3 0 4 1-1-1-2-2-3-2s-2-1-2-1v-1l7-1-6-1c1-1 2-1 3-2s2-2 3-2c-1-1-3 0-4 0h-3a8 8 0 0 0 0-1l4-6-5 3c1-1 1-2 1-3 0-2 0-3 1-4-1 0-1 2-2 3 0 1 0 2-1 2a8 8 0 0 0-1 0l-1-7-1 6h-1c0-1-1-2-2-3s-2-2-2-3z" overflow="visible" fill="#d52b1e" stroke="#000" stroke-width=".1"/>
<use height="330" width="330" transform="matrix(.13 .05 -.05 .13 333.99 232.71)" fill="#fcbf49" stroke-width="1.1"/>
<use height="330" width="330" transform="matrix(-.14 0 0 .14 333.96 232.69)" fill="#fcbf49" stroke-width="1.1"/>
<path d="M325.8 236.7c-1.6-1.4-3.7-1.6-4.8-.6-.8 2-.8 3 .2 4a.5.5 0 0 0-.3 0c-1-1-1-2-1-4 1-1 3-1 5 1"/>
<path d="M323.3 236.3c-1 0-1.2.2-1.6.5-.4.4-.6.3-.7.4v.2c.3 0 .6-.2 1-.6.4-.3 1-.3 1.3-.3 1.3 0 2 1 2 1 .3 0-.6-1.2-2-1.2"/>
<path d="M325 237.5c-1-1-2.7-1-3.4 0h.3c0-1 2-.6 2 0"/>
<circle r=".6" cy="237.4" cx="323.1"/>
<path d="M321.6 237.6c.7.6 2.3.7 3.3 0l-1-.2c-1 .8-2 .7-3 .2v-.2"/>
<path d="M325 237.8c-1.2 1-2.4 1-3 .5-1-.5-1-.6-.7-.6 0 0 .3 0 .8.4 1 1 2 1 3 0m-3 2a.4.4 0 1 1 0 1s0 1-1 1v1h1a.6.6 0 1 0 1-1m1 3c-1 0-1-1-2-1v1h2l2 1m0 0h-2v1h2m-1-2c-1 0-1 1-2 1v1c2 0 1-1 3-1m-9-6c2-1 4-1 5 0 1 2 1 3 0 4a.5.5 0 0 1 1 0c1-1 1-2 1-4-1-1-3-1-5 1m0-3c1 0 1 0 2 1l1 1a4 4 0 0 1-1 0h-1c-1 0-2 1-2 1s1-1 2-1m-2 0c1-1 3-1 4 0 0-1-2 0-2 0"/>
<circle transform="scale(-1 1)" r=".6" cy="237.4" cx="-316.9"/>
<path d="M318.4 237.6c-.7.6-2.3.7-3.3 0l1-.2c1 .8 2 .7 3 .2v-.2"/>
<path d="M315 237.8c1.2 1 2.4 1 3 .5 1-.5 1-.6.7-.6 0 0-.3 0-.8.4-1 1-2 1-3 0m3 2a.4.4 0 1 0 0 1s0 1 1 1v1h-1a.6.6 0 1 1-1-1m-1 3c1 0 1-1 2-1v1h-2l-2 1m0 0h2v1h-2m1-2c1 0 1 1 2 1v1c-2 0-1-1-3-1"/>
<path d="M323.2 258.4c1.6.2 3.3.2 4.7-.3h4-2l-3-2h-1c2 3 7 2 12 1h6l-2-1c-1 0-3 0-3-1l-5-3h-1c-1 0 0 0-5-4-5-2-4-3-7-4-1 0-2-1-3-1-2 1-5 2-7 3l-4 3c-1 1-4 3-7 5l-9 5c8 0-7 3 29 5z" fill="#007934" stroke="#000" stroke-width=".1" stroke-linecap="round"/>
<path d="M303.3 249c2-1 10-5.3 12.4-8.4-.4 0 .6 1 .5 1.3.8 0 .4-1 1-1 .5 0 1 0 1.3-1h.2c-.7 1-2 2-3.2 3h1.4v-1c-1 0-2 0-2 1-1 0-1 1-2 1 0-1 1-1 1-1 1 0 1-1 2-1s1-1 2-2c0 0-1 0-1 1l-3 2h-1c-1 0-1 1-1 1-1 1-2 2-2 3l-1 1c-1 0-5 3-5 3 0-2-4 1-13-2m31 0h-1c0-1-1-1-1-1 1 0 2 1 2 0h-1l-1-1h3c0-1 1-1 1-1h1-3 3v-1c0-1 1-1 1-1v1h2c0-1-1-1-1-1h1v1h1c0 1-1 1-1 1h-1v1h1l1-1h-1c-1 0 0 0 0-1s1 0 1 0-1-1 0-1h1-1c0 1-1 1 0 1v1c0 1 1 1 1 1 0-1 1 0 2-1-1 0-1-1 0-1s3 0 4 1h-4s-2 1-4 1c-1 0-1-1-2-1m-12-1" fill="#007934" stroke="#000" stroke-width=".1"/>
<path d="M321.2 259c2 0 2.2 1.5 3.5.2 1 .2 2.2 0 2.2-.3 2 0 11-1 10-1-1-1-3-2-4-2 0-1-1-1-1-1-1 0-2 0-2-1l-3-2-1-2-2-1c-1-1-2-1-2-2-1 0-1 0-1-1-1 0-2-1-2-1-1 0-2 1-3 2-1 0-2 1-2 1-1 0-3 1-6 3-3 1-6 2-7 2 0 0 2 1 8 1l3 1h6z" fill="#007934" stroke="#000" stroke-width=".1"/>
<path d="M309.8 254.8c1.2-.6 6-3 7.4-4.5-.2 0 .5.5.4.7.5 0 .2-.4.6-.5h.8c.3-.2 0 0 0 0-.3.7-1.2 1-2 1.6l.3 1h.7c.3 0 .2 1 0 1 0 1-.8 1-1 1l-1 1h2.4l1.4-1c-.2 0-.5 1-.4 1 0 0 .2 1 .4 0-.4 1-1.3 1-1.5 2h-.6c-.3 0-.2 1-.4 1-.7 0-1 1-1.4 2l-1 1c-1 0-3 2-3 2 0-1-3 1-8-1" fill="#007934" stroke="#000" stroke-width=".1"/>
<path overflow="visible" font-weight="400" style="line-height:normal;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration-line:none;text-transform:none;block-progression:tb" d="M320 214.2c-18 0-32.8 16.5-32.8 37 0 20.3 14.7 36.8 32.8 36.8 18 0 32.8-16.5 32.8-37 0-20.3-14.7-36.8-32.8-36.8zm0 8.2c13.2 0 24.7 12.3 24.7 28.7 0 17-11.5 29-24.7 29s-24.7-12-24.7-28 11.5-29 24.7-29z" color="#000" font-family="Sans" fill="#00a6de" stroke="#000" stroke-width=".1"/>
<path d="M324.7 266.8c0 .2 0 .2-.4.3h-.5 1z" fill="#e8a30e"/>
<path d="M324.8 266.8l-.5.2h-.5c0-.2.2-.2.5-.3h.5zm-2.8 9c.8-2.2 1-3.8-.2-6 2-2 3.3-1.2 4.6 0-1.2 2.3-1 4-.2 6-1.5.8-2.8.7-4.2 0z" fill="#e8a30e"/>
<path d="M324 268.6v7.8c0-2.6.2-5 0-7.8z" fill="#e8a30e"/>
<path d="M324.4 268.6c-.3 2.4-.4 4.8-.4 7.8h.2c0-3 0-5.4.4-7.7h-.2zm.7-2.4v1c1-.3 1-.5 1-1zm0 .2c0 .3 1 .4 1 1v-1zm0 .6c0 .3 1 .3 0 1v-1zm0 .4c0 .2 1 .4 1 1v-1z" fill="#e8a30e"/>
<path d="M324 268c.3 0 .7.2.4.8-.4-.3-.2-.4-.4-1z" fill="#e8a30e"/>
<path d="M324 268.4c.2.2.6.3.4 1-.3-.4-.4-.4-.4-1zm1.3-1.7c-.2.2-.6 0-.6.8.5-.3.5-.3.6-.8z" fill="#e8a30e"/>
<path d="M325.3 267c-.2.3-.7.3-.7 1 .6-.4.6-.4.7-.8z" fill="#e8a30e"/>
<path d="M325.2 267.6c-.2 0-.6 0-.7.7.6-.3.6-.2.7-.7z" fill="#e8a30e"/>
<path d="M325.2 268c-.2.2-.7 0-.7.8.4 0 .4-.3.7-.7z" fill="#e8a30e"/>
<path d="M325 268.6c-.3 0-.5 0-.6.7.5-.3.4-.2.5-.7zm.2.3c-.7 2-.8 4-.7 7 0-4 .2-5 1-8a2.8 2.8 0 0 0-.3 0zm1.2-3c-.4 0-.6 0-.5 1v-1zm-.8 0c.2 0 .5 0 .2 1-.4-1-.3-1-.2-1zm-.2 1c.3 0 .5 0 .2 1l-.2-1z" fill="#e8a30e"/>
<path d="M325.3 267.7c0 .3.4.4 0 1-.2-.4-.2-.4 0-1z" fill="#e8a30e"/>
<path d="M325 268c.3.4.6.6.2 1-.3-.3 0-.4-.2-1z" fill="#e8a30e"/>
<path d="M325 268.6c0 .3.4.5 0 1-.2-.4-.2-.4 0-1zm1.5-1.4c-.2.2-.6 0-.7.7l.7-1z" fill="#e8a30e"/>
<path d="M326.4 267.7c-.2 0-.6 0-.8.5.6 0 .6 0 .8-.5z" fill="#e8a30e"/>
<path d="M326.3 268c-.3 0-.7 0-1 .6.7 0 .7 0 1-.6z" fill="#e8a30e"/>
<path d="M326 268.6s-.5-.2-.7.5h.8z" fill="#e8a30e"/>
<path d="M325.8 269c-.3 0-.5 0-.7.6 1-.2 1 0 1-.6zm0 .4c-.8 2-1 3.6-.5 6.8h.2c-.5-3-.3-4.8.5-6.7zm1.7-2.2c-.5.2-.7.2-.7.8.5-.2.5-.4.7-.8z" fill="#e8a30e"/>
<path d="M326.7 267.2c0 .3.4.5 0 1-.3-.5-.2-.5 0-1z" fill="#e8a30e"/>
<path d="M326.4 267.7c.2.3.4.5 0 1 0-.5-.2-.5 0-1z" fill="#e8a30e"/>
<path d="M326.2 268c0 .3.4.5 0 1-.3-.4-.2-.4 0-1z" fill="#e8a30e"/>
<path d="M326 268.5c0 .3.4.5 0 1-.3-.5 0-.5 0-1z" fill="#e8a30e"/>
<path d="M325.7 269c.2.2.5.4 0 1 0-.5-.2-.6 0-1zm1.8-1.2c-.2 0-.6 0-.8.5.6 0 .5 0 .8-.5z" fill="#e8a30e"/>
<path d="M327.3 268.2c-.2 0-.6 0-.8.4.6 0 .6 0 .8-.4z" fill="#e8a30e"/>
<path d="M327 268.5s-.5 0-.7.5c.6 0 .5 0 .8-.5z" fill="#e8a30e"/>
<path d="M327 269c-.3 0-.7-.3-1 .4.5 0 .5 0 1-.4z" fill="#e8a30e"/>
<path d="M326.5 269.4c-.3 0-.4 0-.7.5l.7-1zm-3-.7c.2 2.4.4 4.8.4 7.7 0-3 0-5.4-1-7.7zm-.6-2.6v1c-1 0-1 0-1-1zm0 1c-1 0-1 1-1 1v-1zm0 0l-1 1zm0 1l-1 1v-1z" fill="#e8a30e"/>
<path d="M324 268c-.3 0-.7.2-.5.8.5-.3.2-.4.4-1z" fill="#e8a30e"/>
<path d="M324 268.4c-.3.2-.6.3-.4 1 .3-.4.4-.5.4-1zm-1.3-1.8c.2.2.6.2.6.8-.5-.3-.5-.2-.6-.7z" fill="#e8a30e"/>
<path d="M322.7 267c.2.2.6.2.6.8-.5-.3-.5-.2-.6-.7z" fill="#e8a30e"/>
<path d="M322.8 267.5c.2.2.6.2.6.8-.5-.3-.5-.3-.6-.8z" fill="#e8a30e"/>
<path d="M322.8 268c.2 0 .7 0 .7.8-.4 0-.4-.4-.7-.8z" fill="#e8a30e"/>
<path d="M323 268.5c.3.2.5 0 .5.8-.4-.3-.4-.3-.5-.8zm-.2.5c.5 2 .8 4 .7 7.3h.2c0-3.3-.2-5.2-1-7.3zm-1.2-2.4c.4.3.6.3.5.8v-.8z" fill="#e8a30e"/>
<path d="M322.4 266.7c-.2.3-.5.4-.2 1 .3-.4.3-.4.2-1z" fill="#e8a30e"/>
<path d="M322.5 267.3c-.2.3-.4.4 0 1 0-.5.2-.5 0-1z" fill="#e8a30e"/>
<path d="M322.7 267.6c-.2.3-.5.5 0 1 .2-.4 0-.4 0-1z" fill="#e8a30e"/>
<path d="M323 268c-.3.4-.6.5-.3 1 .4-.4 0-.4.2-1z" fill="#e8a30e"/>
<path d="M323 268.6c0 .2-.5.4 0 1 0-.4.2-.5 0-1zm-1.5-1.5c.2 1 .6 1 .7 1h-.7z" fill="#e8a30e"/>
<path d="M321.6 267.6c.2 0 .6 0 .7.5h-.7z" fill="#e8a30e"/>
<path d="M321.7 268c.2 0 .7 0 .8.6-.6-.2-.6-.2-.8-.7z" fill="#e8a30e"/>
<path d="M322 268.5s.5-.2.7.6h-.8z" fill="#e8a30e"/>
<path d="M322.2 269c.3 0 .4 0 .6.5-.4-.2-.4 0-.6-.6zm0 .5a4 4 0 0 0-.2 0c1 2 1 3.6.7 6.6l.2 1c0-3 0-4-1-6zm-1.7-2.5c.5.3.6.2.7.8-.5 0-.5-.3-.7-.8z" fill="#e8a30e"/>
<path d="M321.3 267c0 .3-.4.5 0 1 .3-.4.2-.4 0-1z" fill="#e8a30e"/>
<path d="M321.6 267.6c-.2.3-.5.4 0 1 0-.5.2-.5 0-1z" fill="#e8a30e"/>
<path d="M321.8 268c-.2.2-.4.4 0 1 .2-.5.2-.5 0-1z" fill="#e8a30e"/>
<path d="M322 268.4c0 .3-.4.5 0 1 .3-.5 0-.5 0-1z" fill="#e8a30e"/>
<path d="M322.3 268.8c-.2.3-.5.5 0 1v-1zm-1.8-1.2c.2 0 .6 0 .8.5h-.8z" fill="#e8a30e"/>
<path d="M320.6 268c.3 0 .7 0 1 .5-.7 0-.7 0-1-.5z" fill="#e8a30e"/>
<path d="M320.8 268.4c.3 0 .7 0 1 .5l-1-1zm.2.6c.3 0 .7-.4 1 .4-.5 0-.5-.3-1-.5z" fill="#e8a30e"/>
<path d="M321.4 269.3c.3 0 .5 0 .7.5v-.5zm2.2-3.2c.3 1 .5 1 .3 1-1 0-1 0-1-1z" fill="#e8a30e"/>
<path d="M324.3 266.4c-.2.2-.5.3-.4 1v-1z" fill="#e8a30e"/>
<path d="M324.4 267c-.3.2-.6.3-.5.8v-.7zm0 .4c-.2.2-.5.3-.4 1 .4-.4.4-.4.4-1z" fill="#e8a30e"/>
<path d="M324.5 268c-.3 0-.6.2-.5.8.5-.3.3-.4.5-1z" fill="#e8a30e"/>
<path d="M324.5 268.4c-.2.2-.6.3-.4 1 1-.4 1-.4 1-1zm-1.2-1.8c.2.2.6.2.6.8-1-.3-1-.3-1-.8z" fill="#e8a30e"/>
<path d="M323.3 267c.2.2.6.2.6.8-1-.3-1-.3-1-.8z" fill="#e8a30e"/>
<path d="M323.4 267.4c.2.2.6.2.6 1-.5-.5-.5-.4-.6-1z" fill="#e8a30e"/>
<path d="M323.4 268c.2 0 .7 0 .6.8-.4-.2-.3-.4-.6-.8z" fill="#e8a30e"/>
<path d="M323.6 268.5c.2 0 .4 0 .4.8-.4-.4-.4-.3-.4-.8zm-.4.3c.4 2.5.6 4.7.5 7.5.2-2.5 0-5-.5-7.5zm-1-2.4c.4.4.6.3.5 1-.4-.3-.4-.5-.5-1z" fill="#e8a30e"/>
<path d="M323 266.6c-.2.2-.5.4-.2 1 .3-.4.3-.4.2-1z" fill="#e8a30e"/>
<path d="M323 267.2c0 .3-.4.3 0 .8 0-.3.2-.3 0-.8z" fill="#e8a30e"/>
<path d="M323.3 267.5c-.2.3-.5.4-.2 1 1-.4 1-.4 1-1z" fill="#e8a30e"/>
<path d="M323.5 268c-.3.3-.6.4-.3 1 .4-.4 0-.5.3-1z" fill="#e8a30e"/>
<path d="M323.6 268.5c-.2.2-.6.4-.3 1 .3-.4.3-.4.3-1zM322 267c.2 0 .6 0 .7.6-.5-.2-.5 0-.6-.6z" fill="#e8a30e"/>
<path d="M322 267.4c.3 0 .8 0 1 .6-.7-.2-.7 0-1-.6z" fill="#e8a30e"/>
<path d="M322.3 267.8c.2 0 .6 0 .7.7-.6-.3-.6-.2-.7-.7z" fill="#e8a30e"/>
<path d="M322.4 268.3c.2 0 .6 0 .7.7v-.7z" fill="#e8a30e"/>
<path d="M322.7 268.8c.3 0 .4 0 .6.6-.5-.2-.5 0-.6-.6zm-.8 1a2.5 2.5 0 0 0-1 0c0 1.3 1 2.5 1 3.6 0 .8 0 1.6-1 2.5 0-3 0-5-1-7zm0-.6c0 2.2 1 4.2 0 7 0-2.8 0-5-1-7zm-2-2.4v.8c-1 0-1-.3-1-.8zm1 .2s-1 .3 0 1v-1zm0 .5c0 .2-1 .3 0 .8v-.8zm0 .3c0 .2-1 .4 0 1v-1zm0 .4c0 .3-1 .5 0 1v-1z" fill="#e8a30e"/>
<path d="M322.7 268.7c-.2.2-.5.5 0 1 0-.4.2-.5 0-1zm-1.7-1.3c.2 0 .6 0 .8.5l-.8-1zm0 .4c.4 0 .8 0 1 .5-.6 0-.6 0-1-.5z" fill="#e8a30e"/>
<path d="M321.3 268.2c.2 0 .7 0 1 .5-.7 0-.7 0-1-.5z" fill="#e8a30e"/>
<path d="M321.5 268.7c.2 0 .6-.3 1 .5-.6 0-.6-.3-1-.5z" fill="#e8a30e"/>
<path d="M322 269c.2 0 .3 0 .5.6-.4 0-.4 0-.6-.5zm-2-1.6c.4.2.6.2.7.7h-.7z" fill="#e8a30e"/>
<path d="M320.7 267.4c0 .3-.3.5.2 1 0-.5 0-.5-1-1z" fill="#e8a30e"/>
<path d="M321 268c0 .2-.3.4 0 .8.2-.4.3-.4 0-1z" fill="#e8a30e"/>
<path d="M321.3 268.2c0 .3-.3.5 0 1 .3-.5.3-.5 0-1z" fill="#e8a30e"/>
<path d="M321.6 268.6c0 .3-.4.5 0 1 .3-.6 0-.5 0-1z" fill="#e8a30e"/>
<path d="M322 269c-.2.3-.5.6 0 1v-1zm-2-1c.2 0 .6 0 1 .4-.7 0-.7 0-1-.4z" fill="#e8a30e"/>
<path d="M320.2 268.4c.2 0 .6-.2 1 .4-.7 0-.7 0-1-.4z" fill="#e8a30e"/>
<path d="M320.5 268.7c.2 0 .6 0 1 .4-.7 0-.7 1-1 0z" fill="#e8a30e"/>
<path d="M320.7 269.2c.2 0 .6-.3 1 .4-.5 0-.5-.2-1-.4z" fill="#e8a30e"/>
<path d="M321 269.5c.5 0 .6 0 1 .5-.6 0-.6 0-1-.5zm4-.7c-.7 2.4-.8 5-.8 7.6a2.5 2.5 0 0 0 .2 0c0-3 0-5.2.7-7.5a2.8 2.8 0 0 0 0-1zm1-2.3c-.5.3-.6.3-.6 1 .4-.3.5-.5.5-1zm-.8 0c0 .4.4.6 0 1-.2-.3 0-.3 0-1z" fill="#e8a30e"/>
<path d="M325 267.3c.2.2.5.3.2.8h-.2z" fill="#e8a30e"/>
<path d="M325 267.6c0 .2.3.4 0 1-.3-.4-.2-.5 0-1z" fill="#e8a30e"/>
<path d="M324.7 268c.2.3.5.5.2 1-1-.4-1-.5-1-1z" fill="#e8a30e"/>
<path d="M324.5 268.5c.2.3.6.5.3 1-.3-.4-.3-.4-.3-1zm1.6-1.5v.7c1-.2 1-.2 1-.6zm0 .5v.6h1zm0 .5l-1 .5c1-.2 1 0 1-.6z" fill="#e8a30e"/>
<path d="M325.7 268.4c-.2 0-.6-.2-.7.6.4 0 .4-.3.7-.6z" fill="#e8a30e"/>
<path d="M325.4 268.8c-.2 0-.4 0-.5.7v-.7zm.2.4c-1 2-1 4-.8 7h.2c-.2-3 0-5 .8-7a4 4 0 0 0-.2 0zm1.5-2.3c1 0 1-1 1-1zm0 0s1 0 0 1v-1zm0 0c1 0 1 0 0 1v-1zm0 0s1 0 0 1v-1z" fill="#e8a30e"/>
<path d="M325.6 268.3c.2.3.5.5 0 1-.2-.5 0-.5 0-1z" fill="#e8a30e"/>
<path d="M325.4 268.7c.2.3.5.5 0 1v-1zm1.7-1.2v.5c1 0 1 0 1-.5zm0 .5v.4c1 0 1 0 1-.5zm0 .3l-1 .5c1 0 1 0 1-.5z" fill="#e8a30e"/>
<path d="M326.6 268.8c-.2 0-.6-.3-1 .5.6 0 .6-.3 1-.5z" fill="#e8a30e"/>
<path d="M326.3 269.2c-.4 0-.5 0-.7.5.4 0 .4 0 .6-.5zm0 .5c-1 2-1 4-.6 6.3h.2c-1-1-1-2-1-3s0-2 1-3.2zm2-2c-.6 0-.8 0-1 .6.6 0 .7-.3 1-.7z" fill="#e8a30e"/>
<path d="M327.4 267.5c0 .3.3.6-.2 1-.2-.5 0-.5.2-1z" fill="#e8a30e"/>
<path d="M327 268c.2.3.4.5 0 1 0-.5-.2-.5 0-1z" fill="#e8a30e"/>
<path d="M326.8 268.3c0 .3.3.5 0 1-.3-.5-.3-.5 0-1z" fill="#e8a30e"/>
<path d="M326.5 268.7c0 .3.4.6 0 1-.3-.6 0-.5 0-1zm-.3.3c0 .4.4.7 0 1-.2-.4-.2-.4 0-1zm2-.8c-.3 0-.7-.2-1 .4.6 0 .6 0 1-.4z" fill="#e8a30e"/>
<path d="M328 268.6c-.3 0-.7-.2-1 .3.6 0 .6 0 1-1z" fill="#e8a30e"/>
<path d="M327.7 269c-.3 0-.7-.3-1 .3.7 0 .6 0 1-.4z" fill="#e8a30e"/>
<path d="M327.4 269.4c-.2 0-.6-.4-1 .3.5 0 .5-.2 1-.3zm-.4.3c-.3 0-.5 0-.8.4h.8zm-3.5 2.7h1c.8 0 1.4.2 1.4.4s-1 .3-2 .3h-2 1z" fill="#e8a30e"/>
<path d="M322.7 272.4l-.4.6h.4l.4-.6zm1 0l-.5.7h.8-.4zm.8 0l-.4.7h2zm.8 0l-.3.7h.7a.3.3 0 0 0-.2 0h-.2z" fill="#e8a30e"/>
<path d="M316.5 268.8l.5 2.7.2.2v1.2c.3 0 .3 1 .5 1h.7-1v-1c-.3 0-.3-1-.3-1v-1l-1-3m-6-1h2v3s0 1 1 2h3v-3l1-2v-2l-1-2v-1m-2-1c-3 1-2 3-1 3m9-8l1-1v-1l-1 1" fill="#e7e7e7" stroke="#000" stroke-width=".1"/>
<path d="M319.2 262.4h.4v-.3H317c-1 0-1 1-2 2 0 0 0 2-1 3v1h-4.7c-.8 0-1.8 1-1.8 1s-1 1-1.4 2v1c1 3 2 0 3 0s2 2 3 2c4 1 6-1 5-6h2" fill="#e7e7e7" stroke="#000" stroke-width=".1"/>
<path d="M317.2 261l.5-1v-.4l-1 1m-8.8 7.6v1.8c0 .4-1 .6-1 .6v.2c-1 0-1 .3-1 .5a1.3 1.3 0 0 0 0 .6v3-3a8.3 8.3 0 0 1 0-1v-1l1-1 1-1v-1a.5.5 0 0 0 0-1 3.8 3.8 0 0 0 0-1 3.2 3.2 0 0 0-1-1m6 2c-1 0-2 0-2 1v2h-1s0 1-1 1l-1 1h-1v-7m4-6h1m0-1z" fill="#e7e7e7" stroke="#000" stroke-width=".1"/>
<path d="M317.8 261.4c.2.3.4.3.6 0-.2-.2-.4 0-.5 0h-1z"/>
<path d="M329 273a2 2 0 0 0 0 .7v.7a2 2 0 0 0 0 .7 2 2 0 0 0 0 1h1.3v-3a2.3 2.3 0 0 0 0-1 2.2 2.2 0 0 0 0-1v-1a2.4 2.4 0 0 0 0-1v-3a2.3 2.3 0 0 0 0-1 3.2 3.2 0 0 0 0-1 3 3 0 0 0 0-1v-1a2.7 2.7 0 0 0 0-1v-2h-1v1a2.3 2.3 0 0 0 0 1v1a2.7 2.7 0 0 0 0 1 2.6 2.6 0 0 0 0 1 3 3 0 0 0 0 1v3a2.5 2.5 0 0 0 0 1v3a2.4 2.4 0 0 0 0 1 2.6 2.6 0 0 0 0 1 2.2 2.2 0 0 0 0 1 2 2 0 0 0-.2 1 2.3 2.3 0 0 0 0 1z" fill="#e7e7e7" fill-rule="evenodd" stroke="#000" stroke-width=".1"/>
<path d="M329 273.6c.4.2 1.2.2 1.3 0m-1.2-.7h2m-1-1h1m-1-1h1m-1-1h1m-1-1h1m-1-1h1m-1-1h1m-1-1h1m-1-1h1m-1-1h1m-1-1h1m-1-1h1m-1-1h1m-1-1h1m-1-1h1m-1-1h1m-1-1h1m-1-1h1m-1-1h1m-1 15h2m-1 1h2" fill="#e7e7e7" fill-rule="evenodd" stroke="#000" stroke-width=".1" stroke-linejoin="round"/>
<path d="M331.5 257h2a13.7 13.7 0 0 0-.7-.3h2.2a5 5 0 0 0-1-.5h2.2c-.3 0-.6-.3-1-.4 1 0 1.2 0 2 .2a2.6 2.6 0 0 0-1-.5c1-.2 1.7-.2 2.6-.2-2.7-1.2-6-.6-8 .8l1-1a2.5 2.5 0 0 0-.7 0l2-1h2a3 3 0 0 0-1 0c1 0 1-1 2-1a4 4 0 0 0-1 0l2-1c-3 1-5 3-5 5-1-2-3-3-6-3l3 1a4.4 4.4 0 0 0-1 0l2 1a3.4 3.4 0 0 0-1 1c1 0 2 1 2 1 1 0 1 1 2 1l1 1c-2 0-5 0-7 3l2-1v1l2-1a4.8 4.8 0 0 0 0 1l2-1v1h2v1h1c-1 1-3 3-3 6l1-2v1l1-2v1l1-2v1l1-2v1l1-1 1-1v2c1 0 1-1 1-1v2-1l1 3v-1l1 2c1-3-1-5-2-6l1 1a5 5 0 0 0-1-1l1 2v-1l2 2a5.4 5.4 0 0 0 0-1l2 2v-1c0 1 1 1 1 2 0-2-3-5-6-5z" fill="#007934" fill-rule="evenodd" stroke="#e7e7e7" stroke-width=".1"/>
<path d="M330.3 257c3.2-.3 7.2 2.4 7.2 5.4l-1.3-1.8v1c0-.4-.7-1.3-1.2-1.7l.2 1c-.3-1-1-2-1.5-2l.2 1c-1 0-1-1-2-2v1c-1-1-1-1-2-1m-2-2c-2-1-6-1-9 2l2-1-1 1c0-1 1-1 2-1a4.8 4.8 0 0 0-1 0l1-1-1 1 2-1-1 1h1m5-1c-1-2-3-5-7-5l2 1a4.3 4.3 0 0 0-1 0l2 1a3.4 3.4 0 0 0-1 0s1 0 2 1h-1 1-1c1 0 1 0 1 1m1 1c-3 1-5 3-5 6v-2 1l1-2v1l1-2v1a13.3 13.3 0 0 1 1-2v1l1-2m-2 0a8.7 8.7 0 0 0-1 1m-1-1a9.7 9.7 0 0 0-1 2m0-1a9 9 0 0 0-1 2" fill="none" stroke="#e7e7e7" stroke-width=".1" stroke-linecap="round" stroke-linejoin="round"/>
<path class="fil1 str2" fill="none" stroke="#e7e7e7" stroke-width=".1" stroke-linecap="round" stroke-linejoin="round" d="M330 258.6v-.6"/>
<path d="M332.6 261.3v1.4m-1-3v1.5m-1-2.7c.2.4.2.8.2 1.3m4.8-.4l.6 1.2m-2-2l.8 1.3m-2-2l.7 1m-10.7-1a4.7 4.7 0 0 1 2-2m0 1c.3-1 .5-1 1.5-1m-.2 1c.5-1 1-1 1.7-1m-.4 1l1.6-1m-3.8-4h2.2m-1.2 0h1.8m-1 0h2m-1.3 0h1m1 0c2-2 5-3 8-1h-2 1l-2-1h1-3 1-4m4-2h-2m1 0h-2m1 0c-1-1-2-1-3-1m1 1h-2m0 1l1 1" fill="none" stroke="#e7e7e7" stroke-width=".1" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M329.4 255.6c.2-2 2-4.4 5.3-4.8-.8.4-1.4 1-2 1.3h1l-1.7 2h1c0 1-1 1-1 1h1c-.4 0-1 1-1.3 1h.8l-1 1m2-4l-1.5 1m1 1a4.5 4.5 0 0 0-1.6 1m1 1l-1.7 1m1 0a3.2 3.2 0 0 0-1.3 1m-.5 3a6 6 0 0 0-1 1m1-2c2 2 4 4 3 8 0-1 0-2-1-2 0 1-1 1-1 1l-1-2a3.5 3.5 0 0 1-1 1s-1-1-1-2l-1 1c0-1-1-2-1-2" fill="none" stroke="#e7e7e7" stroke-width=".1" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M293.3 233.5l1.3.7.3-.6v-.6c0-.2-1-.4-1-.5l-1-.2-1 .4v.8m1 1l1 .8v-1.5a.7.7 0 0 0 0-.2 2 2 0 0 0 0-.2c-1-.4-2-.3-2 .3v.7m-3-.8v-1.2a3.3 3.3 0 0 1 0-.7v-.4h1v.6l1-1h1v2h-1l-2-1-2-1-2-1v-1m9-11c-1 0-1 1 0 2 0 1 1 1 1 1h1v-1s0-1-1-1c-1-1-1-1-2-1h-1m4-1s1 1 0 2c0 1 0 1-1 2 0 0-1 1-2 0 0 0-1 0-2-1v-2c0-1 1-1 1-2l2-1c1 0 2 0 2 1m8-3s0 1 1 1l1-1h1l-3 1h-1l-1-2-1-2a12 12 0 0 0-1-1h1v-1 4m9-3a12.2 12.2 0 0 0 0-2h1v1l-1 2a12 12 0 0 0 0 2s-1 0-1-1h-1v-4m10 5c2-1 3-2 3-3h1c-2 2-4 3-5 4v-1a316.2 316.2 0 0 1 .4-2v-4l1 1h.5v4m9 4l1-1-1.6 1-1 1-1 1v-1l1-1 1-1.6m5 10l1.6-1h-2v2m-1-1.3h-2a2 2 0 0 0 0-1 2.6 2.6 0 0 0 0-1h7l-4 5-.8-1a5.4 5.4 0 0 0 0-1l1-2a35 35 0 0 0-.4-1l-.8-1" style="line-height:125%;-inkscape-font-specification:'Linux Biolinum Bold';text-align:center" font-size="100" font-weight="700" letter-spacing="60" font-family="Linux Biolinum" word-spacing="0" text-anchor="middle" fill="#e8a30e" stroke="#000" stroke-width=".1"/>
<path d="M325 280.6l-.8 2.2h-2.4l2 1.5-.8 2.2 2-1.3 1.8 1.3-.6-2.2 1.8-1.4-2.3-1zm9-4l-.7 2.3H331l1.8 1-.7 2 2-2 2 1v-2l2-2h-3zm14.2-24.8l-.8 2.2H345l2 1.4-.7 2.3 2-1.4 1.8 1.4v-2.3l2-1.4h-3zm-6.7 17.8l.7 2.2h2.4l-2 1.4.8 2.3-2-1.4-1.8 2 .6-2-1.8-1h2.3zm4.7-8.2l.8 2.2h2.3l-2 1.5.8 3-1-1-2 2 1-2-2-1h3zm-31 19.2l.6 2.2h2.4l-2 1.5.8 2.2-2-1.3-1.8 1.3.6-2.2-1.8-1.4 2.3-1zm-9.3-4v2.3h2l-2 1 1 2-2-2-2 1v-2l-2-2h2zM291 252l.8 2.2h2.4l-2 1.4.7 2.3-2-2-2 1v-3l-2-2h2zm6.7 17.8l-.7 2.2h-2l2 1.4-.7 2.3 2-1.4 1.8 1.5v-2.3l2-1.4h-3zm-4.7-8.2l-.8 2.2H290l2 1.5-.7 2.3 1.8-1.3 2 1.3v-2.2l2-1.3h-3z" fill="#e8a30e" stroke="#000" stroke-width=".1" stroke-linecap="square" stroke-linejoin="round"/>
<path d="M321 248v-.4l-.7-.5h-.7l-.8 1v1h2.3" fill="#e7e7e7"/>
<path d="M321 248v-.4l-.7-.5h-.6v1l-1 1h.2v1h2zm.3.7v.2h-2.6v-1h2.6" fill="#e7e7e7"/>
<path d="M321.3 248.7v.2h-2.6v-1h2.6zm-2.5 0v-.5h.2v.5-.5h-.2 2.4-.2v.5-.5.5" fill="#e7e7e7"/>
<path d="M318.8 248.7v-.5h.2v.5-.5h-.2 2.4-.2v.5-.5.5" fill="#e7e7e7"/>
<path d="M319.4 248.6v-.4h-.4v.4h.4" fill="#e7e7e7"/>
<path d="M319 248.3v.2h.3v-.2h-.2m2 .3v-.4.4h1m0-.3v.2-.2m1-.3v-.3.3h1zm0-.3v.2-1m-1 0v-1h1zm-1 0h1v-1m1 0v-1h1m-2 2v-1m1 0v-1h1m-2 2h1v-1m1 0h-1v-1h1m0 1h-1v-1h1zm-1 0h1m-1 0v-1m2 0h2m-2-1zm1 0zm0 0" fill="#e7e7e7"/>
<path d="M319.8 246h.4v.4h-.4v-.4z" fill="#e7e7e7" fill-rule="evenodd"/>
<path d="M320 245.6v.5m-.2 0h.4" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M317 210.3s-2.2 5.4-1.4 6c0 0 3-3.3 3.7-6 .8-2.5 0 0 0 0l-.2-3-1 2.8" fill="#452c25"/>
<path d="M317 210.3s-2.2 5.4-1.4 6c0 0 3-3.3 3.7-6 .8-2.5 0 0 0 0l-.2-3-1 2.8" fill="none" stroke="#000" stroke-width=".2"/>
<path d="M317.6 207.7s-2.8 6-2 6.4c0 0 2.2-2 2.8-4 .6-2 0 0 0 0l.8-4" fill="#452c25"/>
<path d="M317.6 207.7s-2.8 6-2 6.4c0 0 2.2-2 2.8-4 .6-2 0 0 0 0l.8-4" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M320.5 206.4s-2.8 6-2 6.4c0 0 2.2-2.7 2.8-4.8.6-2.2 0-.2 0-.2l.8-3.8" fill="#452c25"/>
<path d="M320.5 206.4s-2.8 6-2 6.4c0 0 2.2-2.7 2.8-4.8.6-2.2 0-.2 0-.2l.8-3.8" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M356.8 195.6l3.4 2s.8.6-1 .2c-1.8-.4-5.6-1.7-12.8-6.4-3.3-2-4.3-2-4.3-2h5l10 6.2z" fill="#452c25"/>
<path d="M356.8 195.6l3.4 2s.8.6-1 .2c-1.8-.4-5.6-1.7-12.8-6.4-3.3-2-4.3-2-4.3-2h5l10 6.2z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M358 194.8l3.3 2s.8.6-1 .2c-1.8-.4-5.6-1.8-12.8-6.4-3.3-2-.6 1.7-.6 1.7v-2.5l10 5z" fill="#452c25"/>
<path d="M358 194.8l3.3 2s.8.6-1 .2c-1.8-.4-5.6-1.8-12.8-6.4-3.3-2-.6 1.7-.6 1.7v-2.5l10 5z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M363.5 196.6s-4-.7-5.4-1.8l-1-.4s1 1.7-5-2c-5-3.8-3-2-3-2l2-.3 10 4 5 3" fill="#452c25"/>
<path d="M363.5 196.6s-4-.7-5.4-1.8l-1-.4s1 1.7-5-2c-5-3.8-3-2-3-2l2-.3 10 4 5 3z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M342.6 198l1.4 2s-.5 1.8-5-1.7c-4.7-3.5-4.5-3.2-4.5-3.2h2.6l6 3" fill="#452c25"/>
<path d="M342.6 198l1.4 2s-.5 1.8-5-1.7c-4.7-3.5-4.5-3.2-4.5-3.2h2.6l6 3" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M336.6 199s2.2 3 1.7 3.2c-.5.4-3 .2-4.8-2.5-2-2.8 0-.2 0-.2V195l3.2 4" fill="#452c25"/>
<path d="M336.6 199s2.2 3 1.7 3.2c-.5.4-3 .2-4.8-2.5-2-2.8 0-.2 0-.2V195l3.2 4" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M338.8 197.8s2 2.6 2 3c-.3.4-3.3.2-5.6-2.5-2.3-2.6-.3-3.4-.3-3.4l3 2" fill="#452c25"/>
<path d="M338.8 197.7s2 2.7 2 3c-.3.5-3.3.3-5.6-2.4-2.3-2.6-.3-3.4-.3-3.4l3 2z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M350.7 196.2s6 2.5 1.5 2.4c0 0-8.6-2.4-13-6.2l1.2-1.6 10.2 5.2" fill="#452c25"/>
<path d="M350.7 196.2s6 2.5 1.5 2.4c0 0-8.6-2.4-13-6.2l1.2-1.6 10.2 5.2" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M353.8 195.4s3.2 2 3.4 2.7c.2 1-10-1-15.3-6l2-1 9 5z" fill="#452c25"/>
<path d="M353.8 195.4s3.2 2 3.4 2.7c.2 1-10-1-15.3-6l2-1 9 5z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M344.5 197.2s2.3 2 2 2c-.3.3-5-.4-8.6-3.2v-1.7l6 2.8" fill="#452c25"/>
<path d="M344.5 197.2s2.3 2 2 2c-.3.3-5-.4-8.6-3.2v-1.7l6 2.8" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M348.4 197s2.3 1.6 1.8 1.8c-.4 0-2.2 1.6-10.7-3.4l-1-.6 1.3-2 8.6 4" fill="#452c25"/>
<path d="M348.4 197s2.3 1.6 1.8 1.8c-.4 0-2.2 1.6-10.7-3.4l-1-.6 1.3-2 8.6 4.2z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M339.7 192.4s2.8 2.5 2.4 2.8c0 .4-3-.4-5-1.5l-2-2.5 3-.6 2 1.8z" fill="#452c25"/>
<path d="M339.7 192.4s2.8 2.5 2.4 2.8c0 .4-3-.4-5-1.5l-2-2.5 3-.6 2 1.8z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M336.4 188.3l5 3s4 2.8 3.7 3c0 .4-3-.6-6-2-2-1-4-3.8-4-3.8" fill="#452c25"/>
<path d="M336.4 188.3l5 3s4 2.8 3.7 3c0 .4-3-.6-6-2-2-1-4-3.8-4-3.8" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M333.2 202.4s1 2.4.4 2.6c-.6.2-2-.2-3-2.4-1.2-2 1-1.2 1-1.2l1.6 1z" fill="#452c25"/>
<path d="M333.2 202.4s1 2.4.4 2.6c-.6.2-2-.2-3-2.4-1.2-2 .7-1.2.7-1.2l2 1z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M335 201s1.3 2.2 1 2.5c-.3.2-2.2 1-4.2-2s2-2.3 2-2.3l1 1.7z" fill="#452c25"/>
<path d="M335 201s1.3 2.2 1 2.5c-.3.2-2.2 1-4.2-2s2-2.3 2-2.3l1 1.7z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M330.7 190.4s4.8 9.3 4.4 9.7c0 1-2 0-3-2l-2-5 1-1z" fill="#452c25"/>
<path d="M330.7 190.4s4.8 9.3 4.4 9.7c0 1-2 0-3-2l-2-5 1-1z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M336.3 192.8s4 3.4 3.2 3.8c-1 .4-2.4-.2-4.8-2.5-2.3-2 1.5-1 1.5-1" fill="#452c25"/>
<path d="M336.3 192.7s4 3.5 3.2 4c-1 .3-2.4-.3-4.8-2.6-2.3-2 1.6-1 1.6-1z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M334.3 192.8s3 5.3 2.6 5.8c-1 .5-3-1.4-4-2.7l-2-4" fill="#452c25"/>
<path d="M334.3 192.8s3 5.3 2.6 5.8c-1 .5-3-1.4-4-2.7l-2-4" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M313 203.6s-.3 3 0 3.3c0 0 1.6 0 1.7-3 0-3-.3-3-.3-3l-1.5 1" fill="#452c25"/>
<path d="M313 203.6s-.3 3 0 3.3c0 0 1.6 0 1.7-3 0-3-.3-3-.3-3l-1.5 1" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M313.8 200s-1 3.3 0 4c1 .7 2-3.4 2-4.3 0-1-2 .2-2 .2" fill="#452c25"/>
<path d="M313.8 200s-1 3.3 0 4c1 .7 2-3.4 2-4.3 0-1-2 .2-2 .2z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M314.6 204.3s.2 3.2.8 3.4c.6 0 1.6-1 1.6-1.8 0-1-1-3-1-3l-1.4 1" fill="#452c25"/>
<path d="M314.6 204.3s.2 3.2.8 3.4c.6 0 1.6-1 1.6-1.8 0-1-1-3-1-3l-1.4 1" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M314.6 200.4s-1 3.5 0 4.2c1 .7 2-3.4 2-4.4 0-1-2 .2-2 .2z" fill="#452c25" stroke="#000" stroke-width=".1"/>
<path d="M314.7 195s-1.6 1.5-1.6 2.4c1 1 3-1.2 3-1.6 0-.4-1-1-1-1" fill="#452c25"/>
<path d="M314.7 195s-1.6 1.5-1.6 2.4c1 1 3-1.2 3-1.6 0-.4-1-1-1-1z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M313.6 194s-1.3 2.3-1 3c.4.8 1.6-.5 2.2-1.4.6-.8-1.2-1.7-1.2-1.7" fill="#452c25"/>
<path d="M313.6 194s-1.3 2.3-1 3c.4.8 1.6-.5 2.2-1.4.6-.8-1.2-1.7-1.2-1.7z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M331.5 190.8s2 3.8 1.5 4c-.6.2-1.4-.7-2.3-2-.8-1 .8-2 .8-2" fill="#452c25"/>
<path d="M331.5 190.8s2 3.8 1.5 4c-.6.2-1.4-.7-2.3-2-.8-1 .8-2 .8-2z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M331.6 198.6s.7 3.3 0 3.6c-1.2.5-2-2.3-2-3.4 0-1.2 2-.2 2-.2zm-2.6 5s.2 2.6-.2 2.8c-.3.2-1.2.2-2-1.8l-.6-1.3 2.3-1 .5 1.2" fill="#452c25" stroke="#000" stroke-width=".1"/>
<path d="M331.4 203.2s.2 2.5-.3 2.6c0 0-1-.8-2-2.3 0-1.8 3-1.3 3-1.3l1 1z" fill="#452c25" stroke="#000" stroke-width=".1"/>
<path d="M329 195.3s2.6 6 2.2 6.8c-1 2-3.3-3-4-5-.8-2 1.8-1 1.8-1z" fill="#452c25" stroke="#000" stroke-width=".1"/>
<path d="M327.7 196.3s3.6 6.5 2 6.6c-1.4 0-4-5-4.6-6 0-1 3-1 3-1z" fill="#452c25" stroke="#000" stroke-width=".1"/>
<path d="M327.5 197.7s1.8 6.2.6 5.6c-1-.5-2-5.2-2-6.2s2 1 2 1zm6.2-8.8s2.7 4 1.8 4c-.8 0-4-3-4-3 0-1 2.2-1 2.2-1z" fill="#452c25" stroke="#000" stroke-width=".1"/>
<path d="M332 189s3.5 4.8 2.4 5c-1 .2-1-.5-1-.5s-3-2.5-3-3c-.2-.7 1.5-1.5 1.5-1.5m3 0s2 2.6 2 3.4c-1 .8-4-3-5-3.6-1-.5 3 .2 3 .2m-6 3.5s3 7.5 3 8.2c-1 .8-5-5.5-5-6.5-1-1 2-1.8 2-1.8" fill="#452c25" stroke="#000" stroke-width=".1"/>
<path d="M327.5 193.2s1.5 2.3 1.4 3.6c-1 1.2-3-1.8-3-2.4 0-.6 1-1.2 1-1.2z" fill="#452c25" stroke="#000" stroke-width=".2"/>
<path d="M330.6 192s1.2 2.4.8 3c-.3.8-2-1.3-2.5-2.2-1-1 1-.8 1-.8z" fill="#452c25" stroke="#000" stroke-width=".1"/>
<path d="M325 194.4s2 2 2 3c-.2 1.2-3-1.5-3.2-2-.2-.5 1.3-1 1.3-1z" fill="#452c25" stroke="#000" stroke-width=".2"/>
<path d="M337.2 188.4s2.8 2.5 2.4 3c-.5.3-4.3-2.4-5-3-.5-.5 2.6 0 2.6 0z" fill="#452c25" stroke="#000" stroke-width=".1"/>
<path d="M334.8 188.2l2.2 2s2 1.2 1.7 1.6c-.4.3-3.6-1-4-1.8-.7-.7-.6-1.4-.6-1.4l1-.4zm7.3.6s9 3.4 8 4.2c0 .8-8-2.7-10-3.7-1-1 2-.6 2-.6" fill="#452c25" stroke="#000" stroke-width=".1"/>
<path d="M342.4 190s6.3 3.4 5.5 3.7c-1 .4-6-.8-8-2.4-3-1.6-4-2.5-4-2.5l3-.6 2 1.7zm-15.4 4s1 2.4.7 3c-.4.8-1.5-.5-2-1.4-.7-.8 1.2-1.6 1.2-1.6zm.2 5.4s1 3.5 0 4.2c-1.2.6-2-3.5-2-4.5s2 1 2 1z" fill="#452c25" stroke="#000" stroke-width=".1"/>
<path d="M322.3 193.8s3.5-1.5 4-1.4c0 0 .8-.2 1.2-.5l1.3-1s-.6-5 4-4l11.4 1c1.2 0 5.5 1 6.5 2l9 4c.8 0 2.6 1 4 2 .8 0 0 0 0 0s-10.7-6-14.7-6c-1 0 0 1 0 1l-3.2-2c-1-1-2-1-3-1a5.8 5.8 0 0 1-2-1c-.7-1-4-1-4.5-1a7.3 7.3 0 0 1-1-1h.2l-1.5-1h-2.2c0-1-1 2-1.3 3-.4 1-2 1-2.3 1l-1 1c-.2 0-1.3 1-1.7 1h-3l-.5-1h.3zm4.6 10s0 3-1 3.3c0 1-2 1-2-2v-2l1 1" fill="#452c25" stroke="#000" stroke-width=".1"/>
<path d="M327.3 201.4s-.3-1.4-.5-1.6c-.2 0 0-.3 0-.3s-.5-1.4-.8-1.6c-.4-1 0-1 0-1s-.6-1-1-1c-.4-1 0-1 0-1s-.5-2-1.5-2c0 0-.7-1-1.4-1 0-1-2-1-4-1s-3 1-3 1v2-1 2s1 1 1 2v1c0 1 1 2 1 3 1 0 1 1 1 1l1 1 1 1 1 1c0-1 1 1 1 1l1-1h1v1l2-1v-1l1-1 1-1s2 1 2 2h2l1 1v-1h1c1-1 1-2 1-2 0-1 0 0 0 0s1-1 1-2 1 0 1 0v-4z" fill="#452c25" stroke="#000" stroke-width=".1"/>
<path d="M324.3 196.7c.3 0 .4.4.6.6-1-.3-1-.7-1-.8v.2m0 1.2v1c0-1 0-2-1-2m1 0v1-1m0 2v1-1m0 2a1.2 1.2 0 0 0-1 0m0-3a3 3 0 0 0-1-1m-1 2a6 6 0 0 1 0 1v-1m-1 1v1a6.2 6.2 0 0 0 0-1"/>
<path d="M310.7 194.3s-.8 3.2-.2 3.5c1.3.7 2-2.2 2.2-3.2 0-1.2-2-.3-2-.3" fill="#452c25"/>
<path d="M310.7 194.3s-.8 3.2-.2 3.5c1.3.7 2-2.2 2.2-3.2 0-1.2-2-.3-2-.3z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M312.6 194.3S311 196 311 197c0 .8 2.4-1.4 2.6-1.8.2-.4-1-1-1-1" fill="#452c25"/>
<path d="M312.6 194.3S311 196 311 197c0 .8 2.4-1.4 2.6-1.8.2-.4-1-1-1-1z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M285 194.5s-3.3 1.7-3.6 2.4c-.3 0 10-2 15.8-6l-2.2-1-10 4z" fill="#452c25"/>
<path d="M285 194.5s-3.3 1.7-3.6 2.4c-.3 0 10-2 15.8-6l-2.2-1-10 4z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M289 195.2s-6 2.2-1.7 2.3c0 0 8.7-1.8 13.3-5.4l-1-1-10.6 4" fill="#452c25"/>
<path d="M289 195s-6 2.4-1.7 2.5c0 0 8.7-1.8 13.3-5.4l-1-1-10.6 4z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M298 189s-6.5 3.4-5.8 3.7c.7.4 5.3-.6 7.7-2l3-2.4-3-.8-3 1.6z" fill="#452c25"/>
<path d="M298 189s-6.5 3.4-5.8 3.7c.7.4 5.3-.6 7.7-2l3-2.4-3-.8-3 1.6z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M295.5 196.3s-2.3 2-2 2c.2.3 5-.4 8.6-3.3v-1.7l-6 3" fill="#452c25"/>
<path d="M295.5 196.3s-2.3 2-2 2c.2.3 5-.4 8.6-3.3v-1.7l-6 3" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M291.5 196s-2.2 1.7-1.7 1.8c.5.2 2.3 1.5 10.6-4l1-.5-1.5-2-9 4.5" fill="#452c25"/>
<path d="M291.5 196s-2.2 1.7-1.7 1.8c.5 0 2.3 1.5 10.6-4l1-.5-1.5-2-9 4.6z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M289.8 189.6c-7 2.4-14 7.2-14 7.2.8-.2 18-7 18-7m11.2 10.6s-1.5 2.3-1.2 2.6c.3.2 2 1 4.3-1.8 3-3-2-2.5-2-2.5l-1 1.7z" fill="#452c25"/>
<path d="M305 200.4s-1.5 2.3-1.2 2.6c.3.2 2 1 4.3-1.8 3-3-2-2.5-2-2.5l-1 1.7z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M306.6 202s-1 2.4-.5 2.6c1 .2 2 0 4-2.3 1-2 0-1 0-1l-2 .7zm-3.3-3.5s-2.2 2.7-1.7 3c.4.5 3 .4 5-2.2 1.8-2.7 0-.2 0-.2l-.6-2-2.7 2" fill="#452c25"/>
<path d="M306.6 202s-1 2.4-.5 2.6c1 .2 2 0 4-2.3 1-2 0-1 0-1l-2 .7zm-3.3-3.5s-2.2 2.7-1.7 3c.4.5 3 .4 5-2.2 1.8-2.7 0-.2 0-.2l-.6-2-2.7 2" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M301.2 197s-2.2 2.7-2 3c.2.5 3.2.4 5.6-2s.5-3.6.5-3.6l-4 2.6" fill="#452c25"/>
<path d="M301.2 197s-2.2 2.7-2 3c.2.5 3.2.4 5.6-2s.5-3.6.5-3.6l-4 2.6" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M297.4 197.3l-1.4 2s.3 1.7 5-1.6 4.6-3 4.6-3l-2.6-.5-5.7 3" fill="#452c25"/>
<path d="M297.3 197.2l-1.3 2s.3 1.8 5-1.5 4.6-3 4.6-3l-2.6-.5-5.7 3z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M282.2 194.5l-3 1.3s-.7.6 1 .7c1.8 0 5.5-.5 12-4 2.7-1.7 4.6-3.3 4.6-3.3l-2.4-.8-12.2 6z" fill="#452c25"/>
<path d="M282.2 194.5l-3 1.3s-.7.6 1 .7c1.8 0 5.5-.5 12-4 2.7-1.7 4.6-3.3 4.6-3.3l-2.4-.8-12.2 6z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M277 196.4s4.4-.5 6-1.6c0 0-.3.5 2-.4 0 0-1.2 2 5.3-2 6.5-3.8 0 0 0 0l7.2-4-.4-1s-13 6-14 6.3c-1 .3-5 2.7-5 2.7" fill="#452c25"/>
<path d="M290.3 192.4l7.2-4-.4-1s-13 6-14 6.3c-1 .3-5 2.7-5 2.7s5-.5 6-1.6c0 0 0 .5 2-.4 0 0-1 2 6-2z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M308.5 202s-.4 3.4 0 3.5c.6 0 2-1 2.7-3 .6-2.2-2.4-2-2.4-2l-.4 1.3" fill="#452c25"/>
<path d="M308.5 202s-.4 3.4 0 3.5c.6 0 2-1 2.7-3 .6-2.2-2.4-2-2.4-2l-.4 1.3" fill="none" stroke="#000" stroke-width=".2"/>
<path d="M310.8 203.5s-.3 2.4 0 2.6c.4 1 1.3 1 2.3-1l1-1-2-1v2" fill="#452c25"/>
<path d="M310.8 203.4s-.3 2.5 0 2.7c.4 1 1.3 1 2.3-1l1-1-2-1v2z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M311.4 199s-2 4-.8 4c1 0 2.5-3 2.7-3.7.2-.7-2-.3-2-.3" fill="#452c25"/>
<path d="M311.4 199s-2 4-.8 4c1 0 2.5-3 2.7-3.7.2-.7-2-.3-2-.3z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M311.3 199s-.8 4.5.3 4c1-.3 1.5-3.7 1.5-4.4 1-.7-1 .4-1 .4" fill="#452c25"/>
<path d="M311.3 199s-.8 4.5.3 4c1-.3 1.5-3.7 1.5-4.4 1-.7-1 .4-1 .4z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M312.8 199.4s-1 3.5 0 4.2c1 .7 1.8-3.4 2-4.3 0-1-2 0-2 0" fill="#452c25"/>
<path d="M312.8 199.4s-1 3.5 0 4.2c1 .7 1.8-3.4 2-4.3 0-1-2 0-2 0z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M308.4 198.3s-1 3.2-.4 3.5c1.2.6 2.3-2.2 2.4-3.3 0-1.2-2-.2-2-.2zm-8-6.6s-2.7 2.4-2.4 2.7c.3.4 3.6-.2 5-1.3l2.2-1-2.5-1-2.2 2z" fill="#452c25" stroke="#000" stroke-width=".1"/>
<path d="M303 189.3s-1.8 1.5-1.5 2c.4.2 3.6-1 4.2-1.8.6-.6.6-1.3.6-1.3l-3.3 1z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M305 189s-2.6 2-2 3c.6.6 4-2.7 4.5-3 .5-.5-3 0-3 0" fill="#452c25" stroke="#000" stroke-width=".1"/>
<path d="M303.8 188.2l-5 2.3s-4.2 2.7-3.8 3c.4.3 3.7-.6 6-1.7 2.4-1.2 5-3 5-3m-.8 2s-5.4 4.7-4.6 5c.8.6 4.4-1.4 6.8-3.6" fill="#452c25" stroke="#000" stroke-width=".1"/>
<path d="M305.8 192.4s-3 5-2.7 5.6c1 .5 3-1.2 4-2.5s2-3.2 2-3.2" fill="#452c25" stroke="#000" stroke-width=".1"/>
<path d="M307.6 192.8s-3.3 6-3 6.6c.5.6 2.4 0 3.5-2.3 2-2 2-3 2-3h-1z" fill="#452c25" stroke="#000" stroke-width=".1"/>
<path d="M309.5 193s-3.7 7.7-3 8.4c.8.7 4.8-5.7 5-6.6.3-1.6-2-1.8-2-1.8m-7.7-5s-3.3 1.7-2.7 2c1 .3 4-1 5-1.2 1 0-1-.7-1-.7z" fill="#452c25" stroke="#000" stroke-width=".1"/>
<path d="M302.3 188.6s-2 1.6-1.6 2c.4.5 3.5-1.2 4-1.7.7-1-2.4-1-2.4-1zm4.3 0s-2.8 4-2 4c1 0 4-2.4 4.2-3 0-.3-2.2-1-2.2-1z" fill="#452c25" stroke="#000" stroke-width=".1"/>
<path d="M307.8 189.6s-3 3.7-2 4c.7.2.8-.4.8-.4s2.3-2 2.5-2.5c1-.5-1-1.2-1-1.2" fill="#452c25" stroke="#000" stroke-width=".1"/>
<path d="M308.7 190.5s-2 3.7-1.6 4c1 .2 2-.7 3-2 1-1-1-2-1-2z" fill="#452c25" stroke="#000" stroke-width=".1"/>
<path d="M309.3 192.2s-1.3 2.3-1 3c.4.8 1.6-.5 2.2-1.3.6-1-1.2-2-1.2-2zm.5 6.5s-.8 3.2-.2 3.5c1.3.7 2-2.2 2.2-3.2 0-1.2-2-.3-2-.3z" fill="#452c25" stroke="#000" stroke-width=".1"/>
<path d="M315.7 194.4l-1.5-.3s-2-1-3-1-.2-2-.5-3c0 0 0-2-1.7-2h-5.7c-.7 0-2.6-1-6.3 0-3.8 1-11.2 5-11.6 5-.4 0 8.5-2 11-3h3.3s-3 2-.2 1h2s-.2 1 1.3 1h1.4s1.7 1 3 0c0 0 .7 2 1.6 3 0 0 1 2 3 3l1.3 1h2l2-1" fill="#452c25" stroke="#000" stroke-width=".1"/>
<path d="M298.3 188s-8.5 3-8.2 4c1 .7 9-2.5 11-3.3 2-1-2-.7-2-.7" fill="#452c25" stroke="#000" stroke-width=".1"/>
<path d="M321.8 194.6c.2 0 .3 0 .5.2a1.5 1.5 0 0 0-.3-.3c-.3 0-.5-.2-.7-.3v.2l.5.2M315 201c.3.3.3.5.4.8v-.2c0-.2 0-.5-.2-.7m1-7h1-1m1.8 0h.8-.8m-3 1v-1m0 4"/>
<path d="M316.6 214s-1 .6-1 1a3.8 3.8 0 0 0-.2.7s.8 0 .7.3c0 0 1 .2 1-.8l1-1.5c1 0 1 .4 1 .6l1 .3v-.7l1-1s0-1-1-1l-1-1 1-3-1-2v2l-1 2-2 1h-1l1-1h2c0-1 0 0 0 0l1-1" fill="#bd8759"/>
<path d="M316.6 214s-1 .6-1 1a3.8 3.8 0 0 0-.2.7s.8 0 .7.3c0 0 1 .2 1-.8l1-1.5c1 0 1 .4 1 .6l1 .3v-.7l1-1s0-1-1-1l-1-1 1-3-1-2v2l-1 2-2 1h-1l1-1h2c0-1 0 0 0 0l1-1" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M323 209.2l.2 2c0 .4 0 1-.3 1.2l-1 .5h-2s0-1 0 0h1v-1 2-2a6.7 6.7 0 0 1-1-1h2v-1l-1-1-1-1-1-1v-2l-1-1" fill="#bd8759"/>
<path d="M323 209l.2 2.3c0 .3 0 1-.3 1l-1 .6h-2s0-1 0 0h1v-1 2-2l-1-1h2v-1l-1-1-1-1-1-1v-2l-1-1z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M315 197.3s0-1.3.3-1.4c0 0 0-2 1.7-1 0 0 .5-1 1.4-1 0 0 .8-1 1.3 0h2c.4 0 .2 1 .2 1v3l-1 1s0 1-1 1h-2l-1-1c0-1-1-1-1-1s-1 1-2 1c-1-1-1-1-2-1l-1-1-1-1c0-1 1-1 1-1v-1z" fill="#dcddde"/>
<path d="M317.8 212h-.2m.6-1a.8.8 0 0 1-.3 0m4 .4h-1m1 .5" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M313.4 215h.6s-.3.7-.2.8c0 .2-.5-.3-.3-.7" fill="#d9c0b9"/>
<path d="M313.4 215h.6s-.3.7-.2.8c0 .2-.5-.3-.3-.7z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M315.5 215.5s-.6 1 .2 1.5c0 0 0-1 .6-1l-.8-.5z" fill="#d9c0b9"/>
<path d="M315.5 215.5s-.6 1 .2 1.5c0 0 0-1 .6-1l-.8-.5z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M319.6 214.5l-.2-.5.2-.3h.6s.4 1 0 1.3c0 0 0-.5-.2-.5h-.4" fill="#d9c0b9"/>
<path d="M319.6 214.5l-.2-.5.2-.3h.6s.4 1 0 1.3c0 0 0-.5-.2-.5h-.4z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M321 213.4h.3v.6l-.2.2v-.8" fill="#d9c0b9"/>
<path d="M321 213.4h.3v.6l-.2.2v-.8z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M323.5 216l.4-.5v.2l-1 1.2-1-1-1-1" fill="#d9c0b9"/>
<path d="M323.5 216l.4-.5v.2l-1 1.2-1-1-1-1z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M326 214.8l.5 1s.6-.6-.2-1.5l-.4.5z" fill="#d9c0b9"/>
<path d="M326 214.8l.5 1s.6-.6-.2-1.5l-.4.5z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M323.3 196h.2s0-.2-.2-.2m0 2.2c.3.2.4.4.5.7v-.2a1.7 1.7 0 0 0-.4-.7v.2m-.4-1.6l.5.6v-.2c-.2 0-.3-.3-.5-.5m.5 3.6h-.2l.2-1m.5 1v1a2.2 2.2 0 0 0 0-1c0-1 0 0 0 0m1.5 4s-.2 1-.4 1c0 0 1 0 0 0 1 0 1-1 1-1m-10-3l1 1v-1m2 0v-1h1v-1m-1 2l1 1v-1m1 0h1v-1 1m1 1a3.3 3.3 0 0 0 0-1m0 1v1-1m1-5a8 8 0 0 1 0-1m0 1h1l-1-1m0 1h1m1 1v1m1-4a10 10 0 0 1 0-1m2-1a3.6 3.6 0 0 1 0 1h1m2 1v1a3.7 3.7 0 0 0 0-1m0 2c1 0 1 0 1-1m-2-1v-1m-1 1v-1c0 .2 0 1 1 1.2m2 0v1h1v-1m2 1a9.2 9.2 0 0 1 0 1h1v-1m1 1a17 17 0 0 0 0 1v-1m1-2v1m-12-5"/>
<path d="M318.8 196.3c.7-.6 1.7-1.3 2.7-1v-.2c-1 0-2 1-2.7 2m3.5 1h-2.7 2.7m-2.8 1c.3 1 .7 2 .5 3 .2-1-.2-2-.5-3m.5 0c.7 1 1.7 1 2.2 2-.5-1-1.5-1-2.4-2m.5 2c.6 1 1 1 1.2 2l-1.2-2m-4.3 1h.8c-.4 0-.6 1-.8 1m1.4-5c0-1-.5-1-1-1 .5 0 1 0 1 1m-.8 0c-.5-1-1-1-1.6-1 .6 0 1 0 1.6 1m1.5 0v-2 1l1 1m2 1h2s-1 0-1 1m1 1c1 0 1 1 2 1 0 0-1-1-2-1m-3 2c0 1 0 2-1 2 1 0 1-1 1-1v-1" fill="#fff"/>
<path d="M319.5 199c.3.7.7 1.5.5 2.2a1 1 0 0 0 0 .3c.2-1 0-1.8-.5-2.7v.2m1 0c.7 0 1.3.6 1.4 1.3a1 1 0 0 0 0-.2s-1-1-2-1v1m-1-1s1 0 2 1h-3m-1-2s0-1 1-1c-1 0-2 1-2 2m-1 1s-1-1-1-2v3c0 1 0 0 0 0m-1 1c0-1-1-1-1-1v1l1 1m-1 0h-1l1 1m2 3v1" fill="#fff"/>
<path d="M319.4 199c.2.5.5 1.2.4 1.8v.2c0-1 0-1.6-.4-2.4v.3m.5-1s1 0 1 1v-1c-1-1-1-1-2-1m-2-2v-1c0-1 0-1 0 0v1m-2-1l-1-1 1 1v-1m0 3l-1 1v-1m1 0l-1 1v-1m2-3c0-1 1-1 2-1h-2m-4 0a2 2 0 0 1-1 0m0 3v-1a.7.7 0 0 0 0-1m1 0l-1 1 1-1m1 0l-1 1c-1-1 0-1 0-2m1 0s0 1-1 1v-2m2-1c0 1 0 1 1 2l-1-2m0-1l2 2-2-2" fill="#fff"/>
<path d="M320.5 197.8h.8l.6.5v1.4-1c0-.2-1-.4-1-.5 0-.2-1-.3-1-.5h-1m3 1.5v.7-2m-2-4l1-1v-1h-2m-2 0v-2h-1s-1 0-1 1m-2 5v1a1.4 1.4 0 0 1 0-1m1 0v1-1m1-1v1l1-1m0-2v-1m-1 0v-1m-1 0h-1v-1m-2-1h1m3 0v-1m0 0a1 1 0 0 1 0-1m0 0a.8.8 0 0 0 0-1m0 0a.8.8 0 0 0-1 0m0-1h1a1.2 1.2 0 0 1-1 0m0-2s1 0 1-.8v-1l-1 .2m-1 0a1 1 0 0 1 0-.8 1 1 0 0 0 0 .4m0 0l-1 .2m-2 1v1h-.7m-1.4 0h1m1 1c0-1 0-2-.4-2s0 .5 0 1m1-.6v.4m.5 5v-1h-1v2m3 2v1h-1v1m-1 2a1.2 1.2 0 0 0 0 .7v-1m-1 0v-.4m-1 .8v2-2m0 0v1a1.3 1.3 0 0 0 0 .5v-2 .4m-3 .4v-1 1m1-1v-1 .5m1 0h.3v-.8a9.3 9.3 0 0 1-1-.7v.8m0-1v1a4 4 0 0 1 0-1m-4-2a1.7 1.7 0 0 0-.4 0v1m1-1a.7.7 0 0 0 0 .6m1-1v1-1a.6.6 0 0 0 0-.7m0 2l.7-1-.2.2m1 0v-1h-1v1m1 0a7.6 7.6 0 0 1-1 0v1h.4m0 1h1v-1l-1-1" fill="#fff"/>
<path d="M320 198c.3 0 .6.3.8.5v-.4h-.8m-4.2-2l1 1 .5 1h-.6c-.3 0-.7 0-1-1v1m.6 1a7.7 7.7 0 0 1-.4 0 1.6 1.6 0 0 0-1 1v1m-1 3c0 1-1 1-1 1m1 3v-2c0-1 0 0 0 0v1m0-1v-1m0 0v1s0 1 0 0v-2 1m0 0a12.6 12.6 0 0 1 0 2c0-1-1-1-1-2m0 0l1 1a.7.7 0 0 0 0-1l-1-1v1m1-1h-1" fill="#fff"/>
<path d="M319.7 198a7.5 7.5 0 0 1 1 0v-.3h-1v.4m.7-2l-.5 1c-1 0 0 0 0 1v-2m-2 1v1l-1-1m0 1a1.5 1.5 0 0 1-1 0v1m-1 0h-1c0 1 1 1 1 1" fill="#fff"/>
<path d="M318.5 196.2l-2 .4-2 .2-1.3-.4c-.3 0-1.6-.2-2 .3l-1 .8s-.6.6-.6 1c0 0 0 .4.4.4h2.4c1.3 0 2-1 4-1 1 0 3-1 3.4-1 .4-1 .6-1 .2-2-.3-1-1.4-1-1.5-1" fill="#dba05f"/>
<path d="M318.5 196.2l-2 .4-2 .2-1.3-.4c-.3 0-1.6-.2-2 .3l-1 .8s-.6.6-.6 1c0 0 0 .4.4.4h2.4c1.3 0 2-1 4-1 1 0 3-1 3.4-1 .4-1 .6-1 .2-2-.3-1-1.4-1-1.5-1z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M311.4 198s0-.2.2-.3a.8.8 0 0 1 .4-.3h.5-.5c-.3 0-.3.5-.6.7"/>
<path d="M311.3 198s.2 0 .4-.4l.6-.2h.3" fill="none"/>
<path d="M312 197.4l-.4.3c0 .2-.3.3-.3.3m.7-.6h.5m-.6.2" fill="none"/>
<path d="M312.4 198v-.2h-.2v.2s-.2 0-.3.2h-1l1-.3"/>
<path d="M312.3 197.8l-.3.2-.3.2h-.2" fill="none"/>
<path d="M312 198c.2 0 .3-.2.3-.2m-.4.4h-1m0 0h-1" fill="none"/>
<path d="M313 196.5s-.2-.6-.7-.8c-.5-.2-1-.2-1.3-.2l-.5.2a2.5 2.5 0 0 0-.6.2h-3v-2l1-1v-1z" fill="#c6262c"/>
<path d="M313 196.5s-.2-.6-.7-.8c-.5-.2-1-.2-1.3-.2l-.5.2a2.5 2.5 0 0 0-.6.2h-3v-2l1-1v-1z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M312.2 197.8s0 .3-.3.3c-1 1-1 1-1 0"/>
<path d="M308.6 200.2s-.7-1.2 1.3-1.8v.6s-1 .5-2 .7c0 0-1 0-1 .5" fill="#d9c0b9"/>
<path d="M308.6 200.2s-.7-1.2 1.3-1.8v.6s-1 .5-2 .7c0 0-1 0-1 .5z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M308.8 200s.8.2 1.3-.2c1-.3 1-.2 1 0v-.8l-1 .5c0 .2 0 0-1 .5" fill="#d9c0b9"/>
<path d="M308.8 200s.8.2 1.3-.2c1-.3 1-.2 1 0v-.8l-1 .5c0 .2 0 0-1 .5z" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M311 199.6h.5-.5m0-1.8c.3 0 .4 0 .5-.2h-.3v.2m.7.8a.3.3 0 0 0 0-.2.3.3 0 0 1-1 0v.2m0-.2a.8.8 0 0 0 0-.3.7.7 0 0 1-1 1m-1 0v1m0 2h1a3 3 0 0 1-1 0m2 0s1 0 1-1c0 1-1 1-1 1m0 0v-1a1.5 1.5 0 0 1-1 1m-1-2l1 1h-1m6 1v-2 2m-5-1l1 1-1-1m2 2a1.3 1.3 0 0 1 0 1" fill="#7a2e26"/>
<path d="M318 199.2l.4-.2m-8.5-.3c-1 .2-1 .2-1 .7 0-.4 0-.4 1-.6" fill="#5e3f17"/>
<path d="M309.7 197.3s.3 0 .3.2a.7.7 0 0 0 0-.2h-.3m.6.2a.7.7 0 0 0 0-.5v.4m.6-.4c0-.3-1-.5-1-.6v.7m0 0v1m-1-1s1 0 1 1h-2v1" fill="#842116"/>
<path d="M309.5 198v-.4.4m4.7 1.5a.6.6 0 0 0 .3-.4.6.6 0 0 1-.3 1m4.7-2a1 1 0 0 1 0 1m-1 1" fill="#7a2e26"/>
<path d="M324.3 210.5v.2-.3z" fill="#452c25"/>
<path d="M314.5 195c-1.8 0-3.5-1-3.5-1-2-.5-2.2-2.4-2.2-2.4-.8-.4-1.6-2.5-1.6-2.5-1.3 1-3 0-3 0h-1.4c-1.5 1-1.3 0-1.3 0h-2l.2-1c-.8 1-3.3 1-3.3 1-1 0-1.8 1-2.8 1l-2.3 1-6.8 3-5.5 2c.2 0 3.4-2 7.5-4l10.3-4c3-1 5.2 0 6.5 0 .6 1 4 0 5.7 0 1.6 1 1.8 3 1.8 3 .3 0 .4 3 .4 3s-1 0 0 0l3 2h3.7l2 1h1l3-1h1a105 105 0 0 0 1-1s-1-4 4-4l11 2c1 0 5 1 6 2l5 3 4 1c2 1 3 2 3 2l-3-2c-1 0-2 0-3-1l-3-2-5-1c-1 0 0 1 0 1l-4-1h-3a5.8 5.8 0 0 1-2 0h-4a7.3 7.3 0 0 1-1 0v1h-2l-1 1h-2c0-1-1 2-1 3-1 1-2 1-3 1s-2 1-2 1h-9c-1 0-1 0-2 1l-1 1" fill="#dcddde"/>
<path d="M314.5 195c-1.8 0-3.5-1-3.5-1-2-.5-2.2-2.4-2.2-2.4-.8-.4-1.6-2.5-1.6-2.5-1.3 1-3 0-3 0h-1.4c-1.5 1-1.3 0-1.3 0h-2l.2-1c-.8 1-3.3 1-3.3 1-1 0-1.8 1-2.8 1l-2.3 1-6.8 3-5.5 2c.2 0 3.4-2 7.5-4l10.3-4c3-1 5.2 0 6.5 0 .6 1 4 0 5.7 0 1.6 1 1.8 3 1.8 3 .3 0 .4 3 .4 3s-1 0 0 0l3 2h3.7l2 1h1l3-1h1l1-1s-1-4 4-4l11 2c1 0 5 1 6 2l5 3 4 1c2 1 3 2 3 2l-3-2c-1 0-2 0-3-1l-3-2-5-1c-1 0 0 1 0 1l-4-1h-3a5.8 5.8 0 0 1-2 0h-4a7.3 7.3 0 0 1-1 0v1h-2l-1 1h-2c0-1-1 2-1 3-1 1-2 1-3 1s-2 1-2 1h-9c-1 0-1 0-2 1l-1 1" fill="#e7e7e7" stroke="#000" stroke-width=".1"/>
<path d="M314.6 194.4s-.2.2-.2.5" fill="#452c25"/>
<path d="M323.3 194c.2 0 .5.3.7.5a6.5 6.5 0 0 0-.8-.8.6.6 0 0 0 0 .2" fill="#574f4c"/>
</svg>

After

Width:  |  Height:  |  Size: 91 KiB

View File

@@ -0,0 +1,45 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<g stroke-width="1pt">
<path fill-rule="evenodd" fill="#229e45" d="M0 0h640v480H0z"/>
<path d="M321.4 435.94l301.5-195.67-303.32-196.2L17.1 240.73l304.3 195.2z" fill-rule="evenodd" fill="#f8e509"/>
<path d="M452.77 240c0 70.33-57.1 127.34-127.54 127.34-70.45 0-127.55-57-127.55-127.33s57.1-127.3 127.55-127.3c70.44 0 127.54 57 127.54 127.4z" fill-rule="evenodd" fill="#2b49a3"/>
<path fill="#ffffef" fill-rule="evenodd" d="M283.3 316.27l-3.94-2.27-4.1 2.02.92-4.55-3.16-3.33 4.52-.53 2.12-4 1.9 4.2 4.46.8-3.35 3.2m86.1 26.3l-3.94-2.3-4.1 2.1.92-4.5-3.16-3.3 4.5-.5 2.1-4.1 1.9 4.2 4.4.8-3.4 3.2m-36.2-30l-3.4-1.9-3.6 1.7.8-3.9-2.8-2.9 3.9-.4 1.8-3.5 1.6 3.7 3.8.7-2.9 2.7m87-8.7l-3.3-1.9-3.5 1.8.8-3.85-2.7-2.8 3.8-.45 1.8-3.45 1.6 3.6 3.8.67-2.9 2.7m-87.4-22l-4-2.2-4.1 2 .9-4.5-3.1-3.3 4.5-.5 2.1-4.06 1.9 4.2 4.4.8-3.4 3.1m-104.6-35l-4-2.3-4.1 2 .9-4.54-3.1-3.4 4.6-.55 2.1-4.1 1.9 4.2 4.5.8-3.4 3.13m13.43 57l-3.94-2.3-4.1 2 .9-4.54-3.17-3.3 4.5-.5 2.1-4.1 1.9 4.2 4.4.8-3.4 3.2m132-67.2l-3.5-2-3.4 1.7.8-4-2.8-2.9 4-.43 1.8-3.6 1.65 3.7 3.9.7-3 2.7m-6.65 38.2l-2.8-1.6-2.8 1.4.6-3.13-2.2-2.3 3.2-.4 1.5-2.83 1.4 2.95 3.1.55-2.3 2.2M219 287.87l-2.64-1.5-2.7 1.4.6-3.06-2.1-2.2 3.02-.4 1.4-2.7 1.2 2.9 3 .5-2.3 2.1m200.4 15.1l-2.13-1.1-2.23 1 .5-2.24-1.7-1.7 2.44-.2 1.17-2 1.06 2.1 2.4.4-1.8 1.58"/>
<path fill="#ffffef" fill-rule="evenodd" d="M219.26 287.6l-2.63-1.52-2.73 1.36.6-3.04-2.1-2.22 3.02-.36 1.42-2.72 1.26 2.82 2.98.54-2.24 2.1"/>
<path fill="#ffffef" fill-rule="evenodd" d="M219.26 287.6l-2.63-1.52-2.73 1.36.6-3.04-2.1-2.22 3.02-.36 1.42-2.72 1.26 2.82 2.98.54-2.24 2.1m42.3 3.03l-2.64-1.6-2.7 1.3.6-3.1-2.1-2.3 3-.4 1.47-2.7 1.26 2.8 2.98.5-2.2 2.1m-4.8 17l-2.6-1.6-2.7 1.3.6-3.1-2.1-2.3 3-.3 1.5-2.7 1.3 2.8 3 .5-2.2 2.1m87.4-22.3l-2.6-1.56-2.7 1.4.6-3-2.1-2.27 3.1-.3 1.4-2.7 1.3 2.8 3 .5-2.2 2.1m-25.1 3.04l-2.6-1.5-2.7 1.3.6-3.1-2.1-2.2 3-.36 1.4-2.7 1.3 2.8 3 .5-2.2 2.1m-68.8-5.9l-1.63-1-1.75.85.4-1.9-1.36-1.4 1.9-.2.87-1.78.8 1.73 1.88.3-1.4 1.3M416 310.4l-2.6-1.5-2.7 1.36.6-3.02-2.1-2.2 3-.34 1.4-2.7 1.3 2.8 2.97.5-2.22 2.1m-20.85 5.8l-2.2-1.26-2.23 1.1.5-2.5-1.75-1.86 2.5-.3 1.2-2.28 1.04 2.3 2.46.45-1.86 1.7m10.4 2.3l-2-1.18-2.1 1.06.45-2.3-1.6-1.7 2.3-.24 1.1-2.1 1 2.1 2.3.4-1.7 1.6m29-22.5l-1.9-1-2 1 .5-2.3-1.6-1.7 2.3-.3 1.1-2 .9 2.1 2.2.4-1.6 1.6m-38.8 41.8l-2.6-1.4-2.7 1.3.6-2.8-2.04-2 2.9-.3 1.4-2.5 1.2 2.6 2.9.5-2.1 1.9m.5 14.3l-2.4-1.4-2.4 1.2.56-2.8-1.9-2 2.7-.3 1.23-2.5 1.13 2.6 2.6.5-2 1.9m-18.9-23.06l-1.9-1.1-2 1 .4-2.28-1.6-1.7 2.26-.28 1.1-2 .9 2.1 2.2.4-1.6 1.6m-18 2.14l-1.93-1.12-2.06 1 .5-2.27-1.6-1.7 2.2-.2 1.05-2 .9 2.1 2.2.4-1.7 1.57m-30.4-24.6l-1.97-1.1-2 1 .4-2.24-1.55-1.6 2.25-.3 1.1-2 1 2.1 2.2.4-1.6 1.57m3.8 57.06l-1.7-.96-1.7.8.4-1.9-1.36-1.4 1.9-.3.9-1.7.8 1.77 1.9.3-1.4 1.3m-46.1-86.6l-3.9-2.26-4.1 2 .9-4.53-3.2-3.3 4.5-.56 2.1-4.1 1.9 4.2 4.4.8-3.3 3.1"/>
<path d="M444.37 285.82c1.94-5.1 4.45-12.75 5.78-19.8-67.74-59.5-143.26-89.98-238.68-83.7-3.42 6.55-6.16 13.4-8.47 20.84 113.06-10.78 195.94 39.27 241.37 82.66z" fill-rule="evenodd" fill="#fff"/>
<path d="M413.9 252.36l2.43 1.32c-.38.86-.48 1.6-.3 2.25.17.65.62 1.2 1.33 1.7.75.5 1.42.73 2 .67.6-.06 1.06-.3 1.35-.73a1.27 1.27 0 0 0 .3-.87c0-.3-.2-.66-.5-1.07-.2-.28-.7-.87-1.5-1.78-1-1.16-1.6-2.14-1.8-2.93-.3-1.13-.1-2.14.5-3.06.4-.6 1-1.03 1.6-1.32.7-.3 1.5-.36 2.3-.2.8.16 1.7.54 2.6 1.14 1.5 1 2.3 2.05 2.6 3.2.3 1.13.1 2.24-.5 3.33l-2.4-1.4c.3-.6.4-1.2.2-1.7-.1-.5-.5-.9-1.2-1.4-.6-.4-1.3-.6-1.8-.6a1 1 0 0 0-.8.5c-.1.3-.2.6-.1 1 .1.5.7 1.2 1.6 2.3 1 1 1.6 1.9 2 2.5.4.7.5 1.4.5 2.1 0 .7-.3 1.4-.8 2.2a4.1 4.1 0 0 1-1.8 1.5c-.7.3-1.6.4-2.4.3-.8-.2-1.8-.6-2.8-1.3-1.4-1-2.3-2.1-2.7-3.3-.3-1.2-.1-2.5.6-3.9zm-11.46-7.53l2.47 1.22c-.3.87-.4 1.63-.2 2.26.2.7.7 1.2 1.4 1.7.8.5 1.5.7 2.1.6.6-.1 1.1-.3 1.3-.8a1.25 1.25 0 0 0 .2-.8c0-.3-.2-.6-.5-1-.2-.2-.7-.8-1.6-1.7-1.1-1.1-1.7-2.1-2-2.8-.3-1.1-.1-2.1.4-3.1a3.62 3.62 0 0 1 1.6-1.4c.7-.3 1.4-.4 2.3-.3.8.2 1.7.5 2.6 1.1 1.5.9 2.4 2 2.8 3.1.4 1.1.2 2.3-.4 3.4l-2.4-1.4c.3-.6.4-1.2.2-1.7s-.6-.9-1.3-1.3c-.7-.4-1.3-.6-1.9-.6-.3 0-.6.2-.8.5-.2.3-.2.6-.1 1 .2.5.7 1.2 1.7 2.2s1.7 1.8 2.1 2.4c.4.7.6 1.4.6 2.1 0 .7-.2 1.5-.7 2.2a4.16 4.16 0 0 1-1.7 1.6c-.8.4-1.6.5-2.4.3-.9-.1-1.8-.5-2.84-1.2-1.5-.9-2.45-2-2.8-3.2-.4-1.2-.25-2.5.4-3.9zm-14.2-3.8l7.27-11.98 8.9 5.42-1.2 2.03-6.4-3.95-1.6 2.66 6 3.7-1.2 2-6-3.6-2 3.3 6.7 4.1-1.2 2.1-9-5.6zm-20.7-17l1.08-2.1 5.4 2.8-2.55 4.96c-.8.2-1.78.2-2.98.1a9.36 9.36 0 0 1-3.4-1c-1.3-.7-2.3-1.5-3-2.6a5.9 5.9 0 0 1-1-3.5 8.6 8.6 0 0 1 1-3.7c.6-1.3 1.5-2.4 2.6-3.1 1-.7 2.2-1.1 3.5-1.1 1 0 2.1.3 3.3.9 1.5.8 2.5 1.7 3.1 2.8.5 1.1.6 2.3.3 3.5l-2.8-.8c.1-.7 0-1.4-.3-2-.3-.6-.8-1.1-1.5-1.5-1.1-.6-2.2-.7-3.2-.3-1 .3-1.9 1.2-2.6 2.6-.8 1.5-1 2.7-.8 3.8s.9 1.9 2 2.4c.5.3 1.1.4 1.7.5.6.1 1.2.1 1.7 0l.8-1.6-2.9-1.5zm-90.24-22.38l2.03-13.87 4.17.62 1.12 9.83 3.86-9.1 4.2.62-2.04 13.87-2.6-.38 1.6-10.92-4.33 10.5-2.6-.38-1.1-11.32-1.6 10.9-2.6-.37zM263.2 200l1.3-13.95 10.3.97-.22 2.36-7.5-.7-.3 3.1 7 .65-.23 2.35-6.98-.66-.36 3.8 7.8.73-.2 2.36-10.5-1z" fill="#309e3a"/>
<g stroke-opacity=".5">
<path d="M216.5 191.28c.04-1.43.28-2.62.74-3.58a6.65 6.65 0 0 1 1.34-1.88c.57-.56 1.18-.96 1.85-1.2.88-.36 1.88-.52 3.02-.5 2.05.07 3.68.75 4.88 2.07 1.2 1.3 1.77 3.1 1.7 5.3-.05 2.2-.7 4-1.97 5.2-1.26 1.2-2.92 1.8-4.97 1.7-2.1-.1-3.7-.8-4.9-2.1-1.2-1.3-1.8-3.1-1.7-5.3z" fill="#309e3a"/>
<path d="M219.4 191.25c-.03 1.6.3 2.8 1 3.65.72.83 1.64 1.27 2.76 1.3 1.12.03 2.05-.35 2.8-1.14.74-.8 1.13-2 1.18-3.64.04-1.6-.28-2.8-.96-3.62-.68-.8-1.6-1.23-2.76-1.26-1.16-.03-2.1.35-2.84 1.13-.74.78-1.12 1.97-1.17 3.58z" fill="#f7ffff"/>
</g>
<g stroke-opacity=".5">
<path d="M233.05 198.5l.16-14 6 .06c1.5.02 2.6.16 3.3.42.7.26 1.2.7 1.6 1.36s.6 1.4.6 2.22c0 1.05-.3 1.92-.9 2.6-.6.67-1.5 1.1-2.7 1.26.6.36 1.1.76 1.5 1.2.4.42.9 1.18 1.6 2.28l1.7 2.76-3.3-.04-2-3.08c-.7-1.1-1.2-1.8-1.5-2.07-.2-.3-.5-.5-.8-.6-.3-.1-.7-.16-1.4-.17h-.6l-.1 5.84-2.8-.03z" fill="#309e3a"/>
<path d="M235.98 190.46l2.08.02c1.36.02 2.2-.03 2.54-.14.34-.1.6-.3.8-.6s.3-.6.3-1.03c0-.4-.12-.8-.38-1.1-.24-.3-.6-.5-1.05-.5h-4.25l-.04 3.6z" fill="#fff"/>
</g>
<g stroke-opacity=".5">
<path d="M249 185.2l5.15.25c1.16.06 2.04.2 2.64.4a4.68 4.68 0 0 1 2 1.4c.5.64.9 1.42 1.2 2.34.2.9.3 2 .3 3.3-.1 1.1-.3 2.1-.6 2.9-.4 1-1 1.8-1.6 2.4-.5.4-1.2.8-2.1 1-.7.1-1.5.2-2.5.1l-5.3-.3.7-14z" fill="#309e3a"/>
<path d="M251.7 187.7l-.46 9.26 2.1.1c.8.05 1.36.03 1.7-.04.47-.1.86-.27 1.17-.53.4-.3.6-.7.9-1.4.2-.6.4-1.5.4-2.6s0-1.9-.1-2.5c-.1-.6-.4-1.1-.7-1.4-.3-.4-.7-.6-1.2-.8-.4-.1-1.2-.2-2.3-.3l-1.3-.1z" fill="#fff"/>
</g>
<g stroke-opacity=".5">
<path d="M317.63 210.22l3.26-13.63 4.4 1c1.6.4 2.7.7 3.2 1 .7.4 1.2 1 1.6 1.8.3.8.4 1.7.1 2.8-.2.8-.6 1.5-1 2-.5.5-1 .8-1.5 1-.6.2-1.1.3-1.6.3-.7-.1-1.7-.2-2.9-.5l-1.8-.4-1.2 5.1-2.8-.7z" fill="#309e3a"/>
<path d="M323.1 199.55l-.94 3.87 1.5.36c1.08.26 1.82.37 2.22.3a1.85 1.85 0 0 0 1.58-1.44c.12-.5.07-.94-.14-1.33a1.94 1.94 0 0 0-.96-.8c-.3-.1-.96-.3-1.95-.5l-1.3-.3z" fill="#fff"/>
</g>
<g stroke-opacity=".5">
<path d="M330.6 214.1l4.65-13.2 5.6 1.97c1.4.5 2.38.98 2.93 1.44.56.5.92 1.1 1.1 1.9s.1 1.5-.16 2.3c-.35 1-.93 1.7-1.74 2.2-.8.5-1.8.6-3.03.3.46.6.8 1.1 1.03 1.6.24.6.5 1.5.77 2.7l.7 3.2-3.18-1.1-.9-3.5c-.34-1.2-.58-2.1-.73-2.4-.16-.3-.36-.6-.6-.8-.26-.2-.68-.4-1.3-.6l-.53-.2-1.9 5.6-2.6-1z" fill="#309e3a"/>
<path d="M335.94 207.43l1.96.7c1.28.44 2.1.67 2.45.67.35 0 .67-.1.94-.3.2-.2.4-.5.6-.9.1-.43.1-.83 0-1.2-.2-.35-.4-.64-.8-.86-.2-.1-.9-.35-1.9-.73l-2.1-.7-1.2 3.4z" fill="#fff"/>
</g>
<g stroke-opacity=".5">
<path d="M347 213.6c.43-1.36 1-2.44 1.68-3.24a6.58 6.58 0 0 1 1.8-1.45c.7-.3 1.4-.6 2.1-.6.95-.1 1.97.1 3.05.4 1.97.7 3.34 1.8 4.14 3.3.8 1.6.87 3.5.2 5.7-.68 2.2-1.8 3.7-3.34 4.6-1.55.9-3.3 1-5.26.4-1.98-.6-3.37-1.7-4.16-3.3-.8-1.5-.8-3.4-.2-5.5z" fill="#309e3a"/>
<path d="M349.83 214.38c-.47 1.52-.48 2.78-.03 3.78.46 1 1.22 1.67 2.3 2 1.07.34 2.06.23 3-.33.92-.57 1.63-1.62 2.1-3.18.5-1.53.5-2.78.07-3.75-.43-.96-1.2-1.6-2.32-1.96-1.1-.35-2.12-.24-3.04.3-.9.56-1.6 1.6-2 3.15z" fill="#fff"/>
</g>
<g stroke-opacity=".5">
<path d="M374.3 233.12l6.42-12.45 5.27 2.74c1.3.7 2.2 1.3 2.7 1.9.5.6.7 1.2.8 2s-.1 1.5-.5 2.3c-.5 1-1.2 1.6-2 1.9-.9.3-1.9.3-3.1-.1.3.6.6 1.2.8 1.7.1.6.3 1.5.4 2.8l.2 3.2-3-1.5-.4-3.6c-.2-1.3-.3-2.1-.4-2.5-.1-.4-.3-.7-.5-.9-.2-.2-.6-.5-1.2-.8l-.5-.3-2.7 5.2-2.5-1.3z" fill="#309e3a"/>
<path d="M380.5 227.23l1.86.96c1.2.6 1.97.9 2.33 1 .3 0 .6 0 .9-.2.3-.2.5-.5.7-.8.2-.4.2-.8.2-1.2-.1-.4-.3-.7-.7-1-.2-.2-.8-.5-1.8-1l-2-1-1.7 3.1z" fill="#fff"/>
</g>
<g stroke-opacity=".5">
<path d="M426.1 258.7c.8-1.18 1.65-2.05 2.54-2.62a6.6 6.6 0 0 1 2.15-.86 5.45 5.45 0 0 1 2.2-.03c.9.1 1.8.6 2.8 1.2 1.7 1.1 2.7 2.6 3 4.3.3 1.7-.2 3.5-1.5 5.4-1.3 1.8-2.8 3-4.5 3.3-1.7.3-3.5-.1-5.2-1.2-1.7-1.2-2.8-2.7-3.1-4.4-.3-1.8.1-3.6 1.4-5.4z" fill="#309e3a"/>
<path d="M428.58 260.25c-.9 1.32-1.26 2.52-1.1 3.6.14 1.1.68 1.96 1.6 2.6.94.62 1.93.8 2.97.54 1.06-.3 2.04-1.1 2.95-2.5.9-1.4 1.27-2.5 1.13-3.6-.14-1.1-.7-1.9-1.65-2.6s-1.97-.9-3-.6c-1.04.2-2 1-2.9 2.4z" fill="#fff"/>
</g>
<path d="M301.82 204.52l2.25-9.84 7.27 1.68-.38 1.66-5.28-1.22-.5 2.18 4.92 1.14-.4 1.65-4.9-1.13-.62 2.68 5.48 1.26-.38 1.66-7.46-1.72z" fill="#309e3a"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.2 KiB

View File

@@ -0,0 +1,13 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<defs>
<clipPath id="a">
<path fill-opacity=".67" d="M-12 0h640v480H-12z"/>
</clipPath>
</defs>
<g fill-rule="evenodd" clip-path="url(#a)" transform="translate(12)">
<path fill="#fff" d="M968.53 480H-10.45V1.77h978.98z"/>
<path fill="#ffe900" d="M968.53 344.48H-10.45V143.3h978.98z"/>
<path fill="#08ced6" d="M968.53 480H-10.45V320.59h978.98zm0-318.69H-10.45V1.9h978.98z"/>
<path d="M-10.913 0c2.173 0 391.71 236.82 391.71 236.82l-392.8 242.38L-10.916 0z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 596 B

View File

@@ -0,0 +1,89 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<path fill="#ffd520" d="M.1 0h640.1v480H.1z"/>
<path d="M.1 480h640.1V0z" fill="#ff4e12"/>
<g stroke="#000" stroke-width=".52">
<g fill="#fff" stroke-width=".42">
<path d="M345.4 150.07c-4-1.4-6.57.65-6.44 5.8.12 5.15 2.83 8.1 6.82 6.18l-.4-11.98z"/>
<path d="M348.9 140.42c-3.33-2.62-6.43-1.5-7.96 3.42-1.53 4.92.08 8.6 4.48 8.05l3.48-11.5z"/>
<path d="M354.43 131.1c-2.86-3.14-6.1-2.52-8.4 2.1-2.3 4.6-1.3 8.48 3.13 8.65l5.27-10.76zm-3.63 45.37c-4.9 1.8-5.4 8.5-2.32 12.62 3.1 4.1 8.76 4.9 11.85 0l-9.53-12.7z"/>
<path d="M345.14 162.3c-4.64-1.54-8.82 4.7-9.53 10.3-.9 7.1-10.9 9.4-5.4 20.1 1.2-6.83 5.7-10.56 9.3-10.82 3.6-.26 9-1.03 11.4-5.4l-5.6-14.18zm14.68 27.56c-5.4 1.3-6.2 8.5-2.32 13.65 3.3 4.5 13.65 3.4 13.4-1l-11.08-12.6zm15.32 43.4c.26-4.63-7.2-6.43-10.8-5.53-3.62.9-10.5-.13-12.12-4-1.3 3.1.58 6.44 5.8 8.12 3.94 1.27 3.86 4.12 2.7 5.4 2.96.52 11.72.52 14.42-4z"/>
<path d="M370.9 203.65c-5.28-2.32-8.4 1.2-10.43 4.63-2.97 5.03-12.1-1.4-15.2 5.28 4.2-1.8 8.45 2.05 10.43 3.35 5.67 3.8 16.6 2.6 18.16-6.1l-2.96-7.1z"/>
<path d="M373.98 209.82c-5.28 4-7.34 8.76-7.2 11.98.12 3.22 4.63 10.3 9.52 10.7 2.84-5.8 4.25-18.04-2.32-22.68zm-21.88 24.86c0-1.93 2.83-2.7 4.76-2.06 1.93.64 4.9 2.58 3.86 4.64l-8.62-2.58zm-29.12-10.56c-.5-2.32 3.22-6.3 8.25-4.12 5.02 2.2 5.66 6.44 3.6 8.1l-11.85-3.98z"/>
<path d="M335.22 228.37c-.4-1.3 3.23-3.86 9.4-2.32 6.18 1.54 7.7 5.52 7.47 8.63l-16.9-6.3zm-12.88-4.25c3.22-2.45 2-7.08-.9-8.5-5.28-2.58-3.35-9.27-6.7-10.56-3.34-1.3-6.56-3.6-6.7-5.92-1.67 3.22-.64 6.18 1.68 8.24 2.32 2.06-1.8 10.43 1.16 12.62l11.46 4.12zm-69.03-1.8c-2.7-4.25-9.1-3.48-11.8-.52-2.7 2.97-2.3 7.34.3 9.28l11.6-8.76zm15.5-6.3c-1-5.68-7.8-6.32-11.6-4.9-3.7 1.4-6.3 7.08-3.8 11.2l15.5-6.3z"/>
<path d="M279.07 215.23c2.45-4.76-2.32-11.85-7.72-12.88-4.52-.86-9.86-.83-11.6-5.28-1.1 3.87 1.8 6.3 5.16 8.5 3.4 2.2-.6 7.86 4.8 11.08l9.4-1.42z"/>
<path d="M278.56 215.4c-1.13-3.4 1.16-7.96 5.8-7.64 4.6.32 7.25 3.68 5.2 7.9l-11-.26z"/>
<path d="M288.86 215.66c-.64-3.54 2.26-7.72 6.8-6.75 4.53 1 6.67 4.7 4.06 8.6l-10.86-1.8z"/>
<path d="M299.1 217.28c-.47-3.57 2.63-7.6 7.12-6.4 4.48 1.2 6.43 5 3.63 8.73l-10.76-2.3zm-77.72 59c-8.63 0-10.74 2.05-11.98 10.95-1.55 11.07 13.52 12.36 11.98-10.95z"/>
<path d="M225.24 264.7c-13.27-5.04-20.48 15.96-33.6 12.22 4.7 7.47 16.08.02 20.34.77 7.2 1.2 22.8-1.5 13.26-13zm-8.63 28.7c-6.5-2.95-13.6 7.1-12.3 11.47 1.7 5.56 16.6 1.03 12.4-11.46zM186 336.68c3.6 1.03 7.98 3.1 7.2 10.04-.76 6.96-13.9 21.12-25.74 21.9-11.85.77-16.1 15.06-26.28 11.07 9.53-1.8 9.53-12.7 17-16-5.4-2-8.24 10.3-15.2 10.3-6.95 0-10.3 11.1-18.8 10.3-8.5-.8-9.4 13.5-26.4 13.6-13 .1-29.1 15.3-34.9 8.7 12.62-1.8 17.72-8.8 25.25-16.5 12.1-12.4 25.75-6.8 30.4-17.8a31.65 31.65 0 0 1-18.3 5.4c-7.9-.2-16.6 12.6-25.5 6.9 5.15-.6 8.5-2.8 13.9-8.5 5.55-5.8 13.68-2.1 20.1-8 10.05-9.3 18.68-1.6 28.33-13.1-2.7-1.3-8.5-.4-13.9 2.4s-12.37-2-18.55 1.4c.8-7.6 15.2-3.3 24.2-8.5 10.2-6 18.7-4.2 26.7-3.5-11.2-.1-15.6-10.7-31-7.6-6.7 1.3-12.1-9.3-18.8-3.9.2-4 7.2-7.2 14.5-3.4 7.2 3.8 10.1-3.4 24.5 5.7 6 3.7 16.1-2.3 22.6 1.7-.8-2.5-4.5-4-8.8-3.7 2.7-5.6 20.2-4.9 27.8.7z"/>
<path d="M197.42 328.3c-5.66-4.38-13.52.9-18.93-1.16 0 3.6 1.8 9.02 7.7 11.08 1.8-1.3 9.9-8.37 11.2-9.92z"/>
<path d="M206.3 315.82c-8.87-4.5-10.42 6.7-17.37 4.37.25 3.2 2.83 7.2 8.5 8.1l8.88-12.5z"/>
<path d="M211.6 305.64c-13.14-5.15-14.82 7.47-22.54 5.02 1.8 4.38 12.87 6.7 18.54 5.15l4-10.1zm18.02-55.25c-3.48-4.9-10.82-.9-11.98 4.9-1.16 5.7 1.67 13.9 6.57 12.1l5.5-17z"/>
<path d="M238.5 234.94c-6.05-1.42-13-.78-12.23 5.15-2.32 1-2.96 8.6 3.35 10.3l8.88-15.5z"/>
<path d="M242.5 230.94c-5.93-6.95-12.53-6.8-16.23-3.86-6.83 5.4-13.46 2.32-13.65 7.73 4.12-3.1 7.73.7 11.07-.5 3.3-1.1 5.8 5.3 15 2.6l3.7-5.9zm-14.3 103.94c.9 1.67 6.44 2.45 9.14-.4 3.6-3.74-.38-14.15-6.05-14.93-5.7-.77-6.2 11.72-3.1 15.33z"/>
<path d="M221.76 335.14c8.1 2.96 11.6-3.74 7.2-8-1.15 1.43-5.4 6.58-7.2 8z"/>
<path d="M191.37 346.2c-1.55 4.65-9.53 5.42-18.55 19.84-9 14.43-17.64 8.37-19.83 18.3 10.8-8.77 19.3-2.95 25.7-11.6 9.8-13.14 17.8-11.25 21.6-20.1 5.4-12.6 29.1-12.36 30.4-32.2-8-1.53-33.3 19.84-39.4 25.77zM394.6 151.5c10.3 3.34 10.55 16.73 22.4 21.1 11.85 4.4 13 14.95 22.66 12.37-9-2.45-8.37-12.88-17.77-15.45-11.1-3.02-15.2-19.84-24-22.4m43.9 74.3c1.8 4.12 1.5 11.46-4.9 13.4 3.5 2.18 8.6.12 11.4-4.65-4.3 9.4-1.4 17.9 5.3 19.58-3.3-6.57 4-9.66 1.6-13.9 4.2 1.8 8 7.6 7.8 11.2 5.5-6.2-4.1-14.43-2.3-20.22l-19.1-5.4zm-66.7 66.2c-6.3-5.55-9 1.44-12.1-.98-2.9-2.25-6.8-2.57-8.3-.32 5.4.2 2.7 4.38 13.2 5.4-10.5.72-8.6 12.44-15.6 11.86 7.4 7.08 11.3-6.3 17.3-4.12-1.8.5 2.8 4.76-.4 10.43 5.2-.2 7.3-7.4 8-11.1l-2.3-11.2zm-139 60.13c-2.3-1.93-9-2.83-11.6-1.28-2.6 1.54-1.7 1.93 1.4 2.2 3.1.24 7.1 5.24.4 5.52-3.1.1-2.1 7.6-8.5 8.1 2.6 3.2 10.1 1.1 12.8-2.5-.5 2.9 3.3 5.5 1.8 9 4.7.5 2-9.7 9.5-9.2-3.1.4-1.8 7.3 3.6 5.5-3.2 1.5-1.5 5.3 2.1 4.4-2.3.7-3.1 3.7.1 5.4 3.1-4.3-.4-19.5-11.7-27.3zm280.5-142.1c9.8 0 17.8-8 17.8-17.84s-8-17.8-17.9-17.8c-9.9 0-17.9 8-17.9 17.9s8 17.9 17.9 17.9z"/>
<path d="M423.44 227.22c5.4-5.15 13.65-7.73 19.32-3.87 5.66 3.87 24.47 8.5 33.74 2.06 9.27-6.4 13.65-9.7 17.77-9 3.1 4.7 6.83 6.9 11.46 7.2 1.42 1.6 6.44 2.9 9.28 2.5 4.2 1.1 9.2-.2 13.2-4.6 6.2.9 12-3.7 14.2-10.7 6.6-.7 7-8.1 2.9-13-3.8-.7-.9-13.8-14.9-11.2 6 3.6 1.4 10.8 6.3 14.2-3.3 0-7.6 1.4-8.7 6.5 1.3-3.5-.2-5.8-1.1-6.5.2-2.9-6.4-10.2-12.6-7.6 4.5 1 2 8.1 5.2 10.8-2.3.2-4.7 1.3-6.2 3.4-1.6-2.9-7.6-6-11.2-6.3 0-1-.2-3.1-.6-4.1-1.6-3.1-2.9-6.7-2.3-11.4-3 3.4-5.6 8-7.2 11.4-4.9-3.3-17 1.6-22.6 2.9-5.6 1.3-24.7-1.8-29.1-6.4-4.4-4.6-12.9-7.4-20.8-9.8-11-3.1-11.1-15.1-23.2-23.4-.2 15 22.4 62.3 27.6 67.5zm-126.2 113.84c9.52 0 17.25-7.73 17.25-17.26 0-9.53-7.8-17.26-17.3-17.26s-17.3 7.73-17.3 17.26c0 9.53 7.7 17.26 17.2 17.26z"/>
<path d="M256.02 327.8c3.47 4.5 9.4 4.24 11.84 3.86 2.06 5.4 8.63 5.28 11.47 8.24 2.83 2.96 12.5 2.7 15.32 1.03-2.57-.26-5.92-1.8-9.14-4.5-3.8-3.27-2-9.8-5.1-12.12 2.3-2.5 2.7-6.8 2.2-8.5 2.5-1.4 4.3-3.7 4.5-4.8 4.3-.2 8-2.4 9.5-4.1 2.2 2.1 7.8-.6 10.7 2.9.7-8.5-7.5-13-12.9-10.1-2.2-1.1-7.9-.4-9 1.2-1.8-.7-6.8 1.8-9.1 3.5 2.6-1.4 3-5.6 2-7.2 2.2-.9 4.7-3.8 4.9-6 3.1.6 7.7-1.5 9.8-1-3.3-4.3-8.9-5.9-14.5-5.5-5.8.4-8.3 4.5-9.1 8.9-3.5 2.1-4.6 9-3.3 11.5-2 0-3.8 1.9-4.6 3-2.7-1.2-6.5-2-9.3-2m1.3-7c-1.1-3.4.4-6.4 1.2-9 2-6.7.8-8.5-5.3-7.6-.5 3.3 2.6 13.8 4.1 16.6z"/>
<path d="M248.62 282.33c1.54 1.54 7.02 2.25 7.6-2.64.66-5.7-1.62-7.8-6.5-5.6-.4 1.2-.85 6.5-1.1 8.2z"/>
<path d="M249.78 273.9c2.06.83 6.5 2.5 8.95-2.26 2.05-4-.65-7.08-4.9-6.82-1.03 1.16-3.1 5.28-4.05 9.08z"/>
<path d="M253.58 264.43c.5 1.55 5.8 6.7 9.65 2.96 3.87-3.8 3.87-9.3-1.93-11.4-1.54.2-6.18 5.6-7.72 8.3z"/>
<path d="M261.3 256.06c1.15 3.22 4.76 8.76 11.46 6.2 6.7-2.6 3.86-10.96.77-12.63-1.8.12-9.14 3.47-12.23 6.43z"/>
<path d="M273.54 249.62c-.52 2.84 0 10.56 9.14 10.43 9.14-.12 6.57-10.8 4.25-12.36-3.74 0-10.05.1-13.4 1.9z"/>
<path d="M287.3 248.07c-1.02 2.2-3.34 16.6 14.57 12.62 2.3-.6 8.37-13.8-14.56-12.7z"/>
<path d="M297.1 249.36c-1.8 1.8 2.83 16.36 14.94 13.9 12.1-2.44 1.93-16.22-14.94-13.9z"/>
<path d="M307.4 251.55c-1.93 4 .97 15.84 15.9 15.84 13.54 0-.7-15.6-15.9-15.9z"/>
<path d="M319.12 255.03c-.97 2.22-2.16 14.78 15.45 15.84 12.75.78 9.66-17.25-15.45-15.84z"/>
<path d="M338.06 260.3c-2.2 3.88-4.5 13.53 14.8 14.3 12.38.5 4.77-14.03-14.8-14.3z"/>
<path d="M354.15 263.27c-2.83 3.87-.74 11.44 6.44 12.88 9 1.8 10.3-6.7 4.1-10.82-6.2-4.12-10.6-2.06-10.6-2.06z"/>
<path d="M362.9 265.07c-2.05 3.6-.77 12.37 12.9 12.37 2.82 0 13.64-11.08-12.9-12.37zM257.2 433.02c11.07 0 20.04-8.97 20.04-20.04 0-11.06-8.97-20.03-20.04-20.03-11.06 0-20.03 8.97-20.03 20.03 0 11.07 8.97 20.04 20.03 20.04z"/>
<path d="M404.12 141.7c-1.55 1.55-4.76 6.2-5.4 8-6.7 20.08 11.17 35.1 21.63 56.65 8.24 17 7.2 43.8-5.67 60.8-4.4 5.8-3.1 7.46-8.76 13.38-2.17 2.27-4.63 5.15-3.86 13.4 3.6-1.3 8.76 2.06 9.8 4.9 2.56-1.3 6.17-.78 7.46.76 4.37-2.1 7.98-1.1 11.84 3 3.35-.5 6.96 0 10.3 3.6 1.8-3.6 5.42-4.9 8-4.1-.27-4.7 4.37-8 8.5-6.2-1.3-6.2 4.37-10.8 9.78-9 4.63-3.6 13.9-3.9 18.54 1.5-8.24-2.3-7.98 6.4-14.94 5.6 1.8 5.1-2.83 8.1-7.46 9.8 2.96-1.5 6.18-3.1 7.2-1.3 2.58-2.3 7.73-1.4 9.02-.3 3.4-1.1 6.7-.3 8.24 3.8 4.64 2.8 7.73 10 4.38 15.4-1.03-5.7-4.9-5.4-6.44-7.7-3.6 1.3-7.2 1.3-8.24-1-2.06 2-9 3.8-12.1.7-1.16 4.6-5.16 8.5-9.8 8.5 1.3 3.6-2.3 9.8-5.14 12.8 4.38 2.3 3.1 7.5 2.06 10.6 6.7 1 1.03 6.9 12.62 10.8-5.67 1.8-16.74 0-18.3-7-5.66-.3-9.52-5.9-9.26-11.9-4.38-4.1-5.02-10.1 1.03-14.2-5.15 1.5-8-6.7-15.46-3.3-3.8 1.6-13.6-1.2-13.4-4.7-1.6 2.5-11 1.5-12.3-2.9-3.1 1.6-10.3-1.2-10.2-5.4-4 1.8-9.4-1.5-9.2-5.6-3.8-.5-4.1-3.9-3.9-6.7-3.4-1.6-2.5-4.8-1.2-8.6-2.4-2.6-1.3-6.2.5-9.6-2.6-2.6-2.1-5.6-1.3-9.3-12.4-1-27.9-4-63.4-14.9-53.6-16.5-68 22.2-56.2 46.4 13.6 27.9-1.6 34 3.1 54.8 4.9 1 7.4 5.1 7.2 9.5 2.9.1 4.9 2.8 3.9 8 2.4-.5 5.6.2 7.6 2.3 1.8-3.4 7.7-4.1 10.8-.3 6.7-.5 10 4.9 9.8 11.6 3.6 6.4 2.3 14.3-1.6 19.3.4-2.7 0-6.6-.1-8.9-.3-4.3-6.2-5.2-5.6-8.7-3.1.2-6.1-1.4-7.1-3.8-1.8 1.5-4.4 2-6.6 1.3 3.5 1.5 6.2 7.7 5.1 11.8 1.8 3.1 1.4 8.8-.8 11.2-1 5-4.9 6.8-9.9 4.6 2.8-1.8 3.9-5 3.7-7.7-1.8-1.5-2.7-4.5-2.9-6.3-5 .8-12-3.5-13.3-5.2-11.1 0-20.1 9-20.1 20-.5-4.1-5.7-8.2-5.1-11.6-3.1-9.5 1.3-18.4 13.9-20.2-1.6-3.6 3.8-7.3 1.8-11.46-2.7-5.26-7.5-12.1-14.7-20.1 4.4-7.46 3.1-17.5.5-23.7-3.7-8.86-7.2-6.7-20.3 7.74-21.4 23.5-50 17-75.2 32.4-6.7 4.1-13.4 5.7-6.2-1.53 7.2-7.2 26.2-14.4 38.6-20.6 23.1-11.5 42.7-30.9 50.5-68.5 18.1-88.3 85-59.2 127.2-42.7 39.6 15.5 32.4-19.58 12.3-40.7-24.2-25.38-19.3-45.3-8-61.3 20.3-2.8 59.3 4.25 51.5 11.1z"/>
<path d="M475.86 358.78c12.17 0 22.04-9.86 22.04-22.04s-9.87-22.04-22.04-22.04c-12.18 0-22.05 9.87-22.05 22.04s9.9 22.04 22.1 22.04z"/>
</g>
<g fill="none" stroke-width=".42">
<path d="M391.76 142.73c-4.9 21.63-.77 31.42 6.44 40.95 14.9 19.7 26.8 64.65 9.8 94"/>
<g stroke-linecap="round">
<path d="M417.5 252.33c2.07-.78 5.94-3.22 6.84-7.47m-5.28-1.93c.64-3.74 6.43-5.35 6.56-9.34m-6.44-5.3c-.38-3.9 5.8-7.4 4.9-11.2m-8.24-2.7c-.52-2.2 5.15-6.3 3.6-9.8m-7.85-3.8c-1.2-2.5 2.7-5.3 1-7.9m-7.2-3c-.4-1.7 2-5.4.7-7.6m-6.9-5.2c.5-.7 2.6-2.2 1.7-4.1m-6-5.3c.8-.5 3.3-1.2 3-3.1"/>
<path d="M266.06 410.86c-5.15-1.8-11.6.77-12.87 5.15m3.8 4c.6-4.3 7.3-6.3 9.4-4.2-4.3-2.3-6.3 5.9-2.6 6.2m34.6-103.8c-3.1 1.6-4 7.2 0 11.5m4.6-10.1c-2.2 1.8-2.1 7.2 1.1 8.5-2.7-1.9 0-5.3 1.9-5.4 1.9-.1 3.2 2.2.9 4.5m177 5.2c-7.2-1.9-13 6.5-6.5 13.9-.2-7.2 5-11.9 11.3-10.6m-2.9 5c-1.8 0-2.8 1.4-2.8 2.8s1.2 2.8 3.2 2.8c1.3 0 2.3-1.5 2.3-2.6m22.7-161c1.1 4.4 7.2 6.2 12 5.2m0-2.8c-3.8.1-6.9-3.3-6.6-6.3 0 2.2 5 3.2 6.5 1.8" stroke-linejoin="round"/>
<path d="M267.86 331.66c-1.03-2.58 3.1-5.16 3.22-7.6.13-2.45 4.64-4.38 9.28.25m-2.2-27.4c-.9.4-1.67.9-2.44 1.2m11.34 12.9c-1.1.1-3.35 0-4.58-.9m.07 5.8c-.9.5-2.9 1.3-4.05 1.5m-40.12 76.3c-.13 2.4 2.2 5.7 3.47 6.7m6.57-12.2c-1.28 2-2.06 5.3-1.28 7.6m20.47.2c-2.3-1.5-.7-5.5-1-8.1-.2-2.5 2.7-6.7 8.5-3.2m-29.1-3.4c2.3-.3 4.8-.2 6.3.4m23.1-7.7c-1 1.4-1.3 3-1.4 4m12.3-4.2c-1.8 0-3.3 1.3-4.1 2.6m-20.8-68.5c2.1.7 7.4 4 7.6 7.4m14.2-24.3c-6.3-.1-8.7-6.5-4-6.5m15.4 15.2c-2.4 1.1-1.3 5.3 2.2 7.4m-17.3 33c-1.2-1.6.4-6.1 4.4-4.7m5.1 51.7c.2-4 5.2-6.3 7.2-1.8m-25.5 13c-.3-4.3 1.8-5.8 3.8-6 1.9-.3 4.7 1.3 6 4.2m-48.2 5c.2-2.6 2.4-5.3 4.7-4.9M467.7 287c-1.7 1.2-2.8 6.7 3.6 7.2m-13.4 1.8c0 .65.88 1.55 1.4 1.94m29.04 8.37c-1.67-1.3-6 4-2.06 7.7m-38.9 35.6c-.9-3.6 2.5-4.6 5.7-3.8m-13.9-22.1c1.9-1.3 3.9-2.7 6.3-3.3m-7.3 17.5c0-3.1 1.55-5.6 2.97-6.4m8.38-29.1c-.25 3.8 1.3 7.4 2.46 9.3m28.2-9c-1.9.6-3.6 1.3-4.3 2.9m2.2 7.7c.9-.8 1.9-1.7 2.4-2.3m46.3-110.1c0 3.6-4.5 5.6-7.5 3.3m17.2-3.1c2 1.6 8.9.1 7.3-3.9m-15.6 24.6c-1.4-.2-3.9-1.8-4.9-3.1m19-7.6c-2.3.6-3.9 0-5-.5M505.7 224c1.2 0 4.3-.5 6.5-1.6M502 200.9c-1.67-.2-2.9.12-3.86.76m29.83 5.52c-.45 1.6-1.6 4.12-3.03 5.22"/>
<path d="M497.5 212.8c3.2-1.43 7.2 9.52 14.93 5.66m.64-11.34c-1.03 1.42-1.67 3.6-1.8 5.54" stroke-linejoin="round"/>
</g>
<path d="M359.05 190.38c1.03-.13 2.83-.5 3.22-1.8m-135.74 121.7c3.86 2.2 6.57 5.92 4.9 11.46m172.17-143.2c1.16.77 5.54.77 8-.13m3.08 2.7c-.13 1.9.4 8.7-3.1 10.1m1.3-.9c3.22 1.1 9.66.7 11.72-5.3m-4.5 5c1.66 2.6 2.17 7.6-2.85 10.3m4.13-6c3.73 1.3 12.36 1.4 11.46-5.9m-2.96 6c2.58 3.6 13.9 7.9 12.1.4m-22.53 10.1c4.37 1.1 10.56-1.9 7.98-9.6m12.37 3.8c.6 3 15 6.1 13.1-.6m-2.7 3.9c2.7 6.2 17 5.7 12.5-2.5m-2.4 6.5c2.82 3.4 15.45 1.4 10.42-7m-.14 6.8c7.84 5.9 17-2.6 7.07-8.8m4.5 6.9c6.97 5.6 15.47-4.5 9.4-7.3m-64.38 5c2.2.7 6.8.4 7.83-3.6m-1.74 2.7c-.26 5.9 9.6 8.1 12.1 1.4m-3.28 3.7c1.8 3.9 10.42 5.4 11.84-.1m-1.44 2.6c1.43 3.9 8.9 3.5 10.96-.5m-2.7 2.6c2.3 5.1 11.82 5.1 14-2.3m-1.67 3.2c3.74 2.4 11.73 1.5 11.08-5.8m-1.54 5.2c5.6 4.5 13.4.2 9.6-7.4m-.4 13.4c3-.5 4.5-6.4 1.4-8m-70 9c6.2-3.3 7.4-9 3.1-14.6m2.2 8.9c3.9 2.3 11.2-.1 12.5-5.8m-7.2 6.5c2.2 2.9 2.6 6.3-.3 9.6m2.1-5.9c6.9-4.2 15.4 3.6 9 8.4m-1.2-8.8c1.6-.3 4.3-3.2 4.5-6.4m-1.4 9.4c2.9-2.9 22.2 3.1 9.9 9.3m-.9-17.4c3.8 1.5 5.7 6.7 0 8.5m4.9 4.4c4.2-4.2 17-1.5 12.4 3.9m-3.1-5.5c2.3-7.8 16.1-2.9 11.6.3m-14.4-8.2c.4 1.6.5 5.4-2.1 7.5m13.7-9c.5 1.3.4 3.8-.7 5.3m9.5-5.1c.8 1.4 2.1 4.1-.7 6.3m-109.6-66c.2 7.4 2.7 12.2 12.6 7.6m-9.5 1.2c-4.9 6.5.7 13.6 10.3 6.5m-25.4-3.3c6.7 7.2 18.7 1.9 11-9m8.1 15.2c-1.3 7.1 4.5 8.5 9.3 5.3m-34.2-10.3c1.2 7.1 8.5 12.8 15.6 8.4m-6.8 1.4c0 10.2 14.1 11.4 17.3.8m-5.1 6.5c4.5 9.3 14.3 5.6 17.5-.1m-27.6-15c1.8 4.5 5.4 9.6 13.8 5.8m-39.6-8c1.1 3.8 7.8 8.3 15.5 3.1m-10.8 1.6c-4.1 6.1 4.1 11.8 14 2.7m-9.1 4.8c1.7 8.5 5 15.3 17.2 4.4m-6.1 4.4c4.3 5.4 11 8.7 17.4-.4"/>
<path d="M387.25 188.83c-.4 6.44.9 9.66 5.92 9.4 3.96-.2 7.73-3.35 9.92-6.7m-10.9 6.7c-.2 7.35 5.6 13.15 16.5 5.68m-12 3c-2.1 5.6 4.1 14.6 16.2 9.9M371 192.2c-.77 7.1 5.8 11.9 16.36 2.7m-11.2 5.2c.4 5.8 6.96 12.8 16.62 2.7m-12 4.7c-.78 9.9 8.37 12.73 16.1 5.13M367 200.13c2.06.14 3.73-1.66 4.76-2.95m-.4 10.16c1.8.38 4.9-1.3 5.95-3.35m-1.4 15c2.1 2.2 9 .6 9.9-2.3m-2.1 2.2c3.9 9 14.2 8.6 18.4-1.6m-1.9 3.6c2 5.3 6.9 8.6 14.8 6.8m-10.9-1.5c-4.5 7.3 1.4 16 11.5 7.5m-9 3.4c-.5 4.6 3.7 9.9 9.5 10.6m-28.6-24.1c-1.5 10.4 6 15.4 15.4 9.9m-26.2-4.9c2.5 1.9 6.9 2.2 11 .6m5.1 6.1c-2.3 8.7 6.7 15 14.4 5.3m-27-10.5c.2 4.5 4.5 9.4 12.1 7.9m21.3 9c-5.1 3.4-6.2 9.6 1 13.6M401 245.1c.27 5.2 2.7 8.2 8.5 8.7m-16.1-11.5c-7.7 7.1-.1 15.3 9.03 8.3m-3.63 2.2c-2.6 8.1 7.1 13 12.2 4.7m-28.2-22c-2.9 7.9.8 13.2 7.3 12.7M372.4 234c.4 4.8 4.5 6.45 9.1 5.4m-6.2-.36c-3.5 6.7 1.8 10.3 8.7 7.73m21.2 15c-1.2 4.26-.6 7.35 5.8 8.77m-5.5-2.7c-7.6 3.48-8.2 10.8-2.3 15.6m-3.8-23.74c-4 3.6-3.2 9.86 1.2 12.3m-35-35.8c-4.4 4.3-.2 16.2 9.42 9.7m15.66 5.37c-5.9 4.9-3.2 13.8 6.56 11.35m-16.3-15c-3.1 8.7-.1 11.8 6.84 11.9"/>
<path d="M359.3 236.1c-5.28 4-3.86 9.65-1.54 12.23s6.7 1.42 8.1-1.93m-17.64-13.78c-5.92 7.6 0 16.62 8.38 13.9m23.3 8.64c-6.04 2.2-10.66 7.7-6.94 12.5 2.2 2.82 11.72 3.2 14.42-7.74m-18.42-11.85c-3.48 5.03-2.32 9.8 4.12 12.24m-4.5-2.8c-3.74 2.1-6.2 4.5-5.28 9m-3.1-16.8c-1.4 6.1.27 9.8 4 11.6m-4.12-4.4c-5.8-.3-8.76 2.1-6.83 7.8m.52-6.3c-5.67-2-6.57-6.9-4.13-12.1m-.77 7.6c-6.18.3-8.88 3.4-8.88 7.6"/>
<path d="M340.5 229.66c-4.5 1.93-5.93 7.98-4.25 11.33 1.67 3.3 6.95 3.6 10.17 1.4m-18.54-17.5c-4.12 4.6.64 13.6 8 11.4m-18.58-15c-3.86 5.4.4 14.4 10.3 11.8m.52 25.1c-1.03-6.5 5.66-10.7 13.9-2.3m-3.98-13c-2.45 2.2-3.6 5.6-3.22 8.5m-28.08-33.3c-4.25 7.2.9 13.7 10.05 11.2m13.7 6.7c-6.1 6-4 12.1.5 15.5m-4.4-8.5c-9.2.1-9.7 10.7-2.2 14m-4.8-24.6c-3.8 2.6-4.9 9.6 1.5 12.5m-1.8 3.3c-3.9-1.8-8.5.4-8.1 4.9m2.3-4.8c-3.5-8.3-13.7-6.9-12.8 1.6m15.5-11.9c-2.2.4-6.6 1.6-8.3 5m.6-14.3c-4.1 4.6-.9 10.1 2.4 11.3m-14.4-24c-.8 5.5 1.4 8.2 8.3 7.7m-6-.7c-2.7 6.7.9 9.7 7.8 9.3m-6.3-1.1c-4.1 4.9-1.2 10.1 2.7 12.3m-4.6-6.2c-7.3-.9-8.5 7.6-6 11.6"/>
<path d="M292.85 215.5c-4.5 1.93-7.08 7.6-4.64 11.07 2.5 3.48 7.4 2.32 10.1.52m-8.5 1c-3.7 5.6-.4 9.9 3.6 11.6"/>
<path d="M275.34 214.85c-2.97 3.1-1.16 9.4 6.05 9.53 5.8.1 8.7-5.4 6.9-9.27m-8 9.3c-2.3 5.2-.9 10.7 7.8 9.8m3.7 8.1c-5.4-2.4-12.6 0-9.6 6.5m-.8-15.6c-2.2 3.1-1.5 7.5 1 10.2m-1.5-1.9c-3.6.7-7.1 2.6-4.9 8.3m-.5-4.6c-4.7-1.4-10.6 2-7 6.7m-.8-4.5c-4-.6-8.8 3.6-4.9 7.9m-1.5-3.5c-3.7.9-7.9 5.1-4.2 8.3m22.3-28.4c-5.2 2.3-5.7 8.1-3.2 12.4m-2.1-23.1c-7.7 3-7.6 13.3.9 16.5m-3.6-2.3c-4.7 2.7-5.6 7.9-2.5 11.2m-5.4-29.4c-3.1 1.1-2.9 10.6 5.4 10.3m-13.9-7.1c-6.2 4.1 1.3 14.6 11.3 7.1m-5.6 2.6c-.9 4.3.2 8.9 7.1 9.4m-6.7-3.7c-4.9 1.8-5.8 11.9 3.1 12.6m-18.7-21.8c-6.3 5.8 5.1 10.9 9.4 2.5m-18.2 7.2c-3.1 3.8 7.7 13.6 12.5-2.8m1.1-.2c.2 3.9 2.5 6.2 7.3 6.5m-.2 3.8c-7.6 1.2-10.1 10.7-1.6 12.8m-12.5-14c-.3 3.6 3.5 6.6 7.7 5.9m3.8 7.9c-7 1.5-7.9 10.6-1.7 10m-3.2 8.4c-5.8-1.7-5.9-8.6-.8-11.2"/>
<path d="M245.72 267.78c-4.9 2.96-2.96 10.04-.4 11.07 2.6 1.03 4.65-.26 4.9-2.45m-.38 9.92c.52 3.35-11.9 2.06-5.54-8.37m-.07 8.95c-4.18 6.57 2.64 11.92 6.96 6.3m-6.4 1.62c-1.7 5.28 4.7 9.08 8.8 4.96m-22.8-54.4c-2.3 4.75 9.2 6.56 10-3.23m-13.3 10.3c-2.4 9.28 15.2 7.35 10.7-4.63m.3 6.18c2.4 1.42 9.8 1.54 11.6-6.3m-5.3 6.56c.5 2.44 2.7 5.4 4.8 6.3m-13.2-3.86c-.8 5.03 4.2 9.15 10 8.76m-9.1-3.86c-2.9 3.86-3.8 11.33 5.1 11.85M224 262.9c-1.4 3.9 6.96 8.1 11.86 1.5m-14.4 8.6c-.7 3 6.8 7.05 11.06-5.8m-3.35 6.54c1.8 3.22 7.88 5.8 11.6-.5m-6.04 3.85c-1.55 4.5 2.7 8.7 7.85 7.4m-17.5-8.5c-1.03 6.4 6.44 10.1 11.08 6.8m-16-4c-2.2 8.2 8.3 11.3 12.3 5.1m-2.7 2.4c.4 4.6 7.6 8.6 13.27 4.7m-26.14-.9c-.5 2 8.1 4.1 9.4-3.1m-4.4 4.9c2 5.3 9 6.5 13 .1m-2.3 2.5c.9 4.9 7.2 7.6 12.7 4.2m2.3 1.9c-1.4 6.5 5.4 11.8 9.6 8.2m-20.6-9.4c-2.1 7.2 6.9 11.3 12 7.3M225.9 296c-.5 6.7 4.7 10.7 10.8 7.77m-22.3-7.1c-1.8 4.3 7.7 7.9 12.2 4.2m-18.2 7.8c2.4 2.8 10.9 0 11.7-6.36m-2.3 4.7c3 3.7 10.4 5.6 13.4-2.1m-2.6 4c-.2 5.5 9.8 9.5 13-.7m11.6 2c-.9 2.7 1.2 7 5.6 7.5m-13.9-9.2c-.6 3.1 3.9 7.4 8.7 5.7m.9 1.3c-1.3 3.4-.2 8.2 4.3 8.1m-3.9-1.9c-3.3 2.9-1.9 7.9 2.9 8.1m-4.6-3.3c-4.7 3.2-3.1 10.3 3.2 9.9M239.1 313c0 7 8.67 8 10.3 1.6m-3.3 4.1c-1.27 4.1 2.07 8.1 7.35 7m-6.3 42.75c1.16 1.68 5.9-1.15 4.63-4-1.3-2.82-6.35-1.3-5.8 1.7m4.62-2.8c.7-5.7-6-6.6-7.7-1.7m2.46-2.83c1.64-2.82-4-6.7-6.3-2.56m2.02-1.7c1.5-4.14-4.9-5.94-5.4-2.2m-1.45-5.4c.8-2.07 8-.8 4.9 3.46m5.55 5.2c2.82-2.56-1.94-7.84-4.9-5.9m23.94 13.77c-2.26.2-4.58 1.7-2.9 6.5 1.16 3.3 6.1 3.5 6.82 1.5"/>
<path d="M260.46 365.85c-2.2-1.42-6.95.96-4.76 5.6 1.65 3.5 5.8 2.06 6.44.26m-13.98.8c1.1 2 6.57 1.1 7.53-1m-3.8-5.3c1.1-.7 3.2.2 3.7 1.2m-4.1-32.9c-3.8 2.5-1.4 9.9 4.4 8m-5.6-1.9c-3 2.3-.3 9.5 5.3 6.8m-4.4 0c-2.1 2.1-.1 7.8 5.3 6.7m-6.1-3.8c-1.2-.5-4.2-.1-5.5 1.8m2.1-27.8c-2.9 2.7-1.5 8.3 3.8 8.7m-4.8-3.1c-4.1 2-4.1 10.1 4 10.4m-4.4-1.2c-2.3 1.8-1.2 8.7 4.6 7.8m-2.8-.2c-.8.8-1 3-.3 3.9m-2.3-6.5c-2.1.1-4.8 1.6-5.5 3.7m-3.8-7.4c.7-2.1 7.1-2 7.6 4.1m.6-7.2c-.9.2-2.7 1-3.1 2.7m.3-21.6c-2.8 2.5-4.1 10.5 4.3 12m-9.9 4.4c0-2.1 5.7-3.9 7.7-.8m-11.2-11c.8 1.6 4.8 3.8 7.2 2m-28-14.6c-.2 3.8 2.9 7.1 7.2 6.6 4.2-.5 5.1-4.2 3.8-6.7m-3.3 6.9c-2.8 3.5.7 8.4 3.9 7m-.6-9.4c1.7-.6 7.3-1.4 8.9 1.2m-26.8-.1c-1.2 2 6.7 3.9 9.4.2m-2.7 2c-.2 2.6 1.1 7 7.6 5.2"/>
<path d="M219.83 326.63c1.03-2.2-3.86-5.8-7.6-1.8-3.73 4 .52 8.5 2.84 6.95M202.7 318c-1.93 3.36 5.54 9.47 9.8 3.8"/>
<path d="M197.74 323.8c-2.7 2.77.65 7.86 4.7 6.3 4.06-1.54 3.67-5.8 2.7-6.88"/>
<path d="M192.53 328.95c-2.2 2-.07 6.7 2.96 6.7 3 0 4.8-2.38 4.3-5.4m5-1.68c-.4 2.96 4 5.02 6.8 2.25m.1-5.4c.4-.66 0-1.75-.6-2.27m-23.4 9.8c-2.5 2 2.9 7.53 6.3 2.44m13-3.6c-1.6 1.5.9 5.6 3.5 4.3m-12.4-1.6c.3 2.7 5.8 4.8 9.2.6m-6.3 2.2c-.8 1.7.8 4.5 2.9 4.1m48.3 11.8c-2 3.9 4.4 8.5 9 3.7M257 359c-.95 2.1.2 5.1 1.94 6.2m-8-1.77c.44-1.96 3.2-3.76 5.7-2.86m-9.06-2.24c.4-1.75 2.7-3.5 4.47-3.04m147.2-77.3c-9.1.1-5.26 14.8 2.6 11.8m-5.5-1.1c-1.8 2.9 1.7 7.7 5.53 4.9m-1.04.6c-2.7 4.5 6.98 11.4 10.8 4.3m-3.1 2.7c.18 4.3 12.5 7 10.7-1.5m-1.12 4.6c2.93 5 14 5.5 12.85-1.9m-2.48 5.1c2.3 3.3 13.1 5.4 12.7-1.5m-56.7-40.9c1.5 4 6.8 5.4 12.6 3.1m-16-.3c3.6 2.3-1.7 12.8-7.2 8.6m7.2-2.1c4 1.9 8.9.5 10.3-5.1m-2.5 4.4c.4 2.9 4.6 5.3 10.2 4.1m-20.1-1c5.1 4.4-2.4 13.4-5.7 9.3m7.6-6c2.4 1.8 8.7.7 9.4-4m-2.8 4c.5 3.1 2.9 4.2 6.4 4.4m-14.4-.1c2.6 3.6 9 4.6 11.8-.2m-2.8 2.7c-.3 3.4 3.6 6.3 7.6 5.5m-21.5 2.2c3.3 1.7 6.9-4.6 4.1-9m-.3 15.7c4 .3 4.5-5.8.8-9.1m8.4 14.7c3.3-.8 2.3-8.1-5.8-8.8m15.9 14.2c3.2-.9.6-9.1-8.3-8.5m20.5 11.3c2.2-3.4-5.1-9-11-6.1m17 10.7c3.9 1.1 6.7-9.4-6-7.8m13.2 7.7c3.5-.9 5.9-7.2-4.3-5.2m11.9 5.6c3.1 1.5 4.5-7.5-4.9-5m-47-23.1c3.8 2.2 9.9-.4 9.4-5.3m-1.5 4.3c1.3 2.3.8 6.8-1.7 8m2-2.6c2.6 1 6 .1 8.1-4m-3.6 4c.8 1.8 1 5.4-.6 7.2m1.3-4.1c2.8 1.5 6.1-.5 7.6-3.5m-1.8 2.5c2 1.3 3.8 7.3.4 9.8m1.9-2.9c2.4.1 6 .1 8.3-3m-1.7 1.6c2.2.6 4.7 4.2 3.8 7.5m.1-1.2c2.4-.2 6.7-1.9 7.8-4.9m-1.2 2c2 1.1 3.5 3.6 3.2 6.4m0-2.1c2.4-.2 4.6-1.5 5.3-4.2m-.7 1.9c1.8.7 4 2.7 4.1 5.2m-.3-1.5c1.8-.3 3.1-1.4 4.2-3.2m4.8-.3c2.3 2.3-.7 10.1-5.5 8.7M389.2 154c-4.72 2.83-18.3 1.93-11.6-9.27m12.9 1.65c-9.4 3.7-21-3.5-8.9-11.32m-3.2-2.6c-7.83 0-13.1 12.6-2.6 17M348.4 138c-2.08 4 5.26 8.37 10.3 4.38 3.87-3.1 3.6-11.46 1.27-14.7m-15.57 19.85c-2.58 8.5 16.35 9.02 13.4-4.5m-14.44 17.13c.65 6.45 18.16 4.4 12.5-8.62m2.06-3.6c1.4 1.92 5.27 5.27 11.83 4.62m-8.77-13.78c.58 2.32 4.5 4.12 9.53 2.4m-185.2 193.6c-4.4 3.16 2.4 8.12 4.9 2.65m-8.3-.2c-4.4 3.16 2.4 8.12 4.9 2.64m-8.6-.3c-4.4 3.12 2.4 8.1 4.9 2.6m-8.7-.45c-4.2 2.26.7 7.8 5 2.9m-9.2-.77c-4.2 2.25.7 7.8 5.1 2.9m16.6-9.54c-.1 3.3 6.2 4.7 8.4-.2m-4.5 3.3c-1.9 2.5 1.6 5.5 3.5 4.4m-11.8-4.8c-.2 2.8 5.2 4.4 7.9 1.3m-4.9 1.6c-1.7 2.3 1.7 5.3 3.9 4.4m-10.4-4.7c.2 2.2 3.3 4.7 6.7 3.3m-4.6-.3c-1.3 1.2-.6 3.9 1.2 4.7m-7.8-4.9c-.5 2 2.9 5.6 6.4 3.3m-5.6-.9c-2.1 1.6-1.8 4.1.8 4.4m-5.7-4.6c-.3 1.4 1.5 3.6 3.7 3.3m-14.7-3.4c-2 1.1 3.3 6.7 6.5 1.5m-11.6.8c-2.6 1.3 3.8 7.4 6.7 1.1m10-1.3c-2 .5-3.3 3.4-1.6 4.5m-4.9-3.4c-.3 1.2 2.2 3.1 4.2 2.4m-5.9-1.8c-1.9 1.3-.9 4.7 1.4 4.2m-8.2-1.9c-1.8 1.4-.6 4.1 1.9 3.4m1.4-3.6c.1.7 1.7 1.8 3 1.4m-12.5-2.5c-2.2 1-2.1 6.6 5.5 3.5m-10.6-1.4c-3.12 1.6-2.1 5.8 4.8 1.8m.6.4c-.83.6-1.73 3.4 1.4 2.4m-7.2-1.1c-1.3 1.2-.44 3.5 2.4 2.6m-9-2.3c-2.33 1.4 2.76 3.2 6.17-.5m-4.62 2.1c-1 1.1-1 4.1 1.7 3m-8.2-1.7c-1.6 1.2 1.1 2.7 5.9.6m-4 1.1c-1.8 1.5-1.6 3.4 1.1 2.8m-6.4-1.9c-2 1.8.9 3.1 4.4 1.6m-4.3.5c-3.4 1.6-1.9 4.4.2 3.3m113.8 6.6c-.8 1.7 1.8 3.1 4.26 2.7 2.3-.3 4.6-2.3 2.8-5m.1 3.4c2.3 1.8 6.5-.2 6.5-2.9"/>
</g>
<g fill="#fff" stroke-width=".42">
<path d="M396.78 103.06c-10.3-5.15-31.68-14.68-37.74-6.95 5.54-2.3 21.77.2 35.16 12.5l2.58-5.5z"/>
<path d="M403.02 102.52c-11.9-13.88-18.93-10.77-27.5-15.55-8.04-4.5-20.86-5.4-23.34 1.73 11.76-5.72 22.55 3.08 29.18 4.15 9.1 1.46 14.25 8.5 16.9 11.74l4.77-2.1zm44.88-1.78c-6.18-14.16-19.4-10.46-25.24-16.48-8.5-8.76-30-16.87-38.9-10.82 19.58-1.03 27.92 13.5 38.4 18.55 7.46 3.6 15.44 11.3 25.74 8.7z"/>
<path d="M424.73 99.2c-10.56-13.14-26.8-24.73-34.26-20.35 9.8.52 12.88 7.34 19.83 11.72 6.96 4.38 3.87 10.7 14.43 8.63zm-50.23 23.18c-11.08-4.12-32.7-6.18-42.76 6.44 16.74 2.84 41.98 1.3 42.76-6.44z"/>
<path d="M372.44 127.28c-11.08-5.15-19.73 2.04-30.14 1.03-19.83-1.9-34-.7-35.8 8.8 11.34-10.2 30.4-1.8 38.12-3.8 7.73-2 36.32-.2 45.33 3.6-4.63-5.6-11.84-7.2-17.5-9.5zm34.77-29.5c-2.5-8.5-2.4-17.5 10.3-16.87-3.2-3.9-15-6-17 8.9-14-10.3-29.3-12.1-32.1-3.2 7.2-6.2 18.4-1.6 31.8 13.5 1.2-.6 4.3-1.9 7.1-2.3z"/>
<path d="M387.9 109.5c-8-5.15-18.8-13.52.13-16.87-8.12-4.37-19.97-2.44-18.68 12.5-21.63-8.76-37.17-5.8-40.44 2.83-3.6 9.53 9.8 14.8 12.2 8.76-2.4 1.03-10.8-1.8-6.4-7.22 4.4-5.4 26.8-1.34 48.2 9.8 5.9 3.08 26.3 2.57 5.2-9.8z"/>
<path d="M382.22 123.67c-6.16-12.58-26.14-1.16-30.17-13.34-5.5 17.85 28.42 7.97 30.17 13.34zm127.12 13.65c4.2 2.08 7.8-1.2 1.4-3.76 4.2 2.08 7.85-1.1 1.44-3.68 4.2 2.08 7.85-1.1 1.44-3.68-1.7 1.72-4.16 8.03-4.28 11.12zm2.18-24.2c9.27-9.8-.77-13.14 10.56-23.2 9.27-8.2 1.77-13.7 10.56-20.08 2.84-2.06 9.02-6.18 9.53-10.3 3.74 9.27-11.6 10.56-10.56 25.5.7 9.5-5.7 8.68-8.2 24.72-.5 3.35-2.8 10.82-11.8 3.35z"/>
<path d="M515.65 117.5c5.15-11.1 11.06-10.87 13.9-15.2 5.4-8.25 16.87 1.4 26.53-5.93-1.67 10.43-14.68 6.7-20.34 13.4-5.67 6.7-10.3 9.78-20.1 7.72z"/>
<path d="M516.94 121.1c9-7.22 15.66-2.4 21.9-6.2 15.7-9.52 22 1.95 36.05-2.56-3.8 9-24.5 1.3-33.5 7.98-9 6.7-40.7 13.14-24.5.78zm-26.28 51.38c-.13-4.12-4-9.4-9.4-10.04-5.4-.65-7.73-6.3-11.85-6.57-4.1-.26-6.8-8.5-12.4-8.37-5.6.12-8 7.47 5.3 14.16 13.3 6.7 28 14.43 28.5 10.82zm-16.74 3.48c-5.67.26-6.44 8.5-11.85 8.76 7.47 4 12.88-1.8 16.74-6.96l-4.8-1.8z"/>
<path d="M478.56 176.98c-4.9 4.13-6.3 12.75.77 15.2-4.25-5.86 7.47-8.5 3.87-13.9l-4.64-1.3z"/>
<path d="M483.45 177.25c-3.87 7.47 6.05 8.37 3.47 14.04 5.67-1.3 6.57-12 1.42-14.9l-4.9.7z"/>
<path d="M445.58 161.27c9.28-.5 17.76 4.5 23.44 12.62 3.6 5.1 15.7 7.2 19.84 3 4.12-4.1 1.8-12.9-8.5-10.1-2.58-4.4-10.05-2.9-13.65-6.5-3.6-3.6-17.5-13.9-21.1.7z"/>
<path d="M480.36 166.94c-2.45.52-3.22 4.77-1.68 6.96m6.96-4.38c.77 1.3.26 3.1-.13 4m-25.2-11.86c4.8.26 5.7 3.74 10.8 5.03" stroke-linecap="round"/>
<path d="M457.12 149.94c16.46 4.12 29.5 7.73 37.6 12.37 8.1 4.7 20.64 6 31.6 2.9 10.98-3.1 32.14-5.9 31.1 7.8 5.74-6.8-1.57-14.1-16.2-15.4.26-6.7-6.9-12.7-12.06-8.7 4.77-.6 8.88 8.2-.52 11.8 1.83-6.7-4.83-12.7-11.75-9.7 4.4 1.3 8.9 8.7-1 11.6-6.3 1.8-15.5-.5-22.2-4.6-6.8-4.1-45-19.1-36.6-7.7z"/>
<path d="M498.65 143.25c-5.15 2.32-1.8 7.72-9.8 10.82-7.97 3.1-13.5 10.17-11.7 16.22 5.4-11.9 14.93-11.4 18.28-16 3.35-4.7 8.24-11.5 3.22-11.1z"/>
<path d="M500.06 144.02c-.25 9.4-7.65 5.97-4.76 19.18.9 4.12 2.57 10.82-.26 17.52 8.3-6.05 2.96-18.77 6.7-23.57 1.8-2.32 4.12-5.92 5.02-9-1.93 5.4-1.8 15.44 3.48 18.02-4.25-10.05 11.46-18.3.64-29.88-1.54 2.8-6.44 7.8-10.82 7.7zm-26.27-9.4c1.2 1.93 2.5 6.82 1.4 9.53 2.5-1.55 6.3-5.54 7.4-8.25 5.3.78 7.3 7.34 2.3 10.18 3.1 0 8.3 0 11.3-3.48-3.6-4-14.8-10.17-22.6-7.98z"/>
<path d="M393.7 116.14c-.85-.76-2.25-1.48-4.78-2-7.8-1.6-3.77-8.62 2.87-8.56 14.1-15.45 22.1-3.54 39.3-8.43 6-1.72 10.2-1.2 13.5.2 7.7-5.14 16.8-3.7 23.3 2.35.7-1.16 1.7-2.04 3.1-2.43 6-1.68 10.9 3.48 12.6 10.18 4.7-.88 10.1 1.46 13.6 4.68 4.9-2.52 8.3-2.63 9.5-.04 4.4-2.1 10-3.4 12.9 3.6 2.8 6.9-6.7 4.8-8.3 19.5-1 9-11.1 12.6-19.1 7.2-12.8-8.7-25.3-10.1-31.5 3.1-6.2 13.1-11 20.7-26 16.4-5.4-1.6-12.4.5-16.8 6.4s-11.1.4-19.1 1c10-1.6 6.2-4.1 14.9-4.7 8-.5 5.9-8 11.1-9-20.1 5.1-19.3-2.4-35.8 2.8 7.2-9.3 18.5-4.2 24.2-9.6-15-.3-21.6-10-28.3-5.9-10.6 6.4-6 24.7-33.5 23.1-13.4-.8-21.9 1-29.9 9 13.9-28.9 32.8-13 42-22.2 5.4-5.4 9.5-9.6 12.4-14.7 1-1.8 2.3-2.9 4-3.3-22.9-7.2-9.1-18.4 13.3-19.2z"/>
<path d="M506.87 112.1c.35.7.53 1.65.53 2.8 0 5.68-8.5 5.94-9 14.3-.28 4.4-.8 6.83-3.75 6.32-2.96-.52-5.53-5.15-2.7-10.56" stroke-linecap="round"/>
<path d="M397.94 107.7c-2.14-1.5-4.27-2.1-6.18-2.12m52.83-8.26c6.8 2.95 10.1 10.04 20 10.38 9.5.34 15.4 14.17 31.4 5.15l1.2-.68M468 99.7c-1.42 2.27-1.75 5.43-1.36 8.2m-29.8 20.92c-12.1 0-15.2 6.2-15.2 12.1 0 5.93 5.66 13.66 15.7 13.66 10.05 0 15.46-6.18 15.46-12.88 0-6.7-6.18-12.88-15.97-12.88z"/>
<path d="M439.02 154.32c-.26-3.35-6.3-2.83-6.06-5.4.26-2.58 3.35-3.6 3.35-7.22s5.5-3.86 7.3-1.03c1.8 2.83 7.2 8.37 8.4 5.54m-8.3-5.5c-2.8 2.9-4.1 8.7-.4 13.2m4.3-8.7c-.9 2-1.1 4.9-.1 6.7"/>
<path d="M495.5 135.58c9.45.78 11.06-9.66 3.98-10.3m-15.64-17.83c-3.28-4.2-10.82-5.6-10.95 3.28" fill="none"/>
<path d="M472 120.84c-3.23-8-11.47-9.14-15.85-5.15-3.64 3.3-3.73 11.9 4.12 13.7 2.7-3.2 8-7.5 11.72-8.7zm-3.55-5.02c-4.64-4.12-11.47 3.67-5.28 10.8m-82.92 8.7c3.1-.73 7.64.8 14.6 4.06 4.37 2.06 17.5 6.44 25.75 2.06-8.5 3.1-14.94-9.78-21.38-8.24-6.44 1.55-18.22 3.93-23.18-.77 12.1.77 18.62-8.82 32.45-.52 3.8 2.4 8.7 3.9 13.1 3.7-11.4-13.6-26.3-4.9-27.8-15.9 6.8 7.4 23.5-1.6 32 12.1m-29.6-10c-1.6-1.9-.9-3.9-2.6-5.5"/>
</g>
<path d="M483.84 107.45c-2.83-3.03-9-.65-7.28 5.47 1.36-2.83 4.25-5.2 7.28-5.47zm-17.5 16.5c1.94-1.42 3.95-2.6 5.65-3.1-1-2.3-2.3-4.03-3.9-5.24-1.5-1-5.7 4.7-1.9 8.4z" stroke="none"/>
<path d="M458.72 113.5c-4.64-3.1-8.9-2.84-10.3-.26-3.35-.13-6.12 2.32-6.25 7.2m7.15 2.07c-5.54-3.8-13.14-2.3-12.62 6.2m-3.35 4.9c2.7-2.2 6.57-3.7 9.53.1m31.82-8.5c-1.03 1.4-1.8 3.6-.13 7-2.06-2.7-7.2-2.7-12.75 4.5m25.1-11.8c-6.7.8-6.56 5.2-1.15 7.1m-46.5-23.4c-5.66-1.1-9.78 2.2-1.92 5.1m12.75-8.9c-8-1.9-11.2.2-7.6 2M427.04 137c-.26 2.8 1.3 6.58 5.92 2.3m-4.37 6.2c0 .78-.2 1.68-.7 2.33M410 107.4c-4.9-1.4-5.8-5.9-.16-5.54m-1.54 15.93c-5.4-1.8-5.4-7.1-.9-6.6m10.96 3.8c-6.3-1.6-6.6-5.9-1.8-5.3m2.54-8.1c-3.33-.3-8.5 3.4.14 5.6m9.3 1.8c-7.87-1.2-7.74 2-3.1 4.1m9-11.6c-6.04-1.2-8.1 2.4-3.98 4m-15.07 18.3c-1.5-1.3-2.7-7.1 4.3-5.4M430 122c-4.8-1.3-9.3 3.4-4.9 6.1m11.2-11.6c-5-.9-9.3.55-6.6 2.35" stroke-width=".42" fill="none" stroke-linecap="round"/>
<path d="M483.57 107.45c-2.83.52-5.37 2.18-7 5.47" fill="#fff" stroke-width=".42"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 28 KiB

View File

@@ -0,0 +1,13 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<defs>
<clipPath id="a">
<path fill-opacity=".67" d="M0 0h640v480H0z"/>
</clipPath>
</defs>
<g fill-rule="evenodd" stroke-width="1pt" clip-path="url(#a)">
<path fill="#fff" d="M-28 0h699.74v512H-28z"/>
<path fill="#d72828" d="M-52.992-77.837h218.72v276.26h-218.72zM289.42-.572h380.91v199H289.42zM-27.545 320.01h190.33v190.33h-190.33zM292 322.12h378.34v188.21H292z"/>
<path fill="#003897" d="M196.65-25.447h64.425v535.78H196.65z"/>
<path fill="#003897" d="M-27.545 224.84h697.88v63.444h-697.88z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 635 B

View File

@@ -0,0 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<g fill-rule="evenodd">
<path fill="#00cbff" d="M0 0h640v480H0z"/>
<path fill="#fff" d="M0 160h640v160H0z"/>
<path fill="#000" d="M0 185.97h640v108.05H0z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 273 B

View File

@@ -0,0 +1,38 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<defs>
<clipPath id="a">
<path fill-opacity=".67" d="M0 0h682.6v512H0z"/>
</clipPath>
</defs>
<g fill-rule="evenodd" clip-path="url(#a)" transform="scale(.94)">
<path fill="#b20000" d="M0 0h1024v340.1H0z"/>
<path fill="#429f00" d="M0 340.1h1024V512H0z"/>
<path fill="#fff" d="M0 0h113.37v512H0z"/>
<g stroke-width="1pt" fill="#b20000">
<path d="M5.4 8.68h5.4v8.68H5.4zm16.2 0h16.2v8.68H21.6zM26.97 0h5.4v8.68h-5.4zm27 0h5.4v8.68h-5.4zm21.6 8.68h16.2v8.68h-16.2zM80.97 0h5.4v8.68h-5.4zM16.2 17.36H27v8.68H16.2zm16.2 0h10.8v8.68H32.4zm37.78 0h10.8v8.68h-10.8zm16.2 0h10.8v8.68h-10.8zm-75.6 8.68h10.8v8.68h-10.8zm27 0h10.8v8.68h-10.8zm27 0h10.8v8.68h-10.8zm27 0h10.78v8.68h-10.8zm10.8-17.36h5.4v8.68h-5.4zM5.38 34.72h10.8v8.68H5.4zm37.8 0h10.8v8.68h-10.8zm54 0h10.8v8.68h-10.8zm-86.4 26.03h10.8v8.68H10.8zm5.4 8.68H27v8.68H16.2zm21.6-8.68h10.8v8.68h-10.8zm-5.4 8.68h10.8v8.68H32.4zM21.6 78.1h16.2v8.7H21.6z"/>
<path d="M26.98 86.78h5.4v8.68h-5.4zm37.8-26.03h10.8v8.68h-10.8zm5.4 8.68h10.8v8.68h-10.8zm21.6-8.68h10.78v8.68h-10.8zm-5.4 8.68h10.8v8.68h-10.8zm-10.8 8.68h16.2v8.7h-16.2z"/>
<path d="M80.98 86.78h5.4v8.68h-5.4zm-27-8.67h5.4v8.7h-5.4zM0 78.1h5.4v8.7H0zm107.96 0h5.4v8.7h-5.4zm-80.98 43.4h5.4v8.68h-5.4z"/>
<path d="M21.6 130.17h16.2v8.68H21.6zm-5.4 8.68h27v8.68h-27zm64.78-17.35h5.4v8.68h-5.4z"/>
<path d="M75.57 130.17h16.2v8.68h-16.2zm-5.4 8.68h27v8.68h-27zm5.4 43.4h27v8.67h-27zm-10.8-34.72h37.8v8.68h-37.8zm-53.98 0h37.7v8.68H10.7zm5.4 43.4h16.2v8.67H16.2zm-5.4-8.7h26.9v8.7h-27zm75.5-17.33h27v8.6h-27zm-5.4 26h16.2v8.7H80.9zm-59.4 8.7H27v8.64h-5.4zm64.76 0h5.4v8.64h-5.4zM0 164.9h27v8.66H0zm48.6 17.34h16.18v8.68h-16.2zm5.38 8.68h5.4v8.68h-5.4zm-16.2-26.03h37.8v8.6h-37.8zM59.4 34.7h10.8v8.68H59.4zm-10.8 8.7h16.18v8.67h-16.2zm-5.42 8.67h10.8v8.68h-10.8zm16.2 0h10.8v8.68h-10.8zM0 43.4h10.8v8.67H0z"/>
<path d="M5.4 52.07h10.8v8.68H5.4zm97.17-8.68h10.8V52h-10.8zm-5.4 8.6h10.8v8.64h-10.8zM0 130.1h5.4v8.7H0zm107.96 0h5.4v8.7h-5.4zM48.6 199.6h16.18v8.68h-16.2zm-5.42 8.68h10.8v8.67h-10.8zm16.2 0h10.8v8.67h-10.8zm-21.6 8.67h10.8v8.68h-10.8zm27 0h10.8v8.68h-10.8zm-32.38 8.68h10.8v8.68H32.4zm37.78 0h10.8v8.68h-10.8zm-43.2 8.68h10.8v8.7h-10.8zm48.6 0h10.8v8.7h-10.8z"/>
<path d="M16.2 243h16.2v8.66H16.2zm64.78 0h16.2v8.66h-16.2zm10.8-8.7h10.8v8.7h-10.8zm5.4-8.67h10.8v8.68h-10.8zm5.4-8.68h10.8v8.68h-10.8zM10.8 234.3h10.8v8.7H10.8zm-5.4-8.67h10.8v8.68H5.4zM0 216.95h10.8v8.68H0zm21.6 34.72H27v8.67h-5.4zm64.77 0h5.4v8.67h-5.4zm-32.4-26.04h5.4v8.68h-5.4zM37.8 251.67h5.38v8.67h-5.4zm32.38 0h5.4v8.67h-5.4zm-16.2 0h5.4v8.67h-5.4zm-53.98 0h5.4v8.67H0zm107.96 0h5.4v8.67h-5.4zm-53.98-121.5h5.4v8.68h-5.4zm-27-86.77h5.4v8.67h-5.4zm54 0h5.4v8.67h-5.4zm-32.4 60.74h16.2v8.68h-16.2zm-10.78 8.68h16.18v8.68h-16.2zm5.38 8.68h5.4v8.68h-5.4zm-10.8-17.36h10.8v8.68H32.4zm5.42-8.68h16.18v8.68h-16.2z"/>
<path d="M43.18 86.78h5.4v8.68h-5.4zm16.2 8.68h16.2v8.68h-16.2z"/>
<path d="M64.78 86.78h5.4v8.68h-5.4zm5.4 17.36h10.8v8.68h-10.8zm-10.8 8.68h16.2v8.68h-16.2zm5.4 8.68h5.4v8.68h-5.4zm21.6-17.36h10.8v8.68h-10.8zm5.4-8.68h16.2v8.68h-16.2zm10.8 8.68h10.8v8.68h-10.8zm-10.8 8.68h16.2v8.68h-16.2z"/>
<path d="M97.17 121.5h5.4v8.68h-5.4zm0-34.72h5.4v8.68h-5.4zM0 104.14h10.8v8.68H0zm5.4-8.68h16.2v8.68H5.4zm10.8 8.68H27v8.68H16.2zm-10.8 8.68h16.2v8.68H5.4z"/>
<path d="M10.8 121.5h5.38v8.68h-5.4zm0-34.72h5.38v8.68h-5.4zM5.4 156.2H27v8.7H5.4zm27 0H54v8.7H32.4zm26.98 0h21.6v8.7h-21.6zm27 0h21.6v8.7h-21.6zm-43.2 17.36h27v8.68h-27zm-37.8 0h27v8.68h-27zm75.6 0h27v8.68h-27zm26.98 34.72h5.4v8.67h-5.4zM0 208.28h5.4v8.67H0zm5.4 295.05h5.4v-8.68H5.4zm16.2 0h16.2v-8.68H21.6z"/>
<path d="M26.98 512h5.4v-8.68h-5.4zm27 0h5.4v-8.68h-5.4zm21.6-8.67h16.2v-8.68h-16.2z"/>
<path d="M80.98 512h5.4v-8.68h-5.4zM16.2 494.65H27v-8.68H16.2zm16.2 0h10.8v-8.68H32.4zm37.78 0h10.8v-8.68h-10.8zm16.2 0h10.8v-8.68h-10.8zm-48.6-8.7h10.8v-8.66h-10.8zm27 0h10.8v-8.66h-10.8zm27 0h10.78v-8.66h-10.8zm10.8 17.38h5.4v-8.68h-5.4zM5.38 477.3h10.8v-8.7H5.4z"/>
<path d="M43.18 477.3h10.8v-8.7h-10.8zm54 0h10.8v-8.7h-10.8zm-86.4-26.04h10.8v-8.68H10.8zm5.42-8.68H27v-8.68H16.2zm21.6 8.68h10.78v-8.68h-10.8zm-5.4-8.68h10.8v-8.68H32.4zm-10.8-8.68h16.2v-8.68H21.6z"/>
<path d="M26.98 425.23h5.4v-8.68h-5.4zm37.8 26.03h10.8v-8.68h-10.8zm5.4-8.68h10.8v-8.68h-10.8zm21.6 8.68h10.78v-8.68h-10.8zm-5.4-8.68h10.8v-8.68h-10.8zm-10.8-8.68h16.2v-8.68h-16.2z"/>
<path d="M80.98 425.23h5.4v-8.68h-5.4zm-27 8.67h5.4v-8.68h-5.4zM0 433.9h5.4v-8.68H0zm107.96 0h5.4v-8.68h-5.4zm-80.98-43.4h5.4v-8.67h-5.4z"/>
<path d="M21.6 381.84h16.2v-8.68H21.6zm-5.4-8.68h27v-8.68h-27zm64.78 17.35h5.4v-8.6h-5.4zm-5.4-8.6h16.2v-8.7h-16.2zm-5.4-8.7h27v-8.7h-27zm5.4-43.4h27v-8.63h-27zm-10.8 34.7h37.8v-8.62h-37.8zm-54 0h37.8v-8.62h-37.8zm5.4-43.33h16.2v-8.7H16.2zm-5.4 8.67h27v-8.7h-27zm75.58 17.34h27v-8.66h-27zm-5.4-26h16.2v-8.7h-16.2zM0 347.1h27v-8.68H0zm48.6-17.35h16.18v-8.68h-16.2zm5.38-8.68h5.4v-8.7h-5.4zm-16.2 26.02h37.8v-8.7h-37.8zM59.4 477.3h10.8v-8.7H59.4zm-10.8-8.7h16.2v-8.67H48.6zm-5.4-8.67H54v-8.68H43.2zm16.2 0h10.8v-8.68H59.4zM0 468.6h10.8v-8.67H0zm5.4-8.67h10.8v-8.68H5.4zm97.17 8.68h10.8V460h-10.8zm-5.4-8.6h10.8v-8.7h-10.8zM0 381.9h5.4v-8.7H0zm107.96 0h5.4v-8.7h-5.4zm-64.78-78.1h10.8v-8.7h-10.8zm16.2 0h10.8v-8.7h-10.8zm-21.6-8.7h10.8v-8.7h-10.8zm27 0h10.8v-8.7h-10.8zm-32.4-8.7h10.8v-8.7H32.4zm37.8 0h10.8v-8.7h-10.8zm-43.2-8.7h10.8v-8.68h-10.8zm48.6 0h10.8v-8.68h-10.8zm-59.38-8.68h16.2v-8.68H16.2zm64.78 0h16.2v-8.68h-16.2zm10.8 8.68h10.78v-8.68h-10.8z"/>
<path d="M97.17 286.37h10.8v-8.68h-10.8zm5.4 8.7h10.8v-8.7h-10.8zM10.8 277.7h10.78v-8.68h-10.8z"/>
<path d="M5.4 286.37h10.8v-8.68H5.4zm-5.4 8.7h10.8v-8.7H0zm21.6-34.73H27v-8.68h-5.4zm32.38 26.03h5.4v-8.68h-5.4zm0 95.47h5.4v-8.68h-5.4zm-27 86.77h5.4V460h-5.4zm54 0h5.4V460h-5.4zm-32.4-60.7h16.2v-8.7h-16.2zm-10.8-8.7H54v-8.7H37.8zm5.4-8.7h5.4v-8.6h-5.4zm-10.8 17.4h10.8v-8.7H32.4z"/>
<path d="M37.8 416.54h16.18v-8.68h-16.2zm5.38 8.68h5.4v-8.67h-5.4zm16.2-8.68h16.2v-8.68h-16.2zm5.4 8.68h5.4v-8.67h-5.4z"/>
<path d="M70.18 407.87h10.8v-8.68h-10.8zm-10.8-8.68h16.2v-8.7h-16.2zm5.4-8.7h5.4v-8.7h-5.4zm21.6 17.3h10.8v-8.7h-10.8zm5.4 8.7h16.2v-8.7h-16.2z"/>
<path d="M102.57 407.87h10.8v-8.68h-10.8zm-10.8-8.68h16.2v-8.7h-16.2zm5.4-8.7h5.4v-8.7h-5.4zm0 34.7h5.4v-8.7h-5.4zM0 407.9h10.8v-8.68H0z"/>
<path d="M5.4 416.54h16.2v-8.68H5.4z"/>
<path d="M16.2 407.87H27v-8.68H16.2zM5.4 399.2h16.2v-8.7H5.4zm5.4-8.7h5.38v-8.67h-5.4zm0 34.72h5.38v-8.67h-5.4zm-5.4-69.4H27v-8.7H5.4zm27 0H54v-8.7H32.4zm26.98 0h21.6v-8.7h-21.6zm27 0h21.6v-8.7h-21.6zm-43.2-17.38h27v-8.68h-27zm-37.8 0h27v-8.68h-27zm75.6 0h27v-8.68h-27zm26.98-34.7h5.4v-8.68h-5.4zM0 303.74h5.4v-8.68H0zm48.6-43.4H54v8.68h-5.4zm10.78 0h5.4v8.68h-5.4zm0-17.35h5.4v8.6h-5.4zm-10.8 0H54v8.6h-5.4zM10.8 477.3h10.8v8.67H10.8zm75.6-164.9h5.4v-8.67h-5.4zm-64.8 0H27v-8.67h-5.4zm27-8.67h16.2v8.68H48.6z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.9 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 52 KiB

View File

@@ -0,0 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<path fill="#fff" d="M150.2 0h339.6v480H150.2z"/>
<path fill="#bf0a30" d="M-19.6 0h169.8v480H-19.6zm509.4 0h169.8v480H489.8zM201 232l-13.2 4.5 61.3 53.8c5 14-1 18-5 25.2L311 307l-1.8 67 13.7-.3-3-66.5 66.7 8c-4-8.8-8-13.4-4-27.4l61.4-51-10.8-4c-9-6.7 3.7-32.5 5.6-48.8 0 0-35.8 12.3-38 6l-9.3-17.7-32.7 35.8c-3.6 1-5 0-6-3l15-75-23.7 13.7c-2 .8-4 0-5.6-2.2l-23-46-23.6 48c-2 1.7-3.8 2-5 .7l-23-13 14 74c-1 3-4 3.8-7 2l-31-35c-4 6.5-6.8 17.2-12.2 19.5-5.4 2.3-23.4-4.5-35.5-7 4.5 14.8 17 39.5 9 47.7z"/>
</svg>

After

Width:  |  Height:  |  Size: 602 B

View File

@@ -0,0 +1,19 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="480" width="640" viewBox="0 0 640 480">
<defs>
<path d="M0-360l69.42 215.84 212.04-80.3L156-35.6 350.96 80.1 125.1 99.77l31.1 224.6L0 160l-156.2 164.35 31.1-224.6-225.87-19.64L-156-35.6l-125.46-188.86 212.04 80.3z" id="a"/>
<path d="M0-210L54.86-75.5l144.86 10.6L88.77 28.85l34.67 141.05L0 93.32l-123.44 76.56 34.67-141.06-110.95-93.73 144.86-10.6z" id="b"/>
</defs>
<path fill="green" d="M0 0h640v480H0z"/>
<circle cx="320" cy="240" r="66.67" fill="#ffe000"/>
<circle cx="340.79" cy="240" r="54.86" fill="green"/>
<circle cx="109.84" cy="173.33" r="69.84" fill="#ffe000"/>
<path d="M105.02 226h17.44s.8-1.6-.17-2.4c-1-.8-4.8-.98-3.7-3.8 2-5.82 2.3-4.03 3.6-17.83 1.3-13.8 1.9-35.46 1.9-35.46h-2.6s.5 6.8-1 15.5c-1.5 8.8-1.9 9.6-3.5 16.3-1.6 6.8-1.9 7.3-3.3 11.3-1.5 4-1.6 4.1-3.9 7.8s-1.5 2.3-2.7 4.5c-.7 1.1-1.4.8-1.9 1.6-.4.8-.5 2.7-.5 2.7z" fill="#802000" stroke="#7b3100" stroke-width="1.48"/>
<path d="M118.33 122.45c.14 2.7-.13 6.3-1.25 9.2-1.14 3.27-2.38 6.5-2.3 9.87-1.8.62-3.7-3.9-5.43-1.25 1.3 3.7 4.33 6.6 6.4 9.92.35 1 3.33 3.7 1.6 4.3-4.35-1.5-5.4-7-8.1-10.4-3.13-5.7-8.98-9.6-15.5-9.9-2.44 0-10.4-.6-8.32 3.6 3.05 2 6.8 3.4 9.8 5.7 2.25.2 6.32 3.9 6.08 5.3-3.9-1.6-5.7-3.6-10-5.2-5.7-2.3-13.7-.9-16.9 4.8-.6 1.5-1.4 5.8.4 6.2 2.2-3.4 5.3-7.3 10-6.2 3.7.3-4 6.7-1.1 5.4 1-.4 3.1-1.8 4.6-2 1.5-.2 2.4.9 3.5 1.1 2.3.3 2.9 1.2 2.7 1.8-.2.6-.9.1-3.2.8-1.1.4-1.7 1.4-3.1 1.9-1.3.5-4.1.5-5.1.1-3.6-1.6-9.6-1.3-10.8 3.22 0 2-1.8-.2-2.6.64-.6 2.2-.8 4.5-4 4.3-1.9 2.1-4 4.2-6.5 5.7 1.5 3.4 7.3-3.4 7.1-.57-2.54 3.5 1.3 4.22 3 1.54 2.88-3 6.4-6.7 10.7-3.6 2 1.9 3.2-1 4.7-.9.95 2.37 2.1.1 3.17-.56 1.7-.2 1.26 2.14 3.3.7 4.1-2.7 9.1-.45 13.1-3.08 4.23-1.96.6 1.53-.6 2.9-1.86 3.6-.25 8.35-4.3 10.6-1.62 4.3 1.93 10-1.7 13.2-.5 2 4.66 1.75 6.1 2.6 2.56.1-.1-5.85 2.4-6.65 3.4 2.1 3.26-3.77 2.56-5.57.3-4.1.54-8.6 2.6-12.3 2.14-4.54 4.15 1.86 1.7 3.66-1.4 4.12-3.4 9.4-.25 13.3.96.2 1.7 2.4 2.86 3 1.1.7 2.7-.13 3-2.12 1.5-6 .74-12.4 2.9-18.27 1.5-1.8 3.6-.3 4.5 1.35 3 3.4 5.1 7.8 8.75 10.7 3.3 1.5 6.2 3.8 7.7 7.2 0 2.6 7.5 3 5.27.1-2.18-2.86-.77-5.7 1.4-7.6 1.1.3.8-1.8-.1-1-1.5-.33-1.6-3 .44-1.73 3.4 1.1-.24-2.5-1.5-2.6-2.9-1.8-6.2-3.88-7.6-7 3.8.04 7.7 2.1 11.5.8 3.1-1.57 6.25.14 7.3 2.86 2.4-.4 1.4-2.8 0-3.6 1.77-.74 2.97-2.2.86-3.54-1.1-1.4 1.5-3.9-1.7-3.8.18-2.4-.8-4.7-3.5-5.5-2.7-2.25-10.5 3.36-10.3-1.75-.8-2.8 3.2-.4 4.3-1.8 1.2-2.9-5.5-2.6-3.3-4.9 1.47-.9 8.18-2.2 2.9-3.2-2.6.7-4.9.2-6.92-1.1-1.88 3.15-7.26-1.7-6.3 3.9-.7 2.1-5.54 7.6-6.84 3.4 1.1-3.3 6.8-4.4 5.04-8.83-.26-2.8-2.56.5-3.64.3-.6-1.7 1.6-3.77 3.2-4.2 3 2.37 3.1-2.94 6-2.5 2.1-.48-.7-1.4-1.28-1.78.52-1.56 3.8-2.36.6-3.7-2.8-2.1-4.9 2.1-7.2 2.3-2.2-2.5 2-3.7 3.2-5.05.03-1-2.5-.3-1.7-1.15.62-1.15 5.12-1.24 3-3.02-3.2-1.1-7.27-.8-10.3.6-1.93.6-2.5 4.94-4.15 4.76-.8-1.96.27-5.77-2.4-6.3zm15 42.36c2.42-.4.05 3.7-1.1 3.7.1-1.4-3.5-1.3-1.27-2.6a7.28 7.28 0 0 1 2.37-1z" fill="green"/>
<g transform="matrix(.06 0 0 .06 0 80)" fill="#ffe000">
<use height="100%" width="100%" xlink:href="#a" x="7560" y="4200"/>
<use height="100%" width="100%" xlink:href="#a" x="6300" y="2205"/>
<use height="100%" width="100%" xlink:href="#a" x="7560" y="840"/>
<use height="100%" width="100%" xlink:href="#a" x="8680" y="1869"/>
<use height="100%" width="100%" xlink:href="#b" x="8064" y="2730"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

@@ -0,0 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<path fill="#007fff" d="M0 0h640v480H0z"/>
<path d="M28.8 96H96l20.8-67.2L137.6 96h67.2l-54.4 41.6 20.8 67.2-54.4-41.6-54.4 41.6 20.8-67.2L28.8 96zM600 0L0 360v120h40l600-360V0h-40" fill="#f7d618"/>
<path d="M640 0L0 384v96L640 96V0" fill="#ce1021"/>
</svg>

After

Width:  |  Height:  |  Size: 352 B

View File

@@ -0,0 +1,15 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<defs>
<clipPath id="a">
<path fill-opacity=".67" d="M-12.355 32h640v480h-640z"/>
</clipPath>
</defs>
<g clip-path="url(#a)" fill-rule="evenodd" transform="translate(12.355 -32)">
<path fill="#00f" d="M-52 32h719.29v118.94H-52z"/>
<path fill="#ff0" d="M-52 391.65h719.29V512H-52z"/>
<path fill="#009a00" d="M-52 271.3h719.29v120.35H-52z"/>
<path fill="#fff" d="M-52 150.94h719.29v120.35H-52z"/>
<path fill="red" d="M247.7 32.474h119.88v479.53H247.7z"/>
<path fill="#ff0" d="M99.253 137.653L67.837 115.93l-31.314 21.937 10.87-36.717-30.457-23.118 38.14-.968 12.49-36.22 12.702 36.113 38.173.732-30.284 23.288"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 757 B

View File

@@ -0,0 +1,12 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<defs>
<clipPath id="a">
<path fill-opacity=".67" d="M-79.458 32h640v480h-640z"/>
</clipPath>
</defs>
<g stroke-width="1pt" fill-rule="evenodd" clip-path="url(#a)" transform="translate(79.458 -32)">
<path fill="#ff0" d="M-119.46 32h720v480h-720z"/>
<path d="M-119.46 32v480l480-480h-480z" fill="#00ca00"/>
<path d="M120.54 512h480V32l-480 480z" fill="red"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 492 B

View File

@@ -0,0 +1,9 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<g fill-rule="evenodd" stroke-width="1pt">
<path fill="#d52b1e" d="M0 0h640v480H0z"/>
<g fill="#fff">
<path d="M170 195h300v90H170z"/>
<path d="M275 90h90v300h-90z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 300 B

View File

@@ -0,0 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<g fill-rule="evenodd">
<path fill="#00cd00" d="M426.83 0H640v480H426.83z"/>
<path fill="#ff9a00" d="M0 0h212.88v480H0z"/>
<path fill="#fff" d="M212.88 0h213.95v480H212.88z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 292 B

View File

@@ -0,0 +1,9 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<path fill="#006" d="M0 0h640v480H0z"/>
<g stroke-width="1pt">
<path d="M0 0v24.81l319.75 197.106H360v-24.81L40.25 0H.002zm360.004 0v24.81L40.246 221.917H0v-24.814L319.75-.003H360z" fill="#fff"/>
<path d="M150.003 0v221.92h60V0h-60zM0 73.973v73.973h360.004V73.973H0z" fill="#fff"/>
<path d="M0 88.766v44.384h360.004V88.766H0zM162.003 0v221.92h36V0h-36zM0 221.92l120.004-73.974h26.833l-120.004 73.97H-.003zM0 0l120.004 73.973H93.17L.004 16.54V0zm213.172 73.973L333.168 0H360L239.998 73.973h-26.833zm146.832 147.95L240 147.948h26.833L360 205.38v16.542z" fill="#c00"/>
</g>
<path d="M471.6 213l5.2-16.668-14.013-10.647 17.655-.224 5.883-16.437 5.708 16.527 17.657.484-14.128 10.438 5.028 16.744-14.44-10.078m27.05 13.135l10.408-13.934-9.68-14.798 16.706 5.795 10.977-13.484-.086 17.512 16.474 6.463-16.76 5.026-.8 17.485-10.272-14.408m-98.397 14.976l-.693-17.47-16.746-5.183 16.53-6.296.027-17.487 10.905 13.578 16.77-5.63-9.793 14.685 10.336 14.016-16.956-4.503m-39.69 40.867l-7.332-15.822-17.415 1.824 12.818-12.317-6.675-16.123 15.25 8.21 13.292-11.798-3.394 17.39 14.894 8.84-17.348 2.535m-17.474 55.583l-13.31-11.106-14.964 9.22 6.375-16.7-12.845-11.664 17.247.787 7.023-16.44 4.283 17.19 17.19 1.508-14.6 9.836m3.275 60.417l-16.568-4.817-10.11 14.498-.703-17.895-16.36-5.516 16.13-6.24-.004-17.916 10.672 14.04 16.364-5.554-9.538 14.917m29.527 50.852l-17.074 2.394-3.463 17.41-7.78-16.078-17.162 1.67 12.265-12.328-7.15-16.382 15.36 8.46 12.748-11.796-2.772 17.556m45.038 37.956l-15.208 8.226 2.676 17.55-12.775-12.362-15.537 7.577 7.314-15.863-12.288-12.87 17.295 2.56 7.95-15.535 3.374 17.447m53.832 8.963l-8.3 15.322 11.7 13.21-17.36-3.266-8.924 14.962-2.428-17.338-17.226-3.962 15.86-7.448-1.716-17.417 12.23 12.738m57.333-13.123l-.517 17.475 16.345 6.365-16.924 5.103-1.237 17.442-9.94-14.32-17.116 4.423 10.783-13.952-9.342-14.716 16.604 5.698m54.4-203.218l11.944 12.604 15.92-7.39-8.25 15.835 11.418 13.102-17.04-2.82-8.864 15.496-2.28-17.577-16.9-3.53 15.632-8.043m34.244 21.104l5.42 16.595 17.507.293-14.174 10.68 4.734 16.815-14.176-9.994-14.585 10.107 5.412-16.857-13.75-10.576 17.524-.422m19.513 33.206l-2.006 17.364 15.742 7.775-17.296 3.598-2.72 17.27-8.68-15.14-17.43 2.904L587.82 319.2l-8.05-15.48 16.054 7.133m2.931 39.795l-7.767 15.607 12.148 12.79-17.462-2.652-8.406 15.268-3.02-17.24-17.353-3.35 15.596-8.006-2.314-17.345 12.66 12.296m-9.834 39.108l-14.675 9.17 3.747 17.348-13.508-11.534-15.043 8.542 6.328-16.293-13.053-12.072 17.417 1.465 6.983-16.006 4.437 17.2" fill-rule="evenodd" fill="#fff"/>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@@ -0,0 +1,13 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<defs>
<clipPath id="a">
<path fill-opacity=".7" d="M0 0h682.7v512H0z"/>
</clipPath>
</defs>
<g fill-rule="evenodd" clip-path="url(#a)" transform="scale(.9)">
<path fill="#fff" d="M256 0h512v256H256z"/>
<path fill="#0039a6" d="M0 0h256v256H0z"/>
<path d="M167.8 191.7L128.2 162l-39.5 30 14.7-48.8-39.4-30 48.7-.5 15-48.7 15.6 48.5H192L152.8 143l15 48.7z" fill="#fff"/>
<path fill="#d52b1e" d="M0 256h768v256H0z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 552 B

View File

@@ -0,0 +1,15 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="480" width="640" viewBox="0 0 640 480">
<path fill="#007a5e" d="M0 0h213.333v480H0z"/>
<path fill="#ce1126" d="M213.333 0h213.333v480H213.333z"/>
<path fill="#fcd116" d="M426.667 0H640v480H426.667z"/>
<g transform="translate(320 240) scale(7.1111)" fill="#fcd116">
<g id="b">
<path id="a" d="M0-8L-2.472-.392 1.332.845z"/>
<use height="100%" width="100%" xlink:href="#a" transform="scale(-1 1)"/>
</g>
<use height="100%" width="100%" xlink:href="#b" transform="rotate(72)"/>
<use height="100%" width="100%" xlink:href="#b" transform="rotate(144)"/>
<use height="100%" width="100%" xlink:href="#b" transform="rotate(-144)"/>
<use height="100%" width="100%" xlink:href="#b" transform="rotate(-72)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 847 B

View File

@@ -0,0 +1,11 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="480" width="640" viewBox="0 0 640 480">
<defs>
<path id="a" fill="#ffde00" d="M-.588.81L0-1 .588.81-.952-.31H.952z"/>
</defs>
<path d="M0 0h640v480H0z" fill="#de2910"/>
<use xlink:href="#a" transform="matrix(71.9991 0 0 72 119.999 120)" width="30" height="20"/>
<use xlink:href="#a" transform="matrix(-12.33562 -20.5871 20.58684 -12.33577 240.291 47.996)" width="30" height="20"/>
<use xlink:href="#a" transform="matrix(-3.38573 -23.75998 23.75968 -3.38578 287.95 95.796)" width="30" height="20"/>
<use xlink:href="#a" transform="matrix(6.5991 -23.0749 23.0746 6.59919 287.959 168.012)" width="30" height="20"/>
<use xlink:href="#a" transform="matrix(14.9991 -18.73557 18.73533 14.99929 239.933 216.054)" width="30" height="20"/>
</svg>

After

Width:  |  Height:  |  Size: 848 B

View File

@@ -0,0 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<g fill-rule="evenodd" stroke-width="1pt">
<path fill="#ffe800" d="M0 0h640v480H0z"/>
<path fill="#00148e" d="M0 240h640v240H0z"/>
<path fill="#da0010" d="M0 360h640v120H0z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 292 B

View File

@@ -0,0 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<g fill-rule="evenodd" stroke-width="1pt">
<path fill="#0000b4" d="M0 0h640v480H0z"/>
<path fill="#fff" d="M0 75.428h640v322.285H0z"/>
<path fill="#d90000" d="M0 157.716h640V315.43H0z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 303 B

View File

@@ -0,0 +1,13 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<defs>
<clipPath id="a">
<path fill-opacity=".67" d="M-32 0h682.67v512H-32z"/>
</clipPath>
</defs>
<g fill-rule="evenodd" clip-path="url(#a)" transform="translate(30) scale(.94)">
<path fill="#0050f0" d="M-32 0h768v512H-32z"/>
<path fill="#fff" d="M-32 102.4h768v102.4H-32zm0 204.8h768v102.4H-32z"/>
<path d="M-32 0l440.69 255.67L-32 511.01V0z" fill="#ed0000"/>
<path d="M161.75 325.47l-47.447-35.432-47.214 35.78 17.56-58.144-47.13-35.904 58.306-.5 18.084-57.97 18.472 57.836 58.305.077-46.886 36.243 17.948 58.016z" fill="#fff"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 670 B

View File

@@ -0,0 +1,13 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<defs>
<clipPath id="a">
<path fill-opacity=".67" d="M-123.43 0h682.67v512h-682.67z"/>
</clipPath>
</defs>
<g fill-rule="evenodd" clip-path="url(#a)" transform="translate(115.72) scale(.94)">
<path fill="#fff" d="M-123.43 233.05H723.1v205.97h-846.53z"/>
<path fill="#081873" d="M-122.76 0h845.95v256.64h-845.95zm.24 385.87H729.6V512h-852.12z"/>
<path fill="#de3929" d="M-122.52 302.55h845.95v39.65h-845.95z"/>
<path fill="#ffce08" d="M130.92 399.168l6.65 20.468h21.522l-17.412 12.65 6.65 20.47-17.41-12.65-17.41 12.65 6.65-20.47-17.412-12.65h21.522m192.64-169.138l6.65 20.468h21.522l-17.412 12.65 6.65 20.47-17.41-12.65-17.41 12.65 6.65-20.47-17.412-12.65h21.522M88.27 335.448l6.65 20.468h21.523l-17.412 12.65 6.652 20.47-17.41-12.65-17.412 12.65 6.65-20.47-17.41-12.65h21.52m235.289-26.458l6.65 20.468h21.522l-17.412 12.65 6.65 20.47-17.41-12.65-17.41 12.65 6.65-20.47-17.412-12.65h21.522m-40.44-161.748l6.65 20.468h21.522l-17.412 12.65 6.65 20.47-17.41-12.65-17.41 12.65 6.65-20.47-17.412-12.65h21.522m-64.43-45.218l6.65 20.468h21.522l-17.412 12.65 6.65 20.47-17.41-12.65-17.41 12.65 6.65-20.47-17.412-12.65h21.522m-64.44 2.892l6.65 20.468h21.522l-17.412 12.65 6.65 20.47-17.41-12.65-17.41 12.65 6.65-20.47-17.412-12.65H121m-34.816 43.242l6.65 20.468h21.522l-17.412 12.65 6.65 20.47-17.41-12.65-17.41 12.65 6.65-20.47-17.412-12.65h21.522M198.74 420.408l6.65 20.468h21.522l-17.412 12.65 6.65 20.47-17.41-12.65-17.41 12.65 6.65-20.47-17.412-12.65h21.522m82.17-41.708l6.65 20.468h21.522l-17.412 12.65 6.65 20.47-17.41-12.65-17.41 12.65 6.65-20.47-17.412-12.65h21.522"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@@ -0,0 +1,14 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="480" width="640" viewBox="0 0 640 480">
<defs>
<path id="b" d="M0-1l.225.69H.95L.364.12l.225.69L0 .383-.588.81l.225-.692L-.95-.31h.725z"/>
<clipPath id="a">
<path fill-opacity=".67" d="M0 0h682.67v512H0z"/>
</clipPath>
</defs>
<g clip-path="url(#a)" transform="scale(.94)">
<path fill="#002b7f" d="M0 0h768v512H0z"/>
<path fill="#f9e814" d="M0 320h768v64H0z"/>
<use xlink:href="#b" transform="scale(42.67)" height="9000" width="13500" y="2" x="2" fill="#fff"/>
<use xlink:href="#b" transform="scale(56.9)" height="9000" width="13500" y="3" x="3" fill="#fff"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 705 B

View File

@@ -0,0 +1,15 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="480" width="640" viewBox="0 0 640 480">
<path fill="#0021ad" d="M0 0h640v480H0z"/>
<path d="M0 0h640v480z" fill="#1c8a42"/>
<circle cx="320" cy="240" r="57.805" fill="#ffc639"/>
<path d="M284.698 214.035c3.954 5.425 9.946 14.52 14.766 12.147 3.76.013 5.702.277 6.212 2.78 8.87 1.51 23.778-2.232 33.054-14.314 0 0 .78.103.51-4.49.05-2 2.735-1.6 2.8-.948.373.993.31 1.735.812 1.76 1.142-.38 2.703-2.94 4.012-4.566.355-.716.162-1.47.245-2.374.69-1.697 2.412-1.33 2.773-.44.33.575.336 1.014.658 1.588 1.75 1.168 4.904.077 5.15.077.31-1.425 1.225-1.29 1.225-1.29 1.167-.258.71-.155 1.477.245-.677 7.684 1.51 8.025 1.33 11.966.076 4.4-1.33 5.65-1.33 7.328.445 2.052 6.934 2.123 4.65 3.858-2.005 1.07.007 3.077-3.012 3.858-8.786 4.457-10.47 8.283-10.47 8.283s-2.206 4.167-2.45 4.167c-1.472 2.78-3.336 1.264-4.374 2.62-.516 1.702-1.097 5.476-.065 7.437.517 2.696-.063 4.167-.708 6.863-.58 5.625-2.813 6.477-3.07 8.45-1.033 2.11.218 12.02-.762 12.02-6.54.128-11.554-1.253-14.14-1.77 2.522-10.87 1.54-20.415 1.54-21.396-.644-7.773-11.642-5.883-13.326-6.915-1.393-.298-2.27-1.433-2.76-1.923-1.556-.168-2.136-.523-3.69-.684-.775.387-.31.787-2.04 1.322-4.386.53-6.32-3.825-6.32-3.825.212-1.464-9.864.297-15.34-.974-2.246 1.25-3.227 4.954-5.065 5.393-.053 1.147-3.027-.943-3.626-2.072-.123-3.283 2.864-4.735 2.864-4.735 2.374-1.67 3.78-1.942 4.922-3.096.574-2.858.283-4.974 1.503-7.122 1.032-1.64 2.554-.87 3.586-1.606 1.11-.737 1.58-5.55.554-6.865 0 0-4.438-4.006-4.683-4.25-1.444-4.142 1.69-6.813 2.588-6.51z" fill="#1c8a42"/>
<path d="M561.875 142.435c-2.62-10.364-26.06-32.685-43.678-46.89-4.206-2.865-6.947-1.158-6.4 2.927 2.194 3.66 3.84 7.68 6.032 11.34.612 2.437 1.767 4.144 2.38 6.582 0 0 .18 4.206.548 4.572 5.483 6.037 6.22 11.156 6.22 11.156 3.166 6.097 5.972 10.546 11.52 15.546 6.22 3.903 1.645 16.03 1.826 22.494 0 4.083-2.923 3.6-5.484 3.11-20.178-18.534-40.175-18.592-57.792-23.96-6.89-.728-7.012 2.562-4.754 4.387 12.314 13.172 23.893 22.132 39.136 29.628l7.683 4.76c2.923 2.44 5.85 4.877 8.773 7.316 6.767 4.386 7.322 8.41 7.322 8.773.18 8.23-4.212 14.63-5.49 17.19-2.31 8.728-6.947 10.245-6.947 10.245-37.678 25.422-57.43 32.002-118.514 24.138-.916-.483-6.767.49 0 2.93 15.546 5.18 53.735 13.488 90.682-4.007 8.87-6.218 14.804-4.18 21.23-7.902 10.553-6.508 25.622-14.61 28.363-15.52 8.232-4.393 31.275-9.328 36.584-13.72 6.09-.49 12.41-1.29 12.837-6.53 2-1.295 4.93-.347 7.103-4.617 4.832-.84 4.02-2.568 4.02-2.568-1.22-3.412-5.736-4.82-8.96-7.315-4.762-1.587-8.052-2.077-11.53-.368-1.096.49-2.192.974-3.29 1.465 0 0-5.12-.736-5.12-1.097-11.38-.626-10.27-38.337-14.296-54.066z" fill="#ffc639"/>
<path d="M588.563 204.166a2.818 1.76 15.947 1 1-5.373-1.687 2.818 1.76 15.947 0 1 5.373 1.686z" fill="#1c8a42"/>
<g transform="matrix(.64 0 0 .64 0 80)" fill="#fff">
<path id="a" d="M188.16 190.94l-12.75-11.936-12.905 11.77 1.383-17.405-17.25-2.754 14.476-9.774-8.606-15.197 16.668 5.22 6.518-16.205 6.31 16.287 16.734-5.007-8.8 15.086 14.348 9.96-17.283 2.53 1.158 17.424z"/>
<path d="M233.39 335.53l-13.752-9.167-13.39 9.664 4.71-15.568-13.58-9.416 16.666-.446 4.988-15.496 5.595 15.3 16.667-.156-13.21 9.902 5.307 15.382z"/>
<use height="100%" width="100%" xlink:href="#a" x="2.522" y="269.061"/>
<use height="100%" width="100%" xlink:href="#a" x="-112.066" y="123.223"/>
<use height="100%" width="100%" xlink:href="#a" x="108.427" y="85.027"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@@ -0,0 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="480" width="640" viewBox="0 0 640 480">
<path fill="#fff" d="M0 0h640v480H0z"/>
<path id="a" d="M307.84 398.6a.8.8 0 0 1-.28-.2l-.1-.1c-.26-.23-.7-.65-1.26-1.3-1.07-1.2-2.5-3-3.76-4.55-2.5-3.1-4.55-5.78-4.94-6.3l-.63-.8-6.2-1.93-4.55-2.12 2.43-2.72 8.32 3.56 6.22 1.28 11.4 8.45c-.1.03-1.7 1.4-3.3 2.9-.8.65-1.7 1.5-2.3 2.2-.3.34-.6.66-.8.93-.1.16-.2.3-.2.37l.7-.44.8.6-1.6.15h-.1zm-42.67-12.82c-5.42 0-10.78-1.5-15.92-4.45s.67-1.3 2.3-2.48c1.55-1.14 4.35-2.5 8.88-2.52h.1c5.35 0 11.9 1.82 19.5 5.4-.26.18-6.2 4.06-14.86 4.06zm-23.5-5.2c-1 0-1.9-.38-2.53-1.07-.52-.5-.9-1.3-1.14-2.3-.4-1.6-.3-3.2-.28-3.3a3.48 3.48 0 0 1 1.25-.3h.1c2 0 3.58 1.8 4.26 3.5.38 1 .46 1.8.22 2.5-.24.7-1 1.1-1.88 1.1zm41.35-4.8c-13.9-1.98-19.78-7-22.27-10.86-2.66-4.12-2.1-7.93-2.1-7.97 0 0 .85-.24 2.13-.25 3.7 0 13.15 1.86 22.24 19.08zm-28.47-2.75c-5.93 0-10.45-1.02-13.42-3.04-1.7-1.2-2.55-2.5-2.95-3.3a5.4 5.4 0 0 1-.48-1.7c.16-.1 2.6-1.2 6.2-1.3h.95c4.6 0 11.56 1.5 18.92 8.6-3.36.4-6.47.7-9.23.7zm-28.73-1.1c-6.25 0-14.85-1.9-20.2-7.27.06-.03 5.88-1.5 12.42-1.66l1.18-.02c5.87 0 10.36 1.14 13.35 3.38 1.04.8 1.6 1.52 1.74 2.23.2.6-.2 1.2-.8 1.7-1.3 1-3.7 1.5-7.1 1.6h-.4zm-20.27-10.4a2.56 2.56 0 0 1-1.98-.94c-.4-.5-.7-1.2-.9-2.1-.32-1.5-.22-3-.22-3a2.43 2.43 0 0 1 .97-.2c.93 0 1.64.5 2.08.9a5.57 5.57 0 0 1 1.35 2.1c.3.8.34 1.5.14 2.1-.2.4-.7.9-1.5.9zm46.83-1.06c-1 0-1.9-.38-2.54-1.06-.52-.5-.9-1.3-1.14-2.3-.4-1.6-.3-3.2-.28-3.3a3.48 3.48 0 0 1 1.25-.3h.1c2 0 3.58 1.8 4.26 3.5.4 1 .46 1.8.22 2.5-.24.7-1 1.1-1.87 1.1zm-22.8-.94c-12.6-.44-19.13-4.02-22.4-6.95-1.84-1.64-2.86-3.28-3.4-4.36-.5-1.02-.68-1.8-.72-1.95h.02s1.2-.43 3.1-.47h.3c4.25 0 12.9 1.78 23.08 13.72zm13.66-1.27c-10.13-1.55-15.87-5.9-18.9-9.27-3.17-3.6-4.13-6.9-4.17-7 .02 0 1.26-.4 3.12-.4a14.24 14.24 0 0 1 .8 0c5.1.1 14.3 2.4 19.1 16.6zm-52-4.87c-3.32 0-6.54-.4-9.57-1.2-5.3-1.4-7.58-3.4-8.55-4.8-.56-.9-.76-1.6-.83-2a3.4 3.4 0 0 1-.1-.9s3.5-1 8.3-1.1a35.03 35.03 0 0 1 7.4.6c8.4 1.7 12.8 8 12.8 8.1-.1 0-4.1 1.1-9.7 1.1zm23.5-8.6c-1 0-1.9-.4-2.53-1.1-.5-.6-.8-1.3-1.1-2.4-.4-1.6-.3-3.2-.3-3.4a3.48 3.48 0 0 1 1.3-.3h.1c2 0 3.6 1.7 4.3 3.5.4.9.5 1.7.2 2.4-.2.7-.9 1.1-1.8 1.1zm-17.67-2.5c-.07 0-4.78-1.3-9.57-4.2-4.44-2.8-9.86-7.6-10.52-15.1 0 0 .42-.1 1.03-.2h.3c1.3 0 4.1.4 7.3 2.8 4.2 3.2 8.1 8.7 11.5 16.5zm11.55-.4c-.03 0-3.4-1.4-7.58-4.9-3.9-3.3-9.4-9.2-13.37-18.7 0 0 .9-.5 2.3-.6a3.3 3.3 0 0 1 .25 0h.37c1.9 0 4.8.8 8.1 4.3 3.7 4 7.1 10.7 9.9 19.7zm-29.92-.9c-3.85 0-5.17-2.1-5.56-3-.64-1.5-.45-3-.44-3a8.5 8.5 0 0 1 1.92-.3h.13c3.04 0 5.44 1.5 6.47 3 .2.3.83 1.3.3 2.2-.4.6-1.35 1-2.82 1zm-8.54-10.8c-2.15 0-5.45-.2-8.9-.8s-5.4-3.6-6.42-5.9c-1.12-2.6-1.44-5-1.44-5 10.63.3 15.65 3.4 18 5.9 2.4 2.6 2.55 5.3 2.56 5.5-.03 0-1.52.1-3.8.1zm11.06-11.1a42.73 42.73 0 0 1-2.42-3.4c-1.26-2-2.42-4-2.42-5.7 0-1.6-.38-5-.6-6.9-.3-2.4-.6-4.5-.6-4.6.27.1 6.65 2.5 6.65 8.4 0 6-.6 12-.6 12.1zm-8.26-.6h-.2c-1.88-.3-5.2-1.8-8.86-3.9-4.06-2.3-7.37-4.8-9.3-7-1.75-2-2.8-5.2-3.1-9.4-.2-3 .04-5.5.07-5.7.33-.1.68-.2 1.05-.2 1.4 0 2.92.6 4.95 2 1.6 1.1 3.34 2.6 5.2 4.4 3.2 3.1 5.73 6.3 5.76 6.3h.02c.2.4 2.03 3.6 3.45 6.8.9 2 1.4 3.5 1.62 4.6.12.6.15 1 0 1.4a.72.72 0 0 1-.3.4.87.87 0 0 1-.37.1z" fill="#435125"/>
<use height="100%" width="100%" xlink:href="#a" transform="matrix(-1 0 0 1 593.74 0)"/>
<path d="M519.06 76.38l-1.88.75-.74.3-2.28-.13-2.14 1.03-3.8 2.6-.16.1-1.4.38-1.33-.5-.74.4-.3 1.6-.7 1.1-.9.6-3.1.3-2.6 1.3-3.3-.9-1.6.6-3.3 3-1.7.8h-.6l-2.3-.1-1 .3-1.4 1.4-2.7.2-.9.6-1.3 2.7-1.4 1.4-.8.2-.9-.3-.7.1-.3 1.7-.7.7-1.8.6-1.4 1.2-1.3.7-1.67-.1h-.4l-1.64.9-3.1.3-1.3 1.3-.3.3-.6.4-1 .6-.26.1-1.2-.2-1.4.6-.54-.8-1 .6-1.24.1-1.6-.7-1.2-.5-.9.17-.3 1.5v.15l-.9 1.2-1.78 1.1-.3.3-2 2.6-3.8 3.98-3.2 1.68-3.3 1-2.3 1.9-6.1 3-9.6 4.7-1.97.7-2.8.4-5 1.87-4.13 1-.2.1-.85.3-6.3 1.9-2.9-.3-1.7.65-4.5-.5-3.1.04-2 .4-3.7 1.8-6.3 3-2.1 1.9-3.2 1.7-3.75 1.2v-1.6l-1.3.4-1 .3-3.1.5h-1.7l-1.06-.3-.14.1-6.3 2-7 .66-3.5 1.12-2.6-.1-1.6.5-3.2.4-1.1-.3-.3-.1-9.4.4-4.3-.5-2.1.48-3.5-1.13-5.1-.5-1.2-.3-2.65-.7-1.2.7-.9.1-2.1-.8h-.8l-1.73.66-1-.2-.9-.7-2.2-.3-1.34-1.15-7.5 1-2.1-.6-6.8-2-1.1.04-1.3 1-2.06.76-1.74.48-2.4.1-2.8-.72-2.9-1.4-1.1-.2-2.4.3h-.7l-4.4-2.3-5.6-3.5-3.83-1.8-1.4-.2-.2.65.74 2.3.3 2.2v3.3l.35 1.1 1.4 1.5.6 1.54.4 4.2v4.3l-.66 6.8-.2 1-.8 3.57-.7 3.2-2.86 8.6-.8 1-1.9 1.3-4.3 3-3.2 1.88-1 .4-2.6.2-1.6-.1-2-1.1-2-.5-2.6-1.9-2.9-.6-3.15-1.8-.8-1-1.7-.2-2.4-.7-.8-.3-.6-.2-3.1-.1-2.86-1.3-1.5-.36-2.06-.1-2.1 1-1.1.5-1.4-.54-1 .07-1.1 1.7-.2.3-.8.4-.9-.07h-.8l-.8.4-1.1.5-.9.4-.5.2-.3.1-.5.1-.64.1-1.15-.67-.6-.3-1-.2-.6.4-.1 1.87-.5 1.1-1.6 1.4-1.6 1.4-1.1 1.7-3 6.7-1.8 2.7-.6.66-1.9 2.1-1.7 1.3-4 3-3.74 1.4-3.2.65h-1l-2.9-.4-2.7-.8-2.9-1.8-3.2-2.5-4.63-4.6-.66-.4-.1-.1-1.48-.9h-1.08l-.4.7-.2 1-.2.9-.5 5.1.1.3.3 2.1 3.5 4.9 1.1 2.6.2.3.8 1.22.6.9.1.1 1.2 3.6-.8 2 .4 1.33-1 .8-.2 1.16 3.2 4 .7 1.7-.8 2.4-1.2 1.34-.3.4.2 1 1.5 1.3 2.5 2.2 1.3 3.3 1 .9 1.14-.2.6.5 1-.1 1 1 .6.3 1 .5.7 1 .17 3.1 1.4 3.9v2.4l.9 1.55.26 1.25-.5 3.3 1.1 1.08 1.26-.3.8.17 1.3 1.1 1.6 2.4 1.56-.22 1 .46 4.7 4.3 1.06.55v.03l.8.4.96.93 1.5-1h.2l1.63-.15.7.46 1.4.94 1.8-.02 3.86 1.2 1.7.4 3.4 2.1 1.42.9.9.7 1.16.94 2.3 1 1.9.5 1.04.22.8.3v.04l4.2 1.6 2.3.5 2.1.8 1.55.6h1.1l1.6-1.36 1.6-.1 1.3.3 1.2-.2 2-1.3.4-.53 1.4-.68 4.8-.6 1.4.5 3.56-1.6 2.4.6 2.1-.72 4.6 1 1.23.9 1.4 1.6h1.7l-.6 1 2.1 2.16 1.83 2.7.1.3 1.4 3.9 1 1.4.7 1.9v1.3l-1.1.8-.1.48-.03.2.2.5.4-.2.8-.4.9-.1 1.66.2 1.1.1 1.76-.84 1.17-.6 1.8.8h2l.86.34 2.4 1.1 1.2.2.4-.3.3-.7-.14-.8-1-1.1-2-2.3-.8-1.2-.6-1.8-.2-2.28-.1-1.5.3-2 .58-.7.4-1.6.1-.4 1.17-1.5 2.9-1.9 3.2-2.8 2.6-1.66 2.6-1.18.1-.3.3.1 6.6-2.27h.1l3-.5 19.83 1.5.73-.2.64-1.9.4-.33.2-.22 2.2-.97 1-.2 2.9.7 1.15.3 1.9-1.05h1.3l2.7-1.48h1.7l.7-.2 3.3-2.4 3.2-.9.8-.5.3-.13 3.3-1.7 2.04-1.6 1.8-.96 2-.5 5.1-.33 1.04-1.7 2.2-.3 1.38-1.5 1.5-.6 1.1-1.6.9-1.3 1.3-.7 4.04-.27 4.86.6.7-.4 1.1-3.9 1.1-.75 3.1-4.5v-3l.5-1.9-.34-3.5.4-3.58 1.9-4.5 1.7-2 2.7-1.84 1.4-.6 1.9-.3.3-.1.5-.1 6.77-.1c.1-.1 2.45-.06 2.45-.06h2.24l5.7 1 .4.1 1.9.64 2.2 1.7 2.3 2.3.4.4 1.5.68.46.2 1.3-.2 1.8-.9 1.3-1.1 1.85-1 .06-.1 1.1-1.6h.08l.4-.6 3.6-1.4 4.2-.2.5-.3.23-.14 1.1-1.3h1l2.5.9 1.8-.4 1.4.6 1.1-.1 2-.3 2.2 1.5 1.3.17 4.1 2.6.2.06.13.03.23.06.6-.1.8-.2h.1l.1.2.5.7.7.1.9-1.1-.3-.5-.1-.2-1.6-.3-1.4-2.4 1.4-1.5-2.1-2.7-.36-.5-.1-.2-.75-1.14-3.8-5.8-4.9-3.94-1.77-1.4-.6-.5-2.6-2.7-1.9-2.5-.24-.5-.4-.85-1.1-2.5-2-1.5-1.6-1.8-.05-.1-3.3-4.5-.54-.8-.72-.4H403l-.2-.16-.1-.1.05-.1.8-.8.86-.2.4-.9-1.7-4.9v-.15l-.1-1.6 1.4-7.1.2-.9 2.4-4.77 1.5-1.2 1.6-3.1 1.3-2 1.3-1.25.2-.1 2.4-1.4 2-.2 1.9-.3 3.3 1.04 3.2-.1.6-.1 1.4-.2 2.3-.7 1.1-.7.6-.9 1.2-4 .4-1.2.7-1.4 4.3-4.85 3.2-3 7.26-5.3 3.5-2.1 1.8-1.1 16.1-7.14 4.2-4.2 2.2-2.2 3.8-2.6 4.5-1.88 3.9-3.1.85-1 1.04-3.4.9-.2.8-1.8.28-.5 3.1-2.2.36-.2 12.3-6.2 1.8.25.9-1.4 3.55-.6.7-.1.88-.4.76-1.3v-.2l.1-3.4.8-.9.4-2.3.4-.5.4-.5 1-.7-.2-.4z" fill="#d47600"/>
</svg>

After

Width:  |  Height:  |  Size: 6.7 KiB

View File

@@ -0,0 +1,12 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<defs>
<clipPath id="a">
<path fill-opacity=".7" d="M-74 0h682.7v512H-74z"/>
</clipPath>
</defs>
<g fill-rule="evenodd" clip-path="url(#a)" transform="matrix(.9 0 0 .9 69.4 0)" stroke-width="1pt">
<path fill="#e80000" d="M-74 0h768v512H-74z"/>
<path fill="#fff" d="M-74 0h768v256H-74z"/>
<path d="M-74 0l382.7 255.7L-74 511V0z" fill="#00006f"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 479 B

View File

@@ -1,5 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480"> <svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<path fill="#ffce00" d="M0 320h640v160.002H0z"/> <path fill="#ffce00" d="M0 320h640v160H0z"/>
<path d="M0 0h640v160H0z"/> <path d="M0 0h640v160H0z"/>
<path fill="#d00" d="M0 160h640v160H0z"/> <path fill="#d00" d="M0 160h640v160H0z"/>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 220 B

After

Width:  |  Height:  |  Size: 216 B

View File

@@ -0,0 +1,13 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<defs>
<clipPath id="a">
<path fill-opacity=".67" d="M-40 0h682.67v512H-40z"/>
</clipPath>
</defs>
<g clip-path="url(#a)" fill-rule="evenodd" transform="translate(37.5) scale(.94)">
<path fill="#0c0" d="M-40 0h768v512H-40z"/>
<path fill="#69f" d="M-40 0h768v256H-40z"/>
<path d="M-40 0l382.73 255.67L-40 511.01V0z" fill="#fffefe"/>
<path d="M119.8 292.07l-30.82-22.18-30.67 22.4 11.407-36.41-30.613-22.48 37.874-.31 11.747-36.3 12 36.216 37.874.048-30.458 22.695 11.66 36.328z" fill="red"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 629 B

View File

@@ -0,0 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<path fill="#c60c30" d="M0 0h640v480H0z"/>
<path fill="#fff" d="M205.7 0h68.6v480h-68.6z"/>
<path fill="#fff" d="M0 205.7h640v68.6H0z"/>
</svg>

After

Width:  |  Height:  |  Size: 238 B

View File

@@ -0,0 +1,152 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<defs>
<clipPath id="a">
<path fill-opacity=".7" d="M-85 0h682.7v512H-85z"/>
</clipPath>
</defs>
<g fill-rule="evenodd" clip-path="url(#a)" transform="matrix(.9 0 0 .9 79.7 0)">
<path fill="#108c00" d="M-258.3 0H769.2v512H-258.3z"/>
<path fill="#ffd600" d="M-260 178.2H772.6v50H-260z"/>
<path fill="#ffd600" d="M181 0h48.5v512H181z"/>
<path d="M227.8 0h48.4v512h-48.4z"/>
<path d="M-260 226.6H772.6v50.2H-260z"/>
<path fill="#fff" d="M-260 276.8H772.6v50H-260z"/>
<path fill="#fff" d="M276.2 0h48.5v512h-48.5z"/>
<rect transform="scale(-1)" ry="137.5" width="273.8" y="-393.9" x="-394.6" height="275" fill="#e72910"/>
<g stroke-width="1pt">
<path d="M250.5 137l5.6-16 6 15.7s17 .5 17 .2-13 10-13 10l6 17c0-1-14-11-14-11l-15 11 6-17-13.2-10 16.5-1z"/>
<path d="M251.3 137.7L256 124l4.5 13.5s14.8.4 14.8.2-11.7 9-11.7 9L269 162c-.3-.6-13-9.5-13-9.5s-12.7 9-12.5 9 5-14.8 5-14.8L237 138l14.2-.4z" fill="#ffe700"/>
<path d="M253.3 140l2.8-8 3 8h9l-6 5 3 9c0-.4-7-5.5-7-5.5l-7 5 3-8.4-6.6-5h8.3z" fill="#108c00"/>
</g>
<g stroke-width="1pt">
<path d="M357 211.8l5.5-16 5 15.7s17.2.6 17.2.3-13.5 10.3-13.5 10.3l6 18-14.7-11s-14.8 11-14.5 11 5.6-17 5.6-17l-13.3-10H357z"/>
<path d="M357.6 212.6l5-14 4.3 13.8s14 .4 14 .2-12 9-12 9l5 15-13-9.3-13 9 5-14.8-12-8.7 14.2-.2z" fill="#ffe700"/>
<path d="M359.7 215l2.8-8 2.5 7.7 8.6.2-6.8 5 3 8c0-1-7.3-6-7.3-6l-7.3 5 2.8-9-6.6-5h8.3z" fill="#108c00"/>
</g>
<g stroke-width="1pt">
<path d="M326 330.6l5.5-16 5 15.8s17.2.5 17.2.2-13.5 10.4-13.5 10.4l6 17.5c-.2-.5-14.7-10.8-14.7-10.8S316.7 358 317 358s5.6-17 5.6-17l-13.3-10 16.6-.4z"/>
<path d="M326.6 331.4l5-13.8 4.3 13.6s14 .5 14 .2-12 9-12 9l5 15.2-13-9.4-13 9 5-14.8-12-8.7 14.2-.3z" fill="#ffe700"/>
<path d="M328.7 333.7l2.8-8 2.5 8h8.6l-6.8 5.2 3 8-7.3-6-7.3 5 2.8-9-6.6-5h8.3z" fill="#108c00"/>
</g>
<g stroke-width="1pt">
<path d="M177.2 330.6l5.6-16 5 15.8s17.2.5 17.2.2-13.6 10.4-13.6 10.4l6.2 17.5c-.3-.5-14.8-10.8-14.8-10.8S168 358 168.2 358s5.7-17 5.7-17l-14-10 16-.4z"/>
<path d="M178 331.4l4.8-13.8 4.4 13.6s14.8.5 14.8.2-11.7 9-11.7 9l5.3 15.2c-.2-.5-12.8-9.4-12.8-9.4s-12.8 9-12.6 9 5-14.8 5-14.8l-11.6-8.7 14.3-.3z" fill="#ffe700"/>
<path d="M180 333.7l2.8-8 2.5 8h8.6l-7 5.2 3 8-8-6-8 5 3-9-7-5h8z" fill="#108c00"/>
</g>
<g stroke-width="1pt">
<path d="M150 208.7l5.6-16 5 15.8s17.2.5 17.2.2-13.5 10.4-13.5 10.4l6 18-14.7-11s-14.8 10-14.6 10 5.7-17 5.7-17l-13.3-10H150z"/>
<path d="M150.8 209.5l4.8-13.8 4.4 13.6s14.8.5 14.8.2-11.7 9-11.7 9l6 15.2c0-.5-13-9.4-13-9.4s-13 9-12 9 5-14.8 5-14.8l-11-8.7 15-.3z" fill="#ffe700"/>
<path d="M152.8 211.8l2.8-8 2.6 8h8.5L160 217l3 8.7c0-.2-7.4-5.4-7.4-5.4l-7.2 5.2 2.8-8.5-6.6-5 8.2-.2z" fill="#108c00"/>
</g>
<g stroke-width="1pt">
<path d="M324.6 174c0 .4-5.6 16-5.6 16l-5-15.6s-17.2-.5-17.2-.3 13.5-10 13.5-10l-6-17c.2 1 14.7 11 14.7 11s14.8-10 14.5-10-5.6 17-5.6 17l13 10-17 1z"/>
<path d="M324 173.3c0 .3-5 14-5 14l-4.4-13.7s-14.8-.5-14.8-.3 11.7-9 11.7-9l-5.3-15c.2.4 12.8 9.3 12.8 9.3s12.8-9 12.6-9-5 14.8-5 14.8l11.6 8.7-14.3 1z" fill="#ffe700"/>
<path d="M321.8 171l-2.8 8-2.5-7.8s-8.6-.3-8.6 0 6-5.3 6-5.3l-3-9 7 5 7-5-3 8 6 5h-8z" fill="#108c00"/>
</g>
<g stroke-width="1pt">
<path d="M367.3 290.3l-5.6 16-5-15.8s-17.2-.5-17.2-.2S353 280 353 280l-6-17.6c.2.5 14.7 11 14.7 11s14.8-10.5 14.5-10.5-5.6 17-5.6 17l13.3 10h-17z"/>
<path d="M366.6 289.5l-5 13.8-4.3-13.6s-14.8-.4-14.8-.2 11.7-9 11.7-9l-5.3-15.2c0 .5 12 9.4 12 9.4s13-9 12-9-5 14.8-5 14.8l11 8.8-14.7.2z" fill="#ffe700"/>
<path d="M364.5 287.2l-2.8 8-2.5-8h-8.6l6.8-5-3-9c0 .4 7.3 5.5 7.3 5.5l7.3-5-2.8 8.4 6.6 5-8.3 1z" fill="#108c00"/>
</g>
<g stroke-width="1pt">
<path d="M261.4 375.3l-5.6 16-5-15.8s-17.2-.5-17.2-.2S247 365 247 365l-6-17.6c.3.5 14.8 10.8 14.8 10.8s14.8-10.3 14.5-10.3-5.6 17-5.6 17l13.3 10h-16.6z"/>
<path d="M260.7 374.4c0 .3-5 14-5 14l-4.3-13.7s-14.8-.5-14.8-.2 11.7-9 11.7-9l-5.3-15.2c.2.5 12.8 9.4 12.8 9.4s12.8-9 12.6-9-5 14.8-5 14.8l11.6 8.7-14.3.3z" fill="#ffe700"/>
<path d="M258.6 372.2l-2.8 8-2.5-8h-8.6l6.8-5.2-3-8.7c0 .2 7.3 5.4 7.3 5.4l7.3-5.2-2 8.5 7 5-8 .2z" fill="#108c00"/>
</g>
<g stroke-width="1pt">
<path d="M162 290.3l-5.7 16-5-15.8s-17.2-.5-17.2-.2 14-10.3 14-10.3l-6-17.6 15 11 14-10.4-5 17 14 10-16.5.2z"/>
<path d="M161.2 289.5l-5 13.8-4.3-13.6s-15-.4-15-.2 11-9 11-9l-6-15.2c0 .5 13 9.4 13 9.4s13-9 12-9-5 14.8-5 14.8l11.3 8.8-14 .2z" fill="#ffe700"/>
<path d="M159 287.2l-2.7 8-2.5-8h-8.6l6.8-5-3-9c0 .4 7.3 5.5 7.3 5.5l7.3-5-2.8 8.4 6.6 5-8.3 1z" fill="#108c00"/>
</g>
<g stroke-width="1pt">
<path d="M198.7 175.8c0 .3-5.7 16-5.7 16l-5-15.7h-17l13.4-10-6-17c0 1 14.6 11 14.6 11s14.8-10 14.6-10-5.6 17-5.6 17l13.2 10-16.5 1z"/>
<path d="M198 175c0 .3-5 14-5 14l-4.4-13.7s-14.8-.5-14.8-.3 11.7-9 11.7-9l-5.3-15c.2.4 12.8 9.3 12.8 9.3s12.8-9 12.6-9-4.8 14.8-4.8 14.8l11.4 9-14.3 1z" fill="#ffe700"/>
<path d="M195.8 172.8l-2.8 8-2.5-8H182l6.7-5.2-3-8.7 7.3 5 7.3-5-2.8 8 6.6 5h-8z" fill="#108c00"/>
</g>
<g transform="translate(-250.6 359.4)">
<g transform="matrix(.2 0 0 .2 429.8 -215.6)" stroke="#000" stroke-width="2.5" fill="#009200">
<ellipse rx="30.8" ry="189.8" transform="matrix(1.4 0 0 1 -534.3 263.7)" cy="586.1" cx="680.2"/>
<ellipse rx="30.8" ry="189.8" transform="matrix(1.5 0 0 1 -547.2 267.1)" cy="586.1" cx="680.2"/>
<ellipse rx="30.8" ry="189.8" transform="matrix(1.2 0 0 1.1 -364.9 214.1)" cy="586.1" cx="680.2"/>
</g>
<g stroke="#000" transform="translate(72.9 -9.8)">
<path d="M388.5-53c6-.3 3.4-3.3 6.4-5 3-1.6 7-.6 8 1.4s0 4 2 4 47-2.6 48-1c1 1.8 2 5 0 6.4-2 1.4-59 3-61 1.6s-5-7-5-7.4z" stroke-width=".5" fill="#a95600"/>
<path d="M393.4-41c0 4 4.5 2.6 4.6 6 0 3.5-7.6.3-7.8-6.2.2-6.4 7.5-9.8 7.7-6 0 3-5 2-5 6z" stroke-width=".4" fill="#ff0"/>
<path d="M397.4-41c0 4 4.5 2.7 4.6 6 0 3.6-7.6.4-7.8-6 .2-6.5 7.5-9.8 7.7-6 0 3-5 2-5 6z" stroke-width=".4" fill="#ff0"/>
<path d="M401.7-41.2c0 4 4.5 2.7 4.6 6 0 3.6-7.6.4-7.8-6 .2-6.5 7.5-9.8 7.6-6 1 3-4 2-4 6z" stroke-width=".4" fill="#ff0"/>
<path d="M405.7-41.2c0 4 4.5 2.7 4.6 6 0 3.6-7.6.4-7.8-6 .2-6.5 7.5-9.8 7.6-6 1 3-4 2-4 6z" stroke-width=".4" fill="#ff0"/>
<ellipse rx="3.5" ry="3.4" transform="matrix(1.1 0 0 1.1 -75.6 4.7)" cy="-41.1" cx="478.4" stroke-width=".4" fill="#a95600"/>
</g>
<g transform="rotate(-5.8 688.4 -625.2)" stroke="#000" stroke-width="2.5" fill="#009200">
<ellipse rx="20.8" ry="24.1" transform="matrix(.2 0 0 .3 369.8 -361.6)" cy="905" cx="427.1"/>
<ellipse rx="20.8" ry="24.1" transform="matrix(.2 0 0 .3 364 -362.7)" cy="905" cx="427.1"/>
<ellipse rx="20.8" ry="24.1" transform="matrix(.2 0 0 .3 360.6 -370.6)" cy="905" cx="427.1"/>
<ellipse rx="20.8" ry="24.1" transform="matrix(.2 0 0 .3 369.3 -399.4)" cy="905" cx="427.1"/>
<ellipse rx="20.8" ry="24.1" transform="matrix(.2 0 0 .3 377.4 -379.1)" cy="905" cx="427.1"/>
<ellipse rx="20.8" ry="24.1" transform="matrix(.2 0 0 .3 373.2 -382.2)" cy="905" cx="427.1"/>
<ellipse rx="20.8" ry="24.1" transform="matrix(.2 0 0 .3 368 -386.7)" cy="905" cx="427.1"/>
<ellipse rx="20.8" ry="24.1" transform="matrix(.2 0 0 .3 363 -389.5)" cy="905" cx="427.1"/>
</g>
<path d="M482.6-141s-11.7 10-10 37c1.7 27 26.4 39.4 26.4 39.4s6.2-7.7 5.2-29.5c-2-32-13.8-46-13.8-46l-7.8-2z" stroke="#000" stroke-width=".5" fill="#804bff"/>
<g transform="rotate(4.5 181 769.9)" stroke="#000" stroke-width="2.5" fill="#009200">
<ellipse rx="20.8" ry="24.1" transform="matrix(.2 0 0 .3 369.8 -361.6)" cy="905" cx="427.1"/>
<ellipse rx="20.8" ry="24.1" transform="matrix(.2 0 0 .3 364 -362.7)" cy="905" cx="427.1"/>
<ellipse rx="20.8" ry="24.1" transform="matrix(.2 0 0 .3 360.6 -370.6)" cy="905" cx="427.1"/>
<ellipse rx="20.8" ry="24.1" transform="matrix(.2 0 0 .3 369.3 -399.4)" cy="905" cx="427.1"/>
<ellipse rx="20.8" ry="24.1" transform="matrix(.2 0 0 .3 377.4 -379.1)" cy="905" cx="427.1"/>
<ellipse rx="20.8" ry="24.1" transform="matrix(.2 0 0 .3 373.2 -382.2)" cy="905" cx="427.1"/>
<ellipse rx="20.8" ry="24.1" transform="matrix(.2 0 0 .3 368 -386.7)" cy="905" cx="427.1"/>
<ellipse rx="20.8" ry="24.1" transform="matrix(.2 0 0 .3 363 -389.5)" cy="905" cx="427.1"/>
</g>
<ellipse rx="58.3" ry="186.5" stroke="#000" transform="matrix(.2 -.1 .1 .1 369.6 -145.1)" cy="606.1" cx="624.4" stroke-width="1pt" fill="#c90000"/>
<g stroke="#000" fill="#009200" transform="rotate(1 242.4 -1957.8)">
<ellipse rx="10.8" ry="12.9" transform="matrix(.4 0 0 .3 445.1 -230.5)" cy="356.8" cx="218.1" stroke-width="1.5"/>
<ellipse rx="10.8" ry="12.9" transform="matrix(.3 0 0 .3 457.2 -235.9)" cy="356.8" cx="218.1" stroke-width="1.5"/>
<ellipse rx="10.8" ry="12.9" transform="matrix(.3 0 0 .3 452 -235.9)" cy="356.8" cx="218.1" stroke-width="1.5"/>
<ellipse rx="10.8" ry="12.9" transform="matrix(.4 0 0 .3 449.5 -233.5)" cy="356.8" cx="218.1" stroke-width="1.6"/>
<ellipse rx="10.8" ry="12.9" transform="matrix(.4 0 0 .3 448.9 -237.9)" cy="356.8" cx="218.1" stroke-width="1.6"/>
<ellipse rx="10.8" ry="12.9" transform="matrix(.3 0 0 .3 447 -238.8)" cy="356.8" cx="218.1" stroke-width="1.5"/>
<ellipse rx="10.8" ry="12.9" transform="matrix(.3 0 0 .3 448.1 -241.6)" cy="356.8" cx="218.1" stroke-width="1.6"/>
<ellipse rx="10.8" ry="12.9" transform="matrix(.4 0 0 .3 432.8 -243.5)" cy="356.8" cx="218.1" stroke-width="1.5"/>
<ellipse rx="10.8" ry="12.9" transform="matrix(.4 0 0 .3 445.9 -243.5)" cy="356.8" cx="218.1" stroke-width="1.6"/>
<ellipse rx="10.8" ry="12.9" transform="matrix(.3 0 0 .3 444.2 -247)" cy="356.8" cx="218.1" stroke-width="1.6"/>
<ellipse rx="10.8" ry="12.9" transform="matrix(.3 0 0 .3 436.1 -243.2)" cy="356.8" cx="218.1" stroke-width="1.5"/>
<ellipse rx="10.8" ry="12.9" transform="matrix(.3 0 0 .3 437.4 -243.9)" cy="356.8" cx="218.1" stroke-width="1.6"/>
<ellipse rx="10.8" ry="12.9" transform="matrix(.3 0 0 .3 439 -247)" cy="356.8" cx="218.1" stroke-width="1.6"/>
</g>
<g stroke="#000" fill="#009200" transform="matrix(.2 0 0 .2 421 -216.8)">
<ellipse rx="67.4" ry="205.6" transform="matrix(1 -.3 .4 .9 -245.8 324.4)" cy="564.5" cx="528.7" stroke-width="2.5"/>
<ellipse rx="13.3" ry="40.8" transform="rotate(-23.4 630.5 660.9)" cy="646.1" cx="528.7" stroke-width="2.5"/>
<path d="M140 644c0 57.7-19 86.2-34.7 110.3 7.5-32.5 13-52.6 13-110.3 0-57.7 29.5-85.3 40.3-102-4.2 16.7-18.7 44.3-18.7 102z" transform="matrix(1.9 -.5 .9 1.2 -352.3 -10)" stroke-width="1.5"/>
<path d="M140 644c0 57.7-19 86.2-34.7 110.3 7.5-32.5 13-52.6 13-110.3 0-57.7 29.5-85.3 40.3-102-4.2 16.7-18.7 44.3-18.7 102z" transform="matrix(1.9 -.5 .9 1.2 -348.4 44.1)" stroke-width="1.5"/>
<path d="M140 644c0 57.7-19 86.2-34.7 110.3 7.5-32.5 13-52.6 13-110.3 0-57.7 29.5-85.3 40.3-102-4.2 16.7-18.7 44.3-18.7 102z" transform="matrix(1.9 -.5 1 1.2 -361.9 105.8)" stroke-width="1.5"/>
<ellipse rx="13.3" ry="40.8" transform="matrix(1.8 -.4 .7 1.6 -915.6 -221)" cy="646.1" cx="528.7" stroke-width="1.4"/>
<ellipse rx="13.3" ry="40.8" transform="matrix(1.6 -.2 .5 1.4 -739.5 -91.8)" cy="646.1" cx="528.7" stroke-width="1.6"/>
<ellipse rx="13.3" ry="40.8" transform="matrix(1.6 -.2 .5 1.4 -750.6 -91.8)" cy="646.1" cx="528.7" stroke-width="1.6"/>
<ellipse rx="13.3" ry="40.8" transform="matrix(1.3 -.2 .5 1 -531.1 47.6)" cy="646.1" cx="528.7" stroke-width="2.1"/>
<ellipse rx="13.3" ry="40.8" transform="matrix(1.3 -.1 .4 1 -517.9 12.2)" cy="646.1" cx="528.7" stroke-width="2.1"/>
<path d="M145.7 569.5c0 34-6.7 61.6-15 61.6s-15-27-15-61" transform="matrix(1 -.5 .5 1.2 12.8 -14.5)" stroke-width="2.1"/>
<ellipse rx="13.3" ry="40.8" transform="matrix(1.3 -.1 .4 1 -519.5 -34.4)" cy="646.1" cx="528.7" stroke-width="2.1"/>
<ellipse rx="13.3" ry="40.8" transform="matrix(1.3 -.1 .4 1 -534 -40.1)" cy="646.1" cx="528.7" stroke-width="2.1"/>
<path d="M145.7 569.5c0 34-6.7 61.6-15 61.6s-15-27-15-61" transform="matrix(.7 -.5 .5 .8 39.5 143.3)" stroke-width="2.9"/>
<path d="M145.7 569.5c0 34-6.7 61.6-15 61.6s-15-27-15-61" transform="matrix(.7 -.5 .5 .8 51.1 125.8)" stroke-width="2.9"/>
<path d="M145.7 569.5c0 34-6.7 61.6-15 61.6s-15-27-15-61" transform="matrix(.9 -.6 .6 1.1 -40.2 -10.7)" stroke-width="2.1"/>
<path d="M145.7 569.5c0 34-6.7 61.6-15 61.6s-15-27-15-61" transform="matrix(.7 -.5 .5 .9 68.6 71.2)" stroke-width="2.7"/>
</g>
<g stroke="#000" stroke-width=".5" fill="#804bff">
<path d="M513.2-145.2c-2.5 1.8 0 5 2.4 6 2.6 1.7 17.3 11.8 27.2 2.5-8 .2-23.7-12.6-29.6-8.5z"/>
<path d="M512-151c-2.6 1.7 0 5 2.3 6 2.6 1.6 17.3 11.7 27.2 2.4-8 .2-23.7-12.6-29.6-8.5z"/>
<path d="M510-156.7c-2.4 1.8 0 5 2.5 6 2.6 1.7 17.3 11.8 27.2 2.5-8 .2-23.7-12.6-29.6-8.5z"/>
<path d="M506.2-163c-2.5 1.7 0 5 2.4 6 2.6 1.6 17.3 11.7 27.2 2.4-8 .2-23.7-12.6-29.6-8.5z"/>
</g>
<g transform="rotate(1 -589.6 681.6)">
<path d="M211.2 247.3c21.7-12 56.6-9.8 79.7 11.2 19 17 45 75.2 70 92.8-20 0-32-5.8-42-15.2-29 16-38 17-64 16-36-1-63-17-68-40-7-21 4-52 24-63z" transform="matrix(.2 0 .1 .2 407.8 -213.6)" stroke="#000" stroke-width="2.5" fill="#804bff"/>
<ellipse rx="14.2" ry="15" stroke="#000" transform="matrix(.3 0 0 .1 401.8 -215.2)" cy="323" cx="287.2" stroke-width="2.5" fill="red"/>
<ellipse rx="23.3" ry="15.9" stroke="#000" transform="matrix(.2 -.1 .1 .2 398.7 -208.1)" cy="348.3" cx="204.6" stroke-width="2.5" fill="#ff0"/>
<ellipse rx="5.8" ry="5.8" transform="matrix(.2 0 0 .2 411.3 -233.7)" cy="333.9" cx="283.9"/>
<path d="M469.6-165.5c.4 1.8-.7 4.3-3.3 5.3-2.7 1.3-4.6 4.2-5.6 8.8-4.7-10.3-2.3-14.8 2-16 3.8-1.5 6-1.4 7 2z" stroke="#000" stroke-width=".7" fill="#ff0"/>
<ellipse rx="4.7" ry="4.7" transform="matrix(.2 0 0 .2 418.7 -235)" cy="362.4" cx="199"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 415 KiB

View File

@@ -0,0 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<path fill="#fff" d="M320 0h320v480H320z"/>
<path fill="#006233" d="M0 0h320v480H0z"/>
<path d="M424 180a120 120 0 1 0 0 120 96 96 0 1 1 0-120m4 60l-108-35.2 67.2 92V183.2l-67.2 92z" fill="#d21034"/>
</svg>

After

Width:  |  Height:  |  Size: 301 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 38 KiB

View File

@@ -0,0 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<g fill-rule="evenodd" stroke-width="1pt">
<rect rx="0" ry="0" height="477.9" width="640"/>
<rect rx="0" ry="0" height="159.3" width="640" y="320.7" fill="#fff"/>
<path fill="#1291ff" d="M0 0h640v159.3H0z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 324 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 12 KiB

View File

@@ -0,0 +1,15 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<defs>
<clipPath id="a">
<path fill-opacity=".67" d="M-158.67 0H524v512h-682.67z"/>
</clipPath>
</defs>
<g clip-path="url(#a)" fill-rule="evenodd" transform="translate(148.75) scale(.94)">
<path d="M-180 0H844v256H-180z"/>
<path fill="#107b00" d="M-180 256H844v256H-180z"/>
<path fill="#fff" d="M-180 169.31H844v176.13H-180z"/>
<path d="M309.98 195.55c-45.202-19.423-84.107 20.644-84.063 58.085.046 39.158 38.02 80.92 86.168 62.43-34.087-10.037-48.156-35.215-48.15-60.68-.245-25.216 15.887-54.54 46.045-59.835z" fill="#f0f"/>
<path fill="#ff1800" d="M363.145 294.214l-25.835-18.868-25.993 18.898 9.963-30.403-26-18.87 31.984.07 9.93-30.552 9.816 30.435 32.115.005-25.924 18.735"/>
<path d="M314.34 315.65c-50.517 17.536-88.554-20.48-89.216-59.456-.66-38.976 37.59-79.167 89.473-60.865-29.355 4.352-50.912 30.08-51.17 59.168-.196 21.994 12.812 53.345 50.913 61.152zM-179.98 0l348.61 256.62L-180 512l.002-509.38.015-2.622z" fill="red"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1,8 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<g fill-rule="evenodd">
<path fill="#be0027" d="M-.002 0h640.008v480H-.002z"/>
<path d="M-.002 480l640.008-.3-.032-239.7L-.002 480z" fill="#b4d7f4"/>
<path d="M-.002 0l640.008.3-.032 239.7L-.002 0z" fill="#239e46"/>
<path d="M186.23 360.4c-10.713 2.958-16.854 11.27-16.697 19.11l52.73-.21c.475-8.427-6.457-16.22-17.01-19.29 51.627-1.065 96.478-20.404 104.63-32.813-8.066-3.5-17.392 2.134-24.04.837 15.784-7.295 63.073-37.903 55.384-70.717-5.976 18.226-24.08 33.306-31.79 37.354 17.664-26.822 41.785-54.748 20.858-76.373 1.057 12.533-7.965 26.327-11.95 27.364 10.248-28.34 20.025-63.925-2.177-87.383 2.916 8.48 1.738 32.396-2.276 33.47-1.236-19.27-4.525-59.807-24.82-59.23 6.445 5.738 9.266 21.4 9.41 37.22-4.626-10.838-9.883-18.998-21.126-27-9.095-17.444-25.28-31.897-41.464-42.25 1.817 12.696 3.32 22.713 21.048 35.882-9.243-.576-18.484-18.098-28.362-18.583-7.857-.38-14.024 7.12-26.864 2.805 1.422 4.238 7.412 6.115 8.676 9.25-2.75 1.9-9.28-.296-14.707-3.123 7.467 10.17 19.036 16.15 28.858 14.13 11.682-2.245 24.205-1.057 36.15 5.74-3.05 1.567-14.925 1.556-22.545.603 6.927 7.013 11.572 11.66 23.615 11.584 10.757-.07 16.397-5.74 19.16-2.228 6.746 7.993 11.286 15.984 16.93 25.397-12.467 1.377-8.708-14.1-22.593-22.016-7.8 16.148 8.973 35.29 20.39 43.245.155 12.136 1.93 22.29 7.077 31.53 3.47 6.515 7.956 13.184 6.264 27.887-6.835-4.98-13.515-21.768-11.058-35.096-8.555 2.333-11.9 17.377-7.867 24.95 3.012 5.764 5.022 16.798 1.548 21.73-3.384 4.595-3.74 4.08-3.695 13.943.12 5.9-3.175 12.88-8.545 17.745 1.12-4.158 2.4-11.312 1.158-15.784-4.245 7.2-14.893 14.652-18.246 22.392-3.293 7.76-4.128 21.198-20.062 24.297-20.5 4.068-27.575 7.62-40.766 13.018-1.464-10.02 2.917-30.912 11.295-29.72 8.18 1.455 32.98-8.546 24.108-29.44-1.753 6.586-7.598 13.012-13.917 13.297 6.828-8.858 19.013-18.03 13.08-32.872-3.3 6.31-8.488 13.88-16.355 18.14 8.434-16.162.98-20.997-9.036-7.685-3.783 5.135-6.068 15.427-8.47 28.497-3.935-10.63-3.675-24.623-8.337-35.985-4.87-12.287 6.463-15.532 11.796-14.546 13.057 3.486 34.88 3.484 33.258-18.088-5.64 7.297-15.53 9.55-26.21 6.924 11.995-8.76 21.466-25.234 8.1-33.836-.446 9.12-7.505 19.35-16.93 24.06-2.205-7.698-2.205-15.865-.314-24.82-5.262 5.538-9.105 17.064-12.162 30.166-.23-12.95 2.22-22.282 4.037-29.25 2.753-10.175 9.6-3.554 20.078-2.804 10.092.572 23.986-5.005 21.33-18.69-3.445 5.415-10.518 7.522-17.745 6.95 8.7-5.272 23.86-14.638 15.546-29.044-3.493 5.456-4.624 10.124-14.732 11.798 2.647-6.09 3.087-14.7 10.933-18.11-13.994-2.787-22.007 6.397-26.08 20.78-1.65-9.972-3.617-13.643-4.008-20.94 7.565-8.4 8.357-24.838-8.02-28.514-.973 8.48-.685 10.5 1.178 17.403-7.688-4.568-18.524-7.088-25.738-.63 4.888 5.275 12.453 9.918 24.113 4.166-2.754 9.01-9.918 7.468-19.762 4.032 6.017 11.302 13.61 13.31 21.99 12.007 4.388 11.568 4.58 20.357-8.24 37.203.592-10.47-.152-18.268-8.47-26.732-7.127-6.98-12.92.3-1.78 15.818-6.758-4.976-14.406-15.076-16.708-25.174-2.228 12.475-.222 27.178 6.684 35.42-3.268 3.492-6.982-.37-12.476-8.91 2.078 27.328 13.737 32.6 29.406 26.51.445 15 .445 28.888 1.336 47.007-9.136-13.142-20.718-22.946-27.18-25.396-2.004 7.353 5.572 16.93 9.804 22.277-6.46-1.337-20.496-12.03-20.496-12.03-1.412 12.18 14.334 23.467 24.506 28.516-11.955-.52-17.23-5.05-24.952-12.475.15 33.788 36.608 27.92 43.442 22.722.89 16.635 2.16 35.864 3.053 52.5-10.307-1.8-9.497-4.898-18.316-5.715-24.478-.954-43.895-29.384-50.325-50.297-1.845 3.442-.382 7.043-2.07 11.27-3.973-10.264-9.05-23.52-15.86-29.69 1.735 5.983 1.918 12.065 1.315 23.25-2.337-7.248-4.51-9.47-4.667-17.977.15-6.53 6.3-11.35 5.96-20.535-.252-6.706-6.37-21.242-7.27-32.495-2.96 11.582-4.82 23.79-9.357 30.96 2.255-12.367 1.532-20.902 5.346-29.226 4.404-8.763 8.15-16.586 5.217-25.43-2.813 3.416-1.845 6.52-8.912 14.818-1.535-9.025 9.138-23.47 19.496-29.277 7.306-3.85 16.515-17.617 10.516-27.053-6.87 4.934-9.955 11.6-19.66 22.99 6.923-27.06 24.91-34.138 46.44-34.23 4.765-.023 14.37-1.743 17.067-8.048-6.07 2.343-13.245 2.64-19.63 1.363 4.646-6.823 14.434-5.936 23.554-5.977 7.154-.034 18.322-1.004 22.837-11.193-8.727 3.78-22.337 4.567-30.906 1.89 13.628-7.062 34.975-7.822 45.924-17.088-12.48-9.315-43.706 2.168-63.43 15.696 5.512-5.04 14.225-13.983 19.032-21.202-10.787-5.172-38.068 25.05-47.466 43.008-8.927 5.04-12.497 12.943-15.963 18.457 4.756-16.073 5.26-27.736 9.228-40.97-30.6 10.532-17.88 67.068-24.536 80.594.784-14.933.15-34.116-6-44.008-9.423 7.19-10.184 49.51-1.335 84.74-3.196-9.43-9.226-18.23-11.16-29.705-13.95 25.44 8.175 55.454 26.677 79.162-13.93-7.255-27.7-22.86-36.747-35.94 2.496 45.532 50.046 54.992 57.427 66.183-10.02-4.664-29.173-13.892-37.3-4.223 13.23 3.055 23.785 6.586 32.29 12.16 12.34 15.407 35.707 22.145 76.403 23.847z" fill="#f3e295"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.7 KiB

View File

@@ -0,0 +1,578 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<path fill="#c60b1e" d="M0 0h640v480H0z"/>
<path fill="#ffc400" d="M0 120h640v240H0z"/>
<path d="M127.27 213.35s-.5 0-.76-.15c-.2-.16-1-.93-1-.93l-.6-.46-.6-.8s-.7-1.1-.3-2c.4-.9.9-1.2 1.4-1.4.5-.2 1.5-.5 1.5-.5l1.1-.4 1.3-.3.6-.2.9-.1c.2 0 .8-.2 1.1-.2.5 0 1.3.1 1.6.1.3 0 1.2.1 1.6.1.4 0 1.7-.1 2.1-.1h1.1c.4.1 1.2.3 1.4.4.2.1 1.5.6 2 .8.5.2 1.7.4 2.2.6.5.3.9.7 1.1 1.1.3.4.3.8.5 1 .1.3.1.9 0 1.1-.1.3-.5.8-.5.8l-.6 1-.7.6s-.5.6-1 .5c-.4 0-4.8-.8-7.6-.8s-7.3.8-7.3.8" fill="#ad1519"/>
<path d="M127.27 213.35s-.5 0-.76-.15c-.2-.16-1-.93-1-.93l-.6-.46-.6-.8s-.7-1.1-.3-2c.4-.9.9-1.2 1.4-1.4.5-.2 1.5-.5 1.5-.5l1.1-.4 1.3-.3.6-.2.9-.1c.2 0 .8-.2 1.1-.2.5 0 1.3.1 1.6.1.3 0 1.2.1 1.6.1.4 0 1.7-.1 2.1-.1h1.1c.4.1 1.2.3 1.4.4.2.1 1.5.6 2 .8.5.2 1.7.4 2.2.6.5.3.9.7 1.1 1.1.3.4.3.8.5 1 .1.3.1.9 0 1.1-.1.3-.5.8-.5.8l-.6 1-.7.6s-.5.6-1 .5c-.4 0-4.8-.8-7.6-.8s-7.3.8-7.3.8z" fill="none" stroke="#000" stroke-width=".25" stroke-linejoin="round"/>
<path d="M133.3 207.06c0-1.33.6-2.4 1.33-2.4.73 0 1.33 1.07 1.33 2.4 0 1.3-.6 2.4-1.33 2.4s-1.32-1.1-1.32-2.4" fill="#c8b100"/>
<path d="M133.3 207.06c0-1.33.6-2.4 1.33-2.4.73 0 1.33 1.07 1.33 2.4 0 1.3-.6 2.4-1.33 2.4s-1.32-1.1-1.32-2.4z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M134.05 207.06c0-1.22.27-2.2.6-2.2.34 0 .6.98.6 2.2 0 1.2-.26 2.2-.6 2.2-.33 0-.6-1-.6-2.2" fill="#c8b100"/>
<path d="M134.05 207.06c0-1.22.27-2.2.6-2.2.34 0 .6.98.6 2.2 0 1.2-.26 2.2-.6 2.2-.33 0-.6-1-.6-2.2z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M133.76 204.52c0-.46.4-.84.9-.84s.87.38.87.84c0 .47-.4.84-.88.84s-.9-.37-.9-.84" fill="#c8b100"/>
<path d="M135.27 204.23v.55h-1.37v-.55h.45v-1.26h-.6v-.56h.6v-.5h.58v.6h.6v.6h-.6v1.3h.34" fill="#c8b100"/>
<path d="M135.27 204.23v.55h-1.37v-.55h.45v-1.26h-.6v-.56h.6v-.5h.58v.6h.6v.6h-.6v1.3h.34" fill="none" stroke="#000" stroke-width=".29"/>
<path d="M135.9 204.23v.55h-2.45v-.55h.9v-1.26h-.6v-.56h.6v-.5h.58v.6h.6v.6h-.6v1.3h.95" fill="#c8b100"/>
<path d="M135.9 204.23v.55h-2.45v-.55h.9v-1.26h-.6v-.56h.6v-.5h.58v.6h.6v.6h-.6v1.3h.95" fill="none" stroke="#000" stroke-width=".29"/>
<path d="M134.9 203.72c.37.1.63.42.63.8 0 .47-.4.84-.88.84s-.9-.37-.9-.84c0-.4.3-.72.67-.8" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M134.65 213.2h-4.6l-.12-1.13-.22-1.18-.2-1.5c-1.2-1.7-2.4-2.8-2.8-2.6.1-.3.2-.6.5-.7 1.2-.7 3.5.9 5.3 3.6l.5.7h3.8l.5-.7c1.8-2.7 4.1-4.3 5.3-3.6.3.1.4.4.5.7-.4-.3-1.5.8-2.8 2.5l-.2 1.4-.2 1.2-.1 1.1H135" fill="#c8b100"/>
<path d="M134.65 213.2h-4.6l-.12-1.13-.22-1.18-.2-1.5c-1.2-1.7-2.4-2.8-2.8-2.6.1-.3.2-.6.5-.7 1.2-.7 3.5.9 5.3 3.6l.5.7h3.8l.5-.7c1.8-2.7 4.1-4.3 5.3-3.6.3.1.4.4.5.7-.4-.3-1.5.8-2.8 2.5l-.2 1.4-.2 1.2-.1 1.1H135z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M126.85 206.83c.87-.5 2.9 1.1 4.54 3.6m11-3.6c-.9-.5-2.9 1.1-4.6 3.6" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M127.83 215.28c-.2-.55-.55-1.04-.55-1.04 1.87-.55 4.47-.9 7.36-.9 2.9 0 5.52.35 7.38.9l-.5.88c-.16.28-.37.78-.35.78-1.7-.52-3.87-.8-6.54-.8s-5.24.34-6.58.83l-.23-.65" fill="#c8b100"/>
<path d="M127.83 215.28c-.2-.55-.55-1.04-.55-1.04 1.87-.55 4.47-.9 7.36-.9 2.9 0 5.52.35 7.38.9l-.5.88c-.16.28-.37.78-.35.78-1.7-.52-3.87-.8-6.54-.8s-5.24.34-6.58.83l-.23-.65" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M134.64 217.66c2.34 0 4.9-.36 5.86-.6.64-.2 1-.48.94-.8-.03-.16-.17-.3-.36-.38-1.4-.44-3.9-.76-6.44-.77-2.53.1-5.05.4-6.45.8-.2.1-.4.2-.4.4-.1.4.3.6.9.8.9.3 3.5.6 5.8.6" fill="#c8b100"/>
<path d="M134.64 217.66c2.34 0 4.9-.36 5.86-.6.64-.2 1-.48.94-.8-.03-.16-.17-.3-.36-.38-1.4-.44-3.9-.76-6.44-.77-2.53.1-5.05.4-6.45.8-.2.1-.4.2-.4.4-.1.4.3.6.9.8.9.3 3.5.6 5.8.6z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M142.14 213.2l-.57-.52s-.54.34-1.22.23c-.68-.1-.9-.9-.9-.9s-.75.7-1.38.6c-.62 0-1.03-.6-1.03-.6s-.67.5-1.27.5-1.17-.8-1.17-.8-.6.8-1.2.8c-.6.1-1.08-.5-1.08-.5s-.27.6-1.03.7c-.8.2-1.5-.6-1.5-.6s-.5.7-1 .9c-.5.2-1.2-.2-1.2-.2l-.2.4c-.1.2-.3.2-.3.2l.1.5c1.8-.5 4.4-.8 7.2-.8s5.4.4 7.3.9l.2-.5" fill="#c8b100"/>
<path d="M142.14 213.2l-.57-.52s-.54.34-1.22.23c-.68-.1-.9-.9-.9-.9s-.75.7-1.38.6c-.62 0-1.03-.6-1.03-.6s-.67.5-1.27.5-1.17-.8-1.17-.8-.6.8-1.2.8c-.6.1-1.08-.5-1.08-.5s-.27.6-1.03.7c-.8.2-1.5-.6-1.5-.6s-.5.7-1 .9c-.5.2-1.2-.2-1.2-.2l-.2.4c-.1.2-.3.2-.3.2l.1.5c1.8-.5 4.4-.8 7.2-.8s5.4.4 7.3.9l.2-.5z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M134.66 210.7l.27.06a.98.98 0 0 0-.06.36c0 .56.48 1 1.08 1 .47 0 .87-.28 1-.7.03.02.12-.35.16-.35.1 0 .1.4.1.4.1.5.6.84 1.1.84.6 0 1.1-.4 1.1-1v-.1l.4-.3.2.5c-.1.2-.1.3-.1.5 0 .6.5 1 1 1 .4 0 .7-.1.9-.4l.2-.3v.4c0 .4.2.7.5.7 0 0 .4.1.9-.3s.8-.7.8-.7v.4s-.5.9-.9 1.1c-.2.2-.6.3-.9.3-.3 0-.5-.2-.6-.5-.2.2-.4.2-.7.2-.6 0-1.1-.3-1.3-.8-.3.3-.6.5-1.1.5a1.56 1.56 0 0 1-1.2-.5 1.55 1.55 0 0 1-1 .4 1.56 1.56 0 0 1-1.3-.6c-.2.4-.7.7-1.2.7-.4 0-.7-.1-1-.4a1.56 1.56 0 0 1-1.2.6 1.5 1.5 0 0 1-1.1-.5c-.2.5-.7.9-1.3.9-.2 0-.5-.1-.7-.2-.1.3-.3.6-.6.6-.3.1-.7-.1-.9-.2-.5-.2-1-1-1-1l.1-.4s.3.3.8.7c.5.4.9.3.9.3.3 0 .4-.3.4-.7v-.3l.2.3c.2.3.5.5.9.5.6 0 1-.4 1-1a.9.9 0 0 0-.1-.4l.2-.4.4.3a.7.7 0 0 0 0 .1c0 .5.5 1 1.1 1 .5 0 1-.4 1.1-.9.1 0 0-.4.1-.4l.1.4c.2.4.6.7 1 .7.6 0 1.1-.5 1.1-1a.9.9 0 0 0-.1-.4h.3" fill="#c8b100"/>
<path d="M134.66 210.7l.27.06a.98.98 0 0 0-.06.36c0 .56.48 1 1.08 1 .47 0 .87-.28 1-.7.03.02.12-.35.16-.35.1 0 .1.4.1.4.1.5.6.84 1.1.84.6 0 1.1-.4 1.1-1v-.1l.4-.3.2.5c-.1.2-.1.3-.1.5 0 .6.5 1 1 1 .4 0 .7-.1.9-.4l.2-.3v.4c0 .4.2.7.5.7 0 0 .4.1.9-.3s.8-.7.8-.7v.4s-.5.9-.9 1.1c-.2.2-.6.3-.9.3-.3 0-.5-.2-.6-.5-.2.2-.4.2-.7.2-.6 0-1.1-.3-1.3-.8-.3.3-.6.5-1.1.5a1.56 1.56 0 0 1-1.2-.5 1.55 1.55 0 0 1-1 .4 1.56 1.56 0 0 1-1.3-.6c-.2.4-.7.7-1.2.7-.4 0-.7-.1-1-.4a1.56 1.56 0 0 1-1.2.6 1.5 1.5 0 0 1-1.1-.5c-.2.5-.7.9-1.3.9-.2 0-.5-.1-.7-.2-.1.3-.3.6-.6.6-.3.1-.7-.1-.9-.2-.5-.2-1-1-1-1l.1-.4s.3.3.8.7c.5.4.9.3.9.3.3 0 .4-.3.4-.7v-.3l.2.3c.2.3.5.5.9.5.6 0 1-.4 1-1a.9.9 0 0 0-.1-.4l.2-.4.4.3a.7.7 0 0 0 0 .1c0 .5.5 1 1.1 1 .5 0 1-.4 1.1-.9.1 0 0-.4.1-.4l.1.4c.2.4.6.7 1 .7.6 0 1.1-.5 1.1-1a.9.9 0 0 0-.1-.4h.3z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M134.64 213.34c-2.9 0-5.5.35-7.36.9-.12.04-.28-.05-.32-.16-.04-.12.05-.27.18-.3 1.87-.58 4.54-.94 7.5-.95 2.97 0 5.64.37 7.52.94.12.04.2.2.17.3-.03.12-.2.22-.3.18-1.88-.56-4.5-.9-7.4-.9" fill="#c8b100"/>
<path d="M134.64 213.34c-2.9 0-5.5.35-7.36.9-.12.04-.28-.05-.32-.16-.04-.12.05-.27.18-.3 1.87-.58 4.54-.94 7.5-.95 2.97 0 5.64.37 7.52.94.12.04.2.2.17.3-.03.12-.2.22-.3.18-1.88-.56-4.5-.9-7.4-.9z" fill="none" stroke="#000" stroke-width=".25" stroke-linejoin="round"/>
<path d="M131.84 214.37c0-.22.2-.4.42-.4.24 0 .42.18.42.4 0 .22-.18.4-.42.4-.23 0-.42-.18-.42-.4" fill="#fff"/>
<path d="M131.84 214.37c0-.22.2-.4.42-.4.24 0 .42.18.42.4 0 .22-.18.4-.42.4-.23 0-.42-.18-.42-.4z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M134.68 214.54h-.93c-.17 0-.32-.13-.32-.3 0-.16.14-.3.3-.3h1.9a.3.3 0 0 1 .3.3c0 .17-.13.3-.3.3h-.95" fill="#ad1519"/>
<path d="M134.68 214.54h-.93c-.17 0-.32-.13-.32-.3 0-.16.14-.3.3-.3h1.9a.3.3 0 0 1 .3.3c0 .17-.13.3-.3.3h-.95" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M130 214.86l-.65.1c-.17.02-.34-.1-.36-.25a.3.3 0 0 1 .2-.3l.6-.1.7-.1c.1 0 .3.1.3.3a.3.3 0 0 1-.3.4l-.7.1" fill="#058e6e"/>
<path d="M130 214.86l-.65.1c-.17.02-.34-.1-.36-.25a.3.3 0 0 1 .2-.3l.6-.1.7-.1c.1 0 .3.1.3.3a.3.3 0 0 1-.3.4l-.7.1" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M127.33 215.33l.3-.48.62.12-.37.54-.55-.1" fill="#ad1519"/>
<path d="M127.33 215.33l.3-.48.62.12-.37.54-.55-.1" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M136.6 214.37c0-.22.2-.4.43-.4.23 0 .42.18.42.4a.4.4 0 0 1-.42.4c-.23 0-.42-.18-.42-.4" fill="#fff"/>
<path d="M136.6 214.37c0-.22.2-.4.43-.4.23 0 .42.18.42.4a.4.4 0 0 1-.42.4c-.23 0-.42-.18-.42-.4z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M139.28 214.86l.67.1a.3.3 0 0 0 .35-.25.3.3 0 0 0-.25-.3l-.68-.1-.68-.1c-.2 0-.4.1-.4.3-.1.2.1.3.2.4l.6.1" fill="#058e6e"/>
<path d="M139.28 214.86l.67.1a.3.3 0 0 0 .35-.25.3.3 0 0 0-.25-.3l-.68-.1-.68-.1c-.2 0-.4.1-.4.3-.1.2.1.3.2.4l.6.1" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M141.9 215.36l-.23-.5-.64.04.3.57.58-.1" fill="#ad1519"/>
<path d="M141.9 215.36l-.23-.5-.64.04.3.57.58-.1" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M134.64 217.12c-2.34 0-4.45-.2-6.06-.63 1.6-.5 3.72-.7 6.06-.7 2.33 0 4.46.2 6.07.6-1.6.4-3.7.6-6 .6" fill="#ad1519"/>
<path d="M134.64 217.12c-2.34 0-4.45-.2-6.06-.63 1.6-.5 3.72-.7 6.06-.7 2.33 0 4.46.2 6.07.6-1.6.4-3.7.6-6 .6z" fill="none" stroke="#000" stroke-width=".25" stroke-linejoin="round"/>
<path d="M142 212.05c.06-.18 0-.36-.12-.4-.13-.04-.3.08-.35.25-.06.18 0 .36.13.4.13.04.28-.07.35-.25" fill="#c8b100"/>
<path d="M142 212.05c.06-.18 0-.36-.12-.4-.13-.04-.3.08-.35.25-.06.18 0 .36.13.4.13.04.28-.07.35-.25z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M137.35 211.15c.02-.2-.07-.35-.2-.37-.14-.02-.27.12-.3.3 0 .2.08.37.2.38.15.02.28-.13.3-.3" fill="#c8b100"/>
<path d="M137.35 211.15c.02-.2-.07-.35-.2-.37-.14-.02-.27.12-.3.3 0 .2.08.37.2.38.15.02.28-.13.3-.3z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M131.95 211.15c-.02-.2.07-.35.2-.37.14-.02.27.12.3.3.02.2-.07.37-.2.38-.14.02-.27-.13-.3-.3" fill="#c8b100"/>
<path d="M131.95 211.15c-.02-.2.07-.35.2-.37.14-.02.27.12.3.3.02.2-.07.37-.2.38-.14.02-.27-.13-.3-.3z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M127.3 212.05c-.06-.18 0-.36.13-.4.13-.04.28.08.35.25.06.18 0 .36-.13.4-.13.04-.3-.07-.35-.25" fill="#c8b100"/>
<path d="M127.3 212.05c-.06-.18 0-.36.13-.4.13-.04.28.08.35.25.06.18 0 .36-.13.4-.13.04-.3-.07-.35-.25z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M134.64 208.46l-.83.5.7 1.33.2.1.2-.2.6-1.4-.8-.5" fill="#c8b100"/>
<path d="M134.64 208.46l-.83.5.7 1.33.2.1.2-.2.6-1.4-.8-.5" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M132.83 210.47l.38.54 1.3-.3.2-.2-.1-.2-1.3-.3-.3.6" fill="#c8b100"/>
<path d="M132.83 210.47l.38.54 1.3-.3.2-.2-.1-.2-1.3-.3-.3.6" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M136.45 210.47l-.37.54-1.3-.3-.13-.2.14-.2 1.2-.3.3.6" fill="#c8b100"/>
<path d="M136.45 210.47l-.37.54-1.3-.3-.13-.2.14-.2 1.2-.3.3.6" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M129.28 209.05l-.65.6.83 1.1.22.1.16-.17.3-1.32-.86-.3" fill="#c8b100"/>
<path d="M129.28 209.05l-.65.6.83 1.1.22.1.16-.17.3-1.32-.86-.3" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M127.92 211.24l.5.46 1.16-.64.1-.2-.18-.15-1.34-.1-.24.7" fill="#c8b100"/>
<path d="M127.92 211.24l.5.46 1.16-.64.1-.2-.18-.15-1.34-.1-.24.7" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M131.47 210.53l-.25.6-1.35-.12-.17-.1.1-.2 1.17-.6.5.5" fill="#c8b100"/>
<path d="M131.47 210.53l-.25.6-1.35-.12-.17-.1.1-.2 1.17-.6.5.5" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M126.63 211.4l-.1.65-1.35.14-.2-.2.04-.2 1-.9.6.4" fill="#c8b100"/>
<path d="M126.63 211.4l-.1.65-1.35.14-.2-.2.04-.2 1-.9.6.4" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M129.22 210.86c0-.25.2-.45.47-.45s.4.2.4.5a.46.46 0 0 1-.5.5.46.46 0 0 1-.5-.4" fill="#c8b100"/>
<path d="M129.22 210.86c0-.25.2-.45.47-.45s.4.2.4.5a.46.46 0 0 1-.5.5.46.46 0 0 1-.5-.4z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M140.02 209.05l.65.6-.83 1.1-.23.1-.1-.17-.3-1.32.9-.3" fill="#c8b100"/>
<path d="M140.02 209.05l.65.6-.83 1.1-.23.1-.1-.17-.3-1.32.9-.3" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M141.37 211.24l-.48.46-1.2-.64-.1-.2.2-.15 1.3-.1.2.7" fill="#c8b100"/>
<path d="M141.37 211.24l-.48.46-1.2-.64-.1-.2.2-.15 1.3-.1.2.7" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M137.83 210.53l.25.6 1.34-.12.18-.1-.1-.2-1.17-.6-.5.5" fill="#c8b100"/>
<path d="M137.83 210.53l.25.6 1.34-.12.18-.1-.1-.2-1.17-.6-.5.5" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M142.48 211.4l.12.65 1.34.14.2-.2-.05-.2-1.1-.9-.6.4" fill="#c8b100"/>
<path d="M142.48 211.4l.12.65 1.34.14.2-.2-.05-.2-1.1-.9-.6.4" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M134.17 210.44a.46.46 0 0 1 .47-.45c.27 0 .48.2.48.4a.46.46 0 0 1-.48.4.46.46 0 0 1-.47-.5" fill="#c8b100"/>
<path d="M134.17 210.44a.46.46 0 0 1 .47-.45c.27 0 .48.2.48.4a.46.46 0 0 1-.48.4.46.46 0 0 1-.47-.5z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M139.14 210.86c0-.25.22-.45.47-.45a.46.46 0 0 1 .5.5.46.46 0 0 1-.4.5.46.46 0 0 1-.5-.4" fill="#c8b100"/>
<path d="M139.14 210.86c0-.25.22-.45.47-.45a.46.46 0 0 1 .5.5.46.46 0 0 1-.4.5.46.46 0 0 1-.5-.4z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M124.8 212.16s-.35-.47-.62-.7c-.2-.17-.64-.3-.64-.3 0-.1.26-.3.55-.3a.54.54 0 0 1 .4.2v-.18s.2.04.3.3c.1.28 0 .7 0 .7s-.1.18-.2.28" fill="#c8b100"/>
<path d="M124.8 212.16s-.35-.47-.62-.7c-.2-.17-.64-.3-.64-.3 0-.1.26-.3.55-.3a.54.54 0 0 1 .4.2v-.18s.2.04.3.3c.1.28 0 .7 0 .7s-.1.18-.2.28z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M124.83 211.92c.1-.1.34-.1.5.06.2.14.24.36.13.48-.12.12-.35.1-.52-.06-.17-.14-.22-.36-.1-.48" fill="#c8b100"/>
<path d="M124.83 211.92c.1-.1.34-.1.5.06.2.14.24.36.13.48-.12.12-.35.1-.52-.06-.17-.14-.22-.36-.1-.48z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M144.3 212.16s.37-.47.63-.7c.18-.17.65-.3.65-.3 0-.1-.27-.3-.56-.3-.17 0-.33.08-.43.2l-.1-.18s-.3.04-.4.3c-.1.28-.1.7-.1.7s0 .18.1.28" fill="#c8b100"/>
<path d="M144.3 212.16s.37-.47.63-.7c.18-.17.65-.3.65-.3 0-.1-.27-.3-.56-.3-.17 0-.33.08-.43.2l-.1-.18s-.3.04-.4.3c-.1.28-.1.7-.1.7s0 .18.1.28z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M144.3 211.92c-.1-.1-.33-.1-.5.06-.18.14-.23.36-.12.48.12.12.35.1.52-.06.17-.14.22-.36.1-.48" fill="#c8b100"/>
<path d="M144.3 211.92c-.1-.1-.33-.1-.5.06-.18.14-.23.36-.12.48.12.12.35.1.52-.06.17-.14.22-.36.1-.48z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M124 223.07h21.4v-5.6H124v5.6z" fill="#c8b100"/>
<path d="M124 223.07h21.4v-5.6H124v5.6z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M126.24 226.8a.93.93 0 0 1 .4-.05h16.02c.16 0 .3.02.44.07-.55-.18-.95-.68-.95-1.26 0-.6.43-1.1.98-1.3-.12.05-.3.1-.46.1h-16.03a1.43 1.43 0 0 1-.45-.06c.5.2.9.7.9 1.26a1.33 1.33 0 0 1-1 1.25" fill="#c8b100"/>
<path d="M126.24 226.8a.93.93 0 0 1 .4-.05h16.02c.16 0 .3.02.44.07-.55-.18-.95-.68-.95-1.26 0-.6.43-1.1.98-1.3-.12.05-.3.1-.46.1h-16.03a1.43 1.43 0 0 1-.45-.06c.5.2.9.7.9 1.26a1.33 1.33 0 0 1-1 1.25z" fill="none" stroke="#000" stroke-width=".37" stroke-linejoin="round"/>
<path d="M126.64 226.75h16.02c.54 0 .98.33.98.75 0 .4-.44.75-.98.75h-16.02c-.54 0-.98-.34-.98-.76s.44-.8.98-.8" fill="#c8b100"/>
<path d="M126.64 226.75h16.02c.54 0 .98.33.98.75 0 .4-.44.75-.98.75h-16.02c-.54 0-.98-.34-.98-.76s.44-.8.98-.8z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M126.64 223.07h16.03c.54 0 1 .3 1 .64 0 .4-.46.7-1 .7h-16.03c-.55 0-.98-.3-.98-.6s.44-.6.98-.6" fill="#c8b100"/>
<path d="M126.64 223.07h16.03c.54 0 1 .3 1 .64 0 .4-.46.7-1 .7h-16.03c-.55 0-.98-.3-.98-.6s.44-.6.98-.6z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M149.63 317.45c-1.48 0-2.8-.3-3.77-.83-.97-.5-2.27-.8-3.7-.8-1.46 0-2.8.3-3.76.8-.97.52-2.3.83-3.77.83-1.48 0-2.8-.35-3.77-.86-.96-.5-2.24-.8-3.64-.8-1.45 0-2.74.2-3.7.8-.98.5-2.33.8-3.8.8v2.3c1.48 0 2.82-.3 3.8-.9.96-.5 2.25-.8 3.7-.8 1.4 0 2.68.3 3.64.7.97.5 2.3.9 3.77.9 1.46 0 2.8-.3 3.77-.8.96-.5 2.3-.8 3.75-.8 1.44 0 2.74.3 3.7.8.98.5 2.28.8 3.76.8l.1-2.3" fill="#005bbf"/>
<path d="M149.63 317.45c-1.48 0-2.8-.3-3.77-.83-.97-.5-2.27-.8-3.7-.8-1.46 0-2.8.3-3.76.8-.97.52-2.3.83-3.77.83-1.48 0-2.8-.35-3.77-.86-.96-.5-2.24-.8-3.64-.8-1.45 0-2.74.2-3.7.8-.98.5-2.33.8-3.8.8v2.3c1.48 0 2.82-.3 3.8-.9.96-.5 2.25-.8 3.7-.8 1.4 0 2.68.3 3.64.7.97.5 2.3.9 3.77.9 1.46 0 2.8-.3 3.77-.8.96-.5 2.3-.8 3.75-.8 1.44 0 2.74.3 3.7.8.98.5 2.28.8 3.76.8l.1-2.3z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M149.63 319.77c-1.48 0-2.8-.32-3.77-.83-.97-.5-2.27-.8-3.7-.8-1.46 0-2.8.3-3.76.8-.97.5-2.3.83-3.77.83-1.48 0-2.8-.35-3.77-.87-.96-.47-2.24-.76-3.64-.76-1.45 0-2.74.28-3.7.78-.98.5-2.33.85-3.8.85v2.3c1.48 0 2.82-.32 3.8-.83.96-.5 2.25-.8 3.7-.8 1.4 0 2.68.3 3.64.78.97.5 2.3.86 3.77.86 1.46 0 2.8-.32 3.77-.83.96-.5 2.3-.8 3.75-.8 1.44 0 2.74.3 3.7.8.98.52 2.28.83 3.76.83l.1-2.3" fill="#ccc"/>
<path d="M149.63 319.77c-1.48 0-2.8-.32-3.77-.83-.97-.5-2.27-.8-3.7-.8-1.46 0-2.8.3-3.76.8-.97.5-2.3.83-3.77.83-1.48 0-2.8-.35-3.77-.87-.96-.47-2.24-.76-3.64-.76-1.45 0-2.74.28-3.7.78-.98.5-2.33.85-3.8.85v2.3c1.48 0 2.82-.32 3.8-.83.96-.5 2.25-.8 3.7-.8 1.4 0 2.68.3 3.64.78.97.5 2.3.86 3.77.86 1.46 0 2.8-.32 3.77-.83.96-.5 2.3-.8 3.75-.8 1.44 0 2.74.3 3.7.8.98.52 2.28.83 3.76.83l.1-2.3" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M149.63 322.08c-1.48 0-2.8-.32-3.77-.83-.97-.5-2.27-.8-3.7-.8-1.46 0-2.8.3-3.76.8-.97.5-2.3.83-3.77.83-1.48 0-2.8-.35-3.77-.86-.96-.48-2.24-.77-3.64-.77-1.45 0-2.74.28-3.7.8-.98.5-2.33.83-3.8.83v2.3c1.48 0 2.82-.32 3.8-.84.96-.5 2.25-.77 3.7-.77 1.4 0 2.68.3 3.64.76.97.52 2.3.86 3.77.86 1.46 0 2.8-.4 3.77-.9.96-.5 2.3-.8 3.75-.8 1.44 0 2.74.3 3.7.8.98.5 2.28.8 3.76.8l.1-2.3" fill="#005bbf"/>
<path d="M149.63 322.08c-1.48 0-2.8-.32-3.77-.83-.97-.5-2.27-.8-3.7-.8-1.46 0-2.8.3-3.76.8-.97.5-2.3.83-3.77.83-1.48 0-2.8-.35-3.77-.86-.96-.48-2.24-.77-3.64-.77-1.45 0-2.74.28-3.7.8-.98.5-2.33.83-3.8.83v2.3c1.48 0 2.82-.32 3.8-.84.96-.5 2.25-.77 3.7-.77 1.4 0 2.68.3 3.64.76.97.52 2.3.86 3.77.86 1.46 0 2.8-.4 3.77-.9.96-.5 2.3-.8 3.75-.8 1.44 0 2.74.3 3.7.8.98.5 2.28.8 3.76.8l.1-2.3" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M149.6 326.7c-1.47 0-2.77-.3-3.74-.83-.97-.5-2.27-.8-3.7-.8-1.46 0-2.8.3-3.76.8-.97.52-2.3.84-3.77.84-1.48 0-2.8-.3-3.77-.8-.96-.4-2.24-.7-3.64-.7-1.45 0-2.74.3-3.7.8-.98.6-2.33.9-3.8.9v-2.3c1.48 0 2.82-.3 3.8-.8.96-.5 2.25-.7 3.7-.7 1.4 0 2.68.3 3.64.8.97.6 2.3.9 3.77.9 1.46 0 2.8-.3 3.77-.8.96-.5 2.3-.8 3.75-.8 1.44 0 2.74.3 3.7.8.98.5 2.3.9 3.78.9l-.02 2.3" fill="#ccc"/>
<path d="M149.6 326.7c-1.47 0-2.77-.3-3.74-.83-.97-.5-2.27-.8-3.7-.8-1.46 0-2.8.3-3.76.8-.97.52-2.3.84-3.77.84-1.48 0-2.8-.3-3.77-.8-.96-.4-2.24-.7-3.64-.7-1.45 0-2.74.3-3.7.8-.98.6-2.33.9-3.8.9v-2.3c1.48 0 2.82-.3 3.8-.8.96-.5 2.25-.7 3.7-.7 1.4 0 2.68.3 3.64.8.97.6 2.3.9 3.77.9 1.46 0 2.8-.3 3.77-.8.96-.5 2.3-.8 3.75-.8 1.44 0 2.74.3 3.7.8.98.5 2.3.9 3.78.9l-.02 2.3" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M149.6 329.02c-1.47 0-2.77-.32-3.74-.83-.97-.5-2.27-.8-3.7-.8-1.46 0-2.8.3-3.76.8-.97.5-2.3.8-3.77.8-1.48 0-2.8-.4-3.77-.9-.96-.5-2.24-.8-3.64-.8-1.45 0-2.74.2-3.7.7-.98.5-2.33.8-3.8.8v-2.3c1.48 0 2.82-.4 3.8-.9.96-.5 2.25-.8 3.7-.8 1.4 0 2.68.3 3.64.7.97.5 2.3.8 3.77.8 1.46 0 2.8-.3 3.77-.8.96-.5 2.3-.8 3.75-.8 1.44 0 2.74.3 3.7.8.98.5 2.3.8 3.77.8v2.4" fill="#005bbf"/>
<path d="M149.6 329.02c-1.47 0-2.77-.32-3.74-.83-.97-.5-2.27-.8-3.7-.8-1.46 0-2.8.3-3.76.8-.97.5-2.3.8-3.77.8-1.48 0-2.8-.4-3.77-.9-.96-.5-2.24-.8-3.64-.8-1.45 0-2.74.2-3.7.7-.98.5-2.33.8-3.8.8v-2.3c1.48 0 2.82-.4 3.8-.9.96-.5 2.25-.8 3.7-.8 1.4 0 2.68.3 3.64.7.97.5 2.3.8 3.77.8 1.46 0 2.8-.3 3.77-.8.96-.5 2.3-.8 3.75-.8 1.44 0 2.74.3 3.7.8.98.5 2.3.8 3.77.8v2.4z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M126.24 307.95c.05.2.13.4.13.6 0 1.4-1.22 2.52-2.7 2.52h22.02c-1.5 0-2.7-1.12-2.7-2.52v-.6a1.3 1.3 0 0 1-.4.05h-16c-.2 0-.3 0-.4-.05" fill="#c8b100"/>
<path d="M126.24 307.95c.05.2.13.4.13.6 0 1.4-1.22 2.52-2.7 2.52h22.02c-1.5 0-2.7-1.12-2.7-2.52v-.6a1.3 1.3 0 0 1-.4.05h-16c-.2 0-.3 0-.4-.05z" fill="none" stroke="#000" stroke-width=".37" stroke-linejoin="round"/>
<path d="M126.64 306.5h16.02c.54 0 .98.34.98.75 0 .42-.44.75-.98.75h-16.02c-.54 0-.98-.33-.98-.75 0-.4.44-.75.98-.75" fill="#c8b100"/>
<path d="M126.64 306.5h16.02c.54 0 .98.34.98.75 0 .42-.44.75-.98.75h-16.02c-.54 0-.98-.33-.98-.75 0-.4.44-.75.98-.75z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M123.7 316.67h21.96v-5.6H123.7v5.6z" fill="#c8b100"/>
<path d="M123.7 316.67h21.96v-5.6H123.7v5.6z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M121.98 286.67c-2.17 1.26-3.65 2.54-3.4 3.18.1.6.8 1.03 1.8 1.7 1.54 1.07 2.48 3 1.75 3.9 1.28-1.05 2.1-2.6 2.1-4.32 0-1.8-.86-3.42-2.25-4.46" fill="#ad1519"/>
<path d="M121.98 286.67c-2.17 1.26-3.65 2.54-3.4 3.18.1.6.8 1.03 1.8 1.7 1.54 1.07 2.48 3 1.75 3.9 1.28-1.05 2.1-2.6 2.1-4.32 0-1.8-.86-3.42-2.25-4.46z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M126.84 305.6h15.6v-76.46h-15.6v76.45z" fill="#ccc"/>
<path d="M137.97 229.24v76.3m1.75-76.3v76.3m-12.88.05h15.6v-76.5h-15.6v76.4z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M158.4 257.74c-3.42-1.4-9.2-2.45-15.85-2.67-2.3.02-4.84.23-7.47.67-9.34 1.56-16.45 5.28-15.88 8.32l.04.25s-3.5-7.8-3.55-8.1c-.7-3.3 7.2-7.5 17.6-9.2 3.2-.5 6.4-.7 9.1-.7 6.6 0 12.4.9 15.8 2.2v9.5" fill="#ad1519"/>
<path d="M158.4 257.74c-3.42-1.4-9.2-2.45-15.85-2.67-2.3.02-4.84.23-7.47.67-9.34 1.56-16.45 5.28-15.88 8.32l.04.25s-3.5-7.8-3.55-8.1c-.7-3.3 7.2-7.5 17.6-9.2 3.2-.5 6.4-.7 9.1-.7 6.6 0 12.4.9 15.8 2.2v9.5" fill="none" stroke="#000" stroke-width=".37" stroke-linejoin="round"/>
<path d="M126.82 267.33c-4.33-.3-7.28-1.47-7.62-3.27-.27-1.45 1.2-3.04 3.8-4.5 1.17.13 2.5.3 3.84.3l-.02 7.47" fill="#ad1519"/>
<path d="M126.82 267.33c-4.33-.3-7.28-1.47-7.62-3.27-.27-1.45 1.2-3.04 3.8-4.5 1.17.13 2.5.3 3.84.3l-.02 7.47" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M142.48 261.5c2.7.4 4.73 1.07 5.74 1.9l.1.16c.48 1-1.9 3.1-5.87 5.44l.03-7.5" fill="#ad1519"/>
<path d="M142.48 261.5c2.7.4 4.73 1.07 5.74 1.9l.1.16c.48 1-1.9 3.1-5.87 5.44l.03-7.5" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M117.13 282.08c-.4-1.24 3.8-3.7 9.77-5.9 2.72-.97 4.97-2 7.76-3.22 8.3-3.66 14.4-7.86 13.65-9.4v-.15c.5.4 1.2 8 1.2 8 .8 1.4-4.8 5.6-12.5 9.2-2.4 1.2-7.6 3.1-10 3.9-4.3 1.5-8.6 4.4-8.2 5.4l-1.4-7.7" fill="#ad1519"/>
<path d="M117.13 282.08c-.4-1.24 3.8-3.7 9.77-5.9 2.72-.97 4.97-2 7.76-3.22 8.3-3.66 14.4-7.86 13.65-9.4v-.15c.5.4 1.2 8 1.2 8 .8 1.4-4.8 5.6-12.5 9.2-2.4 1.2-7.6 3.1-10 3.9-4.3 1.5-8.6 4.4-8.2 5.4l-1.4-7.7z" fill="none" stroke="#000" stroke-width=".37" stroke-linejoin="round"/>
<path d="M125.77 254.07c1.9-.7 3.16-1.52 2.54-3.02-.3-.96-1.3-1.14-2.8-.6l-2.6.95 2.4 5.8c.3-.13.5-.25.8-.35l.8-.24-1-2.5zm-1.14-2.8l.66-.24c.5-.2 1.1.1 1.4.77.2.5.1 1.08-.5 1.5a4.4 4.4 0 0 1-.7.3l-1-2.33m7.2-2.42c-.3.07-.6.16-.9.2-.3.06-.6.1-.9.13l1.3 6.03 4.2-.8c0-.1-.1-.2-.1-.3s0-.2-.1-.4c-.8.2-1.6.5-2.5.7l-1.2-5.4m8.4 5.2c.8-2.2 1.7-4.3 2.7-6.4a5.3 5.3 0 0 1-1.1.1c-.5 1.6-1.1 3.1-1.8 4.7-.8-1.4-1.7-2.9-2.3-4.3-.3.1-.7.1-1 .1-.3.1-.7 0-1 .1a131.44 131.44 0 0 1 3.5 6h1m8.8-4.6c.1-.3.3-.5.4-.8-.2-.2-.9-.5-1.8-.6-1.7-.2-2.7.6-2.8 1.6-.2 2.2 3.2 2 3 3.4-.1.6-.7.9-1.4.8-.8-.1-1.4-.5-1.5-1.1h-.2a7.26 7.26 0 0 1-.5 1.1c.5.3 1.1.5 1.8.6 1.7.2 3.1-.5 3.2-1.6.2-2-3.3-2.2-3.1-3.4 0-.5.4-.8 1.3-.7.6.1 1 .4 1.2.9l.1.1" fill="#c8b100"/>
<path d="M277.85 211.6s-.7.75-1.22.86c-.5.1-1.16-.47-1.16-.47s-.47.4-1.04.6c-.57.1-1.36-.7-1.36-.7s-.54.7-1.03.9c-.5.2-1.08-.3-1.08-.3s-.2.4-.62.6c-.18.1-.46-.1-.46-.1l-.58-.4-.65-.7-.6-.2-.3-1.1-.07-.6c-.12-.6.84-1.4 2.2-1.7.8-.2 1.48-.2 2 0 .53-.5 1.7-.8 3.06-.8 1.23 0 2.32.3 2.9.7.6-.4 1.7-.7 2.93-.7 1.35 0 2.5.3 3.06.8.5-.2 1.2-.2 1.98 0 1.4.3 2.4 1 2.3 1.6l-.1.5-.3 1-.6.2-.6.7-.5.4s-.3.1-.4 0c-.4-.2-.6-.6-.6-.6s-.6.4-1 .2c-.5-.2-1-1-1-1s-.8.8-1.3.6c-.6-.1-1-.6-1-.6s-.6.6-1.2.5c-.5-.1-1.2-.9-1.2-.9" fill="#ad1519"/>
<path d="M277.85 211.6s-.7.75-1.22.86c-.5.1-1.16-.47-1.16-.47s-.47.4-1.04.6c-.57.1-1.36-.7-1.36-.7s-.54.7-1.03.9c-.5.2-1.08-.3-1.08-.3s-.2.4-.62.6c-.18.1-.46-.1-.46-.1l-.58-.4-.65-.7-.6-.2-.3-1.1-.07-.6c-.12-.6.84-1.4 2.2-1.7.8-.2 1.48-.2 2 0 .53-.5 1.7-.8 3.06-.8 1.23 0 2.32.3 2.9.7.6-.4 1.7-.7 2.93-.7 1.35 0 2.5.3 3.06.8.5-.2 1.2-.2 1.98 0 1.4.3 2.4 1 2.3 1.6l-.1.5-.3 1-.6.2-.6.7-.5.4s-.3.1-.4 0c-.4-.2-.6-.6-.6-.6s-.6.4-1 .2c-.5-.2-1-1-1-1s-.8.8-1.3.6c-.6-.1-1-.6-1-.6s-.6.6-1.2.5c-.5-.1-1.2-.9-1.2-.9z" fill="none" stroke="#000" stroke-width=".26"/>
<path d="M276.5 207.55c0-1.04.6-1.88 1.33-1.88.73 0 1.32.84 1.32 1.88s-.6 1.9-1.32 1.9c-.73 0-1.32-.86-1.32-1.9" fill="#c8b100"/>
<path d="M276.5 207.55c0-1.04.6-1.88 1.33-1.88.73 0 1.32.84 1.32 1.88s-.6 1.9-1.32 1.9c-.73 0-1.32-.86-1.32-1.9z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M277.25 207.55c0-.95.27-1.73.6-1.73.34 0 .6.78.6 1.73 0 .96-.26 1.73-.6 1.73-.33 0-.6-.77-.6-1.73" fill="#c8b100"/>
<path d="M277.25 207.55c0-.95.27-1.73.6-1.73.34 0 .6.78.6 1.73 0 .96-.26 1.73-.6 1.73-.33 0-.6-.77-.6-1.73z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M271.04 215.28a4.54 4.54 0 0 0-.56-1.04c1.87-.55 4.47-.9 7.36-.9 2.9 0 5.52.35 7.4.9l-.5.88c-.18.28-.4.78-.37.78-1.7-.52-3.87-.8-6.54-.8s-5.24.34-6.58.83c.02 0-.1-.3-.23-.65h.02" fill="#c8b100"/>
<path d="M271.04 215.28a4.54 4.54 0 0 0-.56-1.04c1.87-.55 4.47-.9 7.36-.9 2.9 0 5.52.35 7.4.9l-.5.88c-.18.28-.4.78-.37.78-1.7-.52-3.87-.8-6.54-.8s-5.24.34-6.58.83c.02 0-.1-.3-.23-.65h.02" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M277.84 217.66c2.34 0 4.9-.36 5.86-.6.64-.2 1-.48.94-.8-.03-.16-.17-.3-.36-.38-1.4-.44-3.9-.76-6.44-.77-2.52.1-5.05.4-6.45.8-.2.1-.4.2-.4.4-.1.4.3.6.9.8.9.3 3.5.6 5.8.6" fill="#c8b100"/>
<path d="M277.84 217.66c2.34 0 4.9-.36 5.86-.6.64-.2 1-.48.94-.8-.03-.16-.17-.3-.36-.38-1.4-.44-3.9-.76-6.44-.77-2.52.1-5.05.4-6.45.8-.2.1-.4.2-.4.4-.1.4.3.6.9.8.9.3 3.5.6 5.8.6z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M283.5 208.4c0-.24.2-.42.44-.42s.43.18.43.4c0 .24-.2.42-.43.42a.42.42 0 0 1-.43-.4" fill="#fff"/>
<path d="M283.5 208.4c0-.24.2-.42.44-.42s.43.18.43.4c0 .24-.2.42-.43.42a.42.42 0 0 1-.43-.4zm-.24-1.45a.42.42 0 0 1 .43-.4c.2 0 .4.17.4.4s-.2.4-.5.4a.42.42 0 0 1-.5-.4zm-1.1-.9c0-.23.2-.4.45-.4s.5.18.5.4c0 .23-.2.42-.4.42a.42.42 0 0 1-.4-.42zm-1.34-.43c0-.23.2-.42.43-.42.24 0 .43.2.43.42 0 .22-.2.4-.43.4-.24 0-.43-.18-.43-.4zm-1.4.05c0-.23.2-.4.45-.4.24 0 .43.17.43.4s-.2.4-.43.4a.42.42 0 0 1-.44-.4z" fill="none" stroke="#000" stroke-width=".2"/>
<path d="M287.8 211.2c.13-.33.2-.68.2-1.05 0-1.52-1.2-2.76-2.7-2.76-.48 0-.93.1-1.32.3" fill="none" stroke="#000" stroke-width=".25" stroke-linecap="round"/>
<path d="M282.97 209.24c.14-.25.24-.55.24-.84 0-1.1-1.1-2-2.5-2-.6 0-1.1.18-1.6.44" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M288.17 209.93c0-.22.2-.4.44-.4.3 0 .5.18.5.4 0 .23-.2.4-.4.4s-.4-.17-.4-.4zm-.16-1.5c0-.24.2-.42.5-.42a.42.42 0 0 1 .5.5c0 .2-.2.4-.4.4s-.4-.2-.4-.4zm-.9-1.17a.42.42 0 0 1 .5-.4c.3 0 .5.17.5.4a.42.42 0 0 1-.4.4.42.42 0 0 1-.4-.4zm-1.3-.62c0-.22.2-.4.5-.4s.5.18.5.4c0 .23-.2.42-.4.42a.43.43 0 0 1-.4-.42zm-1.4.06c0-.23.2-.42.5-.42s.5.2.5.42c0 .22-.2.4-.4.4s-.4-.18-.4-.4z" fill="none" stroke="#000" stroke-width=".2"/>
<path d="M285.34 213.2l-.57-.52s-.54.34-1.22.23c-.68-.1-.9-.9-.9-.9s-.75.7-1.37.6c-.63 0-1.03-.6-1.03-.6s-.68.5-1.28.5-1.17-.8-1.17-.8-.6.8-1.2.8c-.6.1-1.08-.5-1.08-.5s-.27.6-1.03.7c-.8.2-1.5-.6-1.5-.6s-.5.7-1 .9c-.5.2-1.2-.2-1.2-.2l-.2.4c-.1.2-.3.2-.3.2l.1.5c1.8-.5 4.4-.8 7.2-.8s5.4.4 7.3.9l.2-.5" fill="#c8b100"/>
<path d="M285.34 213.2l-.57-.52s-.54.34-1.22.23c-.68-.1-.9-.9-.9-.9s-.75.7-1.37.6c-.63 0-1.03-.6-1.03-.6s-.68.5-1.28.5-1.17-.8-1.17-.8-.6.8-1.2.8c-.6.1-1.08-.5-1.08-.5s-.27.6-1.03.7c-.8.2-1.5-.6-1.5-.6s-.5.7-1 .9c-.5.2-1.2-.2-1.2-.2l-.2.4c-.1.2-.3.2-.3.2l.1.5c1.8-.5 4.4-.8 7.2-.8s5.4.4 7.3.9l.2-.5z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M271.26 208.4c0-.24.2-.42.43-.42.2 0 .4.18.4.4a.42.42 0 0 1-.5.42c-.3 0-.5-.18-.5-.4" fill="#fff"/>
<path d="M271.26 208.4c0-.24.2-.42.43-.42.2 0 .4.18.4.4a.42.42 0 0 1-.5.42c-.3 0-.5-.18-.5-.4zm.24-1.45c0-.23.2-.4.44-.4s.43.17.43.4-.2.4-.43.4c-.24 0-.44-.17-.44-.4zm1.1-.9c0-.23.18-.4.42-.4s.44.18.44.4c0 .23-.2.42-.44.42a.42.42 0 0 1-.43-.42zm1.34-.43c0-.23.2-.42.44-.42s.43.2.43.42c0 .22-.1.4-.4.4s-.4-.18-.4-.4zm1.4.05c0-.23.18-.4.42-.4s.44.17.44.4-.2.4-.44.4a.42.42 0 0 1-.43-.4z" fill="none" stroke="#000" stroke-width=".2"/>
<path d="M267.83 211.2a2.8 2.8 0 0 1-.2-1.05c0-1.52 1.2-2.76 2.7-2.76.48 0 .93.1 1.33.3" fill="none" stroke="#000" stroke-width=".25" stroke-linecap="round"/>
<path d="M272.7 209.2c-.14-.24-.28-.5-.28-.8 0-1.1 1.14-2 2.54-2a3 3 0 0 1 1.58.44" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M266.6 209.93c0-.22.18-.4.42-.4s.43.18.43.4a.42.42 0 0 1-.43.4c-.24 0-.43-.17-.43-.4zm.15-1.5c0-.24.2-.42.44-.42.2 0 .4.2.4.5 0 .2-.2.4-.5.4s-.5-.2-.5-.4zm.98-1.17c0-.23.2-.4.44-.4a.42.42 0 0 1 .43.4.42.42 0 0 1-.43.4.42.42 0 0 1-.44-.4zm1.3-.62c0-.22.2-.4.43-.4.25 0 .44.18.44.4 0 .23-.2.42-.44.42a.42.42 0 0 1-.43-.42zm1.4.06c0-.23.18-.42.42-.42a.42.42 0 0 1 .43.42.42.42 0 0 1-.43.4c-.24 0-.43-.18-.43-.4z" fill="none" stroke="#000" stroke-width=".2"/>
<path d="M277.86 210.7l.27.06a1 1 0 0 0-.05.36c0 .56.48 1 1.07 1 .47 0 .88-.28 1-.7.03.02.12-.35.16-.35.1 0 .1.4.1.4.1.5.6.84 1.1.84.6 0 1.1-.4 1.1-1a.7.7 0 0 0 0-.1l.4-.3.2.5a.92.92 0 0 0-.1.5c0 .6.5 1 1 1 .4 0 .7-.1.9-.4l.2-.3v.4c0 .4.2.7.5.7 0 0 .4.1.9-.3s.8-.7.8-.7v.4s-.5.9-.9 1.1c-.2.2-.6.3-.9.3-.3 0-.5-.2-.6-.5a1.5 1.5 0 0 1-.8.2c-.6 0-1.1-.3-1.3-.8a1.5 1.5 0 0 1-1.1.5c-.5 0-.9-.2-1.2-.5a1.54 1.54 0 0 1-1.1.4c-.5 0-1-.2-1.3-.6-.2.4-.7.7-1.2.7-.4 0-.8-.1-1-.4a1.56 1.56 0 0 1-1.2.6c-.4 0-.8-.2-1.1-.5-.2.5-.8.9-1.4.9-.3 0-.6-.1-.8-.2-.1.3-.4.6-.7.6-.3.1-.7-.1-.9-.2-.5-.2-1-1-1-1l.1-.4s.3.3.8.7c.5.4.9.3.9.3.4 0 .5-.3.5-.7v-.3l.2.3c.2.3.5.5.9.5.6 0 1-.4 1-1a.92.92 0 0 0-.1-.4l.2-.4.4.3v.1c0 .5.5 1 1 1s1-.4 1.1-.9v-.4l.1.4c.2.4.6.7 1.1.7.6 0 1.1-.5 1.1-1a.98.98 0 0 0 0-.4h.3" fill="#c8b100"/>
<path d="M277.86 210.7l.27.06a1 1 0 0 0-.05.36c0 .56.48 1 1.07 1 .47 0 .88-.28 1-.7.03.02.12-.35.16-.35.1 0 .1.4.1.4.1.5.6.84 1.1.84.6 0 1.1-.4 1.1-1a.7.7 0 0 0 0-.1l.4-.3.2.5a.92.92 0 0 0-.1.5c0 .6.5 1 1 1 .4 0 .7-.1.9-.4l.2-.3v.4c0 .4.2.7.5.7 0 0 .4.1.9-.3s.8-.7.8-.7v.4s-.5.9-.9 1.1c-.2.2-.6.3-.9.3-.3 0-.5-.2-.6-.5a1.5 1.5 0 0 1-.8.2c-.6 0-1.1-.3-1.3-.8a1.5 1.5 0 0 1-1.1.5c-.5 0-.9-.2-1.2-.5a1.54 1.54 0 0 1-1.1.4c-.5 0-1-.2-1.3-.6-.2.4-.7.7-1.2.7-.4 0-.8-.1-1-.4a1.56 1.56 0 0 1-1.2.6c-.4 0-.8-.2-1.1-.5-.2.5-.8.9-1.4.9-.3 0-.6-.1-.8-.2-.1.3-.4.6-.7.6-.3.1-.7-.1-.9-.2-.5-.2-1-1-1-1l.1-.4s.3.3.8.7c.5.4.9.3.9.3.4 0 .5-.3.5-.7v-.3l.2.3c.2.3.5.5.9.5.6 0 1-.4 1-1a.92.92 0 0 0-.1-.4l.2-.4.4.3v.1c0 .5.5 1 1 1s1-.4 1.1-.9v-.4l.1.4c.2.4.6.7 1.1.7.6 0 1.1-.5 1.1-1a.98.98 0 0 0 0-.4h.3z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M277.84 213.34c-2.9 0-5.5.35-7.36.9-.12.04-.28-.05-.32-.16-.04-.12.05-.27.17-.3 1.88-.58 4.55-.94 7.5-.95 2.98 0 5.65.37 7.53.94.13.04.22.2.18.3-.04.12-.2.22-.32.18-1.87-.56-4.48-.9-7.38-.9" fill="#c8b100"/>
<path d="M277.84 213.34c-2.9 0-5.5.35-7.36.9-.12.04-.28-.05-.32-.16-.04-.12.05-.27.17-.3 1.88-.58 4.55-.94 7.5-.95 2.98 0 5.65.37 7.53.94.13.04.22.2.18.3-.04.12-.2.22-.32.18-1.87-.56-4.48-.9-7.38-.9z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M275.04 214.37c0-.22.2-.4.43-.4.23 0 .4.18.4.4a.4.4 0 0 1-.4.4c-.24 0-.43-.18-.43-.4" fill="#fff"/>
<path d="M275.04 214.37c0-.22.2-.4.43-.4.23 0 .4.18.4.4a.4.4 0 0 1-.4.4c-.24 0-.43-.18-.43-.4z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M277.88 214.54h-.93c-.17 0-.32-.13-.32-.3 0-.16.14-.3.32-.3h1.88a.3.3 0 0 1 .3.3c0 .17-.13.3-.3.3h-.95" fill="#ad1519"/>
<path d="M277.88 214.54h-.93c-.17 0-.32-.13-.32-.3 0-.16.14-.3.32-.3h1.88a.3.3 0 0 1 .3.3c0 .17-.13.3-.3.3h-.95" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M273.22 214.86l-.67.1a.32.32 0 0 1-.36-.25.3.3 0 0 1 .2-.3l.6-.1.7-.1c.1 0 .3.1.3.3a.3.3 0 0 1-.3.4l-.7.1" fill="#058e6e"/>
<path d="M273.22 214.86l-.67.1a.32.32 0 0 1-.36-.25.3.3 0 0 1 .2-.3l.6-.1.7-.1c.1 0 .3.1.3.3a.3.3 0 0 1-.3.4l-.7.1" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M270.53 215.33l.3-.48.63.12-.37.54-.6-.1" fill="#ad1519"/>
<path d="M270.53 215.33l.3-.48.63.12-.37.54-.6-.1" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M279.8 214.37c0-.22.2-.4.43-.4.23 0 .42.18.42.4 0 .22-.2.4-.42.4-.23 0-.42-.18-.42-.4" fill="#fff"/>
<path d="M279.8 214.37c0-.22.2-.4.43-.4.23 0 .42.18.42.4 0 .22-.2.4-.42.4-.23 0-.42-.18-.42-.4z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M282.48 214.86l.67.1a.3.3 0 0 0 .35-.25.3.3 0 0 0-.25-.3l-.67-.1-.7-.1c-.16 0-.32.1-.34.3-.03.2.1.3.26.4l.68.1" fill="#058e6e"/>
<path d="M282.48 214.86l.67.1a.3.3 0 0 0 .35-.25.3.3 0 0 0-.25-.3l-.67-.1-.7-.1c-.16 0-.32.1-.34.3-.03.2.1.3.26.4l.68.1" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M285.1 215.36l-.23-.5-.65.04.32.57.57-.1" fill="#ad1519"/>
<path d="M285.1 215.36l-.23-.5-.65.04.32.57.57-.1" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M277.84 217.12c-2.33 0-4.45-.2-6.06-.63 1.6-.5 3.72-.7 6.06-.7 2.34 0 4.46.2 6.07.6-1.6.4-3.7.6-6 .6" fill="#ad1519"/>
<path d="M277.84 217.12c-2.33 0-4.45-.2-6.06-.63 1.6-.5 3.72-.7 6.06-.7 2.34 0 4.46.2 6.07.6-1.6.4-3.7.6-6 .6z" fill="none" stroke="#000" stroke-width=".25" stroke-linejoin="round"/>
<path d="M285.2 212.05c.07-.18 0-.36-.12-.4-.13-.04-.28.08-.35.25-.06.18 0 .36.12.4.13.04.3-.07.35-.25" fill="#c8b100"/>
<path d="M285.2 212.05c.07-.18 0-.36-.12-.4-.13-.04-.28.08-.35.25-.06.18 0 .36.12.4.13.04.3-.07.35-.25z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M280.56 211.15c.02-.2-.07-.35-.2-.37-.14-.02-.28.12-.3.3-.02.2.07.37.2.38.14.02.27-.13.3-.3" fill="#c8b100"/>
<path d="M280.56 211.15c.02-.2-.07-.35-.2-.37-.14-.02-.28.12-.3.3-.02.2.07.37.2.38.14.02.27-.13.3-.3z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M275.16 211.15c-.03-.2.06-.35.2-.37.13-.02.26.12.3.3 0 .2-.08.37-.2.38-.15.02-.28-.13-.3-.3" fill="#c8b100"/>
<path d="M275.16 211.15c-.03-.2.06-.35.2-.37.13-.02.26.12.3.3 0 .2-.08.37-.2.38-.15.02-.28-.13-.3-.3z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M270.5 212.05c-.06-.18 0-.36.13-.4.13-.04.3.08.35.25.06.18 0 .36-.12.4-.14.04-.3-.07-.35-.25" fill="#c8b100"/>
<path d="M270.5 212.05c-.06-.18 0-.36.13-.4.13-.04.3.08.35.25.06.18 0 .36-.12.4-.14.04-.3-.07-.35-.25z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M277.84 208.46l-.82.5.6 1.33.22.1.2-.2.63-1.4-.83-.5" fill="#c8b100"/>
<path d="M277.84 208.46l-.82.5.6 1.33.22.1.2-.2.63-1.4-.83-.5" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M276.03 210.47l.38.54 1.3-.3.2-.2-.1-.2-1.3-.3-.3.6" fill="#c8b100"/>
<path d="M276.03 210.47l.38.54 1.3-.3.2-.2-.1-.2-1.3-.3-.3.6" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M279.65 210.47l-.37.54-1.3-.3-.12-.2.13-.2 1.2-.3.4.6" fill="#c8b100"/>
<path d="M279.65 210.47l-.37.54-1.3-.3-.12-.2.13-.2 1.2-.3.4.6" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M272.48 209.05l-.65.6.83 1.1.22.1.17-.17.3-1.32-.87-.3" fill="#c8b100"/>
<path d="M272.48 209.05l-.65.6.83 1.1.22.1.17-.17.3-1.32-.87-.3" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M271.12 211.24l.5.46 1.16-.64.1-.2-.18-.15-1.34-.1-.24.7" fill="#c8b100"/>
<path d="M271.12 211.24l.5.46 1.16-.64.1-.2-.18-.15-1.34-.1-.24.7" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M274.67 210.53l-.25.6-1.35-.12-.17-.1.1-.2 1.17-.6.5.5" fill="#c8b100"/>
<path d="M274.67 210.53l-.25.6-1.35-.12-.17-.1.1-.2 1.17-.6.5.5" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M269.83 211.4l-.1.65-1.35.14-.2-.2.04-.2 1-.9.6.4" fill="#c8b100"/>
<path d="M269.83 211.4l-.1.65-1.35.14-.2-.2.04-.2 1-.9.6.4" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M272.42 210.86c0-.25.2-.45.47-.45a.46.46 0 0 1 .4.5.46.46 0 0 1-.5.5.46.46 0 0 1-.5-.4" fill="#c8b100"/>
<path d="M272.42 210.86c0-.25.2-.45.47-.45a.46.46 0 0 1 .4.5.46.46 0 0 1-.5.5.46.46 0 0 1-.5-.4z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M283.22 209.05l.65.6-.83 1.1-.22.1-.16-.17-.3-1.32.86-.3" fill="#c8b100"/>
<path d="M283.22 209.05l.65.6-.83 1.1-.22.1-.16-.17-.3-1.32.86-.3" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M284.58 211.24l-.5.46-1.16-.64-.1-.2.18-.15 1.34-.1.24.7" fill="#c8b100"/>
<path d="M284.58 211.24l-.5.46-1.16-.64-.1-.2.18-.15 1.34-.1.24.7" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M281.03 210.53l.25.6 1.35-.12.17-.1-.1-.2-1.17-.6-.5.5" fill="#c8b100"/>
<path d="M281.03 210.53l.25.6 1.35-.12.17-.1-.1-.2-1.17-.6-.5.5" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M285.7 211.4l.1.65 1.34.14.2-.2-.05-.2-1.1-.9-.6.4" fill="#c8b100"/>
<path d="M285.7 211.4l.1.65 1.34.14.2-.2-.05-.2-1.1-.9-.6.4" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M277.38 210.44c0-.25.2-.45.47-.45.25 0 .47.2.47.4s-.2.4-.47.4a.46.46 0 0 1-.47-.5" fill="#c8b100"/>
<path d="M277.38 210.44c0-.25.2-.45.47-.45.25 0 .47.2.47.4s-.2.4-.47.4a.46.46 0 0 1-.47-.5z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M282.34 210.86c0-.25.22-.45.47-.45.3 0 .5.2.5.5s-.2.5-.4.5a.46.46 0 0 1-.4-.4" fill="#c8b100"/>
<path d="M282.34 210.86c0-.25.22-.45.47-.45.3 0 .5.2.5.5s-.2.5-.4.5a.46.46 0 0 1-.4-.4z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M276.96 205.4c0-.47.4-.84.9-.84.48 0 .88.37.88.84 0 .46-.4.83-.9.83-.48 0-.88-.37-.88-.83" fill="#c8b100"/>
<path d="M278.47 205.1v.55h-1.36v-.55h.5v-1.26h-.6v-.56h.6v-.54h.6v.55h.6v.5h-.6v1.2h.4" fill="#c8b100"/>
<path d="M278.47 205.1v.55h-1.36v-.55h.5v-1.26h-.6v-.56h.6v-.54h.6v.55h.6v.5h-.6v1.2h.4z" fill="none" stroke="#000" stroke-width=".29"/>
<path d="M279.1 205.1v.55h-2.45v-.55h.9v-1.26h-.6v-.56h.6v-.54h.6v.55h.57v.5h-.58v1.2h.95" fill="#c8b100"/>
<path d="M278.1 204.6c.37.1.64.4.64.8 0 .46-.4.83-.9.83-.48 0-.88-.37-.88-.83 0-.4.28-.72.66-.82" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M268 212.16s-.35-.47-.62-.7c-.18-.17-.64-.3-.64-.3 0-.1.27-.3.56-.3.17 0 .33.08.42.2l.04-.18s.24.04.34.3c.1.28.04.7.04.7s-.04.18-.13.28" fill="#c8b100"/>
<path d="M268 212.16s-.35-.47-.62-.7c-.18-.17-.64-.3-.64-.3 0-.1.27-.3.56-.3.17 0 .33.08.42.2l.04-.18s.24.04.34.3c.1.28.04.7.04.7s-.04.18-.13.28z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M268.03 211.92c.12-.1.34-.1.5.06.2.14.24.36.12.48-.1.12-.33.1-.5-.06-.18-.14-.23-.36-.12-.48" fill="#c8b100"/>
<path d="M268.03 211.92c.12-.1.34-.1.5.06.2.14.24.36.12.48-.1.12-.33.1-.5-.06-.18-.14-.23-.36-.12-.48z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M287.5 212.16c.02 0 .36-.47.63-.7.2-.17.65-.3.65-.3 0-.1-.27-.3-.56-.3-.17 0-.33.08-.43.2l-.1-.18s-.3.04-.4.3c-.1.28-.1.7-.1.7s0 .18.1.28" fill="#c8b100"/>
<path d="M287.5 212.16c.02 0 .36-.47.63-.7.2-.17.65-.3.65-.3 0-.1-.27-.3-.56-.3-.17 0-.33.08-.43.2l-.1-.18s-.3.04-.4.3c-.1.28-.1.7-.1.7s0 .18.1.28z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M287.5 211.92c-.1-.1-.33-.1-.5.06-.18.14-.22.36-.1.48.1.12.33.1.5-.06.17-.14.23-.36.1-.48" fill="#c8b100"/>
<path d="M287.5 211.92c-.1-.1-.33-.1-.5.06-.18.14-.22.36-.1.48.1.12.33.1.5-.06.17-.14.23-.36.1-.48z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M267.17 223.07h21.4v-5.6h-21.4v5.6z" fill="#c8b100"/>
<path d="M267.17 223.07h21.4v-5.6h-21.4v5.6z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M286.3 226.8a.94.94 0 0 0-.38-.05H269.9c-.16 0-.3.02-.45.07.55-.18.95-.68.95-1.26 0-.6-.43-1.1-.98-1.3.13.05.3.1.46.1h16.04c.16 0 .3-.02.45-.06h-.1c-.56.2-.9.7-.9 1.26 0 .53.37 1.07.94 1.25" fill="#c8b100"/>
<path d="M286.3 226.8a.94.94 0 0 0-.38-.05H269.9c-.16 0-.3.02-.45.07.55-.18.95-.68.95-1.26 0-.6-.43-1.1-.98-1.3.13.05.3.1.46.1h16.04c.16 0 .3-.02.45-.06h-.1c-.56.2-.9.7-.9 1.26 0 .53.37 1.07.94 1.25z" fill="none" stroke="#000" stroke-width=".37" stroke-linejoin="round"/>
<path d="M269.9 226.75h16.02c.54 0 .98.33.98.75 0 .4-.44.75-.98.75H269.9c-.55 0-.98-.34-.98-.76s.44-.8.98-.8" fill="#c8b100"/>
<path d="M269.9 226.75h16.02c.54 0 .98.33.98.75 0 .4-.44.75-.98.75H269.9c-.55 0-.98-.34-.98-.76s.44-.8.98-.8z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M269.9 223.07h16.02c.54 0 .98.3.98.64 0 .4-.44.7-.98.7h-16.04c-.54 0-.98-.3-.98-.6s.44-.6.98-.6" fill="#c8b100"/>
<path d="M269.9 223.07h16.02c.54 0 .98.3.98.64 0 .4-.44.7-.98.7h-16.04c-.54 0-.98-.3-.98-.6s.44-.6.98-.6z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M262.93 317.45c1.48 0 2.8-.3 3.77-.83.96-.5 2.27-.8 3.7-.8 1.45 0 2.8.3 3.76.8.96.52 2.3.83 3.76.83 1.48 0 2.8-.35 3.77-.86.9-.5 2.2-.8 3.6-.8s2.7.2 3.7.8c.9.5 2.3.8 3.8.8v2.3c-1.5 0-2.9-.3-3.8-.9-1-.5-2.3-.8-3.7-.8-1.4 0-2.7.3-3.7.7-1 .5-2.3.9-3.8.9s-2.8-.3-3.8-.8-2.3-.8-3.8-.8-2.8.3-3.7.8c-1 .5-2.3.8-3.8.8l-.1-2.3" fill="#005bbf"/>
<path d="M262.93 317.45c1.48 0 2.8-.3 3.77-.83.96-.5 2.27-.8 3.7-.8 1.45 0 2.8.3 3.76.8.96.52 2.3.83 3.76.83 1.48 0 2.8-.35 3.77-.86.9-.5 2.2-.8 3.6-.8s2.7.2 3.7.8c.9.5 2.3.8 3.8.8v2.3c-1.5 0-2.9-.3-3.8-.9-1-.5-2.3-.8-3.7-.8-1.4 0-2.7.3-3.7.7-1 .5-2.3.9-3.8.9s-2.8-.3-3.8-.8-2.3-.8-3.8-.8-2.8.3-3.7.8c-1 .5-2.3.8-3.8.8l-.1-2.3z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M262.93 319.77c1.48 0 2.8-.32 3.77-.83.96-.5 2.27-.8 3.7-.8 1.45 0 2.8.3 3.76.8s2.3.83 3.76.83c1.48 0 2.8-.35 3.77-.87.9-.47 2.2-.76 3.6-.76s2.7.28 3.7.78c.9.5 2.3.85 3.8.85v2.3c-1.5 0-2.9-.32-3.8-.83-1-.5-2.3-.8-3.7-.8-1.4 0-2.7.3-3.7.78-1 .5-2.3.86-3.8.86s-2.8-.32-3.8-.83c-1-.5-2.3-.8-3.8-.8s-2.8.3-3.7.8c-1 .52-2.3.83-3.8.83l-.1-2.3" fill="#ccc"/>
<path d="M262.93 319.77c1.48 0 2.8-.32 3.77-.83.96-.5 2.27-.8 3.7-.8 1.45 0 2.8.3 3.76.8s2.3.83 3.76.83c1.48 0 2.8-.35 3.77-.87.9-.47 2.2-.76 3.6-.76s2.7.28 3.7.78c.9.5 2.3.85 3.8.85v2.3c-1.5 0-2.9-.32-3.8-.83-1-.5-2.3-.8-3.7-.8-1.4 0-2.7.3-3.7.78-1 .5-2.3.86-3.8.86s-2.8-.32-3.8-.83c-1-.5-2.3-.8-3.8-.8s-2.8.3-3.7.8c-1 .52-2.3.83-3.8.83l-.1-2.3" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M262.93 322.08c1.48 0 2.8-.32 3.77-.83.96-.5 2.27-.8 3.7-.8 1.45 0 2.8.3 3.76.8s2.3.83 3.76.83c1.48 0 2.8-.35 3.77-.86.9-.48 2.2-.77 3.6-.77s2.7.28 3.7.8c.9.5 2.3.83 3.8.83v2.3c-1.5 0-2.9-.32-3.8-.84-1-.5-2.3-.77-3.7-.77-1.4 0-2.7.3-3.7.76-1 .52-2.3.86-3.8.86s-2.8-.4-3.8-.9-2.3-.8-3.8-.8-2.8.3-3.7.8c-1 .5-2.3.8-3.8.8l-.1-2.3" fill="#005bbf"/>
<path d="M262.93 322.08c1.48 0 2.8-.32 3.77-.83.96-.5 2.27-.8 3.7-.8 1.45 0 2.8.3 3.76.8s2.3.83 3.76.83c1.48 0 2.8-.35 3.77-.86.9-.48 2.2-.77 3.6-.77s2.7.28 3.7.8c.9.5 2.3.83 3.8.83v2.3c-1.5 0-2.9-.32-3.8-.84-1-.5-2.3-.77-3.7-.77-1.4 0-2.7.3-3.7.76-1 .52-2.3.86-3.8.86s-2.8-.4-3.8-.9-2.3-.8-3.8-.8-2.8.3-3.7.8c-1 .5-2.3.8-3.8.8l-.1-2.3" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M262.95 326.7c1.48 0 2.77-.3 3.75-.83.96-.5 2.27-.8 3.7-.8 1.45 0 2.8.3 3.76.8.96.52 2.3.84 3.76.84 1.48 0 2.8-.3 3.77-.8.9-.4 2.2-.7 3.6-.7s2.7.3 3.7.8c.9.6 2.3.9 3.8.9v-2.3c-1.5 0-2.9-.3-3.8-.8-1-.5-2.3-.7-3.7-.7-1.4 0-2.7.3-3.7.8-1 .6-2.3.9-3.8.9s-2.8-.3-3.8-.8-2.3-.8-3.8-.8-2.8.3-3.7.8c-1 .5-2.3.9-3.8.9v2.3" fill="#ccc"/>
<path d="M262.95 326.7c1.48 0 2.77-.3 3.75-.83.96-.5 2.27-.8 3.7-.8 1.45 0 2.8.3 3.76.8.96.52 2.3.84 3.76.84 1.48 0 2.8-.3 3.77-.8.9-.4 2.2-.7 3.6-.7s2.7.3 3.7.8c.9.6 2.3.9 3.8.9v-2.3c-1.5 0-2.9-.3-3.8-.8-1-.5-2.3-.7-3.7-.7-1.4 0-2.7.3-3.7.8-1 .6-2.3.9-3.8.9s-2.8-.3-3.8-.8-2.3-.8-3.8-.8-2.8.3-3.7.8c-1 .5-2.3.9-3.8.9v2.3" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M262.95 329.02c1.48 0 2.77-.32 3.75-.83.96-.5 2.27-.8 3.7-.8 1.45 0 2.8.3 3.76.8s2.3.8 3.76.8c1.48 0 2.8-.4 3.77-.9.9-.5 2.2-.8 3.6-.8s2.7.2 3.7.7c.9.5 2.3.8 3.8.8v-2.3c-1.5 0-2.9-.4-3.8-.9-1-.5-2.3-.8-3.7-.8-1.4 0-2.7.3-3.7.7-1 .5-2.3.8-3.8.8s-2.8-.3-3.8-.8-2.3-.8-3.8-.8-2.8.3-3.7.8c-1 .5-2.3.8-3.8.8v2.4" fill="#005bbf"/>
<path d="M262.95 329.02c1.48 0 2.77-.32 3.75-.83.96-.5 2.27-.8 3.7-.8 1.45 0 2.8.3 3.76.8s2.3.8 3.76.8c1.48 0 2.8-.4 3.77-.9.9-.5 2.2-.8 3.6-.8s2.7.2 3.7.7c.9.5 2.3.8 3.8.8v-2.3c-1.5 0-2.9-.4-3.8-.9-1-.5-2.3-.8-3.7-.8-1.4 0-2.7.3-3.7.7-1 .5-2.3.8-3.8.8s-2.8-.3-3.8-.8-2.3-.8-3.8-.8-2.8.3-3.7.8c-1 .5-2.3.8-3.8.8v2.4z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M286.3 307.95c-.04.2-.1.4-.1.6 0 1.4 1.2 2.52 2.68 2.52h-22c1.47 0 2.68-1.12 2.68-2.52 0-.2-.04-.4-.1-.6.14.05.3.05.43.05h16c.1 0 .3 0 .4-.05" fill="#c8b100"/>
<path d="M286.3 307.95c-.04.2-.1.4-.1.6 0 1.4 1.2 2.52 2.68 2.52h-22c1.47 0 2.68-1.12 2.68-2.52 0-.2-.04-.4-.1-.6.14.05.3.05.43.05h16c.1 0 .3 0 .4-.05z" fill="none" stroke="#000" stroke-width=".37" stroke-linejoin="round"/>
<path d="M269.9 306.5h16.02c.54 0 .98.34.98.75 0 .42-.44.75-.98.75H269.9c-.55 0-.98-.33-.98-.75 0-.4.44-.75.98-.75" fill="#c8b100"/>
<path d="M269.9 306.5h16.02c.54 0 .98.34.98.75 0 .42-.44.75-.98.75H269.9c-.55 0-.98-.33-.98-.75 0-.4.44-.75.98-.75z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M266.9 316.67h21.96v-5.6H266.9v5.6z" fill="#c8b100"/>
<path d="M266.9 316.67h21.96v-5.6H266.9v5.6z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M290.57 286.67c2.18 1.26 3.65 2.54 3.42 3.18-.2.6-.9 1.03-1.8 1.7-1.6 1.07-2.5 3-1.8 3.9-1.3-1.05-2.1-2.6-2.1-4.32 0-1.8.8-3.42 2.2-4.46" fill="#ad1519"/>
<path d="M290.57 286.67c2.18 1.26 3.65 2.54 3.42 3.18-.2.6-.9 1.03-1.8 1.7-1.6 1.07-2.5 3-1.8 3.9-1.3-1.05-2.1-2.6-2.1-4.32 0-1.8.8-3.42 2.2-4.46z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M270.1 305.6h15.6v-76.46h-15.6v76.45z" fill="#ccc"/>
<path d="M281.43 229.1v76.3m1.75-76.3v76.3m-13.07.2h15.6v-76.46h-15.6v76.45z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M254.17 257.74c3.4-1.4 9.2-2.45 15.84-2.67 2.3.02 4.9.23 7.5.67 9.4 1.56 16.5 5.28 15.9 8.32v.25s3.5-7.8 3.6-8.1c.7-3.3-7.2-7.5-17.6-9.2a53.48 53.48 0 0 0-9.2-.7c-6.6 0-12.4.9-15.8 2.2v9.5" fill="#ad1519"/>
<path d="M254.17 257.74c3.4-1.4 9.2-2.45 15.84-2.67 2.3.02 4.9.23 7.5.67 9.4 1.56 16.5 5.28 15.9 8.32v.25s3.5-7.8 3.6-8.1c.7-3.3-7.2-7.5-17.6-9.2a53.48 53.48 0 0 0-9.2-.7c-6.6 0-12.4.9-15.8 2.2v9.5" fill="none" stroke="#000" stroke-width=".37" stroke-linejoin="round"/>
<path d="M285.74 267.33c4.32-.3 7.28-1.47 7.6-3.27.3-1.45-1.18-3.04-3.8-4.5-1.16.13-2.47.3-3.83.3l.1 7.47" fill="#ad1519"/>
<path d="M285.74 267.33c4.32-.3 7.28-1.47 7.6-3.27.3-1.45-1.18-3.04-3.8-4.5-1.16.13-2.47.3-3.83.3l.1 7.47" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M270.08 261.5c-2.7.4-4.73 1.07-5.75 1.9l-.1.16c-.47 1 1.9 3.1 5.87 5.44l-.02-7.5" fill="#ad1519"/>
<path d="M270.08 261.5c-2.7.4-4.73 1.07-5.75 1.9l-.1.16c-.47 1 1.9 3.1 5.87 5.44l-.02-7.5" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M295.43 282.08c.4-1.24-3.8-3.7-9.77-5.9-2.73-.97-4.98-2-7.77-3.22-8.3-3.66-14.4-7.86-13.7-9.4l.1-.15c-.5.4-1.1 8-1.1 8-.8 1.4 4.8 5.6 12.4 9.2 2.4 1.2 7.6 3.1 10 3.9 4.3 1.5 8.6 4.4 8.2 5.4l1.4-7.7" fill="#ad1519"/>
<path d="M295.43 282.08c.4-1.24-3.8-3.7-9.77-5.9-2.73-.97-4.98-2-7.77-3.22-8.3-3.66-14.4-7.86-13.7-9.4l.1-.15c-.5.4-1.1 8-1.1 8-.8 1.4 4.8 5.6 12.4 9.2 2.4 1.2 7.6 3.1 10 3.9 4.3 1.5 8.6 4.4 8.2 5.4l1.4-7.7z" fill="none" stroke="#000" stroke-width=".37" stroke-linejoin="round"/>
<path d="M263.9 254.38c.58-2.24 1.35-4.4 2.1-6.6-.17.05-.35.1-.52.1a5.2 5.2 0 0 1-.52.06c-.35 1.58-.84 3.16-1.35 4.74-.9-1.38-1.9-2.73-2.7-4.12l-1 .2-1 .1a131.25 131.25 0 0 1 4.1 5.66c.2-.04.3-.1.5-.1.2-.03.4-.03.5-.04m6-6.55c-.3.02-.5.04-.8.03-.3 0-.5-.03-.8-.06l-.1 6.16 4.3.08v-.4c0-.12.1-.26.1-.38-.8.05-1.6.1-2.6.08l.1-5.5m6.8 1c.7.06 1.4.18 2 .3v-.4c0-.12.1-.24.1-.37l-5.8-.48v.3c0 .1 0 .2-.1.4a19.3 19.3 0 0 1 2.1 0l-.5 5.5h.9c.3 0 .6 0 .9.1l.5-5.6m2.4 6l.9.1c.3 0 .5.1.8.2l.7-2.9h.1l.5 1.1.9 2.1c.4 0 .7.1 1 .2.4.1.7.2 1 .2l-.3-.6c-.4-1-.9-1.9-1.3-2.9 1.1 0 1.9-.4 2.1-1.2.2-.6-.1-1.1-.6-1.5-.4-.3-1.2-.5-1.8-.6l-2.3-.5-1.4 6m3-5.2c.7.1 1.5.3 1.5 1v.4c-.2.9-.9 1.2-2 .9l.6-2.4m8.1 7l-.3 2c.3.1.6.2.9.4l.8.5.6-7a3.4 3.4 0 0 1-.7-.4l-6.1 3.9.5.2.5.2c.5-.4 1.1-.7 1.7-1.2l2.3 1.3zm-1.7-1.6l2.1-1.3-.2 2.3-1.8-1" fill="#c8b100"/>
<path d="M182.2 192.43c0-1.1.92-1.97 2.07-1.97s2.08.88 2.08 1.97c0 1.1-.93 1.97-2.08 1.97s-2.08-.88-2.08-1.97z" fill="none" stroke="#000" stroke-width=".05"/>
<path d="M205.66 175.4c6.38 0 12.06.96 15.76 2.42 2.1.96 4.95 1.66 8.06 2.08 2.37.32 4.62.38 6.58.23 2.62-.05 6.4.72 10.2 2.38 3.12 1.4 5.74 3.1 7.48 4.8l-1.5 1.4-.44 3.8-4.13 4.8-2.06 1.8-4.8 3.9-2.5.2-.7 2.2-31.6-3.7-31.7 3.7-.7-2.1-2.5-.2-4.9-3.9-2-1.7-4.1-4.7-.4-3.8-1.5-1.4c1.8-1.6 4.4-3.3 7.5-4.7 3.8-1.6 7.6-2.4 10.2-2.4 2 .2 4.2.1 6.6-.2 3.1-.4 6-1.1 8.1-2.1 3.7-1.4 9.1-2.4 15.4-2.4z" fill="#ad1519" stroke="#000" stroke-width=".25"/>
<path d="M206.15 217.13c-11.78 0-22.32-1.4-29.85-3.68-.55-.16-.84-.67-.8-1.2 0-.5.27-.96.8-1.12 7.53-2.26 18.07-3.66 29.85-3.67 11.77 0 22.3 1.4 29.84 3.67.5.16.8.62.8 1.13 0 .52-.3 1.03-.8 1.2-7.6 2.26-18.1 3.65-29.9 3.67" fill="#c8b100" stroke="#000" stroke-width=".37"/>
<path d="M206.12 215.6c-10.63-.03-20.23-1.25-27.54-3.14 7.3-1.9 16.9-3.05 27.54-3.07 10.62 0 20.28 1.1 27.6 3-7.32 1.9-16.98 3.1-27.6 3.1" fill="#ad1519"/>
<path d="M206.9 215.65v-6.3" fill="none" stroke="#000" stroke-width=".09"/>
<path d="M205.2 215.65v-6.3" fill="none" stroke="#000" stroke-width=".13"/>
<path d="M203.58 215.65v-6.3" fill="none" stroke="#000" stroke-width=".17"/>
<path d="M201.98 215.65v-6.3" fill="none" stroke="#000" stroke-width=".22"/>
<path d="M200.55 215.65v-6.3" fill="none" stroke="#000" stroke-width=".27"/>
<path d="M197.82 215.3l-.03-5.73m1.3 5.82v-6.1" fill="none" stroke="#000" stroke-width=".32"/>
<path d="M195.3 215.05v-5.28m1.28 5.43l-.03-5.62" fill="none" stroke="#000" stroke-width=".35"/>
<path d="M191.94 214.75v-4.64m1.1 4.8V210m1.14 5v-5.06" fill="none" stroke="#000" stroke-width=".4"/>
<path d="M190.75 214.7v-4.48" fill="none" stroke="#000" stroke-width=".44"/>
<path d="M189.65 214.5v-4.2" fill="none" stroke="#000" stroke-width=".49"/>
<path d="M188.47 214.37v-3.9" fill="none" stroke="#000" stroke-width=".54"/>
<path d="M186.05 214.03l-.04-3.1m1.3 3.26v-3.5" fill="none" stroke="#000" stroke-width=".58"/>
<path d="M184.8 213.77v-2.72" fill="none" stroke="#000" stroke-width=".6"/>
<path d="M183.67 213.55v-2.27" fill="none" stroke="#000" stroke-width=".65"/>
<path d="M182.43 213.25v-1.78" fill="none" stroke="#000" stroke-width=".7"/>
<path d="M181.16 213.1v-1.32" fill="none" stroke="#000" stroke-width=".74"/>
<path d="M179.8 212.8v-.65" fill="none" stroke="#000" stroke-width=".87"/>
<path d="M213.72 215.3v-5.76m-2.9 5.96l.04-6.1m-2.16 6.18v-6.23" fill="none" stroke="#000" stroke-width=".05"/>
<path d="M206.07 207.45c-11.92.02-22.6 1.5-30.14 3.83.63-.3.57-1.06-.2-3.07-.95-2.4-2.4-2.3-2.4-2.3 8.3-2.4 19.9-4 32.8-4 12.9 0 24.56 1.6 32.88 4 0 0-1.4-.1-2.4 2.4-.7 2-.8 2.8-.2 3.1-7.5-2.3-18.4-3.8-30.3-3.8" fill="#c8b100" stroke="#000" stroke-width=".37"/>
<path d="M206.12 201.88c-12.9.02-24.48 1.56-32.8 4.02-.56.17-1.14-.05-1.32-.58-.18-.52.12-1.13.67-1.3 8.36-2.56 20.24-4.17 33.45-4.2 13.2.03 25.14 1.64 33.5 4.2.55.17.85.78.67 1.3-.2.53-.8.75-1.4.58-8.3-2.46-20-4-32.9-4.02" fill="#c8b100" stroke="#000" stroke-width=".37"/>
<path d="M206.12 215.6c-10.63-.03-20.23-1.25-27.54-3.14 7.3-1.9 16.9-3.05 27.54-3.07 10.62 0 20.28 1.1 27.6 3-7.32 1.9-16.98 3.1-27.6 3.1z" fill="none" stroke="#000" stroke-width=".37" stroke-linejoin="round"/>
<path d="M196.92 204.8c0-.54.47-.98 1.05-.98.58 0 1.06.44 1.06 1 0 .54-.48 1-1.06 1-.58 0-1.05-.46-1.05-1" fill="#fff" stroke="#000" stroke-width=".37"/>
<path d="M206.14 205.6H203c-.6 0-1.08-.45-1.08-1s.48-1 1.06-1h6.37c.58 0 1.06.45 1.06 1s-.4 1-1 1h-3.2" fill="#ad1519" stroke="#000" stroke-width=".37"/>
<path d="M190.3 206.47l-2.28.26c-.58.07-1.1-.32-1.18-.86-.07-.55.34-1.05.92-1.1l2.28-.28 2.32-.3c.57-.1 1.1.3 1.17.8.07.5-.35 1-.93 1.1l-2.3.3" fill="#058e6e" stroke="#000" stroke-width=".37"/>
<path d="M181.07 206.66c0-.55.47-1 1.05-1 .6 0 1.06.45 1.06 1 0 .56-.47 1-1.06 1-.58 0-1.05-.44-1.05-1" fill="#fff" stroke="#000" stroke-width=".37"/>
<path d="M174.06 208.48l1.17-1.53 3.23.4-2.6 1.9-1.8-.77" fill="#ad1519" stroke="#000" stroke-width=".37"/>
<path d="M222 206.47l2.26.26c.58.07 1.12-.32 1.2-.86.05-.55-.35-1.05-.93-1.1l-2.28-.28-2.32-.3c-.58-.1-1.1.3-1.18.8-.07.5.36 1 .93 1.1l2.3.3" fill="#058e6e" stroke="#000" stroke-width=".37"/>
<path d="M213.26 204.8c0-.54.47-.98 1.05-.98.6 0 1.1.44 1.1 1 0 .54-.4 1-1 1-.5 0-1-.46-1-1m15.9 1.84c0-.55.5-1 1.1-1 .6 0 1.1.46 1.1 1 0 .56-.4 1-1 1s-1.1-.44-1.1-1" fill="#fff" stroke="#000" stroke-width=".37"/>
<path d="M238.23 208.48l-1.17-1.53-3.23.4 2.58 1.9 1.9-.77" fill="#ad1519" stroke="#000" stroke-width=".37"/>
<path d="M177.3 212.8c7.45-2.1 17.58-3.4 28.82-3.4 11.24 0 21.4 1.3 28.86 3.4" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M182.32 183.76l1.34 1.07 2-3.26c-2.17-1.33-3.66-3.63-3.66-6.26 0-.2.02-.5.06-.8.2-4.1 5.28-7.6 11.7-7.6 3.35 0 6.37.9 8.5 2.4.05-.6.1-1.2.2-1.8-2.34-1.3-5.37-2.1-8.7-2.1-7.4 0-13.18 4.2-13.46 9.2-.03.3-.05.6-.05.9 0 2.7 1.22 5.1 3.13 6.7l-1.06 1.8" fill="#c8b100"/>
<path d="M182.32 183.76l1.34 1.07 2-3.26c-2.17-1.33-3.66-3.63-3.66-6.26 0-.2.02-.5.06-.8.2-4.1 5.28-7.6 11.7-7.6 3.35 0 6.37.9 8.5 2.4.05-.6.1-1.2.2-1.8-2.34-1.3-5.37-2.1-8.7-2.1-7.4 0-13.18 4.2-13.46 9.2-.03.3-.05.6-.05.9 0 2.7 1.22 5.1 3.13 6.7l-1.06 1.8" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M182.4 183.8c-2.52-1.9-4.1-4.45-4.1-7.27 0-3.25 2.14-6.15 5.37-8.08-2 1.6-3.2 3.67-3.37 6-.03.28-.05.57-.05.86 0 2.7 1.22 5.1 3.13 6.8l-.97 1.8" fill="#c8b100"/>
<path d="M182.4 183.8c-2.52-1.9-4.1-4.45-4.1-7.27 0-3.25 2.14-6.15 5.37-8.08-2 1.6-3.2 3.67-3.37 6-.03.28-.05.57-.05.86 0 2.7 1.22 5.1 3.13 6.8l-.97 1.8" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M160.12 187.1c-1.42-1.6-2.28-3.64-2.28-5.88 0-1.35.3-2.64.87-3.8 2.1-4.2 8.5-7.26 16.1-7.26 2.1 0 4.1.22 5.9.64-.4.45-.7.93-1 1.42a25.5 25.5 0 0 0-4.8-.45c-6.9 0-12.8 2.7-14.5 6.38a7.07 7.07 0 0 0-.7 3.07c0 2.23 1.1 4.23 2.7 5.6l-2.5 4.12-1.3-1.08 1.8-2.76" fill="#c8b100"/>
<path d="M160.12 187.1c-1.42-1.6-2.28-3.64-2.28-5.88 0-1.35.3-2.64.87-3.8 2.1-4.2 8.5-7.26 16.1-7.26 2.1 0 4.1.22 5.9.64-.4.45-.7.93-1 1.42a25.5 25.5 0 0 0-4.8-.45c-6.9 0-12.8 2.7-14.5 6.38a7.07 7.07 0 0 0-.7 3.07c0 2.23 1.1 4.23 2.7 5.6l-2.5 4.12-1.3-1.08 1.8-2.76z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M162.7 173.26c-1.83 1.16-3.22 2.58-4 4.17a8.6 8.6 0 0 0-.86 3.8c0 2.23.86 4.28 2.28 5.86l-1.54 2.4c-1.46-1.9-2.32-4.1-2.32-6.5 0-4.1 2.57-7.6 6.45-9.9" fill="#c8b100"/>
<path d="M162.7 173.26c-1.83 1.16-3.22 2.58-4 4.17a8.6 8.6 0 0 0-.86 3.8c0 2.23.86 4.28 2.28 5.86l-1.54 2.4c-1.46-1.9-2.32-4.1-2.32-6.5 0-4.1 2.57-7.6 6.45-9.9z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M206.04 164.42c1.7 0 3.14 1.12 3.5 2.62.22 1.32.36 2.83.4 4.44l-.02.5c0 .18.04.4.04.58.06 3.38.54 6.36 1.23 8.18l-5.2 4.93-5.2-4.93c.7-1.82 1.1-4.8 1.2-8.18v-1.08c0-1.6.1-3.12.4-4.45.3-1.5 1.8-2.62 3.5-2.62" fill="#c8b100"/>
<path d="M206.04 164.42c1.7 0 3.14 1.12 3.5 2.62.22 1.32.36 2.83.4 4.44l-.02.5c0 .18.04.4.04.58.06 3.38.54 6.36 1.23 8.18l-5.2 4.93-5.2-4.93c.7-1.82 1.1-4.8 1.2-8.18v-1.08c0-1.6.1-3.12.4-4.45.3-1.5 1.8-2.62 3.5-2.62z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M206.04 166.02c.88 0 1.62.56 1.8 1.34.2 1.25.35 2.68.38 4.2v.46l.02.57c.06 3.1.5 6 1.17 7.7l-3.4 3.2-3.4-3.2c.7-1.8 1.2-4.6 1.2-7.8 0-.2.1-.4.1-.6v-.5a28.14 28.14 0 0 1 .4-4.2c.2-.8 1-1.4 1.9-1.4" fill="#c8b100"/>
<path d="M206.04 166.02c.88 0 1.62.56 1.8 1.34.2 1.25.35 2.68.38 4.2v.46l.02.57c.06 3.1.5 6 1.17 7.7l-3.4 3.2-3.4-3.2c.7-1.8 1.2-4.6 1.2-7.8 0-.2.1-.4.1-.6v-.5a28.14 28.14 0 0 1 .4-4.2c.2-.8 1-1.4 1.9-1.4z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M229.7 183.76l-1.32 1.07-2-3.26c2.17-1.33 3.66-3.63 3.66-6.26a7.08 7.08 0 0 0-.06-.8c-.2-4.1-5.28-7.6-11.72-7.6-3.34 0-6.36.9-8.48 2.4a23 23 0 0 0-.2-1.8c2.33-1.3 5.37-2.1 8.68-2.1 7.4 0 13.2 4.2 13.48 9.2.03.3.04.6.04.9 0 2.7-1.2 5.1-3.13 6.7l1.06 1.8" fill="#c8b100"/>
<path d="M229.7 183.76l-1.32 1.07-2-3.26c2.17-1.33 3.66-3.63 3.66-6.26a7.08 7.08 0 0 0-.06-.8c-.2-4.1-5.28-7.6-11.72-7.6-3.34 0-6.36.9-8.48 2.4a23 23 0 0 0-.2-1.8c2.33-1.3 5.37-2.1 8.68-2.1 7.4 0 13.2 4.2 13.48 9.2.03.3.04.6.04.9 0 2.7-1.2 5.1-3.13 6.7l1.06 1.8" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M229.63 183.8c2.52-1.9 4.1-4.45 4.1-7.27 0-3.25-2.14-6.15-5.36-8.08 2 1.6 3.2 3.67 3.37 6 .03.28.04.57.04.86 0 2.7-1.2 5.1-3.13 6.8l.98 1.8" fill="#c8b100"/>
<path d="M229.63 183.8c2.52-1.9 4.1-4.45 4.1-7.27 0-3.25-2.14-6.15-5.36-8.08 2 1.6 3.2 3.67 3.37 6 .03.28.04.57.04.86 0 2.7-1.2 5.1-3.13 6.8l.98 1.8" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M251.92 187.1c1.4-1.6 2.28-3.64 2.28-5.88a8.65 8.65 0 0 0-.88-3.8c-2.05-4.2-8.46-7.26-16.08-7.26-2.08 0-4.07.22-5.9.64.4.45.73.93 1.04 1.42a25.45 25.45 0 0 1 4.85-.45c6.98 0 12.83 2.7 14.5 6.38.47.93.72 1.98.72 3.07 0 2.23-1.05 4.23-2.68 5.6l2.52 4.12 1.3-1.08-1.8-2.76" fill="#c8b100"/>
<path d="M251.92 187.1c1.4-1.6 2.28-3.64 2.28-5.88a8.65 8.65 0 0 0-.88-3.8c-2.05-4.2-8.46-7.26-16.08-7.26-2.08 0-4.07.22-5.9.64.4.45.73.93 1.04 1.42a25.45 25.45 0 0 1 4.85-.45c6.98 0 12.83 2.7 14.5 6.38.47.93.72 1.98.72 3.07 0 2.23-1.05 4.23-2.68 5.6l2.52 4.12 1.3-1.08-1.8-2.76z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M249.33 173.26c1.83 1.16 3.23 2.58 4 4.17a8.7 8.7 0 0 1 .87 3.8c0 2.23-.87 4.28-2.28 5.86l1.53 2.4c1.47-1.9 2.32-4.1 2.32-6.5 0-4.1-2.56-7.6-6.44-9.9" fill="#c8b100"/>
<path d="M249.33 173.26c1.83 1.16 3.23 2.58 4 4.17a8.7 8.7 0 0 1 .87 3.8c0 2.23-.87 4.28-2.28 5.86l1.53 2.4c1.47-1.9 2.32-4.1 2.32-6.5 0-4.1-2.56-7.6-6.44-9.9z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M204.2 181.38c0-.96.83-1.73 1.84-1.73 1 0 1.82.77 1.82 1.73 0 .95-.82 1.73-1.83 1.73-1 0-1.83-.7-1.83-1.7" fill="#fff"/>
<path d="M204.2 181.38c0-.96.83-1.73 1.84-1.73 1 0 1.82.77 1.82 1.73 0 .95-.82 1.73-1.83 1.73-1 0-1.83-.7-1.83-1.7z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M204.2 177.98c0-.95.83-1.73 1.84-1.73 1 0 1.82.78 1.82 1.73 0 .96-.82 1.73-1.83 1.73-1 0-1.83-.7-1.83-1.7m.37-3.6c0-.7.66-1.4 1.46-1.4.8 0 1.46.6 1.46 1.4 0 .8-.7 1.4-1.5 1.4s-1.5-.6-1.5-1.4m.4-3.3c0-.5.5-1 1-1 .6 0 1 .5 1 1s-.5 1-1.1 1c-.6 0-1.1-.4-1.1-1m.2-2.8c0-.4.4-.8.8-.8s.8.4.8.8c0 .5-.4.8-.9.8s-.8-.3-.8-.8" fill="#fff" stroke="#000" stroke-width=".37"/>
<path d="M206.2 191.8l1.18.2c-.2.5-.23 1-.23 1.56 0 2.47 2.1 4.47 4.72 4.47 2.1 0 3.87-1.3 4.48-3.08.07.04.45-1.62.65-1.6.17.02.15 1.73.2 1.7.3 2.25 2.37 3.78 4.7 3.78 2.6 0 4.7-2 4.7-4.47 0-.18 0-.37-.03-.54l1.48-1.47.8 1.87c-.33.6-.45 1.24-.45 1.95 0 2.36 2 4.26 4.5 4.26 1.57 0 2.94-.75 3.75-1.9l.94-1.2v1.48c0 1.5.6 2.9 2 3.1 0 0 1.6.1 3.8-1.6s3.4-3.1 3.4-3.1l.2 1.8s-1.9 2.9-3.9 4c-1.1.6-2.8 1.3-4.1 1.1-1.4-.2-2.4-1.3-2.9-2.6a6.72 6.72 0 0 1-3.4.9c-2.7 0-5.1-1.4-6.1-3.7-1.3 1.4-3 2.2-5 2.2-2.2 0-4.2-1-5.4-2.4a6.93 6.93 0 0 1-4.7 1.8c-2.4 0-4.5-1.2-5.7-2.9-1.2 1.8-3.4 3-5.7 3a6.94 6.94 0 0 1-4.7-1.8c-1.2 1.5-3.2 2.5-5.4 2.5-2 0-3.8-.8-5-2.2-1 2.2-3.4 3.7-6.1 3.7a6.7 6.7 0 0 1-3.4-.9c-.5 1.3-1.5 2.4-2.9 2.6-1.3.2-3-.4-4.1-1.1-2-1.1-3.8-4-3.8-4l.2-1.7s1.2 1.5 3.4 3.2 3.8 1.7 3.8 1.7c1.4-.2 2-1.5 2-3v-1.5l.9 1.2c.8 1.2 2.2 1.9 3.8 1.9 2.5 0 4.5-1.9 4.5-4.2 0-.7-.1-1.4-.4-2l.7-1.8 1.5 1.5a4.44 4.44 0 0 0-.1.6c0 2.5 2.1 4.5 4.7 4.5 2.3 0 4.4-1.5 4.7-3.7 0 0 0-1.7.2-1.7s.6 1.6.6 1.6c.6 1.8 2.4 3.1 4.5 3.1 2.6 0 4.7-2 4.7-4.4 0-.5 0-1.1-.2-1.5l1.2-.2" fill="#c8b100" stroke="#000" stroke-width=".37"/>
<path d="M238.6 197.68c.27-.8.03-1.6-.55-1.77-.57-.1-1.27.4-1.54 1.2-.2.8 0 1.6.6 1.8.6.2 1.3-.3 1.6-1.1m-20.5-3.9c.1-.8-.3-1.5-.9-1.6-.6 0-1.2.6-1.3 1.4-.1.9.3 1.6.9 1.7.6.1 1.2-.6 1.3-1.4m-23.8 0c-.1-.8.3-1.5.9-1.6.6 0 1.2.6 1.3 1.4.1.9-.3 1.6-.9 1.7-.6.1-1.1-.5-1.2-1.4m-20.5 4c-.2-.8 0-1.6.6-1.7.6-.2 1.3.4 1.6 1.1.3.8.1 1.6-.5 1.8-.5.2-1.2-.3-1.5-1.1" fill="#fff" stroke="#000" stroke-width=".37"/>
<path d="M182.65 183.98c1.02.65 1.9 1.72 2.2 2.92.02 0 .14-.25.7-.57.56-.32 1.04-.3 1.04-.3l-.3 1.25c-.1.33-.1 1.33-.3 2.23-.2.9-.6 1.7-.6 1.7a1.9 1.9 0 0 0-1.5-.4 1.83 1.83 0 0 0-1.3.9s-.7-.5-1.2-1.3c-.6-.7-.9-1.7-1.1-2-.2-.2-.7-1.1-.7-1.1s.4-.1 1.1 0c.6.1.8.3.8.3-.1-1.2.3-2.5 1-3.4" fill="#c8b100" stroke="#000" stroke-width=".37"/>
<path d="M183.08 193.78a1.75 1.75 0 0 1-.65-1.03c-.08-.42 0-.84.23-1.18 0 0-.85-.43-1.77-.67-.7-.18-1.9-.18-2.3-.2l-1.1-.02s0 .17.2.53c.2.5.4.8.4.8-1.2.3-2.3 1.1-2.9 2 .9.7 2.2 1.1 3.4 1 0 0-.1.4-.2.9-.1.4-.1.6-.1.6l1-.4c.3-.1 1.5-.5 2.1-.9.8-.5 1.4-1.2 1.4-1.2m2.7-.4a1.65 1.65 0 0 0 .2-1.2 1.72 1.72 0 0 0-.7-1s.6-.6 1.4-1.2c.6-.4 1.7-.8 2.1-.9l1-.4s0 .2-.1.6a5.74 5.74 0 0 1-.2.9c1.2-.1 2.5.3 3.4.9-.6.9-1.7 1.7-2.9 2a6.44 6.44 0 0 0 .7 1.3h-1.1c-.4 0-1.6 0-2.3-.2-.9-.2-1.8-.7-1.8-.7" fill="#c8b100" stroke="#000" stroke-width=".37"/>
<path d="M182.2 192.43c0-1.1.92-1.97 2.07-1.97s2.08.88 2.08 1.97c0 1.1-.93 1.97-2.08 1.97s-2.08-.88-2.08-1.97" fill="#ad1519" stroke="#000" stroke-width=".37"/>
<path d="M206.1 180.83c1 .9 1.78 2.26 1.88 3.66 0 0 .18-.3.87-.6.7-.3 1.23-.2 1.23-.2s-.37 1-.53 1.3c-.16.3-.37 1.4-.8 2.4a8.23 8.23 0 0 1-1 1.7 2.13 2.13 0 0 0-1.62-.7c-.64 0-1.22.3-1.6.7 0 0-.6-.7-1-1.7-.44-1-.65-2.1-.8-2.4-.17-.4-.55-1.4-.55-1.4s.54-.1 1.23.1c.7.2.9.5.9.5.1-1.4.8-2.8 1.8-3.7" fill="#c8b100" stroke="#000" stroke-width=".37"/>
<path d="M204.56 191.84a1.92 1.92 0 0 1-.5-1.28c0-.48.18-.93.48-1.27 0 0-.85-.7-1.82-1.1-.73-.4-2.1-.6-2.5-.7l-1.22-.3s.04.2.2.6c.2.5.38.9.38.9-1.4 0-2.74.7-3.66 1.7.92.9 2.24 1.5 3.66 1.6 0 0-.2.3-.38.9-.16.4-.2.6-.2.6l1.23-.3c.4-.1 1.76-.3 2.5-.7.96-.5 1.83-1.1 1.83-1.1m3.13 0c.3-.4.5-.8.5-1.3s-.2-1-.5-1.3c0 0 .8-.7 1.8-1.1.7-.4 2.1-.6 2.5-.7l1.2-.2s0 .2-.2.7c-.2.5-.4.8-.4.8 1.4.1 2.7.8 3.6 1.7-.9.9-2.3 1.6-3.7 1.7 0 0 .2.3.3.9l.2.6-1.3-.2c-.4-.1-1.8-.3-2.5-.7-1-.4-1.8-1.1-1.8-1.1m21.9-7.9c-1 .6-1.9 1.7-2.2 2.9 0 0-.1-.3-.7-.6s-1-.3-1-.3.1.9.2 1.2c.1.3.1 1.3.3 2.2.2.9.6 1.6.6 1.6a1.9 1.9 0 0 1 1.5-.4c.6.1 1 .4 1.3.9 0 0 .6-.6 1.1-1.4.5-.8.9-1.7 1.1-2l.7-1.1s-.5-.2-1.1-.1c-.7.1-.9.3-.9.3.1-1.3-.3-2.5-1-3.5m-.3 10c.3-.3.5-.6.6-1a1.64 1.64 0 0 0-.2-1.2s.8-.5 1.7-.7c.7-.2 1.9-.2 2.3-.2l1.1-.1s0 .2-.2.5a6.2 6.2 0 0 1-.4.8c1.2.3 2.3 1.1 2.9 2-.9.7-2.2 1.1-3.4 1 0 0 .1.4.2.9v.6l-1-.4c-.3-.1-1.5-.5-2.1-.9-.8-.5-1.5-1.2-1.5-1.2m-2.8-.5a1.67 1.67 0 0 1-.2-1.2c.1-.4.3-.8.6-1 0 0-.7-.7-1.4-1.2-.6-.4-1.8-.8-2.1-.9a171.4 171.4 0 0 1-1-.4v.6c0 .5.2.8.2.8-1.3-.2-2.6.2-3.5.9.7.9 1.7 1.7 2.9 2l-.5.7c-.2.4-.2.5-.2.5h1.1c.3 0 1.5-.1 2.2-.2a11.12 11.12 0 0 0 1.7-.7" fill="#c8b100" stroke="#000" stroke-width=".37"/>
<path d="M225.98 192.43c0-1.1.93-1.97 2.08-1.97s2.08.88 2.08 1.97c0 1.1-.93 1.97-2.08 1.97s-2.08-.88-2.08-1.97m23.27 4.38c-.5-.5-1.5-.4-2.26.3-.8.7-1 1.6-.5 2.1s1.5.4 2.2-.2c.7-.6 1-1.6.5-2.1" fill="#ad1519" stroke="#000" stroke-width=".37"/>
<path d="M246.3 198.06c.1-.35.34-.7.68-1 .76-.66 1.78-.77 2.27-.25l.17.3s1.05-2 2.3-2.6c1.25-.6 3.37-.5 3.37-.5 0-1.5-1.3-2.7-2.9-2.7-1 0-1.9.4-2.4 1.1l-.2-1s-1.3.3-1.9 1.8c-.6 1.5 0 3.7 0 3.7s-.3-.9-.8-1.5-1.8-1.3-2.4-1.6c-.7-.3-1.3-.7-1.3-.7s-.1.2-.1.6a4.9 4.9 0 0 0 0 .8c-1.2-.1-2.6 0-3.7.5.4.9 1.3 1.8 2.5 2.2l-.8.8a3.94 3.94 0 0 0-.4.5l1.2.2c.4.1 1.7.3 2.6.3a14.5 14.5 0 0 0 1.6-.2m-80.3 0c-.1-.3-.4-.7-.7-1-.8-.6-1.8-.7-2.3-.2l-.2.3s-1.1-2-2.3-2.7c-1.3-.7-3.4-.5-3.4-.5 0-1.6 1.3-2.8 2.9-2.8.9 0 1.8.4 2.4 1.1l.2-1.1s1.3.3 1.9 1.8c.6 1.5-.1 3.7-.1 3.7s.3-.9.8-1.5 1.7-1.3 2.4-1.6c.6-.3 1.3-.7 1.3-.7v1.4c1.2-.1 2.6.1 3.6.5-.5 1-1.4 1.8-2.5 2.2l.8.8c.3.3.4.5.4.5l-1.2.2c-.5.1-1.8.3-2.6.3a14.66 14.66 0 0 1-1.7-.2" fill="#c8b100" stroke="#000" stroke-width=".37"/>
<path d="M163.08 196.8c.5-.5 1.5-.4 2.27.25.76.64.97 1.6.5 2.1-.5.52-1.52.4-2.28-.24-.76-.6-.98-1.5-.5-2.1m40.98-6.2c0-1.1.93-1.9 2.08-1.9s2.08.9 2.08 2c.1 1.1-.9 2-2 2s-2.1-.9-2.1-1.9" fill="#ad1519" stroke="#000" stroke-width=".37"/>
<path d="M201.8 160.6c0-2.22 1.9-4.02 4.25-4.02s4.25 1.8 4.25 4.03c0 2.3-1.9 4.1-4.25 4.1-2.34 0-4.25-1.8-4.25-4" fill="#005bbf" stroke="#000" stroke-width=".25"/>
<path d="M204.94 149.32v2.17h-2.33v2.2h2.4v6.3h-3c0 .2-.2.3-.2.5 0 .5.1 1.1.4 1.5h7.9c.2-.5.4-1 .4-1.6 0-.2-.2-.4-.2-.6h-2.8v-6.4h2.4v-2.2h-2.4V149H205z" fill="#c8b100" stroke="#000" stroke-width=".25"/>
<path d="M206.47 330.56c-12.55 0-25-3.08-35.47-8.2-7.7-3.82-12.82-11.52-12.82-20.34v-31.97h96.4v31.97c0 8.82-5.1 16.52-12.83 20.34-10.46 5.12-22.7 8.2-35.28 8.2" fill="#ccc"/>
<path d="M206.47 330.56c-12.55 0-25-3.08-35.47-8.2-7.7-3.82-12.82-11.52-12.82-20.34v-31.97h96.4v31.97c0 8.82-5.1 16.52-12.83 20.34-10.46 5.12-22.7 8.2-35.28 8.2z" fill="none" stroke="#000" stroke-width=".5"/>
<path d="M206.27 270h48.3v-53.5h-48.3V270z" fill="#ccc"/>
<path d="M206.27 270h48.3v-53.5h-48.3V270z" fill="none" stroke="#000" stroke-width=".5"/>
<path d="M206.3 301.98c0 12.64-10.7 22.88-24.04 22.88s-24.15-10.24-24.15-22.88v-32h48.2v32" fill="#ad1519"/>
<path d="M168.64 320.86c1.5.8 3.57 2.13 5.78 2.66l-.14-54.68h-5.64v52.02z" fill="#c8b100" stroke="#000" stroke-width=".5"/>
<path d="M158.03 301.55c.15 6.75 2.83 11.76 5.5 15.05v-47.5h-5.43l-.07 32.45z" fill="#c8b100" stroke="#000" stroke-width=".48" stroke-linejoin="round"/>
<path d="M179.38 324.72a26.58 26.58 0 0 0 5.65 0v-55.88h-5.65v55.88z" fill="#c7b500" stroke="#000" stroke-width=".5"/>
<path d="M190 323.52c2.2-.44 4.7-1.82 5.78-2.53v-52.2h-5.65l-.13 54.7z" fill="#c8b100" stroke="#000" stroke-width=".5"/>
<path d="M158.1 270h48.2v-53.5h-48.2V270z" fill="#ad1519"/>
<path d="M158.1 270h48.2v-53.5h-48.2V270z" fill="none" stroke="#000" stroke-width=".5"/>
<path d="M201.02 316.07c2.35-2.1 4.56-6.84 5.36-12.25l.14-34.98h-5.64l.14 47.23z" fill="#c8b100" stroke="#000" stroke-width=".5"/>
<path d="M206.3 301.98c0 12.64-10.7 22.88-24.04 22.88s-24.15-10.24-24.15-22.88v-32h48.2v32" fill="none" stroke="#000" stroke-width=".5"/>
<path d="M254.62 269.97v32c0 12.65-10.82 22.9-24.16 22.9s-24.16-10.25-24.16-22.9v-32h48.32" fill="#ad1519"/>
<path d="M254.62 269.97v32c0 12.65-10.82 22.9-24.16 22.9s-24.16-10.25-24.16-22.9v-32h48.32" fill="none" stroke="#000" stroke-width=".5"/>
<path d="M215.1 294.13c.07.17.1.33.1.5 0 .6-.5 1.06-1.1 1.06-.63 0-1.13-.5-1.13-1.1 0-.2.04-.4.12-.5h-1.6c-.1.1-.1.3-.1.5 0 1.1.7 2 1.8 2.3v3.8h1.6V297a2.56 2.56 0 0 0 1.6-1.56h4.5v-1.3H215m21.67 0v1.3h-3.98a2.55 2.55 0 0 1-.3.5l4.6 5.24-1.2 1-4.6-5.25c-.1.03-.1.06-.2.08l-.1 8.7h-1.7V297l-.2-.1-4.8 5.3-1.3-1 4.7-5.3a2.13 2.13 0 0 1-.2-.45h-4.1v-1.3h13zm2.64 0v1.3h4.5c.3.73.9 1.3 1.6 1.55v3.8h1.7V297c1.1-.3 1.9-1.26 1.9-2.37v-.5h-1.5c.1.17.1.33.1.5 0 .6-.5 1.06-1.1 1.06-.6 0-1.1-.5-1.1-1.1a.98.98 0 0 1 .1-.5h-5.9m-6.6 22.1c1.3-.2 2.5-.6 3.7-1.1l.8 1.3a17.6 17.6 0 0 1-4.3 1.2c-.3 1.1-1.3 1.9-2.6 1.9-1.2 0-2.3-.9-2.5-2a17.52 17.52 0 0 1-4.5-1.2l.8-1.4c1.2.5 2.6.8 3.9 1 .3-.6.8-1.1 1.5-1.4V308h1.6v6.7c.7.2 1.3.7 1.6 1.35zm-11.1-2.2l-.8 1.3a16.65 16.65 0 0 1-3.6-3.1c-.8.2-1.8.1-2.5-.5-1.1-.9-1.2-2.4-.3-3.5l.2-.1a15.27 15.27 0 0 1-1.2-4.8h1.6a13.13 13.13 0 0 0 1.1 4.1c.5-.1 1 0 1.4.1l4.1-4.6 1.2 1-4.1 4.5c.6.8.5 1.9-.1 2.7a15.17 15.17 0 0 0 3.1 2.6zm-6.1-4.8c.4-.5 1.2-.5 1.6-.1.5.4.6 1.1.1 1.5a1.17 1.17 0 0 1-1.6.1 1.03 1.03 0 0 1-.1-1.5zm-2-4.5l-1.7-.4-.2-4.3 1.7-.6v2.4c0 .9 0 1.8.2 2.7zm1.4-5.3l1.7.4.1 2.1.2 2.1-1.7.6c-.2-.9-.2-1.8-.2-2.7v-2.5zm5.6 13.7a15.67 15.67 0 0 0 4.8 2.6l.4-1.6a13.7 13.7 0 0 1-4-2l-1.2 1m-.9 1.4a17.4 17.4 0 0 0 4.8 2.5l-1.2 1.2a18.7 18.7 0 0 1-3.9-2.1l.4-1.7m2.2-9.5l1.6.7 3-3.3-.9-1.4-3.5 3.9m-1.2-1l-.9-1.4 3-3.3 1.6.6-3.5 3.9m18.1 9.9l.8 1.4a16.7 16.7 0 0 0 3.7-3.1c.9.2 1.8.1 2.5-.5 1.1-.9 1.2-2.5.3-3.5l-.1-.1a15.04 15.04 0 0 0 1.3-4.8h-2a13.27 13.27 0 0 1-1 4.1 2.92 2.92 0 0 0-1.4.2l-4.1-4.6-1.2 1 4.1 4.6a2.36 2.36 0 0 0 .1 2.7 15.1 15.1 0 0 1-3.1 2.6zm6.1-4.8a1.16 1.16 0 0 0-1.6-.1 1.02 1.02 0 0 0-.1 1.5 1.17 1.17 0 0 0 1.6.1 1.02 1.02 0 0 0 .1-1.5zm2.1-4.5l1.7-.4.2-4.3-1.7-.5v2.5c0 .9-.1 1.8-.3 2.7zm-1.4-5.3l-1.7.4-.1 2.1c0-.7-.2 2.2-.2 2.2l1.7.6c.2-.9.2-1.8.2-2.7V299m-5.6 13.7a15.72 15.72 0 0 1-4.8 2.55l-.4-1.6a13.67 13.67 0 0 0 4-2l1.2 1.1m.8 1.4a17.45 17.45 0 0 1-4.8 2.5l1.3 1.2c1.4-.5 2.7-1.2 4-2l-.3-1.7m-2.2-9.44l-1.6.7-2.9-3.3.9-1.4 3.6 3.9m1.2-1l.9-1.4-2.9-3.2-1.6.7 3.6 4M220 295l.5 1.6h4.5l.5-1.6H220m21.1 0l-.44 1.6H236l-.5-1.6h5.5m-11.73 22c0-.6.5-1.05 1.14-1.05.6 0 1.1.5 1.1 1.08 0 .6-.5 1.1-1.1 1.1-.6 0-1.1-.5-1.1-1.06zm1.9-7.73l1.7-.5v-4.3l-1.7-.45v5.3m-1.6 0l-1.7-.5v-4.3l1.7-.5v5.2" fill="#c8b100"/>
<path d="M211.52 294.17c.2-.9.9-1.62 1.8-1.9l-.02-5.27h1.63v5.3c.8.27 1.42.86 1.67 1.62h4.4v.25h-5.9a1.16 1.16 0 0 0-1-.56c-.45 0-.83.3-1 .6h-1.58m12.2 0v-.2h4.08a2.37 2.37 0 0 1 .18-.3l-5.03-5.6 1.23-1 4.97 5.5c.1 0 .18-.1.27-.1V285h1.63v7.3l.26.06 4.9-5.53 1.3 1-4.8 5.5c.2.18.2.4.3.6h4v.24h-13.1zm21.6 0a1.15 1.15 0 0 1 1-.5c.44 0 .8.3 1 .6h1.56c-.2-.9-.88-1.6-1.78-1.9V287h-1.62v5.32c-.8.25-1.42.84-1.67 1.6h-4.3v.25h5.9m-30.1-14.92l6.1 6.8 1.3-1-6.1-6.77c.2-.18.2-.38.3-.6h4.4v-1.54h-4.4c-.3-1-1.3-1.72-2.5-1.72-1.4 0-2.6 1.12-2.6 2.5 0 1.08.7 2 1.8 2.35v5.23h1.6v-5.2c.1-.02.2-.02.3-.05zm32 .04v5.2h-1.6v-5.3a2.45 2.45 0 0 1-.3-.2l-6 6.8-1.2-1 6.1-6.9-.1-.3h-4.5V276h4.4c.4-1 1.3-1.7 2.5-1.7 1.5 0 2.6 1.1 2.6 2.5 0 1.1-.7 2.04-1.8 2.36zm-16-.1v3.2h-1.6v-3.2a2.57 2.57 0 0 1-1.7-1.6h-4V276h4c.4-1 1.4-1.7 2.5-1.7s2.2.7 2.5 1.7h4v1.56h-4a2.53 2.53 0 0 1-1.6 1.57zm-17.7 3.9l-1.7.4v4.3l1.7.4V283m1.6 0l1.7.5v4.3l-1.7.45v-5.22m30.5 0l-1.7.5v4.3l1.7.45v-5.24m1.7 0l1.7.5v4.3l-1.7.42V283m-25.5.9l1.6-.68 2.9 3.27-.9 1.4-3.6-4m-1.2 1l-.9 1.4 3 3.2 1.6-.7-3.6-4m18.5-1.2l-1.6-.7-2.9 3.3 1 1.4 3.5-4.1m1.3 1l1 1.4-2.9 3.2-1.6-.7 3.5-4m-20.4 9.1l.5-1.6h4.5l.5 1.6H220m-6.63-17.1c0-.6.5-1.1 1.1-1.1.66 0 1.16.5 1.16 1 0 .6-.5 1.1-1.1 1.1-.6 0-1.1-.5-1.1-1.1zm12.1.8l-.5 1.6h-4.5l-.5-1.6h5.53m0-1.6l-.5-1.6h-4.55l-.5 1.6h5.54m15.6 17.8l-.5-1.6h-4.5l-.5 1.6h5.4m4.4-17c0-.6.5-1.1 1.1-1.1.6 0 1.1.5 1.1 1.1 0 .6-.5 1.1-1.2 1.1-.6 0-1.1-.5-1.1-1.1zm-16.2 0c0-.6.5-1.1 1.1-1.1.6 0 1.1.5 1.1 1.1 0 .6-.5 1.1-1.1 1.1-.6 0-1.1-.5-1.1-1.1zm6.2.8l.5 1.6h4.5l.5-1.6h-5.5m0-1.6l.5-1.6h4.5l.5 1.6h-5.5m-5.9 5l-1.7.5v4.3l1.7.4v-5m1.6 0l1.7.4v4.3l-1.7.5v-5" fill="#c8b100"/>
<path d="M232.74 316.25c1.3-.2 2.48-.56 3.65-1.05l.8 1.37a17.6 17.6 0 0 1-4.4 1.23c-.3 1.12-1.3 1.96-2.6 1.96s-2.3-.83-2.6-1.95a17.52 17.52 0 0 1-4.6-1.2l.8-1.3c1.2.6 2.5.9 3.9 1.1.3-.6.8-1.1 1.5-1.3v-6.7h1.6v6.7c.7.2 1.3.7 1.6 1.4zm-4.7-20.38a2.28 2.28 0 0 1-.2-.44h-4.1v-1.54h4.07a2.6 2.6 0 0 1 .2-.4l-5-5.6 1.3-1 5 5.5a2.16 2.16 0 0 1 .3-.1v-7.4h1.6v7.3h.3l4.9-5.5 1.3 1-4.9 5.5c.1.1.2.3.3.6h3.9v1.5h-4l-.2.5 4.6 5.2-1.2 1-4.6-5.3-.2.1v8.6h-1.6v-8.8l-.2-.1-4.7 5.3-1.2-1 4.8-5.3m-13-16.6l6.1 6.8 1.3-1-6-6.8.3-.6h4.5V276H217c-.35-1-1.35-1.7-2.5-1.7-1.46 0-2.64 1.1-2.64 2.5 0 1.1.7 2 1.76 2.34v5.22h1.6v-5.2c.1 0 .2 0 .3-.05zm6.5 34.7l-.8 1.4a16.65 16.65 0 0 1-3.6-3.1c-.8.2-1.8.1-2.5-.5-1.1-.9-1.2-2.5-.3-3.5l.1-.2a15.27 15.27 0 0 1-1.2-4.8h1.6a13.13 13.13 0 0 0 1.1 4.1c.4-.1.9 0 1.4.1l4.1-4.6 1.2 1-4.1 4.5c.5.8.5 1.9-.1 2.7a15.17 15.17 0 0 0 3.1 2.7zm-8.4-13.1V297c-1-.3-1.8-1.26-1.8-2.37 0-1.1.7-2.06 1.8-2.38v-5.27h1.6v5.3c.8.25 1.4.84 1.6 1.6h4.4v1.55h-4.4A2.56 2.56 0 0 1 215 297v3.83h-1.66m2.33 8.36c.4-.5 1.1-.5 1.58-.1s.54 1 .14 1.5a1.17 1.17 0 0 1-1.6.1 1.03 1.03 0 0 1-.1-1.5zm-2.07-4.5l-1.7-.4-.24-4.3 1.68-.6v2.4c0 .9.1 1.8.26 2.7zm1.4-5.3l1.67.4s.1 2.7.05 2.1l.17 2.1-1.7.5c-.2-.9-.3-1.8-.3-2.7v-2.6zm5.53 13.7a15.67 15.67 0 0 0 4.82 2.5l.37-1.6a13.7 13.7 0 0 1-4-2l-1.2 1m-.84 1.4a17.4 17.4 0 0 0 4.84 2.5l-1.25 1.2a18.7 18.7 0 0 1-3.96-2.1l.4-1.7" fill="none" stroke="#c8b100" stroke-width=".25"/>
<path d="M221.87 305.1l1.6.68 2.94-3.26-.9-1.4-3.6 3.98m-1.2-1l-.9-1.4 3-3.26 1.6.68-3.5 3.97m-7.6-9.5c0-.6.5-1.1 1.2-1.1.6 0 1.1.5 1.1 1 0 .6-.5 1-1.1 1-.6 0-1.1-.5-1.1-1.1zM239 314l.8 1.3a16.7 16.7 0 0 0 3.66-3.1c.84.2 1.8.1 2.5-.5 1.1-.9 1.2-2.5.3-3.5l-.15-.1a15.04 15.04 0 0 0 1.3-4.8h-1.6a13.27 13.27 0 0 1-1.1 4.1 2.92 2.92 0 0 0-1.4.1l-4.1-4.6-1.2 1 4.1 4.5a2.36 2.36 0 0 0 .1 2.75 15.1 15.1 0 0 1-3.1 2.6zm8.43-13.2V297c1.06-.3 1.83-1.25 1.83-2.36 0-1.1-.8-2.07-1.84-2.4V287h-1.6v5.3c-.8.26-1.42.85-1.67 1.6l-4.35.02v1.54h4.4c.26.73.86 1.3 1.63 1.55v3.9h1.67zm-2.33 8.3a1.16 1.16 0 0 0-1.6-.1 1.02 1.02 0 0 0-.1 1.5 1.17 1.17 0 0 0 1.53.1 1.02 1.02 0 0 0 .1-1.5zm2.02-4.5l1.7-.4.2-4.3-1.7-.6v2.4c0 .9-.1 1.8-.26 2.7zm-1.4-5.3l-1.7.4-.07 2.1-.2 2.1 1.7.6c.14-.9.2-1.8.2-2.7v-2.6m1.65-20.16v5.2h-1.66v-5.2a2.25 2.25 0 0 1-.36-.17l-6 6.8-1.23-1 6.1-6.9c-.03-.1-.1-.2-.12-.34h-4.43V276h4.5c.32-1 1.3-1.73 2.5-1.73 1.4 0 2.6 1.1 2.6 2.5 0 1.1-.77 2.08-1.8 2.4zm-16.08 0l-.02 3.2h-1.62v-3.2a2.57 2.57 0 0 1-1.7-1.6h-3.93V276h3.97c.34-1 1.32-1.7 2.5-1.7s2.14.7 2.5 1.7h4.03v1.55h-4a2.52 2.52 0 0 1-1.67 1.55zM240 313a15.72 15.72 0 0 1-4.82 2.56l-.33-1.6a13.67 13.67 0 0 0 4-2l1.2 1.06m.88 1.44a17.45 17.45 0 0 1-4.8 2.58l1.24 1.17c1.4-.5 2.74-1.2 3.96-2l-.4-1.7m-27.4-31.4l-1.7.5v4.3l1.7.5v-5.2m1.65 0l1.68.5v4.3l-1.68.5v-5.2m30.5 0l-1.7.5v4.2l1.66.5v-5.2" fill="none" stroke="#c8b100" stroke-width=".25"/>
<path d="M247.1 283.14l1.7.48v4.28l-1.7.46v-5.22m-8.56 21.96l-1.6.68-2.94-3.26.96-1.4 3.58 3.98m1.25-1l.9-1.4-3-3.26-1.6.68 3.6 3.97M221.5 284l1.6-.7 2.95 3.23-1 1.4-3.58-3.98m-1.25 1l-.96 1.4 2.93 3.2 1.6-.7-3.6-3.96m18.4-1.2l-1.6-.7-2.9 3.2.9 1.4 3.5-4m1.2 1l1 1.4-3 3.2-1.6-.7 3.5-4m-20.4 9l.5-1.6h4.5l.5 1.6h-5.5m0 1.5l.5 1.6h4.5l.5-1.6h-5.5m-6.6-18.6c0-.6.5-1.1 1.1-1.1.6 0 1.1.5 1.1 1.1 0 .6-.5 1-1.2 1-.6 0-1.1-.5-1.1-1.1zm12.1.7l-.5 1.6H220l-.5-1.6h5.53m0-1.6l-.5-1.6h-4.5l-.5 1.6h5.5m20.02 18.5c0-.6.5-1.1 1.1-1.1.63 0 1.13.4 1.13 1s-.5 1-1.1 1c-.6 0-1.1-.5-1.1-1.1zm-4.4-.7l-.5-1.6h-4.5l-.5 1.6h5.5m0 1.5l-.5 1.6h-4.5l-.5-1.6h5.5m-11.6 21.9c0-.6.5-1.1 1.1-1.1.63 0 1.13.5 1.13 1.1 0 .6-.5 1-1.1 1-.6 0-1.1-.5-1.1-1.1zm1.9-7.8l1.7-.5v-4.3l-1.7-.5v5.2m-1.65 0l-1.7-.5V304l1.7-.5v5.3m15.74-32.62c0-.5.5-1 1.13-1 .62 0 1.12.5 1.12 1.06 0 .6-.5 1.1-1.2 1.1s-1.2-.5-1.2-1zm-16.1 0c0-.5.5-1 1.1-1 .63 0 1.13.5 1.13 1.06 0 .6-.5 1.1-1.12 1.1-.6 0-1.1-.5-1.1-1zm6.25.8l.5 1.6h4.5l.5-1.6h-5.5m0-1.5l.5-1.6h4.5l.5 1.6h-5.5m-5.9 5l-1.7.5v4.3l1.7.44v-5m1.6 0l1.7.45v4.3l-1.7.47v-5" fill="none" stroke="#c8b100" stroke-width=".25"/>
<path d="M227.7 294.66c0-1.38 1.17-2.5 2.62-2.5 1.44 0 2.62 1.12 2.62 2.5 0 1.37-1.18 2.48-2.62 2.48-1.45 0-2.63-1.1-2.63-2.48" fill="#058e6e"/>
<path d="M230.9 229.7l.05-.6.08-.33s-1.55.12-2.36-.1c-.82-.24-1.55-.57-2.3-1.2-.77-.66-1.07-1.06-1.6-1.14-1.3-.2-2.32.38-2.32.38s.98.4 1.7 1.3c.74.9 1.54 1.4 1.88 1.5.57.2 2.55.1 3.1.1l1.76.2" fill="#db4446"/>
<path d="M230.9 229.7l.05-.6.08-.33s-1.55.12-2.36-.1c-.82-.24-1.55-.57-2.3-1.2-.77-.66-1.07-1.06-1.6-1.14-1.3-.2-2.32.38-2.32.38s.98.4 1.7 1.3c.74.9 1.54 1.4 1.88 1.5.57.2 2.55.1 3.1.1l1.76.2z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M238.12 227.5s0 .7.07 1.37c0 .63-.2 1.2-.1 1.54.1.4.1.7.2.9.1.3.2.9.2.9l-.7-.5-.6-.4.1 1c0 .3.2.9.5 1.2.3.3.8.9 1 1.3.2.5.1 1.4.1 1.4s-.5-.7-.9-.8c-.4-.1-1.2-.6-1.2-.6s.7.8.7 1.5-.3 1.6-.3 1.6-.4-.6-.8-1.1c-.5-.4-1.1-.8-1.1-.8s.5 1.1.5 1.9-.2 2.4-.2 2.4-.4-.6-.8-.9c-.4-.3-.9-.5-1-.7-.2-.2.4.7.5 1.1.1.5.3 2.3 1.8 4.5.9 1.4 2.3 3.7 5.3 2.9 3-.7 1.9-4.8 1.2-6.6-.7-1.9-1-3.9-.9-4.7 0-.7.5-2.8.4-3.2-.1-.4-.2-1.9.1-3.1.4-1.3.7-1.8.9-2.3.2-.5.4-.8.4-1.3.1-.4.1-1.3.1-1.3s.6 1 .7 1.4c.1.4.1 1.5.1 1.5s.1-1.1 1-1.6c.8-.5 1.8-1.1 2-1.4.2-.3.3-.5.3-.5s-.1 1.9-.6 2.6c-.3.5-1.7 2-1.7 2s.7-.2 1.2-.2c.5-.1.8 0 .8 0s-.6.4-1.4 1.6c-.8 1.1-.5 1.2-1 2.2-.6.9-1 1-1.7 1.5-1.1.9-.5 4.2-.4 4.7s2 4.6 2 5.6c.1 1 .2 3.2-1.5 4.6-1.1.9-3 .9-3.4 1.2-.4.2-1.3 1-1.3 2.8 0 1.7.6 2 1.1 2.4.5.4 1.1.2 1.2.5.2.3.2.5.4.7.2.2.3.4.3.8-.1.4-.9 1.2-1.1 1.8-.3.6-.9 2.1-.9 2.4 0 .3-.1 1 .2 1.4 0 0 .9 1 .3 1.2-.4.2-.8-.2-1-.2-.5.2-.8.5-1 .5-.4-.1-.4-.2-.4-.7-.1-.5-.1-.7-.2-.7-.2 0-.3.2-.4.4 0 .3 0 .9-.3.9s-.6-.4-.8-.5c-.2-.1-.8-.2-.9-.4 0-.3.4-.8.8-.9.3-.1.7-.3.5-.5s-.5-.2-.8 0-.8.1-.7-.2c0-.3.1-.7.1-.8-.1-.14-.5-.5.1-.8.5-.3.8.3 1.3.2.5-.1.8-.3 1-.63.2-.3.2-1-.2-1.4-.4-.43-.8-.5-.9-.8l-.4-.84s.1 1.2 0 1.3c-.1.2 0 .9 0 .9l-.7-.7c-.3-.35-.6-1.3-.6-1.3l-.1 1.25c0 .4.4.7.3.8-.2.2-.8-.7-1-.8-.2-.1-.8-.5-1-1-.3-.5-.4-1.1-.5-1.4-.1-.2-.2-1.2-.1-1.5.2-.4.5-1.1.5-1.1h-1c-.7 0-1.3-.2-1.5.3-.3.5-.2 1.5.2 2.8.3 1.3.5 1.9.4 2.17-.1.28-.57.8-.75.9-.14.1-.63.1-.84 0-.2-.1-.5-.2-1.2-.2H227c-.24-.1-.8-.4-1.1-.3-.3 0-.77.3-.64.7.2.5-.2.7-.5.6-.3 0-.5-.1-.9-.2s-.82 0-.8-.4c.1-.4.2-.5.4-.8s.2-.5 0-.5-.5 0-.7.1c-.2.2-.5.5-.7.4-.2-.1-.4-.4-.4-1s-.6-1.2 0-1.2 1.35.4 1.5.1c.1-.35 0-.5-.3-.8s-.72-.4-.3-.8c.45-.3.56-.3.7-.5.18-.13.4-.7.7-.6.6.3.05.7.65 1.4.6.6 1 .9 2 .8 1-.1 1.3-.3 1.3-.6s-.1-.8-.1-1c0-.2.1-1 .1-1s-.4.3-.6.6l-.4.7s-.1-.6-.1-1c.1-.24.2-.7.1-.8 0-.3-.2-.9-.2-.9s-.1.7-.2.9c-.1.2-.1 1-.1 1s-.6-.6-.4-1.5c.1-.7-.1-1.7.1-2 .2-.3.7-1.6 2-1.6 1.2-.06 2.2.04 2.6 0 .5 0 2-.3 2-.3s-2.9-1.5-3.5-1.9c-.7-.46-1.7-1.6-2-2.1-.3-.5-.6-1.5-.6-1.5s-.6 0-1 .3a4.92 4.92 0 0 0-1.2.94c-.3.3-.7 1-.7 1V243s-.3 1.2-1 1.7-1.4 1.1-1.4 1.1v-.9c0-.1.2-.9.2-.9s-.4.7-1.1.8-1.7.1-1.8.5c-.1.42.2 1 0 1.32-.2.3-.5.5-.5.5s-.4-.3-.7-.3c-.3-.1-.7.1-.7.1s-.3-.4-.2-.7c.1-.3.7-.7.5-.8-.1-.2-.5 0-.8.2-.2.1-.8.2-.7-.2.1-.5.2-.7.1-1-.1-.3 0-.5.2-.6.2-.1 1.1 0 1.2-.2.1-.2-.2-.5-.8-.6-.5-.1-.8-.5-.5-.78.3-.28.4-.3.5-.6.1-.27.2-.7.7-.5.5.23.4.8 1 1 .5.2 1.8-.1 2.1-.2l1.5-1 1.6-1.1s-.7-.5-1-.8c-.2-.3-.7-.9-1-1-.2-.1-1.4-.6-1.8-.6-.4 0-1.7-.5-1.7-.5s.6-.2.8-.3c.2-.2.7-.6.9-.6h.3s-1.2-.05-1.4-.1c-.3-.1-1-.5-1.3-.5s-.8.1-.8.1.7-.5 1.3-.6c.6-.1 1.1-.1 1.1-.1s-.9-.2-1.2-.5c-.2-.3-.4-.8-.6-1-.1-.2-.2-.56-.5-.6-.3-.1-.8.3-1.1.3-.3-.1-.5-.2-.5-.7 0-.5 0-.3-.1-.55-.1-.2-.5-.8-.1-.9.4-.1 1.25.1 1.3-.1.07-.2-.5-.6-.8-.8-.4-.2-1-.5-.7-.8.3-.3.6-.4.78-.6.2-.2.4-.9.7-.7.4.2.9 1.2 1.17 1.1.24-.1.3-.8.2-1.1 0-.3 0-.9.3-.8.3 0 .5.4.94.4.4.1 1.1-.1 1 .2-.04.3-.3.7-.6 1.1-.3.3-.4 1-.2 1.4.2.4.7 1.1 1.1 1.4.4.3 1.2.5 1.8.8.5.4 1.7 1.3 2.1 1.4.4.1.8.3.8.3s.4-.2 1.1-.2c.6 0 2 .1 2.6-.1.5-.2 1.2-.6 1-1.1-.2-.5-1.4-.9-1.3-1.3.1-.4.5-.4 1.25-.5.8 0 1.8.1 2-.9.2-1 .2-1.6-.8-1.9-1.1-.2-1.8-.2-2-1-.2-.7-.4-.9-.2-1.1.2-.2.6-.3 1.35-.3.7-.1 1.6-.1 1.83-.3.3-.1.3-.6.6-.8.3-.2 1.5-.4 1.5-.4s1.4.7 2.7 1.6c1.1.9 2.2 2.15 2.2 2.15" fill="#ed72aa" stroke="#000" stroke-width=".37"/>
<path d="M228.12 226.8l-.2-.6c0-.13-.1-.28-.1-.28s.85 0 .82.25c-.03.26-.27.26-.33.36 0 .1-.1.26-.1.26"/>
<path d="M228.12 226.8l-.2-.6c0-.13-.1-.28-.1-.28s.85 0 .82.25c-.03.26-.27.26-.33.36 0 .1-.1.26-.1.26z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M231.98 225.45l-.06-.4s.74 0 1.1.25c.53.38.88.97.85 1-.1.1-.5-.26-.8-.36 0 0-.22.05-.44.05s-.33-.1-.36-.2c-.02-.2.03-.3.03-.3l-.32-.1"/>
<path d="M231.98 225.45l-.06-.4s.74 0 1.1.25c.53.38.88.97.85 1-.1.1-.5-.26-.8-.36 0 0-.22.05-.44.05s-.33-.1-.36-.2c-.02-.2.03-.3.03-.3l-.32-.1z" fill="none" stroke="#000" stroke-width=".05"/>
<path d="M237.27 231.26s-.33-.46-.4-.62c-.1-.15-.23-.46-.23-.46" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M217.4 226.64s.46.33.82.38c.35.05.73.05.8.05.04 0 .15-.52.1-.87-.2-1.16-1.26-1.42-1.26-1.42s.32.7.17 1.03c-.22.5-.63.9-.63.9" fill="#db4446"/>
<path d="M217.4 226.64s.46.33.82.38c.35.05.73.05.8.05.04 0 .15-.52.1-.87-.2-1.16-1.26-1.42-1.26-1.42s.32.7.17 1.03c-.22.5-.63.9-.63.9z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M215.2 227.64s-.4-.75-1.27-.65c-.87.1-1.44.7-1.44.7s.9-.1 1.2.1c.3.2.4.8.4.8s.5-.3.7-.6a7.23 7.23 0 0 0 .3-.6" fill="#db4446"/>
<path d="M215.2 227.64s-.4-.75-1.27-.65c-.87.1-1.44.7-1.44.7s.9-.1 1.2.1c.3.2.4.8.4.8s.5-.3.7-.6a7.23 7.23 0 0 0 .3-.6z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M214.15 230.64s-.73.1-1.14.57c-.4.5-.3 1.4-.3 1.4s.5-.5.9-.5c.5 0 1.1.2 1.1.2s-.2-.5-.2-.8c0-.2-.3-.7-.3-.7" fill="#db4446"/>
<path d="M214.15 230.64s-.73.1-1.14.57c-.4.5-.3 1.4-.3 1.4s.5-.5.9-.5c.5 0 1.1.2 1.1.2s-.2-.5-.2-.8c0-.2-.3-.7-.3-.7z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M228.15 230.54l.33-.5.32.45h-.65"/>
<path d="M228.15 230.54l.33-.5.32.45h-.65" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M228.94 230.5l.38-.5.4.46-.78.05"/>
<path d="M228.94 230.5l.38-.5.4.46-.78.05" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M228.6 227.35l.77.3-.7.35-.08-.64"/>
<path d="M228.6 227.35l.77.3-.7.35-.08-.64" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M229.53 227.6l.7.2-.56.43-.14-.62"/>
<path d="M229.53 227.6l.7.2-.56.43-.14-.62" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M224.24 233.65s-.77.23-1.06.64c-.35.5-.32 1-.32 1s.65-.6 1.5-.3c.83.2.9.3 1.27.3.35-.1 1.22-.4 1.22-.4s-.7.8-.63 1.4c.1.5.2.8.17 1.1-.1.7-.6 1.5-.6 1.5s.3-.2 1-.4a4.58 4.58 0 0 0 1.7-.8c.3-.3.8-1 .8-1s-.2.9 0 1.4c.1.4.2 1.6.2 1.6s.4-.4.8-.6c.2-.1.6-.4.8-.7.1-.2.3-1 .3-1s.1.8.4 1.2c.2.4.6 1.7.6 1.7s.3-.9.6-1.2c.3-.3.6-.8.6-1 0-.3-.1-.8-.1-.8l.3.8m-11 .6s.4-.8.9-1.1c.4-.3 1-.8 1.2-.8l.8-.5m1 4.9l1.3-.8c.6-.4 1.1-1.1 1.1-1.1" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M216.62 240.36s-.4-.44-1.12-.3c-.7.12-1.16.92-1.16.92s.6-.16.95-.08c.3.08.6.43.6.43s.3-.28.4-.43c.1-.16.3-.55.3-.55" fill="#db4446"/>
<path d="M216.62 240.36s-.4-.44-1.12-.3c-.7.12-1.16.92-1.16.92s.6-.16.95-.08c.3.08.6.43.6.43s.3-.28.4-.43c.1-.16.3-.55.3-.55z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M215.8 243.2s-.6-.1-1.1.32c-.52.4-.55 1.2-.55 1.2s.5-.4.87-.35c.38.05.84.25.84.25l.1-.6c.1-.37-.16-.8-.16-.8" fill="#db4446"/>
<path d="M215.8 243.2s-.6-.1-1.1.32c-.52.4-.55 1.2-.55 1.2s.5-.4.87-.35c.38.05.84.25.84.25l.1-.6c.1-.37-.16-.8-.16-.8z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M217.2 245.84s-.05.76.3 1.23c.4.5 1.1.56 1.1.56s-.24-.5-.27-.77c-.06-.38.32-.72.32-.72s-.35-.36-.7-.36-.76.05-.76.05" fill="#db4446"/>
<path d="M217.2 245.84s-.05.76.3 1.23c.4.5 1.1.56 1.1.56s-.24-.5-.27-.77c-.06-.38.32-.72.32-.72s-.35-.36-.7-.36-.76.05-.76.05zm16 1.28s1.95 1.2 1.9 2.2c-.06 1-1.1 2.32-1.1 2.32" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M224.24 252.6s-.5-.62-1.16-.6c-.68.03-1.4.67-1.4.67s.85-.08 1.07.2c.22.3.43.64.43.64l.55-.3c.16-.1.5-.6.5-.6" fill="#db4446"/>
<path d="M224.24 252.6s-.5-.62-1.16-.6c-.68.03-1.4.67-1.4.67s.85-.08 1.07.2c.22.3.43.64.43.64l.55-.3c.16-.1.5-.6.5-.6z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M222.15 255.3s-.9-.14-1.33.32c-.43.46-.4 1.3-.4 1.3s.54-.58 1.03-.53c.5 0 1.03.3 1.03.3l-.14-.8c-.05-.3-.2-.7-.2-.7" fill="#db4446"/>
<path d="M222.15 255.3s-.9-.14-1.33.32c-.43.46-.4 1.3-.4 1.3s.54-.58 1.03-.53c.5 0 1.03.3 1.03.3l-.14-.8c-.05-.3-.2-.7-.2-.7z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M224.08 258.14s-.43.62-.1 1.1c.32.5 1 .73 1 .73s-.25-.36-.14-.77c.1-.33.65-.77.65-.77l-1.5-.28" fill="#db4446"/>
<path d="M224.08 258.14s-.43.62-.1 1.1c.32.5 1 .73 1 .73s-.25-.36-.14-.77c.1-.33.65-.77.65-.77l-1.5-.28z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M236 259.3s-.8-.18-1.23.08c-.43.25-.78 1.33-.78 1.33s.7-.5 1.2-.5c.5.1.9.3.9.3v-.7l-.2-.4" fill="#db4446"/>
<path d="M236 259.3s-.8-.18-1.23.08c-.43.25-.78 1.33-.78 1.33s.7-.5 1.2-.5c.5.1.9.3.9.3v-.7l-.2-.4z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M236.37 262.18s-.6.6-.38 1.13c.2.6.6 1.1.6 1.1s-.1-.7.2-.9c.3-.3 1-.3 1-.3s-.5-.4-.7-.5a15.84 15.84 0 0 1-.8-.3" fill="#db4446"/>
<path d="M236.37 262.18s-.6.6-.38 1.13c.2.6.6 1.1.6 1.1s-.1-.7.2-.9c.3-.3 1-.3 1-.3s-.5-.4-.7-.5a15.84 15.84 0 0 1-.8-.3z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M239.36 263.08s-.3.74.27 1.23c.57.5 1.06.6 1.06.6s-.5-.7-.3-1.2c.1-.4.5-.7.5-.7s-.7-.2-.8-.2c-.1 0-.8.3-.8.3" fill="#db4446"/>
<path d="M239.36 263.08s-.3.74.27 1.23c.57.5 1.06.6 1.06.6s-.5-.7-.3-1.2c.1-.4.5-.7.5-.7s-.7-.2-.8-.2c-.1 0-.8.3-.8.3z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M208.8 316.37c2 .6 3.02 2.1 3.02 3.85 0 2.28-2.22 4-5.1 4-2.86 0-5.2-1.72-5.2-4 0-1.73.97-3.65 2.97-3.8l-.3-.47-.6-.63s.7-.15 1.2.02c.4.17.7.45.7.45s.2-.5.5-.8c.3-.3.7-.5.7-.5s.4.3.6.6l.2.5s.4-.4.7-.5c.3-.2.8-.3.8-.3s-.1.4-.2.6c-.1.2-.2.7-.2.7" fill="#ffd691" stroke="#000" stroke-width=".5"/>
<path d="M206.3 326.7s-3.8-2.57-5.47-2.9c-2.1-.46-4.5-.1-5.52-.15.1.03 1.3.9 1.8 1.42.6.53 2.3 1.58 3.3 1.83 3.1.78 6-.2 6-.2m1.1.23s2.5-2.54 5-2.9c3.1-.4 5 .26 6.2.56 0 0-1 .4-1.5.8-.5.3-1.9 1.5-4 1.5s-4.4-.2-4.7-.2l-.9.1" fill="#058e6e" stroke="#000" stroke-width=".5"/>
<path d="M206.66 323.8a4.85 4.85 0 0 1 0-7.14 4.84 4.84 0 0 1 1.56 3.56 4.86 4.86 0 0 1-1.56 3.57" fill="#ad1519" stroke="#000" stroke-width=".5"/>
<path d="M205.7 329s.58-1.46.64-2.7c.05-1.06-.15-2.1-.15-2.1h.7s.4 1.12.4 2.1c0 .96-.2 2.26-.2 2.26s-.6.08-.7.16c-.2.1-.8.28-.8.28" fill="#058e6e" stroke="#000" stroke-width=".5"/>
<path d="M254 190.73c0-.56.47-1 1.05-1 .6 0 1.06.44 1.06 1 0 .55-.4 1-1 1s-1-.45-1-1" fill="#fff"/>
<path d="M254 190.73c0-.56.47-1 1.05-1 .6 0 1.06.44 1.06 1 0 .55-.4 1-1 1s-1-.45-1-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M255.44 188.18c0-.55.47-1 1.06-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.6 0-1.06-.45-1.06-1" fill="#fff"/>
<path d="M255.44 188.18c0-.55.47-1 1.06-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.6 0-1.06-.45-1.06-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M256.4 185.22c0-.55.47-1 1.06-1 .58 0 1.05.46 1.05 1 0 .56-.4 1-1 1s-1-.44-1-1" fill="#fff"/>
<path d="M256.4 185.22c0-.55.47-1 1.06-1 .58 0 1.05.46 1.05 1 0 .56-.4 1-1 1s-1-.44-1-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M256.52 182.06c0-.56.47-1 1.05-1 .58 0 1.05.44 1.05 1 0 .55-.47 1-1.05 1-.58 0-1.05-.45-1.05-1" fill="#fff"/>
<path d="M256.52 182.06c0-.56.47-1 1.05-1 .58 0 1.05.44 1.05 1 0 .55-.47 1-1.05 1-.58 0-1.05-.45-1.05-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M255.74 178.94c0-.55.48-1 1.05-1 .5 0 1 .45 1 1s-.5 1-1.1 1c-.6 0-1.1-.45-1.1-1" fill="#fff"/>
<path d="M255.74 178.94c0-.55.48-1 1.05-1 .5 0 1 .45 1 1s-.5 1-1.1 1c-.6 0-1.1-.45-1.1-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M254.12 176.1c0-.54.47-1 1.05-1 .6 0 1.06.46 1.06 1s-.47 1-1.06 1c-.57 0-1.04-.44-1.04-1" fill="#fff"/>
<path d="M254.12 176.1c0-.54.47-1 1.05-1 .6 0 1.06.46 1.06 1s-.47 1-1.06 1c-.57 0-1.04-.44-1.04-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M251.96 173.78c0-.55.47-1 1.05-1 .6 0 1.1.45 1.1 1s-.4 1-1 1c-.5 0-1-.45-1-1" fill="#fff"/>
<path d="M251.96 173.78c0-.55.47-1 1.05-1 .6 0 1.1.45 1.1 1s-.4 1-1 1c-.5 0-1-.45-1-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M249.45 171.85c0-.55.48-1 1.06-1 .6 0 1.1.45 1.1 1s-.4 1-1 1c-.5 0-1-.45-1-1" fill="#fff"/>
<path d="M249.45 171.85c0-.55.48-1 1.06-1 .6 0 1.1.45 1.1 1s-.4 1-1 1c-.5 0-1-.45-1-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M246.46 170.27c0-.55.47-1 1.05-1 .6 0 1.1.45 1.1 1s-.4 1-1 1c-.5 0-1-.45-1-1" fill="#fff"/>
<path d="M246.46 170.27c0-.55.47-1 1.05-1 .6 0 1.1.45 1.1 1s-.4 1-1 1c-.5 0-1-.45-1-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M243.35 169.14c0-.55.47-1 1.05-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.58 0-1.05-.45-1.05-1" fill="#fff"/>
<path d="M243.35 169.14c0-.55.47-1 1.05-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.58 0-1.05-.45-1.05-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M239.87 168.52c0-.55.47-1 1.05-1 .6 0 1.05.45 1.05 1s-.47 1-1.05 1c-.58 0-1.05-.45-1.05-1" fill="#fff"/>
<path d="M239.87 168.52c0-.55.47-1 1.05-1 .6 0 1.05.45 1.05 1s-.47 1-1.05 1c-.58 0-1.05-.45-1.05-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M236.57 168.35c0-.55.47-1 1.05-1 .58 0 1.06.45 1.06 1s-.48 1-1.06 1c-.58 0-1.05-.45-1.05-1" fill="#fff"/>
<path d="M236.57 168.35c0-.55.47-1 1.05-1 .58 0 1.06.45 1.06 1s-.48 1-1.06 1c-.58 0-1.05-.45-1.05-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M233.33 168.46c0-.55.47-1 1.05-1 .6 0 1.06.45 1.06 1s-.47 1-1.06 1c-.58 0-1.05-.45-1.05-1" fill="#fff"/>
<path d="M233.33 168.46c0-.55.47-1 1.05-1 .6 0 1.06.45 1.06 1s-.47 1-1.06 1c-.58 0-1.05-.45-1.05-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M230.1 168.46c0-.55.46-1 1.04-1 .58 0 1.06.45 1.06 1s-.48 1-1.05 1c-.6 0-1.06-.45-1.06-1" fill="#fff"/>
<path d="M230.1 168.46c0-.55.46-1 1.04-1 .58 0 1.06.45 1.06 1s-.48 1-1.05 1c-.6 0-1.06-.45-1.06-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M231.7 171.24c0-.55.48-1 1.06-1 .6 0 1.05.45 1.05 1s-.4 1-1 1-1-.45-1-1m.7 3.07c0-.5.5-1 1.1-1 .6 0 1.1.5 1.1 1s-.4 1-1 1-1-.4-1-1m.1 3.1c0-.5.5-1 1-1 .6 0 1.1.5 1.1 1s-.5 1-1 1c-.6 0-1.1-.4-1.1-1m-1 2.8c0-.5.5-1 1.1-1 .6 0 1.1.5 1.1 1s-.4 1-1 1-1-.4-1-1m-1.8 2.6c0-.5.5-1 1.1-1 .6 0 1.1.5 1.1 1s-.4 1-1 1-1-.4-1-1" fill="#fff" stroke="#000" stroke-width=".37"/>
<path d="M227.64 166.53c0-.55.47-1 1.06-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.6 0-1.06-.45-1.06-1" fill="#fff"/>
<path d="M227.64 166.53c0-.55.47-1 1.06-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.6 0-1.06-.45-1.06-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M224.76 164.94c0-.55.47-1 1.06-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.6 0-1.06-.45-1.06-1" fill="#fff"/>
<path d="M224.76 164.94c0-.55.47-1 1.06-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.6 0-1.06-.45-1.06-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M221.6 163.98c0-.55.47-1 1.05-1 .58 0 1.05.45 1.05 1 0 .56-.47 1-1.05 1-.58 0-1.06-.44-1.06-1" fill="#fff"/>
<path d="M221.6 163.98c0-.55.47-1 1.05-1 .58 0 1.05.45 1.05 1 0 .56-.47 1-1.05 1-.58 0-1.06-.44-1.06-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M218.3 163.42c0-.55.47-1 1.05-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.58 0-1.05-.45-1.05-1" fill="#fff"/>
<path d="M218.3 163.42c0-.55.47-1 1.05-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.58 0-1.05-.45-1.05-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M215.07 163.47c0-.55.47-1 1.05-1 .58 0 1.05.45 1.05 1 0 .56-.47 1-1.05 1-.58 0-1.05-.44-1.05-1" fill="#fff"/>
<path d="M215.07 163.47c0-.55.47-1 1.05-1 .58 0 1.05.45 1.05 1 0 .56-.47 1-1.05 1-.58 0-1.05-.44-1.05-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M211.7 164.04c0-.55.48-1 1.06-1 .6 0 1.06.45 1.06 1s-.47 1-1.06 1c-.58 0-1.05-.45-1.05-1" fill="#fff"/>
<path d="M211.7 164.04c0-.55.48-1 1.06-1 .6 0 1.06.45 1.06 1s-.47 1-1.06 1c-.58 0-1.05-.45-1.05-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M208.6 165.1c0-.54.47-1 1.05-1 .58 0 1.06.46 1.06 1 0 .56-.4 1-1 1s-1-.44-1-1" fill="#fff"/>
<path d="M208.6 165.1c0-.54.47-1 1.05-1 .58 0 1.06.46 1.06 1 0 .56-.4 1-1 1s-1-.44-1-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M155.93 190.73c0-.56.47-1 1.05-1 .58 0 1.05.44 1.05 1 0 .55-.47 1-1.05 1-.58 0-1.05-.45-1.05-1" fill="#fff"/>
<path d="M155.93 190.73c0-.56.47-1 1.05-1 .58 0 1.05.44 1.05 1 0 .55-.47 1-1.05 1-.58 0-1.05-.45-1.05-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M154.5 188.18c0-.55.46-1 1.04-1 .58 0 1.05.45 1.05 1s-.5 1-1.1 1c-.6 0-1.1-.45-1.1-1" fill="#fff"/>
<path d="M154.5 188.18c0-.55.46-1 1.04-1 .58 0 1.05.45 1.05 1s-.5 1-1.1 1c-.6 0-1.1-.45-1.1-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M153.53 185.22c0-.55.47-1 1.05-1 .58 0 1.05.46 1.05 1 0 .56-.47 1-1.05 1-.58 0-1.05-.44-1.05-1" fill="#fff"/>
<path d="M153.53 185.22c0-.55.47-1 1.05-1 .58 0 1.05.46 1.05 1 0 .56-.47 1-1.05 1-.58 0-1.05-.44-1.05-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M153.4 182.06c0-.56.48-1 1.06-1 .58 0 1.05.44 1.05 1 0 .55-.4 1-1 1s-1-.45-1-1" fill="#fff"/>
<path d="M153.4 182.06c0-.56.48-1 1.06-1 .58 0 1.05.44 1.05 1 0 .55-.4 1-1 1s-1-.45-1-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M154.2 178.94c0-.55.46-1 1.04-1 .58 0 1.05.45 1.05 1s-.5 1-1.1 1c-.6 0-1.1-.45-1.1-1" fill="#fff"/>
<path d="M154.2 178.94c0-.55.46-1 1.04-1 .58 0 1.05.45 1.05 1s-.5 1-1.1 1c-.6 0-1.1-.45-1.1-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M155.8 176.1c0-.54.48-1 1.06-1 .58 0 1.05.46 1.05 1s-.4 1-1 1-1-.44-1-1" fill="#fff"/>
<path d="M155.8 176.1c0-.54.48-1 1.06-1 .58 0 1.05.46 1.05 1s-.4 1-1 1-1-.44-1-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M157.97 173.78c0-.55.47-1 1.05-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.58 0-1.05-.45-1.05-1" fill="#fff"/>
<path d="M157.97 173.78c0-.55.47-1 1.05-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.58 0-1.05-.45-1.05-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M160.47 171.85c0-.55.47-1 1.06-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.6 0-1.06-.45-1.06-1" fill="#fff"/>
<path d="M160.47 171.85c0-.55.47-1 1.06-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.6 0-1.06-.45-1.06-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M163.47 170.27c0-.55.47-1 1.06-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.6 0-1.06-.45-1.06-1" fill="#fff"/>
<path d="M163.47 170.27c0-.55.47-1 1.06-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.6 0-1.06-.45-1.06-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M166.58 169.14c0-.55.47-1 1.05-1 .6 0 1.06.45 1.06 1s-.5 1-1.1 1c-.6 0-1.1-.45-1.1-1" fill="#fff"/>
<path d="M166.58 169.14c0-.55.47-1 1.05-1 .6 0 1.06.45 1.06 1s-.5 1-1.1 1c-.6 0-1.1-.45-1.1-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M170.06 168.52c0-.55.47-1 1.06-1 .57 0 1.05.45 1.05 1s-.48 1-1.05 1c-.58 0-1.06-.45-1.06-1" fill="#fff"/>
<path d="M170.06 168.52c0-.55.47-1 1.06-1 .57 0 1.05.45 1.05 1s-.48 1-1.05 1c-.58 0-1.06-.45-1.06-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M173.36 168.35c0-.55.47-1 1.06-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.6 0-1.06-.45-1.06-1" fill="#fff"/>
<path d="M173.36 168.35c0-.55.47-1 1.06-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.6 0-1.06-.45-1.06-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M176.6 168.46c0-.55.47-1 1.05-1 .58 0 1.06.45 1.06 1s-.4 1-1 1-1-.45-1-1" fill="#fff"/>
<path d="M176.6 168.46c0-.55.47-1 1.05-1 .58 0 1.06.45 1.06 1s-.4 1-1 1-1-.45-1-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M179.84 168.46c0-.55.47-1 1.05-1 .5 0 1 .45 1 1s-.5 1-1.1 1c-.6 0-1.1-.45-1.1-1" fill="#fff"/>
<path d="M179.84 168.46c0-.55.47-1 1.05-1 .5 0 1 .45 1 1s-.5 1-1.1 1c-.6 0-1.1-.45-1.1-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M178.22 171.24c0-.55.47-1 1.05-1 .58 0 1.06.45 1.06 1s-.48 1-1.06 1c-.58 0-1.05-.45-1.05-1m-.66 3.07c0-.5.47-1 1.05-1 .6 0 1.1.5 1.1 1s-.4 1-1 1c-.5 0-1-.4-1-1m-.1 3.1c0-.5.5-1 1.1-1 .6 0 1.1.5 1.1 1s-.4 1-1 1-1-.4-1-1m1 2.8c0-.5.5-1 1.1-1 .6 0 1.1.5 1.1 1s-.5 1-1.1 1c-.6 0-1.1-.4-1.1-1m1.8 2.6c0-.5.5-1 1.1-1 .6 0 1.1.5 1.1 1s-.5 1-1.1 1c-.5 0-1-.4-1-1" fill="#fff" stroke="#000" stroke-width=".37"/>
<path d="M182.3 166.53c0-.55.46-1 1.04-1 .58 0 1.05.45 1.05 1s-.5 1-1.1 1c-.6 0-1.1-.45-1.1-1" fill="#fff"/>
<path d="M182.3 166.53c0-.55.46-1 1.04-1 .58 0 1.05.45 1.05 1s-.5 1-1.1 1c-.6 0-1.1-.45-1.1-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M185.17 164.94c0-.55.47-1 1.05-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.58 0-1.05-.45-1.05-1" fill="#fff"/>
<path d="M185.17 164.94c0-.55.47-1 1.05-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.58 0-1.05-.45-1.05-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M188.33 163.98c0-.55.48-1 1.06-1 .5 0 1 .45 1 1 0 .56-.5 1-1.1 1-.6 0-1.1-.44-1.1-1" fill="#fff"/>
<path d="M188.33 163.98c0-.55.48-1 1.06-1 .5 0 1 .45 1 1 0 .56-.5 1-1.1 1-.6 0-1.1-.44-1.1-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M191.63 163.42c0-.55.48-1 1.05-1 .6 0 1.06.45 1.06 1s-.47 1-1.05 1c-.6 0-1.1-.45-1.1-1" fill="#fff"/>
<path d="M191.63 163.42c0-.55.48-1 1.05-1 .6 0 1.06.45 1.06 1s-.47 1-1.05 1c-.6 0-1.1-.45-1.1-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M194.87 163.47c0-.55.46-1 1.05-1 .58 0 1.05.45 1.05 1 0 .56-.47 1-1.05 1-.6 0-1.05-.44-1.05-1" fill="#fff"/>
<path d="M194.87 163.47c0-.55.46-1 1.05-1 .58 0 1.05.45 1.05 1 0 .56-.47 1-1.05 1-.6 0-1.05-.44-1.05-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M198.22 164.04c0-.55.47-1 1.05-1 .6 0 1.06.45 1.06 1s-.47 1-1.06 1c-.58 0-1.05-.45-1.05-1" fill="#fff"/>
<path d="M198.22 164.04c0-.55.47-1 1.05-1 .6 0 1.06.45 1.06 1s-.47 1-1.06 1c-.58 0-1.05-.45-1.05-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M201.33 165.1c0-.54.47-1 1.05-1 .58 0 1.05.46 1.05 1 0 .56-.47 1-1.05 1-.58 0-1.05-.44-1.05-1" fill="#fff"/>
<path d="M201.33 165.1c0-.54.47-1 1.05-1 .58 0 1.05.46 1.05 1 0 .56-.47 1-1.05 1-.58 0-1.05-.44-1.05-1z" fill="none" stroke="#000" stroke-width=".37"/>
<path d="M174.65 228.88h-.9v-.9h-1.54v3.56h1.6v2.44h-3.3v7.1h1.8v14.2h-3.5v7.3H196v-7.3h-3.55v-14.2h1.78v-7.1h-3.32v-2.44h1.6V228H191v.88h-.9v-.9h-1.56v.9h-1.1v-.9h-1.56v3.56h1.56v2.44H184v-7.77h1.77v-3.5H184v.9h-.9v-.9h-1.56v.9h-.87v-.9h-1.78v3.6h1.7v7.7h-3.4v-2.4h1.5V228h-1.6v.88h-.9v-.9h-1.8v.9zm-6 33.7h27.3m-27.3-1.76h27.3m-27.3-1.78h27.3m-27.3-1.77h27.3m-27.3-2h27.3m-23.74-1.55h20.2m-20.2-1.78h20.2m-20.2-2h20.2m-20.2-1.77h20.2m-20.2-1.77h20.2m-20.2-1.78h20.2m-20.2-1.77h20.2m-21.9-1.78h23.8m-23.7-1.77h23.8m-23.7-1.78h23.8m-23.7-1.77h23.8m-20.4-1.78h17M181 232.2h3.3m-3.3-1.78h3.3m-3.3-1.77h3.3m-3.3-1.77h3.3m-5.1-2.22h6.9m-12 7.54h3.56m-5.1-2.22h6.6m-6.65 32.6v-1.77m0-1.7v-1.8m-1.7 1.8v1.8m3.4 0v-1.7m1.7 3.6V261m0-1.76v-1.8m0-2v-1.56m0-1.76v-2m-1.8 7.3v-2m-3.3 2v-2m6.9 0v2m1.6-2v-1.52m-5.1-1.8v1.78m3.6-1.76v1.74m3.4-1.76v1.77m-1.8-1.77v-2m1.8-1.77v1.8m0-5.3v1.77m-1.8-3.53v1.8m1.8-3.56v1.7m-3.4-1.7v1.8m-3.5-1.7v1.6m-1.5-3.5v1.8m3.4-1.7v1.7m3.3-1.8v1.7m1.8-3.5v1.8m-3.3-1.8v1.8m-3.5-1.8v1.8m-1.6-3.5v1.8m6.7-1.8v1.8m-3.3-5.3v1.7m15.3-1.8H188m5.1-2.2h-7m6.63 32.6V261m0-1.8v-1.72m1.8 1.77v1.8m-3.3 0v-1.7m-1.8 3.5V261m0-1.75v-1.8m0-2v-1.55m0-1.75v-2m1.8 7.3v-2m3.3 2v-2m-6.9 0v2m-1.5-2v-1.54m5.1-1.7v1.8m-3.6-1.7v1.8m-3.3-2v1.8m1.75-1.7v-2m-1.74-1.7v1.7m0-5.3v1.8m1.7-3.5v1.8m-1.8-3.5v1.7m3.3-1.7v1.7m3.5-1.7v1.7m1.5-3.5v1.8m-3.4-1.7v1.8m-3.4-1.8v1.8m-1.8-3.5v1.8m3.4-1.7v1.7m3.55-1.8v1.7m1.5-3.6v1.7m-6.7-1.8v1.8m3.3-5.3v1.8m-6.9 18v-2m0-5.3v-2m0 5.4v-1.8m0-5.3v-1.74m0-1.7V236m0-3.58v-1.76m0-1.74V227m-8.4 4.67h3.6m3.4-5.33h3.4m3.4 5.34h3.5" fill="#c8b100" stroke="#000" stroke-width=".44"/>
<path d="M186.85 262.6v-4.67c0-.88-.45-3.54-4.66-3.54-4 0-4.5 2.6-4.5 3.5v4.6h9.1z" fill="#c8b100" stroke="#000" stroke-width=".44"/>
<path d="M179.3 258.16l-2.2-.22c0-.9.2-2.22.87-2.67l2 1.56c-.22.22-.66.88-.66 1.33zm6 0l2.2-.22c0-.9-.2-2.22-.87-2.67l-2 1.56c.22.22.66.88.66 1.33zm-2.22-2.22l1.1-2c-.44-.22-1.33-.44-2-.44-.43 0-1.32.22-1.77.44l1.2 2h1.6zm-4.22-5.55v-4.9c0-1.4-.88-2.5-2.44-2.5s-2.44 1.1-2.44 2.4v4.9h4.88zm6.88 0v-4.9c0-1.4.9-2.5 2.44-2.5 1.55 0 2.44 1.1 2.44 2.4v4.9h-4.88zm-1.78-12l.45-4.5h-4.2l.3 4.4h3.5zm3.33 0l-.5-4.5h4.4l-.5 4.4h-3.6zm-10 0l.2-4.5h-4.2l.4 4.4h3.5z" fill="#c8b100" stroke="#000" stroke-width=".44"/>
<path d="M185.3 262.6v-4c0-.67-.45-2.66-3.1-2.66-2.45 0-2.9 2-2.9 2.66v4h6zm-6.88-12.65v-4.22c0-1.1-.67-2.2-2-2.2s-2 1.1-2 2.2v4.22h4zm7.76 0v-4.22c0-1.1.67-2.2 2-2.2s2 1.1 2 2.2v4.22h-4z" fill="#0039f0"/>
<path d="M190.8 269.77c0-9.7 7-17.56 15.6-17.56 8.63 0 15.62 7.9 15.62 17.6s-7 17.6-15.6 17.6c-8.63 0-15.6-7.8-15.6-17.5" fill="#ad1519"/>
<path d="M190.8 269.77c0-9.7 7-17.56 15.6-17.56 8.63 0 15.62 7.9 15.62 17.6s-7 17.6-15.6 17.6c-8.63 0-15.6-7.8-15.6-17.5z" fill="none" stroke="#000" stroke-width=".59"/>
<path d="M195.44 269.73c0-7.1 4.9-12.87 10.98-12.87 6.06 0 10.98 5.76 10.98 12.87 0 7.12-4.92 12.88-10.98 12.88-6.07 0-10.98-5.7-10.98-12.8" fill="#005bbf"/>
<path d="M195.44 269.73c0-7.1 4.9-12.87 10.98-12.87 6.06 0 10.98 5.76 10.98 12.87 0 7.12-4.92 12.88-10.98 12.88-6.07 0-10.98-5.7-10.98-12.8z" fill="none" stroke="#000" stroke-width=".59"/>
<path d="M201.23 260.87s-1.3 1.43-1.3 2.75c0 1.33.55 2.43.55 2.43-.2-.52-.73-.9-1.36-.9-.8 0-1.43.6-1.43 1.36 0 .3.1.6.2.8l.4 1c.1-.3.5-.5.9-.5.5 0 1 .5 1 1a.88.88 0 0 1-.1.3H199v1h1.04l-.8 1.6 1.04-.4.76.9.8-.8 1.02.4-.8-1.5h1.03v-1H202a.88.88 0 0 1 0-.2c0-.5.45-.9 1.02-.9.42 0 .8.2.95.6l.47-1c.1-.2.23-.5.23-.7 0-.7-.64-1.3-1.44-1.3-.64 0-1.17.4-1.36.9 0 0 .55-1.1.55-2.4s-1.34-2.8-1.34-2.8" fill="#c8b100"/>
<path d="M201.23 260.87s-1.3 1.43-1.3 2.75c0 1.33.55 2.43.55 2.43-.2-.52-.73-.9-1.36-.9-.8 0-1.43.6-1.43 1.36 0 .3.1.6.2.8l.4 1c.1-.3.5-.5.9-.5.5 0 1 .5 1 1a.88.88 0 0 1-.1.3H199v1h1.04l-.8 1.6 1.04-.4.76.9.8-.8 1.02.4-.8-1.5h1.03v-1H202a.88.88 0 0 1 0-.2c0-.5.45-.9 1.02-.9.42 0 .8.2.95.6l.47-1c.1-.2.23-.5.23-.7 0-.7-.64-1.3-1.44-1.3-.64 0-1.17.4-1.36.9 0 0 .55-1.1.55-2.4s-1.34-2.8-1.34-2.8z" fill="none" stroke="#000" stroke-width=".33" stroke-linejoin="round"/>
<path d="M199.16 269.87h4.18v-1h-4.18v1z" fill="#c8b100"/>
<path d="M199.16 269.87h4.18v-1h-4.18v1z" fill="none" stroke="#000" stroke-width=".33"/>
<path d="M211.44 260.87s-1.3 1.43-1.3 2.75c0 1.33.54 2.43.54 2.43-.2-.52-.72-.9-1.35-.9-.8 0-1.44.6-1.44 1.36 0 .3.1.6.2.8l.4 1c.1-.3.5-.5.9-.5.5 0 1 .5 1 1a.9.9 0 0 1-.1.3h-1.2v1h1l-.8 1.6 1-.4.7.9.8-.8 1 .4-.8-1.5h1v-1h-1a.84.84 0 0 1 0-.2c0-.5.4-.9 1-.9.4 0 .8.2.9.6l.4-1c.1-.2.2-.5.2-.7 0-.7-.7-1.3-1.5-1.3-.6 0-1.2.4-1.4.9 0 0 .5-1.1.5-2.4s-1.4-2.8-1.4-2.8" fill="#c8b100"/>
<path d="M211.44 260.87s-1.3 1.43-1.3 2.75c0 1.33.54 2.43.54 2.43-.2-.52-.72-.9-1.35-.9-.8 0-1.44.6-1.44 1.36 0 .3.1.6.2.8l.4 1c.1-.3.5-.5.9-.5.5 0 1 .5 1 1a.9.9 0 0 1-.1.3h-1.2v1h1l-.8 1.6 1-.4.7.9.8-.8 1 .4-.8-1.5h1v-1h-1a.84.84 0 0 1 0-.2c0-.5.4-.9 1-.9.4 0 .8.2.9.6l.4-1c.1-.2.2-.5.2-.7 0-.7-.7-1.3-1.5-1.3-.6 0-1.2.4-1.4.9 0 0 .5-1.1.5-2.4s-1.4-2.8-1.4-2.8z" fill="none" stroke="#000" stroke-width=".33" stroke-linejoin="round"/>
<path d="M209.36 269.87h4.18v-1h-4.18v1z" fill="#c8b100"/>
<path d="M209.36 269.87h4.18v-1h-4.18v1z" fill="none" stroke="#000" stroke-width=".33"/>
<path d="M206.33 269.65s-1.3 1.42-1.3 2.75.55 2.43.55 2.43c-.2-.52-.73-.9-1.36-.9-.8 0-1.43.6-1.43 1.36 0 .2.1.5.2.7l.4.9c.1-.4.5-.6.9-.6.5 0 1 .4 1 1a.86.86 0 0 1-.1.2H204v1h1.04l-.78 1.5 1-.5.8.9.8-.9 1 .4-.8-1.6h1.03v-1H207a.9.9 0 0 1-.03-.3c0-.6.5-1 1.08-1 .43 0 .8.2.95.5l.48-1c.1-.2.22-.5.22-.8 0-.8-.63-1.4-1.42-1.4-.63 0-1.15.3-1.36.9 0 0 .56-1.1.56-2.5s-1.33-2.8-1.33-2.8" fill="#c8b100"/>
<path d="M206.33 269.65s-1.3 1.42-1.3 2.75.55 2.43.55 2.43c-.2-.52-.73-.9-1.36-.9-.8 0-1.43.6-1.43 1.36 0 .2.1.5.2.7l.4.9c.1-.4.5-.6.9-.6.5 0 1 .4 1 1a.86.86 0 0 1-.1.2H204v1h1.04l-.78 1.5 1-.5.8.9.8-.9 1 .4-.8-1.6h1.03v-1H207a.9.9 0 0 1-.03-.3c0-.6.5-1 1.08-1 .43 0 .8.2.95.5l.48-1c.1-.2.22-.5.22-.8 0-.8-.63-1.4-1.42-1.4-.63 0-1.15.3-1.36.9 0 0 .56-1.1.56-2.5s-1.33-2.8-1.33-2.8z" fill="none" stroke="#000" stroke-width=".33" stroke-linejoin="round"/>
<path d="M204.26 278.65h4.18v-1h-4.18v1z" fill="#c8b100"/>
<path d="M204.26 278.65h4.18v-1h-4.18v1z" fill="none" stroke="#000" stroke-width=".33"/>
<path d="M237.57 223.4l-.28.02a1.48 1.48 0 0 1-.3.34c-.3.23-.6.26-.8.06a.47.47 0 0 1-.2-.4.5.5 0 0 1-.5 0c-.3-.14-.3-.48-.1-.76l.1-.17v-.4l-.4.1-.1.2c-.2.2-.5.3-.7.1a.56.56 0 0 1-.2-.3s-.1.1-.2.1c-.5.1-.8-1-.8-1.3l-.2.2s.1.6 0 1.2c-.1.5-.3 1.1-.3 1.1.7.1 1.8.7 2.9 1.5 1.1.8 1.9 1.7 2.2 2.3 0 0 .5-.3 1.1-.5.5-.2 1.3-.2 1.3-.2l.2-.2c-.3 0-1.5.1-1.5-.4 0-.1 0-.2.1-.2a.67.67 0 0 1-.3-.1c-.2-.1-.2-.4 0-.7l.1-.1v-.3h-.3c-.1 0-.1.1-.2.1-.2.2-.6.2-.8 0a.42.42 0 0 1-.1-.4.55.55 0 0 1-.4 0c-.2-.2-.3-.5-.1-.8l.3-.3-.1-.3" fill="#c8b100"/>
<path d="M237.57 223.4l-.28.02a1.48 1.48 0 0 1-.3.34c-.3.23-.6.26-.8.06a.47.47 0 0 1-.2-.4.5.5 0 0 1-.5 0c-.3-.14-.3-.48-.1-.76l.1-.17v-.4l-.4.1-.1.2c-.2.2-.5.3-.7.1a.56.56 0 0 1-.2-.3s-.1.1-.2.1c-.5.1-.8-1-.8-1.3l-.2.2s.1.6 0 1.2c-.1.5-.3 1.1-.3 1.1.7.1 1.8.7 2.9 1.5 1.1.8 1.9 1.7 2.2 2.3 0 0 .5-.3 1.1-.5.5-.2 1.3-.2 1.3-.2l.2-.2c-.3 0-1.5.1-1.5-.4 0-.1 0-.2.1-.2a.67.67 0 0 1-.3-.1c-.2-.1-.2-.4 0-.7l.1-.1v-.3h-.3c-.1 0-.1.1-.2.1-.2.2-.6.2-.8 0a.42.42 0 0 1-.1-.4.55.55 0 0 1-.4 0c-.2-.2-.3-.5-.1-.8l.3-.3-.1-.3z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M235.4 224.06c.05-.06.15-.06.23 0 .07.06.1.15.05.2-.05.06-.15.06-.22 0-.08-.05-.1-.15-.05-.2"/>
<path d="M235.4 224.06c.05-.06.15-.06.23 0 .07.06.1.15.05.2-.05.06-.15.06-.22 0-.08-.05-.1-.15-.05-.2z" fill="none" stroke="#000" stroke-width=".05"/>
<path d="M236.32 224.82l-.32-.24c-.05-.04-.07-.1-.04-.15.04-.04.12-.04.17 0l.32.25.32.24c.05.04.07.1.04.15 0 .04-.1.04-.1 0l-.3-.25"/>
<path d="M236.32 224.82l-.32-.24c-.05-.04-.07-.1-.04-.15.04-.04.12-.04.17 0l.32.25.32.24c.05.04.07.1.04.15 0 .04-.1.04-.1 0l-.3-.25" fill="none" stroke="#000" stroke-width=".05"/>
<path d="M234.64 223.68l-.25-.15c-.1-.03-.1-.1-.1-.15 0-.05.1-.06.1-.02l.2.14.2.15c0 .03.1.1 0 .16-.1.1-.1.1-.2.1l-.3-.1"/>
<path d="M234.64 223.68l-.25-.15c-.1-.03-.1-.1-.1-.15 0-.05.1-.06.1-.02l.2.14.2.15c0 .03.1.1 0 .16-.1.1-.1.1-.2.1l-.3-.1" fill="none" stroke="#000" stroke-width=".05"/>
<path d="M233.65 223c.05-.05.15-.05.23 0 .07.06.1.15.05.2-.05.06-.15.06-.23 0-.07-.06-.1-.15-.05-.2"/>
<path d="M233.65 223c.05-.05.15-.05.23 0 .07.06.1.15.05.2-.05.06-.15.06-.23 0-.07-.06-.1-.15-.05-.2z" fill="none" stroke="#000" stroke-width=".05"/>
<path d="M237.32 225.53c.05-.06.03-.15-.05-.2-.07-.07-.17-.07-.22 0-.04.04-.02.14.05.2.08.06.18.06.23 0"/>
<path d="M237.32 225.53c.05-.06.03-.15-.05-.2-.07-.07-.17-.07-.22 0-.04.04-.02.14.05.2.08.06.18.06.23 0z" fill="none" stroke="#000" stroke-width=".05"/>
<path d="M237.88 226.16l.2.2c.05.04.13.06.17.02.05-.03.04-.1 0-.15l-.2-.2-.22-.2c-.05-.05-.13-.06-.17-.03-.05.03-.04.1 0 .16l.22.2"/>
<path d="M237.88 226.16l.2.2c.05.04.13.06.17.02.05-.03.04-.1 0-.15l-.2-.2-.22-.2c-.05-.05-.13-.06-.17-.03-.05.03-.04.1 0 .16l.22.2" fill="none" stroke="#000" stroke-width=".05"/>
<path d="M238.78 226.94c.05-.06.03-.15-.05-.2-.07-.07-.17-.07-.22-.02 0 .06 0 .15.1.2.1.07.2.07.2.02"/>
<path d="M238.78 226.94c.05-.06.03-.15-.05-.2-.07-.07-.17-.07-.22-.02 0 .06 0 .15.1.2.1.07.2.07.2.02z" fill="none" stroke="#000" stroke-width=".05"/>
<path d="M236.15 221.14l-.57.02-.1.83.05.1h.14l.73-.5-.26-.5" fill="#c8b100"/>
<path d="M236.15 221.14l-.57.02-.1.83.05.1h.14l.73-.5-.26-.5" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M234.6 221.6v.53l.88.1.13-.05v-.15l-.5-.68-.5.25" fill="#c8b100"/>
<path d="M234.6 221.6v.53l.88.1.13-.05v-.15l-.5-.68-.5.25" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M236.43 222.64l-.47.27-.52-.6v-.1h.13l.9.1-.04.5" fill="#c8b100"/>
<path d="M236.43 222.64l-.47.27-.52-.6v-.1h.13l.9.1-.04.5" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M235.3 222a.28.28 0 0 1 .37-.1.25.25 0 0 1 .1.37.3.3 0 0 1-.4.1.26.26 0 0 1-.08-.37" fill="#c8b100"/>
<path d="M235.3 222a.28.28 0 0 1 .37-.1.25.25 0 0 1 .1.37.3.3 0 0 1-.4.1.26.26 0 0 1-.08-.37z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M233.23 221.14c-.02 0-.13-.44-.25-.7-.08-.16-.38-.4-.38-.4.03-.05.4-.18.84.1.36.3-.03.82-.03.82s0 .13-.1.18" fill="#c8b100"/>
<path d="M233.23 221.14c-.02 0-.13-.44-.25-.7-.08-.16-.38-.4-.38-.4.03-.05.4-.18.84.1.36.3-.03.82-.03.82s0 .13-.1.18z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M234.22 221.44l-.4.35-.66-.6.06-.1.02-.2.9-.1.08.5" fill="#c8b100"/>
<path d="M234.22 221.44l-.4.35-.66-.6.06-.1.02-.2.9-.1.08.5" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M233.1 221.08c.06-.14.18-.23.28-.2.1.04.14.18.1.32-.05.15-.18.23-.28.2-.1-.04-.14-.18-.1-.32" fill="#c8b100"/>
<path d="M233.1 221.08c.06-.14.18-.23.28-.2.1.04.14.18.1.32-.05.15-.18.23-.28.2-.1-.04-.14-.18-.1-.32z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M238.32 222.5l-.56-.06-.24.8.04.15h.15l.8-.4-.1-.5" fill="#c8b100"/>
<path d="M238.32 222.5l-.56-.06-.24.8.04.15h.15l.8-.4-.1-.5" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M236.73 222.75l-.1.52.86.22.1-.1v-.2l-.4-.8-.5.2" fill="#c8b100"/>
<path d="M236.73 222.75l-.1.52.86.22.1-.1v-.2l-.4-.8-.5.2" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M238.38 224.02l-.5.2-.4-.75v-.14l.14-.04.86.2-.1.5" fill="#c8b100"/>
<path d="M238.38 224.02l-.5.2-.4-.75v-.14l.14-.04.86.2-.1.5" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M237.35 223.24c.1-.12.27-.13.38-.04a.25.25 0 0 1 .05.36.3.3 0 0 1-.4.04.25.25 0 0 1-.03-.36" fill="#c8b100"/>
<path d="M237.35 223.24c.1-.12.27-.13.38-.04a.25.25 0 0 1 .05.36.3.3 0 0 1-.4.04.25.25 0 0 1-.03-.36z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M240.22 224.26l.1.54-.84.28-.14-.03-.02-.14.35-.7.55.2" fill="#c8b100"/>
<path d="M240.22 224.26l.1.54-.84.28-.14-.03-.02-.14.35-.7.55.2" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M240.07 225.8l-.54.1-.3-.8.04-.12.15-.02.8.33-.15.5" fill="#c8b100"/>
<path d="M240.07 225.8l-.54.1-.3-.8.04-.12.15-.02.8.33-.15.5" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M238.6 224.3l-.16.5.82.34.15-.02.1-.14-.3-.8-.5.13" fill="#c8b100"/>
<path d="M238.6 224.3l-.16.5.82.34.15-.02.1-.14-.3-.8-.5.13" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M239.52 225.24a.26.26 0 0 0 0-.37.3.3 0 0 0-.38-.02.26.26 0 0 0 0 .38.3.3 0 0 0 .38 0" fill="#c8b100"/>
<path d="M239.52 225.24a.26.26 0 0 0 0-.37.3.3 0 0 0-.38-.02.26.26 0 0 0 0 .38.3.3 0 0 0 .38 0z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M240.84 226.97c0 .02.48.03.75.1.2.03.5.25.5.25 0-.04.1-.4-.3-.75-.4-.27-.9.2-.9.2l-.2.2" fill="#c8b100"/>
<path d="M240.84 226.97c0 .02.48.03.75.1.2.03.5.25.5.25 0-.04.1-.4-.3-.75-.4-.27-.9.2-.9.2l-.2.2z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M240.32 226.1l-.28.46.73.5.1-.1.1-.03-.1-.84h-.55" fill="#c8b100"/>
<path d="M240.32 226.1l-.28.46.73.5.1-.1.1-.03-.1-.84h-.55" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M240.92 227.07c.13-.07.2-.2.14-.3-.06-.08-.2-.1-.34-.02s-.2.2-.14.3c.05.1.2.1.34.02" fill="#c8b100"/>
<path d="M240.92 227.07c.13-.07.2-.2.14-.3-.06-.08-.2-.1-.34-.02s-.2.2-.14.3c.05.1.2.1.34.02z" fill="none" stroke="#000" stroke-width=".25"/>
<path d="M279.1 205.1v.55h-2.45v-.55h.9v-1.26h-.6v-.56h.6v-.54h.6v.55h.57v.5h-.58v1.2h.95" fill="none" stroke="#000" stroke-width=".29"/>
<path d="M134.42 217.1v-1.2" fill="none" stroke="#000" stroke-width=".02"/>
<path d="M134.1 217.1v-1.2" fill="none" stroke="#000" stroke-width=".03"/>
<path d="M133.78 217.1v-1.2m-.3 1.2v-1.2" fill="none" stroke="#000" stroke-width=".04"/>
<path d="M133.2 217.1v-1.2" fill="none" stroke="#000" stroke-width=".05"/>
<path d="M132.66 217.04v-1.1m.25 1.1v-1.15" fill="none" stroke="#000" stroke-width=".06"/>
<path d="M132.18 217v-1.03m.24 1.05v-1.1" fill="none" stroke="#000" stroke-width=".07"/>
<path d="M131.53 216.93v-.9m.2.9V216m.23.97V216" fill="none" stroke="#000" stroke-width=".08"/>
<path d="M131.3 216.92v-.86" fill="none" stroke="#000" stroke-width=".09"/>
<path d="M131.1 216.88v-.8" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M130.86 216.86v-.75" fill="none" stroke="#000" stroke-width=".11"/>
<path d="M130.4 216.8l-.02-.6m.25.62v-.67m-.48.6v-.53" fill="none" stroke="#000" stroke-width=".12"/>
<path d="M129.93 216.7v-.44m-.23.38v-.34" fill="none" stroke="#000" stroke-width=".13"/>
<path d="M129.45 216.6v-.24" fill="none" stroke="#000" stroke-width=".14"/>
<path d="M129.2 216.55v-.12" fill="none" stroke="#000" stroke-width=".17"/>
<path d="M135.73 217.04v-1.12m-.56 1.15v-1.18m-.4 1.2v-1.2" fill="none" stroke="#000" stroke-width=".01"/>
<path d="M277.78 217.13v-1.22" fill="none" stroke="#000" stroke-width=".02"/>
<path d="M277.45 217.13v-1.22" fill="none" stroke="#000" stroke-width=".03"/>
<path d="M277.13 217.13v-1.22m-.3 1.3V216" fill="none" stroke="#000" stroke-width=".04"/>
<path d="M276.55 217.13v-1.22" fill="none" stroke="#000" stroke-width=".05"/>
<path d="M276.02 217.06v-1.1m.25 1.1v-1.14" fill="none" stroke="#000" stroke-width=".06"/>
<path d="M275.54 217v-1m.24 1.04v-1.1" fill="none" stroke="#000" stroke-width=".07"/>
<path d="M274.9 216.95v-.9m.2.9v-.93m.22.97v-1" fill="none" stroke="#000" stroke-width=".08"/>
<path d="M274.66 216.94v-.86" fill="none" stroke="#000" stroke-width=".09"/>
<path d="M274.45 216.9v-.8" fill="none" stroke="#000" stroke-width=".1"/>
<path d="M274.22 216.88v-.75" fill="none" stroke="#000" stroke-width=".11"/>
<path d="M273.75 216.8v-.58m.24.62v-.67m-.5.6v-.53" fill="none" stroke="#000" stroke-width=".12"/>
<path d="M273.3 216.72v-.44m-.25.38v-.34" fill="none" stroke="#000" stroke-width=".13"/>
<path d="M272.8 216.63v-.25" fill="none" stroke="#000" stroke-width=".14"/>
<path d="M272.55 216.57v-.12" fill="none" stroke="#000" stroke-width=".17"/>
<path d="M279.1 217.06v-1.12m-.57 1.15v-1.2m-.4 1.2v-1.2" fill="none" stroke="#000" stroke-width=".01"/>
</svg>

After

Width:  |  Height:  |  Size: 109 KiB

View File

@@ -0,0 +1,14 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<defs>
<clipPath id="a">
<path fill-opacity=".67" d="M-61.312 0h682.67v512h-682.67z"/>
</clipPath>
</defs>
<g fill-rule="evenodd" clip-path="url(#a)" transform="translate(57.48) scale(.94)" stroke-width="1pt">
<path fill="#ffc621" d="M-237.99 3.5h1037.9v498h-1037.9z"/>
<path fill="#ef2118" d="M-240 342.5H799.3V512H-240z"/>
<path fill="#298c08" d="M-237.99 0h1038v180h-1038z"/>
<ellipse cx="534.22" rx="199.65" cy="352.97" transform="matrix(.54 0 0 .54 -25.81 73.95)" ry="199.65" fill="#006bc6"/>
<path d="M214.25 188.2l-6.432 4.522 23.494 33.02 6.266-3.995-23.33-33.546zm29.41 77.942l-9.66-6.736 3.99-12.676-48.12.672-13.93-10.664 65.69-.708 12.184-36.908 6.545 14.924-16.7 52.098zm76.522-70.68l-6.254-4.764-24.378 32.374 5.703 4.766 24.93-32.375zM254.77 247.05l3.503-11.245 13.29-.024-15.182-45.67 5.958-16.5 20.524 62.408 38.864.46-12.248 10.748-54.71-.176zm90.672 51.165l2.615-7.415-38.295-13.262-2.785 6.89 38.465 13.786zm-69.18-46.416l11.778-.12 4.104 12.64 38.803-28.468 17.532.604-53.093 38.693 11.493 37.127-13.99-8.357-16.628-52.12zm-19.748 102.08l7.862.114.363-40.524-7.42-.443-.806 40.853zm21.944-80.366l3.867 11.125-10.673 7.917 39.353 27.705 5.016 16.81-53.596-37.99-31.528 22.73 3.462-15.924 44.1-32.375zM175.188 286.5l2.325 7.51 38.646-12.202-1.877-7.192L175.19 286.5zm83.21-4.02l-9.38 7.12-10.835-7.695-14.157 45.997-14.432 9.975 19.525-62.727-31.376-22.94 16.213-1.638 44.44 31.908z" fill="#ffc621"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<path fill="#fff" d="M0 0h640v480H0z"/>
<path fill="#003580" d="M0 174.5h640v131H0z"/>
<path fill="#003580" d="M175.5 0h131v480h-131z"/>
</svg>

After

Width:  |  Height:  |  Size: 238 B

View File

@@ -0,0 +1,120 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<path d="M0 0v480h640V.08H402.44V0H0z" fill="#68bfe5"/>
<g stroke-miterlimit="4.8">
<path d="M420.9 193.24V329.6c0 44.6 80.57 71.07 80.57 71.07s80.58-26.48 80.58-71.08V193.2z" fill="#fff"/>
<path d="M490.3 241.15v61.4h-69.4v22.33h69.4v71.54l11.17 4.25 11.17-4.25v-71.54h69.4v-22.34h-69.4v-61.4z" fill="#d21034"/>
<path d="M420.9 193.24h161.15v52.65H420.9z" fill="#d21034"/>
<g stroke-miterlimit="3">
<g fill="#fff" stroke="#000" stroke-width=".81" transform="matrix(.7 0 0 .7 -96.9 97.5)">
<ellipse ry="10.96" rx="13.62" cy="192.21" cx="798.23" stroke-width=".8"/>
<ellipse ry="6.12" rx="12.11" cy="186.53" cx="798.23"/>
<ellipse ry="6.12" rx="12.11" cy="198.77" cx="798.23"/>
<ellipse ry="6.12" rx="12.11" cy="192.21" cx="798.23"/>
</g>
<path d="M578.06 235.45l-1.32-3.64s-3.6-1.4-3.9-3.3c-.63-5.1-2.46-7-5.2-7.7-2.74-.7-4.56.5-4.56.5-.82 1.2-4.94 1.2-7.22 1.3-2.28.1-2.32-1-2.32-1-1.78 0-2.52-1.3-2.52-1.3-1.16-2.3-2.03-3.2-2.6-3.5 2.96.1 5.2-1.3 8.54-4.8 3.65-3.8 6.26-2.3 6.26-2.3-1.77 3.6.6 3.3.6 3.3 4.83-2.4.63-8.6-.83-8.4-1.5.3-1.9-.7-1.9-.7 0 1.1-1.6 1.6-1.6 1.6 1.2-7.1-3-9-3-9-.7.7-1 2-1 2-1.2 4.3-5.2 3.7-9.5 1.6-4.4-2.1-16.1 2.2-19.8 3.7s-10.4 3.8-16.4.4c-6-3.4-7.5-2.8-9.9-2.1-2.4.6-6.6 1.6-8.2.8-1.6-.8-3.3-.9-3.3-.9.4-.2-.3-1.2-.3-1.2-1.9-2.5.2-4 .2-4s-3.4 1-2.1 6.8l.6.9s.4 1.8 1.4 2.4v.4s.8-.4 1.1.8c.2 1.2 1.5.1 2.1-.9 0 0-1 5.3 5.6 6.6 0 0-.8-.8-.5-1.4.3-.5-.8-1-.7-1.8.1-.8-1.7-1.2-.3-1.8 1.4-.6 2-1.9 4.9-.2 2.9 1.8 5.2 1.4 5.2 1.4s-1.8-3.7-.8-3.7 5.4 5.5 7.6 5.2c2.1-.3 6.3-2.7 8.4-1.8 0 0 .2-1.1 8.2-2.5 8.1-1.3 18-5.4 21.7-1.8 0 0 .4 2.8 2 3.6 0 0-.3 5.8-10.2 2.6l-3.6-.9s-.6-1.7-19.5 3.1c0 0-1.1.4-1.9 1-.7.5-1.7-.3-5.5 1-3.7 1.4-17.7 6-26.3 4.3-1.9-.5-3.7-.2-3.7-.5-.1-.3 1 .1 1 .1-.7-.7-.9-.8-.9-.8-7.2-.8-6-4-6-4l.3 1c1.2-1.5-.5-5.2-.5-5.2a3.78 3.78 0 0 0-.1-.3l.6-.4c3.4-2.9 7.5-3.5 7.5-3.5-2.4-2.9-7.5-1.3-7.5-1.3.1-3.5-1.4-7.7-1.4-7.7-5 .6-7.8 4.7-7.8 4.7-.2-3.6-4.8-5.7-4.8-5.7 1.7 2.1.6 7.1.6 7.1l.2.1h-.4l-.1 1.1-.1-.1s-1.8.6-3.8 5.2c0 0-.2 1.1-1 2.1v-.4s-2.2 2.9-7.4 0c0 0-7.1-4.2-9.5-4-2.5.1-4.1 1.3-4 2 0 0-5.6-.5-7.6 2.8 0 0-4.2 1.5-.6 5 0 0 .5 1.5 1.6 2.3 0 0-.2-3.2.6-2.2 0 0 .2.3.6.5.1.5.4 1.7 1.2 2.4l.5-.2c.1-.8.3-1.8.5-2.2h.2l-.1.1 1 1.6 1.1-.7c.5-.1 1.2.5 1.2.5l1.3-1.1c1.3.3 1.6-2.3 1.6-2.3 1.2.3 2.3 0 3.2-.6.6 2.1 5.2 4.4 5.2 4.4h.2c-.4.3-.6.5-.6.5 2.1 1.4 6 1.1 6 1.1-1.6.6-1.4 3.6-1.4 3.6-1 .4-1.1 1.4-1.1 1.4 3.2 1.3 5.4.2 5.4.2.1 1.1-.1 1.2-.1 1.2-1.3 2.7-1.8 5.4-1.8 5.4h.1l-.1.2s-5.6 2-8.1 4.7c0 0-.2-.8-.9-.8s-2.9-1.8-3.9-2.1c-1-.3-2.5.3-2.9-.1-.4-.4-.2-3.6-.9-4.1l-.7-1.9c-.5 1-2.4.8-2.4.8l-.8.6c-.4 0-.8-.1-.8-.1-.2 0-.4.6-.6 1.1l-.2.2v-.6c-.4.3-1.2-.2-1.5-.2-.2 0-.4.4-.5.9-.8.1-1.9.2-1.9.2-.3.2-.1 2.6-.1 2.6-2.3 1.2-1.2 3.1-1.2 3.1 1.3 6 11.6 3.3 12.3 4.1.8.8 2.6.9 3.5.9.9 0 2.1 2.3 3.4 2.5 1.3.3 0-1.8 6.1-3.2 6.1-1.5 8.2-4 8.2-4 1.9-.3 2.5-2.7 2.6-3.6 0 .4.1.9.2 1.4.3 2.1-1.2 2.9-1.2 2.9l5.3-1.6c2.1-.5 1.8-2.3 1.8-2.3 2 5.78 5.6 6.1 5.6 6.1.7-2.2.6-2.9.6-2.9l1.7-.1c.1-1.2-1-2.1-1.6-2.5l2.6 1.5 1-.2c0 .9 1.4 1.74 1.4 1.74l.2-1.2c1.2 1.6 3.4 1 3.4 1a7.34 7.34 0 0 0-.2-.8c4.7 2.9 12.14-.8 12.14-.8 2 .5 2.3-.7 2.3-.7 2.3.3 2.8-1.3 2.8-1.3 5.4-.4 9.2-4.24 9.2-4.24 2.6-.2 2.7-2.1 2.7-2.1s2.6.5 5.2-2.7c5.9-8.5 14.8-4.1 14.8-4.1l-5.17.33c-13.4-.1-7.83 9-7.83 9l.9-.1c1.3.3 5.7 3.7 4.1 6.3l-.1.1c-2.7 3.8-7.8.2-9.2-3-1.5-3.2-4.4-2.4-4.4-2.4s-7.6 1.3-4.5 7.3h.1c.1 1.5 1 3.2 3.7 4.8 1.5 2.2 6.5 2.4 10.2 1.6 1.7-.3 10.7-4.2 10.7-4.2.7-1.9 2.9-1.5 4.9-4.3 2-2.8-2.8-3.8-3.9-5.4-1.1-1.5.3-1.2.3-1.2 4.4 2.4 4.7-5.2 4.7-5.2.5 4.4 4.3 5.55 4.3 5.55 2.4-2.32.6-7.2.6-7.2 5.7 10.18 9.1 8.5 9.1 8.5-3.03-1.9-1.5-4.4-1.5-4.4 2.7 10.8 13.98 1.4 13.98 1.4-.5 1.56 0 2.47 1 3.48 1 1 2.2 1.46 1.7 3.3-.6 1.8-5.8 1.45-5.8 1.45s-5.1-.3-4.6 4c.28 1 3.66 1.4 4.9 1.1 0 0-.5.1 1.4.3.6.1 1.4.1 2.1.1 2.2-.1 4.5-.4 4.5-.4 2.9-.6 2.5-1.6 2.5-1.6 4.5-.9 4.9-3.9 4.9-3.9z" fill="#ffd100" stroke="#000" stroke-width=".8"/>
<path d="M429.63 216.74s.24-.56.7-.63c.34 0 .76.3 1.2.8l.25-.2s-1.2-1.7-.73-3c.22-.5.74-.9 1.57-1.1l-.07-.3c-.93.2-1.53.7-1.78 1.3a2.1 2.1 0 0 0-.14.8c0 .6.22 1.2.43 1.7-.27-.1-.53-.2-.78-.2-.46.1-.7.4-.8.6zm140.98 23.93c-3 .48-7.5.75-7.8-.17 0-.17-.1-.83 2.4-2.45l-.3-.45c-2 1.36-2.9 2.34-2.6 3.1.7 1.65 7.2.7 8.5.5zm-58.3 1.76c-.7-1.06-.4-2.52 1-4.34l-.4-.4c-1.4 2-1.8 3.6-.9 4.9z"/>
<path d="M508.12 237.84c.06 1.84 1.36 3.55 3.85 5.07l.28-.4c-2.33-1.4-3.54-3-3.6-4.6-.1-2.5 2.6-4.5 2.6-4.5l-.3-.4c-.12.1-2.94 2.2-2.83 5zm52.05.68c-.84 1.24-.56 2.73-.55 2.8l.53-.1c0-.02-.25-1.35.47-2.4.43-.63 1.12-1.04 2.06-1.22l-.1-.53c-1.1.2-1.9.7-2.4 1.45zM440.9 215.14l-.15-.04-.02.17c0 .02-.24 1.64-.98 2.08-.2.12-.43.14-.68.04l-1.25-.8c-.25-.2-.46-.4-.82-.3a1.8 1.8 0 0 1-.35-1.3c.1-.8.6-1.5 1.53-2.1l-.18-.3c-1 .7-1.55 1.5-1.65 2.3-.1.9.44 1.6.46 1.6l.1.1.1-.1c.3-.1.4-.1.7.2l1.4.8c.4.1.7.1 1-.1.8-.5 1.1-1.8 1.1-2.2 3.3.7 5.9-3.3 6-3.4l-.2-.2s-2.7 4.1-5.8 3.2z"/>
<path d="M433.14 214.54c-.16.65-.05 1.3.33 1.9.35.6.7.9 1.07.96.45.06.8-.27 1.13-.57.23-.2.44-.4.62-.4l.2.2.2-.2-.5-.3c-.3-.03-.6.22-.9.48-.3.3-.6.6-.9.5-.3 0-.6-.3-.9-.8-.4-.5-.5-1.1-.3-1.7.3-1.4 2.1-2.5 2.1-2.5l-.2-.2c-.1.1-1.9 1.2-2.3 2.7zm-4.46 20.65c.15-.6.58-1.1 1.27-1.5-.13 0 .68.7 1.38.6l.45-.3c.2.1 1.4 1.2 1.4 2.6 0 .3-.06.6-.2.9l.3.1c.88-2.1-1.34-4-1.36-4l-.1-.1-.12.1-.4.2c-.57 0-1.32-.6-1.32-.6-.94.4-1.42.9-1.6 1.6zm10.32-5.4c-.66 0-2.52.4-3.13 1.3-.22.3-.25.7-.1 1.1l.25.6c.58 1.5 1.18 3.2 1.84 3.5l.15-.3c-.5-.4-1.1-2-1.7-3.4l-.2-.7c-.1-.3-.1-.6.1-.9.5-.8 2.2-1.2 2.9-1.2.5-.1.6 1.5.7 2.5l.3-.1c-.1-1.4-.2-2.9-1-2.8z"/>
<path d="M433.9 231.37c-.4.35-.3.88-.3.9 0 .15.17 4.04 2.02 4.84l.12-.2c-1.67-.7-1.84-4.5-1.84-4.6 0 0-.05-.4.2-.6.3-.2.85-.2 1.62 0l.08-.3c-.9-.2-1.53-.2-1.9.2z"/>
<path d="M432.44 231.7c-.8.56-.78 2.18-.78 2.25h.3c0-.02-.03-1.53.66-2 .25-.18.6-.2 1-.03l.1-.28c-.5-.2-.93-.2-1.28.05z"/>
<g transform="matrix(.7 0 0 .7 -96.9 97.5)">
<path d="M862.33 169.5c.02.03 1.3 2.94 1.3 5.3 0 .4-.2.7-.28 1.08l-.5-1.37-.4 1c0 .1-.52 1.4.4 2.9 1.2 2 4.18 3.3 8.87 3.8l.07.1c-.2.1-.4.1-.4.2l-.2.2v.4c.1.5.7.5 1.8.6.2 0 .5.1.7.1l.5.2-.1-.1c1 .1 2.2.4 3.5.9l-1 .3 1.1.5c.1 0 8.6 3.5 12.2 6.3-1 .9-5.3 4.1-12.8 2.3l-1.3-.3.8 1c0 .1 4.9 5.6 5.9 9-1.7 0-8.2 0-10.5-2l-.6.6c0 .1 3.1 4.6 3.8 8.1-.9.1-3 .2-4.3-1.4l-.6-.7-.3 2.1c-.6-.5-1.4-1.2-1.4-1.9v-.5l-1.8.3-3.8-2.3a7.97 7.97 0 0 0-.6-.3l-.4.7.6.3c.8.5 2.2 1.7 2.3 3.2l-2.4.1v.5c0 .3-.1 1.3-.9 3.7-1.2-.3-5.4-1.7-7.9-8.8l-.8.2v.2c0 .6-.3 2.2-2.5 2.8l-6.5 1.9c.4-.7.8-1.5.8-2.7v-.9c-.2-1-.3-1.9-.3-2.6 0-1.5.4-2.4 1.4-3l-.4-.7c-.1 0-9.6 3.8-14.3 2.2.2-.9 1-4.1 2.6-7.6l-.2.2c.3-.1.6-.6.3-2.1l-.1-.5-.5.2s-3 1.3-7.4-.3c.1-.4.3-1 1.2-1.4l.3-.1-.1-.3v-.6c0-1.2.2-4 1.9-4.6l-.2-.8c-.1 0-5.2.4-8.3-1.3.8-.6 2.5-1.6 4.5-1.9h.3v-.5c0-.4-.1-1.3-.5-2.1 1.2.4 2.6.6 3.1.3l.2-.2-.2-3.1-.8.1.1 2.5c-.5 0-1.8-.2-3-.6l-1.2-.4.8 1.1c.6.9.7 1.9.7 2.4-2.8.5-5 2.2-5.1 2.3l-.4.4.4.3c2.4 1.6 6.1 1.8 8.1 1.7-1.2 1.3-1.4 3.4-1.4 4.5v.4c-1.4.8-1.6 2.1-1.6 2.2l-.1.3.3.1c4.1 1.7 6.9.9 7.9.5v.9c-2.1 4.2-2.9 8.3-2.9 8.3l-.1.3.3.2c3.8 1.5 10.7-.6 13.8-1.7-.4.7-.6 1.5-.6 2.4 0 .8.1 1.8.2 2.8 0 .3.1.5.1.7 0 2.3-1.6 3.2-1.7 3.2l.3.7 7.9-2.4c1.9-.5 2.6-1.6 2.9-2.5 3.1 7.4 8 8.1 8.2 8.1h.3l.1-.3c.7-2.3.9-3.5 1-4a439.55 439.55 0 0 0 2.5-.2v-.5c0-.6-.2-1.2-.5-1.7l1.3.8 1.3-.2c.4 1.3 2 2.3 2.2 2.5l.5.3.3-1.8c2 1.8 4.8 1.2 4.9 1.2l.3-.1v-.4c-.4-2.7-2.2-5.9-3.2-7.6 3.5 1.6 9.8 1.4 10.2 1.4h.5l-.1-.4c-.6-2.8-4.1-7.3-5.6-9 8.2 1.5 12.6-2.7 12.8-2.9l.3-.3-.3-.3c-2.8-2.4-9.1-5.2-11.7-6.3l.9-.2-.9-.5c-2.1-1.2-4.3-1.4-5.9-1.4v-.1c-1-1.1-1.4-1.3-1.6-1.3-5.5-.6-7.6-2.2-8.3-3.4-.1-.1 0-.2-.1-.3l.3-.3c.5-.7.7-1.6.7-2.6 0-2.5-1.3-5.4-1.4-5.6l-.7.3z"/>
<path d="M836.8 167.86c-.02.08-.6 3.12-3.2 4.54-1.94 1.07-4.52 1-7.64-.26l-.35-.14.1.37c0 .08.2 1.87 1.9 3.18 1.4 1.1 3.4 1.47 5.9 1.2-.8 1-3.5 4.45-3.5 7.8v.53c.4.24 4.6 1.4 6.6-1.12.1 1.08.4 4.52 1.8 5.87.8.73.9 1.8.9 2.66 0 .7-.1 1.3-.1 1.3l-.1.6.5-.4c.2-.1 4.1-3 5.3-6.7 0 0 .6-1 1.8-1.4v.5c0 1.4.7 4 4.9 5.6l.4.1v-.3a7.13 7.13 0 0 1 0-.8c0-1.1.1-3 1.1-4 .7-.7.9-1.4.9-2.1 0-.5-.1-.9-.2-1.2.9.2 2.9.8 3.7 2.4 1.2 2.2 5.4.4 5.5.3l-.1-.4s-1.7.4-2.8-.4c-.5-.3-.8-.8-.9-1.5l-.2-2.3c-.1-1-.2-1.7-.7-2.3.5-.1 1.6-.1 2.1 1 .7 1.6 3.2 1.7 3.3 1.8h.9l-.7-.5s-2.2-1.5-1.8-3.3l.3-1.4c.6-2.5 1.6-6.6.8-9.2l-.4.2c.2.6.3 1.4.3 2.2 0 2.2-.6 4.9-1.1 6.7l-.3 1.4a2.6 2.6 0 0 0 0 .5c0 1.2.8 2.1 1.4 2.7-.7-.2-1.7-.5-2.1-1.4-.6-1.3-2.2-1.4-3-1.2l-.5.1.4.3c.8.5.8 1 .8 2.3l.2 2.3c.1.8.5 1.5 1.1 1.9.5.3 1.1.4 1.7.4-1.3.3-2.9.5-3.6-.6-1.1-2.1-4.3-2.7-4.4-2.7l-.5-.1.2.4s.4.6.4 1.4c0 .5-.2 1.2-.7 1.7-1.1 1.1-1.3 3.1-1.3 4.3 0 .2.1.2.1.4-3.6-1.5-4.2-3.7-4.2-5 0-.5.1-.9.2-.9l.1-.4-.4.1c-1.7.3-2.4 1.7-2.5 1.7-1 3-3.7 5.3-4.7 6.1a6.88 6.88 0 0 0 .1-.9c0-1-.2-2.1-1-3-1.4-1.4-1.6-6-1.6-6v-.8l-.4.7c-1.6 2.8-6.2 1.5-6.2 1.5-.2-3.6 3.9-8.2 3.9-8.2l.4-.5-.6.1c-2.6.3-4.7 0-6.1-1.1a4.63 4.63 0 0 1-1.7-2.5c3.1 1.2 5.7 1.2 7.7.1 2.8-1.5 3.4-4.6 3.4-4.8 2.9-6.6 5.5-7.6 5.5-7.6l-.2-.5c-.1 0-2.7 1.1-5.7 7.9z"/>
<path d="M843.45 158.07h-.2l-2.36 3.25.7.07c12.8 1.2 19.6 8.9 19.6 9l.3.3 2.3-2.6-.2-.3c-6.5-10.3-20.2-10-20.3-10zm.22.8c1.6 0 13.27.37 19.2 9.33l-1.3 1.4c-1.38-1.44-7.95-7.58-19.23-8.9a631.23 631.23 0 0 1 1.33-1.83z"/>
<path d="M841.6 164.84c-1.1 1.5-2.1 3.7-2.1 4.74 0 .2.02.36.1.45l.07.03c-1.34 1.2-2.13 3.2-2.13 5.46 0 1.24.22 2.54.68 3.77l.25.7c1.26 3.4 2.35 6.3 7.8 4.6 5.24-1.7 5.44-2 6.76-4.2l.35-.6c.72-1.2 1.5-1.4 2.34-1.7 1-.3 2.03-.6 2.94-2.4l.88-1.3c.96-1.3 2.15-3 2.3-5.1l-.47-.1c-.13 1.9-1.28 3.5-2.2 4.8l-.92 1.4c-.82 1.6-1.7 1.9-2.66 2.1-.9.2-1.8.5-2.7 1.8l-.4.6c-1.3 2.1-1.5 2.3-6.5 4-5.1 1.6-6-.9-7.3-4.4l-.3-.7c-1.5-3.8-.3-7.7 1.5-9.1l.6-.5-.9.1v-.2c0-.6.6-2.6 2-4.5 1.1-1.6 3.9-3.1 3.9-3.2l-.3-.4c-.1.1-2.8 1.6-4.1 3.3z"/>
<path d="M839.16 178.65c.9.62 2.17.58 3.7 0 0 .54.12 1.7 1.07 2.54 1.12.9 2.96 1.1 5.5.5l-.1-.5c-2.38.5-4.1.4-5.1-.5-1.07-1-.92-2.5-.9-2.5l.03-.4-.37.1c-1.6.7-2.8.7-3.6.1-1.5-1.1-1.4-3.8-1.4-3.8h-.5c0 .1-.2 3 1.6 4.2z"/>
<path d="M842.07 175c-.66.15-.83.7-.83 1.12 0 .1 0 .2.03.28.1 1.18 1.4 1.97 2.56 2.3 1.13.33 2.53.36 3.08-.35.3-.28.4-.8-.1-1.6-1.7-3-4.5-1.82-4.7-1.76zm1.9 3.26c-1.03-.3-2.15-.95-2.24-1.93-.03-.1-.14-.75.44-.9h.05c.1-.05 2.6-1.14 4.2 1.54.27.48.32.85.12 1.1-.34.44-1.45.52-2.58.2zM842 175h.05-.05zm1.63 5.98c-.3 2.5-.1 2.57.07 2.63l.16.1.18-.2 1.45-1.9-1.9-.8-.1.3zm.42.38l.74.34-.9 1.1c0-.36 0-.9.1-1.44zm-4.2-2.4l-.1 2.38 2-2.42-1.9-.2v.24zm.44.27l.5.06c-.2.2-.3.3-.6.7v-.8z"/>
<path d="M838.53 178.2c.02.03 1.48 2.9 1.75 3.95.16.66 1 1.42 2.02 1.8 1 .37 1.96.3 2.66-.18l1.33-1.1c.4-.43.5-.55.9-.48l.1-.5c-.6-.1-.9.2-1.4.6l-1.3 1c-.8.5-1.8.3-2.3.1-1-.4-1.7-1-1.8-1.5-.3-1.1-1.7-3.9-1.8-4.1l-.4.2zm1.9-8.6c-1.6.75-2.3 2.7-2.32 2.8l.5.15c0-.02.7-1.87 2.1-2.53.7-.33 1.5-.3 2.4.02l.2-.42c-1-.4-1.9-.4-2.7-.02zm10.9 5.16c.13.1 3.2 2.4 1.43 5.24l.4.25c1.97-3.2-1.52-5.83-1.56-5.86l-.27.3zm-9.2.45s-.48 1.8 1.96 2.4c0 0-2.3 0-2.5-.6-.2-.6 0-1.9.5-1.7zm7.44 2.1c0 .2-.12.3-.27.3a.28.28 0 0 1-.27-.2c0-.1.12-.2.27-.2.15 0 .27.2.27.3zm.27 1.1c0 .2-.12.3-.27.3a.27.27 0 0 1-.27-.2.27.27 0 0 1 .27-.2c.15 0 .27.1.27.3z"/>
<circle r=".27" cy="177.82" cx="848.01"/>
<path d="M848.75 179.45a.27.27 0 1 1-.54 0c0-.15.2-.28.3-.28s.3.13.3.28zm-7.1-7.32a.27.27 0 0 1-.55 0c0-.15.13-.27.27-.27.16 0 .28.12.28.27z"/>
<circle r=".27" cy="173.22" cx="841.65"/>
<circle r=".27" cy="172.68" cx="840.09"/>
<path d="M840.83 174.3a.28.28 0 0 1-.28.27.27.27 0 0 1 0-.54.28.28 0 0 1 .28.27zm4.74-9.55s3.52 2.17.13 6.23c0 0 1.67-1.24 1.84-3.36.18-2.13-1.2-3.82-1.97-2.87zm13.5 5.84c-1.13.5-2.76-.5-3.58-1.6-.9-1-2.5-1.3-3.6.6-1.1 1.8-2.6 2.5-2.6 2.5s1.5-.9 3-2.5 2.4-.3 3.8.4c1.5.8 1.7.9 2.7.5v-.2z"/>
<path d="M858.78 170.86c-.46.35-1.3.64-2.2-.1-.9-.72-1.67-1.7-2.8-1.12-1.14.58-3.3 2.2-3.3 2.2s3.5-2.4 4.17-1.88c.67.52 2.24 1.8 3.2 1.43.96-.4.93-.6.93-.6z"/>
<path d="M856.1 172.34c-1.1-.84-2.2 1-3.14.76-.93-.24-1.7-1.78-1.7-1.78s.88 1.63 2.1 1.25c1.23-.37 2.07-1.13 2.83-.55.7.58-.1.32-.1.32z"/>
<path d="M854.37 172.57c-2.18.23-2.4-1.8-2.4-1.83 0 0 .7 1.78 2.62 1.45l-.3.3z"/>
<path d="M854.3 171.18c.14.55.1.8-.47.8-.6 0-1-.2-1-.76 0-.57 1.38-.4 1.47-.04zm-7.84-3.03c0 .38-.3.7-.7.7-.4 0-.46-.27-.46-.65s.07-.73.46-.73c.4 0 .7.3.7.68z"/>
<path d="M844.05 165.7s3.74.05 1.9 4.73c0 0 1.4-2.33.52-4-.9-1.68-2.3-1.26-2.3-1.26s-.35.32-.12.54z"/>
<path d="M843.94 167.58c0 .94.62 1.9 1.86 2.88l.28-.36c-1.12-.88-1.7-1.72-1.68-2.5 0-.8.6-1.26.62-1.27l-.28-.37c-.03.03-.8.6-.8 1.62z"/>
<path d="M844.77 168.37c.16.54.58.95 1.24 1.2l.2-.4c-.5-.22-.8-.53-.9-.93-.2-.8.4-1.72.4-1.73l-.3-.2c0 .1-.8 1.1-.5 2.2zm5.13 2.6s.7 1.5-.32 3.14c-1.02 1.7-1 1.6-1 1.6s1.23-2.2.77-3.2c-.47-.9.55-1.5.55-1.5zm14.55 15.8c3.84.7 12.5 7.5 12.6 7.58l.5-.64c-.37-.2-8.92-6.9-12.95-7.7l-.15.8zm3.4 9.58c.27 3.4 3.98 5.53 4.14 5.6l.3-.7c-.1 0-3.5-1.98-3.7-4.96h-.8zm-9.2.7c0 3.83 3.58 8.46 3.74 8.66l.6-.5c-.1 0-3.6-4.6-3.6-8.1h-.8zm-12.15.44c.63 1.2.57 1.9.4 2.2-.2.3-.58.4-.6.4l.1.8c.3-.1.9-.3 1.2-.8.4-.7.26-1.7-.38-3l-.72.3z"/>
</g>
<g fill="#fff" stroke="#000" stroke-width=".36">
<path d="M429.57 216.3s.15 1.7 1.47 2.7c0 0-.15-1.85.23-2.62 0 0-.7-.78-1.7-.08zm2.63 1.08s.3 1.55 1.24 2.25l.54-.16s.23-1.93.54-2.16c.3-.2-1.3.7-2.32.1z" stroke-width=".24"/>
<path d="M434.52 217.3l1 1.55 1.17-.62-.3-1.85s-.7-.16-2 .92zm4.72.32l-1.3 1.08s-.7-.54-1.25-.46l.2-1.7s.9-.7 2.3 1.08zm-9.36 16.02s-.23-2.4.08-2.56c0 0 .92.3 1.3-.07 0 0 .55 2 .4 2.8-.16.8-1.1.5-1.78-.1zm5.96-2.48s-.08-2 .3-2.25c0 0 1.94.3 2.4-.7l.7 2s-2.16-.2-3.4 1.1z" stroke-width=".24"/>
<path d="M433.75 231.55s.4-2.1.78-2.17c0 0 1 .3 1.3-.08l-.06 2.56s.07-1.1-2.02-.3zm-2.24.3s.5-1.85.8-1.85 1.1.46 1.5.15v1.4s-1.7-.4-1.9 1.93l-.3-1.62z" stroke-width=".23"/>
</g>
</g>
<g fill="#00a651" stroke="#000" stroke-width=".78">
<path d="M461.68 270.4s5.26 4.9 3.9 9.15c0 0 3.37-7.27-.26-9.4-3.64-2.13-3.76-.5-3.64.25z" stroke-width=".52"/>
<path d="M455.04 275.15s-1.38 1.9.13 3.27c0 0-1.63 2.37-.38 4.38 0 0-1 2.13-.8 4.4 0 0-.9 3.5 1 5.13 0 0 2 1 2.9.12 0 0 1.7-2.63.6-5.4 0 0 1.2-2.24-.1-5.13 0 0 .3-1.63-.8-3.5 0 0 .7-1.26.1-2.26 0 0-2.5-2.63-2.8-1z" fill="#964b36" stroke-width=".52"/>
<path d="M456.54 269.02S450.28 257 445.9 256.5c-4.4-.52-4.64-4.77-4.64-4.77s.5 2 4 2 10.28 4.9 11.03 8.64c.7 3.76 1.5 3.26 1.5 3.26l-1.3 3.4z" stroke-width=".52"/>
<path d="M456.54 268.14s2.26-15.16 12.16-15.4c9.9-.27 6.64.74 9.02-.9 0 0-6.64 3.52-10.77 4.02-4.14.5-7.52 8.52-7.4 10.02.13 1.5-2.25 4.4-3.38 3.4-1.13-1.02.37-1.14.37-1.14z" stroke-width=".52"/>
<path d="M458.8 273.78s2.25-6 6.14-4c0 0-3-5.77-8.4-.76 0 0 2.38 3.26 2.26 4.76zm-7.52-6.02s3.26 13.4-1.76 17.54c0 0 .13-6.88-2.88-11.02-3-4.14 3-8.65 4.64-6.52z" stroke-width=".52"/>
<path d="M451.66 270.15s5.9 5.64 6.26 7.52c.38 1.88 1.76-5.64-1-7.77s-5.76-2.5-5.76-2.5l.5 2.75z" stroke-width=".52"/>
<path d="M440.8 284.93s.53 2.37 1.98 2.82c0 0 .08 1.76 1.38 2.3 0 0-.7 1.45.46 2.36 0 0-.24 3 .83 3.6 0 0 2.6-.1 3.52-.9 0 0 .53-1.9-.92-3.8 0 0 .23-1.8-1.22-2.8 0 0 .46-2.4-1.38-3.3 0 0-.3-2-1.45-3 0 0-2.2 3.2-3.2 2.9z" fill="#964b36" stroke-width=".52"/>
<path d="M443.7 282.02s-7.72-2.82-12 1.23c0 0 6.57.9 7.4 2.2.85 1.3 4.9-2.13 4.6-3.43z" stroke-width=".52"/>
<path d="M441.32 286.84s-.6-.54-1.37-1.07c-.76-.54-7.26-2.3-8.18 3.97 0 0-2.37-6.2 1.07-7.03 3.44-.8 6.2 1.2 8.48 4.2m-5.07-12.8s2.37 5.2 3.25 5.4c.88.3 1.5-.6 1.5-.6s-3.13-4.6-4.76-4.7zm-1.76-7.9s-2.1-6.6-4.4-4.9c-2.4 1.8-1.8 6.6-1.8 6.6s-4.8-4.9-2-8.7c2.7-3.9 8.1.4 8.1 7.2z" stroke-width=".52"/>
<path d="M439.88 279.8s0 1.25.88 1.62c.88.38 2.5 1 2.5.25s-1.25-3.63-1.75-3.25c-.5.37-1.3.37-1.6 1.38z" fill="#964b36" stroke-width=".52"/>
<path d="M438.38 272.03s-.25-5.76 3.5-7.9c0 0 .76.13 1.14-1 0 0-3 7.27-2.14 10.9l-.12.5" stroke-width=".52"/>
<path d="M439.13 265s6.77-14.03 15.04-9.14c0 0-8.65 1.75-11.78 7.9l-3.2 4.63-.2-3.4z" stroke-width=".52"/>
<path d="M435.5 270.15s-2-9.4-3.26-10.65c-1.26-1.25-3.4-2.63-5.9-.5 0 0 4.4-3.9 9.03-.63 4.63 3.26 3.63 8.4 3.63 8.4l-.5 6.5-3.13-2.87" stroke-width=".52"/>
<path d="M442.76 281.3s-8.27-15.66-13.66-4.5c0 0-1 2.87.13 4 0 0-3-2.26-1.63-7.77 1.37-5.5 10.52-3 13.16 1.5 2.63 4.5 3.38 6.77 3 7.02-.37.25-1-.25-1-.25zm23.3 4.5s6.03-12.4 9.54-6.76c0 0 1 2.76-.5 3.9 0 0-2.4-2.9-4.52.62-2.13 3.5-1.25 3.25-1.25 3.25s-2.26.7-3.26-1z" stroke-width=".52"/>
<path d="M475.1 282.93s3.24 1.75 2.12 5.26c0 0 4.38-8.4-1.63-9.2 0 0 1.1 2.6-.5 3.9zm.37-8.52s7.9 2.3 8.14 5.7c0 0 1.4-6.5-3.1-8.5 0 0-5.4.9-5 2.9zm3.5-10.4c3.4-6.6 7.65 2.2 7.65 2.2s1.5-6.9-2.76-8.1c-4.26-1.3-7 14.6-7 14.6l-5.03 1.1s1.38-13.9 8.9-15.1l.88.1" stroke-width=".52"/>
<path d="M472.96 268s-4.76-9.76-8.02-10.76 1.76-2.5 3.76-.63c2 1.9 5.76 4.3 5.4 9.3l-1.14 2.2zm-4.9 13.42s1.4-6.64 5.15-8.64c3.8-2 7.3-1.25 7.3-1.25s-4.5 1-5.2 3.25c-.7 2.26-2 2.38-2 2.38l-5.1 4.26z" stroke-width=".52"/>
<path d="M466.07 285.8s-2.13 4.02-1.63 4.65c0 0-2.25 3.26-1.38 4.88 0 0 2.26 1.76 3.26 1 0 0 2.63-3.63 1.88-5.63 0 0 1.75-2.38 1.13-3.88 0 0-2.63.12-3.26-1z" fill="#964b36" stroke-width=".52"/>
<path d="M455.05 278.65c.14.07 1.4.7 2.26.4l.6-.52-.4-.23c-.3.62-1.7.1-2.1-.12l-.2.47zm-.2 3.9l-.1.52c.1.02 2.64.5 3.85-.57l-.36-.4c-1 .9-3.37.45-3.4.44zm-.65 4.42l-.32.43c.03.02 3 2.13 4.88-.17l-.42-.34c-1.57 1.9-4.04.1-4.14 0zm-11.48.64l.1.3c.12 0 2.62-1 2.78-2.9h-.3c-.15 1.7-2.55 2.6-2.58 2.6zm1.42 2.3l.02.3c.1 0 2.4-.1 2.8-1.8h-.3c-.34 1.4-2.5 1.6-2.52 1.6zm.48 2.4l-.02.3c.1 0 2.7.2 3.58-1.3l-.26-.1c-.8 1.3-3.28 1.2-3.3 1.2zm19.63-1.6c.05.1 1.16 1.2 2.47 1.1.63 0 1.2-.3 1.68-.8l-.4-.3c-.38.5-.82.7-1.3.7-1.07.1-2.06-.9-2.07-.9l-.38.4z" fill="#000" stroke="none"/>
</g>
<g fill="#964b36" stroke="#000" stroke-width=".28">
<path d="M542.07 299.8a1.1 1.1 0 0 0-.4.27l.4-.27zm9.2-2.3c-.08-.24-.14-.14-.26-.24-.1-.14-.2-.58-.4-.75-.1-.1-.2 0-.2 0l-.7-1.4a.4.4 0 0 0 .1-.2 7.6 7.6 0 0 0-.1-.4c0-.1-.2 0-.2-.2v-1c0-.2.1-.4.1-.5 0-.1-.1-.3-.1-.4l-.3-1.1c0-.4.1-.6.1-1 .1-.4-.1-.6-.1-1 0-.3.1-.6.2-.9 0-.3.1-.9 0-1.2s-.1-.6-.1-.9c0-.1.1-.2.1-.3v-1.5c0-.1-.1-.3-.1-.4 0-.2.1-.3.1-.6 0-.2-.1-.2-.1-.4-.1-.3 0-.6-.1-1 0-.1-.1-.2-.1-.4s0-.3.1-.4v-.5c-.1-.2-.2-.3-.1-.5l-.1 2.5-.2-4.2-3.3-1.6s-.3 6.1-.2 7c.1.9.4 6.7.2 7.4l-.5 4.3s-1.6 1.2-2.2 2.4c-.6 1.3-.5 1.7-.7 1.7l1.6-.3-1.2.8a.72.72 0 0 1 .8.1c.1.1.2.2.3.2s.2-.1.2-.2c.3 0 .5.4.7.4.1 0 .3-.2.4-.3.1-.1.2-.3.2-.4.1-.1.3 0 .4 0h.7c.3 0 .6-.4.9-.7.2-.2.4-.3.7-.3.3.1.6.4.9.4.3 0 .4.1.6-.2.2-.2.2-.4.4-.6l.8-.1c.2.1.3.2.5.2h.6c.1 0 .2.2.3.2l.2-.3c0-.1 0-.3-.1-.4z"/>
<path d="M544.53 299.7c.2 0 .4-.06.56.1v.14a.17.17 0 0 0 .1.03c.1.07.1.12.2.14.1.1.2 0 .3 0l.3.2c.2.1.4 0 .6-.1.2-.2.3 0 .6.2.1.2.1.2.3.1v-.1h.2c.1-.1.2-.1.4-.1.1-.1.2-.2.4-.2.1.1.2.1.3.2a.75.75 0 0 1 .2.1c.1-.3.5-.4.7-.6.2-.1.4.1.7.1.1 0 .2-.1.3-.1h.3c.1 0 .1-.1.2-.1.3 0 .5.4.7.4.1.1.7.2.6-.2-.1-.4-.5-.1-.6-.4 0-.1.1-.4 0-.6 0-.1-.2-.3-.3-.4-.1 0-.2.1-.3 0-.1-.1-.1-.4-.2-.5-.1.1-.2.2-.3.1-.2 0-.2-.1-.3-.3-.3-.3-.5.2-.7.1-.2 0-.4-.5-.6-.7-.1-.1-.3-.4-.4-.3-.2.1 0 .5-.1.7-.1.1-.3 0-.4 0-.2.1-.2.1-.3.3-.2.3-.4.6-.7.6-.2 0-.3-.2-.5-.1s-.3.3-.5.3a.98.98 0 0 1-.4 0c-.1 0-.3-.3-.4-.3a.15.15 0 0 0-.2 0 8.66 8.66 0 0 0-.2-.1c-.2 0-.2 0-.3.2-.1.2-.1.4-.2.5-.1.2-.2.3-.3.4-.2.2-.3.1-.4.2-.2.1-.4.3-.5 0-.1-.4.3-1.1-.2-1-.1 0-.2.1-.3.3-.1.2 0 .4 0 .6-.1.3-.6.8-.5 1.1.1.2.3-.1.4 0 .1.1.1.3.2.4.2.3.7-.4.7 0m-2-2.8v-.2c-.2 0-.3-.1-.4-.1s-.4.3-.5.5c-.3.5-.2 1-.7 1h-.5c-.2.1-.1.5-.1.7 0 .2.1 0 0 .3-.1.1-.2.1-.2.2-.1.4.2.3.3.3h1c.2 0 .3-.1.5-.2.1 0 .4 0 .5-.2a2.2 2.2 0 0 0 .2-.4v-.5c0-.2.2-.1.3-.4.1-.7-.7-.1-.5-.8"/>
</g>
<g stroke="#000" stroke-width=".52">
<path d="M550.8 277.9c0 .9-.6 1.63-1.37 1.63-.76 0-1.38-.73-1.38-1.63 0-.9.62-1.63 1.38-1.63.76 0 1.38.73 1.38 1.63zm-4.5-2c0 .9-.62 1.62-1.38 1.62s-1.38-.73-1.38-1.63c0-.9.62-1.7 1.38-1.7s1.38.7 1.38 1.6z"/>
<path d="M548.68 276.52c0 .9-.62 1.62-1.38 1.62-.76 0-1.38-.72-1.38-1.62 0-.9.62-1.63 1.38-1.63.76 0 1.38.7 1.38 1.6z"/>
<path d="M546.37 278c0 .9-.62 1.64-1.38 1.64-.8 0-1.4-.73-1.4-1.63 0-.9.6-1.6 1.3-1.6.7 0 1.3.8 1.3 1.7z"/>
<path d="M548.5 279.25c0 .9-.6 1.63-1.37 1.63-.76 0-1.38-.73-1.38-1.63 0-.9.62-1.63 1.38-1.63.76 0 1.38.73 1.38 1.63z"/>
</g>
<path d="M549.18 261.48s13.9-19.42 28.82.75c0 0 .12 2-1.25 4.14l-.38-1.63-.88.25-.3-1-1.7-.2.5-2.2-1.8 1.4.2-1.5-2 2 .2-4.3-2.2 3.6.2-2.5-.8 1.1-.4-1.5-.7 1.5-1-.8v1l-1.8-1.5-.6 2-.9-2.2-.2 1.5-.9-1.8-.1 1.8-2.9-1.3.6 1.7-1.4-1 .2 1-1.9-.4.1 1.1-2-.4.3 1-2.8-.4 1 1.1-.3.4s15.1-5 16.1 13.8l-2.8 1.4.8-1.5-.8-.5-2.3-1.8.6-2.4-.8.3-.1-1.4-.4.2-.9-1.4-.2.5-.6-1.7-.7 1.1-.4-2.8-1 1.8-.1-1-.4.6-1.3-1.5-.4 1-.5-.8-.4.9-1.4-1.2v1l-.9-.7-.4.5-2.1-1.1-.1 1-1.1-1-.4 1s13.7 7.7 9.4 20.4l-.8 1.6-.3-4.3-1.3 2.2.9-4.9-.9.9-.2-1.9-1.1 1.9-.4-2.2-.5.6-.7-3.3-.6 1.4-1-3.6-.8 1.5-.5-3.1-.5 1.9-1.5-2.8-.3 1.1-.8-2.2-.5.8s-2.5-.2-3.3-.8c-.7-.6-2.8 3.7-2.8 3.7l.3-2.6-.9 1.8V275l-1.6 5.3-.4-3.77-.8 3.3-.4-1-.3 1.4-.5-.5-.45 1.5-.8-.6v2l-.8-1-.6 3-.4-1.27v1.3l-.6-.77-.7 3-.9-1.3-.14 2.2.35 1.6-1-.5.4 2.6s-3.9-7.3.7-14.3c4.7-7 10.9-8.9 10.9-8.9l-.6-.7-.1-.7-3.8 1.8.1-1.1-1 .9-.2-1.3-.6 1.1-.1-.5-.8 1.4-.5-2-.7 2.4-.6-1.7-1.2 3.5v-2l-1 2.8-.3-3-.8 3.5v-3l-1.2 3.1-.8-3-.5 2.9-.8-2.3-.7 3.3-1.1-3-.7 4.5-.7-1.8-.14 3.2-.8-2 .8 4.2-1.2-1.7.4 2.6-1.6-2.9.1 3.4-.9-1.1-.4 1.2s-.4-13.1 8.5-15.6 14.7.8 14.7.8l-3.4-2.8.35-.9h-1l.5-1-2.65.1.7-1-2 .2v-.6l-1.3 1 .5-1.2-1.8 1.1-.1-1.7-.9 1.4-.5-1.5-4 4 1.1-4.2-.8.9-.1-.9-1.1 1.7-.3-1.2-.5 1.5-.4-1.8-.9 1.8-.9-1.6-.4 2.1-.7-1.1-.8 1.6-1-1-.1 1-2-.9.5 1.5-1.5-1.3-.4 2-.9-1-.6 2.5-.7-2.4-.6 1.9s7.8-20.2 27.7-7c0 0 2.1 2.1 2.6 3.6s.1.2.1.2l-.4-13.9.7 6 .5-2.17-.1 3.1 2-4.4s-2.4 7.3-1.5 9.9c0 0 .9-8.3 3.9-9.4L547 256l.9-.1-.7 1.23h.7l-.9 2-.5 1 .5 1 .8-.8z" fill="#00a651" stroke="#000" stroke-width=".52"/>
<path d="M547.12 269.65l.4.36c.05 0 1.3-1.3 3.37.4l.3-.4c-2.5-2.1-4.1-.3-4.1-.3zm-.6-6.82l-.1.48.98-.4-.67 1.2 1.44-.5-1.78 2.4.4.4 2.8-3.7-1.8.6.7-1.3-1.6.7.3-1.9-.5-.1-.4 2.4z"/>
<path d="M543.86 262.98l.6 1.36-.97-.4 2.9 5.12.3-.48-.6 1.5.5.2 1.2-3.2-.5-.27-1 1.3c-.3-.5-1.3-2.2-1.8-3.1l.8.4-.8-1.7 1.1.7v-1.9h-.6v1l-1.8-1.1.3.8zm-1.82 6.42l.2.5c.8-.34 1.44-.4 1.93-.16.57.27.75.86.75.87l.5-.1s-.22-.8-1-1.2c-.65-.3-1.44-.2-2.38.2zm2.24 5.42l-.44-2.8.53-.08.44 2.8zm3.85-.46l-.7-2.14.5-.17.7 2.14zm1.4 1.58l-.52-2.14.6-.13.6 2.14z"/>
<path d="M442.57 340.24s-2.35-1.07-3.42-.3c-1.07.8-.92 1.93-1.85 1.86 0 0 3.56.8 4.34-.14.78-.92.93-1.2.93-1.2m.43.76s-1.55 2.07-1 3.28c.52 1.2 1.67 1.3 1.4 2.2 0 0 1.53-3.3.8-4.27-.74-.96-1-1.16-1-1.16m-2.8-5.77s-2.47.76-2.75 2.05c-.28 1.3.58 2.06-.15 2.62 0 0 3.18-1.78 3.15-3-.03-1.2-.1-1.52-.1-1.52m1.3.7s1.16-2.3.43-3.4c-.74-1.1-1.9-1-1.77-1.93 0 0-.9 3.52 0 4.34.9.82 1.2.98 1.2.98m-2.2-.83s.1-2.5-1.1-3.2c-1.1-.6-2.1-.1-2.4-1 0 0 .7 3.6 1.9 4 1.2.4 1.5.4 1.5.4m4.4 4.2s2.7-.9 3 2c.2 3-.1 2-.1 2s-1.4-3.1-3-3.6l.2-.3z" stroke-width=".52" fill="#00a651" stroke="#000"/>
<path d="M442.95 341.27l.3 2.27.37-.05-.3-2.3c.02 0 .94-4.9.94-4.9l-.38-.1-.93 4.9z"/>
<path d="M440.5 340.55l-.13.36c1.3.5 3.1-.9 3.17-1l-.24-.3s-1.7 1.4-2.8 1zm3.38-2.85l-6.05-3.06.24-.48 6.05 3.06z"/>
<path d="M439.5 337l-.38-.37 1.2-1.2.4.37zm2.1-.58l-1.27-2.78.5-.22 1.27 2.78zm1.8 3.4l.04.54c1.65-.1 2.05.95 2.05.97l.5-.1c-.1-.32-.7-1.53-2.6-1.4z"/>
<path d="M471.17 341.06c2.02-1.13 2.42-5.1 2.42-5.1-.5 1.46-4.2 2.9-4.2 2.9 2.7-1.7 6-9.35 6-9.35-.9 2.8-8.1 5-12.7 7.6-4.6 2.6-2.2 10-2.2 10-1.3-.8-3.8-4.8-4.3-8.3-.5-3.4-1.9-4.8-5-5.2-3.2-.4-5 3.2-5 3.2l-4.7 2.5 4.8.2s3.4 1.2 3.4 3.8c0 2.7-3 13.3 1.9 19.3 3.4 4.2 16 6.6 16 6.6" fill="#fff" stroke="#000" stroke-width=".67"/>
<path d="M461.9 349.3s.96-4.78 4.1-4.62c3.15.17 4.04-3.55 5.9-4.1 1.85-.58 11.46-3.16 12.5-7.76 0 0-.88 7.6-9.67 11.38 0 0 7.1-2.34 7.9-3.87 0 0-3.14 6.78-10.8 7.83 0 0 7.17-.57 8.22-2.5 0 0-3.23 4.27-8.55 4.84 0 0 4.92 2.02 6.2.32 0 0-2.65 3.15-5.96 3.4l.9.23s-3.16 3.72-6.63 1.2c-3.4-2.5-3.5.66-3.5.66" fill="#fff" stroke="#000" stroke-width=".67"/>
<path d="M469.06 356.47s4.05 6.78 4.46 10.4c0 0 7.75 8.57 10.65 9.05 0 0-1.37.56-3.88-1.53 0 0 2.1 2.1 2.5 2.2.4.1-1.7-.2-2.1-.8 0 0 .9 1.3 1.4 1.4l-.6-.2s-1.1-.2-1.6-.6c-.5-.4-.2 1-.2 1s-1.2-.3-1.6-.7c-.5-.4.1.9.1.9l-1-.3-.8.5s-.1.5-.6.1-1.4 0-1.4 0-.7.5-1 .1c-.3-.4-1.6 1.6-1.6 1.6l-5-12.2" fill="#fff" stroke="#000" stroke-width=".67"/>
<path d="M473.88 378.72l-6.42-12.22.67-.36 6.42 12.23zm5.6-.82l-10.98-12.3.57-.52 11 12.3zm2.52-1.08l-12.54-11.7.52-.55 12.54 11.7z"/>
<g transform="matrix(.7 0 0 .7 -96.9 97.5)">
<path d="M823.44 360.84s-1.23-2.2-2.3-1.38c-1.07.83-1.7.98-1.87.92 0 0 1.07.06 1.68-.52.62-.6 1.66-.22 2.5.98zm-6.66-1l.7 1.4c-.08.02-.78 2.27-.78 2.27l.55.2.75-2.4c0-.2-.7-1.6-.7-1.6l-.52.3z"/>
<path d="M823.16 360.5s-.92 1.07-2.18.77l-1.25-.3 1.78.08c.7.03 1.7-.33 1.7-.55z"/>
<path d="M822.86 360.72s-1.13-1.2-1.9-.86c0 0 1.35-.43 2.12.73l-.22.1z"/>
<path d="M822.67 360.5s-1.3.9-2.7-.1l-.1-.06.2-.05s1.78.7 2.6.2z"/>
<circle r=".38" cy="360.28" cx="821.57"/>
</g>
<path d="M450 359.63s-.65 1.2-.3 1.95c.35.73 1.92 1.1 2.13 2.1.2.97.74.97 1.47.83l.87-.1s-3.07-1.6-3.88-4.3l-.3-.4z"/>
<g fill="#964b36" stroke="#000" stroke-width=".48">
<path d="M549.4 334.8s5.6-7.4 10.56-5.45c4.96 1.94 8.2 2.87 8.2 2.87s.08 4.97-2.56 4.97c-2.63 0-5.16-5-7.56-3.5-2.4 1.4-4.37 3.5-4.53 4.2-.1.7-6.3.8-4.1-3.1z" stroke-width=".32"/>
<path d="M528.16 370.38s-1.55 1.62-.85 2c.7.4 2.1-.07 2.1-.6 0-.56-.9-1.56-1.2-1.4z" stroke-width=".52"/>
<path d="M526.92 371.92s-2.87-1.63-5.12 2.25c-2.25 3.87-4.1 10.16-5.42 11-1.32.86 12.8-6.2 12.94-9.14 0 0 .93-3.8-.54-3.72-1.47.1-1.55.3-1.86-.3z" stroke-width=".52"/>
<path d="M527.3 372.4s-2.94.68-3.56 4.87c-.62 4.2-4.73 6.36-4.96 6.5m49.37-51.54s-4.48 1.55-3.7 4.66" stroke-width=".32"/>
</g>
<path d="M533.74 341.3s.15-10.62 8.83-10.16c1.65.16.86 2.1.86 2.1s1.88-1.32 2.74.77c0 0 2.74-1.2 3.05 1.5 0 0 2.97-.4 2.58 2 0 0 2.03-.4 1.95 1.3 0 0 2.35-.9 2.1 1.5 0 0 2.6-1.7 2.2 1.4 0 0 2.66-1.8 3.6 1.3.93 3.1-2.66 9.7-6.18 11.4" fill="#fff200" stroke="#000" stroke-width=".32"/>
<path d="M557.86 341.95c0 .08 1.17 8.3-3.5 11.32l.16.26c4.84-3.12 3.65-11.54 3.64-11.63l-.3.05zm-5.62 9l.2.23c2.97-2.88 3.6-10.63 3.62-10.95l-.3-.03c0 .08-.65 7.96-3.52 10.75zm-2.76-1.84l.3.1c.38-4.8 4.12-10.2 4.16-10.3l-.25-.2c-.1.1-3.9 5.6-4.3 10.5zm-2.17-1.3l.3.1c.6-5.7 4.4-10.1 4.4-10.1l-.2-.2c0 .1-3.9 4.5-4.4 10.4zm-3-1.9h.3c.3-6.8 4.8-10.1 4.8-10.2l-.1-.2c0 .1-4.6 3.5-4.9 10.5zm-2.8-1.7h.3c-.2-6.2 4.6-9.9 4.6-9.9l-.2-.2s-4.9 3.8-4.7 10.2zm-5-2.2l.3.1c.9-6.7 6.8-8.4 6.9-8.4l-.1-.3s-6.2 1.8-7 8.7z"/>
<path d="M528.62 354.17s-1.47-9.85 4.42-12.94c0 0 1.1-.24 1.7 1.16 0 0 3.1-1.4 3.2 1.3 0 0 1.54-1.3 1.92.4 0 0 3.34-.7 2.72 1.8 0 0 2.8-.8 2.56 1.6 0 0 2.8-1 2.32 1.1 0 0 2.95-.7 2.25 1.7 0 0 3.7-.4 2.6 2.2 0 0 2.7-.7 2.1 1.4 0 0 3.6.6 2 2.8-1.6 2.2-5.7 5.6-9.7 7.1" fill="#00a651" stroke="#000" stroke-width=".32"/>
<path d="M525.44 364.1s-2.4-8.22 2.18-10.32c0 0 .84-.23 1 .62 0 0 1-1.32 1.8-.15 0 0 2.3-1.1 2.86.62 0 0 1.54-1.32 2.32.6 0 0 1.47-.6 1.47.95 0 0 2.02-.86 2.02 1 0 0 1.9-.77 1.5 1.32 0 0 2.9.47 2.1 1.86 0 0 2.6.7 1.6 1.8 0 0 2.8-.32 1.3 1.6 0 0 2.1-.68.9 1.72-1.3 2.4-5.1 5.04-7.9 5.35" fill="#00a651" stroke="#000" stroke-width=".32"/>
<path d="M528.3 370.6s-5.1-4.96-2.7-6.43c0 0 1.08.3 1.47 1.4 0 0 1.24-1.8 1.94.07 0 0 1.9-.62 1.9.62l1.5 1.1s1.7-.17 1.4.92c0 0 1.9-.24 1.8.77 0 0 1.7.08 1.5 1.16 0 0 2.8.5 1.6 1.9 0 0-4.9 1-8.3-.4 0 0-1.8-.6-1.9-1.1z" fill="#00a651" stroke="#000" stroke-width=".32"/>
<path d="M545.86 362.4l.1.3c3.03-1.18 8.3-8.37 8.52-8.67l-.24-.18c-.06.07-5.44 7.42-8.38 8.55zm-1.73-1.3l.15.26c2.64-1.47 7.9-8.43 8.1-8.72l-.23-.2c-.05.1-5.44 7.22-8.02 8.65zm-1.5-.62l.2.24c2.8-2.32 6.85-9.95 7.02-10.28l-.27-.14c-.04.08-4.2 7.9-6.94 10.18zm-1.36-1.76l.3.04c.53-3.86 5.95-9.94 6-10l-.22-.2c-.22.25-5.54 6.2-6.08 10.16zm-10.86-4.7l.4-.02c-.4-5.45 4.1-11.46 4.2-11.52l-.2-.2c0 .07-4.7 6.17-4.2 11.75zm2.9.48l.3-.05c-.7-4.37 4.4-10.6 4.5-10.65l-.2-.2c-.2.26-5.3 6.4-4.5 10.9zm4.4 1.6h.3c-.1-5 4.7-10 4.7-10.04l-.2-.2c0 .04-4.9 5.13-4.7 10.25zm-10.5 9.06l.3-.1c-1.7-4.62 1.3-10.53 1.3-10.6l-.2-.13c0 .06-3.1 6.1-1.3 10.83zm2 .3l.3-.1c-1.5-4.7 1.1-11 1.1-11.05l-.3-.1c0 .1-2.6 6.5-1.1 11.3zm8.3 4.7l.1.28c5-1.78 8.2-6.3 8.2-6.34l-.2-.17c0 .04-3.2 4.48-8 6.22zm-1-1.1l.1.3c4-1.8 7.7-6.75 7.7-6.8l-.2-.18c0 .05-3.6 4.94-7.5 6.7zm-.9-.36l.2.25c3.1-2.24 7.1-7.97 7.1-8.03l-.2-.17c0 .06-3.9 5.74-7 7.95zm-4.9-2.88l.3-.04c-.7-4.93 2.5-10.78 2.6-10.84l-.2-.15s-3.2 6-2.6 11zm2.2 1.34l.2.22c3.2-2.87 4.3-10.62 4.3-10.94l-.3-.05s-1.1 7.9-4.2 10.7zm2.2.9l.2.26c4.5-3.25 5.7-9.5 5.7-9.55l-.3-.06c0 .1-1.2 6.2-5.6 9.4zm.5-13.44c0 .3 0 .6.1.88l-3.4 11.03.3.1 3.4-11.1c-.5-5.36 4.2-11.2 4.3-11.27l-.2-.2c0 .07-4.3 5.4-4.3 10.56z"/>
<path d="M538.97 357.32c-.04.16-1.08 7.73-5.16 10.52l.2.25c4.2-2.9 5.2-10.4 5.3-10.7 1.8-2.2 6-9.7 6.1-9.8l-.2-.2s-4.2 7.6-6 9.8zm-12.05 8.28c.03.15.7 3.92 1.5 5.24l.26-.15c-.76-1.3-1.45-5.2-1.46-5.2h-.3zm1.93.04c.04 1.87.05 4.95-.06 5.22l.2.1c.1-.38.1-4.5.1-5.32h-.3zm.18 5.36l.28.13c1.4-2.85 1.8-4.82 1.8-4.84l-.3-.1s-.4 1.9-1.7 4.8z"/>
<path d="M529.32 371.1l.15.26c2.44-1.42 3-3.87 3.02-3.98l-.3-.06c-.1.02-.6 2.43-2.9 3.77z"/>
<path d="M529.77 371.3l.03.3c2.4-.23 4-3.12 4.08-3.25l-.27-.14c0 .1-1.6 2.9-3.8 3.1z"/>
<path d="M530 371.46l.03.3c3.83-.23 5.55-2.52 5.62-2.6l-.25-.2c-.02.02-1.7 2.27-5.4 2.5z"/>
<path d="M530.28 371.54l-.06.3c.2.04 5.08 1.08 6.75-1.46l-.26-.17c-1.5 2.4-6.3 1.4-6.4 1.4z"/>
<path d="M420.9 193.24V329.6c0 44.6 80.57 71.07 80.57 71.07s80.58-26.48 80.58-71.08V193.2z" fill="none" stroke="#000" stroke-width="2.79"/>
</g>
<path d="M0 0v240.34h358.04V0H0z" fill="#002868"/>
<path style="line-height:normal;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;block-progression:tb;isolation:auto;mix-blend-mode:normal" d="M0 0v26.87l139 93.3-139 93.3v26.87h40.03l139-93.3L318 240.34h40.04v-26.87l-139-93.3 139-93.3V0H318L179.03 93.3 40.03 0H0z" color="#000" font-weight="400" font-family="sans-serif" white-space="normal" overflow="visible" fill="#fff"/>
<path d="M0 0v17.9l152.33 102.27L0 222.42v17.92h26.7L179 138.08l152.33 102.26h26.7v-17.92L205.7 120.17 358.04 17.9V0h-26.7l-152.3 102.25L26.7 0H0z" style="line-height:normal;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;block-progression:tb;isolation:auto;mix-blend-mode:normal" color="#000" font-weight="400" font-family="sans-serif" white-space="normal" overflow="visible" fill="#ce1126"/>
<path style="line-height:normal;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;block-progression:tb;isolation:auto;mix-blend-mode:normal" d="M149.18 0v80.1H0v80.13h149.18v80.1h59.67v-80.1h149.2V80.1h-149.2V0H149.2z" color="#000" font-weight="400" font-family="sans-serif" white-space="normal" overflow="visible" fill="#fff"/>
<path style="line-height:normal;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;block-progression:tb;isolation:auto;mix-blend-mode:normal" d="M161.12 0v96.14H0v48.06h161.12v96.14h35.8V144.2h161.12V96.14H196.92V0h-35.8z" color="#000" font-weight="400" font-family="sans-serif" white-space="normal" overflow="visible" fill="#ce1126"/>
</svg>

After

Width:  |  Height:  |  Size: 31 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 43 KiB

View File

@@ -0,0 +1,11 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<defs>
<clipPath id="a">
<path fill-opacity=".67" d="M-81.333 0h682.67v512h-682.67z"/>
</clipPath>
</defs>
<g fill-rule="evenodd" clip-path="url(#a)" transform="translate(76.25) scale(.94)" stroke-width="1pt">
<path fill="#6797d6" d="M-252 0H772v512H-252z"/>
<path fill="#fff" d="M259.787 122.985l-32.44 22.214 12.433-35.9-32.475-22.177 40.122.038 12.366-35.92 12.366 35.92 40.12-.026L279.8 109.3l12.43 35.905m-32.443 244.847l-32.44-22.214 12.433 35.9-32.475 22.176 40.122-.038 12.366 35.92 12.366-35.92 40.12.027-32.48-22.166 12.43-35.905m-188.384-92.465l-24.53 30.73 1.395-37.967-37.54-11.713 38.38-11.695 1.324-37.966 22.328 30.735 38.36-11.755-24.58 30.694 22.383 30.7m274.28-11.763l24.53 30.73-1.395-37.967 37.54-11.713-38.38-11.695-1.324-37.966-22.328 30.735-38.36-11.755 24.58 30.694-22.383 30.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 936 B

View File

@@ -0,0 +1,12 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<defs>
<clipPath id="a">
<path fill-opacity=".67" d="M-78.015 32h640v480h-640z"/>
</clipPath>
</defs>
<g fill-rule="evenodd" clip-path="url(#a)" transform="translate(78.02 -32)" stroke-width="0">
<path fill="#fff" d="M-78.015 32h663.91v480h-663.91z"/>
<path d="M-76.033 218.67h185.9V32h106.23v186.67h371.79v106.67h-371.79v186.67h-106.23V325.34h-185.9V218.67z" fill="#003897"/>
<path d="M-76.033 245.33h212.45V32h53.113v213.33h398.35v53.333H189.53v213.33h-53.113v-213.33h-212.45V245.33z" fill="#d72828"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 638 B

View File

@@ -0,0 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<g fill-rule="evenodd" stroke-width="1pt">
<path fill="#fff" d="M0 0h640v480H0z"/>
<path fill="#00267f" d="M0 0h213.3v480H0z"/>
<path fill="#f31830" d="M426.7 0H640v480H426.7z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 295 B

View File

@@ -0,0 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<g fill-rule="evenodd">
<path fill="#ffe700" d="M640 480H0V0h640z"/>
<path fill="#36a100" d="M640 160.003H0V0h640z"/>
<path fill="#006dbc" d="M640 480H0V319.997h640z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 285 B

View File

@@ -1,15 +1,15 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> <svg xmlns="http://www.w3.org/2000/svg" height="480" width="640">
<defs> <defs>
<clipPath id="a"> <clipPath id="a">
<path fill-opacity=".67" d="M-85.333 0h682.67v512h-682.67z"/> <path fill-opacity=".7" d="M-85.3 0h682.6v512H-85.3z"/>
</clipPath> </clipPath>
</defs> </defs>
<g clip-path="url(#a)" transform="translate(80) scale(.94)"> <g clip-path="url(#a)" transform="translate(80) scale(.94)">
<g stroke-width="1pt"> <g stroke-width="1pt">
<path fill="#006" d="M-256 0H768.02v512.01H-256z"/> <path fill="#006" d="M-256 0H768v512H-256z"/>
<path d="M-256 0v57.244l909.535 454.768H768.02V454.77L-141.515 0H-256zM768.02 0v57.243L-141.515 512.01H-256v-57.243L653.535 0H768.02z" fill="#fff"/> <path d="M-256 0v57.2L653.5 512H768v-57.2L-141.5 0H-256zM768 0v57.2L-141.5 512H-256v-57.2L653.5 0H768z" fill="#fff"/>
<path d="M170.675 0v512.01h170.67V0h-170.67zM-256 170.67v170.67H768.02V170.67H-256z" fill="#fff"/> <path d="M170.7 0v512h170.6V0H170.7zM-256 170.7v170.6H768V170.7H-256z" fill="#fff"/>
<path d="M-256 204.804v102.402H768.02V204.804H-256zM204.81 0v512.01h102.4V0h-102.4zM-256 512.01L85.34 341.34h76.324l-341.34 170.67H-256zM-256 0L85.34 170.67H9.016L-256 38.164V0zm606.356 170.67L691.696 0h76.324L426.68 170.67h-76.324zM768.02 512.01L426.68 341.34h76.324L768.02 473.848v38.162z" fill="#c00"/> <path d="M-256 204.8v102.4H768V204.8H-256zM204.8 0v512h102.4V0H204.8zM-256 512L85.3 341.3h76.4L-179.7 512H-256zm0-512L85.3 170.7H9L-256 38.2V0zm606.4 170.7L691.7 0H768L426.7 170.7h-76.3zM768 512L426.7 341.3H503l265 132.5V512z" fill="#c00"/>
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 934 B

After

Width:  |  Height:  |  Size: 812 B

View File

@@ -0,0 +1,13 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<g fill-rule="evenodd">
<path fill="red" d="M0 0h640v480H0z"/>
<path fill="#009a00" d="M145.996 83.454h360.91v314.41h-360.91z"/>
<path d="M145.996 397.865h360.91l-180.46-157.19-180.46 157.19z" fill="#ffca00"/>
<path d="M145.996 83.528l180.46 157.19 180.45-157.19h-360.91z" fill="#ffca00"/>
<path fill="#ffce00" d="M177.71 61.366L161.263 49.64l-16.466 11.698 6.073-19.262-16.207-12.044 20.192-.177 6.446-19.14 6.41 19.152 20.192.212-16.236 12.014m170.93 19.763L326.15 50.128l-16.466 11.7 6.073-19.263-16.207-12.043 20.192-.178 6.446-19.14 6.408 19.152 20.193.213-16.237 12.013M507.59 61.59l-16.447-11.727-16.466 11.7L480.75 42.3l-16.207-12.044 20.192-.177 6.446-19.142 6.41 19.153 20.192.213-16.236 12.015M177.71 468.793l-16.447-11.728-16.466 11.7 6.073-19.263-16.207-12.043 20.192-.18 6.446-19.14 6.41 19.153 20.192.213-16.236 12.014m170.93 19.764l-16.447-11.728-16.466 11.7 6.073-19.263-16.207-12.043 20.192-.18 6.446-19.14 6.408 19.153 20.193.213-16.237 12.014m171.038 19.014l-16.447-11.728-16.466 11.7 6.073-19.263-16.207-12.043 20.192-.18 6.446-19.14 6.41 19.153 20.192.213-16.236 12.014"/>
<path d="M369.722 243.097c0 24.172-19.594 43.765-43.764 43.765s-43.765-19.594-43.765-43.765c0-24.17 19.595-43.764 43.765-43.764s43.764 19.594 43.764 43.764z" fill="red"/>
<path fill="#ffce00" d="M345.755 270.04l-19.536-13.93-19.56 13.895 7.214-22.88-19.25-14.305 23.984-.21 7.657-22.738 7.612 22.75 23.985.253-19.286 14.272"/>
<path d="M169.972 273.464s2.22-18.394.952-30.762c-1.27-12.368-32.983-15.857-32.983-15.857l-.316 28.86s25.372 20.613 32.348 17.76z" fill="red"/>
<path d="M123.67 200.525s3.056 16.207-1.27 48.522c-2.31 17.546 16.81 29.494 40.278 34.885-4.757-8.245-17.442-21.565-14.27-45.985 17.124 2.22 33.298 35.52 33.298 35.52s12.813-47.217-13.003-54.547c-25.09-7.05-45.033-18.077-45.033-18.394z" fill="#ffce00"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@@ -0,0 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<path d="M0 0h640v480H0z" fill="#fff"/>
<path d="M272.001 0h96v480h-96z" fill="#f00"/>
<path d="M0 192h640v96H0z" fill="#f00"/>
<path style="mix-blend-mode:multiply" d="M146.848 373.155c1.023-16.824 3.969-31.155 3.969-31.155s-9.84 1.008-14.817 1.008c-4.902 0-14.814-1.008-14.814-1.008s2.946 14.331 3.969 31.155C108.33 372.129 94 369.186 94 369.186s1.008 7.407 1.008 14.814c0 7.41-1.008 14.814-1.008 14.814s14.331-2.943 31.155-3.969c-1.023 16.824-3.97 31.155-3.97 31.155s7.41-1.008 14.815-1.008c7.41 0 14.817 1.008 14.817 1.008s-2.946-14.331-3.97-31.155c16.822 1.026 31.153 3.969 31.153 3.969s-1.005-9.84-1.005-14.814c0-4.902 1.005-14.814 1.005-14.814s-14.331 2.943-31.152 3.969zm367.997-288c1.026-16.824 3.97-31.155 3.97-31.155s-9.84 1.008-14.815 1.008c-4.902 0-14.814-1.008-14.814-1.008s2.943 14.331 3.97 31.155C476.33 84.129 462 81.186 462 81.186s1.008 7.407 1.008 14.814c0 7.41-1.008 14.814-1.008 14.814s14.331-2.943 31.155-3.969C492.13 123.669 489.186 138 489.186 138s7.407-1.008 14.814-1.008c7.41 0 14.814 1.008 14.814 1.008s-2.943-14.331-3.969-31.155c16.824 1.026 31.155 3.969 31.155 3.969s-1.008-9.84-1.008-14.814c0-4.902 1.008-14.814 1.008-14.814s-14.331 2.943-31.155 3.969zm-367.997 0C147.87 68.331 150.817 54 150.817 54s-9.84 1.008-14.817 1.008c-4.902 0-14.814-1.008-14.814-1.008s2.946 14.331 3.969 31.155C108.33 84.129 94 81.186 94 81.186S95.008 88.593 95.008 96c0 7.41-1.008 14.814-1.008 14.814s14.331-2.943 31.155-3.969c-1.023 16.824-3.97 31.155-3.97 31.155s7.41-1.008 14.815-1.008c7.41 0 14.817 1.008 14.817 1.008s-2.946-14.331-3.97-31.155c16.822 1.026 31.153 3.969 31.153 3.969s-1.005-9.84-1.005-14.814c0-4.902 1.005-14.814 1.005-14.814s-14.331 2.943-31.152 3.969zm367.997 288c1.026-16.824 3.97-31.155 3.97-31.155s-9.84 1.008-14.815 1.008c-4.902 0-14.814-1.008-14.814-1.008s2.943 14.331 3.97 31.155C476.33 372.129 462 369.186 462 369.186s1.008 7.407 1.008 14.814c0 7.41-1.008 14.814-1.008 14.814s14.331-2.943 31.155-3.969C492.13 411.669 489.186 426 489.186 426s7.407-1.008 14.814-1.008c7.41 0 14.814 1.008 14.814 1.008s-2.943-14.331-3.969-31.155c16.824 1.026 31.155 3.969 31.155 3.969s-1.008-9.84-1.008-14.814c0-4.902 1.008-14.814 1.008-14.814s-14.331 2.943-31.155 3.969z" fill="#f00" fill-rule="evenodd"/>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@@ -0,0 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<path fill="#078930" d="M0 0h640v480z"/>
<path fill="#fcdd09" d="M0 0l640 480H0z"/>
<path fill="#da121a" d="M252.37 218.025h135.26L278.203 297.53 320 168.89l41.798 128.64z"/>
</svg>

After

Width:  |  Height:  |  Size: 276 B

View File

@@ -0,0 +1,9 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="480" width="640" viewBox="0 0 640 480">
<path d="M0 0h640v480H0z" fill="#fff"/>
<path d="M256 0h128v480H256z" fill="#e8112d"/>
<path d="M0 176h640v128H0z" fill="#e8112d"/>
<path id="a" d="M109.991 286.667l23.342-23.343h210.01v-46.666h-210.01l-23.342-23.325z" fill="#f9dd16"/>
<use xlink:href="#a" transform="rotate(90 320 240)" height="24" width="36"/>
<use xlink:href="#a" transform="rotate(-90 320 240)" height="24" width="36"/>
<use xlink:href="#a" transform="rotate(180 320 240)" height="24" width="36"/>
</svg>

After

Width:  |  Height:  |  Size: 621 B

View File

@@ -0,0 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<path fill="#006b3f" d="M0 0h640v480H0z"/>
<path fill="#fcd116" d="M0 0h640v320H0z"/>
<path fill="#ce1126" d="M0 0h640v160H0z"/>
<path d="M320 160l51.987 160-136.104-98.885h168.234L268.013 320z"/>
</svg>

After

Width:  |  Height:  |  Size: 300 B

View File

@@ -0,0 +1,33 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="480" width="640" viewBox="0 0 640 480">
<path fill="#da000c" d="M0 0h640v480H0z"/>
<path fill="#fff" d="M0 0h640v321.563H0z"/>
<g transform="translate(-160) scale(1.875)" stroke="#000">
<g id="a" fill="#da000c" stroke-linecap="square">
<path fill="#000" stroke="none" d="M196.57 116.303h64v43.993h-64z"/>
<path d="M229.82 153.865h-39.07l-8.66 5.7v6.04h47.73m-16.35-37.011c5.624 0 10.218 4.69 10.218 10.47v14.78h7.343v-56h-40.28v56h12.5v-14.78c0-5.555 4.515-10.47 10.22-10.47z"/>
<path fill="#000" stroke="none" d="M204.528 59.962h18.523v33.96H204.53z"/>
<path d="M223 88.656h-16.21v-5.75h-11.884v5.75h-8.062v-5.75h-4.813v10.438H223m-36.156-.038h34.97v4.538h-34.97zm13.876-45.681v35.28h6.07V73.22c0-3.63 2.563-6.6 6.148-6.782.115-.006.226 0 .343 0a6.78 6.78 0 0 1 6.782 6.78v9.688h5.782v-35.28zm-2.19-4.781v4.78h29.25v-4.78zm-3.75-9.156v9.156h35.095v-9.157h-5.406v4.657h-6.532v-4.657h-9.97v4.657h-6.53v-4.657zm-12.69 125.876H230m31-2.751h-32.438l-9.78 4.718v7.032H261"/>
<path d="M218.77 161.52H262" stroke-linecap="butt"/>
</g>
<use height="100%" width="100%" xlink:href="#a" transform="matrix(-1 0 0 1 512 0)"/>
<g fill="#f8d80e">
<g stroke-linecap="round">
<path d="M273.297 150.03c-2.654.884-5.053 2.37-7.47 3.754-3.1 1.83-6.106 3.827-8.903 6.1-.985.648-1.93 1.36-2.69 2.272-1.025.878-2.064 2.055-1.868 3.513.05.642.873-.756 1.414-.824a4.39 4.39 0 0 1 3.142-.47c1.27-1.34 2.91-2.237 4.325-3.407 3.004-2.244 6.236-4.17 9.525-5.962 1.148-.59 2.3-1.186 3.525-1.602l-1-3.375z" stroke-width=".768"/>
<path d="M260.4 157.39v3.913m2.417-5.618v3.883m2.416-5.388v3.858m2.417-5.344v3.98"/>
<path d="M238.89 150.156l-1.186 3.313c5.536 2.1 10.808 4.877 15.797 8.06 1.692 1.15 3.468 2.265 4.797 3.845.293.81-.514 1.49-1.314 1.244-.732-.25-1.453-.533-2.226-.005-1.107.503-2.106 2.14-.426 2.69 2.316 1.556 6.083.88 7.196-1.844.58-1.4.618-3.195-.508-4.344-2.063-2.364-4.797-4.008-7.42-5.672-4.69-2.82-9.574-5.374-14.707-7.288z" stroke-width=".768"/>
<path d="M254.05 158.035l-.313 3.34m3.095-1.635l-.862 3.27m3.834-.998l-1.808 2.537m2.719 3.631l-2.61-1.4m3.423-1.35l-2.995.28m-.868 4.055l-.205-2.633m-.892-.376l-2.473 1.822m-9.418-15.641v3.115m6.286.192v3.534m-3.143-5.185v3.32"/>
</g>
<path d="M235.78 227.563v8.03h5.032v-4.03h6.844v4.03h5.406v-8.03zm0 11.062v8.063h17.282v-8.063h-5.406v4.03h-6.844v-4.03z"/>
<path d="M253.052 193.65h4.99v58.116h-4.99z"/>
<path d="M253.052 198.68h4.99v50.06h-4.99z"/>
<path d="M255.547 179.406l10.625 6.188-10.625 6.156-10.625-6.156zm-14.22 3.97h-2.78v4.436h2.78l14.22 8.25 14.22-8.25h2.78v-4.437h-2.78l-14.22-8.25z" stroke-width="1.024"/>
<path d="M255.344 164.28c-2.42.34-4.226 2.73-4.094 5.135.01 3.738-.018 7.476.014 11.214.13 2.407 2.233 4.565 4.675 4.587 1.984.188 3.978-.972 4.81-2.78l-1.718-1.03c-.444 1.183-1.724 1.917-2.97 1.78-1.634.046-2.958-1.544-2.812-3.134.01-3.713-.02-7.428.015-11.14.09-1.516 1.535-2.755 3.048-2.6.626-.18 1.487.676 1.875-.063.583-.83-.415-1.477-.97-1.937-.613-.085-1.253-.008-1.874-.032zm5.78 3.907c-.395.746-1.215 1.19-1.874 1.58v7.514l2 1.157c-.008-3.204.016-6.408-.01-9.61-.033-.198-.01-.5-.115-.64z" stroke-width="1.024"/>
</g>
<g fill="#da000c">
<path fill="#000" d="M240.803 38.35h29.33v53.256h-29.33z" stroke="none"/>
<path d="M238.75 38.375v44.563h9.313v-13.22c0-3.048 1.952-7.28 7.937-7.28s7.938 4.232 7.938 7.28v13.22h9.312V38.374zm15.813 5h2.875v15.25h-2.875zm-8.25 3h2.906V57.53h-2.907zm16.468 0h2.908V57.53h-2.907zM235.594 31.97v6.343h40.812v-6.344zm-3.844-7.376v7.375h48.5v-7.376h-6.094v4.062h-6.875v-4.062h-7.842v4.062h-6.875v-4.062h-7.844v4.062h-6.876v-4.062zm-9 73.25v4.594h66.5v-4.594z"/>
<path d="M220.03 82.906v14.938h71.94V82.906h-6.814v5.75h-9.062v-5.75h-12.156v5.75h-15.875v-5.75h-12.157v5.75h-9.062v-5.75z"/>
<path d="M228.688 102.438v54.343h12.843v-20.343c0-9.582 6.398-14.093 14.47-14.093 7.76 0 14.47 4.51 14.47 14.094v20.343h12.842v-54.343z" stroke-linejoin="round"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

@@ -0,0 +1,12 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<defs>
<clipPath id="a">
<path fill-opacity=".67" d="M-62.883 0h682.67v512h-682.67z"/>
</clipPath>
</defs>
<g fill-rule="evenodd" clip-path="url(#a)" transform="translate(58.95) scale(.94)">
<path fill="#fff" d="M661.1 512h-766.65V0H661.1z"/>
<path fill="#df0000" d="M661.1 512h-766.65V256.45H661.1zM347.57 255.85c0-86.577-70.184-156.766-156.763-156.766-86.576 0-156.765 70.185-156.765 156.765"/>
<path d="M347.57 255.75c0 86.577-70.184 156.766-156.763 156.766-86.576 0-156.765-70.185-156.765-156.765" fill="#fff"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 650 B

View File

@@ -0,0 +1,14 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<defs>
<clipPath id="a">
<path fill-opacity=".67" d="M0-48h640v480H0z"/>
</clipPath>
</defs>
<g fill-rule="evenodd" clip-path="url(#a)" transform="translate(0 48)" stroke-width="1pt">
<path fill="red" d="M0-128h640V85.33H0z"/>
<path fill="#fff" d="M0 85.333h640v35.556H0z"/>
<path fill="#009" d="M0 120.89h640v142.22H0z"/>
<path fill="#fff" d="M0 263.11h640v35.556H0z"/>
<path fill="#090" d="M0 298.67h640V512H0z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 558 B

View File

@@ -0,0 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<g fill-rule="evenodd" stroke-width="1pt">
<path fill="red" d="M0 0h213.333v480H0z"/>
<path fill="#ff0" d="M213.333 0h213.333v480H213.333z"/>
<path fill="#090" d="M426.666 0H640v480H426.665z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 310 B

View File

@@ -0,0 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<g fill-rule="evenodd" stroke-width="1pt">
<path fill="#fff" d="M0 0h640v480H0z"/>
<path fill="#00267f" d="M0 0h213.337v480H0z"/>
<path fill="#f31830" d="M426.662 0H640v480H426.662z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 301 B

View File

@@ -0,0 +1,31 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<path fill="#e32118" d="M0 0h640v480H0z"/>
<path fill="#fff" d="M0 0h640v320H0z"/>
<path fill="#3e9a00" d="M0 0h640v160H0z"/>
<path d="M0 0v480l180-240z" fill="#0073ce"/>
<g stroke="#000">
<path d="M281.563 191.76h76.6V272c0 27-35.2 6.2-38.2 20.6-5.2-14.8-38.2 6.6-38.2-22.2 0-28-.2-78.64-.2-78.64z" fill="#fff" stroke-width=".96"/>
<path d="M325.363 279.8s-1 1-2.8.2c-1.8-.8-2-51.4-2-51.4 4-4.4 7.2-5.8 7.2-5.8l2.4 2c-9 4.6-8.2 11.2-7.4 22.6.2 4.2.2 9.6 1.2 14.8 1.4 6.6 4.2 12.2 4.4 16.4.2 2.6-3 1.2-3 1.2z" fill="#73452b" stroke-width=".2"/>
<path d="M319.163 221.6h3.6c-3 29-.4 46.2-.4 54.6 0 2.8 1.6 3.8 1.4 3.8-3.6 4-5.4-.2-5.4-.2z" fill="#73452b" stroke-width=".2"/>
<path d="M313.563 279.8c-3.4 1.6-3.8-1.6-3.6-2 7.4-15 10.6-48 3.8-51.6l.4-3.2c2.6.8 5 4.2 5 4.2 1 37 0 52.2-.6 52.8-3.6 3.8-5-.6-5.2-1" fill="#a36629" stroke-width=".2"/>
<path d="M313.363 279.2c-.6-3.2 5.2-11.4 4.8-20M323.163 266.2c1.8 5 2.6 9.4 2.2 13.6" fill="none" stroke-width=".2"/>
<path d="M330.963 208c1.2-1.4 1.2-1.4 3.4-1.4.4-3 5.4-3 5.8.8 4-.8 4.8 1.6 3.2 4 3.8-1 7.2 0 6.2 4.4 6.8 1.8 4.2 6.6 1.2 7.6-.4 3-3.2 4-7 2.8-4.8 3.4-7.6 2.2-9.8-1.2-5.4.8-5.8-.4-8.2-3.4-4.2 1.8-5 1.8-8.6-.4-.2 2.8-1.2 2-3 1.8.2 3.6-1.2 5.2-4.4 4 2.4 5-3.8 7.2-6.8 3-2.8.2-3-.6-4.4-1.6-1.2 4-5.6 3.4-6.4 1.2-5.6-.8-5-3.8-.4-4 .4-3.2 3.2-2.6 5-2.2.2-2 1.4-1.6 2.4-1.2-.6-1.4-.2-2.2 1.6-2.6-2.6-3.4-1-4.6 1.6-5.8-1.4-3.2 1-3 2.8-3.2-.2-3.4.8-4 4.4-4.4-.4-1.2.2-2.2 2.2-2.2-1.2-3.4.4-4.18 4-3.6.6-4.94 11.2-2.6 10.4 4.2 3 .4 4 1 4.8 3.4z" fill="#009a3b" stroke-width=".2"/>
<g fill="none">
<path d="M309.563 206.2c.8.4 1.8 0 2 2.2 1.6-2.8 3.6-1.2 3.6 2M326.163 204.6c-.8 1.2-3.8 1.2-3.4 4.4-1-1.4-3-1.8-3.8-.4M330.963 208c0 .8-.2 3.2-1 4.4M343.363 211.4c.2.2-2.8 0-4.2 1M350.763 223.4c-.8-.4-2.4-1.4-3.6.2 0-.8 0-3-2.2-3M343.763 226.2c0-2-.4-2.6-.8-3.2M337.163 223.4c-1.6-1.2-3.2.6-3.2 1.6M325.563 221.6c0-.8-.6-2.4.8-3M302.763 230c.4-2 1.8-2 1.6-3-.2-1.6-2-3-4.2-.8M304.363 227c1.2-.4 2.4-.2 2.8.4M300.963 219.6c.8-.8 2.8-.6 4 0M304.963 214.8c1 0 2.8-.4 3.4 1.4 2.2-3.4 3.8-3 4.2-2.2M316.563 213.6c1.6-.6 4.4 1 6 3.8.8-2.2 2-1.8 3.2-2M333.363 217.4c2.6-1.2 4.2 1.2 5 2.2 1.2-1.6 2.2-1.6 3.4-1.6M309.163 222.2c.6-1 2-1.2 3-.6-.2-1.8 1-2.6 1.8-2.2" stroke-width=".2"/>
</g>
<g fill="gold" stroke-width="3.5">
<path d="M317.363 180.52l-4.4.2-2.2 3.94-2.4-3.76-4.4.18 2-3.96-2.4-3.76 4.6-.2 2-3.94 2.4 3.76 4.4-.18-2 3.96zM298.563 181.98l-4.4 1.08-1.2 4.26-3.2-3.2-4.2 1.04 1.2-4.26-3-3.24 4.2-1.06 1.2-4.28 3.2 3.2 4.4-1.04-1.4 4.28zM280.363 185.72l-4 1.98-.2 4.44-3.8-2.44-4 1.96.4-4.44-3.8-2.46 4-2 .4-4.44 3.6 2.44 4-1.96-.2 4.44zM323.163 180.52l4.4.2 2 3.94 2.4-3.76 4.4.18-2-3.96 2.4-3.76-4.4-.2-2.2-3.94-2.4 3.76-4.4-.18 2 3.96zM341.963 181.98l4.2 1.08 1.2 4.26 3.2-3.2 4.2 1.04-1.2-4.26 3.2-3.24-4.4-1.06-1.2-4.28-3.2 3.2-4.2-1.04 1.2 4.28zM359.963 185.72l4 1.98.2 4.44 3.8-2.44 4 1.96-.2-4.44 3.6-2.46-4-2-.2-4.44-3.8 2.44-4-1.96.4 4.44z" stroke-width=".7000000000000001"/>
</g>
<g>
<g fill="#fff" stroke-width="3.5">
<path d="M365.363 270.4l5 7.2 4.6-6.8-3.2-5.8zM333.563 291.4l.4 7.2s2 0 3.8-.6c1.6-.6 3-1.8 3-1.8l-.2-3.8zM306.763 291.4l-.4 7s-1.8 0-3.6-.4c-1.6-.4-3-1.4-3-1.4l-2-4.8zM274.563 270.4l-5.2 7.2-5.6-9.2 4.2-4.4z" stroke-width=".7000000000000001"/>
<path d="M299.563 305.8c0 6.8 41.2 6.8 41.2 0v-9.6c0 5-41.2 4-41.2 0z" stroke-width=".7000000000000001"/>
<path d="M262.763 283.6c3.6 18.4 36.8 18.8 36.8 18.8v-6.2c-.8-2.4.6-3.2 6-4 2.2-.2 1.2-3.4 1.2-3.4s-14.4 2.6-24.6-1.4c-13.8-5.6-15.8-16.4-15.8-16.4s-1 8.4-3.6 12.6zM377.363 283.6c-3.4 18.4-36.6 18.8-36.6 18.8v-6.2c.6-2.4-.8-3.2-6.2-4-2.2-.2-1-3.4-1-3.4s14.4 2.6 24.6-1.4c13.6-5.6 15.2-16.4 15.2-16.4s1.4 8.4 4 12.6z" stroke-width=".7000000000000001"/>
<path d="M265.363 276.6c-9.2-5-2-10.2-1.2-25 1.4 9 11.6 12.8 10.4 18.6-4.2.2-6.2-6.2-8.2.8l-1 5.6zM374.763 276.6c9.2-5.2 1.6-10.2.8-25-1.4 9-11.4 12.8-10.2 18.6 4 .2 6-6.2 8 .8l1.4 5.4z" stroke-width=".7000000000000001"/>
</g>
<g stroke="none">
<path d="M270.963 283.4l1 .8-2.2 2.4c-.88.96-1.093 1.596-.481 2.181.759.726 1.293.474 2.081-.381l2.4-2.6.8.8-2.397 2.798c-1.302 1.519-2.51 1.171-3.524.224-.883-.824-1.39-2.02-.09-3.49l2.42-2.72zM274.963 286.8l1 .6-.2 4.8 2.2-3.4 1 .6-3.2 5.2-1.2-.6.2-4.8-2.2 3.4-1-.6zM276.763 295.2l2.8-5.6 1 .6-2.6 5.4zM281.163 290.4l-2.208 5.796 2.208.804c2.058.75 3.024-.156 3.678-1.896.66-1.77.372-3.072-1.686-3.9l-1.992-.804zm.792 1.404c2.07.72 2.196 1.506 1.632 2.928-.546 1.35-1.056 1.878-3.024.864l1.392-3.792zM287.763 292.6l-3.6 5.4 1.392.408.804-1.404 2.4.6.204 1.404 1.392.192-1.392-6.396-1.2-.204zm.396 1.404l.396 2.4-1.596-.204 1.2-2.196zM291.183 293.12l-.216 6.198 2.354.046c2.188.042 2.81-1.124 2.864-2.982.054-1.89-.642-3.03-2.86-3.143l-2.141-.12zm1.201 1.075c2.193.01 2.568.71 2.49 2.24-.073 1.454-.39 2.117-2.576 1.793l.086-4.033zM312.163 301.8v6.396h1.404v-2.4s1.2.072 2.196-.192c.786-.204 1.332-.708 1.35-1.95.018-1.218-.69-1.854-1.914-1.854h-3.04zm1.404.996l1.41.018c1.176 0 .954 1.782.036 1.782h-1.446v-1.8zM319.363 301.8l-2.604 6.396h1.404l.6-1.596h2.604l.6 1.596h1.392l-2.6-6.4h-1.4zm.6 1.404l.996 2.4h-1.8l.804-2.4zM323.363 307l3.4-4.2h-3v-1h4.8v1l-3.6 4.2h3.6v1.2h-5.2zM343.563 294.6l1.2-.2.6 3.6c.214 1.28-.371 2.153-1.282 2.489-1.038.383-2.362.033-2.518-1.689l1-.2c.233 1.03.648 1.12 1.128.958.38-.128.577-.728.472-1.358zM345.563 294.24l1.185-.225.548 2.996c.234 1.282.636 1.827 1.47 1.682 1.034-.18 1.148-.76.928-1.902l-.736-3.196 1.211-.183.804 3.324c.47 1.945-.546 2.716-1.91 2.97-1.187.222-2.45-.08-2.864-1.997zM351.763 297l1-.4c.491.881 1.256.836 1.851.573.827-.366.922-1.088.513-1.333-.583-.349-1.974.147-2.723-.127-.896-.327-1.281-.831-1.235-1.606.055-.933.876-1.446 1.769-1.723.999-.31 1.985-.2 2.625 1.016l-1.2.4c-.39-.657-.893-.626-1.339-.416-.373.177-.957.508-.644 1.042.255.436 1.725.153 2.5.184.8.033 1.447.567 1.555 1.338.151 1.073-.246 1.655-1.488 2.139-1.533.598-2.916-.072-3.183-1.087zM357.163 292l-1.6.8-.4-1 4.4-1.8.4.8-1.6.8 1.8 4.4-1 .6zM359.763 289.8l1-.6 2.8 5.2-1 .6zM366.563 290.2l1.2-.4c.565 1.186-.283 3.343-2.355 3.299-3.032-.065-3.36-3.406-2.884-4.508.801-1.85 3.045-1.815 4.04-.791l-1 .8c-.634-.813-2.043-.3-2.138.447-.155 1.222.382 2.358 1.474 2.897.926.457 2.352-.692 1.663-1.744zM365.963 286l1-.8 3.6 4.8-1 .8zM369.763 283l-.996.804 2.196 6 .996-.996-.6-1.2 1.8-1.608 1.2.6 1.008-.792-5.604-2.808zm.396 1.404l2.004.996-1.2 1.2-.804-2.196z"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.4 KiB

View File

@@ -0,0 +1,22 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<defs>
<clipPath id="a">
<path fill-opacity=".7" d="M0 0h120v90H0z"/>
</clipPath>
</defs>
<g fill-rule="evenodd" clip-path="url(#a)" transform="scale(5.3)" stroke-width="1pt">
<path fill="#0d5eaf" d="M0 0h135v10H0z"/>
<path fill="#fff" d="M0 10h135v10H0z"/>
<path fill="#0d5eaf" d="M0 20h135v10H0z"/>
<path fill="#fff" d="M0 30h135v10H0z"/>
<path fill="#0d5eaf" d="M0 40h135v10H0z"/>
<path fill="#fff" d="M0 50h135v10H0z"/>
<path fill="#0d5eaf" d="M0 60h135v10H0z"/>
<path fill="#fff" d="M0 70h135v10H0z"/>
<path fill="#0d5eaf" d="M0 80h135v10H0zM0 0h50v50H0z"/>
<g fill="#fff">
<path d="M20 0h10v50H20z"/>
<path d="M0 20h50v10H0z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 817 B

View File

@@ -0,0 +1,205 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="480" width="640" viewBox="0 0 640 480">
<defs>
<linearGradient id="b">
<stop stop-color="#d5dfff" offset="0"/>
<stop stop-color="#fff" offset="1"/>
</linearGradient>
<linearGradient id="a">
<stop stop-color="#474747" offset="0"/>
<stop stop-color="#f50" offset="1"/>
</linearGradient>
<linearGradient id="c" y2="173.45" xlink:href="#a" gradientUnits="userSpaceOnUse" x2="110.94" gradientTransform="matrix(1.5 0 0 .65 40.51 .01)" y1="218.47" x1="109.34"/>
<linearGradient id="d" y2="337.23" gradientUnits="userSpaceOnUse" x2="126.02" gradientTransform="matrix(1.23 0 0 .8 40.51 .01)" y1="316.38" x1="125.91">
<stop stop-color="#b50000" offset="0"/>
<stop stop-color="#ffc500" offset="1"/>
</linearGradient>
<linearGradient id="e" y2="147.35" xlink:href="#b" gradientUnits="userSpaceOnUse" x2="456.4" gradientTransform="matrix(.56 0 0 1.76 40.51 .01)" y1="149.38" x1="407.87"/>
<linearGradient id="f" y2="102.99" xlink:href="#a" gradientUnits="userSpaceOnUse" x2="228.97" gradientTransform="matrix(.74 0 0 1.33 40.51 .01)" y1="102.99" x1="215.83"/>
<linearGradient id="g" y2="1003.7" xlink:href="#b" gradientUnits="userSpaceOnUse" x2="78.221" gradientTransform="matrix(2.56 0 0 .38 40.51 .01)" y1="1040.4" x1="117.6"/>
<linearGradient id="h" y2="226.38" xlink:href="#b" gradientUnits="userSpaceOnUse" x2="255.03" gradientTransform="matrix(.9 0 0 1.1 40.51 .01)" y1="245.98" x1="264.72"/>
</defs>
<path fill="#006" d="M0 0h640v480H0z"/>
<g stroke-width="1pt">
<path fill="#fff" d="M0 0v32.946l403.223 261.736h50.755v-32.945L50.755 0H0zm453.978 0v32.945L50.755 294.68H0v-32.944L403.223 0h50.755z"/>
<path fill="#fff" d="M189.157 0v294.68h75.663V0h-75.663zM0 98.227v98.227h453.978V98.227H0z"/>
<path fill="#c00" d="M0 117.872v58.937h453.978V117.87H0zM204.29 0v294.68h45.398V0H204.29zM0 294.68l151.326-98.226h33.836L33.836 294.68H0zM0 0l151.326 98.227H117.49L0 21.965V0zm268.816 98.227L420.142 0h33.836L302.652 98.227h-33.836zM453.978 294.68l-151.326-98.226h33.836l117.49 76.263v21.964z"/>
</g>
<path d="M463.75 349.947s-2.878 7.61-4.523 7.61c-1.646 0-7.61-3.29-7.61-3.29s-4.32 6.99-6.58 7.403c-2.263.41-8.227-1.03-8.227-1.03s-5.758 0-5.964-.82c-.206-.824.206-2.47.206-2.47s-8.227 6.582-10.078 6.17c-1.85-.41-8.02-8.226-8.02-8.226l-1.03 4.123-11.723-.413-10.283-6.584s-5.758 9.46-5.964 9.255c-.205-.206-10.077 2.262-10.077 2.262l-.617-1.85-6.582-3.908s5.14-7.2 5.14-7.405c0-.205-2.467-1.028-2.467-1.028l-3.7 3.085-7.61 4.935-7.61-3.496 3.292-6.168.41-4.525 5.965-9.05 73.008-70.95 35.99 66.427-5.347 19.948z" fill-rule="evenodd" stroke="#000" stroke-width="1.147" fill="#6a4c2d"/>
<path d="M515.62 354.25l19.003-.682-8.09-3.996 72.41-2.73-10.232-3.897-9.063-12.28-37.52-2.826s-2.827-2.145-7.407-1.073c-.195-2.923-3.704-6.724-3.704-6.724l-23.097-1.754-14.425 9.842 9.746 24.948 12.378 1.17z" fill-rule="evenodd" stroke="#000" stroke-width="1.147" fill="#fff"/>
<path d="M121.32 150.76l2.224-7.561s3.892-6.562 3.892-9.453c0-2.892 2.89-6.34 2.89-6.34s8.897-2.557 10.787 2.892c9.563-14.457 20.794-.668 20.794-.668l3.114-3.67 6.34-7.783s9.006 8.45 9.117 9.895 1.557.445 1.557.445l9.786-.778s4.644 3.635 3.67 10.564c3.448 2.034 6.56 14.01 6.56 14.01l-80.73-1.556z" fill-rule="evenodd" stroke="#000" stroke-width="1pt" fill="url(#c)" transform="matrix(.86 0 0 .86 337.27 11.7)"/>
<path d="M515.505 218.72c1.45-.893 6.023-2.343 5.465-9.035-.557-6.692-6.357-7.473-9.592-7.25-3.235.223-6.135 3.01-6.135 3.01l-10.707-6.802s5.353-33.797 11.042-35.916c5.402-3.893 6.358-5.577 6.358-6.47s-2.008-3.122-2.008-3.122l-34.912-4.127L442 152.912s-2.564 3.904-2.23 5.465.446 3.235 6.358 7.808c6.54 5.03 11.042 33.908 11.042 33.908s-9.258 4.573-9.815 4.015c-.558-.557-3.346-1.115-4.796-.892-1.45.223-6.247 2.677-6.247 9.034 0 6.358 4.796 10.04 4.796 10.04s31.564-3.68 36.25 5.018c4.572-10.484 34.576-6.803 38.145-8.588z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#656263"/>
<path stroke-linejoin="round" d="M549.51 183.588s.35-3.67 2.97-5.415c2.62-1.747 20.088-2.62 24.28 0s5.765 15.547 5.765 15.547 2.62 4.542 2.795 7.86.524 5.59.524 5.59 13.975 18.168 14.15 34.588c1.572 11.18 1.222 41.05-3.145 52.405-.176 14.148-6.115 23.407-6.115 23.407s1.398 2.445 1.223 5.066c-.175 2.62-1.573 5.066-1.573 5.066l20.438 10.132-7.51-2.795s7.686 6.46 7.51 6.287c-.174-.175-8.56-4.018-8.56-4.018l5.067 5.065c-.175-.175-12.402-5.59-12.402-5.59s5.763 5.416 5.414 5.24c-.35-.174-9.258-4.367-9.258-4.367s5.59 5.94 5.416 5.59-8.036-3.493-8.036-3.493l.35 2.97s-6.29-.35-6.29-5.067c-3.143-1.747-5.24-4.192-5.24-4.192l-14.498-2.445-16.42-49.086 3.843-82.974 1.047-4.193-1.748-11.18z" stroke-opacity=".979" fill-rule="evenodd" stroke="#000" stroke-width="1.075"/>
<path d="M538.536 448.752s-8.41-17.698-12.604-17.946c-3.784-7.212 13.15-66.187 45.907-69.55 18.01 1.485 1.48 20.763-10.36 14.83 1.478 5.19 7.4 12.605 7.4 12.605s-23.438 10.135-30.344 60.062z" fill-rule="evenodd" stroke="#000" stroke-width="1.139" fill="#fb0"/>
<path d="M425.773 451.332s6.96-20.138 11.187-20.386c4.226-.25-11.187-67.126-44.75-67.623-18.148 1.492-1.49 20.883 10.442 14.917-1.49 5.22-7.458 12.68-7.458 12.68s23.618 10.192 30.58 60.412z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#fb0"/>
<path d="M456.56 325.54c-.08-.162-8.33 2.588-2.99 11.565.403-3.478 4.123-5.58 4.123-5.58s-5.66 6.712.324 12.373c.727-5.337 4.124-7.035 4.124-7.035s-4.204 12.373.082 14.88c.485-4.934 3.64-7.117 3.64-7.117s-3.802 11.08-.405 13.587c.404-4.205 3.235-6.066 3.235-6.066s-1.7 11.485 2.75 12.293c.08-4.043 3.315-8.006 3.315-8.006s-1.456 9.38 5.5 9.786c.08-3.56 1.375-7.603 1.375-7.603s3.154 9.948 7.763 8.33c-.08-2.91.08-8.41 0-8.41s2.912 9.462 8.41 7.683c-.807-2.67.325-5.824.325-5.824s2.912 5.904 8.17 3.963c.888-1.78-.245-5.257-.245-5.257s7.684 7.926 10.03 3.154c2.345-4.772-6.148-6.39-6.148-6.39h5.743s-1.86-4.85-9.625-5.903c2.67-1.213 5.42-.324 5.42-.324s-1.618-6.065-9.544-6.712c3.074-1.052 6.47-.324 6.47-.324s-1.05-5.74-9.785-7.36c1.376-1.536 5.095-1.05 5.095-1.05s-3.477-5.42-7.44-5.096-39.79-3.64-39.71-3.558z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#00713d"/>
<path d="M491.898 354.737s3.154 1.537 3.073 2.912m-1.207-5.415s4.044 2.83 3.963 4.933m-.411-6.395s3.235 2.022 3.397 5.177m2.021-3.879s1.618 3.48 1.05 4.125m2.192-2.267c.243 2.75-.243 2.992-.243 2.992m-39.635-20.38s3.8 2.425 3.478 5.822m-3.719-2.907s1.78 1.697 1.375 2.83m3.321-5.66s2.507 3.478 1.698 5.904m2.585-3.642s1.132 2.184.08 3.397m1.941-2.348s1.375 2.184.16 2.91m-1.691 4.288s3.558.81 4.044 3.478m-1.946-5.902s3.72.242 4.125 4.205m.811-5.582c.08 0 2.507 4.286 2.103 5.66m2.671-5.256s.97 4.125.242 5.418m2.828-3.801c0 .08.08 4.77.08 4.77m-4.767-11.237s2.345.89 2.183 3.154m-.007-5.261s2.992 1.7 2.668 4.934m.815-6.301s2.588 3.072 1.617 6.47m2.907-5.748s-.972 3.8-.568 5.338m3.318-2.749s-1.697 1.294-.808 2.912m-13.905 11.888s.565 2.91 0 3.396m-3.724-5.09s1.86 3.234 1.212 4.852m-5.177-5.015s2.103 2.426 2.022 4.367m-5.255-3.886s1.94 1.86 1.78 2.91m-3.475-.08s1.86 1.94 1.78 2.345" stroke-width="1.075" stroke="#3ec26d" stroke-linecap="round" fill="none"/>
<path d="M430.89 222.21l26.748-.477s17.674 0 19.585 5.732c3.343-7.642 18.628-7.164 18.628-7.164 9.236-.317 18.47-.637 27.705-.955l.48 66.873c-5.415 25.953-24.203 44.263-44.902 52.065-24.68-7.962-40.283-28.82-45.378-52.543l-2.865-63.53z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#fff"/>
<path d="M440.418 221.96l38.964 103.84 35.2-106.098c-10.918.704-34.347-1.72-37.258 8.244-4.503-8.917-29.15-5.322-36.906-5.982z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#006b00"/>
<path d="M466.94 278.18c1.5.784 1.458-28.18 3.426-29.08.563-2.398.845-3.448 1.547-5.996-1.687-2.998-9.28-2.848-12.09-.3 1.264 4.048 1.826 5.397 1.826 5.397 3.796 6.146 3.042 30.633 5.29 29.98z" fill-rule="evenodd" stroke="#006b00" stroke-linecap="round" stroke-width=".593" fill="#ffc900"/>
<path stroke-linejoin="round" d="M456.5 54.31s2.753-3.127 2.878-3.877c.126-.75 12.512-1.25 19.893-15.014 4.13-7.258 0-3.004 0-3.004l-.25-3.503s5.13-4.88 3.255-7.507c-1.877-2.627-1.252 3.378-4.255 3.253-3.002-.126-1.376-6.507-1.376-6.507s-.25-.75-1.126-1.126c-1.25.125-.876 2.377-2.002 2.627-1.125.25-2.126-5.255-2.126-5.255s-1.877-2.503-3.504 5.38c.876 8.382 6.256 6.756 6.256 12.26 0 5.505-4.755 9.76-6.13 9.884-1.377.126-.877-4.63-.877-4.63s-.75-2.25-1.25-2.25 2.752-.5 2.252-6.757c-1.127-7.507-2.002 1.75-4.004 1.376s-.5-6.88.25-7.632-.876-3.877-5.255 4.13c-.375 3.88-.876-1-1.75-.75-1.503 3.127-1.253 5.38.874 8.257 3.128 2.877 5.13 5.755 5.005 7.256-.125 1.502-1.75 4.88-4.004 4.88s.125-4.13 0-5.505c-.125-1.376-3.878-6.38-3.878-6.38s-2.628-4.255-2.377-4.38c.25-.125-.25-.75-1.502 3.628s-2.753-2.877-2.753-2.877-1.75 5.38 2.002 8.63c-2.877-.374-3.128.752-3.128.752 0 1.502 3.88 2.127 4.38 4.754s-4.004 4.13-4.004 4.13 1.877 2.627 7.13-2.503c.127 3.253-2 5.505-2 5.505 1.75.792 3.127.71 3.377 2.753z" fill-rule="evenodd" stroke="#000" stroke-width="1.075" fill="#cdad56"/>
<path stroke-linejoin="round" d="M439.335 54.31s-2.338-3.47-2.444-4.154c-.105-.683-11.502.864-16.895-13.035-3.506-6.603 0-2.732 0-2.732l.213-3.187s-3.732-4.565-2.138-6.955c1.594-2.39.938 3.073 2.988 3.085 2.55-.114 1.168-5.92 1.168-5.92s.212-.684.957-1.025c1.062.114 1.494 3.54 2.452 3.767.955.228 2.93-4.03 3.557-4.907.875-.125.842-3.528 2.224 3.645-.744 7.627-7.064 6.147-7.064 11.156 0 5.01 4.038 8.88 5.206 8.994 1.17.114.744-4.212.744-4.212s.637-2.05 1.062-2.05c.426 0-3.713.796-3.29-4.896.958-5.33 3.078.343 4.778 0 1.7-.34-.2-5.635.288-6.443.113-.81 2.62-4.28 3.588 3.38.32 3.53 2.244-3.037 2.988-2.81 1.276 2.847-.564 6.648-2.37 9.266-2.656 2.62-3.856 5.488-3.75 6.854.106 1.366.737 3.063 2.65 3.063 1.913 0 .644-2.38.75-3.633.107-1.252 3.295-5.305 3.295-5.305.626-1 .106-2.87.77-3.735 1.037.01 1.462-1.434 2.525 2.55 1.062 3.986 2.337-2.617 2.337-2.617s1.488 4.895-1.7 7.855c2.445-.34 2.656.683 2.656.683 0 1.367-1.166 1.937-1.592 4.327-.425 2.39 1.273 3.757 1.273 3.757s-1.594 2.39-6.057-2.277c-.107 2.96 1.7 5.01 1.7 5.01-1.487.72-2.655.645-2.87 2.504z" fill-rule="evenodd" stroke="#000" stroke-width=".945" fill="#cdad56"/>
<path d="M508.083 237.45c-2.33-2.115-2.607-.267-3.754-.74-.562-.236-1.003-.762-1.49-1.24-.426-.437-.93-.617-1.492-.854l-.636 1.88c-.212.625.59 1.663.572 2.603-.16 1.396-.728 2.552-2.48 3.03.5-.99.782-1.038.63-2.246-.076-.604-1.765-1.675-1.557-2.247.31-.92.838-1.982.448-2.9-.72.492-1.66.234-2.38.534-.604.27-.645 1.395-1.486 1.863-.863.403-2.764.203-4.35-.698.97-.735 1.77-.24 2.74-.975.486-.368.464-1.944.95-2.312s1.645-.76 2.13-1.128c-.435-.497-.412-1.284-.848-1.78-.437-.497-2.37-.39-2.808-.887-.872-.993-.706-2.3-1.58-3.295 2.26.81 1.932 1.91 2.498 1.828 1.07-.513 2.138-.615 2.7-.38.56.237 1.63 1.633 2.19 1.87.212-.627.52-1.422.733-2.048.212-.627-.953-1.712-.74-2.34.423-1.25 1.476-2.358 1.9-3.61.152 1.207.353 2.223.505 3.43.076.605 1.263.918 1.34 1.523.075.605-.62 2.007-.545 2.61.65-.13 1.587-.04 2.235-.17.648-.13 1.08-1.637 1.727-1.766 1.297-.258 2.23-.18 3.552.07-.97.904-1.723.843-2.33 1.675-.486.367.188 1.58-1.215 2.432-.527.306-1.912-.062-2.397.306l1.308 1.49s2.396.728 2.832 1.225c.872.995 1.334 2.18 1.095 3.247zm-59.916 1.023c2.33-2.115 2.608-.268 3.754-.74.562-.237 1.003-.763 1.49-1.24.426-.437.93-.618 1.492-.854l.636 1.878s-.59 1.663-.572 2.603c.158 1.4.728 2.554 2.48 3.034-.5-.99-.782-1.04-.63-2.247.076-.604 1.765-1.675 1.557-2.248-.31-.918-.838-1.98-.448-2.9.72.492 1.66.235 2.38.533.604.27.645 1.394 1.486 1.862.863.404 2.764.204 4.35-.696-.97-.738-1.77-.24-2.74-.978-.486-.368-.463-1.943-.948-2.31-.486-.37-1.648-.76-2.133-1.13.436-.496.412-1.283.848-1.78.437-.496 2.37-.39 2.808-.886.872-.994.706-2.302 1.578-3.295-2.257.812-1.93 1.912-2.497 1.828-1.07-.512-2.137-.614-2.7-.378-.56.236-1.627 1.632-2.19 1.868-.21-.626-.52-1.422-.732-2.048-.212-.626.953-1.71.74-2.337-.423-1.253-1.476-2.36-1.9-3.613-.152 1.208-.353 2.223-.505 3.43-.076.605-1.264.92-1.34 1.524-.076.604.62 2.005.545 2.61-.65-.13-1.587-.042-2.235-.17-.648-.13-1.08-1.637-1.728-1.767-1.297-.26-2.23-.18-3.552.07.97.904 1.724.842 2.332 1.675.485.368-.19 1.58 1.213 2.433.526.305 1.913-.06 2.398.307l-1.31 1.49c-.435.496-2.394.728-2.83 1.225-.873.993-1.335 2.18-1.096 3.246z" fill-rule="evenodd" fill="#ffc900"/>
<path stroke-linejoin="round" d="M505.993 244.14c-2.11 1.65-15.747 5.096-15.887 16.938-.14 11.842 2.39 14.54-.14 14.84-4.922 0-5.625-13.19-5.484-19.036.14-5.847.28-4.947.28-4.947s3.374.9 3.094 3.748c-.28 2.847 3.374-7.045 2.11-9.744 2.248 2.248 5.2 1.348 5.2 1.198 0-.15-1.686-1.948-2.39-3.297-.702-1.35 2.532.75 2.532.75s.14-2.248-2.672-2.1c-3.655 0 .563-1.198.563-1.198s2.108 1.948 3.514-.15c-1.547-1.648-3.796-2.548-3.796-2.548s-1.97-3.747-4.64-4.496c-3.093-.75-2.672 1.348-6.187 1.05-.7 1.347-.7 1.498.705 1.947-2.39 1.65-1.125 4.947-1.125 4.947s3.796-1.65 3.655 1.05c-.14 2.697-2.25 2.248-3.655.6-1.265-.75-1.687.748-1.687.748l1.968 2.098s-3.796-.15-4.78 2.4c2.11-.15 3.235.45 3.235.45s-4.36 1.948-4.782 2.997c-.42 1.05-.56-1.2-.702-1.2-.14 0-4.217-1.498-4.217-1.498l-1.408 6.482s2.814 2.81 4.36 1.91c1.548-.9 4.36-3.597 6.046-2.848-4.92 3.748-9.84 9.144-12.512 9.894-.703-.6-3.093-2.998-4.077-1.8-.983 1.2-.28 2.7.985 2.55 1.265-.15-4.077 1.198-2.952 3.446 1.125 2.25.984 2.1 1.968 1.5.985-.6-.842-.75 2.813-1.8 3.655-1.048 3.514-2.098 3.514-2.098s-.702 1.65-2.67 2.1c-1.968.45-3.516.45-3.093 1.048.42.6 1.264 1.65.983 2.25-.28.598 4.078-3.15 5.203-.15 2.953-.15 4.92-3.748 3.514-5.847.14 2.248 1.547 2.997.703 4.047s6.608-3.448 2.952-6.146c.985 2.25 1.124 4.047 1.124 4.047s1.688-.15 2.11-.75c.42-.6-.844 1.65-.28 2.1.56.45 3.232 2.998 2.107 4.797-.7-1.05-.842-2.7-1.685-2.55-.845.15-4.36 2.7-6.468 2.85s2.53 7.794 2.53 7.794-3.234-.45-3.654-.15c-.422.3-2.53-2.698-2.953-.9-.704 2.25.702 1.35.702 1.35s-1.827-.9-2.81.15c-.985 1.05-1.97 2.098-1.267 2.547.703.45 3.797.45 4.218.3s-3.515.3-3.796.75c-.282.45-.843 2.1 0 2.7s2.953-.3 3.093-.75c.14-.45.282 1.65.282 1.65s3.655.298 3.655-3.45.282 2.7.282 2.7 3.654.598 3.794-3.15.422 2.55.422 2.55 2.39-.75 2.39-1.35c0-.6-.14 7.495-1.827 9.744-2.673-1.8-4.36 1.198-4.36 1.198s.14 4.348-.14 5.397c-.28 1.048 1.827-.6 1.968-1.05.14-.45 2.67-1.65 2.812-1.95l.843-1.798s-.563 2.098-1.546 2.398-1.97 1.35-1.548 2.25c.422.898 1.97 1.498 2.53 2.397.563.9 2.53-5.246 2.53-5.246l.142 1.35s2.53-.6 2.812-1.8c.28-1.198-2.67-2.247-.28-4.196 2.39-1.948 0 1.8 0 1.8s.842 2.847 1.405 2.847 1.966-5.395.56-6.745c-1.405-1.348 2.11 1.65 2.11 1.65s1.97-5.546-.14-6.296-3.094-1.05-3.094-1.05 1.125-1.5.563-1.65 2.95 3.3 3.513 2.4 1.407-3.6-2.67-5.097c-4.078-1.5-.14-5.697-.14-5.697s2.53 2.998 4.358 1.35c1.828-1.65-.14-1.65-.14-1.65s5.202-3.296 5.342-4.946c-.984-.15-2.67.15-2.67.15s2.952-1.948 2.25-5.096c-1.126 1.648-2.673 1.65-2.673 1.65s2.53-2.55 2.108-4.948c-1.546 1.2-1.406 2.098-2.39 1.8s-2.67-9.744 1.265-10.345c3.937-.597 1.828 4.65 1.97 4.65.14 0 5.904-2.4 0-6.297 1.405-.45 4.357 2.25 4.357 2.25s-1.265-6.598-7.592-2.55c1.547-1.648 2.53-2.698 3.796-2.398 1.266.3 5.766-.15 5.766-1.5-1.125-.9-3.516.45-4.782 0-1.265-.45 8.998-1.2 8.155-6.294z" fill-rule="evenodd" stroke="#006b00" stroke-linecap="round" stroke-width=".593" fill="#ffc900"/>
<path d="M481.3 118.54s12.247-6.43 18.37 1.53m4.9 12.25c-.306 0-4.286 3.98-5.205 3.98m13.475 8.88s11.328.918 18.676-10.41" transform="matrix(.46 0 0 .5 240.33 190.12)" stroke="#006b00" stroke-linecap="round" stroke-width="1.25" fill="none"/>
<path d="M525.08 141.81s.92 6.123 2.756 6.123-3.062 1.53-4.9.306c2.144 2.755 3.37 7.654 0 9.49" transform="matrix(.46 0 0 .5 240.33 190.12)" stroke="#006b00" stroke-linecap="round" stroke-width="1.25" fill="none"/>
<path d="M519.26 218.97s-3.98 4.286-8.88 4.592" fill-rule="evenodd" transform="matrix(.46 0 0 .5 240.33 190.12)" stroke="#006b00" stroke-linecap="round" stroke-width="1.25" fill="#e80000"/>
<path d="M523.86 199.37s-2.45-12.247-.92-15.31c.92-3.978 4.9-5.51 7.962-10.715m-8.272 17.145s-3.062 7.348-16.533 4.9m20.213-23.27s.92 9.797-11.328 6.123M511.3 128.04s-4.9 4.287-3.062 10.104" transform="matrix(.46 0 0 .5 240.33 190.12)" stroke="#006b00" stroke-linecap="round" stroke-width="1.25" fill="none"/>
<path d="M483.732 247.596s2.955-1.2 3.517-1.8c.562-.6 1.547-1.8 1.828-2.7.282-.9-1.97-2.25-.844-4.2.704-.9 1.688-1.05 3.377 0 1.69 1.05-1.547-3.3-3.235-3.45s-2.814 1.2-3.236.9c-.423-.3.14 1.2-.564 1.2s1.407 1.2 1.267 1.95c-.14.75 2.25 3.3 2.11 3.9-.14.6-3.517 4.05-4.22 4.2z" fill-rule="evenodd" fill="#006b00"/>
<path stroke-linejoin="round" d="M534.27 97.112c2.794-.636 3.243.07 2.755 2.45-1.31-.66-1.79-1.218-2.755-2.45z" fill-rule="evenodd" transform="matrix(.46 0 0 .5 240.33 190.12)" stroke="#ffc900" stroke-linecap="round" stroke-width="1.25" fill="#ffc900"/>
<path stroke-linejoin="round" d="M514.71 233.52s-1.033 6.41 1.49 6.946c-.125-2.48.537-4.176 1.157-4.837-.538-.25-2.522-2.068-2.647-2.11zm-5.68-7.89c-2.316-.33-6.23 1.59-5.105 3.91 1.88-1.62 3.626.135 4.94-1.518.405-.453.29-1.812.165-2.392zm-.02-4.58s-3.65-.58-4.157 1.948c2.52-.32 3.274-.59 4.11-.06.24-.54.007-1.762.047-1.888z" fill-rule="evenodd" transform="matrix(.46 0 0 .5 240.33 190.12)" stroke="#006b00" stroke-width="1.25" fill="#e80000"/>
<path stroke-linejoin="round" d="M493.54 184.94s2.19.828 2.81 3.06c1.737-1.075 2.565-5.83-2.81-3.06zm-5.42 5.45c.083-.04 4.59-2.77 5.045-.165-.952.95-1.365 1.57-2.11 1.778-.578 0-1.736-1.778-2.935-1.613zm-.45 8.85c.082-.042 2.894-2.522 3.97-.868 1.074 1.653-.87 1.57-.87 1.57s-.992-.454-3.1-.702zm-3.97-49.28c-.04 0-3.597-1.364-5.085 1.116 2.357.29 3.184 1.117 4.258 1.944-.29-1.034-.785-2.605.827-3.06zm-6.9 18.56s.165-4.176 2.15-5.87c1.116.62 1.446 1.61 2.19 2.852-1.487.33-3.472.413-4.34 3.018zm9.5-2.98s-3.928 1.82-2.646 3.804c1.282-1.364 2.688-.95 2.688-.992s0-2.77-.042-2.812z" fill-rule="evenodd" transform="matrix(.46 0 0 .5 240.33 190.12)" stroke="#006b00" stroke-width="1pt" fill="#e80000"/>
<path stroke-linejoin="round" d="M480.64 125.6c-1.406 1.57 1.736 5.003 5.044 4.507.827-3.72-4.217-5.664-5.044-4.507z" fill-rule="evenodd" transform="matrix(.46 0 0 .5 240.33 190.12)" stroke="#006b00" stroke-width="1pt" fill="#ffc900"/>
<path d="M461.183 248.13c-.317.857.943 2.06 1.672 1.72.297-.877-1.343-2.402-1.672-1.72z" fill="none"/>
<path stroke-linejoin="round" d="M484.28 122.75s.62 2.936 3.473 2.15c-.455-2.274-2.44-3.97-2.44-3.97-.123.663.414 1.696-1.033 1.82zm1.9 8.52s1.57 1.695 4.672-1.778c-1.405.413-3.886-.827-3.886-.827s0 2.398-.786 2.605z" fill-rule="evenodd" transform="matrix(.46 0 0 .5 240.33 190.12)" stroke="#006b00" stroke-width="1pt" fill="#e80000"/>
<path stroke-linejoin="round" d="M480.46 118.86c-1.406 1.57.583 3.762 3.89 3.266.828-3.72-3.063-4.423-3.89-3.266z" fill-rule="evenodd" transform="matrix(.46 0 0 .5 240.33 190.12)" stroke="#006b00" stroke-width="1pt" fill="#ffc900"/>
<path d="M144.62 266.62s7.037-2.01 10.77 1.005 3.735.287 3.735.287 5.457 2.01 7.037 1.58-1.148.144 1.006-1.15c2.154-1.29-4.31.29-4.883-2.44-1.006-1.724.143-3.878-2.154-3.16-1.58-2.01 1.006-3.446.43-5.6-1.578 1.148-2.44-.432-3.733 2.44-3.015-.574-.43-4.74-3.734-5.17 0 3.016-2.442 3.16-2.585 4.883-1.436 1.006-7.755 4.74-5.888 7.325z" fill-rule="evenodd" fill="url(#d)" transform="matrix(.86 0 0 .86 337.27 11.7)"/>
<path d="M391.987 437.9c3.926-.95 25.203 4.696 33.405 13.49-1.74-15.662-6.08-27.66-6.08-27.66s-12.68-3.618-14.42-1.877c-2.552 2.688-10.22 10.743-12.905 16.046zm-6.487-72.344c-1.49.248-2.983 1.243-4.474 3.73-1.74 4.225-2.984 14.915-5.47 17.402-2.486 2.486-4.724 2.734-4.724 4.972 0 2.237.25 7.458 6.962 9.447 6.712.25 17.403-10.69 17.403-10.69s5.47-5.967 7.706-12.43c-12.927 4.474-22.126-7.46-17.402-12.43z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#c01500"/>
<path d="M572.47 435.405c-3.895-.943-25.417 4.67-33.556 13.413 1.728-15.57 6.034-27.5 6.034-27.5 1.502-.41 12.444-3.596 14.172-1.865 2.533 2.673 10.686 10.68 13.35 15.952zm6.03-71.922c1.48.247 2.004 2.192 3.212 4.663 1.726 4.2 3.506 10.322 5.974 12.793 2.466 2.472 4.687 6.133 4.687 8.358 0 2.223-.52 5.23-7.18 7.206-6.662.247-16.314-8.305-16.314-8.305s-5.428-5.934-7.65-12.36c12.83 4.45 21.138-7.005 17.27-12.357z" fill-rule="evenodd" stroke="#000" stroke-width="1.139" fill="#c01500"/>
<path d="M378.043 424.233s13.424 9.2 13.674 13.425c36.05-53.452 128.036-70.11 180.496-3.73 6.96-9.198 14.17-12.18 14.17-12.18-55.193-72.103-165.084-63.15-208.342 2.485z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#fb0"/>
<g stroke="#000" fill-rule="evenodd" fill="#1e5aa6">
<path d="M514.93 219.86l5.258-.124-9.39 11.893 11.27 13.145-22.162 27.92 20.91 25.166c-2.296 5.635-4.968 10.77-8.515 15.4l-12.018-13.27 21.785-27.17-17.904-20.282 10.767-32.677zm-75.12 2.376l-5.634.125 10.516 11.394-11.143 13.898 23.16 25.165-19.155 25.666c2.296 5.634 5.593 11.894 9.14 16.526l11.393-14.4-23.412-26.04 17.152-21.785-12.02-30.55z" stroke-width="1.147"/>
<path d="M465.85 289.844l-8.263 11.018 29.548 34.18c5.217-2.63 9.307-5.634 13.772-9.265l-15.4-17.78 6.26-18.404 9.015 10.392-28.17 35.933c-4.716-2.003-9.933-5.133-14.65-9.015l14.9-18.905-7.01-18.154zm-9.14-17.152l5.385 6.76-3.505-9.14-1.88 2.38z" stroke-width="1.147"/>
<path d="M495.274 278.673c.118-.125 4.345-5.76 4.345-5.76l-1.645-2.253-2.7 8.013z" stroke-width="1.111"/>
</g>
<text font-weight="bold" transform="matrix(.56 -.65 .65 .56 337.27 11.7)" font-size="14" y="362.397" x="-328.344" font-family="Timmons">
<tspan y="362.397" x="-328.344">L</tspan>
</text>
<text font-weight="bold" transform="matrix(.6 -.6 .6 .6 337.27 11.7)" font-size="14" y="384.266" x="-292.335" font-family="Timmons">
<tspan y="384.266" x="-292.335">E</tspan>
</text>
<text font-weight="bold" transform="matrix(.66 -.47 .5 .65 337.27 11.7)" font-size="14" y="451.681" x="-239.78" font-family="Timmons">
<tspan y="451.681" x="-239.78">O</tspan>
</text>
<text font-weight="bold" transform="matrix(.7 -.48 .48 .7 337.27 11.7)" font-size="14" y="429.958" x="-188.526" font-family="Timmons">
<tspan y="429.958" x="-188.526">T</tspan>
</text>
<text font-weight="bold" transform="matrix(.78 -.37 .37 .78 337.27 11.7)" font-size="14" y="451.479" x="-115.426" font-family="Timmons">
<tspan y="451.479" x="-115.426">E</tspan>
</text>
<text font-weight="bold" transform="matrix(.8 -.35 .35 .8 337.27 11.7)" font-size="14" y="453.046" x="-94.111" font-family="Timmons">
<tspan y="453.046" x="-94.111">R</tspan>
</text>
<text font-weight="bold" transform="matrix(.8 -.32 .32 .8 337.27 11.7)" font-size="14" y="454.982" x="-68.371" font-family="Timmons">
<tspan y="454.982" x="-68.371">R</tspan>
</text>
<text font-weight="bold" transform="matrix(.86 -.07 .07 .86 337.27 11.7)" font-size="14" y="445.666" x="112.016" font-family="Timmons">
<tspan y="445.666" x="112.016">R</tspan>
</text>
<text font-weight="bold" transform="matrix(.86 0 0 .86 337.27 11.7)" font-size="14" y="430.793" x="180.225" font-family="Timmons">
<tspan y="430.793" x="180.225">R</tspan>
</text>
<text font-weight="bold" transform="matrix(.75 .43 -.43 .75 337.27 11.7)" font-size="14" y="275.217" x="414.759" font-family="Timmons">
<tspan y="275.217" x="414.759">R</tspan>
</text>
<text font-weight="bold" transform="matrix(.66 .55 -.55 .66 337.27 11.7)" font-size="14" y="193.05" x="483.878" font-family="Timmons">
<tspan y="193.05" x="483.878">E</tspan>
</text>
<text font-weight="bold" transform="matrix(.83 .16 -.13 .82 337.27 11.7)" font-size="14" y="414.028" x="309.116" font-family="Timmons">
<tspan y="414.028" x="309.116">O</tspan>
</text>
<text font-weight="bold" transform="matrix(.78 -.1 .12 .84 337.27 11.7)" font-size="14" y="459.272" x="105.058" font-family="Timmons">
<tspan y="459.272" x="105.058">O</tspan>
</text>
<text font-weight="bold" transform="matrix(.8 -.3 .3 .8 337.27 11.7)" font-size="14" y="455.835" x="-45.708" font-family="Timmons">
<tspan y="455.835" x="-45.708">A</tspan>
</text>
<text font-weight="bold" transform="matrix(.6 .6 -.6 .6 337.27 11.7)" font-size="14" y="144.724" x="518.35" font-family="Timmons">
<tspan y="144.724" x="518.35">A</tspan>
</text>
<text font-weight="bold" transform="matrix(.84 .17 -.17 .84 337.27 11.7)" font-size="14" y="388.298" x="271.188" font-family="Timmons">
<tspan y="388.298" x="271.188">A</tspan>
</text>
<text font-weight="bold" transform="matrix(.85 -.16 .16 .85 337.27 11.7)" font-size="14" y="455.168" x="40.322" font-family="Timmons">
<tspan y="455.168" x="40.322">M</tspan>
</text>
<text font-weight="bold" transform="matrix(.86 -.1 .1 .86 337.27 11.7)" font-size="14" y="448.079" x="94.429" font-family="Timmons">
<tspan y="448.079" x="94.429">P</tspan>
</text>
<text font-weight="bold" transform="matrix(.86 0 0 .86 337.27 11.7)" font-size="14" y="437.607" x="155.088" font-family="Timmons">
<tspan y="437.607" x="155.088">P</tspan>
</text>
<text font-weight="bold" transform="matrix(.75 .42 -.42 .75 337.27 11.7)" font-size="14" y="276.665" x="405.134" font-family="Timmons">
<tspan y="276.665" x="405.134">P</tspan>
</text>
<text font-weight="bold" transform="matrix(.85 .1 -.1 .85 337.27 11.7)" font-size="14" y="409.793" x="232.095" font-family="Timmons">
<tspan y="409.793" x="232.095">I</tspan>
</text>
<text font-weight="bold" transform="matrix(.6 .63 -.63 .6 337.27 11.7)" font-size="14" y="132.089" x="530.392" font-family="Timmons">
<tspan y="132.089" x="530.392">T</tspan>
</text>
<text font-weight="bold" transform="matrix(.7 .52 -.52 .7 337.27 11.7)" font-size="14" y="218.519" x="464.158" font-family="Timmons">
<tspan y="218.519" x="464.158">T</tspan>
</text>
<text font-weight="bold" transform="matrix(.83 .24 -.24 .83 337.27 11.7)" font-size="14" y="361.961" x="313.725" font-family="Timmons">
<tspan y="361.961" x="313.725">M</tspan>
</text>
<text font-weight="bold" transform="matrix(.58 .64 -.64 .58 337.27 11.7)" font-size="14" y="123.248" x="513.704" font-family="Timmons">
<tspan y="123.248" x="513.704">G</tspan>
</text>
<path d="M557.378 184.508s5.188-4.447 8.894-4.57m-8.145 3.952c.123-.124 31.003-4.447 31.99-5.435m-31.87 5.685c.124-.125 34.586-2.966 34.586-2.966m-34.706 3.086s36.685-1.73 38.908.123m-39.037-.243s35.944.245 36.562 1.11m-36.433-1.11l34.584 2.84m-34.954-2.592c.123 0 35.203 3.088 38.66 7.534m1.846 6.295c-.123-.123-11.98-14.205-40.638-13.958m.132.249s19.886 1.358 26.186 8.276m-25.816-8.524s12.845-2.47 26.31 13.71" stroke-width=".86pt" stroke="#fff700" stroke-linecap="round" fill="none"/>
<path d="M247.4 217.74s20.718.813 20.718 2.844-15.437 5.89-15.64 14.422c-.203 8.53 11.78 9.14 12.593 19.905.814 10.767-9.342 12.39-11.374 15.235-2.03 1.422-6.906 16.656-6.296 25.593.61 8.938 3.25 39.203 7.92 45.296 3.658 2.844 9.142 11.984 15.032 9.14 5.89-2.843 1.828-13.202 1.22-16.046s2.436-7.516 2.436-11.78c0-4.267-2.234-7.72-2.03-8.735.202-1.016 16.452 3.86 15.436 19.906-1.015 16.045-7.515 11.17-7.515 11.17s2.03 19.703-3.048 22.343c-9.14 4.875-15.843-1.015-15.843-1.015l.858 4.007-6.953-3.6s-8.937-12.798-10.968-18.485-4.47-31.077-3.656-36.56c.813-5.486 1.422-37.58 1.016-39.204s-2.03-28.436-1.015-32.5c1.016-4.06 7.313-21.936 7.11-21.936z" fill-rule="evenodd" stroke="#000" stroke-width="1pt" fill="url(#e)" transform="matrix(.86 0 0 .86 337.27 11.7)"/>
<path d="M530.822 194.416s12.402-12.053 19.564-10.656c3.668 0 .174 2.62.174 2.62s6.29.524 7.162 3.32c.175 1.222-2.97 1.57-2.97 1.57s2.62.525 2.796 2.796-26.552.524-26.726.35z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#ff7000"/>
<path d="M531.518 193.89s13.276-1.746 18.866-7.336m-5.414 3.673s9.78-.35 9.78 1.05" stroke="#000" stroke-width=".86pt" fill="none"/>
<path stroke-linejoin="round" d="M579.73 333.116s8.385-1.92 10.655-4.89c1.4-1.05 8.735 11.004-10.655 4.89z" fill-rule="evenodd" stroke="#000" stroke-width="1.075" fill="#fff"/>
<path d="M577.46 263.766s1.048 6.463-1.923 10.83c-1.572 1.747-6.288 4.716-6.288 6.813 0 2.095 1.746 4.89 1.396 7.336s-2.97 4.89-2.795 6.987c0 2.096 2.97 13.276 2.622 13.45m-8.382-66.374s-6.636 2.27-8.034 8.91" stroke="#fff" stroke-linecap="round" stroke-width="1.075" fill="none"/>
<path d="M559.288 190.227s2.27 6.29 9.608.35c-4.717-6.462-9.608-.175-9.608-.35z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#c75b00"/>
<path d="M564.865 190.086c0 .338-.352.612-.787.612s-.786-.274-.786-.612c0-.338.352-.612.786-.612s.787.274.787.612z" fill-rule="evenodd"/>
<path d="M499.303 175.633s13.912 15.058 22.913 14.895c1.637 4.42-4.086 8.53-6.378 10.493-4.582-1.472-8.724.27-19.363-12.824.655-8.347 2.99-12.235 2.828-12.563zm18.825-35.028c1.8-5.564 5.4-9.983 8.51-10.474-.817-4.255 6.548-23.077 27.99-30.278 1.308 9.656-9.167 19.15-9.167 19.15s31.59-5.402 37.972-13.422c-.654 3.6-7.037 26.024-40.753 25.86 12.765 12.112-4.093 21.77-11.295 18.822 13.258-10.148-3.764-16.203-13.258-9.657z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#fff"/>
<path d="M528.93 132.754c6.383-4.092 8.674-4.092 13.912-3.274-3.765.49-3.765.655-3.765.655s-.327.49 1.964 2.62c-2.617-.656-4.91-2.13-12.11 0z" fill-rule="evenodd" stroke="#ccc" stroke-width=".86pt" fill="#cccccd"/>
<path d="M526.47 130.13s12.602-6.71 19.64-11.293" stroke="#000" stroke-width=".86pt" fill="none"/>
<path d="M515.668 201.003s17.35 4.747 19.313-20.132c-3.763-10.8-9-34.042-.98-40.752-7.366-5.074-15.386.164-15.386.164-.49 1.145-7.038 10.474 1.8 26.842-20.95-5.565-12.44 14.24-12.44 14.24.82-3.11 11.95-6.057 14.73 9.82 1.147 3.927-7.527 9.983-7.036 9.82z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#00f"/>
<path d="M535.147 181.034s18.33-9.82 17.84-32.898c-15.55.328-21.113 20.46-21.113 20.46l3.274 12.438z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#00f"/>
<path d="M452.983 179.89s-13.585 11.785-21.277 8.02c-5.73 3.437-12.44-2.62-12.44-2.62s7.857 28.97 36.008 8.02c-.49-6.382-1.964-12.93-2.29-13.42z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#fff"/>
<path d="M431.543 187.415c1.146-6.056 5.892-9 9.657-3.273 5.074.982 10.148-19.804-7.856-16.367 5.074-27.17-10.147-37.317-10.147-37.317s-5.4 30.115-2.946 35.68c2.456 5.565-3.6-10.31-23.077-14.73-.327 22.75 21.77 33.39 21.77 33.39s6.218 5.727 12.6 2.618z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#00f"/>
<path d="M433.34 167.61s-8.51 7.2-6.546 17.02m-6.379-18s-1.964 7.037 2.29 17.02m-3.6 2.295s3.928-6.383 12.44 1.8" stroke="#000" stroke-width=".86pt" fill="none"/>
<path d="M420.742 141.75c0-.164-12.93 0-5.238 13.093-5.728 1.8-18.495-6.547-9.657-17.677-28.97-.654-40.754-14.566-40.754-27.332 8.51 8.838 28.806 5.237 36.008 10.638-8.837-8.184-7.037-19.476-7.037-19.476s24.715 7.365 29.133 29.296c-1.473 4.256-2.127 11.785-2.455 11.457z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#fff"/>
<path d="M400.86 119.905c4.77 4.853 17.025 6.303 23.244 11.704" stroke="#000" stroke-width=".86pt" fill="none"/>
<path d="M406.503 134.224s10.145-1.31 13.085 2.292c-3.97 0-5.293-.983-11.027 1.145 1.618-.817 1.177-2.29 2.06-2.29s-3.677-1.146-4.118-1.146z" fill-rule="evenodd" stroke="#ccc" stroke-width=".815" fill="#cccccd"/>
<path d="M457.077 54.843s5.564-4.91 11.62-.49c-2.736 8.174-12.603 5.072-12.603 5.072s.328 4.092-.654 6.056c1.975 1.486 3.6 6.384 3.6 6.384s10.15-2.455 12.276 1.964c3.886-.536 6.71 0 6.71 0s7.857-1.964 10.64-1.964c2.78 0 11.62 2.292 12.438 3.93.818 1.635 3.764 12.6 5.728 12.438 1.964-.164-4.746 2.618-6.546-.164-1.8-2.782-1.31 3.6-1.31 3.6s5.565 5.893 6.22 7.202c.654 1.31-3.437 11.948-.328 19.313-2.724.252-2.946 3.11-2.946 3.11-.15 3.242-4.255 4.092-4.255 4.092l-.982-4.42-2.783 1.637 1.146-3.437s3.765-9.166 4.092-12.11c.327-2.947-3.437-8.185-6.383-8.185s-5.074 9.33-5.074 9.33-1.473 7.037-.982 7.692c.492.655-1.963-2.29-1.963-2.29s-1.31 4.254-2.29 5.563c-.983 1.31-3.11 1.8-3.11 1.8s-1.474-4.255-.983-5.89c.49-1.638 8.02-8.02 7.365-12.604-.656-4.582 0-3.436-.165-3.6-.163-.163-3.928-3.437-4.09-5.237-.165-1.8-4.912 2.29-11.13.982-1.904 3.326-2.128 11.62-2.128 11.62s-.655 9.984.654 11.13c1.31 1.145-3.272 3.6-3.272 3.6l-3.274 4.42s-1.145-2.783-1.145-2.62c0 .164-2.293 1.637-2.293 1.637l1.31-3.273c-.08-2.48 3.182-9.246 3.182-14.975 0-5.73.417-11.868.417-11.868s-6.055-.328-5.892 5.892c.164 6.218-1.473 6.546-1.145 8.346.327 1.8 1.964 6.874 1.473 8.347-.49 1.473-2.455 1.964-2.455 1.964l-.49.82s-6.057 2.78-5.894 3.927c.164 1.145-.163-3.274-.163-3.274l-.327-4.746s3.6-2.292 3.6-8.02c0-5.73-.83-6.543-.665-7.852.164-1.31.993-6.06.83-6.55-.164-.492-3.437 1.308-4.42 1.308s1.8-3.437 2.128-5.892c.328-2.455-3.273 2.29-6.22-.49 1.37-3.023 3.438-3.93 3.765-6.22s-2.29 1.964-4.58.327c.185-2.196 2.454-4.092 2.454-4.092s-1.865-.228-2.62 0c-1.472-.49 1.638-2.782 1.8-6.056.165-3.273-1.8-4.582-1.8-4.746 0-.163-3.272-2.945-3.763-4.09-.49-1.146-.49-2.456-.49-2.456s-5.402 3.928-11.785-4.42c5.845-4.99 12.11-1.308 12.11-1.308s1.638-4.583 9.167-4.256c7.53.328 9.002 4.583 8.675 4.092z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#923f00"/>
<path d="M498.253 139.505c.137 0 13.904.408 14.04 7.77.136 7.36-4.226 5.45-4.362 5.45s-10.086-1.225-10.086-1.225l.41-11.996z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#00f"/>
<path d="M484.89 137.458s17.174-.137 16.22 7.36c-.955 7.497-5.317 5.998-5.317 5.998l-8.314-.682-2.59-12.676z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#fffeff"/>
<path d="M475.214 136.64l9.95.82s5.998.816 5.725 6.54c-.273 5.726-6.135 5.863-6.135 5.863l-9.677-.546.136-12.676z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#00f"/>
<path d="M451.908 139.505c-.136 0-13.904.408-14.04 7.77-.136 7.36 4.226 5.45 4.362 5.45s10.087-1.225 10.087-1.225l-.412-11.997z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#fff"/>
<path d="M465.264 137.458s-17.175-.137-16.22 7.36c.954 7.497 5.315 5.998 5.315 5.998l8.314-.682 2.59-12.676z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#00f"/>
<path d="M474.947 136.64l-9.95.82s-5.997.816-5.725 6.54c.273 5.726 6.134 5.863 6.134 5.863l9.678-.546-.137-12.676z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#fff"/>
<path d="M501.59 219.4s7.155-10.546 10.168-9.417c2.636.88.628 9.04-.628 9.792l-9.54-.376zm-49.046 1.882c-2.26-3.138-5.523-11.8-8.536-9.415-2.636.878-.627 9.038.628 9.792l7.908-.378z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#5e0043"/>
<path d="M457.283 200.427s13.942 8.59 18.516 8.812c4.572.222 19.072-11.156 19.072-11.156" stroke="#000" stroke-width=".86pt" fill="none"/>
<path d="M458.625 166.75l2.677-3.347 13.385 6.804 13.607-6.023 2.677 2.788-15.168 10.708-17.177-10.93z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#5e0043"/>
<path stroke-linejoin="round" d="M447.995 166.57c1.087 1.372 9.738 11.89 11.3 20.59 1.56 8.7-.893-11.934-.893-11.934s10.708 5.242 11.043 8.588c.334 3.346 5.12-.226 5.348-.798L443.79 162.88l4.205 3.69zm52.899-.603s-11.266 14.835-9.927 31.007c-2.324-7.744-.447-20.523-.447-20.523l-2.453 1.563s-2.566 10.93-5.8 12.604c-.546-1.302-.447-1.785-.447-1.785s-3.457 4.462-4.127 4.908c-.67.446.224 15.058.224 15.058s1.16 10.59 2.5 10.48c-1.523.745-3.393 1.903-3.393 1.903l-1.387-28.277 3.172-3.178s4.237-5.13 4.572-10.15c-1.84 1.56-3.904 2.008-3.904 2.008s-.558 7.138-2.23 8.142c-1.674 1.004-1.72 2.866-1.72 2.866l-.397-9.328 25.763-17.295z" fill-rule="evenodd" stroke="#474747" stroke-width="1.075" fill="#474747"/>
<path d="M475.128 183.14l2.176 44.61" stroke="#000" stroke-linecap="round" stroke-width="1.075" fill="none"/>
<path d="M447.694 204.443s5.13 3.012 7.027 12.158c16.73-1.226 21.974 4.686 21.974 4.686s13.72-6.58 20.077-5.354c2.23-4.685 8.59-10.708 8.59-10.708" stroke="#000" stroke-width=".86pt" fill="none"/>
<path d="M440.694 160.72l34.438 22.532 31.008-20.858s6.47-3.57 5.912-6.134-2.788-1.562-3.904-1.116c-1.115.447-32.458 22.642-32.458 22.642l-33.35-21.08s-2.454-.78-2.9.78.92 2.455 1.253 3.235z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#b4b6b9"/>
<path stroke-linejoin="round" d="M502.278 154.873s-8.81-3.74-8.81-.5c0 3.243.248 3.575 1.66 5.654 1.414 2.078-1.08 3.408-1.08 3.408s-.332-.914-.83-2.328c-.5-1.413-5.238-2.41-5.653-4.073-.416-1.662.997-4.323-1.83-4.655-2.826-.334-5.57 1.163-6.15 4.405-.583 3.242-4.24 10.807-4.24 10.807l.5-17.208c6.205.443 17.733 1.8 26.6 2.826-2.66-.415.997.166.914 1.08-.25.75-1.165.832-1.082.583zm-31.175-4.326c-1.58 0-9.476.915-11.47 2.078-1.996 1.164 3.24 2.993 2.576 4.572-.666 1.58-.75 4.74-3.243 4.074-2.494-.664-10.89-4.82-11.14-6.234-.248-1.413-1.994-1.496-1.994-1.496s24.107-3.242 25.27-2.993z" fill-rule="evenodd" stroke="#474747" stroke-width="1.075" fill="#474747"/>
<path d="M474.904 148.57l-.06 21.14m-16.219-46.047s-9.66 15.684-9.85 16.162" stroke="#000" stroke-width=".86pt" fill="none"/>
<path d="M161.8 129.74s4.893 6.672 4.337 8.562c2 1.557 4.225 7.784 4.225 7.784" fill-rule="evenodd" stroke="#000" stroke-width="1pt" fill="url(#f)" transform="matrix(.86 0 0 .86 337.27 11.7)"/>
<path d="M492.672 122.322s-9.085 12.815-8.798 13.77" stroke="#000" stroke-width=".86pt" fill="none"/>
<path d="M446.213 61.426c-.206.717-1.364.995-2.588.62s-2.048-1.26-1.842-1.976c.206-.717 1.365-.995 2.588-.62s2.05 1.26 1.843 1.976zm3.673-.253c.206.717 1.364.995 2.588.62s2.047-1.26 1.842-1.976c-.206-.717-1.365-.995-2.588-.62s-2.048 1.26-1.842 1.976z" fill-rule="evenodd"/>
<path stroke-linejoin="round" d="M556.13 326.572s-3.367.63-3.262.947-9.79.63-10 .315c-.212-.316-1.475 1.684-1.475 1.684l1.58-.948s2.42 2.527 3.158 2.316c.737-.21-.315.947-.105 1.158.21.21.948-.42.948-.42l16.36-.275-7.2-4.778z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#ff7000"/>
<path stroke-linejoin="round" d="M562.23 331.663l-13.363.387s-3.37 3.053-3.58 3.79 2.21.947 2.21.947l.738 2.527 1.685-.632s11.36 1.69 21.79-.632c5.265-1.842 6.186-4.053 2.5-5.395-3.683-1.342-11.876-.94-11.98-.992z" fill-rule="evenodd" stroke="#000" stroke-width="1.075" fill="#ff7000"/>
<path d="M208.37 403.93l27.97-1.246-5.208-4.416 75.647-3.058-2.606-6.002-84.707 3.398 10.192 4.756-22.876.68.68 2.377-6.002-.227s6.68 2.605 6.908 3.737z" fill-rule="evenodd" stroke="#000" stroke-width="1pt" fill="url(#g)" transform="matrix(.86 0 0 .86 337.27 11.7)"/>
<path d="M239.73 249.42c-2.222-1.11-11.998-2.444-22.884 4.666l.444 25.106s15.997-8.665 23.773-6.666c-.444-7.776-.444-17.774-1.333-23.106z" fill-rule="evenodd" stroke="#000" stroke-width="1pt" fill="url(#h)" transform="matrix(.86 0 0 .86 337.27 11.7)"/>
<path d="M410.434 291.76l-56.723 56.31m82.003-55.898l-46.037 60.63m43.983-76.454l-61.453 74.398m-1.849-1.032l5.96-6.987m69.054-28.977l-23.84 32.886m-1.029 4.317l.617 12.53m35.14-38.227l-25.278 31.65m20.763-2.462l10.276-16.852m-6.371-3.289l-12.332 13.975m8.632-27.124l-8.425 10.276m-2.47-25.283s-25.69 37.61-25.278 40.692m22.603-45.619c-.616.41-22.196 28.977-22.196 28.977m-1.229 9.033l-3.905 4.728m-4.933 7.202l-5.96 7.808" stroke="#000" stroke-width=".86pt" fill="none"/>
<path d="M407.627 205.2s-1.74 5.47 0 8.204 12.68 24.86 12.68 24.86 7.458-9.197 10.193-9.446c2.735-.248 1.49 23.867 1.49 23.867s-4.473 4.227-7.208 3.978c-2.735-.248 6.712 9.447 6.464 17.652s-12.43 48.976-16.906 49.722c-4.475.746 1.99-7.458 1.74-9.696-.25-2.236-1.492-.745-2.486-3.23-.995-2.487 1.492-6.216.994-8.702s-2.734-1.99-2.983-3.73 1.492-2.237 1.243-4.225c-.25-1.99-2.983-1.493-2.735-3.233.25-1.74.498-.994.25-4.226-.25-3.232-.747 2.237-3.482 2.486-2.733.25-4.97 6.464-4.97 6.464s-5.47 7.707-10.94 4.226c3.232 6.96.746 9.945-.497 10.193s.994 5.47-1.99 5.72 2.238 11.683-1.242 12.677c3.73 1.74.747 3.98.747 3.98s-8.618.715-6.713 11.932c-25.36-8.935-37.79-24.346-37.54-40.007.248-15.662 5.22-29.833 17.402-35.054 3.48-12.928 9.447-26.85 9.447-26.85s-.994-5.718-.248-9.447c.746-3.73 4.226-7.458 4.226-7.458s-.496-8.95-.247-13.425c.248-4.475 1.99-6.465 2.237-8.95.25-2.486-.746-15.166 1.74-17.403 2.487-2.238 7.21-1.99 9.696-3.48 2.486-1.492 5.718-4.227 8.95-3.98s5.967 2.488 5.967 2.488 12.182 0 12.927 4.724c.746 4.722-2.486 6.462-2.486 6.462s1.74 6.713-5.718 12.928z" fill-rule="evenodd" stroke="#2b2b2b" stroke-width=".86pt" fill="#8a9396"/>
<path d="M396.852 188.097c.39.722-.5 1.96-1.986 2.764s-3.01.875-3.4.153c-.39-.72.498-1.958 1.986-2.764s3.01-.874 3.4-.153z" fill-rule="evenodd" stroke="#2b2b2b" stroke-width="1.147" fill="#cecfcf"/>
<path d="M394.787 189.354c0 .455-.414.824-.925.824-.51 0-.924-.37-.924-.824 0-.454.414-.823.924-.823s.925.37.925.824z" fill-rule="evenodd"/>
<path d="M412.925 197.46s3.02 13.48-.59 22.793m1.519-28.693s5.89 7.792 5.13 17.483m-4.56-19.193c.19 0 4.94 4.18 4.75 7.03m-3.61-8.742s3.23 2.28 3.99 4.56" stroke="#2b2b2b" stroke-width=".537" fill="none"/>
<path d="M414.044 186.805s-11.592 18.813-10.072 30.595" stroke="#000" stroke-width=".86pt" fill="none"/>
<path d="M414.804 186.237s-15.393 9.122-18.243 38.957" stroke="#2b2b2b" stroke-width=".537" fill="none"/>
<path d="M413.094 191.75l-6.082 4.56" stroke="#000" stroke-width=".86pt" fill="none"/>
<path d="M390.86 226.906s8.552-35.537 23.754-40.667" stroke="#2b2b2b" stroke-width=".537" fill="none"/>
<path d="M420.505 238.878s8.172-10.262 10.072-9.882c1.9.38 1.33 23.754 1.33 23.754s-6.08 4.56-7.412 4.37c-1.33-.19 6.842 11.023 6.652 15.204-.19 4.18-.38 4.18-.38 4.18s0-2.47-1.9-6.46c-1.9-3.99-.76-8.552-13.113-18.624-3.04-6.27 6.08 3.8 7.98 2.28 1.902-1.52-3.42-14.632-3.23-14.822z" fill-rule="evenodd" stroke="#2b2b2b" stroke-width=".86pt" fill="#2b2b2b"/>
<path d="M405.978 181.086s-3.435.936-3.904 2.342c-.468 1.405-2.498 2.81-3.59 2.342-1.094-.468-3.125-2.186-3.125-2.186" stroke="#2b2b2b" stroke-width=".86pt" fill="none"/>
<path stroke-linejoin="round" d="M386.46 193.108s-5.155 5.154-2.656 5.778c2.498.625 5.153-4.06 5.153-4.06s0 7.964 2.186 6.715 8.59-5.777 8.59-5.777 2.185-.156 2.653 0c.47.156 5.934 4.84 9.526 3.123-2.03 5.31-4.373 5.934-4.373 5.934s-3.748 4.84-8.59 3.748c-4.84-1.093-6.09-3.123-6.09-3.123s-4.06.312-5.308-1.562c-1.25-1.874-1.718-2.967-1.718-2.967s-2.342 2.343-2.967 1.25c-.625-1.094 0-7.496 3.59-9.057z" fill-rule="evenodd" stroke="#2b2b2b" stroke-width="1.075" fill="#2b2b2b"/>
<path d="M415.66 185.927s-9.526-2.81-12.805 1.874c-3.28 4.686-2.498 7.34-.78 7.81" stroke="#2b2b2b" stroke-width=".86pt" fill="none"/>
<path d="M417.13 185.66c0 1.124-.804 2.034-1.796 2.034s-1.796-.91-1.796-2.033.804-2.033 1.796-2.033 1.796.91 1.796 2.034z" fill-rule="evenodd"/>
<path d="M389.407 209.964s3.884 5.976 8.515 7.62-3.212 3.062-7.843-.075c-3.362-4.558-2.466-7.844-2.466-7.844s.896-.897 1.793.298zm33.24 35.26s-10.906-15.162-14.043-15.984c-3.138-.822 2.39-1.494 5.75 1.718 3.362 3.212-.895-5.23-.895-5.23l9.186 19.496z" fill-rule="evenodd" stroke="#2b2b2b" stroke-width=".86pt" fill="#2b2b2b"/>
<path stroke-linejoin="round" d="M388.362 332.84c4.183-1.12 22.408 10.46 26.516 13.372 4.108 2.913 12.698 1.045 12.698 1.045s-3.96 2.39-6.424 2.988 7.32.598 7.32.598-23.305 6.423-46.983-6.05c-2.167-9.71 5.078-11.877 6.87-11.952z" fill-rule="evenodd" stroke="#2b2b2b" stroke-width="1.075" fill="#2b2b2b"/>
<path d="M415.028 248.957s-3.063-.598-4.63-2.39c-1.57-1.793-3.81-6.2-6.126-8.068s-13.894-8.217-18.077-7.77c-4.183.45-5.452-.447-5.975-.97-.523-.523-2.24.224-1.942 2.39.298 2.167-3.212 6.947-1.942 9.188 1.27 2.24 7.245 11.353 8.44 11.652 1.195.3.448 5.303.448 5.303s5.304 5.378 6.648 5.677c1.345.3 2.69 1.27 2.54 2.54-.15 1.27-5.826 8.216-5.826 8.216s-6.125 3.212-6.2 5.005c-.075 1.793 1.494 5.528 6.35 6.723 4.854 1.195 17.926.224 18.598-.896.672-1.12 1.718-7.843 1.27-8.515-.448-.673-3.66-2.69-5.303-2.39-1.643.298-3.137 1.643-2.987 1.94.15.3-2.316 1.57-2.316.375s4.855-6.573 5.304-6.125c.45.448 7.32 1.12 8.59 4.556s1.27 5.9 4.856 5.528c3.585-.374 8.59-3.66 9.037-10.532.45-6.872-4.033-11.503-5.154-12.175-1.12-.673-4.856-2.914-5.155-3.96-.298-1.045-1.045-4.48-.448-5.303z" fill-rule="evenodd" stroke="#2b2b2b" stroke-width=".86pt" fill="#2b2b2b"/>
<path d="M350.416 279.29s11.577-2.99 14.566-2.914c2.988.075 14.266 5.303 17.553 8.515 3.287 3.213 10.01 10.832 14.416 10.16 4.408-.673 5.678-1.57 5.678-1.57l-1.718 3.287s-3.585.97-5.378.523c-1.792-.448-5.303-1.568-8.814-5.004-3.51-3.436-14.34-12.698-23.53-12.026-9.186.672-14.49 9.71-14.49 9.71s.075-4.407.45-5.378c.372-.97-1.944 2.09-1.944 2.09l3.212-7.394z" fill-rule="evenodd" stroke="#2b2b2b" stroke-width=".86pt" fill="#2b2b2b"/>
<path d="M393.067 288.25c.074.075 2.913.822 7.693.822s7.32-2.092 7.32-2.092l-.298-1.867.747-2.614s3.66 3.733 3.584 4.48c-.075.747-1.494 1.046-1.494 1.046l-.523-1.793-1.27 1.57s-6.946 5.526-10.756 4.705c-3.808-.822-7.32-3.287-6.348-3.884s1.494-.374 1.345-.374zm-16.881 9.787s-4.183-.075-6.05.822c-1.868.895-2.54 2.015-3.81 1.866-1.27-.15-2.24-1.793-1.867-2.465.522-1.045 2.987-2.39 7.692-2.016s4.034 1.793 4.034 1.793zm14.641 11.353c0-.225-.3-6.126-2.615-8.516s-5.154-2.39-6.424-2.092c-1.27.3 4.706 2.913 5.304 4.63.597 1.72 2.54 6.5 2.017 7.695-.524 1.195-1.495-3.36-5.155-4.63s-8.74-.6-7.694 1.045 5.155.15 7.246 3.66 3.66 7.245 3.66 7.245l.673-2.54 1.866-.522.224-4.856.897-1.12z" fill-rule="evenodd" stroke="#2b2b2b" stroke-width=".86pt" fill="#2b2b2b"/>
<path stroke-linejoin="round" d="M387.84 328.507l-3.81-7.62s-1.196-4.854-4.408-6.2c-3.212-1.343-7.47-1.12-7.544.524-.074 1.644 6.872 3.736 7.32 4.632.45.897.224 2.39-.373 2.465-.598.075-3.66-1.12-5.23-.747-1.567.374-2.464 2.39-4.78 1.793-2.315-.598-4.257-7.993-3.36-8.74.896-.746-1.718 1.345-2.24-.597-.524-1.942.746-7.992-.15-8.74-.897-.746-5.23-3.36-5.304-3.883-.074-.523.225-29.73 24.65-5.528-10.457-12.4-14.566-11.054-16.507-11.13-1.42 0-10.906.822-13.296 12.923-2.39 12.1-5.23 4.557-5.23 4.557s-.522 5.228 2.018 6.722c2.54 1.494-1.195 5.826-1.195 5.826s-4.556-11.13-3.884-15.985c-.897 3.885-.822 13.52 4.93 24.052 6.722 7.096 13.072 13.67 29.953 21.064 8.888-13.595 8.44-15.237 8.44-15.387z" fill-rule="evenodd" stroke="#2b2b2b" stroke-width="1.075" fill="#2b2b2b"/>
<path stroke-linejoin="round" d="M371.854 328.584s4.93.598 6.274 3.137c1.345 2.54 1.942 6.425 1.942 6.425.822-1.643 1.196-3.062 2.84-4.257s2.837-1.345 2.763-2.24c-.075-.898-5.23-6.35-7.843-6.65-2.615-.298-7.17 2.84-7.17 2.84s-.823 1.194 1.194.746z" fill-rule="evenodd" stroke="#2b2b2b" stroke-width="1.075" fill="#8a9396"/>
<path d="M383.114 341.433s12.776 5.824 33.82 6.2" stroke="#8a9396" stroke-linecap="round" stroke-width="1.075" fill="none"/>
<path d="M425.764 282.127s-1.1 10.72-9.345 31.88" stroke="#2b2b2b" stroke-linecap="round" stroke-width="1.075" fill="none"/>
<path d="M424.12 288.723s-2.472 7.696-9.343 13.467" stroke="#2b2b2b" stroke-width=".86pt" fill="none"/>
</svg>

After

Width:  |  Height:  |  Size: 45 KiB

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