Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1944)
+++ branches/2.8.x/CHANGELOG	(revision 1945)
@@ -11,6 +11,9 @@
 ! = Update/Change
 ===============================================================================
 
+03 Aug-2013 Build 1945 M.v.d.Decken(DarkViper)
+! module/MultiLingual updated for make use of different graphics format
++ Droplet to use Multilingual in index.php of template
 31 Jul-2013 Build 1944 M.v.d.Decken(DarkViper)
 # /modules/MultiLingual/tpl/lang.html-twig little typofix in template
 31 Jul-2013 Build 1943 M.v.d.Decken(DarkViper)
Index: branches/2.8.x/wb/upgrade-script.php
===================================================================
--- branches/2.8.x/wb/upgrade-script.php	(revision 1944)
+++ branches/2.8.x/wb/upgrade-script.php	(revision 1945)
@@ -109,6 +109,7 @@
 
 			'[FRAMEWORK]/class.msg_queue.php',
 			'[FRAMEWORK]/class.logfile.php',
+			'[FRAMEWORK]/PasswordHash.php',
 			'[MODULES]/droplets/js/mdcr.js',
 
 		 );
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1944)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1945)
@@ -51,5 +51,5 @@
 
 // check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled)
 if(!defined('VERSION')) define('VERSION', '2.8.3');
-if(!defined('REVISION')) define('REVISION', '1944');
+if(!defined('REVISION')) define('REVISION', '1945');
 if(!defined('SP')) define('SP', '');
Index: branches/2.8.x/wb/modules/droplets/example/iMultiLingual.php
===================================================================
--- branches/2.8.x/wb/modules/droplets/example/iMultiLingual.php	(nonexistent)
+++ branches/2.8.x/wb/modules/droplets/example/iMultiLingual.php	(revision 1945)
@@ -0,0 +1,39 @@
+//:Droplet to display the link bar from module MultiLingual
+//:Use: [[iMultiLingual?ext=svg]]  show flags as 'png' or 'svg' or 'auto'-depended from browser(default)
+/**
+ * iMultiLingual.php
+ *
+ * @category     Addons
+ * @package      Addons_Droplets
+ * @copyright    M.v.d.Decken <manuela@isteam.de>
+ * @author       M.v.d.Decken <manuela@isteam.de>
+ * @license      http://www.gnu.org/licenses/gpl.html   GPL License
+ * @version      0.0.1
+ * @revision     $Revision: $
+ * @link         $HeadURL: $
+ * @lastmodified $Date: $
+ * @since        File available since 31.07.2013
+ * @description  this Droplet displays the output from module MultiLingual<br />
+ *               The image extensions are selectable.
+ *
+ * @param string $ext: name of the file extension for flags [ png | svn | auto(default) ]
+ * @return: a valid image-URL or empty string
+ */
+
+$ext = !isset($ext) ? 'auto' : strtolower($ext);
+$sRetval = '';
+if(function_exists('language_menu')){
+	switch($ext)
+	{
+		case 'png':
+		case 'svg':
+			break;
+		default:
+			$sExt = 'auto';
+	}
+	$sRetval = language_menu($sExt);
+}
+return $sRetval;
+
+
+
Index: branches/2.8.x/wb/modules/MultiLingual/tpl/lang.twig
===================================================================
--- branches/2.8.x/wb/modules/MultiLingual/tpl/lang.twig	(nonexistent)
+++ branches/2.8.x/wb/modules/MultiLingual/tpl/lang.twig	(revision 1945)
@@ -0,0 +1,45 @@
+{#
+/**
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+/**
+ * lang.twig
+ *
+ * @category     Modules
+ * @package      Modules_MultiLingual
+ * @author       Werner v.d.Decken <wkl@isteam.de>
+ * @author       Dietmar Wöllbrink <dietmar.woellbrink@websiteBaker.org>
+ * @copyright    Werner v.d.Decken <wkl@isteam.de>
+ * @license      http://www.gnu.org/licenses/gpl.html   GPL License
+ * @version      1.6.8
+ * @revision     $Revision: $
+ * @link         $HeadURL: $
+ * @lastmodified $Date: $
+ * @since        File available since 09.01.2013
+ * @description  xyz
+ */
+#}
+<div id="langmenu">
+{% for aTarget in aTargetList %}
+ <a href="{{ aTarget.sUrl }}" {% if aTarget.bCurrent %}class="current" {% endif %}title="{{ aTarget.sTitle }}">
+<span>
+  <img src="{{ aTarget.sIconUrl }}flags/{{ aTarget.FilePrefix }}.png" class="width: 32px; height: 32px" 
+     title="{{ aTarget.sTitle }}" alt="{{ aTarget.sLongTitle }}" />
+    </span>
+ </a>
+{% endfor %}
+</div>
\ No newline at end of file
Index: branches/2.8.x/wb/modules/MultiLingual/tpl/lang.html.twig
===================================================================
--- branches/2.8.x/wb/modules/MultiLingual/tpl/lang.html.twig	(revision 1944)
+++ branches/2.8.x/wb/modules/MultiLingual/tpl/lang.html.twig	(revision 1945)
@@ -17,13 +17,13 @@
  */
 
 /**
- * lang.twig
+ * lang.html.twig
  *
  * @category     Modules
  * @package      Modules_MultiLingual
- * @author       Werner v.d.Decken <wkl@isteam.de>
+ * @author       M.v.d.Decken <wkl@isteam.de>
  * @author       Dietmar Wöllbrink <dietmar.woellbrink@websiteBaker.org>
- * @copyright    Werner v.d.Decken <wkl@isteam.de>
+ * @copyright    M.v.d.Decken <wkl@isteam.de>
  * @license      http://www.gnu.org/licenses/gpl.html   GPL License
  * @version      1.6.8
  * @revision     $Revision: $
@@ -30,7 +30,6 @@
  * @link         $HeadURL: $
  * @lastmodified $Date: $
  * @since        File available since 09.01.2013
- * @description  xyz
  */
 #}
 <div id="langmenu">
@@ -37,8 +36,8 @@
 {% for aTarget in aTargetList %}
 	<a href="{{ aTarget.sUrl }}" {% if aTarget.bCurrent %}class="current" {% endif %}title="{{ aTarget.sTitle }}">
 		<span>
-			<img src="{{ aTarget.sIconUrl }}flags/{{ aTarget.FilePrefix }}.png" style="width: 32px; height: 32px" title="{{ aTarget.sTitle }}" alt="{{ aTarget.sLongTitle }}" />
+			<img style="width:32px; height:24px" src="{{ aTarget.sIconUrl }}flags/{{ aTarget.sExtension }}/{{ aTarget.FilePrefix }}.{{ aTarget.sExtension }}"  title="{{ aTarget.sTitle }}" alt="{{ aTarget.sLongTitle }}" />
 		</span>
 	</a>
 {% endfor %}
-</div>
\ No newline at end of file
+</div>
Index: branches/2.8.x/wb/modules/MultiLingual/include.php
===================================================================
--- branches/2.8.x/wb/modules/MultiLingual/include.php	(revision 1944)
+++ branches/2.8.x/wb/modules/MultiLingual/include.php	(revision 1945)
@@ -35,11 +35,22 @@
 
 if(!function_exists('language_menu'))
 {
-	function language_menu()
+	function language_menu($sExtension = "auto")
 	{
 		global $wb;
+		$sExtension = strtolower($sExtension);
+		switch($sExtension)
+		{
+			case 'png':
+			case 'svg':
+				break;
+			default:
+				$sExtension = 'auto';
+		}
+
 		if ( $wb->page_id  < 1){ return false; }
 		$oPageLang = new m_MultiLingual_Lib();
+        $oPageLang->setExtension($sExtension);
 		$sRetVal = $oPageLang->getLangMenu();
 		return $sRetVal;
 	}
Index: branches/2.8.x/wb/modules/MultiLingual/readme.txt
===================================================================
--- branches/2.8.x/wb/modules/MultiLingual/readme.txt	(revision 1944)
+++ branches/2.8.x/wb/modules/MultiLingual/readme.txt	(revision 1945)
@@ -1,21 +1,19 @@
-If you wish to modify the template, just open the file /modules/MultiLingual/tpl/lang.html.twig
+#
+#
+How to use MultiLingual
+##########################################################################
+The easiest way is the combination with Droplet [[iMultiLingual]]
 
 ##########################################################################
+but you also can handle it in the  old manner:
 
-Simple usage:
+insert the following PHP-code in your templates index.php in the place you want 
+show the languages link bar.
+
 <?php if(function_exists('language_menu')){ echo language_menu(); } ?>
 
 ##########################################################################
+If you wish to modify the template, just open the file
+ /modules/MultiLingual/tpl/lang.html.twig
+and make your modifications.
 
-advanced usage:
-<?php
-$langFunction = '';
-// check if multiligual module is installed, default is off,
-if(function_exists('language_menu')){ $langFunction = language_menu(); }
-$multilang_flag = intval(($langFunction)!='');
-$aStart       = SM2_ROOT+$multilang_flag;
-echo $langFunction;
-
-?>
-$aStart defines the start level from show_menu2
-
Index: branches/2.8.x/wb/modules/MultiLingual/Lib.php
===================================================================
--- branches/2.8.x/wb/modules/MultiLingual/Lib.php	(revision 1944)
+++ branches/2.8.x/wb/modules/MultiLingual/Lib.php	(revision 1945)
@@ -45,11 +45,13 @@
 
 
 /** @var array holds several values from the default.ini */	
-	private $_config     = array();
+	private $_config      = array();
 /** @var array set several values for Twig_Environment */	
-	private $_aTwigEnv = array();
+	private $_aTwigEnv    = array();
 /** @var array set several values for Twig_Loader */	
 	private $_aTwigLoader = array();
+/** @var string set icon extension */	
+	private $_sExtension  = array();
 /**
  * constructor used to import some application constants and objects
  */	
@@ -56,24 +58,13 @@
 	public function __construct() 
 	{
 		// import global vars and objects
-		$this->_wbAdaptor();
-	}
-
-	/**
-	 * used to import some WB-constants and objects
-	 */	
-	private function _wbAdaptor()
-	{
 		if(!defined('ADMIN_REL')) { define('ADMIN_REL', WB_REL.'/'.ADMIN_DIRECTORY); }
-
-		$this->_oApp   = (isset($GLOBALS['admin']) ? $GLOBALS['admin'] : $GLOBALS['wb']);
-		$this->_oDb    = WbDatabase::getInstance();
-		$this->_oReg = WbAdaptor::getInstance();
-
-		$this->_config = parse_ini_file(dirname(__FILE__).'/default.ini',true);
-		$this->_aTwigEnv = $this->_config['twig-environment'];
+		$this->_oApp        = (isset($GLOBALS['admin']) ? $GLOBALS['admin'] : $GLOBALS['wb']);
+		$this->_oDb         = WbDatabase::getInstance();
+		$this->_oReg        = WbAdaptor::getInstance();
+		$this->_config      = parse_ini_file(dirname(__FILE__).'/default.ini',true);
+		$this->_aTwigEnv    = $this->_config['twig-environment'];
 		$this->_aTwigLoader = $this->_config['twig-loader-file'];
-
 	}
 
 	/**
@@ -254,6 +245,7 @@
 				      'sUrl' => $this->_oReg->AppRel.$this->_oReg->PagesDir.trim($pages[$value['language']]['link'],'/').$this->_oReg->PageExtension,
 				      'sTitle' => $pages[$value['language']]['page_title'],
 				      'FilePrefix' => strtolower($pages[$value['language']]['language']),
+				      'sExtension' => $this->_sExtension,
 				);
 			}
 		}
@@ -275,7 +267,26 @@
 		return $twig->render($this->_aTwigLoader['default_template'], $data);
 	}
 
+    private function _detectIE()
+    {
+        preg_match('/MSIE (.*?);/', $_SERVER['HTTP_USER_AGENT'], $aMatches);
 
+        if (count($aMatches)>1){
+          return true;
+        }
+        return false;
+    }
+    
+	public function setExtension($sExtension = 'auto') 
+	{   
+		if($sExtension == 'auto' || $sExtension == 'svg') {
+			$this->_sExtension = ($this->_detectIE() == true) ? 'png' : 'svg';
+		} else {
+			$this->_sExtension = 'png';
+		}
+		return;
+	}
+    
 	public function getLangMenu() 
 	{
 		return $this->_getLangMenuTwig ( );
Index: branches/2.8.x/wb/modules/MultiLingual/flags/bg.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/bg.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/ca.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/ca.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/cs.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/cs.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/da.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/da.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/de.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/de.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/en.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/en.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/es.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/es.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/et.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/et.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/fr.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/fr.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/fi.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/fi.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/hu.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/hu.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/hr.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/hr.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/it.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/it.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/lv.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/lv.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/nl.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/nl.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/no.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/no.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/pl.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/pl.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/pt.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/pt.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/ru.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/ru.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/se.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/se.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/sk.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/sk.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/tr.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/tr.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/bg.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/bg.gif
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/ca.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/ca.gif
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/cs.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/cs.gif
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/da.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/da.gif
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/de.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/de.gif
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/en.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/en.gif
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/es.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/es.gif
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/et.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/et.gif
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/fr.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/fr.gif
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/fi.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/fi.gif
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/hu.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/hu.gif
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/hr.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/hr.gif
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/it.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/it.gif
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/lv.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/lv.gif
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/no.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/no.gif
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/nl.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/nl.gif
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/pl.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/pl.gif
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/pt.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/pt.gif
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/ru.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/ru.gif
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/se.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/se.gif
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/sk.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/sk.gif
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/tr.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/tr.gif
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/svg/lv.svg
===================================================================
--- branches/2.8.x/wb/modules/MultiLingual/flags/svg/lv.svg	(nonexistent)
+++ branches/2.8.x/wb/modules/MultiLingual/flags/svg/lv.svg	(revision 1945)
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Sodipodi ("http://www.sodipodi.com/") -->
+<!-- /Creative Commons Public Domain -->
+<!--
+<rdf:RDF xmlns="http://web.resource.org/cc/"
+     xmlns:dc="http://purl.org/dc/elements/1.1/"
+     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
+<Work rdf:about="">
+    <dc:title>SVG graphic of Latvia flag</dc:title>
+    <dc:rights><Agent>
+       <dc:title>Lauris Buksis</dc:title>
+    </Agent></dc:rights>
+    <license rdf:resource="http://web.resource.org/cc/PublicDomain" />
+</Work>
+
+<License rdf:about="http://web.resource.org/cc/PublicDomain">
+    <permits rdf:resource="http://web.resource.org/cc/Reproduction" />
+    <permits rdf:resource="http://web.resource.org/cc/Distribution" />
+    <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
+</License>
+</rdf:RDF>
+-->
+<svg id="svg554" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
+ <metadata id="metadata3373">
+  <rdf:RDF>
+   <cc:Work rdf:about="">
+    <dc:format>image/svg+xml</dc:format>
+    <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
+   </cc:Work>
+  </rdf:RDF>
+ </metadata>
+ <g id="flag" fill-rule="evenodd" transform="matrix(.60207 0 0 .90311 0 .000013347)">
+  <rect id="rect6" height="531.5" width="1063" y="-.000015" x="0" fill="#fff"/>
+  <rect id="rect561" height="212.6" width="1063" y="-.000015260" x="0" stroke-width="1pt" fill="#ab231d"/>
+  <rect id="rect562" height="212.6" width="1063" y="318.9" x="0" stroke-width="1pt" fill="#ab231d"/>
+ </g>
+</svg>
Index: branches/2.8.x/wb/modules/MultiLingual/flags/svg/ca.svg
===================================================================
--- branches/2.8.x/wb/modules/MultiLingual/flags/svg/ca.svg	(nonexistent)
+++ branches/2.8.x/wb/modules/MultiLingual/flags/svg/ca.svg	(revision 1945)
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Sodipodi ("http://www.sodipodi.com/") -->
+<svg id="canada" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" fill-opacity="14.118" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" fill="#28ff09">
+ <metadata id="metadata3503">
+  <rdf:RDF>
+   <cc:Work rdf:about="">
+    <dc:format>image/svg+xml</dc:format>
+    <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
+   </cc:Work>
+  </rdf:RDF>
+ </metadata>
+ <defs id="defs3">
+  <clipPath id="clipPath3087" clipPathUnits="userSpaceOnUse">
+   <rect id="rect3089" fill-opacity="0.67" height="512" width="682.67" y="-0.0000041" x="-79.06" fill="#000"/>
+  </clipPath>
+ </defs>
+ <g id="flag" fill-opacity="1" clip-path="url(#clipPath3087)" transform="matrix(.9375 0 0 .9375 74.118 .0000038438)">
+  <g id="g3531" transform="matrix(.70757 0 0 1 79.779 -.0000041)">
+   <rect id="mat" height="512" width="512" y="0" x="1.919" fill="#fff"/>
+   <rect id="left" height="512" width="256" y="0" x="-254.08" fill="#bf0a30"/>
+   <rect id="right" height="512" width="256" y="0" x="513.92" fill="#bf0a30"/>
+  </g>
+  <path id="leaf" d="m135.31 247.41-14.067 4.8081 65.456 57.446c4.9517 14.764-1.7184 19.116-5.9683 26.859l71.06-9.0192-1.8508 71.512 14.718-0.42336-3.2096-70.918 71.13 8.4323c-4.4022-9.2965-8.3199-14.233-4.2474-29.098l65.413-54.425-11.447-4.1437c-9.359-7.2222 4.0438-34.784 6.0657-52.178 0 0-38.195 13.135-40.698 6.2622l-9.7261-18.685-34.748 38.172c-3.7965 0.90916-5.4138-0.60195-6.3042-3.809l16.053-79.766-25.419 14.297c-2.1281 0.90992-4.2561 0.12489-5.6586-2.3552l-24.45-49.06-25.21 50.95c-1.9008 1.8257-3.8028 2.0373-5.3813 0.79578l-24.204-13.578 14.529 79.143c-1.1552 3.1421-3.9239 4.0263-7.1797 2.3254l-33.216-37.737c-4.3448 6.9615-7.2896 18.336-13.033 20.885-5.7435 2.3866-24.98-4.8231-37.873-7.6378 4.4047 15.895 18.176 42.302 9.4614 50.957z" fill="#bf0a30"/>
+ </g>
+</svg>
Index: branches/2.8.x/wb/modules/MultiLingual/flags/svg/pt.svg
===================================================================
--- branches/2.8.x/wb/modules/MultiLingual/flags/svg/pt.svg	(nonexistent)
+++ branches/2.8.x/wb/modules/MultiLingual/flags/svg/pt.svg	(revision 1945)
@@ -0,0 +1,526 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Sodipodi ("http://www.sodipodi.com/") -->
+<svg id="svg548" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/">
+ <metadata id="metadata4089">
+  <rdf:RDF>
+   <cc:Work rdf:about="">
+    <dc:format>image/svg+xml</dc:format>
+    <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
+   </cc:Work>
+  </rdf:RDF>
+ </metadata>
+ <defs id="defs550">
+  <linearGradient id="linearGradient6733" y2="-5035.4" gradientUnits="userSpaceOnUse" y1="-5035.4" gradientTransform="matrix(.085350 0 0 .14208 -225.71 715.44)" x2="4203.4" x1="359.59">
+   <stop id="stop562" offset="0"/>
+   <stop id="stop563" stop-color="#fff" offset="1"/>
+  </linearGradient>
+  <clipPath id="clipPath7504" clipPathUnits="userSpaceOnUse">
+   <rect id="rect7506" fill-opacity="0.67" height="512" width="682.67" y=".0000053048" x="-72.352"/>
+  </clipPath>
+ </defs>
+ <g id="flag" clip-path="url(#clipPath7504)" transform="matrix(.9375 0 0 .9375 67.83 -.0000049733)">
+  <rect id="rect555" height="511.87" width="307.43" stroke="url(#linearGradient6733)" y=".064535" x="-114.94" stroke-width=".11012pt" fill="#090"/>
+  <rect id="rect557" fill-rule="evenodd" height="512" width="461.15" y="-.0000025034" x="191.82" stroke-width="1pt" fill="#f00"/>
+  <g id="g1527" fill-rule="evenodd" stroke-width="1pt" transform="matrix(.10329 0 0 .10306 23.562 74.592)">
+   <g id="g1009" transform="matrix(-.053403 1.0792 .43966 -.043588 1384.9 -475.58)">
+    <rect id="rect1010" height="2824.2" width="171.54" y="376.91" x="1528.3"/>
+    <rect id="rect1011" height="2768.8" width="131.37" y="404.6" x="1548.3" fill="#efef00"/>
+    <g id="g1012" transform="translate(9.3838 -.000030518)">
+     <rect id="rect1013" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
+     <rect id="rect1014" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
+    </g>
+    <g id="g1015" transform="translate(197.06 -.000030518)">
+     <rect id="rect1016" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
+     <rect id="rect1017" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
+    </g>
+   </g>
+   <g id="g1000" transform="matrix(-.053403 1.0792 .43966 -.043588 1572.6 115.61)">
+    <rect id="rect1001" height="2824.2" width="171.54" y="376.91" x="1528.3"/>
+    <rect id="rect1002" height="2768.8" width="131.37" y="404.6" x="1548.3" fill="#efef00"/>
+    <g id="g1003" transform="translate(9.3838 -.000030518)">
+     <rect id="rect1004" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
+     <rect id="rect1005" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
+    </g>
+    <g id="g1006" transform="translate(197.06 -.000030518)">
+     <rect id="rect1007" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
+     <rect id="rect1008" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
+    </g>
+   </g>
+   <g id="g991" transform="matrix(-.053403 1.0792 .43966 -.043588 1497.5 781.86)">
+    <rect id="rect992" height="2824.2" width="171.54" y="376.91" x="1528.3"/>
+    <rect id="rect993" height="2768.8" width="131.37" y="404.6" x="1548.3" fill="#efef00"/>
+    <g id="g994" transform="translate(9.3838 -.000030518)">
+     <rect id="rect995" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
+     <rect id="rect996" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
+    </g>
+    <g id="g997" transform="translate(197.06 -.000030518)">
+     <rect id="rect998" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
+     <rect id="rect999" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
+    </g>
+   </g>
+   <g id="g982" transform="matrix(.053403 1.0792 -.43966 -.043588 1815 734.94)">
+    <rect id="rect983" height="2824.2" width="171.54" y="376.91" x="1528.3"/>
+    <rect id="rect984" height="2768.8" width="131.37" y="404.6" x="1548.3" fill="#efef00"/>
+    <g id="g985" transform="translate(9.3838 -.000030518)">
+     <rect id="rect986" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
+     <rect id="rect987" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
+    </g>
+    <g id="g988" transform="translate(197.06 -.000030518)">
+     <rect id="rect989" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
+     <rect id="rect990" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
+    </g>
+   </g>
+   <g id="g937" transform="matrix(-.31852 .97312 -.46881 -.050001 2307.7 363.88)">
+    <rect id="rect938" height="2824.2" width="171.54" y="376.91" x="1528.3"/>
+    <rect id="rect939" height="2768.8" width="131.37" y="404.6" x="1548.3" fill="#efef00"/>
+    <g id="g940" transform="translate(9.3838 -.000030518)">
+     <rect id="rect941" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
+     <rect id="rect942" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
+    </g>
+    <g id="g943" transform="translate(197.06 -.000030518)">
+     <rect id="rect944" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
+     <rect id="rect945" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
+    </g>
+   </g>
+   <g id="g928" transform="matrix(-.78495 .83247 -.34476 -.23585 2811.1 622.21)">
+    <rect id="rect929" height="2824.2" width="171.54" y="376.91" x="1528.3"/>
+    <rect id="rect930" height="2768.8" width="131.37" y="404.6" x="1548.3" fill="#efef00"/>
+    <g id="g931" transform="translate(9.3838 -.000030518)">
+     <rect id="rect932" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
+     <rect id="rect933" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
+    </g>
+    <g id="g934" transform="translate(197.06 -.000030518)">
+     <rect id="rect935" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
+     <rect id="rect936" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
+    </g>
+   </g>
+   <g id="g606" transform="translate(3443.9 797.63)">
+    <path id="path607" d="m-576.02-680.03c0.472 617.58-500.34 1118.8-1117.9 1118.8-617.58 0.981-1119.2-499.44-1119.7-1117-1.49-617.6 498.53-1119.6 1116.1-1120.6 617.58-1.96 1120 497.67 1121.5 1115.2 0.026 1.253 0.026 2.31 0.026 3.564zm262.44-0.001c0.582 762.45-617.7 1381.2-1380.1 1381.2-762.44 1.211-1381.8-616.6-1382.3-1379-1.85-762.47 615.47-1382.2 1377.9-1383.4 762.45-2.42 1382.7 614.41 1384.5 1376.8 0.032 1.547 0.032 2.852 0.032 4.399z" fill-opacity=".99967" transform="translate(-149.86 1690.5)" fill="#efef00"/>
+    <path id="path608" d="m296.75 2625.1c0.582 762.45-617.7 1381.2-1380.1 1381.2-762.45 1.21-1381.8-616.6-1382.4-1379-1.84-762.46 615.48-1382.2 1378-1383.4 762.45-2.42 1382.7 614.41 1384.5 1376.8 0.032 1.55 0.032 2.86 0.032 4.4zm-27.624 0c0.57 747.2-605.35 1353.6-1352.5 1353.6-747.2 1.18-1354.1-604.27-1354.7-1351.5-1.81-747.21 603.16-1354.6 1350.4-1355.8 747.2-2.38 1355 602.11 1356.8 1349.3 0.032 1.52 0.032 2.8 0.032 4.31z" transform="matrix(.98 0 0 .98 -781.88 -1562.1)"/>
+    <path id="path609" d="m296.75 2625.1c0.582 762.45-617.7 1381.2-1380.1 1381.2-762.45 1.21-1381.8-616.6-1382.4-1379-1.84-762.46 615.48-1382.2 1378-1383.4 762.45-2.42 1382.7 614.41 1384.5 1376.8 0.032 1.55 0.032 2.86 0.032 4.4zm-27.624 0c0.57 747.2-605.35 1353.6-1352.5 1353.6-747.2 1.18-1354.1-604.27-1354.7-1351.5-1.81-747.21 603.16-1354.6 1350.4-1355.8 747.2-2.38 1355 602.11 1356.8 1349.3 0.032 1.52 0.032 2.8 0.032 4.31z" transform="matrix(.85016 0 0 .85016 -922.69 -1221.3)"/>
+   </g>
+   <g id="g883" transform="matrix(1 0 0 .98355 9.3838 52.807)">
+    <rect id="rect872" height="2824.2" width="171.54" y="376.91" x="1528.3"/>
+    <rect id="rect871" height="2768.8" width="131.37" y="404.6" x="1548.3" fill="#efef00"/>
+    <g id="g877" transform="translate(9.3838 -.000030518)">
+     <rect id="rect875" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
+     <rect id="rect876" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
+    </g>
+    <g id="g880" transform="translate(197.06 -.000030518)">
+     <rect id="rect881" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
+     <rect id="rect882" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
+    </g>
+   </g>
+   <g id="g892" transform="matrix(.37140 1.0146 -.43278 .088917 1148.7 461.89)">
+    <rect id="rect893" height="2824.2" width="171.54" y="376.91" x="1528.3"/>
+    <rect id="rect894" height="2768.8" width="131.37" y="404.6" x="1548.3" fill="#efef00"/>
+    <g id="g895" transform="translate(9.3838 -.000030518)">
+     <rect id="rect896" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
+     <rect id="rect897" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
+    </g>
+    <g id="g1963" transform="translate(197.06 -.000030518)">
+     <rect id="rect899" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
+     <rect id="rect1965" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
+    </g>
+   </g>
+   <g id="g901" transform="matrix(.048179 1.0353 -.45375 .049280 1585.8 -73.118)">
+    <rect id="rect902" height="2824.2" width="171.54" y="376.91" x="1528.3"/>
+    <rect id="rect1968" height="2768.8" width="131.37" y="404.6" x="1548.3" fill="#efef00"/>
+    <g id="g904" transform="translate(9.3838 -.000030518)">
+     <rect id="rect905" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
+     <rect id="rect906" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
+    </g>
+    <g id="g907" transform="translate(197.06 -.000030518)">
+     <rect id="rect908" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
+     <rect id="rect909" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
+    </g>
+   </g>
+   <g id="g910" transform="matrix(-.61913 .96221 -.38214 -.16868 2610.1 86.531)">
+    <rect id="rect911" height="2824.2" width="171.54" y="376.91" x="1528.3"/>
+    <rect id="rect912" height="2768.8" width="131.37" y="404.6" x="1548.3" fill="#efef00"/>
+    <g id="g1978" transform="translate(9.3838 -.000030518)">
+     <rect id="rect1979" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
+     <rect id="rect915" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
+    </g>
+    <g id="g1981" transform="translate(197.06 -.000030518)">
+     <rect id="rect1982" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
+     <rect id="rect918" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
+    </g>
+   </g>
+   <g id="g946" transform="matrix(-.013401 1.0347 -.45603 -.022150 3190.7 -29.14)">
+    <rect id="rect947" height="2824.2" width="171.54" y="376.91" x="1528.3"/>
+    <rect id="rect948" height="2768.8" width="131.37" y="404.6" x="1548.3" fill="#efef00"/>
+    <g id="g949" transform="translate(9.3838 -.000030518)">
+     <rect id="rect950" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
+     <rect id="rect951" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
+    </g>
+    <g id="g952" transform="translate(197.06 -.000030518)">
+     <rect id="rect953" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
+     <rect id="rect954" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
+    </g>
+   </g>
+   <g id="g964" transform="matrix(.29417 .92656 -.37653 -.011881 2458.6 -379.7)">
+    <rect id="rect965" height="2824.2" width="171.54" y="376.91" x="1528.3"/>
+    <rect id="rect966" height="2768.8" width="131.37" y="404.6" x="1548.3" fill="#efef00"/>
+    <g id="g967" transform="translate(9.3838 -.000030518)">
+     <rect id="rect968" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
+     <rect id="rect969" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
+    </g>
+    <g id="g970" transform="translate(197.06 -.000030518)">
+     <rect id="rect971" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
+     <rect id="rect972" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
+    </g>
+   </g>
+   <g id="g973" transform="matrix(-.44645 .96157 -.41974 -.15349 3749.8 876.84)">
+    <rect id="rect974" height="2824.2" width="171.54" y="376.91" x="1528.3"/>
+    <rect id="rect975" height="2768.8" width="131.37" y="404.6" x="1548.3" fill="#efef00"/>
+    <g id="g976" transform="translate(9.3838 -.000030518)">
+     <rect id="rect977" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
+     <rect id="rect978" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
+    </g>
+    <g id="g979" transform="translate(197.06 -.000030518)">
+     <rect id="rect980" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
+     <rect id="rect981" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
+    </g>
+   </g>
+   <g id="g1287">
+    <g id="g2012" transform="translate(388.6 -627.37)">
+     <g id="g2013" transform="translate(1261.6 8670.4)" fill="#f6f6fb">
+      <g id="g2014">
+       <rect id="rect2015" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
+       <ellipse id="path2016" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+      </g>
+      <g id="g2017" transform="translate(-5963.8 -3463.6)">
+       <rect id="rect2018" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
+       <ellipse id="path2019" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+      </g>
+     </g>
+     <g id="g2020" transform="translate(-4610.5 4587.5)">
+      <g id="g2021" transform="matrix(.95 0 0 .95 5869.2 3772.5)" fill="#f00">
+       <g id="g2022">
+        <rect id="rect2023" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
+        <ellipse id="path2024" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+       </g>
+       <g id="g2025" transform="translate(-5963.8 -3463.6)">
+        <rect id="rect2026" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
+        <ellipse id="path2027" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+       </g>
+      </g>
+      <g id="g2028" transform="matrix(.567 0 0 .567 5848 1394.8)" fill="#400">
+       <g id="g2029">
+        <rect id="rect2030" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
+        <ellipse id="path2031" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+       </g>
+       <g id="g2032" transform="translate(-5963.8 -3463.6)">
+        <rect id="rect2033" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
+        <ellipse id="path2034" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+       </g>
+      </g>
+      <g id="g2035" transform="matrix(.51172 0 0 .51172 5844.9 1051.6)" fill="#fff">
+       <g id="g2036">
+        <rect id="rect2037" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
+        <ellipse id="path2038" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+       </g>
+       <g id="g2039" transform="translate(-5963.8 -3463.6)">
+        <rect id="rect2040" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
+        <ellipse id="path2041" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+       </g>
+      </g>
+     </g>
+    </g>
+    <g id="g2042" transform="translate(-1370 3907.3)">
+     <g id="g2043" transform="matrix(.15 0 0 .15 2790 -2140.7)" fill="#3b3bff">
+      <g id="g2044" transform="translate(1261.6 8670.4)">
+       <g id="g2045">
+        <rect id="rect2046" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
+        <ellipse id="path2047" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+       </g>
+       <g id="g2048" transform="translate(-5963.8 -3463.6)">
+        <rect id="rect2049" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
+        <ellipse id="path2050" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+       </g>
+      </g>
+      <g id="g2051" transform="translate(-4610.5 4587.5)">
+       <g id="g2052" transform="matrix(.95 0 0 .95 5869.2 3772.5)">
+        <g id="g2053">
+         <rect id="rect2054" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
+         <ellipse id="path2055" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+        </g>
+        <g id="g2056" transform="translate(-5963.8 -3463.6)">
+         <rect id="rect2057" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
+         <ellipse id="path2058" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+        </g>
+       </g>
+       <g id="g2059" transform="matrix(.567 0 0 .567 5848 1394.8)">
+        <g id="g2060">
+         <rect id="rect2061" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
+         <ellipse id="path2062" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+        </g>
+        <g id="g2063" transform="translate(-5963.8 -3463.6)">
+         <rect id="rect2064" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
+         <ellipse id="path2065" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+        </g>
+       </g>
+       <g id="g2066" transform="matrix(.51172 0 0 .51172 5844.9 1051.6)">
+        <g id="g2067">
+         <rect id="rect2068" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
+         <ellipse id="path2069" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+        </g>
+        <g id="g2070" transform="translate(-5963.8 -3463.6)">
+         <rect id="rect2071" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
+         <ellipse id="path2072" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+        </g>
+       </g>
+      </g>
+     </g>
+     <ellipse id="path2073" fill="#fff" transform="translate(-3.7817 -7.5629)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
+     <ellipse id="path2074" fill="#fff" transform="translate(129.99 -7.5629)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
+     <ellipse id="path2075" fill="#fff" transform="translate(61.922 67.595)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
+     <ellipse id="path2076" fill="#fff" transform="translate(1.4179 140.39)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
+     <ellipse id="path2077" fill="#fff" transform="translate(128.57 142.75)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
+    </g>
+    <path id="path2078" d="m-433.9 545.04v22.689h302.52v-22.689h-302.52zm26.249-62.601v63.152h257.14v-63.152h-257.14zm-22.688 207.62v22.692h302.52v-22.692h-302.52zm81.069-7.017c-0.031-41.191 31.622-74.621 70.654-74.621 39.033-0.066 70.737 33.311 70.768 74.502 0 0.327-0.001 0.602-0.004 0.928m-149.28 3.292c-0.034-45.769 35.136-82.913 78.505-82.913 43.37-0.073 78.596 37.012 78.63 82.78 0.001 0.363 0 0.669-0.004 1.031m-207.65-114.09v113.44h257.14v-113.44h-257.14zm-26.26-113.15v21.46h302.52v-21.46h-302.52zm-0.027-30.268v30.484h23.308v-30.484h-23.308zm279.36 0v30.484h23.308v-30.484h-23.308zm-232.9 0.612v30.484h23.308v-30.484h-23.308zm185.22-0.618v30.484h23.308v-30.484h-23.308zm-139.99-28.725v30.484h23.308v-30.484h-23.308zm92.917-0.006v30.484h23.308v-30.484h-23.308zm-45.236-0.612v30.484h23.308v-30.484h-23.308zm-47.745 31.32v29.144h116.15v-29.144h-116.15z" transform="translate(1296.7 561.41)" fill="#ff0"/>
+    <g id="g2079" fill="#f00" transform="translate(1302.4 561.96)">
+     <rect id="rect2080" height="30.484" width="23.308" y="477.6" x="-348.96"/>
+     <rect id="rect2081" height="30.484" width="23.308" y="476.98" x="-244.43"/>
+    </g>
+    <path id="path2082" d="m-433.9 545.04v22.689h302.52v-22.689h-302.52zm26.249-62.601v63.152h257.14v-63.152h-257.14zm-22.688 207.62v22.692h302.52v-22.692h-302.52zm81.069-7.017c-0.031-41.191 31.622-74.621 70.654-74.621 39.033-0.066 70.737 33.311 70.768 74.502 0 0.327-0.001 0.602-0.004 0.928m-149.28 3.292c-0.034-45.769 35.136-82.913 78.505-82.913 43.37-0.073 78.596 37.012 78.63 82.78 0.001 0.363 0 0.669-0.004 1.031m-207.65-114.09v113.44h257.14v-113.44h-257.14zm-26.26-113.15v21.46h302.52v-21.46h-302.52zm-0.027-30.268v30.484h23.308v-30.484h-23.308zm279.36 0v30.484h23.308v-30.484h-23.308zm-232.9 0.612v30.484h23.308v-30.484h-23.308zm185.22-0.618v30.484h23.308v-30.484h-23.308zm-139.99-28.725v30.484h23.308v-30.484h-23.308zm92.917-0.006v30.484h23.308v-30.484h-23.308zm-45.236-0.612v30.484h23.308v-30.484h-23.308zm-47.745 31.32v29.144h116.15v-29.144h-116.15z" transform="translate(2457.9 565.04)" fill="#ff0"/>
+    <g id="g2083" fill="#f00" transform="translate(2463.5 565.59)">
+     <rect id="rect2084" height="30.484" width="23.308" y="477.6" x="-348.96"/>
+     <rect id="rect2085" height="30.484" width="23.308" y="476.98" x="-244.43"/>
+    </g>
+    <path id="path2086" d="m-433.9 545.04v22.689h302.52v-22.689h-302.52zm26.249-62.601v63.152h257.14v-63.152h-257.14zm-22.688 207.62v22.692h302.52v-22.692h-302.52zm81.069-7.017c-0.031-41.191 31.622-74.621 70.654-74.621 39.033-0.066 70.737 33.311 70.768 74.502 0 0.327-0.001 0.602-0.004 0.928m-149.28 3.292c-0.034-45.769 35.136-82.913 78.505-82.913 43.37-0.073 78.596 37.012 78.63 82.78 0.001 0.363 0 0.669-0.004 1.031m-207.65-114.09v113.44h257.14v-113.44h-257.14zm-26.26-113.15v21.46h302.52v-21.46h-302.52zm-0.027-30.268v30.484h23.308v-30.484h-23.308zm279.36 0v30.484h23.308v-30.484h-23.308zm-232.9 0.612v30.484h23.308v-30.484h-23.308zm185.22-0.618v30.484h23.308v-30.484h-23.308zm-139.99-28.725v30.484h23.308v-30.484h-23.308zm92.917-0.006v30.484h23.308v-30.484h-23.308zm-45.236-0.612v30.484h23.308v-30.484h-23.308zm-47.745 31.32v29.144h116.15v-29.144h-116.15z" transform="translate(1888.2 565.04)" fill="#ff0"/>
+    <g id="g2087" fill="#f00" transform="translate(1893.8 565.59)">
+     <rect id="rect2088" height="30.484" width="23.308" y="477.6" x="-348.96"/>
+     <rect id="rect2089" height="30.484" width="23.308" y="476.98" x="-244.43"/>
+    </g>
+    <path id="path2090" d="m-433.9 545.04v22.689h302.52v-22.689h-302.52zm26.249-62.601v63.152h257.14v-63.152h-257.14zm-22.688 207.62v22.692h302.52v-22.692h-302.52zm81.069-7.017c-0.031-41.191 31.622-74.621 70.654-74.621 39.033-0.066 70.737 33.311 70.768 74.502 0 0.327-0.001 0.602-0.004 0.928m-149.28 3.292c-0.034-45.769 35.136-82.913 78.505-82.913 43.37-0.073 78.596 37.012 78.63 82.78 0.001 0.363 0 0.669-0.004 1.031m-207.65-114.09v113.44h257.14v-113.44h-257.14zm-26.26-113.15v21.46h302.52v-21.46h-302.52zm-0.027-30.268v30.484h23.308v-30.484h-23.308zm279.36 0v30.484h23.308v-30.484h-23.308zm-232.9 0.612v30.484h23.308v-30.484h-23.308zm185.22-0.618v30.484h23.308v-30.484h-23.308zm-139.99-28.725v30.484h23.308v-30.484h-23.308zm92.917-0.006v30.484h23.308v-30.484h-23.308zm-45.236-0.612v30.484h23.308v-30.484h-23.308zm-47.745 31.32v29.144h116.15v-29.144h-116.15z" transform="translate(1271.3 1272.6)" fill="#ff0"/>
+    <g id="g2091" fill="#f00" transform="translate(1277 1273.2)">
+     <rect id="rect2092" height="30.484" width="23.308" y="477.6" x="-348.96"/>
+     <rect id="rect2093" height="30.484" width="23.308" y="476.98" x="-244.43"/>
+    </g>
+    <path id="path2094" d="m-433.9 545.04v22.689h302.52v-22.689h-302.52zm26.249-62.601v63.152h257.14v-63.152h-257.14zm-22.688 207.62v22.692h302.52v-22.692h-302.52zm81.069-7.017c-0.031-41.191 31.622-74.621 70.654-74.621 39.033-0.066 70.737 33.311 70.768 74.502 0 0.327-0.001 0.602-0.004 0.928m-149.28 3.292c-0.034-45.769 35.136-82.913 78.505-82.913 43.37-0.073 78.596 37.012 78.63 82.78 0.001 0.363 0 0.669-0.004 1.031m-207.65-114.09v113.44h257.14v-113.44h-257.14zm-26.26-113.15v21.46h302.52v-21.46h-302.52zm-0.027-30.268v30.484h23.308v-30.484h-23.308zm279.36 0v30.484h23.308v-30.484h-23.308zm-232.9 0.612v30.484h23.308v-30.484h-23.308zm185.22-0.618v30.484h23.308v-30.484h-23.308zm-139.99-28.725v30.484h23.308v-30.484h-23.308zm92.917-0.006v30.484h23.308v-30.484h-23.308zm-45.236-0.612v30.484h23.308v-30.484h-23.308zm-47.745 31.32v29.144h116.15v-29.144h-116.15z" transform="translate(2479.7 1265.4)" fill="#ff0"/>
+    <g id="g2095" fill="#f00" transform="translate(2485.3 1265.9)">
+     <rect id="rect2096" height="30.484" width="23.308" y="477.6" x="-348.96"/>
+     <rect id="rect2097" height="30.484" width="23.308" y="476.98" x="-244.43"/>
+    </g>
+    <path id="path2098" d="m-433.9 545.04v22.689h302.52v-22.689h-302.52zm26.249-62.601v63.152h257.14v-63.152h-257.14zm-22.688 207.62v22.692h302.52v-22.692h-302.52zm81.069-7.017c-0.031-41.191 31.622-74.621 70.654-74.621 39.033-0.066 70.737 33.311 70.768 74.502 0 0.327-0.001 0.602-0.004 0.928m-149.28 3.292c-0.034-45.769 35.136-82.913 78.505-82.913 43.37-0.073 78.596 37.012 78.63 82.78 0.001 0.363 0 0.669-0.004 1.031m-207.65-114.09v113.44h257.14v-113.44h-257.14zm-26.26-113.15v21.46h302.52v-21.46h-302.52zm-0.027-30.268v30.484h23.308v-30.484h-23.308zm279.36 0v30.484h23.308v-30.484h-23.308zm-232.9 0.612v30.484h23.308v-30.484h-23.308zm185.22-0.618v30.484h23.308v-30.484h-23.308zm-139.99-28.725v30.484h23.308v-30.484h-23.308zm92.917-0.006v30.484h23.308v-30.484h-23.308zm-45.236-0.612v30.484h23.308v-30.484h-23.308zm-47.745 31.32v29.144h116.15v-29.144h-116.15z" transform="matrix(.65276 -.75757 .75757 .65276 969.57 1819.3)" fill="#ff0"/>
+    <g id="g2099" fill="#f00" transform="matrix(.65276 -.75757 .75757 .65276 973.66 1815.4)">
+     <rect id="rect2100" height="30.484" width="23.308" y="477.6" x="-348.96"/>
+     <rect id="rect2101" height="30.484" width="23.308" y="476.98" x="-244.43"/>
+    </g>
+    <path id="path2102" d="m-433.9 545.04v22.689h302.52v-22.689h-302.52zm26.249-62.601v63.152h257.14v-63.152h-257.14zm-22.688 207.62v22.692h302.52v-22.692h-302.52zm81.069-7.017c-0.031-41.191 31.622-74.621 70.654-74.621 39.033-0.066 70.737 33.311 70.768 74.502 0 0.327-0.001 0.602-0.004 0.928m-149.28 3.292c-0.034-45.769 35.136-82.913 78.505-82.913 43.37-0.073 78.596 37.012 78.63 82.78 0.001 0.363 0 0.669-0.004 1.031m-207.65-114.09v113.44h257.14v-113.44h-257.14zm-26.26-113.15v21.46h302.52v-21.46h-302.52zm-0.027-30.268v30.484h23.308v-30.484h-23.308zm279.36 0v30.484h23.308v-30.484h-23.308zm-232.9 0.612v30.484h23.308v-30.484h-23.308zm185.22-0.618v30.484h23.308v-30.484h-23.308zm-139.99-28.725v30.484h23.308v-30.484h-23.308zm92.917-0.006v30.484h23.308v-30.484h-23.308zm-45.236-0.612v30.484h23.308v-30.484h-23.308zm-47.745 31.32v29.144h116.15v-29.144h-116.15z" transform="matrix(-.65276 -.75757 -.75757 .65276 2231 1815.7)" fill="#ff0"/>
+    <g id="g2103" fill="#f00" transform="matrix(-.65276 -.75757 -.75757 .65276 2226.9 1811.8)">
+     <rect id="rect2104" height="30.484" width="23.308" y="477.6" x="-348.96"/>
+     <rect id="rect2105" height="30.484" width="23.308" y="476.98" x="-244.43"/>
+    </g>
+    <g id="g2106" transform="translate(-1377.6 3272)">
+     <g id="g2107" transform="translate(3.7814 11.344)">
+      <g id="g2108" transform="matrix(.15 0 0 .15 2790 -2140.7)" fill="#3b3bff">
+       <g id="g2109" transform="translate(1261.6 8670.4)">
+        <g id="g2110">
+         <rect id="rect2111" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
+         <ellipse id="path2112" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+        </g>
+        <g id="g2113" transform="translate(-5963.8 -3463.6)">
+         <rect id="rect2114" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
+         <ellipse id="path2115" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+        </g>
+       </g>
+       <g id="g2116" transform="translate(-4610.5 4587.5)">
+        <g id="g2117" transform="matrix(.95 0 0 .95 5869.2 3772.5)">
+         <g id="g2118">
+          <rect id="rect1155" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
+          <ellipse id="path2120" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+         </g>
+         <g id="g2121" transform="translate(-5963.8 -3463.6)">
+          <rect id="rect1158" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
+          <ellipse id="path2123" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+         </g>
+        </g>
+        <g id="g2124" transform="matrix(.567 0 0 .567 5848 1394.8)">
+         <g id="g2125">
+          <rect id="rect2126" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
+          <ellipse id="path2127" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+         </g>
+         <g id="g2128" transform="translate(-5963.8 -3463.6)">
+          <rect id="rect2129" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
+          <ellipse id="path2130" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+         </g>
+        </g>
+        <g id="g2131" transform="matrix(.51172 0 0 .51172 5844.9 1051.6)">
+         <g id="g1168">
+          <rect id="rect1169" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
+          <ellipse id="path2134" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+         </g>
+         <g id="g2135" transform="translate(-5963.8 -3463.6)">
+          <rect id="rect2136" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
+          <ellipse id="path2137" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+         </g>
+        </g>
+       </g>
+      </g>
+      <ellipse id="path2138" fill="#fff" transform="translate(-3.7817 -7.5629)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
+      <ellipse id="path2139" fill="#fff" transform="translate(129.99 -7.5629)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
+      <ellipse id="path2140" fill="#fff" transform="translate(61.922 67.595)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
+      <ellipse id="path2141" fill="#fff" transform="translate(1.4179 140.39)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
+      <ellipse id="path2142" fill="#fff" transform="translate(128.57 142.75)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
+     </g>
+     <g id="g2143" transform="translate(3.7817 321.43)">
+      <g id="g2144" transform="matrix(.15 0 0 .15 2790 -2140.7)" fill="#3b3bff">
+       <g id="g2145" transform="translate(1261.6 8670.4)">
+        <g id="g2146">
+         <rect id="rect2147" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
+         <ellipse id="path2148" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+        </g>
+        <g id="g2149" transform="translate(-5963.8 -3463.6)">
+         <rect id="rect2150" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
+         <ellipse id="path2151" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+        </g>
+       </g>
+       <g id="g2152" transform="translate(-4610.5 4587.5)">
+        <g id="g2153" transform="matrix(.95 0 0 .95 5869.2 3772.5)">
+         <g id="g2154">
+          <rect id="rect2155" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
+          <ellipse id="path2156" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+         </g>
+         <g id="g2157" transform="translate(-5963.8 -3463.6)">
+          <rect id="rect2158" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
+          <ellipse id="path2159" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+         </g>
+        </g>
+        <g id="g2160" transform="matrix(.567 0 0 .567 5848 1394.8)">
+         <g id="g2161">
+          <rect id="rect2162" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
+          <ellipse id="path2163" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+         </g>
+         <g id="g2164" transform="translate(-5963.8 -3463.6)">
+          <rect id="rect2165" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
+          <ellipse id="path2166" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+         </g>
+        </g>
+        <g id="g2167" transform="matrix(.51172 0 0 .51172 5844.9 1051.6)">
+         <g id="g2168">
+          <rect id="rect2169" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
+          <ellipse id="path2170" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+         </g>
+         <g id="g2171" transform="translate(-5963.8 -3463.6)">
+          <rect id="rect2172" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
+          <ellipse id="path2173" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+         </g>
+        </g>
+       </g>
+      </g>
+      <ellipse id="path2174" fill="#fff" transform="translate(-3.7817 -7.5629)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
+      <ellipse id="path2175" fill="#fff" transform="translate(129.99 -7.5629)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
+      <ellipse id="path2176" fill="#fff" transform="translate(61.922 67.595)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
+      <ellipse id="path2177" fill="#fff" transform="translate(1.4179 140.39)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
+      <ellipse id="path2178" fill="#fff" transform="translate(128.57 142.75)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
+     </g>
+     <g id="g1215" transform="translate(268.49 321.43)">
+      <g id="g2180" transform="matrix(.15 0 0 .15 2790 -2140.7)" fill="#3b3bff">
+       <g id="g2181" transform="translate(1261.6 8670.4)">
+        <g id="g2182">
+         <rect id="rect2183" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
+         <ellipse id="path2184" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+        </g>
+        <g id="g2185" transform="translate(-5963.8 -3463.6)">
+         <rect id="rect2186" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
+         <ellipse id="path2187" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+        </g>
+       </g>
+       <g id="g2188" transform="translate(-4610.5 4587.5)">
+        <g id="g2189" transform="matrix(.95 0 0 .95 5869.2 3772.5)">
+         <g id="g2190">
+          <rect id="rect2191" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
+          <ellipse id="path2192" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+         </g>
+         <g id="g2193" transform="translate(-5963.8 -3463.6)">
+          <rect id="rect2194" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
+          <ellipse id="path2195" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+         </g>
+        </g>
+        <g id="g2196" transform="matrix(.567 0 0 .567 5848 1394.8)">
+         <g id="g1233">
+          <rect id="rect1234" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
+          <ellipse id="path2199" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+         </g>
+         <g id="g2200" transform="translate(-5963.8 -3463.6)">
+          <rect id="rect2201" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
+          <ellipse id="path2202" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+         </g>
+        </g>
+        <g id="g2203" transform="matrix(.51172 0 0 .51172 5844.9 1051.6)">
+         <g id="g2204">
+          <rect id="rect2205" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
+          <ellipse id="path2206" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+         </g>
+         <g id="g2207" transform="translate(-5963.8 -3463.6)">
+          <rect id="rect2208" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
+          <ellipse id="path2209" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+         </g>
+        </g>
+       </g>
+      </g>
+      <ellipse id="path2210" fill="#fff" transform="translate(-3.7817 -7.5629)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
+      <ellipse id="path2211" fill="#fff" transform="translate(129.99 -7.5629)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
+      <ellipse id="path2212" fill="#fff" transform="translate(61.922 67.595)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
+      <ellipse id="path2213" fill="#fff" transform="translate(1.4179 140.39)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
+      <ellipse id="path2214" fill="#fff" transform="translate(128.57 142.75)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
+     </g>
+     <g id="g2215" transform="translate(-260.92 321.43)">
+      <g id="g2216" transform="matrix(.15 0 0 .15 2790 -2140.7)" fill="#3b3bff">
+       <g id="g2217" transform="translate(1261.6 8670.4)">
+        <g id="g2218">
+         <rect id="rect2219" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
+         <ellipse id="path2220" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+        </g>
+        <g id="g2221" transform="translate(-5963.8 -3463.6)">
+         <rect id="rect2222" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
+         <ellipse id="path2223" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+        </g>
+       </g>
+       <g id="g2224" transform="translate(-4610.5 4587.5)">
+        <g id="g2225" transform="matrix(.95 0 0 .95 5869.2 3772.5)">
+         <g id="g2226">
+          <rect id="rect2227" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
+          <ellipse id="path2228" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+         </g>
+         <g id="g2229" transform="translate(-5963.8 -3463.6)">
+          <rect id="rect2230" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
+          <ellipse id="path2231" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+         </g>
+        </g>
+        <g id="g2232" transform="matrix(.567 0 0 .567 5848 1394.8)">
+         <g id="g2233">
+          <rect id="rect2234" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
+          <ellipse id="path2235" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+         </g>
+         <g id="g2236" transform="translate(-5963.8 -3463.6)">
+          <rect id="rect2237" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
+          <ellipse id="path2238" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+         </g>
+        </g>
+        <g id="g2239" transform="matrix(.51172 0 0 .51172 5844.9 1051.6)">
+         <g id="g2240">
+          <rect id="rect2241" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
+          <ellipse id="path2242" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+         </g>
+         <g id="g2243" transform="translate(-5963.8 -3463.6)">
+          <rect id="rect2244" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
+          <ellipse id="path2245" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
+         </g>
+        </g>
+       </g>
+      </g>
+      <ellipse id="path2246" fill="#fff" transform="translate(-3.7817 -7.5629)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
+      <ellipse id="path2247" fill="#fff" transform="translate(129.99 -7.5629)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
+      <ellipse id="path2248" fill="#fff" transform="translate(61.922 67.595)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
+      <ellipse id="path2249" fill="#fff" transform="translate(1.4179 140.39)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
+      <ellipse id="path2250" fill="#fff" transform="translate(128.57 142.75)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
+     </g>
+    </g>
+   </g>
+  </g>
+ </g>
+</svg>
Index: branches/2.8.x/wb/modules/MultiLingual/flags/svg/tr.svg
===================================================================
--- branches/2.8.x/wb/modules/MultiLingual/flags/svg/tr.svg	(nonexistent)
+++ branches/2.8.x/wb/modules/MultiLingual/flags/svg/tr.svg	(revision 1945)
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Sodipodi ("http://www.sodipodi.com/") -->
+<svg id="svg548" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
+ <metadata id="metadata4108">
+  <rdf:RDF>
+   <cc:Work rdf:about="">
+    <dc:format>image/svg+xml</dc:format>
+    <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
+   </cc:Work>
+  </rdf:RDF>
+ </metadata>
+ <g id="flag">
+  <rect id="rect551" fill-rule="evenodd" height="480" width="640" y="2.5925e-15" x="0" stroke-width="1pt" fill="#f31930"/>
+  <g id="g3005" transform="matrix(.9375 0 0 .9375 132.01 7.2462)">
+   <path id="path670" d="m393.35 220.64" stroke="#000" stroke-width=".77658pt" fill="none"/>
+   <path id="path614" d="m178.37 445.64c0 100.69-81.622 182.31-182.31 182.31s-182.31-81.622-182.31-182.31 81.622-182.31 182.31-182.31 182.31 81.622 182.31 182.31z" fill-rule="evenodd" transform="matrix(.71362 0 0 .70145 166.01 -56.352)" fill="#fff"/>
+   <path id="path615" d="m-15.739 157.09c0 44.186-35.82 80.006-80.006 80.006s-80.006-35.82-80.006-80.006 35.82-80.006 80.006-80.006 80.006 35.82 80.006 80.006z" fill-rule="evenodd" transform="matrix(1.3009 0 0 1.2787 320.28 55.365)" fill="#f31830"/>
+   <path id="path563" d="m318.63 196.5-1.0501 47.273-44.103 11.973 43.473 15.482-1.0501 43.351 28.352-33.854 42.842 14.863-24.782-36.332 30.242-36.125-46.413 12.798-27.512-39.428z" fill-rule="evenodd" stroke-width="1pt" fill="#fff"/>
+  </g>
+ </g>
+</svg>
Index: branches/2.8.x/wb/modules/MultiLingual/flags/svg/ru.svg
===================================================================
--- branches/2.8.x/wb/modules/MultiLingual/flags/svg/ru.svg	(nonexistent)
+++ branches/2.8.x/wb/modules/MultiLingual/flags/svg/ru.svg	(revision 1945)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Sodipodi ("http://www.sodipodi.com/") -->
+<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
+ <metadata id="metadata4346">
+  <rdf:RDF>
+   <cc:Work rdf:about="">
+    <dc:format>image/svg+xml</dc:format>
+    <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
+   </cc:Work>
+  </rdf:RDF>
+ </metadata>
+ <g id="flag" fill-rule="evenodd" stroke-width="1pt" transform="matrix(1.25 0 0 .93750 0 -.0000020021)">
+  <rect id="rect171" height="512" width="512" y=".0000024116" x="0" fill="#fff"/>
+  <rect id="rect403" height="341.33" width="512" y="170.67" x="0" fill="#01017e"/>
+  <rect id="rect135" height="170.67" width="512" y="341.33" x="0" fill="#fe0101"/>
+ </g>
+</svg>
Index: branches/2.8.x/wb/modules/MultiLingual/flags/svg/bg.svg
===================================================================
--- branches/2.8.x/wb/modules/MultiLingual/flags/svg/bg.svg	(nonexistent)
+++ branches/2.8.x/wb/modules/MultiLingual/flags/svg/bg.svg	(revision 1945)
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Sodipodi ("http://www.sodipodi.com/") -->
+<svg id="svg626" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
+ <metadata id="metadata3008">
+  <rdf:RDF>
+   <cc:Work rdf:about="">
+    <dc:format>image/svg+xml</dc:format>
+    <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
+   </cc:Work>
+  </rdf:RDF>
+ </metadata>
+ <g id="flag">
+  <g id="g3259" fill-rule="evenodd" stroke-width="1pt" transform="scale(1.25 .93750)">
+   <rect id="rect629" height="170.67" width="512" y="341.33" x="0" fill="#de2110"/>
+   <rect id="rect631" height="170.67" width="512" y="0" x="0" fill="#fff"/>
+   <rect id="rect632" height="170.67" width="512" y="170.67" x="0" fill="#319400"/>
+  </g>
+ </g>
+</svg>
Index: branches/2.8.x/wb/modules/MultiLingual/flags/svg/de.svg
===================================================================
--- branches/2.8.x/wb/modules/MultiLingual/flags/svg/de.svg	(nonexistent)
+++ branches/2.8.x/wb/modules/MultiLingual/flags/svg/de.svg	(revision 1945)
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Sodipodi ("http://www.sodipodi.com/") -->
+<!-- /Creative Commons Public Domain -->
+<!--
+<rdf:RDF xmlns="http://web.resource.org/cc/"
+    xmlns:dc="http://purl.org/dc/elements/1.1/"
+    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
+<Work rdf:about="">
+   <dc:title>SVG graphic of German flags</dc:title>
+   <dc:rights><Agent>
+      <dc:title>Philipp Sadleder</dc:title>
+   </Agent></dc:rights>
+   <license rdf:resource="http://web.resource.org/cc/PublicDomain" />
+</Work>
+
+<License rdf:about="http://web.resource.org/cc/PublicDomain">
+   <permits rdf:resource="http://web.resource.org/cc/Reproduction" />
+   <permits rdf:resource="http://web.resource.org/cc/Distribution" />
+   <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
+</License>
+</rdf:RDF>
+-->
+<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.0" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
+ <metadata id="metadata3074">
+  <rdf:RDF>
+   <cc:Work rdf:about="">
+    <dc:format>image/svg+xml</dc:format>
+    <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
+   </cc:Work>
+  </rdf:RDF>
+ </metadata>
+ <g id="flag" fill-rule="evenodd" stroke-width="1pt" transform="matrix(.60207 0 0 .75259 0 -.000028157)">
+  <rect id="rect171" height="212.6" width="1063" y="425.2" x="0" fill="#ffe600"/>
+  <rect id="rect256" height="212.6" width="1063" y="0.000038" x="0"/>
+  <rect id="rect255" height="212.6" width="1063" y="212.6" x="0" fill="#f00"/>
+ </g>
+</svg>
Index: branches/2.8.x/wb/modules/MultiLingual/flags/svg/fi.svg
===================================================================
--- branches/2.8.x/wb/modules/MultiLingual/flags/svg/fi.svg	(nonexistent)
+++ branches/2.8.x/wb/modules/MultiLingual/flags/svg/fi.svg	(revision 1945)
@@ -0,0 +1,53 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Sodipodi ("http://www.sodipodi.com/") -->
+<!-- /Creative Commons Public Domain -->
+<!--
+<rdf:RDF xmlns="http://web.resource.org/cc/"
+     xmlns:dc="http://purl.org/dc/elements/1.1/"
+     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
+<Work rdf:about="">
+    <dc:title>New Zealand, Australia, United Kingdom, United States, 
+Bosnia and Herzegovina, Azerbaijan, Armenia, Bahamas, Belgium, Benin, 
+Bulgaria, Estonia, Finland, Gabon, Gambia, Germany, Greece, Greenland, 
+Guinea, Honduras, Israel, Jamaica, Jordan, and Romania Flags</dc:title>
+    <dc:rights><Agent>
+       <dc:title>Daniel McRae</dc:title>
+    </Agent></dc:rights>
+    <license rdf:resource="http://web.resource.org/cc/PublicDomain" />
+</Work>
+
+<License rdf:about="http://web.resource.org/cc/PublicDomain">
+    <permits rdf:resource="http://web.resource.org/cc/Reproduction" />
+    <permits rdf:resource="http://web.resource.org/cc/Distribution" />
+    <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
+</License>
+</rdf:RDF>
+-->
+<svg id="svg555" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.0" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
+ <metadata id="metadata3013">
+  <rdf:RDF>
+   <cc:Work rdf:about="">
+    <dc:format>image/svg+xml</dc:format>
+    <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
+   </cc:Work>
+  </rdf:RDF>
+ </metadata>
+ <defs id="defs557">
+  <clipPath id="clipPath3605" clipPathUnits="userSpaceOnUse">
+   <rect id="rect3607" fill-opacity="0.67" height="512" width="682.67" y="-.0000019138" x="-19.451"/>
+  </clipPath>
+ </defs>
+ <g id="flag" fill-rule="evenodd" clip-path="url(#clipPath3605)" transform="matrix(.93750 0 0 .93750 18.235 .0000017942)" stroke-width="1pt">
+  <rect id="rect565" height="186.34" width="249.35" y="325.66" x="-105.62" fill="#fff"/>
+  <rect id="rect566" height="512" width="149.94" y="-.0000027024" x="143.57" fill="#0062da"/>
+  <rect id="rect567" height="139.64" width="897.67" y="186.18" x="-105.62" fill="#0062da"/>
+  <rect id="rect568" height="186.34" width="249.35" y=".0030247" x="-105.62" fill="#fff"/>
+  <rect id="rect570" height="186.34" width="498.7" y="325.66" x="293.35" fill="#fff"/>
+  <rect id="rect574" height="186.34" width="498.7" y=".0015173" x="293.35" fill="#fff"/>
+  <rect id="rect564" height="186.34" width="249.35" y="325.66" x="-105.62" fill="#fff"/>
+  <rect id="rect569" height="512" width="149.94" y="-.0000027024" x="143.57" fill="#0062da"/>
+  <rect id="rect572" height="186.34" width="249.35" y=".0030247" x="-105.62" fill="#fff"/>
+  <rect id="rect573" height="186.34" width="498.7" y="325.66" x="293.35" fill="#fff"/>
+  <rect id="rect575" height="186.34" width="498.7" y=".0015173" x="293.35" fill="#fff"/>
+ </g>
+</svg>
Index: branches/2.8.x/wb/modules/MultiLingual/flags/svg/en.svg
===================================================================
--- branches/2.8.x/wb/modules/MultiLingual/flags/svg/en.svg	(nonexistent)
+++ branches/2.8.x/wb/modules/MultiLingual/flags/svg/en.svg	(revision 1945)
@@ -0,0 +1,52 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Sodipodi ("http://www.sodipodi.com/") -->
+<!-- /Creative Commons Public Domain -->
+<!--
+
+<rdf:RDF xmlns="http://web.resource.org/cc/"
+     xmlns:dc="http://purl.org/dc/elements/1.1/"
+     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
+<Work rdf:about="">
+    <dc:title>New Zealand, Australia, United Kingdom, United States, 
+Bosnia and Herzegovina, Azerbaijan, Armenia, Bahamas, Belgium, Benin, 
+Bulgaria, Estonia, Finland, Gabon, Gambia, Germany, Greece, Greenland, 
+Guinea, Honduras, Israel, Jamaica, Jordan, and Romania Flags</dc:title>
+    <dc:rights><Agent>
+       <dc:title>Daniel McRae</dc:title>
+    </Agent></dc:rights>
+    <license rdf:resource="http://web.resource.org/cc/PublicDomain" />
+</Work>
+
+<License rdf:about="http://web.resource.org/cc/PublicDomain">
+    <permits rdf:resource="http://web.resource.org/cc/Reproduction" />
+    <permits rdf:resource="http://web.resource.org/cc/Distribution" />
+    <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
+</License>
+</rdf:RDF>
+-->
+<svg id="svg1" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
+ <metadata id="metadata2995">
+  <rdf:RDF>
+   <cc:Work rdf:about="">
+    <dc:format>image/svg+xml</dc:format>
+    <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
+   </cc:Work>
+  </rdf:RDF>
+ </metadata>
+ <defs id="defs3">
+  <clipPath id="clipPath8673" clipPathUnits="userSpaceOnUse">
+   <rect id="rect8675" fill-opacity="0.67" height="512" width="682.67" y="-.0000028613" x="-85.333"/>
+  </clipPath>
+ </defs>
+ <g id="flag" clip-path="url(#clipPath8673)" transform="matrix(.93750 0 0 .93750 80 .0000026825)">
+  <g id="g578" stroke-width="1pt" transform="matrix(17.067 0 0 17.067 -256 -0.0000024)">
+   <rect id="rect124" height="30" width="60" y="0" x="0" fill="#006"/>
+   <g id="g584">
+    <path id="path146" d="m0 0v3.3541l53.292 26.646h6.708v-3.354l-53.292-26.646h-6.708zm60 0v3.354l-53.292 26.646h-6.708v-3.354l53.292-26.646h6.708z" fill="#fff"/>
+    <path id="path136" d="m25 0v30h10v-30h-10zm-25 10v10h60v-10h-60z" fill="#fff"/>
+    <path id="path141" d="m0 12v6h60v-6h-60zm27-12v30h6v-30h-6z" fill="#c00"/>
+    <path id="path150" d="m0 30 20-10h4.472l-20 10h-4.472zm0-30 20 10h-4.472l-15.528-7.7639v-2.2361zm35.528 10 20-10h4.472l-20 10h-4.472zm24.472 20-20-10h4.472l15.528 7.764v2.236z" fill="#c00"/>
+   </g>
+  </g>
+ </g>
+</svg>
Index: branches/2.8.x/wb/modules/MultiLingual/flags/svg/se.svg
===================================================================
--- branches/2.8.x/wb/modules/MultiLingual/flags/svg/se.svg	(nonexistent)
+++ branches/2.8.x/wb/modules/MultiLingual/flags/svg/se.svg	(revision 1945)
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Sodipodi ("http://www.sodipodi.com/") -->
+<svg id="svg589" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
+ <metadata id="metadata3065">
+  <rdf:RDF>
+   <cc:Work rdf:about="">
+    <dc:format>image/svg+xml</dc:format>
+    <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
+   </cc:Work>
+  </rdf:RDF>
+ </metadata>
+ <defs id="defs591">
+  <clipPath id="clipPath15333" clipPathUnits="userSpaceOnUse">
+   <rect id="rect15335" fill-opacity="0.67" height="512" width="682.67" y=".0000090621" x="-53.421"/>
+  </clipPath>
+ </defs>
+ <g id="flag" clip-path="url(#clipPath15333)" transform="matrix(.9375 0 0 .9375 50.082 -.0000084958)">
+  <g id="g558" fill-rule="evenodd" stroke-width="1pt" transform="matrix(2.9257 0 0 2.9257 -745.33 -969.48)">
+   <rect id="rect552" height="70" width="87.5" y="331.47" x="213.36" fill="#004073"/>
+   <rect id="rect553" height="70" width="87.5" y="436.36" x="213.36" fill="#003f73"/>
+   <rect id="rect554" height="35" width="87.5" y="401.43" x="213.36" fill="#fc0"/>
+   <rect id="rect556" height="175" width="35" y="331.37" x="300.5" fill="#fc0"/>
+   <rect id="rect557" height="35" width="157.5" y="401.44" x="334.39" fill="#fc0"/>
+   <rect id="rect558" height="70" width="157.5" y="436.37" x="335.47" fill="#003f73"/>
+   <rect id="rect559" height="70" width="157.5" y="331.47" x="335.47" fill="#003f73"/>
+  </g>
+ </g>
+</svg>
Index: branches/2.8.x/wb/modules/MultiLingual/flags/svg/es.svg
===================================================================
--- branches/2.8.x/wb/modules/MultiLingual/flags/svg/es.svg	(nonexistent)
+++ branches/2.8.x/wb/modules/MultiLingual/flags/svg/es.svg	(revision 1945)
@@ -0,0 +1,705 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Sodipodi ("http://www.sodipodi.com/") -->
+<svg id="svg548" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
+ <metadata id="metadata3758">
+  <rdf:RDF>
+   <cc:Work rdf:about="">
+    <dc:format>image/svg+xml</dc:format>
+    <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
+   </cc:Work>
+  </rdf:RDF>
+ </metadata>
+ <g id="flag">
+  <g id="g5725" fill-rule="evenodd" stroke-width="1pt" transform="matrix(1.25 0 0 .93750 7.3561e-8 -.000021518)">
+   <rect id="rect171" height="512" width="511.92" y=".000021828" x=".040190" fill="#c00"/>
+   <rect id="rect403" height="256.01" width="512" y="128" x="-5.8849e-8" fill="#ff3"/>
+  </g>
+  <g id="g7118" transform="matrix(1.3733 0 0 1.3733 -31.932 -121.94)">
+   <path id="path555" fill="#c00" d="m154.85 214.78s-0.62911 0-0.97531-0.19729c-0.3462-0.20102-1.391-1.19-1.391-1.19l-0.83634-0.59561-0.76189-1.0547s-0.90583-1.4431-0.49014-2.5686c0.41569-1.1205 1.113-1.5188 1.7422-1.8464 0.62788-0.32883 1.9457-0.72591 1.9457-0.72591s1.0485-0.46036 1.3947-0.52984c0.3462-0.0658 1.6032-0.3946 1.6032-0.3946s0.34744-0.19605 0.69365-0.32759c0.35116-0.13153 0.83634-0.13153 1.118-0.20101 0.27671-0.0658 0.97532-0.28913 1.391-0.31146 0.64649-0.0261 1.6727 0.11416 2.0238 0.11416 0.3462 0 1.53 0.0695 2.0152 0.0695 0.48518 0 2.2261-0.13526 2.7162-0.13526 0.48517 0 0.83634-0.0608 1.396 0 0.55466 0.0658 1.5287 0.39336 1.8104 0.52985 0.27796 0.13153 1.9506 0.7259 2.5748 0.9232 0.62788 0.19233 2.1616 0.45912 2.8602 0.78795 0.6924 0.33255 1.118 0.88846 1.4642 1.3513 0.35117 0.46036 0.41569 0.96291 0.55467 1.2955 0.13401 0.32882 0.13897 1.0374 0.005 1.3662-0.14022 0.32759-0.63284 1.0063-0.63284 1.0063l-0.76809 1.2508-0.97408 0.78795s-0.6986 0.6651-1.252 0.59561c-0.55962-0.0571-6.2018-1.0547-9.8239-1.0547-3.6233 0-9.4082 1.0547-9.4082 1.0547"/>
+   <path id="path556" stroke-linejoin="round" d="m154.85 214.78s-0.62911 0-0.97531-0.19729c-0.3462-0.20102-1.391-1.19-1.391-1.19l-0.83634-0.59561-0.76189-1.0547s-0.90583-1.4431-0.49014-2.5686c0.41569-1.1205 1.113-1.5188 1.7422-1.8464 0.62788-0.32883 1.9457-0.72591 1.9457-0.72591s1.0485-0.46036 1.3947-0.52984c0.3462-0.0658 1.6032-0.3946 1.6032-0.3946s0.34744-0.19605 0.69365-0.32759c0.35116-0.13153 0.83634-0.13153 1.118-0.20101 0.27671-0.0658 0.97532-0.28913 1.391-0.31146 0.64649-0.0261 1.6727 0.11416 2.0238 0.11416 0.3462 0 1.53 0.0695 2.0152 0.0695 0.48518 0 2.2261-0.13526 2.7162-0.13526 0.48517 0 0.83634-0.0608 1.396 0 0.55466 0.0658 1.5287 0.39336 1.8104 0.52985 0.27796 0.13153 1.9506 0.7259 2.5748 0.9232 0.62788 0.19233 2.1616 0.45912 2.8602 0.78795 0.6924 0.33255 1.118 0.88846 1.4642 1.3513 0.35117 0.46036 0.41569 0.96291 0.55467 1.2955 0.13401 0.32882 0.13897 1.0374 0.005 1.3662-0.14022 0.32759-0.63284 1.0063-0.63284 1.0063l-0.76809 1.2508-0.97408 0.78795s-0.6986 0.6651-1.252 0.59561c-0.55962-0.0571-6.2018-1.0547-9.8239-1.0547-3.6233 0-9.4082 1.0547-9.4082 1.0547h0.005z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path557" fill="#c8b100" d="m162.6 206.7c0-1.7025 0.76189-3.0761 1.7-3.0761 0.93809 0 1.7 1.3736 1.7 3.0761 0 1.6938-0.76189 3.0724-1.7 3.0724-0.9381 0-1.7-1.3786-1.7-3.0724"/>
+   <path id="path558" d="m162.6 206.7c0-1.7025 0.76189-3.0761 1.7-3.0761 0.93809 0 1.7 1.3736 1.7 3.0761 0 1.6938-0.76189 3.0724-1.7 3.0724-0.9381 0-1.7-1.3786-1.7-3.0724z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path559" fill="#c8b100" d="m163.55 206.7c0-1.566 0.35116-2.8354 0.7805-2.8354 0.4343 0 0.7805 1.2694 0.7805 2.8354 0 1.5536-0.3462 2.823-0.7805 2.823-0.42934 0-0.7805-1.2694-0.7805-2.823"/>
+   <path id="path560" d="m163.55 206.7c0-1.566 0.35116-2.8354 0.7805-2.8354 0.4343 0 0.7805 1.2694 0.7805 2.8354 0 1.5536-0.3462 2.823-0.7805 2.823-0.42934 0-0.7805-1.2694-0.7805-2.823z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path561" fill="#c8b100" d="m163.18 203.45c0-0.59065 0.50875-1.0808 1.1379-1.0808 0.62788 0 1.1366 0.49014 1.1366 1.0808 0 0.59438-0.50875 1.0721-1.1366 1.0721-0.62912 0-1.1379-0.47773-1.1379-1.0721"/>
+   <path id="path562" fill="#c8b100" d="m165.12 203.07v0.71722h-1.7595v-0.71722h0.577v-1.6144h-0.76189v-0.7135h0.76189v-0.69984h0.74824v0.69984h0.75816v0.7135h-0.75816v1.6144h0.4343"/>
+   <path id="path563" d="m165.12 203.07v0.71722h-1.7595v-0.71722h0.577v-1.6144h-0.76189v-0.7135h0.76189v-0.69984h0.74824v0.69984h0.75816v0.7135h-0.75816v1.6144h0.4343" stroke="#000" stroke-width=".36873" fill="none"/>
+   <path id="path564" fill="#c8b100" d="m165.91 203.07v0.71722h-3.1245v-0.71722h1.1552v-1.6144h-0.76189v-0.7135h0.76189v-0.69984h0.74824v0.69984h0.75816v0.7135h-0.75816v1.6144h1.221"/>
+   <path id="path565" d="m165.91 203.07v0.71722h-3.1245v-0.71722h1.1552v-1.6144h-0.76189v-0.7135h0.76189v-0.69984h0.74824v0.69984h0.75816v0.7135h-0.75816v1.6144h1.221" stroke="#000" stroke-width=".36873" fill="none"/>
+   <path id="path566" d="m164.65 202.41c0.47153 0.13153 0.80904 0.54722 0.80904 1.0374 0 0.59438-0.50875 1.0721-1.1366 1.0721-0.62912 0-1.1379-0.47773-1.1379-1.0721 0-0.49882 0.35613-0.9232 0.84131-1.0423" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path567" fill="#c8b100" d="m164.33 214.58h-5.9239l-0.13773-1.453-0.27796-1.5138-0.29532-1.8898c-1.6317-2.1541-3.1332-3.5675-3.637-3.2647 0.12037-0.39832 0.26307-0.69613 0.57824-0.87977 1.4506-0.8624 4.4448 1.2074 6.6957 4.6073 0.20226 0.31146 0.39708 0.62168 0.56832 0.93313h4.8927c0.17621-0.30649 0.36978-0.61795 0.57328-0.93313 2.246-3.4 5.2439-5.4697 6.6907-4.6073 0.31394 0.18364 0.45788 0.48145 0.58196 0.87977-0.50751-0.29781-2.0052 1.1106-3.6456 3.2647l-0.2916 1.8898-0.27671 1.5138-0.13526 1.453h-5.9549"/>
+   <path id="path568" d="m164.33 214.58h-5.9239l-0.13773-1.453-0.27796-1.5138-0.29532-1.8898c-1.6317-2.1541-3.1332-3.5675-3.637-3.2647 0.12037-0.39832 0.26307-0.69613 0.57824-0.87977 1.4506-0.8624 4.4448 1.2074 6.6957 4.6073 0.20226 0.31146 0.39708 0.62168 0.56832 0.93313h4.8927c0.17621-0.30649 0.36978-0.61795 0.57328-0.93313 2.246-3.4 5.2439-5.4697 6.6907-4.6073 0.31394 0.18364 0.45788 0.48145 0.58196 0.87977-0.50751-0.29781-2.0052 1.1106-3.6456 3.2647l-0.2916 1.8898-0.27671 1.5138-0.13526 1.453h-5.9549-0.005z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path569" d="m154.31 206.4c1.1131-0.65642 3.7151 1.4046 5.8258 4.6073m14.233-4.6073c-1.118-0.65642-3.7151 1.4046-5.8271 4.6073" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path570" fill="#c8b100" d="m155.57 217.26c-0.24445-0.70481-0.71102-1.3352-0.71102-1.3352 2.3986-0.7048 5.739-1.1466 9.4541-1.1552 3.7102 0.009 7.0791 0.45044 9.4727 1.1552 0 0-0.26802 0.47277-0.6378 1.1292-0.20846 0.36357-0.48021 0.99765-0.46284 0.99765-2.1665-0.6651-4.9572-1.0063-8.3907-1.0101-3.4285 0.004-6.728 0.42437-8.4466 1.0535 0.0186 0-0.12036-0.39707-0.2916-0.8351h0.0136"/>
+   <path id="path571" d="m155.57 217.26c-0.24445-0.70481-0.71102-1.3352-0.71102-1.3352 2.3986-0.7048 5.739-1.1466 9.4541-1.1552 3.7102 0.009 7.0791 0.45044 9.4727 1.1552 0 0-0.26802 0.47277-0.6378 1.1292-0.20846 0.36357-0.48021 0.99765-0.46284 0.99765-2.1665-0.6651-4.9572-1.0063-8.3907-1.0101-3.4285 0.004-6.728 0.42437-8.4466 1.0535 0.0186 0-0.12036-0.39707-0.2916-0.8351h0.0136" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path572" fill="#c8b100" d="m164.32 220.31c2.9942-0.005 6.2974-0.45912 7.5134-0.7743 0.81773-0.237 1.293-0.6043 1.2061-1.0287-0.0422-0.20102-0.21715-0.37598-0.45291-0.47649-1.793-0.57328-5.0143-0.98028-8.2666-0.98525-3.2486 0.005-6.4922 0.41197-8.2803 0.98525-0.23576 0.10051-0.41197 0.27547-0.45292 0.47649-0.0881 0.42437 0.38839 0.79167 1.2012 1.0287 1.2198 0.31518 4.5378 0.76934 7.532 0.7743"/>
+   <path id="path573" d="m164.32 220.31c2.9942-0.005 6.2974-0.45912 7.5134-0.7743 0.81773-0.237 1.293-0.6043 1.2061-1.0287-0.0422-0.20102-0.21715-0.37598-0.45291-0.47649-1.793-0.57328-5.0143-0.98028-8.2666-0.98525-3.2486 0.005-6.4922 0.41197-8.2803 0.98525-0.23576 0.10051-0.41197 0.27547-0.45292 0.47649-0.0881 0.42437 0.38839 0.79167 1.2012 1.0287 1.2198 0.31518 4.5378 0.76934 7.532 0.7743z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path574" fill="#c8b100" d="m173.94 214.58-0.73459-0.66014s-0.69364 0.42809-1.5672 0.29656c-0.8686-0.13029-1.1503-1.185-1.1503-1.185s-0.97531 0.81773-1.7744 0.75693c-0.79911-0.0707-1.3215-0.75693-1.3215-0.75693s-0.8686 0.62043-1.6354 0.55963c-0.76685-0.0695-1.4977-1.0237-1.4977-1.0237s-0.76685 0.98896-1.5337 1.0584c-0.76685 0.062-1.396-0.6651-1.396-0.6651s-0.34621 0.72715-1.3215 0.88846c-0.97408 0.16627-1.8067-0.75693-1.8067-0.75693s-0.55838 0.89218-1.2198 1.1242c-0.66014 0.23204-1.5337-0.33255-1.5337-0.33255s-0.13897 0.33255-0.24073 0.52985c-0.10547 0.1973-0.38342 0.23204-0.38342 0.23204l0.21715 0.59065c2.3887-0.69116 5.6236-1.1205 9.2829-1.1242 3.6643 0.004 6.9873 0.43306 9.3809 1.1292l0.24445-0.66137"/>
+   <path id="path575" d="m173.94 214.58-0.73459-0.66014s-0.69364 0.42809-1.5672 0.29656c-0.8686-0.13029-1.1503-1.185-1.1503-1.185s-0.97531 0.81773-1.7744 0.75693c-0.79911-0.0707-1.3215-0.75693-1.3215-0.75693s-0.8686 0.62043-1.6354 0.55963c-0.76685-0.0695-1.4977-1.0237-1.4977-1.0237s-0.76685 0.98896-1.5337 1.0584c-0.76685 0.062-1.396-0.6651-1.396-0.6651s-0.34621 0.72715-1.3215 0.88846c-0.97408 0.16627-1.8067-0.75693-1.8067-0.75693s-0.55838 0.89218-1.2198 1.1242c-0.66014 0.23204-1.5337-0.33255-1.5337-0.33255s-0.13897 0.33255-0.24073 0.52985c-0.10547 0.1973-0.38342 0.23204-0.38342 0.23204l0.21715 0.59065c2.3887-0.69116 5.6236-1.1205 9.2829-1.1242 3.6643 0.004 6.9873 0.43306 9.3809 1.1292l0.24445-0.66137h-0.009z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path576" fill="#c8b100" d="m164.34 211.39 0.3462 0.062c-0.0558 0.14394-0.0695 0.29657-0.0695 0.45912 0 0.71722 0.61423 1.2992 1.3774 1.2992 0.60926 0 1.123-0.37598 1.3029-0.89714 0.0236 0.0136 0.13402-0.47277 0.18986-0.46408 0.0409 0 0.036 0.50379 0.0596 0.4951 0.0831 0.65146 0.68371 1.0982 1.3587 1.0982 0.75817 0 1.3662-0.58197 1.3662-1.2992 0-0.0533 0-0.10547-0.007-0.15759l0.42934-0.42933 0.23577 0.54722c-0.0968 0.16627-0.12905 0.3586-0.12905 0.56459 0 0.68743 0.58692 1.2433 1.3066 1.2433 0.45788 0 0.85496-0.22335 1.0907-0.55591l0.27795-0.34992-0.005 0.43306c0 0.4281 0.18489 0.81401 0.60554 0.8835 0 0 0.47525 0.0347 1.123-0.47277 0.6378-0.50255 0.98897-0.9232 0.98897-0.9232l0.0397 0.5162s-0.62663 1.0324-1.1999 1.3612c-0.31021 0.18365-0.79167 0.37598-1.1689 0.31022-0.39708-0.0608-0.68372-0.38467-0.83262-0.75197-0.28167 0.17-0.61795 0.26679-0.97904 0.26679-0.77678 0-1.4741-0.42934-1.7508-1.0634-0.35613 0.38467-0.84999 0.61671-1.4332 0.61671-0.61919 0-1.1875-0.27547-1.5424-0.70853-0.35116 0.32386-0.82765 0.52116-1.3501 0.52116-0.68371 0-1.2979-0.34248-1.6441-0.84503-0.34744 0.50255-0.9567 0.84503-1.6404 0.84503-0.5224 0-0.99889-0.1973-1.35-0.52116-0.35489 0.43306-0.92445 0.70853-1.5436 0.70853-0.58196 0-1.0758-0.23204-1.432-0.61671-0.27671 0.63036-0.97532 1.0634-1.7509 1.0634-0.36109 0-0.6986-0.0968-0.98028-0.26679-0.14766 0.3673-0.4343 0.69116-0.83137 0.75197-0.37847 0.0658-0.85496-0.12657-1.1689-0.31022-0.57327-0.32883-1.2483-1.3612-1.2483-1.3612l0.0881-0.5162s0.35613 0.42065 0.98897 0.9232c0.64276 0.50751 1.123 0.47277 1.123 0.47277 0.42065-0.0695 0.60554-0.4554 0.60554-0.8835l-0.005-0.43306 0.27671 0.34992c0.23577 0.33256 0.63408 0.55591 1.0907 0.55591 0.72094 0 1.3079-0.55591 1.3079-1.2433 0-0.20599-0.0323-0.39832-0.12409-0.56459l0.2308-0.54722 0.42934 0.42933c-0.009 0.0521-0.0136 0.10424-0.0136 0.15759 0 0.71722 0.61051 1.2992 1.3724 1.2992 0.67502 0 1.2706-0.44671 1.3587-1.0982 0.0186 0.009 0.0136-0.4951 0.0596-0.4951 0.0558-0.009 0.17124 0.47773 0.18985 0.46408 0.17993 0.52116 0.69737 0.89714 1.3079 0.89714 0.75693 0 1.3724-0.58196 1.3724-1.2992 0-0.16255-0.01-0.31518-0.0695-0.45912l0.35985-0.062"/>
+   <path id="path577" d="m164.34 211.39 0.3462 0.062c-0.0558 0.14394-0.0695 0.29657-0.0695 0.45912 0 0.71722 0.61423 1.2992 1.3774 1.2992 0.60926 0 1.123-0.37598 1.3029-0.89714 0.0236 0.0136 0.13402-0.47277 0.18986-0.46408 0.0409 0 0.036 0.50379 0.0596 0.4951 0.0831 0.65146 0.68371 1.0982 1.3587 1.0982 0.75817 0 1.3662-0.58197 1.3662-1.2992 0-0.0533 0-0.10547-0.007-0.15759l0.42934-0.42933 0.23577 0.54722c-0.0968 0.16627-0.12905 0.3586-0.12905 0.56459 0 0.68743 0.58692 1.2433 1.3066 1.2433 0.45788 0 0.85496-0.22335 1.0907-0.55591l0.27795-0.34992-0.005 0.43306c0 0.4281 0.18489 0.81401 0.60554 0.8835 0 0 0.47525 0.0347 1.123-0.47277 0.6378-0.50255 0.98897-0.9232 0.98897-0.9232l0.0397 0.5162s-0.62663 1.0324-1.1999 1.3612c-0.31021 0.18365-0.79167 0.37598-1.1689 0.31022-0.39708-0.0608-0.68372-0.38467-0.83262-0.75197-0.28167 0.17-0.61795 0.26679-0.97904 0.26679-0.77678 0-1.4741-0.42934-1.7508-1.0634-0.35613 0.38467-0.84999 0.61671-1.4332 0.61671-0.61919 0-1.1875-0.27547-1.5424-0.70853-0.35116 0.32386-0.82765 0.52116-1.3501 0.52116-0.68371 0-1.2979-0.34248-1.6441-0.84503-0.34744 0.50255-0.9567 0.84503-1.6404 0.84503-0.5224 0-0.99889-0.1973-1.35-0.52116-0.35489 0.43306-0.92445 0.70853-1.5436 0.70853-0.58196 0-1.0758-0.23204-1.432-0.61671-0.27671 0.63036-0.97532 1.0634-1.7509 1.0634-0.36109 0-0.6986-0.0968-0.98028-0.26679-0.14766 0.3673-0.4343 0.69116-0.83137 0.75197-0.37847 0.0658-0.85496-0.12657-1.1689-0.31022-0.57327-0.32883-1.2483-1.3612-1.2483-1.3612l0.0881-0.5162s0.35613 0.42065 0.98897 0.9232c0.64276 0.50751 1.123 0.47277 1.123 0.47277 0.42065-0.0695 0.60554-0.4554 0.60554-0.8835l-0.005-0.43306 0.27671 0.34992c0.23577 0.33256 0.63408 0.55591 1.0907 0.55591 0.72094 0 1.3079-0.55591 1.3079-1.2433 0-0.20599-0.0323-0.39832-0.12409-0.56459l0.2308-0.54722 0.42934 0.42933c-0.009 0.0521-0.0136 0.10424-0.0136 0.15759 0 0.71722 0.61051 1.2992 1.3724 1.2992 0.67502 0 1.2706-0.44671 1.3587-1.0982 0.0186 0.009 0.0136-0.4951 0.0596-0.4951 0.0558-0.009 0.17124 0.47773 0.18985 0.46408 0.17993 0.52116 0.69737 0.89714 1.3079 0.89714 0.75693 0 1.3724-0.58196 1.3724-1.2992 0-0.16255-0.01-0.31518-0.0695-0.45912l0.35985-0.062h0.01z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path578" fill="#c8b100" d="m164.32 214.77c-3.7151 0.004-7.0555 0.44547-9.4492 1.1552-0.16256 0.0521-0.36109-0.0707-0.41197-0.21467-0.0509-0.15263 0.0645-0.34124 0.22212-0.39335 2.4073-0.73583 5.8308-1.1999 9.639-1.2036 3.8032 0.004 7.2404 0.46781 9.6477 1.2036 0.15759 0.0521 0.27299 0.24072 0.22211 0.39335-0.0459 0.14394-0.24941 0.26678-0.407 0.21467-2.3974-0.70977-5.7526-1.1515-9.4628-1.1552"/>
+   <path id="path579" stroke-linejoin="round" d="m164.32 214.77c-3.7151 0.004-7.0555 0.44547-9.4492 1.1552-0.16256 0.0521-0.36109-0.0707-0.41197-0.21467-0.0509-0.15263 0.0645-0.34124 0.22212-0.39335 2.4073-0.73583 5.8308-1.1999 9.639-1.2036 3.8032 0.004 7.2404 0.46781 9.6477 1.2036 0.15759 0.0521 0.27299 0.24072 0.22211 0.39335-0.0459 0.14394-0.24941 0.26678-0.407 0.21467-2.3974-0.70977-5.7526-1.1515-9.4628-1.1552z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path580" fill="#fff" d="m160.72 216.09c0-0.27919 0.23949-0.50751 0.53978-0.50751 0.29656 0 0.53605 0.22832 0.53605 0.50751 0 0.28416-0.23949 0.50751-0.53605 0.50751-0.30029 0-0.53978-0.22335-0.53978-0.50751"/>
+   <path id="path581" d="m160.72 216.09c0-0.27919 0.23949-0.50751 0.53978-0.50751 0.29656 0 0.53605 0.22832 0.53605 0.50751 0 0.28416-0.23949 0.50751-0.53605 0.50751-0.30029 0-0.53978-0.22335-0.53978-0.50751z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path582" fill="#c00" d="m164.36 216.31h-1.1912c-0.22211 0-0.407-0.17496-0.407-0.38591 0-0.20598 0.17992-0.37598 0.39707-0.37598h2.4209c0.22212 0 0.39832 0.17 0.39832 0.37598 0 0.21095-0.18117 0.38591-0.40204 0.38591h-1.216"/>
+   <path id="path583" d="m164.36 216.31h-1.1912c-0.22211 0-0.407-0.17496-0.407-0.38591 0-0.20598 0.17992-0.37598 0.39707-0.37598h2.4209c0.22212 0 0.39832 0.17 0.39832 0.37598 0 0.21095-0.18117 0.38591-0.40204 0.38591h-1.216" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path584" fill="#05906f" d="m158.37 216.72-0.85495 0.12657c-0.21715 0.031-0.42934-0.1092-0.4616-0.31891-0.0323-0.20598 0.1154-0.39831 0.33255-0.42933l0.85868-0.12657 0.87853-0.13526c0.21715-0.026 0.42065 0.1092 0.45787 0.31518 0.0273 0.20475-0.12036 0.40204-0.33751 0.43306l-0.87357 0.13526"/>
+   <path id="path585" d="m158.37 216.72-0.85495 0.12657c-0.21715 0.031-0.42934-0.1092-0.4616-0.31891-0.0323-0.20598 0.1154-0.39831 0.33255-0.42933l0.85868-0.12657 0.87853-0.13526c0.21715-0.026 0.42065 0.1092 0.45787 0.31518 0.0273 0.20475-0.12036 0.40204-0.33751 0.43306l-0.87357 0.13526" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path586" fill="#c00" d="m154.92 217.32 0.3797-0.61174 0.8078 0.15263-0.47153 0.68743-0.71597-0.22832"/>
+   <path id="path587" d="m154.92 217.32 0.3797-0.61174 0.8078 0.15263-0.47153 0.68743-0.71597-0.22832" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path588" fill="#fff" d="m166.84 216.09c0-0.27919 0.24073-0.50751 0.54102-0.50751 0.29532 0 0.53605 0.22832 0.53605 0.50751 0 0.28416-0.24073 0.50751-0.53605 0.50751-0.30029 0-0.54102-0.22335-0.54102-0.50751"/>
+   <path id="path589" d="m166.84 216.09c0-0.27919 0.24073-0.50751 0.54102-0.50751 0.29532 0 0.53605 0.22832 0.53605 0.50751 0 0.28416-0.24073 0.50751-0.53605 0.50751-0.30029 0-0.54102-0.22335-0.54102-0.50751z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path590" fill="#05906f" d="m170.26 216.72 0.85991 0.12657c0.21715 0.031 0.42066-0.1092 0.45788-0.31891 0.0323-0.20598-0.11168-0.39831-0.32883-0.42933l-0.86364-0.12657-0.87356-0.13526c-0.22212-0.026-0.42438 0.1092-0.45788 0.31518-0.036 0.20475 0.11664 0.40204 0.33751 0.43306l0.86861 0.13526"/>
+   <path id="path591" d="m170.26 216.72 0.85991 0.12657c0.21715 0.031 0.42066-0.1092 0.45788-0.31891 0.0323-0.20598-0.11168-0.39831-0.32883-0.42933l-0.86364-0.12657-0.87356-0.13526c-0.22212-0.026-0.42438 0.1092-0.45788 0.31518-0.036 0.20475 0.11664 0.40204 0.33751 0.43306l0.86861 0.13526" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path592" fill="#c00" d="m173.65 217.35-0.30525-0.65145-0.83137 0.0695 0.39707 0.73087 0.73955-0.1489"/>
+   <path id="path593" d="m173.65 217.35-0.30525-0.65145-0.83137 0.0695 0.39707 0.73087 0.73955-0.1489" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path594" fill="#c00" d="m164.31 219.61c-2.9979-0.004-5.7104-0.26679-7.7715-0.80036 2.0611-0.52985 4.7736-0.85743 7.7715-0.86612 2.9992 0.004 5.7253 0.33255 7.7914 0.86612-2.066 0.53357-4.7922 0.79663-7.7914 0.80036"/>
+   <path id="path602" stroke-linejoin="round" d="m164.31 219.61c-2.9979-0.004-5.7104-0.26679-7.7715-0.80036 2.0611-0.52985 4.7736-0.85743 7.7715-0.86612 2.9992 0.004 5.7253 0.33255 7.7914 0.86612-2.066 0.53357-4.7922 0.79663-7.7914 0.80036z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path603" fill="#c8b100" d="m173.77 213.11c0.0782-0.23204 0.005-0.46036-0.16131-0.51744-0.16628-0.0471-0.36978 0.10175-0.44795 0.32387-0.0794 0.237-0.01 0.46904 0.16131 0.52116 0.16627 0.0484 0.36481-0.0956 0.44795-0.32759"/>
+   <path id="path604" d="m173.77 213.11c0.0782-0.23204 0.005-0.46036-0.16131-0.51744-0.16628-0.0471-0.36978 0.10175-0.44795 0.32387-0.0794 0.237-0.01 0.46904 0.16131 0.52116 0.16627 0.0484 0.36481-0.0956 0.44795-0.32759z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path605" fill="#c8b100" d="m167.8 211.95c0.0273-0.24073-0.0881-0.4554-0.26306-0.47773-0.1762-0.0211-0.34248 0.16255-0.36978 0.40328-0.0323 0.24073 0.0831 0.45415 0.2581 0.47649 0.17621 0.0174 0.34248-0.16628 0.37474-0.40204"/>
+   <path id="path606" d="m167.8 211.95c0.0273-0.24073-0.0881-0.4554-0.26306-0.47773-0.1762-0.0211-0.34248 0.16255-0.36978 0.40328-0.0323 0.24073 0.0831 0.45415 0.2581 0.47649 0.17621 0.0174 0.34248-0.16628 0.37474-0.40204z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path607" fill="#c8b100" d="m160.86 211.95c-0.0273-0.24073 0.0881-0.4554 0.2643-0.47773 0.17496-0.0211 0.34124 0.16255 0.3735 0.40328 0.0285 0.24073-0.0869 0.45415-0.26306 0.47649-0.17124 0.0174-0.34248-0.16628-0.37474-0.40204"/>
+   <path id="path608" d="m160.86 211.95c-0.0273-0.24073 0.0881-0.4554 0.2643-0.47773 0.17496-0.0211 0.34124 0.16255 0.3735 0.40328 0.0285 0.24073-0.0869 0.45415-0.26306 0.47649-0.17124 0.0174-0.34248-0.16628-0.37474-0.40204z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path609" fill="#c8b100" d="m154.89 213.11c-0.0782-0.23204-0.005-0.46036 0.16256-0.51744 0.16627-0.0471 0.36853 0.10175 0.44795 0.32387 0.0782 0.237 0.009 0.46904-0.16256 0.52116-0.16627 0.0484-0.36481-0.0956-0.44795-0.32759"/>
+   <path id="path610" d="m154.89 213.11c-0.0782-0.23204-0.005-0.46036 0.16256-0.51744 0.16627-0.0471 0.36853 0.10175 0.44795 0.32387 0.0782 0.237 0.009 0.46904-0.16256 0.52116-0.16627 0.0484-0.36481-0.0956-0.44795-0.32759z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path611" fill="#c8b100" d="m164.31 208.51-1.0572 0.6378 0.78546 1.7025 0.27175 0.17993 0.26803-0.17993 0.79043-1.7025-1.0585-0.6378"/>
+   <path id="path612" d="m164.31 208.51-1.0572 0.6378 0.78546 1.7025 0.27175 0.17993 0.26803-0.17993 0.79043-1.7025-1.0585-0.6378" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path613" fill="#c8b100" d="m161.99 211.08 0.48022 0.70109 1.6541-0.50875 0.17124-0.23081-0.17621-0.237-1.6491-0.48145-0.48022 0.75692"/>
+   <path id="path614" d="m161.99 211.08 0.48022 0.70109 1.6541-0.50875 0.17124-0.23081-0.17621-0.237-1.6491-0.48145-0.48022 0.75692" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path615" fill="#c8b100" d="m166.64 211.08-0.48022 0.70109-1.6541-0.50875-0.17621-0.23081 0.17993-0.237 1.6503-0.48145 0.48022 0.75692"/>
+   <path id="path616" d="m166.64 211.08-0.48022 0.70109-1.6541-0.50875-0.17621-0.23081 0.17993-0.237 1.6503-0.48145 0.48022 0.75692" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path617" fill="#c8b100" d="m157.43 209.26-0.83138 0.78298 1.0622 1.4009 0.28291 0.11292 0.20723-0.21467 0.36977-1.6925-1.0907-0.38963"/>
+   <path id="path618" d="m157.43 209.26-0.83138 0.78298 1.0622 1.4009 0.28291 0.11292 0.20723-0.21467 0.36977-1.6925-1.0907-0.38963" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path619" fill="#c8b100" d="m155.69 212.07 0.62415 0.58569 1.5064-0.81401 0.1154-0.26182-0.21715-0.1973-1.7236-0.1489-0.30525 0.83634"/>
+   <path id="path620" d="m155.69 212.07 0.62415 0.58569 1.5064-0.81401 0.1154-0.26182-0.21715-0.1973-1.7236-0.1489-0.30525 0.83634" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path621" fill="#c8b100" d="m160.24 211.16-0.31891 0.77429-1.7285-0.15759-0.22211-0.19729 0.12036-0.26679 1.5114-0.79663 0.63781 0.64401"/>
+   <path id="path622" d="m160.24 211.16-0.31891 0.77429-1.7285-0.15759-0.22211-0.19729 0.12036-0.26679 1.5114-0.79663 0.63781 0.64401" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path623" fill="#c8b100" d="m154.03 212.29-0.13897 0.81897-1.7236 0.17869-0.2581-0.14891 0.0546-0.27919 1.2992-1.0771 0.76685 0.50751"/>
+   <path id="path624" d="m154.03 212.29-0.13897 0.81897-1.7236 0.17869-0.2581-0.14891 0.0546-0.27919 1.2992-1.0771 0.76685 0.50751" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path625" fill="#c8b100" d="m157.35 211.59c0-0.3189 0.27299-0.577 0.60554-0.577s0.60554 0.2581 0.60554 0.577c0 0.31518-0.27299 0.57328-0.60554 0.57328s-0.60554-0.2581-0.60554-0.57328"/>
+   <path id="path626" d="m157.35 211.59c0-0.3189 0.27299-0.577 0.60554-0.577s0.60554 0.2581 0.60554 0.577c0 0.31518-0.27299 0.57328-0.60554 0.57328s-0.60554-0.2581-0.60554-0.57328z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path627" fill="#c8b100" d="m171.22 209.26 0.83138 0.78298-1.0634 1.4009-0.28664 0.11292-0.20226-0.21467-0.37474-1.6925 1.0957-0.38963"/>
+   <path id="path628" d="m171.22 209.26 0.83138 0.78298-1.0634 1.4009-0.28664 0.11292-0.20226-0.21467-0.37474-1.6925 1.0957-0.38963" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path629" fill="#c8b100" d="m172.95 212.07-0.62415 0.58569-1.5064-0.81401-0.12036-0.26182 0.22708-0.1973 1.7236-0.1489 0.30028 0.83634"/>
+   <path id="path630" d="m172.95 212.07-0.62415 0.58569-1.5064-0.81401-0.12036-0.26182 0.22708-0.1973 1.7236-0.1489 0.30028 0.83634" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path631" fill="#c8b100" d="m168.41 211.16 0.3189 0.77429 1.7186-0.15759 0.22708-0.19729-0.12532-0.26679-1.5064-0.79663-0.63284 0.64401"/>
+   <path id="path632" d="m168.41 211.16 0.3189 0.77429 1.7186-0.15759 0.22708-0.19729-0.12532-0.26679-1.5064-0.79663-0.63284 0.64401" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path633" fill="#c8b100" d="m174.38 212.29 0.14394 0.81897 1.7236 0.17869 0.2581-0.14891-0.0596-0.27919-1.2979-1.0771-0.7681 0.50751"/>
+   <path id="path634" d="m174.38 212.29 0.14394 0.81897 1.7236 0.17869 0.2581-0.14891-0.0596-0.27919-1.2979-1.0771-0.7681 0.50751" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path635" fill="#c8b100" d="m163.71 211.04c0-0.32387 0.27299-0.577 0.60554-0.577 0.33751 0 0.60554 0.25313 0.60554 0.577 0 0.31518-0.26803 0.57328-0.60554 0.57328-0.33255 0-0.60554-0.2581-0.60554-0.57328"/>
+   <path id="path636" d="m163.71 211.04c0-0.32387 0.27299-0.577 0.60554-0.577 0.33751 0 0.60554 0.25313 0.60554 0.577 0 0.31518-0.26803 0.57328-0.60554 0.57328-0.33255 0-0.60554-0.2581-0.60554-0.57328z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path637" fill="#c8b100" d="m170.09 211.59c0-0.3189 0.27175-0.577 0.6043-0.577 0.33751 0 0.60554 0.2581 0.60554 0.577 0 0.31518-0.26803 0.57328-0.60554 0.57328-0.33255 0-0.6043-0.2581-0.6043-0.57328"/>
+   <path id="path638" d="m170.09 211.59c0-0.3189 0.27175-0.577 0.6043-0.577 0.33751 0 0.60554 0.2581 0.60554 0.577 0 0.31518-0.26803 0.57328-0.60554 0.57328-0.33255 0-0.6043-0.2581-0.6043-0.57328z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path639" fill="#c8b100" d="m151.7 213.25c-0.0186 0.0137-0.46657-0.59437-0.80905-0.90087-0.24444-0.21467-0.83137-0.39831-0.83137-0.39831 0-0.1092 0.34248-0.35489 0.71597-0.35489 0.22212 0 0.43058 0.0918 0.54971 0.24569l0.0509-0.237s0.30029 0.0571 0.43927 0.39459c0.13897 0.34992 0.0509 0.87977 0.0509 0.87977s-0.0558 0.24445-0.16627 0.37102"/>
+   <path id="path640" d="m151.7 213.25c-0.0186 0.0137-0.46657-0.59437-0.80905-0.90087-0.24444-0.21467-0.83137-0.39831-0.83137-0.39831 0-0.1092 0.34248-0.35489 0.71597-0.35489 0.22212 0 0.43058 0.0918 0.54971 0.24569l0.0509-0.237s0.30029 0.0571 0.43927 0.39459c0.13897 0.34992 0.0509 0.87977 0.0509 0.87977s-0.0558 0.24445-0.16627 0.37102z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path641" fill="#c8b100" d="m151.72 212.95c0.1427-0.1489 0.43803-0.11788 0.65518 0.0707 0.22211 0.18737 0.28664 0.46284 0.14394 0.61671-0.14394 0.15262-0.43927 0.11788-0.65642-0.0707-0.22211-0.18737-0.28664-0.46781-0.1427-0.61671"/>
+   <path id="path642" d="m151.72 212.95c0.1427-0.1489 0.43803-0.11788 0.65518 0.0707 0.22211 0.18737 0.28664 0.46284 0.14394 0.61671-0.14394 0.15262-0.43927 0.11788-0.65642-0.0707-0.22211-0.18737-0.28664-0.46781-0.1427-0.61671z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path643" fill="#c8b100" d="m176.71 213.25c0.0136 0.0137 0.46656-0.59437 0.80904-0.90087 0.23452-0.21467 0.83137-0.39831 0.83137-0.39831 0-0.1092-0.3462-0.35489-0.72094-0.35489-0.21715 0-0.42561 0.0918-0.5497 0.24569l-0.0509-0.237s-0.30029 0.0571-0.43927 0.39459c-0.13401 0.34992-0.0459 0.87977-0.0459 0.87977s0.0509 0.24445 0.16628 0.37102"/>
+   <path id="path644" d="m176.71 213.25c0.0136 0.0137 0.46656-0.59437 0.80904-0.90087 0.23452-0.21467 0.83137-0.39831 0.83137-0.39831 0-0.1092-0.3462-0.35489-0.72094-0.35489-0.21715 0-0.42561 0.0918-0.5497 0.24569l-0.0509-0.237s-0.30029 0.0571-0.43927 0.39459c-0.13401 0.34992-0.0459 0.87977-0.0459 0.87977s0.0509 0.24445 0.16628 0.37102z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path645" fill="#c8b100" d="m176.73 212.95c-0.14269-0.1489-0.43926-0.11788-0.66013 0.0707-0.22212 0.18737-0.28664 0.46284-0.14394 0.61671 0.14394 0.15262 0.43926 0.11788 0.66138-0.0707 0.22087-0.18737 0.28167-0.46781 0.14269-0.61671"/>
+   <path id="path646" d="m176.73 212.95c-0.14269-0.1489-0.43926-0.11788-0.66013 0.0707-0.22212 0.18737-0.28664 0.46284-0.14394 0.61671 0.14394 0.15262 0.43926 0.11788 0.66138-0.0707 0.22087-0.18737 0.28167-0.46781 0.14269-0.61671z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path647" fill="#c8b100" d="m150.65 227.26h27.465v-7.1995h-27.465v7.1995z"/>
+   <path id="path648" d="m150.65 227.26h27.465v-7.1995h-27.465v7.1995z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path649" fill="#c8b100" d="m153.53 232.05c0.17124-0.0695 0.29657-0.0782 0.50875-0.0782h20.567c0.2035 0 0.39708 0.0347 0.55839 0.10051-0.70233-0.23576-1.2098-0.87481-1.2098-1.628 0-0.75196 0.5497-1.4047 1.2607-1.6491-0.16132 0.0521-0.40204 0.10051-0.59562 0.10051h-20.581c-0.20846 0-0.407-0.009-0.577-0.0658l0.11044 0.0174c0.73459 0.22708 1.1552 0.87977 1.1552 1.597 0 0.69116-0.46656 1.3836-1.1974 1.6057"/>
+   <path id="path650" stroke-linejoin="round" d="m153.53 232.05c0.17124-0.0695 0.29657-0.0782 0.50875-0.0782h20.567c0.2035 0 0.39708 0.0347 0.55839 0.10051-0.70233-0.23576-1.2098-0.87481-1.2098-1.628 0-0.75196 0.5497-1.4047 1.2607-1.6491-0.16132 0.0521-0.40204 0.10051-0.59562 0.10051h-20.581c-0.20846 0-0.407-0.009-0.577-0.0658l0.11044 0.0174c0.73459 0.22708 1.1552 0.87977 1.1552 1.597 0 0.69116-0.46656 1.3836-1.1974 1.6057z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path651" fill="#c8b100" d="m154.04 231.97h20.567c0.69737 0 1.2607 0.43306 1.2607 0.96291 0 0.53357-0.56335 0.96663-1.2607 0.96663h-20.567c-0.69736 0-1.262-0.43306-1.262-0.96663 0-0.52985 0.56459-0.96291 1.262-0.96291"/>
+   <path id="path652" d="m154.04 231.97h20.567c0.69737 0 1.2607 0.43306 1.2607 0.96291 0 0.53357-0.56335 0.96663-1.2607 0.96663h-20.567c-0.69736 0-1.262-0.43306-1.262-0.96663 0-0.52985 0.56459-0.96291 1.262-0.96291z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path653" fill="#c8b100" d="m154.04 227.26h20.581c0.69364 0 1.262 0.36729 1.262 0.814 0 0.45416-0.56832 0.82269-1.262 0.82269h-20.581c-0.69736 0-1.262-0.36853-1.262-0.82269 0-0.44671 0.56459-0.814 1.262-0.814"/>
+   <path id="path654" d="m154.04 227.26h20.581c0.69364 0 1.262 0.36729 1.262 0.814 0 0.45416-0.56832 0.82269-1.262 0.82269h-20.581c-0.69736 0-1.262-0.36853-1.262-0.82269 0-0.44671 0.56459-0.814 1.262-0.814z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path655" fill="#0076bc" d="m183.55 348.41c-1.8985 0-3.5898-0.39832-4.8381-1.0634-1.2384-0.63036-2.9148-1.015-4.7637-1.015-1.8576 0-3.5762 0.38963-4.8146 1.0237-1.2433 0.65269-2.9619 1.0547-4.8381 1.0547-1.8998 0-3.5898-0.44175-4.8381-1.1068-1.2285-0.6043-2.8738-0.97159-4.6756-0.97159-1.8625 0-3.5166 0.35488-4.755 0.99765-1.2483 0.66138-2.9756 1.0808-4.8704 1.0808v2.9756c1.8948 0 3.6221-0.43306 4.8704-1.0895 1.2384-0.63905 2.8924-1.0014 4.755-1.0014 1.7968 0 3.4422 0.37102 4.6756 0.98028 1.2433 0.66014 2.9384 1.1106 4.8381 1.1106 1.8762 0 3.5948-0.41072 4.8381-1.0584 1.2384-0.64277 2.957-1.0324 4.8146-1.0324 1.8489 0 3.5253 0.38963 4.7637 1.0237 1.2483 0.66511 2.9111 1.0671 4.8158 1.0671l0.0223-2.9756"/>
+   <path id="path656" d="m183.55 348.41c-1.8985 0-3.5898-0.39832-4.8381-1.0634-1.2384-0.63036-2.9148-1.015-4.7637-1.015-1.8576 0-3.5762 0.38963-4.8146 1.0237-1.2433 0.65269-2.9619 1.0547-4.8381 1.0547-1.8998 0-3.5898-0.44175-4.8381-1.1068-1.2285-0.6043-2.8738-0.97159-4.6756-0.97159-1.8625 0-3.5166 0.35488-4.755 0.99765-1.2483 0.66138-2.9756 1.0808-4.8704 1.0808v2.9756c1.8948 0 3.6221-0.43306 4.8704-1.0895 1.2384-0.63905 2.8924-1.0014 4.755-1.0014 1.7968 0 3.4422 0.37102 4.6756 0.98028 1.2433 0.66014 2.9384 1.1106 4.8381 1.1106 1.8762 0 3.5948-0.41072 4.8381-1.0584 1.2384-0.64277 2.957-1.0324 4.8146-1.0324 1.8489 0 3.5253 0.38963 4.7637 1.0237 1.2483 0.66511 2.9111 1.0671 4.8158 1.0671l0.0223-2.9756z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path657" fill="#ccc" d="m183.55 351.39c-1.8985 0-3.5898-0.40203-4.8381-1.0671-1.2384-0.63408-2.9148-1.0237-4.7637-1.0237-1.8576 0-3.5762 0.38963-4.8146 1.0324-1.2433 0.64773-2.9619 1.0584-4.8381 1.0584-1.8998 0-3.5898-0.45043-4.8381-1.1106-1.2285-0.60926-2.8738-0.98028-4.6756-0.98028-1.8625 0-3.5166 0.36233-4.755 1.0014-1.2483 0.65641-2.9756 1.0895-4.8704 1.0895v2.9669c1.8948 0 3.6221-0.42437 4.8704-1.0808 1.2384-0.64773 2.8924-1.0063 4.755-1.0063 1.7968 0 3.4422 0.37225 4.6756 0.98028 1.2433 0.66138 2.9384 1.1068 4.8381 1.1068 1.8762 0 3.5948-0.41072 4.8381-1.0584 1.2384-0.63904 2.957-1.0287 4.8146-1.0287 1.8489 0 3.5253 0.38963 4.7637 1.0237 1.2483 0.66138 2.9111 1.0634 4.8158 1.0634l0.0223-2.9669"/>
+   <path id="path658" d="m183.55 351.39c-1.8985 0-3.5898-0.40203-4.8381-1.0671-1.2384-0.63408-2.9148-1.0237-4.7637-1.0237-1.8576 0-3.5762 0.38963-4.8146 1.0324-1.2433 0.64773-2.9619 1.0584-4.8381 1.0584-1.8998 0-3.5898-0.45043-4.8381-1.1106-1.2285-0.60926-2.8738-0.98028-4.6756-0.98028-1.8625 0-3.5166 0.36233-4.755 1.0014-1.2483 0.65641-2.9756 1.0895-4.8704 1.0895v2.9669c1.8948 0 3.6221-0.42437 4.8704-1.0808 1.2384-0.64773 2.8924-1.0063 4.755-1.0063 1.7968 0 3.4422 0.37225 4.6756 0.98028 1.2433 0.66138 2.9384 1.1068 4.8381 1.1068 1.8762 0 3.5948-0.41072 4.8381-1.0584 1.2384-0.63904 2.957-1.0287 4.8146-1.0287 1.8489 0 3.5253 0.38963 4.7637 1.0237 1.2483 0.66138 2.9111 1.0634 4.8158 1.0634l0.0223-2.9669" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path659" fill="#0076bc" d="m183.55 354.35c-1.8985 0-3.5898-0.40203-4.8381-1.0634-1.2384-0.63408-2.9148-1.0237-4.7637-1.0237-1.8576 0-3.5762 0.38963-4.8146 1.0287-1.2433 0.64773-2.9619 1.0584-4.8381 1.0584-1.8998 0-3.5898-0.44546-4.8381-1.1068-1.2285-0.60803-2.8738-0.98028-4.6756-0.98028-1.8625 0-3.5166 0.3586-4.755 1.0063-1.2483 0.65642-2.9756 1.0808-4.8704 1.0808v2.9669c1.8948 0 3.6221-0.42437 4.8704-1.0845 1.2384-0.63904 2.8924-0.99765 4.755-0.99765 1.7968 0 3.4422 0.37226 4.6756 0.97532 1.2433 0.6651 2.9384 1.1068 4.8381 1.1068 1.8762 0 3.5948-0.40576 4.8381-1.0535 1.2384-0.63904 2.957-1.0287 4.8146-1.0287 1.8489 0 3.5253 0.38467 4.7637 1.02 1.2483 0.66882 2.9111 1.0622 4.8158 1.0622l0.0223-2.9669"/>
+   <path id="path660" d="m183.55 354.35c-1.8985 0-3.5898-0.40203-4.8381-1.0634-1.2384-0.63408-2.9148-1.0237-4.7637-1.0237-1.8576 0-3.5762 0.38963-4.8146 1.0287-1.2433 0.64773-2.9619 1.0584-4.8381 1.0584-1.8998 0-3.5898-0.44546-4.8381-1.1068-1.2285-0.60803-2.8738-0.98028-4.6756-0.98028-1.8625 0-3.5166 0.3586-4.755 1.0063-1.2483 0.65642-2.9756 1.0808-4.8704 1.0808v2.9669c1.8948 0 3.6221-0.42437 4.8704-1.0845 1.2384-0.63904 2.8924-0.99765 4.755-0.99765 1.7968 0 3.4422 0.37226 4.6756 0.97532 1.2433 0.6651 2.9384 1.1068 4.8381 1.1068 1.8762 0 3.5948-0.40576 4.8381-1.0535 1.2384-0.63904 2.957-1.0287 4.8146-1.0287 1.8489 0 3.5253 0.38467 4.7637 1.02 1.2483 0.66882 2.9111 1.0622 4.8158 1.0622l0.0223-2.9669" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path661" fill="#ccc" d="m183.53 360.29c-1.9047 0-3.5675-0.40204-4.8158-1.0671-1.2384-0.63036-2.9148-1.0163-4.7637-1.0163-1.8576 0-3.5762 0.38591-4.8146 1.025-1.2433 0.64773-2.9619 1.0585-4.8381 1.0585-1.8998 0-3.5898-0.44671-4.8381-1.1118-1.2285-0.60306-2.8738-0.9716-4.6756-0.9716-1.8625 0-3.5166 0.35985-4.755 0.99765-1.2483 0.66138-2.9756 1.0858-4.8704 1.0858v-2.9532c1.8948 0 3.6221-0.44299 4.8704-1.1031 1.2384-0.63904 2.8924-0.99765 4.755-0.99765 1.7968 0 3.4422 0.37226 4.6756 0.97532 1.2433 0.6651 2.9384 1.1068 4.8381 1.1068 1.8762 0 3.5948-0.40576 4.8381-1.0535 1.2384-0.63904 2.957-1.0287 4.8146-1.0287 1.8489 0 3.5253 0.38467 4.7637 1.02 1.2483 0.66882 2.9396 1.0622 4.8381 1.0622l-0.0223 2.9719"/>
+   <path id="path662" d="m183.53 360.29c-1.9047 0-3.5675-0.40204-4.8158-1.0671-1.2384-0.63036-2.9148-1.0163-4.7637-1.0163-1.8576 0-3.5762 0.38591-4.8146 1.025-1.2433 0.64773-2.9619 1.0585-4.8381 1.0585-1.8998 0-3.5898-0.44671-4.8381-1.1118-1.2285-0.60306-2.8738-0.9716-4.6756-0.9716-1.8625 0-3.5166 0.35985-4.755 0.99765-1.2483 0.66138-2.9756 1.0858-4.8704 1.0858v-2.9532c1.8948 0 3.6221-0.44299 4.8704-1.1031 1.2384-0.63904 2.8924-0.99765 4.755-0.99765 1.7968 0 3.4422 0.37226 4.6756 0.97532 1.2433 0.6651 2.9384 1.1068 4.8381 1.1068 1.8762 0 3.5948-0.40576 4.8381-1.0535 1.2384-0.63904 2.957-1.0287 4.8146-1.0287 1.8489 0 3.5253 0.38467 4.7637 1.02 1.2483 0.66882 2.9396 1.0622 4.8381 1.0622l-0.0223 2.9719" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path663" fill="#0076bc" d="m183.53 363.26c-1.9047 0-3.5675-0.40328-4.8158-1.0634-1.2384-0.63904-2.9148-1.0287-4.7637-1.0287-1.8576 0-3.5762 0.39335-4.8146 1.0324-1.2433 0.64772-2.9619 1.0597-4.8381 1.0597-1.8998 0-3.5898-0.45167-4.8381-1.1118-1.2285-0.60802-2.8738-0.98028-4.6756-0.98028-1.8625 0-3.5166 0.36357-4.755 1.0063-1.2483 0.65641-2.9756 1.0858-4.8704 1.0858v-2.9458c1.8948 0 3.6221-0.45044 4.8704-1.1118 1.2384-0.6378 2.8924-0.99269 4.755-0.99269 1.7968 0 3.4422 0.3673 4.6756 0.9716 1.2433 0.66014 2.9384 1.1068 4.8381 1.1068 1.8762 0 3.5948-0.41073 4.8381-1.0585 1.2384-0.63904 2.957-1.02 4.8146-1.02 1.8489 0 3.5253 0.38095 4.7637 1.015 1.2483 0.66138 2.9297 1.0634 4.8332 1.0634l-0.0174 2.9719"/>
+   <path id="path664" d="m183.53 363.26c-1.9047 0-3.5675-0.40328-4.8158-1.0634-1.2384-0.63904-2.9148-1.0287-4.7637-1.0287-1.8576 0-3.5762 0.39335-4.8146 1.0324-1.2433 0.64772-2.9619 1.0597-4.8381 1.0597-1.8998 0-3.5898-0.45167-4.8381-1.1118-1.2285-0.60802-2.8738-0.98028-4.6756-0.98028-1.8625 0-3.5166 0.36357-4.755 1.0063-1.2483 0.65641-2.9756 1.0858-4.8704 1.0858v-2.9458c1.8948 0 3.6221-0.45044 4.8704-1.1118 1.2384-0.6378 2.8924-0.99269 4.755-0.99269 1.7968 0 3.4422 0.3673 4.6756 0.9716 1.2433 0.66014 2.9384 1.1068 4.8381 1.1068 1.8762 0 3.5948-0.41073 4.8381-1.0585 1.2384-0.63904 2.957-1.02 4.8146-1.02 1.8489 0 3.5253 0.38095 4.7637 1.015 1.2483 0.66138 2.9297 1.0634 4.8332 1.0634l-0.0174 2.9719z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path665" fill="#c8b100" d="m153.53 336.22c0.0658 0.24942 0.15759 0.49511 0.15759 0.76189 0 1.803-1.5573 3.2374-3.4608 3.2374h28.266c-1.9047 0-3.462-1.4344-3.462-3.2374 0-0.26306 0.0509-0.51247 0.11664-0.76189-0.16255 0.0571-0.35613 0.0658-0.54102 0.0658h-20.567c-0.16627 0-0.35985-0.0174-0.50875-0.0658"/>
+   <path id="path666" stroke-linejoin="round" d="m153.53 336.22c0.0658 0.24942 0.15759 0.49511 0.15759 0.76189 0 1.803-1.5573 3.2374-3.4608 3.2374h28.266c-1.9047 0-3.462-1.4344-3.462-3.2374 0-0.26306 0.0509-0.51247 0.11664-0.76189-0.16255 0.0571-0.35613 0.0658-0.54102 0.0658h-20.567c-0.16627 0-0.35985-0.0174-0.50875-0.0658z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path667" fill="#c8b100" d="m154.04 334.35h20.567c0.69737 0 1.2607 0.43802 1.2607 0.96787 0 0.53357-0.56335 0.96663-1.2607 0.96663h-20.567c-0.69736 0-1.262-0.43306-1.262-0.96663 0-0.52985 0.56459-0.96787 1.262-0.96787"/>
+   <path id="path668" d="m154.04 334.35h20.567c0.69737 0 1.2607 0.43802 1.2607 0.96787 0 0.53357-0.56335 0.96663-1.2607 0.96663h-20.567c-0.69736 0-1.262-0.43306-1.262-0.96663 0-0.52985 0.56459-0.96787 1.262-0.96787z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path669" fill="#c8b100" d="m150.27 347.41h28.191v-7.1908h-28.191v7.1908z"/>
+   <path id="path670" d="m150.27 347.41h28.191v-7.1908h-28.191v7.1908z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path671" fill="#c00" d="m148.06 308.9c-2.7907 1.6106-4.6805 3.2597-4.3753 4.0824 0.15263 0.75693 1.0398 1.3215 2.3055 2.1616 1.9916 1.3873 3.2027 3.864 2.2546 5.0069 1.6504-1.3302 2.6939-3.3168 2.6939-5.5268 0-2.3105-1.0994-4.3939-2.8788-5.7241"/>
+   <path id="path672" d="m148.06 308.9c-2.7907 1.6106-4.6805 3.2597-4.3753 4.0824 0.15263 0.75693 1.0398 1.3215 2.3055 2.1616 1.9916 1.3873 3.2027 3.864 2.2546 5.0069 1.6504-1.3302 2.6939-3.3168 2.6939-5.5268 0-2.3105-1.0994-4.3939-2.8788-5.7241z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path673" fill="#ccc" d="m154.3 333.19h20.031v-98.141h-20.031v98.141z"/>
+   <path id="path674" d="m168.58 235.18v97.928m2.2497-97.928v97.928" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path675" d="m154.3 333.19h20.031v-98.141h-20.031v98.141z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path676" fill="#c00" d="m194.8 271.76c-4.3703-1.8067-11.801-3.1456-20.327-3.426-2.9384 0.0223-6.2142 0.29781-9.5968 0.8624-11.982 1.999-21.108 6.7826-20.382 10.678 0.0137 0.0831 0.041 0.25314 0.0596 0.32759 0 0-4.4907-10.122-4.5651-10.506-0.79911-4.3232 9.3251-9.6365 22.623-11.855 4.173-0.69612 8.243-0.96663 11.778-0.93188 8.5073 0 15.9 1.0895 20.354 2.7435l0.0558 12.108"/>
+   <path id="path677" stroke-linejoin="round" d="m194.8 271.76c-4.3703-1.8067-11.801-3.1456-20.327-3.426-2.9384 0.0223-6.2142 0.29781-9.5968 0.8624-11.982 1.999-21.108 6.7826-20.382 10.678 0.0137 0.0831 0.041 0.25314 0.0596 0.32759 0 0-4.4907-10.122-4.5651-10.506-0.79911-4.3232 9.3251-9.6365 22.623-11.855 4.173-0.69612 8.243-0.96663 11.778-0.93188 8.5073 0 15.9 1.0895 20.354 2.7435l0.0558 12.108" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path678" fill="#c00" d="m154.27 284.08c-5.5541-0.39831-9.3474-1.8824-9.7817-4.2053-0.34248-1.8514 1.5337-3.8988 4.889-5.7588 1.4965 0.16132 3.1828 0.3673 4.925 0.3673l-0.0323 9.5968"/>
+   <path id="path679" d="m154.27 284.08c-5.5541-0.39831-9.3474-1.8824-9.7817-4.2053-0.34248-1.8514 1.5337-3.8988 4.889-5.7588 1.4965 0.16132 3.1828 0.3673 4.925 0.3673l-0.0323 9.5968" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path680" fill="#c00" d="m174.37 276.57c3.4694 0.52489 6.0765 1.3873 7.3744 2.447l0.1154 0.21343c0.61919 1.2694-2.4296 3.9695-7.5221 6.9848l0.0323-9.6452"/>
+   <path id="path681" d="m174.37 276.57c3.4694 0.52489 6.0765 1.3873 7.3744 2.447l0.1154 0.21343c0.61919 1.2694-2.4296 3.9695-7.5221 6.9848l0.0323-9.6452" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path682" fill="#c00" d="m141.83 303.01c-0.52736-1.5846 4.889-4.7562 12.545-7.5655 3.498-1.252 6.3855-2.5562 9.9666-4.1358 10.633-4.7004 18.489-10.096 17.522-12.065l-0.10547-0.20102c0.56831 0.45912 1.4456 10.151 1.4456 10.151 0.97035 1.803-6.2192 7.1201-16.011 11.812-3.1332 1.4965-9.7494 3.9422-12.874 5.0367-5.5864 1.9382-11.14 5.5926-10.632 6.9488l-1.8576-9.9765"/>
+   <path id="path683" stroke-linejoin="round" d="m141.83 303.01c-0.52736-1.5846 4.889-4.7562 12.545-7.5655 3.498-1.252 6.3855-2.5562 9.9666-4.1358 10.633-4.7004 18.489-10.096 17.522-12.065l-0.10547-0.20102c0.56831 0.45912 1.4456 10.151 1.4456 10.151 0.97035 1.803-6.2192 7.1201-16.011 11.812-3.1332 1.4965-9.7494 3.9422-12.874 5.0367-5.5864 1.9382-11.14 5.5926-10.632 6.9488l-1.8576-9.9765v-0.005z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path684" fill="#c8b100" d="m152.92 267.05c2.4495-0.89342 4.0526-1.9482 3.2672-3.8777-0.49511-1.2247-1.7608-1.4617-3.6506-0.76934l-3.3503 1.216 3.0178 7.4352c0.32759-0.1489 0.65517-0.30277 0.99765-0.42934 0.33752-0.12284 0.69364-0.21467 1.0398-0.31518l-1.3215-3.256v-0.004zm-1.4555-3.5886 0.84502-0.30649c0.70233-0.2581 1.4977 0.11416 1.8489 0.98028 0.26306 0.66138 0.19357 1.396-0.61423 1.9122-0.2643 0.16256-0.56831 0.28416-0.86488 0.40328l-1.2148-2.9892"/>
+   <path id="path685" fill="#c8b100" d="m160.75 260.35c-0.35116 0.0956-0.70233 0.20102-1.0584 0.27051-0.35489 0.0707-0.72094 0.10919-1.0808 0.15759l1.7372 7.733 5.4015-1.0858c-0.0645-0.15262-0.14766-0.31518-0.17992-0.47277-0.0372-0.16131-0.0323-0.34123-0.0422-0.50255-0.94678 0.27051-1.9817 0.5646-3.225 0.81401l-1.5474-6.9141"/>
+   <path id="path686" fill="#c8b100" d="m171.57 267.02c1.0212-2.8044 2.2546-5.492 3.4694-8.2133-0.21715 0.0347-0.44795 0.0658-0.6651 0.0782-0.21715 0.0136-0.45292 0.0174-0.67007 0.009-0.64649 1.9742-1.4506 3.9472-2.2968 5.9127-1.0163-1.865-2.1392-3.6854-2.9942-5.5628-0.42065 0.0534-0.84999 0.11416-1.2756 0.14518-0.41941 0.0261-0.85867 0.0211-1.2793 0.0261 1.5573 2.5376 3.0587 5.0677 4.482 7.6846 0.19854-0.036 0.40204-0.0831 0.61795-0.0968 0.19978-0.0137 0.40824 0.005 0.61174 0.0136"/>
+   <path id="path687" fill="#c8b100" d="m182.86 261.07c0.18861-0.37598 0.37847-0.74452 0.59065-1.0944-0.29036-0.27547-1.1825-0.67751-2.2273-0.78299-2.2038-0.21839-3.4694 0.76189-3.6171 2.0921-0.31021 2.7832 4.0837 2.5425 3.8814 4.3889-0.0881 0.79664-0.93437 1.1205-1.8303 1.0324-1.0026-0.10051-1.7322-0.65145-1.8625-1.4704l-0.27175-0.0261c-0.14394 0.48642-0.35613 0.95422-0.58321 1.422 0.64153 0.41569 1.4791 0.65269 2.2782 0.73087 2.246 0.22335 3.9608-0.67751 4.1222-2.1566 0.2916-2.6443-4.1445-2.7969-3.9745-4.3542 0.0745-0.65642 0.57824-1.0858 1.7236-0.9716 0.82269 0.0831 1.3314 0.52861 1.5536 1.1676l0.21715 0.0223"/>
+   <path id="path688" fill="#c00" d="m348.15 212.54s-0.90583 0.95422-1.5672 1.0895c-0.66013 0.13153-1.4965-0.59437-1.4965-0.59437s-0.59561 0.62043-1.3265 0.78671c-0.72962 0.16627-1.7434-0.82269-1.7434-0.82269s-0.69612 0.98896-1.3215 1.221c-0.62664 0.23204-1.3898-0.29656-1.3898-0.29656s-0.27671 0.49014-0.79911 0.76064c-0.22212 0.10548-0.59065-0.0695-0.59065-0.0695l-0.73708-0.46036-0.83634-0.89218-0.76561-0.29781s-0.3462-1.1205-0.38342-1.3166c-0.0273-0.1973-0.10175-0.69613-0.10175-0.69613-0.15635-0.80035 1.0771-1.7285 2.8366-2.1268 1.0126-0.23577 1.8936-0.21839 2.5425-0.0174 0.70233-0.59933 2.1901-1.015 3.941-1.015 1.5846 0 2.9756 0.33627 3.7437 0.85744 0.75692-0.52117 2.1479-0.85744 3.7375-0.85744 1.7422 0 3.2287 0.41569 3.9323 1.015 0.65145-0.20101 1.5287-0.21466 2.5462 0.0174 1.7546 0.39831 2.9942 1.3265 2.8354 2.1268 0 0-0.0732 0.49883-0.10424 0.69613-0.0372 0.19605-0.38342 1.3166-0.38342 1.3166l-0.7681 0.29781-0.83634 0.89218-0.72466 0.46036s-0.36978 0.17496-0.59189 0.0695c-0.5224-0.26678-0.80408-0.76064-0.80408-0.76064s-0.76685 0.5286-1.391 0.29656c-0.62788-0.23204-1.3252-1.221-1.3252-1.221s-1.0076 0.98896-1.7434 0.82269c-0.72963-0.16628-1.3228-0.78671-1.3228-0.78671s-0.83634 0.7259-1.4952 0.59437c-0.6651-0.13525-1.561-1.0895-1.561-1.0895"/>
+   <path id="path689" d="m348.15 212.54s-0.90583 0.95422-1.5672 1.0895c-0.66013 0.13153-1.4965-0.59437-1.4965-0.59437s-0.59561 0.62043-1.3265 0.78671c-0.72962 0.16627-1.7434-0.82269-1.7434-0.82269s-0.69612 0.98896-1.3215 1.221c-0.62664 0.23204-1.3898-0.29656-1.3898-0.29656s-0.27671 0.49014-0.79911 0.76064c-0.22212 0.10548-0.59065-0.0695-0.59065-0.0695l-0.73708-0.46036-0.83634-0.89218-0.76561-0.29781s-0.3462-1.1205-0.38342-1.3166c-0.0273-0.1973-0.10175-0.69613-0.10175-0.69613-0.15635-0.80035 1.0771-1.7285 2.8366-2.1268 1.0126-0.23577 1.8936-0.21839 2.5425-0.0174 0.70233-0.59933 2.1901-1.015 3.941-1.015 1.5846 0 2.9756 0.33627 3.7437 0.85744 0.75692-0.52117 2.1479-0.85744 3.7375-0.85744 1.7422 0 3.2287 0.41569 3.9323 1.015 0.65145-0.20101 1.5287-0.21466 2.5462 0.0174 1.7546 0.39831 2.9942 1.3265 2.8354 2.1268 0 0-0.0732 0.49883-0.10424 0.69613-0.0372 0.19605-0.38342 1.3166-0.38342 1.3166l-0.7681 0.29781-0.83634 0.89218-0.72466 0.46036s-0.36978 0.17496-0.59189 0.0695c-0.5224-0.26678-0.80408-0.76064-0.80408-0.76064s-0.76685 0.5286-1.391 0.29656c-0.62788-0.23204-1.3252-1.221-1.3252-1.221s-1.0076 0.98896-1.7434 0.82269c-0.72963-0.16628-1.3228-0.78671-1.3228-0.78671s-0.83634 0.7259-1.4952 0.59437c-0.6651-0.13525-1.561-1.0895-1.561-1.0895h-0.005z" stroke="#000" stroke-width=".33276" fill="none"/>
+   <path id="path690" fill="#c8b100" d="m346.43 207.33c0-1.3339 0.75816-2.4147 1.695-2.4147 0.93809 0 1.7012 1.0808 1.7012 2.4147 0 1.3401-0.76313 2.4246-1.7012 2.4246-0.93685 0-1.695-1.0845-1.695-2.4246"/>
+   <path id="path691" d="m346.43 207.33c0-1.3339 0.75816-2.4147 1.695-2.4147 0.93809 0 1.7012 1.0808 1.7012 2.4147 0 1.3401-0.76313 2.4246-1.7012 2.4246-0.93685 0-1.695-1.0845-1.695-2.4246z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path692" fill="#c8b100" d="m347.38 207.33c0-1.2247 0.35117-2.2224 0.78175-2.2224 0.43306 0 0.7805 0.99765 0.7805 2.2224 0 1.2297-0.34744 2.2286-0.7805 2.2286-0.43058 0-0.78175-0.9989-0.78175-2.2286"/>
+   <path id="path693" d="m347.38 207.33c0-1.2247 0.35117-2.2224 0.78175-2.2224 0.43306 0 0.7805 0.99765 0.7805 2.2224 0 1.2297-0.34744 2.2286-0.7805 2.2286-0.43058 0-0.78175-0.9989-0.78175-2.2286z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path694" fill="#c8b100" d="m339.41 217.26c-0.24941-0.70481-0.71722-1.3352-0.71722-1.3352 2.3998-0.7048 5.7402-1.1466 9.4554-1.1552 3.7151 0.009 7.0791 0.45044 9.4777 1.1552 0 0-0.26803 0.47277-0.64277 1.1292-0.20723 0.36357-0.48021 0.99765-0.4616 0.99765-2.1678-0.6651-4.9585-1.0063-8.387-1.0101-3.4335 0.004-6.7329 0.42437-8.4528 1.0535 0.0248 0-0.11913-0.39707-0.29036-0.8351h0.0186"/>
+   <path id="path695" d="m339.41 217.26c-0.24941-0.70481-0.71722-1.3352-0.71722-1.3352 2.3998-0.7048 5.7402-1.1466 9.4554-1.1552 3.7151 0.009 7.0791 0.45044 9.4777 1.1552 0 0-0.26803 0.47277-0.64277 1.1292-0.20723 0.36357-0.48021 0.99765-0.4616 0.99765-2.1678-0.6651-4.9585-1.0063-8.387-1.0101-3.4335 0.004-6.7329 0.42437-8.4528 1.0535 0.0248 0-0.11913-0.39707-0.29036-0.8351h0.0186" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path696" fill="#c8b100" d="m348.14 220.31c2.9979-0.005 6.2986-0.45912 7.5184-0.7743 0.81277-0.237 1.2893-0.6043 1.2012-1.0287-0.041-0.20102-0.21715-0.37598-0.45416-0.47649-1.7881-0.57328-5.0118-0.98028-8.2654-0.98525-3.2473 0.005-6.4872 0.41197-8.2815 0.98525-0.22956 0.10051-0.41073 0.27547-0.44796 0.47649-0.0918 0.42437 0.38467 0.79167 1.2024 1.0287 1.216 0.31518 4.5316 0.76934 7.5271 0.7743"/>
+   <path id="path697" d="m348.14 220.31c2.9979-0.005 6.2986-0.45912 7.5184-0.7743 0.81277-0.237 1.2893-0.6043 1.2012-1.0287-0.041-0.20102-0.21715-0.37598-0.45416-0.47649-1.7881-0.57328-5.0118-0.98028-8.2654-0.98525-3.2473 0.005-6.4872 0.41197-8.2815 0.98525-0.22956 0.10051-0.41073 0.27547-0.44796 0.47649-0.0918 0.42437 0.38467 0.79167 1.2024 1.0287 1.216 0.31518 4.5316 0.76934 7.5271 0.7743z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path698" fill="#fff" d="m355.41 208.41c0-0.29408 0.24941-0.52985 0.55343-0.52985 0.31021 0 0.55962 0.23577 0.55962 0.52985 0 0.29285-0.24941 0.52489-0.55962 0.52489-0.30402 0-0.55343-0.23204-0.55343-0.52489"/>
+   <path id="path699" d="m355.41 208.41c0-0.29408 0.24941-0.52985 0.55343-0.52985 0.31021 0 0.55962 0.23577 0.55962 0.52985 0 0.29285-0.24941 0.52489-0.55962 0.52489-0.30402 0-0.55343-0.23204-0.55343-0.52489z" stroke="#000" stroke-width=".25631" fill="none"/>
+   <path id="path700" d="m355.1 206.57c0-0.29284 0.24818-0.52861 0.55467-0.52861 0.30773 0 0.55839 0.23577 0.55839 0.52861 0 0.28912-0.25066 0.52612-0.55839 0.52612-0.30649 0-0.55467-0.237-0.55467-0.52612zm-1.396-1.1552c0-0.29285 0.24818-0.52861 0.55963-0.52861 0.30277 0 0.55467 0.23576 0.55467 0.52861 0 0.29408-0.2519 0.52984-0.55467 0.52984-0.31145 0-0.55963-0.23576-0.55963-0.52984zm-1.7434-0.55591c0-0.29656 0.25066-0.53357 0.55963-0.53357 0.31022 0 0.55591 0.23701 0.55591 0.53357 0 0.2854-0.24569 0.52613-0.55591 0.52613-0.30897 0-0.55963-0.24073-0.55963-0.52613zm-1.7732 0.062c0-0.29408 0.24818-0.52984 0.55467-0.52984 0.31021 0 0.55963 0.23576 0.55963 0.52984 0 0.29285-0.24942 0.52489-0.55963 0.52489-0.30649 0-0.55467-0.23204-0.55467-0.52489z" stroke="#000" stroke-width=".25631" fill="none"/>
+   <path id="path701" d="m360.92 212c0.16627-0.407 0.2705-0.85743 0.2705-1.3252 0-1.9606-1.5548-3.5538-3.4818-3.5538-0.61547 0-1.1925 0.16627-1.6963 0.45539" stroke="#000" stroke-linecap="round" stroke-width=".31927" fill="none"/>
+   <path id="path702" d="m354.72 209.51c0.17992-0.3189 0.31022-0.70853 0.31022-1.0758 0-1.4133-1.4605-2.5599-3.2573-2.5599-0.76809 0-1.4704 0.2097-2.0238 0.55466" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path703" d="m361.4 210.39c0-0.28913 0.25438-0.52985 0.55963-0.52985 0.30897 0 0.55839 0.24072 0.55839 0.52985 0 0.29284-0.24942 0.52488-0.55839 0.52488-0.30525 0-0.55963-0.23204-0.55963-0.52488zm-0.20971-1.9432c0-0.29409 0.2519-0.52489 0.55963-0.52489 0.30649 0 0.55591 0.2308 0.55591 0.52489 0 0.28912-0.24942 0.52488-0.55591 0.52488-0.30773 0-0.55963-0.23576-0.55963-0.52488zm-1.2508-1.4878c0-0.28912 0.24941-0.52488 0.55466-0.52488 0.31022 0 0.55839 0.23576 0.55839 0.52488 0 0.29285-0.24817 0.52861-0.55839 0.52861-0.30525 0-0.55466-0.23576-0.55466-0.52861zm-1.6727-0.79291c0-0.28788 0.24942-0.52488 0.55839-0.52488 0.30649 0 0.55591 0.237 0.55591 0.52488 0 0.29409-0.24942 0.53481-0.55591 0.53481-0.30897 0-0.55839-0.24072-0.55839-0.53481zm-1.7782 0.0707c0-0.29284 0.24941-0.52985 0.55839-0.52985 0.30897 0 0.55963 0.23701 0.55963 0.52985 0 0.28912-0.25066 0.52489-0.55963 0.52489-0.30898 0-0.55839-0.23577-0.55839-0.52489z" stroke="#000" stroke-width=".25631" fill="none"/>
+   <path id="path704" fill="#c8b100" d="m357.77 214.58-0.72839-0.66014s-0.6986 0.42809-1.5709 0.29656c-0.8686-0.13029-1.1466-1.185-1.1466-1.185s-0.97904 0.81773-1.7744 0.75693c-0.79911-0.0707-1.3215-0.75693-1.3215-0.75693s-0.87356 0.62043-1.6404 0.55963c-0.76686-0.0695-1.4977-1.0237-1.4977-1.0237s-0.76562 0.98896-1.5337 1.0584c-0.76685 0.062-1.391-0.6651-1.391-0.6651s-0.35117 0.72715-1.3265 0.88846c-0.97407 0.16627-1.8104-0.75693-1.8104-0.75693s-0.5497 0.89218-1.216 1.1242c-0.66013 0.23204-1.5287-0.33255-1.5287-0.33255s-0.13897 0.33255-0.24445 0.52985c-0.10671 0.1973-0.38466 0.23204-0.38466 0.23204l0.21839 0.59065c2.3862-0.69116 5.6236-1.1205 9.2829-1.1242 3.6643 0.004 6.9898 0.43306 9.3747 1.1292l0.24569-0.66137"/>
+   <path id="path705" d="m357.77 214.58-0.72839-0.66014s-0.6986 0.42809-1.5709 0.29656c-0.8686-0.13029-1.1466-1.185-1.1466-1.185s-0.97904 0.81773-1.7744 0.75693c-0.79911-0.0707-1.3215-0.75693-1.3215-0.75693s-0.87356 0.62043-1.6404 0.55963c-0.76686-0.0695-1.4977-1.0237-1.4977-1.0237s-0.76562 0.98896-1.5337 1.0584c-0.76685 0.062-1.391-0.6651-1.391-0.6651s-0.35117 0.72715-1.3265 0.88846c-0.97407 0.16627-1.8104-0.75693-1.8104-0.75693s-0.5497 0.89218-1.216 1.1242c-0.66013 0.23204-1.5287-0.33255-1.5287-0.33255s-0.13897 0.33255-0.24445 0.52985c-0.10671 0.1973-0.38466 0.23204-0.38466 0.23204l0.21839 0.59065c2.3862-0.69116 5.6236-1.1205 9.2829-1.1242 3.6643 0.004 6.9898 0.43306 9.3747 1.1292l0.24569-0.66137h-0.006z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path706" fill="#fff" d="m339.69 208.41c0-0.29408 0.24818-0.52985 0.55839-0.52985 0.30401 0 0.55467 0.23577 0.55467 0.52985 0 0.29285-0.25066 0.52489-0.55467 0.52489-0.31021 0-0.55839-0.23204-0.55839-0.52489"/>
+   <path id="path707" d="m339.69 208.41c0-0.29408 0.24818-0.52985 0.55839-0.52985 0.30401 0 0.55467 0.23577 0.55467 0.52985 0 0.29285-0.25066 0.52489-0.55467 0.52489-0.31021 0-0.55839-0.23204-0.55839-0.52489z" stroke="#000" stroke-width=".25631" fill="none"/>
+   <path id="path708" d="m340 206.57c0-0.29284 0.24942-0.52861 0.55839-0.52861 0.30525 0 0.55467 0.23577 0.55467 0.52861 0 0.28912-0.24942 0.52612-0.55467 0.52612-0.30897 0-0.55839-0.237-0.55839-0.52612zm1.391-1.1552c0-0.29285 0.24941-0.52861 0.55839-0.52861 0.31021 0 0.55962 0.23576 0.55962 0.52861 0 0.29408-0.24941 0.52984-0.55962 0.52984-0.30898 0-0.55839-0.23576-0.55839-0.52984zm1.7422-0.55591c0-0.29656 0.24941-0.53357 0.55839-0.53357 0.31021 0 0.55962 0.23701 0.55962 0.53357 0 0.2854-0.24941 0.52613-0.55962 0.52613-0.30898 0-0.55839-0.24073-0.55839-0.52613zm1.7782 0.062c0-0.29408 0.24942-0.52984 0.55467-0.52984 0.31021 0 0.55963 0.23576 0.55963 0.52984 0 0.29285-0.24942 0.52489-0.55963 0.52489-0.30525 0-0.55467-0.23204-0.55467-0.52489z" stroke="#000" stroke-width=".25631" fill="none"/>
+   <path id="path709" d="m335.29 212c-0.16255-0.407-0.26803-0.85743-0.26803-1.3252 0-1.9606 1.556-3.5538 3.4819-3.5538 0.61547 0 1.1925 0.16627 1.6975 0.45539" stroke="#000" stroke-linecap="round" stroke-width=".31927" fill="none"/>
+   <path id="path710" d="m341.54 209.46c-0.17993-0.31518-0.35241-0.6651-0.35241-1.0324 0-1.4133 1.4617-2.5599 3.2585-2.5599 0.76188 0 1.4692 0.2097 2.0238 0.55466" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path711" d="m333.7 210.39c0-0.28913 0.24818-0.52985 0.55963-0.52985 0.30277 0 0.55343 0.24072 0.55343 0.52985 0 0.29284-0.25066 0.52488-0.55343 0.52488-0.31145 0-0.55963-0.23204-0.55963-0.52488zm0.20723-1.9432c0-0.29409 0.25437-0.52489 0.55963-0.52489 0.31021 0 0.55962 0.2308 0.55962 0.52489 0 0.28912-0.24941 0.52488-0.55962 0.52488-0.30526 0-0.55963-0.23576-0.55963-0.52488zm1.257-1.4878c0-0.28912 0.24941-0.52488 0.55963-0.52488 0.30525 0 0.55466 0.23576 0.55466 0.52488 0 0.29285-0.24941 0.52861-0.55466 0.52861-0.31022 0-0.55963-0.23576-0.55963-0.52861zm1.6727-0.79291c0-0.28788 0.24941-0.52488 0.55343-0.52488 0.31145 0 0.55962 0.237 0.55962 0.52488 0 0.29409-0.24817 0.53481-0.55962 0.53481-0.30402 0-0.55343-0.24072-0.55343-0.53481zm1.7744 0.0707c0-0.29284 0.24942-0.52985 0.55963-0.52985 0.30898 0 0.55467 0.23701 0.55467 0.52985 0 0.28912-0.24569 0.52489-0.55467 0.52489-0.31021 0-0.55963-0.23577-0.55963-0.52489z" stroke="#000" stroke-width=".25631" fill="none"/>
+   <path id="path712" fill="#c8b100" d="m348.16 211.39 0.3462 0.062c-0.0546 0.14394-0.0658 0.29657-0.0658 0.45912 0 0.71722 0.61671 1.2992 1.3736 1.2992 0.6105 0 1.1279-0.37598 1.3041-0.89714 0.0211 0.0136 0.13277-0.47277 0.18737-0.46408 0.0521 0 0.0434 0.50379 0.0558 0.4951 0.0918 0.65146 0.68744 1.0982 1.3637 1.0982 0.75692 0 1.3712-0.58197 1.3712-1.2992 0-0.0533-0.004-0.10547-0.0124-0.15759l0.4343-0.42933 0.22956 0.54722c-0.0918 0.16627-0.12905 0.3586-0.12905 0.56459 0 0.68743 0.58817 1.2433 1.3091 1.2433 0.45788 0 0.85992-0.22335 1.0907-0.55591l0.27671-0.34992-0.005 0.43306c0 0.4281 0.18613 0.81401 0.6043 0.8835 0 0 0.48517 0.0347 1.1242-0.47277 0.64276-0.50255 0.99393-0.9232 0.99393-0.9232l0.0372 0.5162s-0.63035 1.0324-1.1974 1.3612c-0.31394 0.18365-0.79167 0.37598-1.1689 0.31022-0.40328-0.0608-0.68371-0.38467-0.83262-0.75197-0.2854 0.17-0.62291 0.26679-0.984 0.26679-0.77554 0-1.4729-0.42934-1.7459-1.0634-0.35737 0.38467-0.85496 0.61671-1.4382 0.61671-0.61795 0-1.1863-0.27547-1.5436-0.70853-0.34993 0.32386-0.82518 0.52116-1.3488 0.52116-0.68247 0-1.2979-0.34248-1.6441-0.84503-0.34744 0.50255-0.95298 0.84503-1.6417 0.84503-0.5224 0-0.99641-0.1973-1.3476-0.52116-0.35612 0.43306-0.91948 0.70853-1.5436 0.70853-0.58196 0-1.0771-0.23204-1.432-0.61671-0.27423 0.63036-0.97532 1.0634-1.7471 1.0634-0.35985 0-0.69364-0.0968-0.98028-0.26679-0.14766 0.3673-0.43306 0.69116-0.83137 0.75197-0.37847 0.0658-0.85496-0.12657-1.1689-0.31022-0.57327-0.32883-1.252-1.3612-1.252-1.3612l0.0881-0.5162s0.34992 0.42065 0.98896 0.9232c0.64153 0.50751 1.1267 0.47277 1.1267 0.47277 0.42065-0.0695 0.59933-0.4554 0.59933-0.8835v-0.43306l0.27423 0.34992c0.23577 0.33256 0.63656 0.55591 1.0895 0.55591 0.72714 0 1.3128-0.55591 1.3128-1.2433 0-0.20599-0.0372-0.39832-0.12905-0.56459l0.2308-0.54722 0.42934 0.42933c-0.009 0.0521-0.009 0.10424-0.009 0.15759 0 0.71722 0.61051 1.2992 1.3612 1.2992 0.68123 0 1.2768-0.44671 1.365-1.0982 0.0186 0.009 0.0124-0.4951 0.0596-0.4951 0.0608-0.009 0.17124 0.47773 0.18985 0.46408 0.17992 0.52116 0.69736 0.89714 1.3066 0.89714 0.7594 0 1.3736-0.58196 1.3736-1.2992 0-0.16255-0.009-0.31518-0.0645-0.45912l0.35613-0.062"/>
+   <path id="path713" d="m348.16 211.39 0.3462 0.062c-0.0546 0.14394-0.0658 0.29657-0.0658 0.45912 0 0.71722 0.61671 1.2992 1.3736 1.2992 0.6105 0 1.1279-0.37598 1.3041-0.89714 0.0211 0.0136 0.13277-0.47277 0.18737-0.46408 0.0521 0 0.0434 0.50379 0.0558 0.4951 0.0918 0.65146 0.68744 1.0982 1.3637 1.0982 0.75692 0 1.3712-0.58197 1.3712-1.2992 0-0.0533-0.004-0.10547-0.0124-0.15759l0.4343-0.42933 0.22956 0.54722c-0.0918 0.16627-0.12905 0.3586-0.12905 0.56459 0 0.68743 0.58817 1.2433 1.3091 1.2433 0.45788 0 0.85992-0.22335 1.0907-0.55591l0.27671-0.34992-0.005 0.43306c0 0.4281 0.18613 0.81401 0.6043 0.8835 0 0 0.48517 0.0347 1.1242-0.47277 0.64276-0.50255 0.99393-0.9232 0.99393-0.9232l0.0372 0.5162s-0.63035 1.0324-1.1974 1.3612c-0.31394 0.18365-0.79167 0.37598-1.1689 0.31022-0.40328-0.0608-0.68371-0.38467-0.83262-0.75197-0.2854 0.17-0.62291 0.26679-0.984 0.26679-0.77554 0-1.4729-0.42934-1.7459-1.0634-0.35737 0.38467-0.85496 0.61671-1.4382 0.61671-0.61795 0-1.1863-0.27547-1.5436-0.70853-0.34993 0.32386-0.82518 0.52116-1.3488 0.52116-0.68247 0-1.2979-0.34248-1.6441-0.84503-0.34744 0.50255-0.95298 0.84503-1.6417 0.84503-0.5224 0-0.99641-0.1973-1.3476-0.52116-0.35612 0.43306-0.91948 0.70853-1.5436 0.70853-0.58196 0-1.0771-0.23204-1.432-0.61671-0.27423 0.63036-0.97532 1.0634-1.7471 1.0634-0.35985 0-0.69364-0.0968-0.98028-0.26679-0.14766 0.3673-0.43306 0.69116-0.83137 0.75197-0.37847 0.0658-0.85496-0.12657-1.1689-0.31022-0.57327-0.32883-1.252-1.3612-1.252-1.3612l0.0881-0.5162s0.34992 0.42065 0.98896 0.9232c0.64153 0.50751 1.1267 0.47277 1.1267 0.47277 0.42065-0.0695 0.59933-0.4554 0.59933-0.8835v-0.43306l0.27423 0.34992c0.23577 0.33256 0.63656 0.55591 1.0895 0.55591 0.72714 0 1.3128-0.55591 1.3128-1.2433 0-0.20599-0.0372-0.39832-0.12905-0.56459l0.2308-0.54722 0.42934 0.42933c-0.009 0.0521-0.009 0.10424-0.009 0.15759 0 0.71722 0.61051 1.2992 1.3612 1.2992 0.68123 0 1.2768-0.44671 1.365-1.0982 0.0186 0.009 0.0124-0.4951 0.0596-0.4951 0.0608-0.009 0.17124 0.47773 0.18985 0.46408 0.17992 0.52116 0.69736 0.89714 1.3066 0.89714 0.7594 0 1.3736-0.58196 1.3736-1.2992 0-0.16255-0.009-0.31518-0.0645-0.45912l0.35613-0.062h0.009z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path714" fill="#c8b100" d="m348.14 214.77c-3.7151 0.004-7.0518 0.44547-9.4492 1.1552-0.16131 0.0521-0.35736-0.0707-0.41072-0.21467-0.0521-0.15263 0.0645-0.34124 0.21963-0.39335 2.4135-0.73583 5.8333-1.1999 9.6402-1.2036 3.8032 0.004 7.2404 0.46781 9.6489 1.2036 0.16008 0.0521 0.27672 0.24072 0.22584 0.39335-0.0509 0.14394-0.25438 0.26678-0.41072 0.21467-2.3986-0.70977-5.7489-1.1515-9.4641-1.1552"/>
+   <path id="path715" d="m348.14 214.77c-3.7151 0.004-7.0518 0.44547-9.4492 1.1552-0.16131 0.0521-0.35736-0.0707-0.41072-0.21467-0.0521-0.15263 0.0645-0.34124 0.21963-0.39335 2.4135-0.73583 5.8333-1.1999 9.6402-1.2036 3.8032 0.004 7.2404 0.46781 9.6489 1.2036 0.16008 0.0521 0.27672 0.24072 0.22584 0.39335-0.0509 0.14394-0.25438 0.26678-0.41072 0.21467-2.3986-0.70977-5.7489-1.1515-9.4641-1.1552z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path716" fill="#fff" d="m344.55 216.09c0-0.27919 0.24073-0.50751 0.54101-0.50751 0.29533 0 0.53606 0.22832 0.53606 0.50751 0 0.28416-0.24073 0.50751-0.53606 0.50751-0.30028 0-0.54101-0.22335-0.54101-0.50751"/>
+   <path id="path717" d="m344.55 216.09c0-0.27919 0.24073-0.50751 0.54101-0.50751 0.29533 0 0.53606 0.22832 0.53606 0.50751 0 0.28416-0.24073 0.50751-0.53606 0.50751-0.30028 0-0.54101-0.22335-0.54101-0.50751z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path718" fill="#c00" d="m348.19 216.31h-1.1962c-0.22212 0-0.40701-0.17496-0.40701-0.38591 0-0.20598 0.17993-0.37598 0.40204-0.37598h2.4172c0.22212 0 0.39584 0.17 0.39584 0.37598 0 0.21095-0.17869 0.38591-0.4008 0.38591h-1.2111"/>
+   <path id="path719" d="m348.19 216.31h-1.1962c-0.22212 0-0.40701-0.17496-0.40701-0.38591 0-0.20598 0.17993-0.37598 0.40204-0.37598h2.4172c0.22212 0 0.39584 0.17 0.39584 0.37598 0 0.21095-0.17869 0.38591-0.4008 0.38591h-1.2111" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path720" fill="#05906f" d="m342.2 216.72-0.85495 0.12657c-0.21964 0.031-0.42562-0.1092-0.46284-0.31891-0.0323-0.20598 0.11415-0.39831 0.33255-0.42933l0.85867-0.12657 0.87729-0.13526c0.21963-0.026 0.42189 0.1092 0.45912 0.31518 0.0323 0.20475-0.12036 0.40204-0.33751 0.43306l-0.87233 0.13526"/>
+   <path id="path721" d="m342.2 216.72-0.85495 0.12657c-0.21964 0.031-0.42562-0.1092-0.46284-0.31891-0.0323-0.20598 0.11415-0.39831 0.33255-0.42933l0.85867-0.12657 0.87729-0.13526c0.21963-0.026 0.42189 0.1092 0.45912 0.31518 0.0323 0.20475-0.12036 0.40204-0.33751 0.43306l-0.87233 0.13526" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path722" fill="#c00" d="m338.75 217.32 0.37971-0.61174 0.814 0.15263-0.47277 0.68743-0.72094-0.22832"/>
+   <path id="path723" d="m338.75 217.32 0.37971-0.61174 0.814 0.15263-0.47277 0.68743-0.72094-0.22832" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path724" fill="#fff" d="m350.67 216.09c0-0.27919 0.24445-0.50751 0.53977-0.50751 0.29657 0 0.54102 0.22832 0.54102 0.50751 0 0.28416-0.24445 0.50751-0.54102 0.50751-0.29532 0-0.53977-0.22335-0.53977-0.50751"/>
+   <path id="path725" d="m350.67 216.09c0-0.27919 0.24445-0.50751 0.53977-0.50751 0.29657 0 0.54102 0.22832 0.54102 0.50751 0 0.28416-0.24445 0.50751-0.54102 0.50751-0.29532 0-0.53977-0.22335-0.53977-0.50751z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path726" fill="#05906f" d="m354.09 216.72 0.85992 0.12657c0.21715 0.031 0.41941-0.1092 0.45664-0.31891 0.031-0.20598-0.11044-0.39831-0.32759-0.42933l-0.85992-0.12657-0.87729-0.13526c-0.22211-0.026-0.42561 0.1092-0.45787 0.31518-0.0372 0.20475 0.12036 0.40204 0.33751 0.43306l0.8686 0.13526"/>
+   <path id="path727" d="m354.09 216.72 0.85992 0.12657c0.21715 0.031 0.41941-0.1092 0.45664-0.31891 0.031-0.20598-0.11044-0.39831-0.32759-0.42933l-0.85992-0.12657-0.87729-0.13526c-0.22211-0.026-0.42561 0.1092-0.45787 0.31518-0.0372 0.20475 0.12036 0.40204 0.33751 0.43306l0.8686 0.13526" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path728" fill="#c00" d="m357.47 217.35-0.30525-0.65145-0.83386 0.0695 0.39956 0.73087 0.73955-0.1489"/>
+   <path id="path729" d="m357.47 217.35-0.30525-0.65145-0.83386 0.0695 0.39956 0.73087 0.73955-0.1489" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path730" fill="#c00" d="m348.14 219.61c-2.9979-0.004-5.7104-0.26679-7.7765-0.80036 2.066-0.52985 4.7786-0.85743 7.7765-0.86612 2.9992 0.004 5.7253 0.33255 7.7852 0.86612-2.0598 0.53357-4.786 0.79663-7.7852 0.80036"/>
+   <path id="path738" stroke-linejoin="round" d="m348.14 219.61c-2.9979-0.004-5.7104-0.26679-7.7765-0.80036 2.066-0.52985 4.7786-0.85743 7.7765-0.86612 2.9992 0.004 5.7253 0.33255 7.7852 0.86612-2.0598 0.53357-4.786 0.79663-7.7852 0.80036z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path739" fill="#c8b100" d="m357.59 213.11c0.0782-0.23204 0.009-0.46036-0.1638-0.51744-0.16627-0.0471-0.36357 0.10175-0.44174 0.32387-0.0831 0.237-0.01 0.46904 0.15634 0.52116 0.16628 0.0484 0.36978-0.0956 0.4492-0.32759"/>
+   <path id="path740" d="m357.59 213.11c0.0782-0.23204 0.009-0.46036-0.1638-0.51744-0.16627-0.0471-0.36357 0.10175-0.44174 0.32387-0.0831 0.237-0.01 0.46904 0.15634 0.52116 0.16628 0.0484 0.36978-0.0956 0.4492-0.32759z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path741" fill="#c8b100" d="m351.62 211.95c0.0323-0.24073-0.0881-0.4554-0.26306-0.47773-0.17124-0.0211-0.34248 0.16255-0.36978 0.40328-0.0323 0.24073 0.0831 0.45415 0.25934 0.47649 0.17496 0.0174 0.34124-0.16628 0.3735-0.40204"/>
+   <path id="path742" d="m351.62 211.95c0.0323-0.24073-0.0881-0.4554-0.26306-0.47773-0.17124-0.0211-0.34248 0.16255-0.36978 0.40328-0.0323 0.24073 0.0831 0.45415 0.25934 0.47649 0.17496 0.0174 0.34124-0.16628 0.3735-0.40204z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path743" fill="#c8b100" d="m344.69 211.95c-0.0323-0.24073 0.0819-0.4554 0.2581-0.47773 0.1762-0.0211 0.34124 0.16255 0.37474 0.40328 0.0261 0.24073-0.0881 0.45415-0.25934 0.47649-0.17496 0.0174-0.34248-0.16628-0.3735-0.40204"/>
+   <path id="path744" d="m344.69 211.95c-0.0323-0.24073 0.0819-0.4554 0.2581-0.47773 0.1762-0.0211 0.34124 0.16255 0.37474 0.40328 0.0261 0.24073-0.0881 0.45415-0.25934 0.47649-0.17496 0.0174-0.34248-0.16628-0.3735-0.40204z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path745" fill="#c8b100" d="m338.72 213.11c-0.0831-0.23204-0.009-0.46036 0.15759-0.51744 0.16504-0.0471 0.36854 0.10175 0.44795 0.32387 0.0782 0.237 0.009 0.46904-0.15634 0.52116-0.17124 0.0484-0.37102-0.0956-0.4492-0.32759"/>
+   <path id="path746" d="m338.72 213.11c-0.0831-0.23204-0.009-0.46036 0.15759-0.51744 0.16504-0.0471 0.36854 0.10175 0.44795 0.32387 0.0782 0.237 0.009 0.46904-0.15634 0.52116-0.17124 0.0484-0.37102-0.0956-0.4492-0.32759z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path747" fill="#c8b100" d="m348.14 208.51-1.0572 0.6378 0.78422 1.7025 0.27299 0.17993 0.26927-0.17993 0.78919-1.7025-1.0585-0.6378"/>
+   <path id="path748" d="m348.14 208.51-1.0572 0.6378 0.78422 1.7025 0.27299 0.17993 0.26927-0.17993 0.78919-1.7025-1.0585-0.6378" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path749" fill="#c8b100" d="m345.82 211.08 0.4827 0.70109 1.6491-0.50875 0.17496-0.23081-0.17496-0.237-1.6491-0.48145-0.4827 0.75692"/>
+   <path id="path750" d="m345.82 211.08 0.4827 0.70109 1.6491-0.50875 0.17496-0.23081-0.17496-0.237-1.6491-0.48145-0.4827 0.75692" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path751" fill="#c8b100" d="m350.47 211.08-0.48518 0.70109-1.6491-0.50875-0.17496-0.23081 0.17496-0.237 1.6491-0.48145 0.48518 0.75692"/>
+   <path id="path752" d="m350.47 211.08-0.48518 0.70109-1.6491-0.50875-0.17496-0.23081 0.17496-0.237 1.6491-0.48145 0.48518 0.75692" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path753" fill="#c8b100" d="m341.26 209.26-0.82889 0.78298 1.0622 1.4009 0.28167 0.11292 0.20847-0.21467 0.3735-1.6925-1.0969-0.38963"/>
+   <path id="path754" d="m341.26 209.26-0.82889 0.78298 1.0622 1.4009 0.28167 0.11292 0.20847-0.21467 0.3735-1.6925-1.0969-0.38963" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path755" fill="#c8b100" d="m339.52 212.07 0.62291 0.58569 1.5064-0.81401 0.1154-0.26182-0.21591-0.1973-1.7236-0.1489-0.30525 0.83634"/>
+   <path id="path756" d="m339.52 212.07 0.62291 0.58569 1.5064-0.81401 0.1154-0.26182-0.21591-0.1973-1.7236-0.1489-0.30525 0.83634" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path757" fill="#c8b100" d="m344.06 211.16-0.3189 0.77429-1.7248-0.15759-0.22459-0.19729 0.11912-0.26679 1.5114-0.79663 0.6378 0.64401"/>
+   <path id="path758" d="m344.06 211.16-0.3189 0.77429-1.7248-0.15759-0.22459-0.19729 0.11912-0.26679 1.5114-0.79663 0.6378 0.64401" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path759" fill="#c8b100" d="m337.86 212.29-0.1427 0.81897-1.726 0.17869-0.26183-0.14891 0.0658-0.27919 1.2967-1.0771 0.76809 0.50751"/>
+   <path id="path760" d="m337.86 212.29-0.1427 0.81897-1.726 0.17869-0.26183-0.14891 0.0658-0.27919 1.2967-1.0771 0.76809 0.50751" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path761" fill="#c8b100" d="m341.18 211.59c0-0.3189 0.27175-0.577 0.6043-0.577 0.33751 0 0.60554 0.2581 0.60554 0.577 0 0.31518-0.26803 0.57328-0.60554 0.57328-0.33255 0-0.6043-0.2581-0.6043-0.57328"/>
+   <path id="path762" d="m341.18 211.59c0-0.3189 0.27175-0.577 0.6043-0.577 0.33751 0 0.60554 0.2581 0.60554 0.577 0 0.31518-0.26803 0.57328-0.60554 0.57328-0.33255 0-0.6043-0.2581-0.6043-0.57328z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path763" fill="#c8b100" d="m355.04 209.26 0.83138 0.78298-1.0634 1.4009-0.28167 0.11292-0.20723-0.21467-0.37474-1.6925 1.0957-0.38963"/>
+   <path id="path764" d="m355.04 209.26 0.83138 0.78298-1.0634 1.4009-0.28167 0.11292-0.20723-0.21467-0.37474-1.6925 1.0957-0.38963" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path765" fill="#c8b100" d="m356.79 212.07-0.62415 0.58569-1.5064-0.81401-0.12037-0.26182 0.22212-0.1973 1.7236-0.1489 0.30525 0.83634"/>
+   <path id="path766" d="m356.79 212.07-0.62415 0.58569-1.5064-0.81401-0.12037-0.26182 0.22212-0.1973 1.7236-0.1489 0.30525 0.83634" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path767" fill="#c8b100" d="m352.24 211.16 0.3189 0.77429 1.7248-0.15759 0.22087-0.19729-0.1154-0.26679-1.5101-0.79663-0.63904 0.64401"/>
+   <path id="path768" d="m352.24 211.16 0.3189 0.77429 1.7248-0.15759 0.22087-0.19729-0.1154-0.26679-1.5101-0.79663-0.63904 0.64401" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path769" fill="#c8b100" d="m358.21 212.29 0.13897 0.81897 1.7223 0.17869 0.25934-0.14891-0.0645-0.27919-1.293-1.0771-0.76312 0.50751"/>
+   <path id="path770" d="m358.21 212.29 0.13897 0.81897 1.7223 0.17869 0.25934-0.14891-0.0645-0.27919-1.293-1.0771-0.76312 0.50751" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path771" fill="#c8b100" d="m347.54 211.04c0-0.32387 0.26678-0.577 0.60554-0.577 0.32759 0 0.60554 0.25313 0.60554 0.577 0 0.31518-0.27423 0.57328-0.60554 0.57328-0.33876 0-0.60554-0.2581-0.60554-0.57328"/>
+   <path id="path772" d="m347.54 211.04c0-0.32387 0.26678-0.577 0.60554-0.577 0.32759 0 0.60554 0.25313 0.60554 0.577 0 0.31518-0.27423 0.57328-0.60554 0.57328-0.33876 0-0.60554-0.2581-0.60554-0.57328z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path773" fill="#c8b100" d="m353.92 211.59c0-0.3189 0.27174-0.577 0.60554-0.577 0.33627 0 0.6105 0.2581 0.6105 0.577 0 0.31518-0.27423 0.57328-0.6105 0.57328-0.3338 0-0.60554-0.2581-0.60554-0.57328"/>
+   <path id="path774" d="m353.92 211.59c0-0.3189 0.27174-0.577 0.60554-0.577 0.33627 0 0.6105 0.2581 0.6105 0.577 0 0.31518-0.27423 0.57328-0.6105 0.57328-0.3338 0-0.60554-0.2581-0.60554-0.57328z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path775" fill="#c8b100" d="m347.01 204.57c0-0.59561 0.50875-1.0771 1.1366-1.0771 0.62663 0 1.1416 0.48146 1.1416 1.0771 0 0.59437-0.51496 1.0758-1.1416 1.0758-0.62788 0-1.1366-0.48146-1.1366-1.0758"/>
+   <path id="path776" fill="#c8b100" d="m348.95 204.19v0.71349h-1.7571v-0.71349h0.57452v-1.6106h-0.76313v-0.71722h0.76313v-0.70481h0.7532v0.70481h0.74824v0.71722h-0.74824v1.6106h0.42437"/>
+   <path id="path777" d="m348.95 204.19v0.71349h-1.7571v-0.71349h0.57452v-1.6106h-0.76313v-0.71722h0.76313v-0.70481h0.7532v0.70481h0.74824v0.71722h-0.74824v1.6106h0.42437 0.005z" stroke="#000" stroke-width=".36873" fill="none"/>
+   <path id="path778" fill="#c8b100" d="m349.74 204.19v0.71349h-3.1232v-0.71349h1.1552v-1.6106h-0.76313v-0.71722h0.76313v-0.70481h0.7532v0.70481h0.75196v0.71722h-0.75196v1.6106h1.2148"/>
+   <path id="path780" d="m348.48 203.53c0.47152 0.12781 0.814 0.5435 0.814 1.0336 0 0.59437-0.50875 1.0758-1.1416 1.0758-0.62788 0-1.1366-0.48146-1.1366-1.0758 0-0.49883 0.35613-0.91451 0.8413-1.0423" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path781" fill="#c8b100" d="m335.52 213.25c-0.0136 0.0137-0.46656-0.59437-0.8078-0.90087-0.24072-0.21467-0.83137-0.39831-0.83137-0.39831 0-0.1092 0.3462-0.35489 0.72094-0.35489 0.21715 0 0.42437 0.0918 0.54722 0.24569l0.0434-0.237s0.30525 0.0571 0.43926 0.39459c0.13898 0.34992 0.0509 0.87977 0.0509 0.87977s-0.0558 0.24445-0.16256 0.37102"/>
+   <path id="path782" d="m335.52 213.25c-0.0136 0.0137-0.46656-0.59437-0.8078-0.90087-0.24072-0.21467-0.83137-0.39831-0.83137-0.39831 0-0.1092 0.3462-0.35489 0.72094-0.35489 0.21715 0 0.42437 0.0918 0.54722 0.24569l0.0434-0.237s0.30525 0.0571 0.43926 0.39459c0.13898 0.34992 0.0509 0.87977 0.0509 0.87977s-0.0558 0.24445-0.16256 0.37102z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path783" fill="#c8b100" d="m335.55 212.95c0.14394-0.1489 0.43926-0.11788 0.65642 0.0707 0.22211 0.18737 0.28663 0.46284 0.14145 0.61671-0.14145 0.15262-0.43306 0.11788-0.65393-0.0707-0.22336-0.18737-0.28664-0.46781-0.14394-0.61671"/>
+   <path id="path784" d="m335.55 212.95c0.14394-0.1489 0.43926-0.11788 0.65642 0.0707 0.22211 0.18737 0.28663 0.46284 0.14145 0.61671-0.14145 0.15262-0.43306 0.11788-0.65393-0.0707-0.22336-0.18737-0.28664-0.46781-0.14394-0.61671z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path785" fill="#c8b100" d="m360.54 213.25c0.0186 0.0137 0.46657-0.59437 0.81028-0.90087 0.23577-0.21467 0.83138-0.39831 0.83138-0.39831 0-0.1092-0.3462-0.35489-0.72094-0.35489-0.21715 0-0.42561 0.0918-0.5497 0.24569l-0.0459-0.237s-0.3065 0.0571-0.43927 0.39459c-0.13773 0.34992-0.0521 0.87977-0.0521 0.87977s0.0558 0.24445 0.16627 0.37102"/>
+   <path id="path786" d="m360.54 213.25c0.0186 0.0137 0.46657-0.59437 0.81028-0.90087 0.23577-0.21467 0.83138-0.39831 0.83138-0.39831 0-0.1092-0.3462-0.35489-0.72094-0.35489-0.21715 0-0.42561 0.0918-0.5497 0.24569l-0.0459-0.237s-0.3065 0.0571-0.43927 0.39459c-0.13773 0.34992-0.0521 0.87977-0.0521 0.87977s0.0558 0.24445 0.16627 0.37102z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path787" fill="#c8b100" d="m360.56 212.95c-0.14518-0.1489-0.43926-0.11788-0.66138 0.0707-0.22211 0.18737-0.28167 0.46284-0.14394 0.61671 0.14394 0.15262 0.43927 0.11788 0.66014-0.0707 0.22212-0.18737 0.28788-0.46781 0.14518-0.61671"/>
+   <path id="path788" d="m360.56 212.95c-0.14518-0.1489-0.43926-0.11788-0.66138 0.0707-0.22211 0.18737-0.28167 0.46284-0.14394 0.61671 0.14394 0.15262 0.43927 0.11788 0.66014-0.0707 0.22212-0.18737 0.28788-0.46781 0.14518-0.61671z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path789" fill="#c8b100" d="m334.44 227.26h27.464v-7.1995h-27.464v7.1995z"/>
+   <path id="path790" d="m334.44 227.26h27.464v-7.1995h-27.464v7.1995z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path791" fill="#c8b100" d="m359.02 232.05c-0.17248-0.0695-0.30277-0.0782-0.50875-0.0782h-20.567c-0.2035 0-0.39707 0.0347-0.56831 0.10051 0.70729-0.23576 1.2148-0.87481 1.2148-1.628 0-0.75196-0.55342-1.4047-1.2657-1.6491 0.17124 0.0521 0.4008 0.10051 0.6043 0.10051h20.582c0.20598 0 0.40204-0.009 0.577-0.0658l-0.1154 0.0174c-0.73459 0.22708-1.1552 0.87977-1.1552 1.597 0 0.69116 0.46656 1.3836 1.2024 1.6057"/>
+   <path id="path792" stroke-linejoin="round" d="m359.02 232.05c-0.17248-0.0695-0.30277-0.0782-0.50875-0.0782h-20.567c-0.2035 0-0.39707 0.0347-0.56831 0.10051 0.70729-0.23576 1.2148-0.87481 1.2148-1.628 0-0.75196-0.55342-1.4047-1.2657-1.6491 0.17124 0.0521 0.4008 0.10051 0.6043 0.10051h20.582c0.20598 0 0.40204-0.009 0.577-0.0658l-0.1154 0.0174c-0.73459 0.22708-1.1552 0.87977-1.1552 1.597 0 0.69116 0.46656 1.3836 1.2024 1.6057z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path793" fill="#c8b100" d="m337.94 231.97h20.567c0.6924 0 1.257 0.43306 1.257 0.96291 0 0.53357-0.56459 0.96663-1.257 0.96663h-20.567c-0.69736 0-1.262-0.43306-1.262-0.96663 0-0.52985 0.56459-0.96291 1.262-0.96291"/>
+   <path id="path794" d="m337.94 231.97h20.567c0.6924 0 1.257 0.43306 1.257 0.96291 0 0.53357-0.56459 0.96663-1.257 0.96663h-20.567c-0.69736 0-1.262-0.43306-1.262-0.96663 0-0.52985 0.56459-0.96291 1.262-0.96291z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path795" fill="#c8b100" d="m337.93 227.26h20.582c0.6924 0 1.257 0.36729 1.257 0.814 0 0.45416-0.56459 0.82269-1.257 0.82269h-20.582c-0.69612 0-1.2607-0.36853-1.2607-0.82269 0-0.44671 0.56459-0.814 1.2607-0.814"/>
+   <path id="path796" d="m337.93 227.26h20.582c0.6924 0 1.257 0.36729 1.257 0.814 0 0.45416-0.56459 0.82269-1.257 0.82269h-20.582c-0.69612 0-1.2607-0.36853-1.2607-0.82269 0-0.44671 0.56459-0.814 1.2607-0.814z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path797" fill="#0076bc" d="m328.99 348.41c1.9035 0 3.5935-0.39832 4.8418-1.0634 1.2396-0.63036 2.916-1.015 4.7637-1.015 1.8538 0 3.5774 0.38963 4.8158 1.0237 1.2384 0.65269 2.957 1.0547 4.8332 1.0547 1.8948 0 3.5948-0.44175 4.8431-1.1068 1.2284-0.6043 2.8689-0.97159 4.6756-0.97159 1.8625 0 3.5116 0.35488 4.755 0.99765 1.2421 0.66138 2.9756 1.0808 4.8691 1.0808v2.9756c-1.8936 0-3.627-0.43306-4.8691-1.0895-1.2434-0.63905-2.8924-1.0014-4.755-1.0014-1.8067 0-3.4471 0.37102-4.6756 0.98028-1.2434 0.66014-2.9483 1.1106-4.8431 1.1106-1.8712 0-3.5911-0.41072-4.8332-1.0584-1.2384-0.64277-2.957-1.0324-4.8158-1.0324-1.8476 0-3.524 0.38963-4.7637 1.0237-1.2483 0.66511-2.9148 1.0671-4.8145 1.0671l-0.0273-2.9756"/>
+   <path id="path798" d="m328.99 348.41c1.9035 0 3.5935-0.39832 4.8418-1.0634 1.2396-0.63036 2.916-1.015 4.7637-1.015 1.8538 0 3.5774 0.38963 4.8158 1.0237 1.2384 0.65269 2.957 1.0547 4.8332 1.0547 1.8948 0 3.5948-0.44175 4.8431-1.1068 1.2284-0.6043 2.8689-0.97159 4.6756-0.97159 1.8625 0 3.5116 0.35488 4.755 0.99765 1.2421 0.66138 2.9756 1.0808 4.8691 1.0808v2.9756c-1.8936 0-3.627-0.43306-4.8691-1.0895-1.2434-0.63905-2.8924-1.0014-4.755-1.0014-1.8067 0-3.4471 0.37102-4.6756 0.98028-1.2434 0.66014-2.9483 1.1106-4.8431 1.1106-1.8712 0-3.5911-0.41072-4.8332-1.0584-1.2384-0.64277-2.957-1.0324-4.8158-1.0324-1.8476 0-3.524 0.38963-4.7637 1.0237-1.2483 0.66511-2.9148 1.0671-4.8145 1.0671l-0.0273-2.9756z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path799" fill="#ccc" d="m328.99 351.39c1.9035 0 3.5935-0.40203 4.8418-1.0671 1.2396-0.63408 2.916-1.0237 4.7637-1.0237 1.8538 0 3.5774 0.38963 4.8158 1.0324 1.2384 0.64773 2.957 1.0584 4.8332 1.0584 1.8948 0 3.5948-0.45043 4.8431-1.1106 1.2284-0.60926 2.8689-0.98028 4.6756-0.98028 1.8625 0 3.5116 0.36233 4.755 1.0014 1.2421 0.65641 2.9756 1.0895 4.8691 1.0895v2.9669c-1.8936 0-3.627-0.42437-4.8691-1.0808-1.2434-0.64773-2.8924-1.0063-4.755-1.0063-1.8067 0-3.4471 0.37225-4.6756 0.98028-1.2434 0.66138-2.9483 1.1068-4.8431 1.1068-1.8712 0-3.5911-0.41072-4.8332-1.0584-1.2384-0.63904-2.957-1.0287-4.8158-1.0287-1.8476 0-3.524 0.38963-4.7637 1.0237-1.2483 0.66138-2.9148 1.0634-4.8145 1.0634l-0.0273-2.9669"/>
+   <path id="path800" d="m328.99 351.39c1.9035 0 3.5935-0.40203 4.8418-1.0671 1.2396-0.63408 2.916-1.0237 4.7637-1.0237 1.8538 0 3.5774 0.38963 4.8158 1.0324 1.2384 0.64773 2.957 1.0584 4.8332 1.0584 1.8948 0 3.5948-0.45043 4.8431-1.1106 1.2284-0.60926 2.8689-0.98028 4.6756-0.98028 1.8625 0 3.5116 0.36233 4.755 1.0014 1.2421 0.65641 2.9756 1.0895 4.8691 1.0895v2.9669c-1.8936 0-3.627-0.42437-4.8691-1.0808-1.2434-0.64773-2.8924-1.0063-4.755-1.0063-1.8067 0-3.4471 0.37225-4.6756 0.98028-1.2434 0.66138-2.9483 1.1068-4.8431 1.1068-1.8712 0-3.5911-0.41072-4.8332-1.0584-1.2384-0.63904-2.957-1.0287-4.8158-1.0287-1.8476 0-3.524 0.38963-4.7637 1.0237-1.2483 0.66138-2.9148 1.0634-4.8145 1.0634l-0.0273-2.9669" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path801" fill="#0076bc" d="m328.99 354.35c1.9035 0 3.5935-0.40203 4.8418-1.0634 1.2396-0.63408 2.916-1.0237 4.7637-1.0237 1.8538 0 3.5774 0.38963 4.8158 1.0287 1.2384 0.64773 2.957 1.0584 4.8332 1.0584 1.8948 0 3.5948-0.44546 4.8431-1.1068 1.2284-0.60803 2.8689-0.98028 4.6756-0.98028 1.8625 0 3.5116 0.3586 4.755 1.0063 1.2421 0.65642 2.9756 1.0808 4.8691 1.0808v2.9669c-1.8936 0-3.627-0.42437-4.8691-1.0845-1.2434-0.63904-2.8924-0.99765-4.755-0.99765-1.8067 0-3.4471 0.37226-4.6756 0.97532-1.2434 0.6651-2.9483 1.1068-4.8431 1.1068-1.8712 0-3.5911-0.40576-4.8332-1.0535-1.2384-0.63904-2.957-1.0287-4.8158-1.0287-1.8476 0-3.524 0.38467-4.7637 1.02-1.2483 0.66882-2.9148 1.0622-4.8145 1.0622l-0.0273-2.9669"/>
+   <path id="path802" d="m328.99 354.35c1.9035 0 3.5935-0.40203 4.8418-1.0634 1.2396-0.63408 2.916-1.0237 4.7637-1.0237 1.8538 0 3.5774 0.38963 4.8158 1.0287 1.2384 0.64773 2.957 1.0584 4.8332 1.0584 1.8948 0 3.5948-0.44546 4.8431-1.1068 1.2284-0.60803 2.8689-0.98028 4.6756-0.98028 1.8625 0 3.5116 0.3586 4.755 1.0063 1.2421 0.65642 2.9756 1.0808 4.8691 1.0808v2.9669c-1.8936 0-3.627-0.42437-4.8691-1.0845-1.2434-0.63904-2.8924-0.99765-4.755-0.99765-1.8067 0-3.4471 0.37226-4.6756 0.97532-1.2434 0.6651-2.9483 1.1068-4.8431 1.1068-1.8712 0-3.5911-0.40576-4.8332-1.0535-1.2384-0.63904-2.957-1.0287-4.8158-1.0287-1.8476 0-3.524 0.38467-4.7637 1.02-1.2483 0.66882-2.9148 1.0622-4.8145 1.0622l-0.0273-2.9669" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path803" fill="#ccc" d="m329.02 360.29c1.8998 0 3.5662-0.40204 4.8145-1.0671 1.2396-0.63036 2.916-1.0163 4.7637-1.0163 1.8538 0 3.5774 0.38591 4.8158 1.025 1.2384 0.64773 2.957 1.0585 4.8332 1.0585 1.8948 0 3.5948-0.44671 4.8431-1.1118 1.2284-0.60306 2.8689-0.9716 4.6756-0.9716 1.8625 0 3.5116 0.35985 4.755 0.99765 1.2421 0.66138 2.9756 1.0858 4.8691 1.0858v-2.9532c-1.8936 0-3.627-0.44299-4.8691-1.1031-1.2434-0.63904-2.8924-0.99765-4.755-0.99765-1.8067 0-3.4471 0.37226-4.6756 0.97532-1.2434 0.6651-2.9483 1.1068-4.8431 1.1068-1.8712 0-3.5911-0.40576-4.8332-1.0535-1.2384-0.63904-2.957-1.0287-4.8158-1.0287-1.8476 0-3.524 0.38467-4.7637 1.02-1.2483 0.66882-2.9384 1.0622-4.8418 1.0622l0.0273 2.9719"/>
+   <path id="path804" d="m329.02 360.29c1.8998 0 3.5662-0.40204 4.8145-1.0671 1.2396-0.63036 2.916-1.0163 4.7637-1.0163 1.8538 0 3.5774 0.38591 4.8158 1.025 1.2384 0.64773 2.957 1.0585 4.8332 1.0585 1.8948 0 3.5948-0.44671 4.8431-1.1118 1.2284-0.60306 2.8689-0.9716 4.6756-0.9716 1.8625 0 3.5116 0.35985 4.755 0.99765 1.2421 0.66138 2.9756 1.0858 4.8691 1.0858v-2.9532c-1.8936 0-3.627-0.44299-4.8691-1.1031-1.2434-0.63904-2.8924-0.99765-4.755-0.99765-1.8067 0-3.4471 0.37226-4.6756 0.97532-1.2434 0.6651-2.9483 1.1068-4.8431 1.1068-1.8712 0-3.5911-0.40576-4.8332-1.0535-1.2384-0.63904-2.957-1.0287-4.8158-1.0287-1.8476 0-3.524 0.38467-4.7637 1.02-1.2483 0.66882-2.9384 1.0622-4.8418 1.0622l0.0273 2.9719" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path805" fill="#0076bc" d="m329.02 363.26c1.8998 0 3.5662-0.40328 4.8145-1.0634 1.2396-0.63904 2.916-1.0287 4.7637-1.0287 1.8538 0 3.5774 0.39335 4.8158 1.0324 1.2384 0.64772 2.957 1.0597 4.8332 1.0597 1.8948 0 3.5948-0.45167 4.8431-1.1118 1.2284-0.60802 2.8689-0.98028 4.6756-0.98028 1.8625 0 3.5116 0.36357 4.755 1.0063 1.2421 0.65641 2.9756 1.0858 4.8691 1.0858v-2.9458c-1.8936 0-3.627-0.45044-4.8691-1.1118-1.2434-0.6378-2.8924-0.99269-4.755-0.99269-1.8067 0-3.4471 0.3673-4.6756 0.9716-1.2434 0.66014-2.9483 1.1068-4.8431 1.1068-1.8712 0-3.5911-0.41073-4.8332-1.0585-1.2384-0.63904-2.957-1.02-4.8158-1.02-1.8476 0-3.524 0.38095-4.7637 1.015-1.2483 0.66138-2.9334 1.0634-4.8332 1.0634l0.0186 2.9719"/>
+   <path id="path806" d="m329.02 363.26c1.8998 0 3.5662-0.40328 4.8145-1.0634 1.2396-0.63904 2.916-1.0287 4.7637-1.0287 1.8538 0 3.5774 0.39335 4.8158 1.0324 1.2384 0.64772 2.957 1.0597 4.8332 1.0597 1.8948 0 3.5948-0.45167 4.8431-1.1118 1.2284-0.60802 2.8689-0.98028 4.6756-0.98028 1.8625 0 3.5116 0.36357 4.755 1.0063 1.2421 0.65641 2.9756 1.0858 4.8691 1.0858v-2.9458c-1.8936 0-3.627-0.45044-4.8691-1.1118-1.2434-0.6378-2.8924-0.99269-4.755-0.99269-1.8067 0-3.4471 0.3673-4.6756 0.9716-1.2434 0.66014-2.9483 1.1068-4.8431 1.1068-1.8712 0-3.5911-0.41073-4.8332-1.0585-1.2384-0.63904-2.957-1.02-4.8158-1.02-1.8476 0-3.524 0.38095-4.7637 1.015-1.2483 0.66138-2.9334 1.0634-4.8332 1.0634l0.0186 2.9719z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path807" fill="#c8b100" d="m359.01 336.22c-0.0645 0.24942-0.15263 0.49511-0.15263 0.76189 0 1.803 1.556 3.2374 3.4558 3.2374h-28.262c1.8998 0 3.4533-1.4344 3.4533-3.2374 0-0.26306-0.0509-0.51247-0.10671-0.76189 0.15262 0.0571 0.34744 0.0658 0.53605 0.0658h20.567c0.16627 0 0.35985-0.0174 0.50379-0.0658"/>
+   <path id="path808" stroke-linejoin="round" d="m359.01 336.22c-0.0645 0.24942-0.15263 0.49511-0.15263 0.76189 0 1.803 1.556 3.2374 3.4558 3.2374h-28.262c1.8998 0 3.4533-1.4344 3.4533-3.2374 0-0.26306-0.0509-0.51247-0.10671-0.76189 0.15262 0.0571 0.34744 0.0658 0.53605 0.0658h20.567c0.16627 0 0.35985-0.0174 0.50379-0.0658h0.005z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path809" fill="#c8b100" d="m337.94 334.35h20.567c0.6924 0 1.257 0.43802 1.257 0.96787 0 0.53357-0.56459 0.96663-1.257 0.96663h-20.567c-0.69736 0-1.262-0.43306-1.262-0.96663 0-0.52985 0.56459-0.96787 1.262-0.96787"/>
+   <path id="path810" d="m337.94 334.35h20.567c0.6924 0 1.257 0.43802 1.257 0.96787 0 0.53357-0.56459 0.96663-1.257 0.96663h-20.567c-0.69736 0-1.262-0.43306-1.262-0.96663 0-0.52985 0.56459-0.96787 1.262-0.96787z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path811" fill="#c8b100" d="m334.09 347.41h28.192v-7.1908h-28.192v7.1908z"/>
+   <path id="path812" d="m334.09 347.41h28.192v-7.1908h-28.192v7.1908z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path813" fill="#c00" d="m364.48 308.9c2.7919 1.6106 4.6867 3.2597 4.3815 4.0824-0.15387 0.75693-1.0398 1.3215-2.3055 2.1616-1.9916 1.3873-3.2076 3.864-2.2596 5.0069-1.6454-1.3302-2.6852-3.3168-2.6852-5.5268 0-2.3105 1.0957-4.3939 2.8689-5.7241"/>
+   <path id="path814" d="m364.48 308.9c2.7919 1.6106 4.6867 3.2597 4.3815 4.0824-0.15387 0.75693-1.0398 1.3215-2.3055 2.1616-1.9916 1.3873-3.2076 3.864-2.2596 5.0069-1.6454-1.3302-2.6852-3.3168-2.6852-5.5268 0-2.3105 1.0957-4.3939 2.8689-5.7241z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path815" fill="#ccc" d="m338.21 333.19h20.031v-98.141h-20.031v98.141z"/>
+   <path id="path816" d="m352.74 235.01v97.931m2.2522-97.931v97.931" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path817" d="m338.21 333.19h20.031v-98.141h-20.031v98.141z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path818" fill="#c00" d="m317.75 271.76c4.374-1.8067 11.806-3.1456 20.332-3.426 2.9371 0.0223 6.213 0.29781 9.5968 0.8624 11.977 1.999 21.103 6.7826 20.377 10.678-0.0149 0.0831-0.036 0.25314-0.0596 0.32759 0 0 4.4944-10.122 4.5602-10.506 0.80408-4.3232-9.3164-9.6365-22.613-11.855-4.173-0.69612-8.248-0.96663-11.778-0.93188-8.5111 0-15.905 1.0895-20.359 2.7435l-0.0558 12.108"/>
+   <path id="path819" stroke-linejoin="round" d="m317.75 271.76c4.374-1.8067 11.806-3.1456 20.332-3.426 2.9371 0.0223 6.213 0.29781 9.5968 0.8624 11.977 1.999 21.103 6.7826 20.377 10.678-0.0149 0.0831-0.036 0.25314-0.0596 0.32759 0 0 4.4944-10.122 4.5602-10.506 0.80408-4.3232-9.3164-9.6365-22.613-11.855-4.173-0.69612-8.248-0.96663-11.778-0.93188-8.5111 0-15.905 1.0895-20.359 2.7435l-0.0558 12.108" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path820" fill="#c00" d="m358.28 284.08c5.5553-0.39831 9.3486-1.8824 9.778-4.2053 0.34744-1.8514-1.5337-3.8988-4.884-5.7588-1.5014 0.16132-3.189 0.3673-4.93 0.3673l0.036 9.5968"/>
+   <path id="path821" d="m358.28 284.08c5.5553-0.39831 9.3486-1.8824 9.778-4.2053 0.34744-1.8514-1.5337-3.8988-4.884-5.7588-1.5014 0.16132-3.189 0.3673-4.93 0.3673l0.036 9.5968" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path822" fill="#c00" d="m338.18 276.57c-3.4744 0.52489-6.0777 1.3873-7.3806 2.447l-0.11416 0.21343c-0.62415 1.2694 2.4296 3.9695 7.5221 6.9848l-0.0273-9.6452"/>
+   <path id="path823" d="m338.18 276.57c-3.4744 0.52489-6.0777 1.3873-7.3806 2.447l-0.11416 0.21343c-0.62415 1.2694 2.4296 3.9695 7.5221 6.9848l-0.0273-9.6452" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path824" fill="#c00" d="m370.72 303.01c0.52612-1.5846-4.8902-4.7562-12.545-7.5655-3.498-1.252-6.3867-2.5562-9.9666-4.1358-10.633-4.7004-18.489-10.096-17.518-12.065l0.103-0.20102c-0.55963 0.45912-1.4369 10.151-1.4369 10.151-0.97036 1.803 6.2192 7.1201 16 11.812 3.1344 1.4965 9.7544 3.9422 12.879 5.0367 5.5864 1.9382 11.137 5.5926 10.633 6.9488l1.8526-9.9765"/>
+   <path id="path825" stroke-linejoin="round" d="m370.72 303.01c0.52612-1.5846-4.8902-4.7562-12.545-7.5655-3.498-1.252-6.3867-2.5562-9.9666-4.1358-10.633-4.7004-18.489-10.096-17.518-12.065l0.103-0.20102c-0.55963 0.45912-1.4369 10.151-1.4369 10.151-0.97036 1.803 6.2192 7.1201 16 11.812 3.1344 1.4965 9.7544 3.9422 12.879 5.0367 5.5864 1.9382 11.137 5.5926 10.633 6.9488l1.8526-9.9765v-0.005z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path826" fill="#c8b100" d="m330.23 267.45c0.75817-2.8751 1.7372-5.6546 2.6989-8.4676-0.21218 0.0571-0.44298 0.10051-0.65641 0.13526-0.21591 0.031-0.44795 0.0521-0.66883 0.0608-0.45787 2.0226-1.0771 4.0526-1.7422 6.0827-1.1838-1.7757-2.473-3.5005-3.498-5.2948-0.41073 0.0831-0.83759 0.18364-1.257 0.24569-0.41196 0.0608-0.85123 0.0918-1.2756 0.13153 1.7881 2.3973 3.5166 4.7959 5.1756 7.2851 0.19854-0.0521 0.39087-0.11788 0.6105-0.14891 0.19854-0.026 0.40577-0.0211 0.61299-0.0298"/>
+   <path id="path827" fill="#c8b100" d="m337.85 259.04c-0.36606 0.0174-0.73087 0.0434-1.0969 0.0385-0.36358-0.004-0.72839-0.0471-1.0895-0.0744l-0.14766 7.903 5.5268 0.0931c-0.0285-0.16255-0.0695-0.33751-0.0645-0.50379 0-0.16255 0.0509-0.33255 0.0769-0.4951-0.98896 0.0658-2.0685 0.12781-3.3354 0.10547l0.13029-7.0667"/>
+   <path id="path828" fill="#c8b100" d="m346.53 260.34c0.88349 0.0744 1.7335 0.22707 2.5847 0.38094-0.0161-0.16628-0.0422-0.33255-0.0285-0.50379 0.0124-0.16131 0.0745-0.32386 0.12036-0.48145l-7.4812-0.62043c0.0186 0.16627 0.0459 0.32758 0.0285 0.49014-0.0149 0.17496-0.0745 0.33255-0.11789 0.49386 0.76313-0.0174 1.6838-0.0261 2.7138 0.0608l-0.65145 7.1114c0.36481 0.009 0.72962 0.005 1.0907 0.0347 0.36358 0.0273 0.72591 0.0918 1.0858 0.14518l0.65145-7.1114"/>
+   <path id="path829" fill="#c8b100" d="m349.59 268.13c0.36109 0.0571 0.72466 0.10051 1.082 0.17993 0.35488 0.0745 0.70232 0.18861 1.0485 0.28912l0.88721-3.632 0.0968 0.0211c0.20722 0.49883 0.47649 1.1068 0.61422 1.458l1.1093 2.7436c0.43431 0.0695 0.86737 0.12657 1.2942 0.21839 0.43803 0.0968 0.85744 0.22336 1.2793 0.34124l-0.38467-0.82269c-0.59685-1.2384-1.2235-2.4718-1.7409-3.7276 1.3774 0.0608 2.4445-0.43803 2.7125-1.5449 0.18985-0.77058-0.11664-1.3749-0.84255-1.8911-0.53481-0.38094-1.5734-0.58196-2.2435-0.73086l-3.0178-0.66014-1.8948 7.7579m3.8715-6.682c0.86985 0.19234 1.9556 0.33255 1.9556 1.3215-0.005 0.24941-0.0285 0.42438-0.0695 0.58197-0.28167 1.1602-1.1602 1.5622-2.6244 1.1255l0.73831-3.029"/>
+   <path id="path830" fill="#c8b100" d="m363.84 270.5c-0.067 0.85743-0.21963 1.69-0.38591 2.5909 0.37846 0.17992 0.7532 0.34123 1.118 0.54225 0.36481 0.20226 0.70108 0.42438 1.0535 0.64401l0.73955-8.9094c-0.1762-0.0707-0.33379-0.14518-0.49882-0.23204-0.16752-0.0918-0.31022-0.18364-0.46409-0.29408l-7.8546 4.9895c0.20722 0.10051 0.42189 0.19234 0.62415 0.30153 0.2035 0.11416 0.37474 0.23577 0.57824 0.34992 0.6589-0.5559 1.3538-1.0063 2.1479-1.597l2.9396 1.6106 0.002 0.004zm-2.2261-2.035 2.6157-1.6925-0.30525 2.9532-2.3105-1.2607"/>
+   <path id="path831" d="m225.35 187.92c0-1.4009 1.1974-2.5338 2.6716-2.5338 1.4679 0 2.6703 1.1329 2.6703 2.5338 0 1.396-1.1974 2.5289-2.6703 2.5289-1.4742 0-2.6716-1.1329-2.6716-2.5289z" stroke="#000" stroke-width=".062954" fill="none"/>
+   <path id="path832" fill="#c00" d="m255.48 166.08c8.1884 0 15.475 1.2123 20.221 3.0935 2.7162 1.226 6.3631 2.1318 10.355 2.6654 3.0401 0.407 5.9288 0.49014 8.4416 0.29781 3.3603-0.0658 8.2207 0.91823 13.082 3.0587 4.0241 1.7856 7.3831 3.9559 9.6142 6.0566l-1.9308 1.7198-0.55839 4.8828-5.2972 6.0653-2.6468 2.246-6.2701 5.0193-3.2027 0.26182-0.97408 2.7708-40.566-4.7525-40.69 4.7525-0.97532-2.7708-3.2076-0.26182-6.2688-5.0193-2.648-2.246-5.2948-6.0653-0.55094-4.8828-1.9407-1.7198c2.241-2.1008 5.6012-4.271 9.6154-6.0566 4.8617-2.1405 9.7234-3.1245 13.081-3.0587 2.5127 0.19233 5.4027 0.10919 8.4428-0.29781 3.9931-0.53357 7.6437-1.4394 10.355-2.6654 4.7513-1.8812 11.631-3.0935 19.814-3.0935"/>
+   <path id="path833" d="m255.48 166.08c8.1884 0 15.475 1.2123 20.221 3.0935 2.7162 1.226 6.3631 2.1318 10.355 2.6654 3.0401 0.407 5.9288 0.49014 8.4416 0.29781 3.3603-0.0658 8.2207 0.91823 13.082 3.0587 4.0241 1.7856 7.3831 3.9559 9.6142 6.0566l-1.9308 1.7198-0.55839 4.8828-5.2972 6.0653-2.6468 2.246-6.2701 5.0193-3.2027 0.26182-0.97408 2.7708-40.566-4.7525-40.69 4.7525-0.97532-2.7708-3.2076-0.26182-6.2688-5.0193-2.648-2.246-5.2948-6.0653-0.55094-4.8828-1.9407-1.7198c2.241-2.1008 5.6012-4.271 9.6154-6.0566 4.8617-2.1405 9.7234-3.1245 13.081-3.0587 2.5127 0.19233 5.4027 0.10919 8.4428-0.29781 3.9931-0.53357 7.6437-1.4394 10.355-2.6654 4.7513-1.8812 11.631-3.0935 19.814-3.0935z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path838" fill="#c8b100" d="m256.11 219.63c-15.114-0.0223-28.653-1.8117-38.314-4.7215-0.7073-0.21467-1.0771-0.8624-1.0361-1.5325-0.0124-0.65145 0.3524-1.2421 1.0361-1.4481 9.6613-2.9061 23.2-4.6954 38.314-4.7178 15.111 0.0223 28.64 1.8117 38.303 4.7178 0.68371 0.20599 1.0423 0.79664 1.0299 1.4481 0.0372 0.67006-0.32758 1.3178-1.0299 1.5325-9.6626 2.9098-23.192 4.6992-38.303 4.7215"/>
+   <path id="path840" fill="#c00" d="m256.07 217.65c-13.64-0.0174-25.968-1.592-35.352-4.0167 9.3846-2.4284 21.713-3.9124 35.352-3.9385 13.637 0.0261 26.031 1.5101 35.415 3.9385-9.3846 2.4246-21.778 3.9993-35.415 4.0167"/>
+   <path id="path1477" d="m257.08 217.73v-8.0935" stroke="#000" stroke-width=".11542" fill="none"/>
+   <path id="path1478" d="m254.88 217.73v-8.0935" stroke="#000" stroke-width=".16992" fill="none"/>
+   <path id="path1479" d="m252.81 217.73v-8.0935" stroke="#000" stroke-width=".22763" fill="none"/>
+   <path id="path1480" d="m250.75 217.73v-8.0935" stroke="#000" stroke-width=".28533" fill="none"/>
+   <path id="path1481" d="m248.92 217.73v-8.0935" stroke="#000" stroke-width=".34304" fill="none"/>
+   <path id="path1482" d="m245.42 217.3-0.0484-7.3665m1.7058 7.4634v-7.7053" stroke="#000" stroke-width=".40075" fill="none"/>
+   <path id="path1483" d="m242.2 216.97v-6.787m1.6353 6.9808-0.0484-7.2227" stroke="#000" stroke-width=".45525" fill="none"/>
+   <path id="path1484" d="m237.86 216.58v-5.963m1.4208 6.0599v-6.2537m1.4637 6.4475v-6.4962" stroke="#000" stroke-width=".51296" fill="none"/>
+   <path id="path1485" d="m236.35 216.53v-5.7685" stroke="#000" stroke-width=".57067" fill="none"/>
+   <path id="path1486" d="m234.93 216.24v-5.3809" stroke="#000" stroke-width=".62838" fill="none"/>
+   <path id="path1487" d="m233.41 216.09v-4.9933" stroke="#000" stroke-width=".68608" fill="none"/>
+   <path id="path1488" d="m230.31 215.66-0.0484-3.9755m1.6408 4.1693v-4.46" stroke="#000" stroke-width=".74059" fill="none"/>
+   <path id="path1489" d="m228.71 215.32v-3.491" stroke="#000" stroke-width=".78227" fill="none"/>
+   <path id="path1490" d="m227.26 215.03v-2.9071" stroke="#000" stroke-width=".83997" fill="none"/>
+   <path id="path1491" d="m225.66 214.65v-2.2769" stroke="#000" stroke-width=".89447" fill="none"/>
+   <path id="path1492" d="m224.03 214.45v-1.6955" stroke="#000" stroke-width=".94898" fill="none"/>
+   <path id="path1493" d="m222.3 214.07v-0.82394" stroke="#000" stroke-width="1.1189" fill="none"/>
+   <path id="path1494" d="m265.83 217.3v-7.4146m-3.7243 7.6572 0.0484-7.851m-2.7628 7.9479v-7.9966" stroke="#000" stroke-width=".057708" fill="none"/>
+   <path id="path834" fill="#c8b100" d="m256 207.2c-15.295 0.0298-29.023 1.9469-38.685 4.9225 0.80284-0.38095 0.73087-1.3699-0.26802-3.9422-1.2061-3.1121-3.086-2.9756-3.086-2.9756 10.683-3.1555 25.553-5.1297 42.104-5.1508 16.557 0.0211 31.546 1.9953 42.23 5.1508 0 0-1.8812-0.13649-3.0873 2.9756-0.99765 2.5723-1.0721 3.5613-0.26802 3.9422-9.6614-2.9756-23.646-4.8927-38.939-4.9225"/>
+   <path id="path835" stroke-linejoin="round" d="m256 207.2c-15.295 0.0298-29.023 1.9469-38.685 4.9225 0.80284-0.38095 0.73087-1.3699-0.26802-3.9422-1.2061-3.1121-3.086-2.9756-3.086-2.9756 10.683-3.1555 25.553-5.1297 42.104-5.1508 16.557 0.0211 31.546 1.9953 42.23 5.1508 0 0-1.8812-0.13649-3.0873 2.9756-0.99765 2.5723-1.0721 3.5613-0.26802 3.9422-9.6614-2.9756-23.646-4.8927-38.939-4.9225z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path836" fill="#c8b100" d="m256.07 200.06c-16.551 0.0261-31.421 1.9953-42.104 5.1558-0.71226 0.21343-1.4655-0.0658-1.6963-0.73955-0.2308-0.67503 0.15262-1.4493 0.86488-1.6677 10.728-3.2908 25.982-5.3568 42.939-5.3915 16.96 0.031 32.272 2.1008 43.002 5.3915 0.71225 0.21839 1.0957 0.99269 0.86488 1.6677-0.23205 0.67379-0.98525 0.95298-1.6963 0.73955-10.684-3.1605-25.618-5.1297-42.174-5.1558"/>
+   <path id="path837" d="m256.07 200.06c-16.551 0.0261-31.421 1.9953-42.104 5.1558-0.71226 0.21343-1.4655-0.0658-1.6963-0.73955-0.2308-0.67503 0.15262-1.4493 0.86488-1.6677 10.728-3.2908 25.982-5.3568 42.939-5.3915 16.96 0.031 32.272 2.1008 43.002 5.3915 0.71225 0.21839 1.0957 0.99269 0.86488 1.6677-0.23205 0.67379-0.98525 0.95298-1.6963 0.73955-10.684-3.1605-25.618-5.1297-42.174-5.1558z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path839" d="m256.11 219.63c-15.114-0.0223-28.653-1.8117-38.314-4.7215-0.7073-0.21467-1.0771-0.8624-1.0361-1.5325-0.0124-0.65145 0.3524-1.2421 1.0361-1.4481 9.6613-2.9061 23.2-4.6954 38.314-4.7178 15.111 0.0223 28.64 1.8117 38.303 4.7178 0.68371 0.20599 1.0423 0.79664 1.0299 1.4481 0.0372 0.67006-0.32758 1.3178-1.0299 1.5325-9.6626 2.9098-23.192 4.6992-38.303 4.7215z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path859" stroke-linejoin="round" d="m256.07 217.65c-13.64-0.0174-25.968-1.592-35.352-4.0167 9.3846-2.4284 21.713-3.9124 35.352-3.9385 13.637 0.0261 26.031 1.5101 35.415 3.9385-9.3846 2.4246-21.778 3.9993-35.415 4.0167z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path860" fill="#fff" d="m244.26 203.82c0-0.70481 0.6043-1.2781 1.3488-1.2781 0.74948 0 1.355 0.57328 1.355 1.2781 0 0.70357-0.60554 1.2818-1.355 1.2818-0.74452 0-1.3488-0.57824-1.3488-1.2818"/>
+   <path id="path861" d="m244.26 203.82c0-0.70481 0.6043-1.2781 1.3488-1.2781 0.74948 0 1.355 0.57328 1.355 1.2781 0 0.70357-0.60554 1.2818-1.355 1.2818-0.74452 0-1.3488-0.57824-1.3488-1.2818z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path862" fill="#c00" d="m256.1 204.82h-4.0502c-0.747 0-1.3662-0.56956-1.3662-1.2781 0-0.70481 0.60554-1.2818 1.3501-1.2818h8.186c0.74452 0 1.3513 0.577 1.3513 1.2818 0 0.70853-0.61919 1.2781-1.3699 1.2781h-4.101"/>
+   <path id="path863" d="m256.1 204.82h-4.0502c-0.747 0-1.3662-0.56956-1.3662-1.2781 0-0.70481 0.60554-1.2818 1.3501-1.2818h8.186c0.74452 0 1.3513 0.577 1.3513 1.2818 0 0.70853-0.61919 1.2781-1.3699 1.2781h-4.101" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path864" fill="#05906f" d="m235.75 205.94-2.9136 0.33752c-0.74327 0.0869-1.432-0.41197-1.525-1.1081-0.0906-0.70357 0.43679-1.3426 1.1801-1.4258l2.9297-0.34124 2.9806-0.34247c0.73831-0.0869 1.4133 0.40328 1.5064 1.1081 0.0869 0.69985-0.45291 1.3426-1.1925 1.4258l-2.9656 0.3462"/>
+   <path id="path865" d="m235.75 205.94-2.9136 0.33752c-0.74327 0.0869-1.432-0.41197-1.525-1.1081-0.0906-0.70357 0.43679-1.3426 1.1801-1.4258l2.9297-0.34124 2.9806-0.34247c0.73831-0.0869 1.4133 0.40328 1.5064 1.1081 0.0869 0.69985-0.45291 1.3426-1.1925 1.4258l-2.9656 0.3462" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path866" fill="#fff" d="m223.92 206.19c0-0.70481 0.60554-1.2781 1.3488-1.2781 0.74948 0 1.3538 0.57328 1.3538 1.2781 0 0.70853-0.6043 1.2818-1.3538 1.2818-0.74327 0-1.3488-0.57328-1.3488-1.2818"/>
+   <path id="path867" d="m223.92 206.19c0-0.70481 0.60554-1.2781 1.3488-1.2781 0.74948 0 1.3538 0.57328 1.3538 1.2781 0 0.70853-0.6043 1.2818-1.3538 1.2818-0.74327 0-1.3488-0.57328-1.3488-1.2818z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path868" fill="#c00" d="m214.91 208.52 1.5027-1.9655 4.1494 0.52489-3.3181 2.4209-2.3341-0.98028"/>
+   <path id="path869" d="m214.91 208.52 1.5027-1.9655 4.1494 0.52489-3.3181 2.4209-2.3341-0.98028" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path870" fill="#05906f" d="m276.45 205.94 2.9111 0.33752c0.73831 0.0869 1.4332-0.41197 1.525-1.1081 0.0831-0.70357-0.43927-1.3426-1.1788-1.4258l-2.9284-0.34124-2.9806-0.34247c-0.74452-0.0869-1.4183 0.40328-1.5064 1.1081-0.0931 0.69985 0.45292 1.3426 1.1912 1.4258l2.9669 0.3462"/>
+   <path id="path871" d="m276.45 205.94 2.9111 0.33752c0.73831 0.0869 1.4332-0.41197 1.525-1.1081 0.0831-0.70357-0.43927-1.3426-1.1788-1.4258l-2.9284-0.34124-2.9806-0.34247c-0.74452-0.0869-1.4183 0.40328-1.5064 1.1081-0.0931 0.69985 0.45292 1.3426 1.1912 1.4258l2.9669 0.3462" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path872" fill="#fff" d="m265.24 203.82c0-0.70481 0.60554-1.2781 1.35-1.2781 0.74824 0 1.3538 0.57328 1.3538 1.2781 0 0.70357-0.60554 1.2818-1.3538 1.2818-0.74451 0-1.35-0.57824-1.35-1.2818"/>
+   <path id="path873" d="m265.24 203.82c0-0.70481 0.60554-1.2781 1.35-1.2781 0.74824 0 1.3538 0.57328 1.3538 1.2781 0 0.70357-0.60554 1.2818-1.3538 1.2818-0.74451 0-1.35-0.57824-1.35-1.2818z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path874" fill="#fff" d="m285.58 206.19c0-0.70481 0.60554-1.2781 1.3501-1.2781 0.74824 0 1.3538 0.57328 1.3538 1.2781 0 0.70853-0.60554 1.2818-1.3538 1.2818-0.74452 0-1.3501-0.57328-1.3501-1.2818"/>
+   <path id="path875" d="m285.58 206.19c0-0.70481 0.60554-1.2781 1.3501-1.2781 0.74824 0 1.3538 0.57328 1.3538 1.2781 0 0.70853-0.60554 1.2818-1.3538 1.2818-0.74452 0-1.3501-0.57328-1.3501-1.2818z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path876" fill="#c00" d="m297.29 208.52-1.5014-1.9655-4.1494 0.52489 3.3181 2.4209 2.3328-0.98028"/>
+   <path id="path877" d="m297.29 208.52-1.5014-1.9655-4.1494 0.52489 3.3181 2.4209 2.3328-0.98028" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path878" d="m219.09 214.07c9.5559-2.6828 22.549-4.3455 36.983-4.3716 14.432 0.0261 27.49 1.6888 37.046 4.3716" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path879" fill="#c8b100" d="m225.52 176.8 1.7099 1.3699 2.5636-4.1879c-2.782-1.7025-4.6892-4.6607-4.6892-8.0308 0-0.38095 0.0223-0.75196 0.0695-1.1205 0.26803-5.3432 6.7776-9.7581 15.044-9.7581 4.2884 0 8.1611 1.1726 10.887 3.055 0.0732-0.82766 0.14766-1.5362 0.26306-2.2894-3.0029-1.7509-6.8992-2.8044-11.15-2.8044-9.5038 0-16.939 5.399-17.3 11.793-0.0372 0.37226-0.0558 0.74824-0.0558 1.1242 0 3.4099 1.5585 6.481 4.0204 8.6165l-1.3625 2.2323"/>
+   <path id="path880" d="m225.52 176.8 1.7099 1.3699 2.5636-4.1879c-2.782-1.7025-4.6892-4.6607-4.6892-8.0308 0-0.38095 0.0223-0.75196 0.0695-1.1205 0.26803-5.3432 6.7776-9.7581 15.044-9.7581 4.2884 0 8.1611 1.1726 10.887 3.055 0.0732-0.82766 0.14766-1.5362 0.26306-2.2894-3.0029-1.7509-6.8992-2.8044-11.15-2.8044-9.5038 0-16.939 5.399-17.3 11.793-0.0372 0.37226-0.0558 0.74824-0.0558 1.1242 0 3.4099 1.5585 6.481 4.0204 8.6165l-1.3625 2.2323" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path881" fill="#c8b100" d="m225.63 176.84c-3.2436-2.4197-5.2575-5.7104-5.2575-9.3338 0-4.1742 2.7299-7.8981 6.8793-10.366-2.5599 2.0561-4.1122 4.7128-4.3343 7.6797-0.0372 0.37226-0.0558 0.74824-0.0558 1.1242 0 3.4099 1.5585 6.481 4.0204 8.6165l-1.252 2.2795"/>
+   <path id="path882" d="m225.63 176.84c-3.2436-2.4197-5.2575-5.7104-5.2575-9.3338 0-4.1742 2.7299-7.8981 6.8793-10.366-2.5599 2.0561-4.1122 4.7128-4.3343 7.6797-0.0372 0.37226-0.0558 0.74824-0.0558 1.1242 0 3.4099 1.5585 6.481 4.0204 8.6165l-1.252 2.2795" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path883" fill="#c8b100" d="m197.02 181.07c-1.8166-2.035-2.9297-4.6644-2.9297-7.5395 0-1.7335 0.4008-3.3913 1.1267-4.8704 2.6244-5.4002 10.859-9.33 20.645-9.33 2.6666 0 5.2178 0.28912 7.5742 0.82641-0.5224 0.56955-0.93313 1.195-1.3327 1.8253-1.9581-0.38095-4.0551-0.58693-6.2415-0.58693-8.959 0-16.454 3.4843-18.625 8.1922-0.57824 1.1999-0.9021 2.5388-0.9021 3.9434 0 2.8614 1.3401 5.4263 3.4384 7.1772l-3.2436 5.2985-1.7372-1.3823 2.2273-3.5489"/>
+   <path id="path884" d="m197.02 181.07c-1.8166-2.035-2.9297-4.6644-2.9297-7.5395 0-1.7335 0.4008-3.3913 1.1267-4.8704 2.6244-5.4002 10.859-9.33 20.645-9.33 2.6666 0 5.2178 0.28912 7.5742 0.82641-0.5224 0.56955-0.93313 1.195-1.3327 1.8253-1.9581-0.38095-4.0551-0.58693-6.2415-0.58693-8.959 0-16.454 3.4843-18.625 8.1922-0.57824 1.1999-0.9021 2.5388-0.9021 3.9434 0 2.8614 1.3401 5.4263 3.4384 7.1772l-3.2436 5.2985-1.7372-1.3823 2.2273-3.5489v-0.005z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path885" fill="#c8b100" d="m200.34 163.32c-2.3564 1.4828-4.1408 3.3081-5.1248 5.3432-0.7259 1.4791-1.1267 3.1369-1.1267 4.8704 0 2.8751 1.113 5.5045 2.9297 7.5395l-1.9692 3.1952c-1.8849-2.4209-2.9805-5.2476-2.9805-8.2542 0-5.1769 3.2945-9.7011 8.2716-12.694"/>
+   <path id="path886" d="m200.34 163.32c-2.3564 1.4828-4.1408 3.3081-5.1248 5.3432-0.7259 1.4791-1.1267 3.1369-1.1267 4.8704 0 2.8751 1.113 5.5045 2.9297 7.5395l-1.9692 3.1952c-1.8849-2.4209-2.9805-5.2476-2.9805-8.2542 0-5.1769 3.2945-9.7011 8.2716-12.694z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path887" fill="#c8b100" d="m255.96 151.96c2.1715 0 4.039 1.4357 4.4832 3.3615 0.29036 1.7025 0.47153 3.6407 0.51248 5.7055 0.004 0.21467-0.0149 0.42438-0.0149 0.63532 0.006 0.24445 0.0521 0.50752 0.0558 0.75693 0.0745 4.3318 0.69365 8.1562 1.5759 10.498l-6.6163 6.3284-6.687-6.3284c0.88722-2.3415 1.5014-6.1658 1.5846-10.498 0.005-0.24941 0.0521-0.51248 0.0521-0.75693 0-0.21094-0.0149-0.42065-0.01-0.63532 0.0323-2.0648 0.21715-4.003 0.50875-5.7055 0.43927-1.9258 2.3837-3.3615 4.5515-3.3615"/>
+   <path id="path888" d="m255.96 151.96c2.1715 0 4.039 1.4357 4.4832 3.3615 0.29036 1.7025 0.47153 3.6407 0.51248 5.7055 0.004 0.21467-0.0149 0.42438-0.0149 0.63532 0.006 0.24445 0.0521 0.50752 0.0558 0.75693 0.0745 4.3318 0.69365 8.1562 1.5759 10.498l-6.6163 6.3284-6.687-6.3284c0.88722-2.3415 1.5014-6.1658 1.5846-10.498 0.005-0.24941 0.0521-0.51248 0.0521-0.75693 0-0.21094-0.0149-0.42065-0.01-0.63532 0.0323-2.0648 0.21715-4.003 0.50875-5.7055 0.43927-1.9258 2.3837-3.3615 4.5515-3.3615h0.004z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path889" fill="#c8b100" d="m255.96 154.02c1.1279 0 2.0784 0.71846 2.3105 1.7149 0.27299 1.6106 0.44795 3.4496 0.48518 5.3915 0 0.20226-0.01 0.40328-0.01 0.59934 0 0.24073 0.0422 0.48145 0.0471 0.72714 0.0695 4.0911 0.65642 7.6971 1.4965 9.9157l-4.3616 4.1308-4.3666-4.1308c0.83262-2.2137 1.4196-5.8246 1.4928-9.9157 0.005-0.24569 0.0471-0.48641 0.0509-0.72714 0-0.19606-0.0137-0.39708-0.0137-0.59934 0.0372-1.9419 0.21219-3.7809 0.4889-5.3915 0.22708-0.99641 1.257-1.7149 2.38-1.7149"/>
+   <path id="path890" d="m255.96 154.02c1.1279 0 2.0784 0.71846 2.3105 1.7149 0.27299 1.6106 0.44795 3.4496 0.48518 5.3915 0 0.20226-0.01 0.40328-0.01 0.59934 0 0.24073 0.0422 0.48145 0.0471 0.72714 0.0695 4.0911 0.65642 7.6971 1.4965 9.9157l-4.3616 4.1308-4.3666-4.1308c0.83262-2.2137 1.4196-5.8246 1.4928-9.9157 0.005-0.24569 0.0471-0.48641 0.0509-0.72714 0-0.19606-0.0137-0.39708-0.0137-0.59934 0.0372-1.9419 0.21219-3.7809 0.4889-5.3915 0.22708-0.99641 1.257-1.7149 2.38-1.7149z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path891" fill="#c8b100" d="m286.36 176.8-1.7099 1.3699-2.5636-4.1879c2.7808-1.7025 4.6892-4.6607 4.6892-8.0308 0-0.38095-0.0223-0.75196-0.0683-1.1205-0.26431-5.3432-6.7838-9.7581-15.042-9.7581-4.2971 0-8.1661 1.1726-10.895 3.055-0.0745-0.82766-0.13898-1.5362-0.2643-2.2894 3.0041-1.7509 6.8992-2.8044 11.159-2.8044 9.5013 0 16.935 5.399 17.3 11.793 0.0323 0.37226 0.0509 0.74824 0.0509 1.1242 0 3.4099-1.556 6.481-4.0192 8.6165l1.3625 2.2323"/>
+   <path id="path892" d="m286.36 176.8-1.7099 1.3699-2.5636-4.1879c2.7808-1.7025 4.6892-4.6607 4.6892-8.0308 0-0.38095-0.0223-0.75196-0.0683-1.1205-0.26431-5.3432-6.7838-9.7581-15.042-9.7581-4.2971 0-8.1661 1.1726-10.895 3.055-0.0745-0.82766-0.13898-1.5362-0.2643-2.2894 3.0041-1.7509 6.8992-2.8044 11.159-2.8044 9.5013 0 16.935 5.399 17.3 11.793 0.0323 0.37226 0.0509 0.74824 0.0509 1.1242 0 3.4099-1.556 6.481-4.0192 8.6165l1.3625 2.2323" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path893" fill="#c8b100" d="m286.25 176.84c3.2436-2.4197 5.2588-5.7104 5.2588-9.3338 0-4.1742-2.7324-7.8981-6.8756-10.366 2.5549 2.0561 4.106 4.7128 4.3331 7.6797 0.0323 0.37226 0.0509 0.74824 0.0509 1.1242 0 3.4099-1.556 6.481-4.0192 8.6165l1.252 2.2795"/>
+   <path id="path894" d="m286.25 176.84c3.2436-2.4197 5.2588-5.7104 5.2588-9.3338 0-4.1742-2.7324-7.8981-6.8756-10.366 2.5549 2.0561 4.106 4.7128 4.3331 7.6797 0.0323 0.37226 0.0509 0.74824 0.0509 1.1242 0 3.4099-1.556 6.481-4.0192 8.6165l1.252 2.2795" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path895" fill="#c8b100" d="m314.87 181.07c1.8117-2.035 2.9235-4.6644 2.9235-7.5395 0-1.7335-0.4008-3.3913-1.1205-4.8704-2.6294-5.4002-10.864-9.33-20.652-9.33-2.6666 0-5.2166 0.28912-7.573 0.82641 0.52736 0.56955 0.93437 1.195 1.3364 1.8253 1.9494-0.38095 4.0564-0.58693 6.2316-0.58693 8.9615 0 16.46 3.4843 18.627 8.1922 0.58197 1.1999 0.90211 2.5388 0.90211 3.9434 0 2.8614-1.3401 5.4263-3.4384 7.1772l3.2436 5.2985 1.7422-1.3823-2.2261-3.5489"/>
+   <path id="path896" d="m314.87 181.07c1.8117-2.035 2.9235-4.6644 2.9235-7.5395 0-1.7335-0.4008-3.3913-1.1205-4.8704-2.6294-5.4002-10.864-9.33-20.652-9.33-2.6666 0-5.2166 0.28912-7.573 0.82641 0.52736 0.56955 0.93437 1.195 1.3364 1.8253 1.9494-0.38095 4.0564-0.58693 6.2316-0.58693 8.9615 0 16.46 3.4843 18.627 8.1922 0.58197 1.1999 0.90211 2.5388 0.90211 3.9434 0 2.8614-1.3401 5.4263-3.4384 7.1772l3.2436 5.2985 1.7422-1.3823-2.2261-3.5489 0.004-0.005z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path897" fill="#c8b100" d="m311.54 163.32c2.3564 1.4828 4.1408 3.3081 5.1297 5.3432 0.71598 1.4791 1.1205 3.1369 1.1205 4.8704 0 2.8751-1.1118 5.5045-2.9235 7.5395l1.9643 3.1952c1.8849-2.4209 2.9756-5.2476 2.9756-8.2542 0-5.1769-3.2895-9.7011-8.2666-12.694"/>
+   <path id="path898" d="m311.54 163.32c2.3564 1.4828 4.1408 3.3081 5.1297 5.3432 0.71598 1.4791 1.1205 3.1369 1.1205 4.8704 0 2.8751-1.1118 5.5045-2.9235 7.5395l1.9643 3.1952c1.8849-2.4209 2.9756-5.2476 2.9756-8.2542 0-5.1769-3.2895-9.7011-8.2666-12.694z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path900" fill="#fff" d="m253.61 173.73c0-1.2247 1.0535-2.2137 2.3477-2.2137s2.3477 0.98896 2.3477 2.2137c0 1.2297-1.0535 2.2236-2.3477 2.2236s-2.3477-0.99393-2.3477-2.2236"/>
+   <path id="path901" d="m253.61 173.73c0-1.2247 1.0535-2.2137 2.3477-2.2137s2.3477 0.98896 2.3477 2.2137c0 1.2297-1.0535 2.2236-2.3477 2.2236s-2.3477-0.99393-2.3477-2.2236z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path902" fill="#fff" d="m253.61 169.38c0-1.2247 1.0535-2.2236 2.3477-2.2236s2.3477 0.99889 2.3477 2.2236c0 1.226-1.0535 2.2187-2.3477 2.2187s-2.3477-0.99269-2.3477-2.2187"/>
+   <path id="path903" d="m253.61 169.38c0-1.2247 1.0535-2.2236 2.3477-2.2236s2.3477 0.99889 2.3477 2.2236c0 1.226-1.0535 2.2187-2.3477 2.2187s-2.3477-0.99269-2.3477-2.2187z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path904" fill="#fff" d="m254.08 164.7c0-0.98028 0.84131-1.772 1.8762-1.772 1.0299 0 1.8712 0.79167 1.8712 1.772 0 0.98028-0.8413 1.7732-1.8712 1.7732-1.0349 0-1.8762-0.79291-1.8762-1.7732"/>
+   <path id="path905" d="m254.08 164.7c0-0.98028 0.84131-1.772 1.8762-1.772 1.0299 0 1.8712 0.79167 1.8712 1.772 0 0.98028-0.8413 1.7732-1.8712 1.7732-1.0349 0-1.8762-0.79291-1.8762-1.7732z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path906" fill="#fff" d="m254.61 160.47c0-0.70357 0.60554-1.2768 1.35-1.2768 0.74824 0 1.3488 0.57328 1.3488 1.2768 0 0.70977-0.60058 1.283-1.3488 1.283-0.74451 0-1.35-0.57328-1.35-1.283"/>
+   <path id="path907" d="m254.61 160.47c0-0.70357 0.60554-1.2768 1.35-1.2768 0.74824 0 1.3488 0.57328 1.3488 1.2768 0 0.70977-0.60058 1.283-1.3488 1.283-0.74451 0-1.35-0.57328-1.35-1.283z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path908" fill="#fff" d="m254.88 156.78c0-0.56955 0.48394-1.0237 1.082-1.0237 0.59562 0 1.0808 0.45416 1.0808 1.0237 0 0.5646-0.48517 1.0237-1.0808 1.0237-0.59809 0-1.082-0.45911-1.082-1.0237"/>
+   <path id="path909" d="m254.88 156.78c0-0.56955 0.48394-1.0237 1.082-1.0237 0.59562 0 1.0808 0.45416 1.0808 1.0237 0 0.5646-0.48517 1.0237-1.0808 1.0237-0.59809 0-1.082-0.45911-1.082-1.0237z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path910" fill="#c8b100" d="m256.16 187.1 1.525 0.28044c-0.24569 0.6167-0.29657 1.2905-0.29657 2.0003 0 3.163 2.7175 5.7365 6.0628 5.7365 2.6852 0 4.9721-1.6628 5.7576-3.9596 0.0881 0.0608 0.57824-2.0747 0.83138-2.0487 0.21219 0.0223 0.18985 2.2187 0.26802 2.179 0.38839 2.8924 3.0314 4.8493 6.007 4.8493 3.3404 0 6.0492-2.5599 6.0492-5.7291 0-0.23576-0.0136-0.47153-0.0459-0.69985l1.8985-1.8811 1.02 2.3973c-0.40576 0.7532-0.56707 1.5982-0.56707 2.5041 0 3.024 2.5872 5.4697 5.7812 5.4697 2.009 0 3.7735-0.96663 4.8096-2.4333l1.2148-1.5449-0.009 1.8948c0 1.9035 0.80407 3.6109 2.6616 3.9124 0 0 2.133 0.13153 4.9585-2.0871 2.8279-2.2187 4.3852-4.0564 4.3852-4.0564l0.24321 2.2224s-2.3465 3.6283-4.9014 5.1074c-1.396 0.81401-3.5166 1.6665-5.2029 1.391-1.7844-0.28912-3.055-1.7198-3.7102-3.3689-1.2719 0.74824-2.7733 1.185-4.3815 1.185-3.4558 0-6.5617-1.8948-7.7901-4.7475-1.5896 1.7149-3.8032 2.7696-6.3991 2.7696-2.7597 0-5.2873-1.2421-6.8719-3.1506-1.5573 1.4183-3.6742 2.2931-6.007 2.2931-3.055 0-5.7799-1.4965-7.3248-3.7548-1.5424 2.2584-4.2648 3.7548-7.3149 3.7548-2.3316 0-4.4534-0.87481-6.012-2.2931-1.5784 1.9084-4.111 3.1506-6.8694 3.1506-2.5971 0-4.8108-1.0547-6.4016-2.7696-1.2272 2.8527-4.3318 4.7475-7.7889 4.7475-1.6094 0-3.1046-0.43678-4.3753-1.185-0.66138 1.6491-1.932 3.0798-3.7114 3.3689-1.6863 0.27547-3.807-0.577-5.2066-1.391-2.5562-1.4791-4.9002-5.1074-4.9002-5.1074l0.24569-2.2224s1.5585 1.8377 4.3815 4.0564c2.8279 2.2224 4.9585 2.0871 4.9585 2.0871 1.8576-0.30153 2.6604-2.009 2.6604-3.9124l-0.009-1.8948 1.2148 1.5449c1.0349 1.4667 2.8056 2.4333 4.8108 2.4333 3.1927 0 5.7799-2.4457 5.7799-5.4697 0-0.90583-0.16256-1.7509-0.56832-2.5041l1.02-2.3973 1.901 1.8811c-0.0285 0.22832-0.0459 0.46409-0.0459 0.69985 0 3.1692 2.7051 5.7291 6.048 5.7291 2.9806 0 5.6186-1.9568 6.007-4.8493 0.0831 0.0397 0.0608-2.1566 0.27175-2.179 0.25065-0.0261 0.74451 2.1095 0.82765 2.0487 0.79043 2.2968 3.0736 3.9596 5.7675 3.9596 3.3441 0 6.0529-2.5736 6.0529-5.7365 0-0.70978-0.0422-1.3836-0.29161-2.0003l1.5809-0.28044"/>
+   <path id="path911" d="m256.16 187.1 1.525 0.28044c-0.24569 0.6167-0.29657 1.2905-0.29657 2.0003 0 3.163 2.7175 5.7365 6.0628 5.7365 2.6852 0 4.9721-1.6628 5.7576-3.9596 0.0881 0.0608 0.57824-2.0747 0.83138-2.0487 0.21219 0.0223 0.18985 2.2187 0.26802 2.179 0.38839 2.8924 3.0314 4.8493 6.007 4.8493 3.3404 0 6.0492-2.5599 6.0492-5.7291 0-0.23576-0.0136-0.47153-0.0459-0.69985l1.8985-1.8811 1.02 2.3973c-0.40576 0.7532-0.56707 1.5982-0.56707 2.5041 0 3.024 2.5872 5.4697 5.7812 5.4697 2.009 0 3.7735-0.96663 4.8096-2.4333l1.2148-1.5449-0.009 1.8948c0 1.9035 0.80407 3.6109 2.6616 3.9124 0 0 2.133 0.13153 4.9585-2.0871 2.8279-2.2187 4.3852-4.0564 4.3852-4.0564l0.24321 2.2224s-2.3465 3.6283-4.9014 5.1074c-1.396 0.81401-3.5166 1.6665-5.2029 1.391-1.7844-0.28912-3.055-1.7198-3.7102-3.3689-1.2719 0.74824-2.7733 1.185-4.3815 1.185-3.4558 0-6.5617-1.8948-7.7901-4.7475-1.5896 1.7149-3.8032 2.7696-6.3991 2.7696-2.7597 0-5.2873-1.2421-6.8719-3.1506-1.5573 1.4183-3.6742 2.2931-6.007 2.2931-3.055 0-5.7799-1.4965-7.3248-3.7548-1.5424 2.2584-4.2648 3.7548-7.3149 3.7548-2.3316 0-4.4534-0.87481-6.012-2.2931-1.5784 1.9084-4.111 3.1506-6.8694 3.1506-2.5971 0-4.8108-1.0547-6.4016-2.7696-1.2272 2.8527-4.3318 4.7475-7.7889 4.7475-1.6094 0-3.1046-0.43678-4.3753-1.185-0.66138 1.6491-1.932 3.0798-3.7114 3.3689-1.6863 0.27547-3.807-0.577-5.2066-1.391-2.5562-1.4791-4.9002-5.1074-4.9002-5.1074l0.24569-2.2224s1.5585 1.8377 4.3815 4.0564c2.8279 2.2224 4.9585 2.0871 4.9585 2.0871 1.8576-0.30153 2.6604-2.009 2.6604-3.9124l-0.009-1.8948 1.2148 1.5449c1.0349 1.4667 2.8056 2.4333 4.8108 2.4333 3.1927 0 5.7799-2.4457 5.7799-5.4697 0-0.90583-0.16256-1.7509-0.56832-2.5041l1.02-2.3973 1.901 1.8811c-0.0285 0.22832-0.0459 0.46409-0.0459 0.69985 0 3.1692 2.7051 5.7291 6.048 5.7291 2.9806 0 5.6186-1.9568 6.007-4.8493 0.0831 0.0397 0.0608-2.1566 0.27175-2.179 0.25065-0.0261 0.74451 2.1095 0.82765 2.0487 0.79043 2.2968 3.0736 3.9596 5.7675 3.9596 3.3441 0 6.0529-2.5736 6.0529-5.7365 0-0.70978-0.0422-1.3836-0.29161-2.0003l1.5809-0.28044" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path912" fill="#fff" d="m297.76 194.66c0.34992-1.0274 0.0372-2.0437-0.70233-2.2658-0.73831-0.23204-1.6268 0.41569-1.9767 1.4394-0.35241 1.0237-0.0372 2.035 0.70232 2.267 0.73832 0.22212 1.6255-0.42065 1.9767-1.4406"/>
+   <path id="path913" d="m297.76 194.66c0.34992-1.0274 0.0372-2.0437-0.70233-2.2658-0.73831-0.23204-1.6268 0.41569-1.9767 1.4394-0.35241 1.0237-0.0372 2.035 0.70232 2.267 0.73832 0.22212 1.6255-0.42065 1.9767-1.4406z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path914" fill="#fff" d="m271.42 189.56c0.13773-1.0721-0.37474-2.0077-1.1466-2.0958-0.77181-0.0918-1.5114 0.69985-1.6491 1.7682-0.13898 1.0671 0.3735 2.009 1.1453 2.1008 0.77182 0.0869 1.5114-0.70481 1.6504-1.7732"/>
+   <path id="path915" d="m271.42 189.56c0.13773-1.0721-0.37474-2.0077-1.1466-2.0958-0.77181-0.0918-1.5114 0.69985-1.6491 1.7682-0.13898 1.0671 0.3735 2.009 1.1453 2.1008 0.77182 0.0869 1.5114-0.70481 1.6504-1.7732z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path916" fill="#fff" d="m240.84 189.56c-0.13773-1.0721 0.37971-2.0077 1.1466-2.0958 0.77182-0.0918 1.5114 0.69985 1.6504 1.7682 0.13277 1.0671-0.37475 2.009-1.1466 2.1008-0.77182 0.0869-1.5114-0.70481-1.6504-1.7732"/>
+   <path id="path917" d="m240.84 189.56c-0.13773-1.0721 0.37971-2.0077 1.1466-2.0958 0.77182-0.0918 1.5114 0.69985 1.6504 1.7682 0.13277 1.0671-0.37475 2.009-1.1466 2.1008-0.77182 0.0869-1.5114-0.70481-1.6504-1.7732z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path918" fill="#fff" d="m214.5 194.66c-0.35117-1.0274-0.0372-2.0437 0.70233-2.2658 0.73955-0.23204 1.6218 0.41569 1.973 1.4394 0.3462 1.0237 0.0323 2.035-0.70233 2.267-0.73956 0.22212-1.6218-0.42065-1.973-1.4406"/>
+   <path id="path919" d="m214.5 194.66c-0.35117-1.0274-0.0372-2.0437 0.70233-2.2658 0.73955-0.23204 1.6218 0.41569 1.973 1.4394 0.3462 1.0237 0.0323 2.035-0.70233 2.267-0.73956 0.22212-1.6218-0.42065-1.973-1.4406z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path920" fill="#c8b100" d="m225.94 177.08c1.3079 0.82641 2.4495 2.2013 2.8453 3.7375 0 0 0.15386-0.31518 0.87356-0.73086 0.72591-0.40701 1.3401-0.3946 1.3401-0.3946s-0.20722 1.195-0.30897 1.6243c-0.10547 0.41941-0.1154 1.7025-0.39211 2.8577-0.27796 1.1552-0.78175 2.0784-0.78175 2.0784-0.51247-0.42066-1.2148-0.63036-1.9407-0.51248-0.72094 0.12285-1.3029 0.54722-1.6355 1.1068 0 0-0.80904-0.70357-1.4841-1.6975-0.67875-0.99393-1.1404-2.1926-1.3997-2.5562-0.25438-0.3673-0.87853-1.4258-0.87853-1.4258s0.57452-0.21467 1.4009-0.062c0.82642 0.15387 1.0858 0.40328 1.0858 0.40328-0.17497-1.5796 0.34744-3.23 1.2756-4.4286"/>
+   <path id="path921" d="m225.94 177.08c1.3079 0.82641 2.4495 2.2013 2.8453 3.7375 0 0 0.15386-0.31518 0.87356-0.73086 0.72591-0.40701 1.3401-0.3946 1.3401-0.3946s-0.20722 1.195-0.30897 1.6243c-0.10547 0.41941-0.1154 1.7025-0.39211 2.8577-0.27796 1.1552-0.78175 2.0784-0.78175 2.0784-0.51247-0.42066-1.2148-0.63036-1.9407-0.51248-0.72094 0.12285-1.3029 0.54722-1.6355 1.1068 0 0-0.80904-0.70357-1.4841-1.6975-0.67875-0.99393-1.1404-2.1926-1.3997-2.5562-0.25438-0.3673-0.87853-1.4258-0.87853-1.4258s0.57452-0.21467 1.4009-0.062c0.82642 0.15387 1.0858 0.40328 1.0858 0.40328-0.17497-1.5796 0.34744-3.23 1.2756-4.4286z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path922" fill="#c8b100" d="m226.49 189.66c-0.41569-0.32883-0.72963-0.78794-0.83138-1.3302-0.10299-0.53853 0.0137-1.0721 0.28664-1.5101 0 0-1.092-0.55094-2.2608-0.85743-0.88722-0.23205-2.4482-0.24073-2.9198-0.24942-0.47153-0.0136-1.4133-0.0347-1.4133-0.0347s0.0782 0.21467 0.3462 0.68247c0.32262 0.56459 0.60926 0.91824 0.60926 0.91824-1.5622 0.35985-2.8924 1.3873-3.7338 2.5785 1.221 0.84379 2.8428 1.3563 4.4361 1.1937 0 0-0.13898 0.42561-0.23949 1.0684-0.0831 0.52985-0.0782 0.74824-0.0782 0.74824s0.87729-0.32387 1.3166-0.48518c0.43927-0.16255 1.9035-0.67006 2.6567-1.1776 0.984-0.67379 1.8253-1.5412 1.8253-1.5412"/>
+   <path id="path923" d="m226.49 189.66c-0.41569-0.32883-0.72963-0.78794-0.83138-1.3302-0.10299-0.53853 0.0137-1.0721 0.28664-1.5101 0 0-1.092-0.55094-2.2608-0.85743-0.88722-0.23205-2.4482-0.24073-2.9198-0.24942-0.47153-0.0136-1.4133-0.0347-1.4133-0.0347s0.0782 0.21467 0.3462 0.68247c0.32262 0.56459 0.60926 0.91824 0.60926 0.91824-1.5622 0.35985-2.8924 1.3873-3.7338 2.5785 1.221 0.84379 2.8428 1.3563 4.4361 1.1937 0 0-0.13898 0.42561-0.23949 1.0684-0.0831 0.52985-0.0782 0.74824-0.0782 0.74824s0.87729-0.32387 1.3166-0.48518c0.43927-0.16255 1.9035-0.67006 2.6567-1.1776 0.984-0.67379 1.8253-1.5412 1.8253-1.5412v-0.004z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path924" fill="#c8b100" d="m230 189.07c0.27175-0.43679 0.40204-0.9716 0.30029-1.5139-0.10175-0.54225-0.39832-1.0014-0.81401-1.3302 0 0 0.82269-0.87108 1.8067-1.5399 0.74948-0.50751 2.2174-1.02 2.6567-1.1776 0.43927-0.16131 1.3178-0.49014 1.3178-0.49014s0.004 0.22336-0.0794 0.75321c-0.10051 0.63904-0.24073 1.0634-0.24073 1.0634 1.5958-0.16628 3.22 0.36729 4.441 1.216-0.84007 1.1863-2.1802 2.1963-3.7375 2.5562 0 0 0.28168 0.35365 0.60926 0.91824 0.26803 0.47277 0.34745 0.68248 0.34745 0.68248s-0.94306-0.0211-1.4146-0.0298c-0.47152-0.009-2.0325-0.0136-2.9197-0.24941-1.1689-0.31145-2.2733-0.85371-2.2733-0.85371"/>
+   <path id="path925" d="m230 189.07c0.27175-0.43679 0.40204-0.9716 0.30029-1.5139-0.10175-0.54225-0.39832-1.0014-0.81401-1.3302 0 0 0.82269-0.87108 1.8067-1.5399 0.74948-0.50751 2.2174-1.02 2.6567-1.1776 0.43927-0.16131 1.3178-0.49014 1.3178-0.49014s0.004 0.22336-0.0794 0.75321c-0.10051 0.63904-0.24073 1.0634-0.24073 1.0634 1.5958-0.16628 3.22 0.36729 4.441 1.216-0.84007 1.1863-2.1802 2.1963-3.7375 2.5562 0 0 0.28168 0.35365 0.60926 0.91824 0.26803 0.47277 0.34745 0.68248 0.34745 0.68248s-0.94306-0.0211-1.4146-0.0298c-0.47152-0.009-2.0325-0.0136-2.9197-0.24941-1.1689-0.31145-2.2733-0.85371-2.2733-0.85371v-0.005z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path926" fill="#c00" d="m225.35 187.92c0-1.4009 1.1974-2.5338 2.6716-2.5338 1.4679 0 2.6703 1.1329 2.6703 2.5338 0 1.396-1.1974 2.5289-2.6703 2.5289-1.4742 0-2.6716-1.1329-2.6716-2.5289"/>
+   <path id="path927" d="m225.35 187.92c0-1.4009 1.1974-2.5338 2.6716-2.5338 1.4679 0 2.6703 1.1329 2.6703 2.5338 0 1.396-1.1974 2.5289-2.6703 2.5289-1.4742 0-2.6716-1.1329-2.6716-2.5289z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path928" fill="#c8b100" d="m256.06 173.03c1.2843 1.1639 2.2733 2.9048 2.3986 4.6954 0 0 0.2308-0.32387 1.123-0.64773 0.89093-0.32387 1.5746-0.1973 1.5746-0.1973s-0.47525 1.3004-0.68372 1.7546c-0.20722 0.4554-0.47525 1.8824-1.0312 3.1121-0.53978 1.2384-1.293 2.1703-1.293 2.1703-0.49014-0.55963-1.2284-0.9232-2.0611-0.9232-0.82765 0-1.566 0.36357-2.0561 0.9232 0 0-0.7532-0.93189-1.2979-2.1703-0.55094-1.2297-0.82269-2.6567-1.0262-3.1121-0.20722-0.45416-0.68868-1.7546-0.68868-1.7546s0.68868-0.12657 1.5759 0.1973c0.89093 0.32386 1.1279 0.64773 1.1279 0.64773 0.12408-1.7906 1.0584-3.5315 2.3378-4.6954"/>
+   <path id="path929" d="m256.06 173.03c1.2843 1.1639 2.2733 2.9048 2.3986 4.6954 0 0 0.2308-0.32387 1.123-0.64773 0.89093-0.32387 1.5746-0.1973 1.5746-0.1973s-0.47525 1.3004-0.68372 1.7546c-0.20722 0.4554-0.47525 1.8824-1.0312 3.1121-0.53978 1.2384-1.293 2.1703-1.293 2.1703-0.49014-0.55963-1.2284-0.9232-2.0611-0.9232-0.82765 0-1.566 0.36357-2.0561 0.9232 0 0-0.7532-0.93189-1.2979-2.1703-0.55094-1.2297-0.82269-2.6567-1.0262-3.1121-0.20722-0.45416-0.68868-1.7546-0.68868-1.7546s0.68868-0.12657 1.5759 0.1973c0.89093 0.32386 1.1279 0.64773 1.1279 0.64773 0.12408-1.7906 1.0584-3.5315 2.3378-4.6954z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path930" fill="#c8b100" d="m254.07 187.16c-0.39708-0.44175-0.65145-1.015-0.65145-1.6367 0-0.61671 0.23576-1.1937 0.63284-1.628 0 0-1.0994-0.82269-2.3378-1.3823-0.93809-0.42934-2.6803-0.7259-3.2027-0.82269-0.52613-0.10051-1.5709-0.29781-1.5709-0.29781s0.0422 0.24942 0.24445 0.82269c0.24569 0.69613 0.49014 1.1428 0.49014 1.1428-1.8104 0.10919-3.5166 1.0101-4.6991 2.179 1.1825 1.159 2.8838 2.0387 4.6991 2.1579 0 0-0.24445 0.44175-0.49014 1.1416-0.20226 0.56459-0.24445 0.81773-0.24445 0.81773s1.0448-0.19233 1.5709-0.28788c0.5224-0.10547 2.2646-0.39832 3.2027-0.83138 1.2384-0.56087 2.3564-1.3699 2.3564-1.3699"/>
+   <path id="path931" d="m254.07 187.16c-0.39708-0.44175-0.65145-1.015-0.65145-1.6367 0-0.61671 0.23576-1.1937 0.63284-1.628 0 0-1.0994-0.82269-2.3378-1.3823-0.93809-0.42934-2.6803-0.7259-3.2027-0.82269-0.52613-0.10051-1.5709-0.29781-1.5709-0.29781s0.0422 0.24942 0.24445 0.82269c0.24569 0.69613 0.49014 1.1428 0.49014 1.1428-1.8104 0.10919-3.5166 1.0101-4.6991 2.179 1.1825 1.159 2.8838 2.0387 4.6991 2.1579 0 0-0.24445 0.44175-0.49014 1.1416-0.20226 0.56459-0.24445 0.81773-0.24445 0.81773s1.0448-0.19233 1.5709-0.28788c0.5224-0.10547 2.2646-0.39832 3.2027-0.83138 1.2384-0.56087 2.3564-1.3699 2.3564-1.3699v-0.005z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path932" fill="#c8b100" d="m258.09 187.16c0.39708-0.44175 0.65021-1.015 0.65021-1.6367 0-0.61671-0.23452-1.1937-0.63283-1.628 0 0 1.1006-0.82269 2.339-1.3823 0.94181-0.42934 2.684-0.7259 3.2064-0.82269 0.51743-0.10051 1.561-0.29781 1.561-0.29781s-0.036 0.24942-0.24445 0.82269c-0.24569 0.69613-0.48518 1.1428-0.48518 1.1428 1.8117 0.10919 3.5154 1.0101 4.6942 2.179-1.1788 1.159-2.8788 2.0387-4.6942 2.1579 0 0 0.23949 0.44175 0.48518 1.1416 0.2035 0.56459 0.24445 0.81773 0.24445 0.81773s-1.0386-0.19233-1.561-0.28788c-0.52241-0.10547-2.2646-0.39832-3.2064-0.83138-1.2384-0.56087-2.3564-1.3699-2.3564-1.3699"/>
+   <path id="path933" d="m258.09 187.16c0.39708-0.44175 0.65021-1.015 0.65021-1.6367 0-0.61671-0.23452-1.1937-0.63283-1.628 0 0 1.1006-0.82269 2.339-1.3823 0.94181-0.42934 2.684-0.7259 3.2064-0.82269 0.51743-0.10051 1.561-0.29781 1.561-0.29781s-0.036 0.24942-0.24445 0.82269c-0.24569 0.69613-0.48518 1.1428-0.48518 1.1428 1.8117 0.10919 3.5154 1.0101 4.6942 2.179-1.1788 1.159-2.8788 2.0387-4.6942 2.1579 0 0 0.23949 0.44175 0.48518 1.1416 0.2035 0.56459 0.24445 0.81773 0.24445 0.81773s-1.0386-0.19233-1.561-0.28788c-0.52241-0.10547-2.2646-0.39832-3.2064-0.83138-1.2384-0.56087-2.3564-1.3699-2.3564-1.3699v-0.005z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path934" fill="#c8b100" d="m286.32 177.08c-1.3029 0.82641-2.4433 2.2013-2.8416 3.7375 0 0-0.15883-0.31518-0.87729-0.73086-0.72094-0.40701-1.3414-0.3946-1.3414-0.3946s0.20846 1.195 0.31518 1.6243c0.10671 0.41941 0.11043 1.7025 0.38715 2.8577 0.27795 1.1552 0.7805 2.0784 0.7805 2.0784 0.51868-0.42066 1.221-0.63036 1.942-0.51248 0.71969 0.12285 1.3029 0.54722 1.6404 1.1068 0 0 0.80408-0.70357 1.4841-1.6975 0.67379-0.99393 1.1404-2.1926 1.3898-2.5562 0.25438-0.3673 0.88349-1.4258 0.88349-1.4258s-0.57824-0.21467-1.4046-0.062c-0.82766 0.15387-1.087 0.40328-1.087 0.40328 0.18489-1.5796-0.34247-3.23-1.2706-4.4286"/>
+   <path id="path935" d="m286.32 177.08c-1.3029 0.82641-2.4433 2.2013-2.8416 3.7375 0 0-0.15883-0.31518-0.87729-0.73086-0.72094-0.40701-1.3414-0.3946-1.3414-0.3946s0.20846 1.195 0.31518 1.6243c0.10671 0.41941 0.11043 1.7025 0.38715 2.8577 0.27795 1.1552 0.7805 2.0784 0.7805 2.0784 0.51868-0.42066 1.221-0.63036 1.942-0.51248 0.71969 0.12285 1.3029 0.54722 1.6404 1.1068 0 0 0.80408-0.70357 1.4841-1.6975 0.67379-0.99393 1.1404-2.1926 1.3898-2.5562 0.25438-0.3673 0.88349-1.4258 0.88349-1.4258s-0.57824-0.21467-1.4046-0.062c-0.82766 0.15387-1.087 0.40328-1.087 0.40328 0.18489-1.5796-0.34247-3.23-1.2706-4.4286z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path936" fill="#c8b100" d="m285.77 189.66c0.41197-0.32883 0.73087-0.78794 0.82641-1.3302 0.10299-0.53853-0.009-1.0721-0.28043-1.5101 0 0 1.0858-0.55094 2.2534-0.85743 0.88846-0.23205 2.4544-0.24073 2.9198-0.24942 0.47277-0.0136 1.4146-0.0347 1.4146-0.0347s-0.0745 0.21467-0.34496 0.68247c-0.3251 0.56459-0.6105 0.91824-0.6105 0.91824 1.561 0.35985 2.8912 1.3873 3.7338 2.5785-1.216 0.84379-2.8378 1.3563-4.4361 1.1937 0 0 0.1427 0.42561 0.24073 1.0684 0.0769 0.52985 0.0732 0.74824 0.0732 0.74824s-0.87853-0.32387-1.3116-0.48518c-0.43927-0.16255-1.9047-0.67006-2.6579-1.1776-0.97904-0.67379-1.8203-1.5412-1.8203-1.5412"/>
+   <path id="path937" d="m285.77 189.66c0.41197-0.32883 0.73087-0.78794 0.82641-1.3302 0.10299-0.53853-0.009-1.0721-0.28043-1.5101 0 0 1.0858-0.55094 2.2534-0.85743 0.88846-0.23205 2.4544-0.24073 2.9198-0.24942 0.47277-0.0136 1.4146-0.0347 1.4146-0.0347s-0.0745 0.21467-0.34496 0.68247c-0.3251 0.56459-0.6105 0.91824-0.6105 0.91824 1.561 0.35985 2.8912 1.3873 3.7338 2.5785-1.216 0.84379-2.8378 1.3563-4.4361 1.1937 0 0 0.1427 0.42561 0.24073 1.0684 0.0769 0.52985 0.0732 0.74824 0.0732 0.74824s-0.87853-0.32387-1.3116-0.48518c-0.43927-0.16255-1.9047-0.67006-2.6579-1.1776-0.97904-0.67379-1.8203-1.5412-1.8203-1.5412v-0.004z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path938" fill="#c8b100" d="m282.26 189.07c-0.27299-0.43679-0.39707-0.9716-0.30152-1.5139 0.10299-0.54225 0.40328-1.0014 0.81772-1.3302 0 0-0.82641-0.87108-1.8104-1.5399-0.74824-0.50751-2.2187-1.02-2.6567-1.1776-0.43926-0.16131-1.3128-0.49014-1.3128-0.49014s-0.004 0.22336 0.0782 0.75321c0.098 0.63904 0.23701 1.0634 0.23701 1.0634-1.5945-0.16628-3.2213 0.36729-4.4373 1.216 0.84254 1.1863 2.1777 2.1963 3.735 2.5562 0 0-0.28167 0.35365-0.60678 0.91824-0.27175 0.47277-0.34496 0.68248-0.34496 0.68248s0.93685-0.0211 1.4084-0.0298c0.46656-0.009 2.0387-0.0136 2.9198-0.24941 1.1652-0.31145 2.2695-0.85371 2.2695-0.85371"/>
+   <path id="path939" d="m282.26 189.07c-0.27299-0.43679-0.39707-0.9716-0.30152-1.5139 0.10299-0.54225 0.40328-1.0014 0.81772-1.3302 0 0-0.82641-0.87108-1.8104-1.5399-0.74824-0.50751-2.2187-1.02-2.6567-1.1776-0.43926-0.16131-1.3128-0.49014-1.3128-0.49014s-0.004 0.22336 0.0782 0.75321c0.098 0.63904 0.23701 1.0634 0.23701 1.0634-1.5945-0.16628-3.2213 0.36729-4.4373 1.216 0.84254 1.1863 2.1777 2.1963 3.735 2.5562 0 0-0.28167 0.35365-0.60678 0.91824-0.27175 0.47277-0.34496 0.68248-0.34496 0.68248s0.93685-0.0211 1.4084-0.0298c0.46656-0.009 2.0387-0.0136 2.9198-0.24941 1.1652-0.31145 2.2695-0.85371 2.2695-0.85371l0.005-0.005z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path940" fill="#c00" d="m281.56 187.92c0-1.4009 1.195-2.5338 2.6703-2.5338 1.4791 0 2.6753 1.1329 2.6753 2.5338 0 1.396-1.1962 2.5289-2.6753 2.5289-1.4754 0-2.6703-1.1329-2.6703-2.5289"/>
+   <path id="path941" d="m281.56 187.92c0-1.4009 1.195-2.5338 2.6703-2.5338 1.4791 0 2.6753 1.1329 2.6753 2.5338 0 1.396-1.1962 2.5289-2.6753 2.5289-1.4754 0-2.6703-1.1329-2.6703-2.5289z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path942" fill="#c00" d="m311.44 193.54c-0.62912-0.6651-1.932-0.52489-2.9061 0.30649-0.97531 0.82641-1.2582 2.0437-0.62911 2.7038 0.62911 0.6651 1.932 0.52116 2.9061-0.30525 0.97532-0.83634 1.2582-2.0487 0.62912-2.7051"/>
+   <path id="path943" d="m311.44 193.54c-0.62912-0.6651-1.932-0.52489-2.9061 0.30649-0.97531 0.82641-1.2582 2.0437-0.62911 2.7038 0.62911 0.6651 1.932 0.52116 2.9061-0.30525 0.97532-0.83634 1.2582-2.0487 0.62912-2.7051z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path944" fill="#c8b100" d="m307.64 195.15c0.13401-0.4554 0.43926-0.91948 0.88721-1.3042 0.97408-0.83138 2.277-0.97159 2.9061-0.30649 0.0782 0.0881 0.16628 0.20598 0.21715 0.31021 0 0 1.3538-2.5686 2.957-3.421 1.6044-0.8624 4.317-0.64401 4.317-0.64401 0-1.9692-1.6131-3.5613-3.6928-3.5613-1.2198 0-2.375 0.50751-3.055 1.365l-0.28044-1.3215s-1.6727 0.33255-2.4408 2.2447c-0.76189 1.9171 0.0695 4.6867 0.0695 4.6867s-0.41569-1.19-1.0436-1.9829c-0.62415-0.7867-2.2274-1.6491-3.0637-2.0424-0.83634-0.38963-1.6913-0.97656-1.6913-0.97656s-0.0372 0.21467-0.0695 0.74451c-0.0323 0.63409 0.0186 1.0237 0.0186 1.0237-1.5337-0.20102-3.323 0.0484-4.7178 0.59065 0.59561 1.1726 1.7322 2.2757 3.22 2.8403 0 0-0.53605 0.44174-1.0262 0.92692-0.40576 0.41197-0.53481 0.6043-0.53481 0.6043s1.0485 0.1489 1.5759 0.22336c0.52117 0.0695 2.2633 0.34496 3.3032 0.27547 0.76685-0.0484 1.6268-0.17496 2.1442-0.27547"/>
+   <path id="path945" stroke-linejoin="round" d="m307.64 195.15c0.13401-0.4554 0.43926-0.91948 0.88721-1.3042 0.97408-0.83138 2.277-0.97159 2.9061-0.30649 0.0782 0.0881 0.16628 0.20598 0.21715 0.31021 0 0 1.3538-2.5686 2.957-3.421 1.6044-0.8624 4.317-0.64401 4.317-0.64401 0-1.9692-1.6131-3.5613-3.6928-3.5613-1.2198 0-2.375 0.50751-3.055 1.365l-0.28044-1.3215s-1.6727 0.33255-2.4408 2.2447c-0.76189 1.9171 0.0695 4.6867 0.0695 4.6867s-0.41569-1.19-1.0436-1.9829c-0.62415-0.7867-2.2274-1.6491-3.0637-2.0424-0.83634-0.38963-1.6913-0.97656-1.6913-0.97656s-0.0372 0.21467-0.0695 0.74451c-0.0323 0.63409 0.0186 1.0237 0.0186 1.0237-1.5337-0.20102-3.323 0.0484-4.7178 0.59065 0.59561 1.1726 1.7322 2.2757 3.22 2.8403 0 0-0.53605 0.44174-1.0262 0.92692-0.40576 0.41197-0.53481 0.6043-0.53481 0.6043s1.0485 0.1489 1.5759 0.22336c0.52117 0.0695 2.2633 0.34496 3.3032 0.27547 0.76685-0.0484 1.6268-0.17496 2.1442-0.27547z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path946" fill="#c00" d="m200.82 193.54c0.63284-0.6651 1.932-0.52489 2.9073 0.30649 0.97904 0.82641 1.2558 2.0437 0.62788 2.7038-0.62788 0.6651-1.932 0.52116-2.9061-0.30525-0.97532-0.83634-1.257-2.0487-0.62912-2.7051"/>
+   <path id="path947" d="m200.82 193.54c0.63284-0.6651 1.932-0.52489 2.9073 0.30649 0.97904 0.82641 1.2558 2.0437 0.62788 2.7038-0.62788 0.6651-1.932 0.52116-2.9061-0.30525-0.97532-0.83634-1.257-2.0487-0.62912-2.7051z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path948" fill="#c8b100" d="m204.62 195.15c-0.13402-0.4554-0.43679-0.91948-0.88722-1.3042-0.97532-0.83138-2.2745-0.97159-2.9073-0.30649-0.0831 0.0881-0.16627 0.20598-0.21715 0.31021 0 0-1.3587-2.5686-2.9619-3.421-1.5982-0.8624-4.3108-0.64401-4.3108-0.64401 0-1.9692 1.6131-3.5613 3.6916-3.5613 1.2247 0 2.3713 0.50751 3.0587 1.365l0.27795-1.3215s1.6727 0.33255 2.4395 2.2447c0.76562 1.9171-0.0695 4.6867-0.0695 4.6867s0.41569-1.19 1.0448-1.9829c0.62788-0.7867 2.2311-1.6491 3.0662-2.0424 0.83386-0.38963 1.6925-0.97656 1.6925-0.97656s0.0323 0.21467 0.0658 0.74451c0.0323 0.63409-0.0186 1.0237-0.0186 1.0237 1.5287-0.20102 3.3218 0.0484 4.7178 0.59065-0.59685 1.1726-1.7298 2.2757-3.2213 2.8403 0 0 0.53605 0.44174 1.025 0.92692 0.40824 0.41197 0.54101 0.6043 0.54101 0.6043s-1.0535 0.1489-1.5746 0.22336c-0.52861 0.0695-2.2646 0.34496-3.3044 0.27547-0.76686-0.0484-1.6268-0.17496-2.1479-0.27547"/>
+   <path id="path949" stroke-linejoin="round" d="m204.62 195.15c-0.13402-0.4554-0.43679-0.91948-0.88722-1.3042-0.97532-0.83138-2.2745-0.97159-2.9073-0.30649-0.0831 0.0881-0.16627 0.20598-0.21715 0.31021 0 0-1.3587-2.5686-2.9619-3.421-1.5982-0.8624-4.3108-0.64401-4.3108-0.64401 0-1.9692 1.6131-3.5613 3.6916-3.5613 1.2247 0 2.3713 0.50751 3.0587 1.365l0.27795-1.3215s1.6727 0.33255 2.4395 2.2447c0.76562 1.9171-0.0695 4.6867-0.0695 4.6867s0.41569-1.19 1.0448-1.9829c0.62788-0.7867 2.2311-1.6491 3.0662-2.0424 0.83386-0.38963 1.6925-0.97656 1.6925-0.97656s0.0323 0.21467 0.0658 0.74451c0.0323 0.63409-0.0186 1.0237-0.0186 1.0237 1.5287-0.20102 3.3218 0.0484 4.7178 0.59065-0.59685 1.1726-1.7298 2.2757-3.2213 2.8403 0 0 0.53605 0.44174 1.025 0.92692 0.40824 0.41197 0.54101 0.6043 0.54101 0.6043s-1.0535 0.1489-1.5746 0.22336c-0.52861 0.0695-2.2646 0.34496-3.3044 0.27547-0.76686-0.0484-1.6268-0.17496-2.1479-0.27547z" stroke="#000" stroke-linecap="round" stroke-width=".48115" fill="none"/>
+   <path id="path950" fill="#c00" d="m253.41 185.53c0-1.3997 1.1962-2.5289 2.6703-2.5289s2.6753 1.1292 2.6753 2.5289c0 1.4009-1.1962 2.5338-2.6753 2.5338-1.4741 0-2.6703-1.1329-2.6703-2.5338"/>
+   <path id="path951" d="m253.41 185.53c0-1.3997 1.1962-2.5289 2.6703-2.5289s2.6753 1.1292 2.6753 2.5289c0 1.4009-1.1962 2.5338-2.6753 2.5338-1.4741 0-2.6703-1.1329-2.6703-2.5338z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path952" fill="#0076bc" d="m250.53 147.07c0-2.8627 2.4457-5.1732 5.4573-5.1732 3.0128 0 5.4573 2.3105 5.4573 5.1732 0 2.8527-2.4445 5.1632-5.4573 5.1632-3.0116 0-5.4573-2.3105-5.4573-5.1632"/>
+   <path id="path953" fill="#c8b100" d="m262.33 146.34v2.8056h-12.333v-2.8056h4.5602v-8.1562h-2.9979v-2.8093h2.9979v-2.7919h2.9669v2.7919h2.9855v2.8093h-2.9855v8.1562h4.8009"/>
+   <path id="path954" d="m262.33 146.34v2.8056h-12.333v-2.8056h4.5602v-8.1562h-2.9979v-2.8093h2.9979v-2.7919h2.9669v2.7919h2.9855v2.8093h-2.9855v8.1562h4.8009 0.005z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path960" fill="#ccc" d="m256.52 365.24c-16.121 0-32.1-3.9521-45.533-10.525-9.9021-4.9051-16.467-14.795-16.467-26.111v-41.039h123.76v41.039c0 11.317-6.5654 21.206-16.469 26.111-13.432 6.5728-29.161 10.525-45.288 10.525"/>
+   <path id="path955" fill="#c8b100" d="m260.45 146.34v2.8056h-8.8858v-2.8056h2.9979v-8.1562h-2.9979v-2.8093h2.9979v-2.7919h2.9669v2.7919h2.9855v2.8093h-2.9855v8.1562h2.921"/>
+   <path id="path956" d="m260.45 146.34v2.8056h-8.8858v-2.8056h2.9979v-8.1562h-2.9979v-2.8093h2.9979v-2.7919h2.9669v2.7919h2.9855v2.8093h-2.9855v8.1562h2.921" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path957" fill="#c8b100" d="m262.33 146.34v2.8056h-12.333v-2.8056h4.5602v-8.1562h-2.9979v-2.8093h2.9979v-2.7919h2.9669v2.7919h2.9855v2.8093h-2.9855v8.1562h4.8009"/>
+   <path id="path958" d="m262.33 146.34v2.8056h-12.333v-2.8056h4.5602v-8.1562h-2.9979v-2.8093h2.9979v-2.7919h2.9669v2.7919h2.9855v2.8093h-2.9855v8.1562h4.8009 0.005z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path959" d="m257.54 142.11c2.2646 0.62539 3.9 2.612 3.9 4.9622 0 2.8527-2.4445 5.1632-5.4573 5.1632-3.0116 0-5.4573-2.3105-5.4573-5.1632 0-2.3936 1.7099-4.4026 4.034-4.997" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path961" d="m256.52 365.24c-16.121 0-32.1-3.9521-45.533-10.525-9.9021-4.9051-16.467-14.795-16.467-26.111v-41.039h123.76v41.039c0 11.317-6.5654 21.206-16.469 26.111-13.432 6.5728-29.161 10.525-45.288 10.525z" stroke="#000" stroke-width=".63854" fill="none"/>
+   <path id="path962" fill="#ccc" d="m256.26 287.5h62.015v-68.661h-62.015v68.661z"/>
+   <path id="path963" d="m256.26 287.5h62.015v-68.661h-62.015v68.661z" stroke="#000" stroke-width=".63854" fill="none"/>
+   <path id="path966" fill="#c00" d="m256.31 328.56c0 16.218-13.743 29.364-30.861 29.364-17.125 0-31.005-13.146-31.005-29.364v-41.1h61.867v41.1"/>
+   <path id="path968" d="m207.96 352.79c1.9333 1.0262 4.5887 2.7349 7.4253 3.4186l-0.17992-70.199h-7.2454v66.781z" stroke="#000" stroke-width=".63854" fill="#c7b300"/>
+   <path id="path970" stroke-linejoin="round" d="m194.34 328c0.18861 8.6612 3.627 15.1 7.0655 19.316v-60.97h-6.9786l-0.0869 41.653z" stroke="#000" stroke-width=".61830" fill="#c7b300"/>
+   <path id="path972" d="m221.75 357.75c2.8354 0.2854 4.9498 0.22832 7.2454 0v-71.738h-7.2454v71.738z" stroke="#000" stroke-width=".63854" fill="#c7b500"/>
+   <path id="path974" d="m235.37 356.21c2.8366-0.56955 6.0343-2.3353 7.4266-3.2473v-66.952h-7.2454l-0.18117 70.199z" stroke="#000" stroke-width=".63854" fill="#c7b300"/>
+   <path id="path964" fill="#c00" d="m194.44 287.5h61.84v-68.661h-61.84v68.661z"/>
+   <path id="path965" d="m194.44 287.5h61.84v-68.661h-61.84v68.661z" stroke="#000" stroke-width=".63854" fill="none"/>
+   <path id="path976" d="m249.52 346.64c3.0165-2.6778 5.8531-8.7754 6.8843-15.727l0.17992-44.901h-7.2454l0.18117 60.627z" stroke="#000" stroke-width=".63854" fill="#c7b300"/>
+   <path id="path977" d="m256.31 328.56c0 16.218-13.743 29.364-30.861 29.364-17.125 0-31.005-13.146-31.005-29.364v-41.1h61.867v41.1" stroke="#000" stroke-width=".63854" fill="none"/>
+   <path id="path978" fill="#c00" d="m318.34 287.46v41.1c0 16.218-13.899 29.364-31.024 29.364-17.12 0-31.005-13.146-31.005-29.364v-41.1h62.029"/>
+   <path id="path979" d="m318.34 287.46v41.1c0 16.218-13.899 29.364-31.024 29.364-17.12 0-31.005-13.146-31.005-29.364v-41.1h62.029" stroke="#000" stroke-width=".63854" fill="none"/>
+   <path id="path980" fill="#c8b100" d="m267.59 318.48c0.098 0.2097 0.15386 0.42065 0.15386 0.644 0 0.75693-0.64276 1.36-1.4431 1.36-0.79539 0-1.4406-0.60306-1.4406-1.36 0-0.22335 0.0558-0.4343 0.15635-0.61794l-2.0139-0.0261c-0.0422 0.20598-0.0658 0.42065-0.0658 0.644 0 1.4258 0.98524 2.6344 2.3465 3.0414l-0.002 4.9448 2.112 0.0124 0.004-4.9796c0.98028-0.3189 1.7521-1.0547 2.0896-1.9916h5.6732v-1.6714h-7.5692m27.826 0v1.6714l-5.1012 0.0136c-0.0782 0.22335-0.20475 0.42934-0.32759 0.62539l5.9239 6.7304-1.5895 1.2868-5.8953-6.7391c-0.10795 0.0347-0.16255 0.0782-0.27795 0.1092l-0.0136 11.137h-2.0884l-0.005-11.185c-0.0881-0.0211-0.16255-0.0658-0.24445-0.10423l-6.1373 6.7826-1.5908-1.2868 6.1336-6.8086c-0.10671-0.17124-0.18489-0.35861-0.25437-0.56087h-5.2724v-1.6714h16.745-0.005zm3.3975 0v1.6714h5.6782c0.33751 0.93685 1.1006 1.6727 2.0884 1.9916l0.004 4.9796 2.1082-0.0124-0.005-4.9448c1.3637-0.40701 2.3527-1.6156 2.3527-3.0414 0-0.22335-0.0236-0.43802-0.0745-0.644h-2.0052c0.0968 0.2097 0.14766 0.42065 0.14766 0.644 0 0.75693-0.63656 1.36-1.4369 1.36-0.79416 0-1.4419-0.60306-1.4419-1.36 0-0.22335 0.0558-0.4343 0.15759-0.61794l-7.573-0.0261m-8.5731 28.396c1.6553-0.26182 3.1803-0.71722 4.6867-1.3513l1.0349 1.7633c-1.7322 0.74327-3.5997 1.2781-5.5454 1.5709-0.32387 1.4394-1.6677 2.5202-3.2846 2.5202-1.6131 0-2.9582-1.0671-3.292-2.4979-2.0549-0.28043-4.0043-0.81028-5.8296-1.5933l1.0398-1.7633c1.5846 0.66883 3.2759 1.1155 5.0305 1.36 0.37101-0.80408 1.0498-1.4258 1.942-1.7149l0.0186-8.6339h2.0834l0.0186 8.6029c0.92444 0.27671 1.7049 0.90583 2.0933 1.7372h0.004zm-14.163-2.8962-1.0287 1.772c-1.762-1.0944-3.3317-2.4457-4.6805-3.9608-1.0721 0.31518-2.2832 0.12781-3.1977-0.61671-1.4146-1.1466-1.5858-3.1592-0.37474-4.4944l0.1762-0.18737c-0.85247-1.9258-1.4295-3.9956-1.6268-6.1658l2.107 0.009c0.16628 1.8514 0.62788 3.6146 1.3476 5.2687 0.59313-0.0831 1.226-0.0136 1.7943 0.19729l5.2724-5.8333 1.5883 1.2818-5.2389 5.8246c0.70729 1.0758 0.67875 2.4631-0.12905 3.5228 1.1627 1.2868 2.4991 2.4333 3.9906 3.3826zm-7.8174-6.1174c0.51868-0.57824 1.4282-0.644 2.0338-0.15386 0.60554 0.49014 0.67999 1.3563 0.16255 1.9258-0.51992 0.57328-1.4282 0.64277-2.0338 0.15263-0.60554-0.49386-0.67876-1.3513-0.16256-1.9246zm-2.6567-5.7688-2.1666-0.48518-0.30525-5.4871 2.1492-0.70977 0.002 3.1468c0 1.221 0.10795 2.3762 0.32014 3.5352zm1.798-6.8036 2.1579 0.50751s0.11043 3.5265 0.0645 2.7349c-0.0558-0.9232 0.23576 2.7572 0.23576 2.7572l-2.1765 0.71722c-0.21715-1.1205-0.29036-2.2671-0.29036-3.4484l0.004-3.2684h0.005zm7.1139 17.556c1.8179 1.4183 3.9298 2.5698 6.213 3.2994l0.48021-2.0871c-1.8762-0.59065-3.6146-1.4568-5.1434-2.581l-1.5498 1.3687m-1.0436 1.803c1.8439 1.3873 3.9522 2.4991 6.2118 3.2697l-1.6144 1.5089c-1.8104-0.66882-3.5141-1.5523-5.0764-2.6033l0.47897-2.1752m2.8155-12.095 2.0611 0.87481 3.7697-4.183-1.2384-1.7819-4.5924 5.09m-1.5982-1.2917-1.2359-1.7893 3.7722-4.1829 2.0549 0.87853-4.5912 5.0937m23.209 12.718 1.0312 1.772c1.7595-1.0944 3.3317-2.4457 4.6805-3.9608 1.0671 0.31518 2.2832 0.12781 3.1964-0.61671 1.4146-1.1466 1.5771-3.1592 0.3735-4.4944l-0.17868-0.18737c0.85495-1.9258 1.4332-3.9956 1.6218-6.1658l-2.0971 0.009c-0.16628 1.8514-0.63284 3.6146-1.3501 5.2687-0.59561-0.0831-1.2235-0.0136-1.7968 0.19729l-5.2675-5.8333-1.5896 1.2818 5.2352 5.8246c-0.70233 1.0758-0.67503 2.4631 0.12905 3.5228-1.1602 1.2868-2.4954 2.4333-3.9881 3.3826zm7.8137-6.1174c-0.51744-0.57824-1.4233-0.644-2.0276-0.15386-0.60678 0.49014-0.67999 1.3563-0.16256 1.9258 0.51744 0.57328 1.4282 0.64277 2.0338 0.15263 0.60554-0.49386 0.67378-1.3513 0.15635-1.9246zm2.6579-5.7688 2.1665-0.48518 0.30526-5.4871-2.1442-0.70977-0.005 3.1468c0 1.221-0.10671 2.3762-0.32262 3.5352zm-1.793-6.8036-2.1579 0.50751s-0.11664 3.5265-0.0695 2.7349c0.0596-0.9232-0.23576 2.7572-0.23576 2.7572l2.1765 0.71722c0.21715-1.1205 0.29036-2.2671 0.29036-3.4484l-0.004-3.2684m-7.1164 17.556c-1.8203 1.4183-3.9335 2.5698-6.2105 3.2994l-0.48021-2.0871c1.8712-0.59065 3.6134-1.4568 5.1384-2.581l1.5523 1.3687m1.0448 1.803c-1.8501 1.3873-3.9509 2.4991-6.2118 3.2697l1.6131 1.5089c1.8117-0.66882 3.5166-1.5523 5.0788-2.6033l-0.48021-2.1752m-2.8155-12.095-2.0598 0.87481-3.771-4.183 1.2384-1.7819 4.5924 5.09m1.5982-1.2917 1.2359-1.7893-3.771-4.1829-2.0561 0.87853 4.5912 5.0937m-25.81-11.106 0.63284 2.0561h5.8085l0.62663-2.0561h-7.0679m27.131 0-0.63656 2.0561h-5.8048l-0.62663-2.0561h7.0679m-14.919 28.032c0-0.75692 0.64649-1.3687 1.4419-1.3687 0.79415 0 1.4357 0.61175 1.4357 1.3687 0 0.75321-0.64152 1.3612-1.4357 1.3612-0.7954 0-1.4419-0.60802-1.4419-1.3612zm2.4445-9.9505 2.1666-0.60803v-5.492l-2.1666-0.59561v6.6957m-2.102 0-2.1628-0.60803v-5.492l2.1628-0.59561v6.6957"/>
+   <path id="path981" fill="#c8b100" d="m263 318.53c0.24942-1.1441 1.1441-2.0735 2.2968-2.4209l-0.0161-6.7813h2.0908l0.004 6.8173c1.0312 0.3251 1.8253 1.087 2.1442 2.0698l5.6372 0.009v0.30649h-7.5692c-0.23452-0.41693-0.72591-0.72714-1.2893-0.72714-0.55838 0-1.0485 0.31021-1.2843 0.7532l-2.0139-0.0261m15.668 0v-0.30649h5.2364c0.0596-0.17124 0.13649-0.33752 0.22583-0.49511l-6.4599-7.1995 1.5883-1.2893 6.378 7.0816c0.11044-0.0534 0.22708-0.10175 0.34124-0.14146l0.005-9.4343h2.0884v9.3772c0.0931 0.0261 0.23576 0.0521 0.32883 0.0794l6.2291-7.094 1.602 1.2706-6.2552 7.0642c0.16131 0.237 0.27175 0.50006 0.35985 0.7805h5.0739v0.30649h-16.747 0.005zm27.716 0c0.23453-0.41693 0.72094-0.72714 1.2843-0.72714 0.56459 0 1.0498 0.31021 1.2892 0.7532l2.0052-0.0261c-0.25065-1.1441-1.1366-2.0735-2.2919-2.4209l0.0137-6.7776h-2.0846l-0.009 6.8173c-1.025 0.3251-1.8204 1.0833-2.1392 2.066l-5.641 0.009v0.30649h7.573m-38.675-19.15 7.7703 8.7108 1.5908-1.2892-7.8137-8.6761c0.15635-0.23328 0.26678-0.48641 0.35985-0.7594h5.6844v-1.9817h-5.6881c-0.43554-1.2843-1.7099-2.205-3.2114-2.205-1.8576 0-3.3689 1.4295-3.3689 3.1927 0 1.3984 0.94553 2.5909 2.267 3.0202l-0.0124 6.7218h2.0884v-6.6771c0.0881-0.0261 0.24941-0.0261 0.33379-0.0571zm40.999 0.0434-0.0186 6.6907h-2.0896v-6.7168c-0.16007-0.0496-0.31766-0.1154-0.46656-0.18985l-7.7293 8.722-1.5982-1.2719 7.877-8.892c-0.0645-0.12657-0.13401-0.2581-0.17992-0.39956h-5.7154v-1.9817h5.698c0.43802-1.2843 1.7-2.205 3.1964-2.205 1.8576 0 3.3689 1.4295 3.3689 3.1927 0 1.4332-0.97531 2.643-2.3427 3.0513zm-20.613-0.0261-0.0186 4.1209h-2.0884l0.005-4.0862c-1.0398-0.30773-1.8588-1.0783-2.2-2.066h-5.0975v-1.9817h5.0975c0.43926-1.2843 1.695-2.205 3.1927-2.205s2.7634 0.92072 3.2027 2.205h5.198v1.9817h-5.2116c-0.32883 0.95174-1.0858 1.7112-2.0797 2.0313zm-22.79 5.0019-2.1665 0.60926v5.5082l2.1665 0.59561v-6.7131m2.1033 0 2.1616 0.60926v5.5082l-2.1616 0.59561v-6.7131m39.173 0-2.1616 0.60926v5.5082l2.1616 0.59561v-6.7131m2.1033 0 2.1678 0.60926v5.5082l-2.1678 0.59561v-6.7131m-32.795 1.087 2.0623-0.87605 3.771 4.1916-1.2384 1.7881-4.5949-5.1037m-1.597 1.2979-1.2334 1.7943 3.7697 4.1867 2.0561-0.88101-4.5924-5.0999m23.677-1.4593-2.066-0.85991-3.7338 4.2226 1.252 1.7757 4.5478-5.1384m1.6082 1.2843 1.2508 1.7794-3.7325 4.2226-2.0611-0.86364 4.5428-5.1384m-26.103 11.611 0.63284-2.0574h5.8085l0.62663 2.0574h-7.0679m-8.516-21.844c0-0.7532 0.64649-1.3674 1.4419-1.3674 0.79416 0 1.4369 0.61423 1.4369 1.3674 0 0.75444-0.64276 1.3637-1.4369 1.3637-0.79539 0-1.4419-0.60927-1.4419-1.3637zm15.534 0.99517-0.63656 2.0611h-5.8048l-0.62788-2.0611h7.0692m0-1.9953-0.63656-2.0561h-5.8048l-0.62788 2.0561h7.0692m20.113 22.844-0.63656-2.0574h-5.8048l-0.62663 2.0574h7.0679m5.6348-21.844c0-0.7532 0.64153-1.3674 1.4406-1.3674 0.7954 0 1.4382 0.61423 1.4382 1.3674 0 0.75444-0.64276 1.3637-1.4382 1.3637-0.79911 0-1.4406-0.60927-1.4406-1.3637zm-20.696 0c0-0.7532 0.64648-1.3674 1.4406-1.3674 0.79539 0 1.4382 0.61423 1.4382 1.3674 0 0.75444-0.64276 1.3637-1.4382 1.3637-0.79416 0-1.4406-0.60927-1.4406-1.3637zm8.0433 0.99517 0.63904 2.0611h5.8023l0.62912-2.0611h-7.0704m0-1.9953 0.63904-2.0561h5.8023l0.62912 2.0561h-7.0704m-7.5817 6.4326-2.1628 0.60926v5.507l2.1628 0.59685v-6.7131m2.0797 0 2.1616 0.60926v5.507l-2.1616 0.59685v-6.7131"/>
+   <path id="path982" d="m290.24 346.88c1.6553-0.26182 3.1803-0.71722 4.6867-1.3513l1.0349 1.7633c-1.7322 0.74327-3.5997 1.2781-5.5454 1.5709-0.32387 1.4394-1.6677 2.5202-3.2846 2.5202-1.6131 0-2.9582-1.0671-3.292-2.4979-2.0549-0.28043-4.0043-0.81028-5.8296-1.5933l1.0398-1.7633c1.5846 0.66883 3.2759 1.1155 5.0305 1.36 0.37101-0.80408 1.0498-1.4258 1.942-1.7149l0.0186-8.6339h2.0834l0.0186 8.6029c0.92444 0.27671 1.7049 0.90583 2.0933 1.7372h0.004zm-6.043-26.16c-0.10547-0.17496-0.18489-0.36233-0.25438-0.56459h-5.2724v-1.9779h5.2364c0.0596-0.16627 0.1427-0.33255 0.22956-0.49014l-6.4636-7.1896 1.5883-1.2868 6.383 7.068c0.11044-0.0534 0.22212-0.10051 0.34124-0.14022l0.005-9.4169h2.0834v9.3598c0.0931 0.0261 0.23576 0.0521 0.32883 0.0831l6.2291-7.0853 1.602 1.2744-6.2552 7.0456c0.16131 0.23577 0.27175 0.49883 0.35985 0.77802h5.0739v1.9779l-5.1024 0.0136c-0.0732 0.22335-0.20226 0.42934-0.32262 0.62539l5.9239 6.7354-1.5895 1.2868-5.8953-6.7441c-0.10795 0.0397-0.16255 0.0831-0.28291 0.11416l-0.0137 11.137h-2.0884l-0.006-11.185c-0.0869-0.026-0.16007-0.0707-0.2432-0.10919l-6.1373 6.7875-1.5883-1.2868 6.1311-6.8098m-16.486-21.35 7.7703 8.6947 1.5908-1.2868-7.8137-8.66c0.15635-0.23204 0.26678-0.48518 0.35985-0.75693h5.6844v-1.9779h-5.6881c-0.43554-1.2818-1.7099-2.2013-3.2114-2.2013-1.8576 0-3.3689 1.427-3.3689 3.1865 0 1.396 0.94553 2.586 2.267 3.0141l-0.0124 6.7093h2.0884v-6.6647c0.0881-0.0261 0.24941-0.0261 0.33379-0.0571zm8.3659 44.614-1.0287 1.772c-1.762-1.0944-3.3317-2.4457-4.6805-3.9608-1.0721 0.31518-2.2832 0.12781-3.1977-0.61671-1.4146-1.1466-1.5858-3.1592-0.37474-4.4944l0.1762-0.18737c-0.85247-1.9258-1.4295-3.9956-1.6268-6.1658l2.107 0.009c0.16628 1.8514 0.62788 3.6146 1.3476 5.2687 0.59313-0.0831 1.226-0.0136 1.7943 0.19729l5.2724-5.8333 1.5883 1.2818-5.2389 5.8246c0.70729 1.0758 0.67875 2.4631-0.12905 3.5228 1.1627 1.2868 2.4991 2.4333 3.9906 3.3826zm-10.797-16.87 0.002-4.9448c-1.3612-0.40328-2.3502-1.6156-2.3502-3.0414 0-1.4233 1.0026-2.648 2.3663-3.06l-0.0161-6.7652h2.0908l0.004 6.8049c1.0312 0.32386 1.8253 1.0808 2.1442 2.0611l5.6372 0.009v1.9779h-5.6732c-0.33751 0.93685-1.1093 1.6727-2.0896 1.9916l-0.004 4.9796-2.112-0.0124m2.9793 10.752c0.51868-0.57824 1.4282-0.644 2.0338-0.15386 0.60554 0.49014 0.67999 1.3563 0.16255 1.9258-0.51992 0.57328-1.4282 0.64277-2.0338 0.15263-0.60554-0.49386-0.67876-1.3513-0.16256-1.9246zm-2.6567-5.7688-2.1666-0.48518-0.30525-5.4871 2.1492-0.70977 0.002 3.1468c0 1.221 0.10795 2.3762 0.32014 3.5352zm1.798-6.8036 2.1579 0.50751s0.11043 3.5265 0.0645 2.7349c-0.0558-0.9232 0.23576 2.7572 0.23576 2.7572l-2.1765 0.71722c-0.21715-1.1205-0.29036-2.2671-0.29036-3.4484l0.004-3.2684h0.005zm7.1139 17.556c1.8179 1.4183 3.9298 2.5698 6.213 3.2994l0.48021-2.0871c-1.8762-0.59065-3.6146-1.4568-5.1434-2.581l-1.5498 1.3687m-1.0436 1.803c1.8439 1.3873 3.9522 2.4991 6.2118 3.2697l-1.6144 1.5089c-1.8104-0.66882-3.5141-1.5523-5.0764-2.6033l0.47897-2.1752" stroke="#c8b100" stroke-width=".31927" fill="none"/>
+   <path id="path983" d="m276.29 332.55 2.0611 0.87481 3.7697-4.183-1.2384-1.7819-4.5924 5.09m-1.5982-1.2917-1.2359-1.7893 3.7722-4.1829 2.0549 0.87853-4.5912 5.0937m-9.8289-12.138c0-0.75816 0.64525-1.3699 1.4406-1.3699 0.7954 0 1.4382 0.61175 1.4382 1.3699 0 0.75693-0.64276 1.36-1.4382 1.36-0.79539 0-1.4406-0.60306-1.4406-1.36zm33.038 24.856 1.0312 1.772c1.7595-1.0944 3.3317-2.4457 4.6805-3.9608 1.0671 0.31518 2.2832 0.12781 3.1964-0.61671 1.4146-1.1466 1.5771-3.1592 0.3735-4.4944l-0.17868-0.18737c0.85495-1.9258 1.4332-3.9956 1.6218-6.1658l-2.0971 0.009c-0.16628 1.8514-0.63284 3.6146-1.3501 5.2687-0.59561-0.0831-1.2235-0.0136-1.7968 0.19729l-5.2675-5.8333-1.5896 1.2818 5.2352 5.8246c-0.70233 1.0758-0.67503 2.4631 0.12905 3.5228-1.1602 1.2868-2.4954 2.4333-3.9881 3.3826zm10.799-16.87-0.005-4.9448c1.3637-0.40328 2.3514-1.6156 2.3514-3.0414 0-1.4233-1.0014-2.648-2.3651-3.06l0.0136-6.7652h-2.0896l-0.009 6.8049c-1.025 0.32386-1.8204 1.0808-2.1392 2.0611l-5.641 0.009v1.9779h5.6782c0.33751 0.93685 1.1006 1.6727 2.0884 1.9916l0.004 4.9796 2.1082-0.0124h0.005zm-2.9855 10.752c-0.51744-0.57824-1.4233-0.644-2.0276-0.15386-0.60678 0.49014-0.67999 1.3563-0.16256 1.9258 0.51744 0.57328 1.4282 0.64277 2.0338 0.15263 0.60554-0.49386 0.67378-1.3513 0.15635-1.9246zm2.6579-5.7688 2.1665-0.48518 0.30526-5.4871-2.1442-0.70977-0.005 3.1468c0 1.221-0.10671 2.3762-0.32262 3.5352zm-1.793-6.8036-2.1579 0.50751s-0.11664 3.5265-0.0695 2.7349c0.0596-0.9232-0.23576 2.7572-0.23576 2.7572l2.1765 0.71722c0.21715-1.1205 0.29036-2.2671 0.29036-3.4484l-0.004-3.2684m2.1343-25.881-0.0186 6.6783h-2.0896v-6.7044c-0.16007-0.0484-0.31766-0.11416-0.46656-0.18861l-7.7293 8.7046-1.5982-1.2694 7.877-8.8746c-0.0645-0.12657-0.13401-0.2581-0.17992-0.39832h-5.7154v-1.9779h5.698c0.43802-1.2818 1.7-2.2013 3.1964-2.2013 1.8576 0 3.3689 1.427 3.3689 3.1865 0 1.4307-0.97531 2.6381-2.3427 3.0451zm-20.613-0.0261-0.0186 4.1135h-2.0884l0.005-4.0787c-1.0398-0.30649-1.8588-1.0758-2.2-2.0611h-5.0975v-1.9779h5.0975c0.43926-1.2818 1.695-2.2013 3.1927-2.2013s2.7634 0.91948 3.2027 2.2013h5.198v1.9779h-5.2116c-0.32883 0.94926-1.0858 1.7074-2.0797 2.0263zm11.363 43.462c-1.8203 1.4183-3.9335 2.5698-6.2105 3.2994l-0.48021-2.0871c1.8712-0.59065 3.6134-1.4568 5.1384-2.581l1.5523 1.3687m1.0448 1.803c-1.8501 1.3873-3.9509 2.4991-6.2118 3.2697l1.6131 1.5089c1.8117-0.66882 3.5166-1.5523 5.0788-2.6033l-0.48021-2.1752m-35.197-40.272-2.1665 0.60802v5.497l2.1665 0.59438v-6.6994m2.1033 0 2.1616 0.60802v5.497l-2.1616 0.59438v-6.6994m39.173 0-2.1616 0.60802v5.497l2.1616 0.59438v-6.6994" stroke="#c8b100" stroke-width=".31927" fill="none"/>
+   <path id="path984" d="m308.69 304.38 2.1678 0.60802v5.497l-2.1678 0.59438v-6.6994m-10.998 28.177-2.0598 0.87481-3.771-4.183 1.2384-1.7819 4.5924 5.09m1.5982-1.2917 1.2359-1.7893-3.771-4.1829-2.0561 0.87853 4.5912 5.0937m-23.395-25.801 2.0623-0.87481 3.771 4.1842-1.2384 1.7844-4.5949-5.0937m-1.597 1.2955-1.2334 1.7906 3.7697 4.1792 2.0561-0.87977-4.5924-5.09m23.677-1.4568-2.066-0.85744-3.7338 4.214 1.252 1.772 4.5478-5.1285m1.6082 1.2818 1.2508 1.7769-3.7325 4.214-2.0611-0.8624 4.5428-5.1285m-26.103 11.588 0.63284-2.0524h5.8085l0.62663 2.0524h-7.0679m0 1.9866 0.63284 2.0561h5.8085l0.62663-2.0561h-7.0679m-8.516-23.789c0-0.75197 0.64649-1.365 1.4419-1.365 0.79416 0 1.4369 0.61298 1.4369 1.365 0 0.7532-0.64276 1.3612-1.4369 1.3612-0.79539 0-1.4419-0.60802-1.4419-1.3612zm15.534 0.99393-0.63656 2.0561h-5.8048l-0.62788-2.0561h7.0692m0-1.9916-0.63656-2.0524h-5.8048l-0.62788 2.0524h7.0692m25.733 23.754c0-0.75816 0.64773-1.3699 1.4419-1.3699 0.80035 0 1.4369 0.61175 1.4369 1.3699 0 0.75693-0.63656 1.36-1.4369 1.36-0.79416 0-1.4419-0.60306-1.4419-1.36zm-5.6199-0.95422-0.63656-2.0524h-5.8048l-0.62663 2.0524h7.0679m0 1.9866-0.63656 2.0561h-5.8048l-0.62663-2.0561h7.0679m-14.919 28.032c0-0.75692 0.64649-1.3687 1.4419-1.3687 0.79415 0 1.4357 0.61175 1.4357 1.3687 0 0.75321-0.64152 1.3612-1.4357 1.3612-0.7954 0-1.4419-0.60802-1.4419-1.3612zm2.4445-9.9505 2.1666-0.60803v-5.492l-2.1666-0.59561v6.6957m-2.102 0-2.1628-0.60803v-5.492l2.1628-0.59561v6.6957m20.211-41.87c0-0.75197 0.64153-1.365 1.4406-1.365 0.7954 0 1.4382 0.61298 1.4382 1.365 0 0.7532-0.64276 1.3612-1.4382 1.3612-0.79911 0-1.4406-0.60802-1.4406-1.3612zm-20.696 0c0-0.75197 0.64648-1.365 1.4406-1.365 0.79539 0 1.4382 0.61298 1.4382 1.365 0 0.7532-0.64276 1.3612-1.4382 1.3612-0.79416 0-1.4406-0.60802-1.4406-1.3612zm8.0433 0.99393 0.63904 2.0561h5.8023l0.62912-2.0561h-7.0704m0-1.9916 0.63904-2.0524h5.8023l0.62912 2.0524h-7.0704" stroke="#c8b100" stroke-width=".31927" fill="none"/>
+   <path id="path985" d="m286.01 301.79-2.1628 0.60802v5.4958l2.1628 0.59561v-6.6994m2.0797 0 2.1616 0.60802v5.4958l-2.1616 0.59561v-6.6994" stroke="#c8b100" stroke-width=".31927" fill="none"/>
+   <path id="path986" fill="#05906f" d="m283.76 319.16c0-1.7682 1.5114-3.1989 3.3739-3.1989 1.8576 0 3.3677 1.4307 3.3677 3.1989 0 1.7595-1.5101 3.1853-3.3677 3.1853-1.8625 0-3.3739-1.4258-3.3739-3.1853"/>
+   <path id="path987" fill="#db4446" d="m287.87 235.75 0.0695-0.76188 0.10547-0.42438s-1.9854 0.16255-3.0302-0.13153c-1.0448-0.29657-1.9866-0.7259-2.9632-1.5486-0.97284-0.82765-1.3575-1.3438-2.0549-1.4481-1.6727-0.26679-2.9619 0.49014-2.9619 0.49014s1.257 0.46284 2.2 1.6144c0.93685 1.1602 1.9593 1.7459 2.4023 1.8861 0.73087 0.22335 3.2722 0.0658 3.9695 0.0918 0.69736 0.0348 2.2633 0.23577 2.2633 0.23577"/>
+   <path id="path988" d="m287.87 235.75 0.0695-0.76188 0.10547-0.42438s-1.9854 0.16255-3.0302-0.13153c-1.0448-0.29657-1.9866-0.7259-2.9632-1.5486-0.97284-0.82765-1.3575-1.3438-2.0549-1.4481-1.6727-0.26679-2.9619 0.49014-2.9619 0.49014s1.257 0.46284 2.2 1.6144c0.93685 1.1602 1.9593 1.7459 2.4023 1.8861 0.73087 0.22335 3.2722 0.0658 3.9695 0.0918 0.69736 0.0348 2.2633 0.23577 2.2633 0.23577v-0.004z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path989" fill="#f38fb0" d="m297.16 232.96s0.005 0.88845 0.0918 1.7372c0.0831 0.81401-0.26306 1.5275-0.12905 1.9779 0.12905 0.45539 0.19357 0.814 0.36978 1.1416 0.16627 0.32883 0.25809 1.1602 0.25809 1.1602s-0.47525-0.33751-0.91575-0.6651c-0.43306-0.33255-0.74452-0.53853-0.74452-0.53853s0.0893 0.88845 0.13029 1.2694c0.0471 0.38094 0.26927 1.0982 0.62912 1.5225 0.35613 0.41568 1.0684 1.0982 1.288 1.6454 0.22832 0.55218 0.18241 1.7682 0.18241 1.7682s-0.57824-0.92321-1.0746-1.0895c-0.48765-0.17124-1.5598-0.76561-1.5598-0.76561s0.98276 0.97532 0.98276 1.9035c0 0.92692-0.4008 1.9817-0.4008 1.9817s-0.44422-0.84007-1.0212-1.391c-0.58197-0.54722-1.386-1.0982-1.386-1.0982s0.62788 1.4344 0.62788 2.4023c0 0.97532-0.17496 3.0451-0.17496 3.0451s-0.49014-0.80036-0.98028-1.19c-0.49387-0.37598-1.0709-0.71349-1.252-0.96291-0.17496-0.25313 0.5832 0.79664 0.6651 1.4307 0.0869 0.63532 0.38839 2.8974 2.3663 5.7861 1.1552 1.6888 2.9433 4.6421 6.7739 3.6705 3.8355-0.96663 2.4122-6.1212 1.6082-8.5284-0.80408-2.4023-1.2061-5.0677-1.159-5.9996 0.041-0.9232 0.71101-3.6668 0.62291-4.1792-0.0881-0.50255-0.29657-2.4631 0.17992-4.0427 0.49015-1.6454 0.89715-2.2844 1.1602-2.9632 0.26182-0.67379 0.48394-1.0547 0.57328-1.6454 0.0881-0.59065 0.0881-1.6938 0.0881-1.6938s0.71101 1.3128 0.89094 1.7769c0.1762 0.4678 0.1762 1.8551 0.1762 1.8551s0.13277-1.3873 1.2061-2.0611c1.0721-0.68247 2.3192-1.396 2.6319-1.7769 0.31145-0.38467 0.40328-0.63408 0.40328-0.63408s-0.0918 2.3676-0.75817 3.2994c-0.44299 0.6043-2.1889 2.5736-2.1889 2.5736s0.8959-0.34124 1.5188-0.37598c0.62416-0.0484 1.0684 0 1.0684 0s-0.75817 0.59065-1.7384 2.0251c-0.97904 1.432-0.58072 1.5585-1.293 2.7398-0.71722 1.1813-1.2942 1.2247-2.1864 1.9432-1.3401 1.0758-0.61795 5.3556-0.44298 5.9909 0.17992 0.63036 2.4954 5.8718 2.5413 7.1374 0.041 1.2682 0.26803 4.0961-1.9643 5.9115-1.4369 1.1776-3.7884 1.1863-4.3244 1.5225-0.53729 0.33255-1.5995 1.3873-1.5995 3.5848 0 2.2013 0.7954 2.5338 1.4196 3.0848 0.62787 0.55094 1.4282 0.25438 1.6069 0.67875 0.18117 0.41941 0.26803 0.67379 0.5373 0.92692 0.26802 0.24942 0.44795 0.54722 0.35612 1.0063-0.0881 0.46905-1.1143 1.5238-1.4704 2.2894-0.35985 0.75196-1.0721 2.7436-1.0721 3.0364 0 0.29781-0.0831 1.226 0.22211 1.6938 0 0 1.1143 1.3004 0.35489 1.5536-0.4889 0.16627-0.96911-0.3065-1.1999-0.25314-0.66635 0.17496-1.0138 0.58569-1.2061 0.55094-0.44423-0.0831-0.44423-0.30153-0.49014-0.92816-0.041-0.63036-0.0186-0.88846-0.21715-0.88846-0.26803 0-0.40328 0.21963-0.44795 0.55218-0.0484 0.33628-0.0484 1.0932-0.35613 1.0932-0.31394 0-0.75817-0.54722-1.0262-0.66882-0.26803-0.12781-1.025-0.25438-1.0684-0.59065-0.0447-0.33752 0.44547-1.0547 0.93436-1.1825 0.49014-0.12657 0.9381-0.37598 0.62416-0.62912-0.31394-0.25438-0.62416-0.25438-0.93313 0-0.31394 0.25314-0.98028 0.0385-0.93809-0.34124 0.0459-0.38094 0.13401-0.8413 0.0869-1.0547-0.0409-0.20598-0.577-0.63036 0.13029-1.0163 0.71598-0.37598 1.025 0.34247 1.7372 0.21467 0.71597-0.12161 1.0721-0.38467 1.3401-0.80036 0.26802-0.42065 0.22087-1.3091-0.26803-1.8551-0.49014-0.55218-0.97904-0.63904-1.1602-0.97656-0.17992-0.33627-0.44298-1.1379-0.44298-1.1379s0.12905 1.4754 0.041 1.6901c-0.0869 0.2097-0.041 1.0932-0.041 1.0932s-0.49014-0.54722-0.89218-0.96664c-0.39708-0.42437-0.79912-1.6888-0.79912-1.6888s-0.0422 1.1813-0.0422 1.6491c0 0.45912 0.53109 0.88349 0.35613 1.0547-0.17992 0.16628-1.025-0.88846-1.2471-1.0547-0.22707-0.17-0.93809-0.71722-1.252-1.3128-0.31022-0.59065-0.5373-1.4307-0.62416-1.7322-0.0893-0.29408-0.23576-1.6106-0.0893-1.9432 0.22211-0.50379 0.57948-1.3922 0.57948-1.3922h-1.7384c-0.93313 0-1.6032-0.29285-1.9593 0.33751-0.35489 0.63408-0.17993 1.9035 0.2643 3.5489 0.44795 1.6404 0.71101 2.4457 0.58196 2.7435-0.13029 0.29284-0.71101 0.9716-0.93313 1.0944-0.22707 0.13153-0.85123 0.0869-1.1192-0.0347-0.26306-0.12781-0.70605-0.34248-1.5573-0.34248-0.84503 0-1.3811 0.0397-1.6901-0.0348-0.31393-0.0869-1.0721-0.4678-1.4332-0.38466-0.35613 0.0869-0.9716 0.40204-0.80408 0.88845 0.27299 0.76065-0.26306 0.93189-0.62291 0.88846-0.35613-0.0447-0.66138-0.17124-1.1143-0.29408-0.44298-0.13029-1.1143 0-1.025-0.51124 0.0869-0.50751 0.26803-0.54722 0.4889-0.9232 0.22584-0.38591 0.30898-0.63036 0.0583-0.65641-0.31269-0.031-0.62663-0.0658-0.87108 0.13525-0.23577 0.1973-0.61919 0.62167-0.93437 0.46408-0.31518-0.16627-0.55839-0.52985-0.55839-1.3265 0-0.79167-0.83758-1.4828-0.0695-1.4481 0.76686 0.0347 1.7422 0.59561 1.9171 0.16627 0.17124-0.43306 0.0658-0.62539-0.34992-0.96291-0.41817-0.32759-0.93933-0.52488-0.38094-0.95422 0.5559-0.42438 0.69488-0.42438 0.90707-0.66014 0.20846-0.22832 0.50751-0.97159 0.89714-0.78795 0.76561 0.36358 0.036 0.89218 0.80284 1.7459 0.76809 0.85743 1.2533 1.1602 2.5425 1.0237 1.288-0.13029 1.6404-0.29657 1.6404-0.66014s-0.10795-1.02-0.14518-1.2868c-0.031-0.26307 0.17744-1.221 0.17744-1.221s-0.59189 0.36729-0.76685 0.7259c-0.16752 0.36357-0.51868 0.98525-0.51868 0.98525s-0.1427-0.73956-0.10175-1.3439c0.0236-0.35364 0.1489-0.97159 0.13525-1.0932-0.0335-0.32882-0.27795-1.1552-0.27795-1.1552s-0.2097 0.89218-0.3462 1.1552c-0.13898 0.26183-0.20846 1.3215-0.20846 1.3215s-0.81773-0.71349-0.59065-1.9122c0.16999-0.92444-0.14022-2.1442 0.13773-2.5425 0.27299-0.39832 0.93313-2.0139 2.5376-2.0834 1.6032-0.0608 2.8552 0.0695 3.4148 0.0397 0.55715-0.0397 2.5413-0.39832 2.5413-0.39832s-3.6568-1.8774-4.4919-2.442c-0.83634-0.55591-2.1256-2.009-2.5462-2.6691-0.41693-0.66137-0.79911-1.9432-0.79911-1.9432s-0.65642 0.0298-1.252 0.3586c-0.59189 0.32387-1.1825 0.82766-1.53 1.216-0.35241 0.39831-0.90583 1.2917-0.90583 1.2917s0.10175-1.1552 0.10175-1.5188c0-0.35489-0.0695-1.0584-0.0695-1.0584s-0.41569 1.5833-1.252 2.174c-0.83634 0.59933-1.8117 1.422-1.8117 1.422s0.10672-0.88349 0.10672-1.0845c0-0.1973 0.20846-1.221 0.20846-1.221s-0.59189 0.8835-1.4977 1.0585c-0.90583 0.16255-2.2323 0.12781-2.3378 0.6924-0.10175 0.55466 0.24445 1.3166 0.0372 1.7099-0.2097 0.39832-0.66138 0.66138-0.66138 0.66138s-0.52116-0.43306-0.97531-0.46408c-0.45292-0.0347-0.87233 0.20102-0.87233 0.20102s-0.38342-0.49883-0.24569-0.82641c0.1427-0.32883 0.83634-0.82269 0.6651-1.0237-0.17496-0.1973-0.73335 0.0695-1.0808 0.23204-0.3462 0.16627-1.0808 0.32759-1.0113-0.23204 0.0695-0.56087 0.24445-0.88846 0.0695-1.2868-0.17372-0.38963-0.0695-0.65641 0.21219-0.75692 0.27671-0.0918 1.391 0.0298 1.4965-0.22336 0.10176-0.26678-0.27671-0.59561-1.0113-0.76189-0.73086-0.16131-1.0808-0.59437-0.69736-0.95794 0.38342-0.36357 0.4889-0.45912 0.66262-0.79167s0.24197-0.92444 0.90707-0.62664c0.65641 0.29409 0.51744 1.02 1.221 1.252 0.68867 0.23577 2.3291-0.0968 2.674-0.29284 0.35241-0.20226 1.4655-1.025 1.8489-1.226 0.38466-0.19233 1.9829-1.3823 1.9829-1.3823s-0.93809-0.65269-1.2892-0.98897c-0.3462-0.32883-0.97036-1.1168-1.2793-1.283-0.31518-0.17-1.8489-0.75692-2.3713-0.79167-0.5224-0.0347-2.1256-0.59065-2.1256-0.59065s0.73086-0.23576 0.97531-0.43306 0.79416-0.69612 1.0808-0.66138c0.27298 0.036 0.34123 0.036 0.34123 0.036s-1.4915-0.0707-1.8067-0.16256c-0.3127-0.10547-1.2185-0.6651-1.5647-0.6651-0.3524 0-1.0448 0.13526-1.0448 0.13526s0.93809-0.59438 1.7049-0.72591c0.76685-0.12657 1.3587-0.10051 1.3587-0.10051s-1.1825-0.32883-1.4654-0.72218c-0.27672-0.39832-0.55343-0.98524-0.76686-1.252-0.20722-0.26182-0.3462-0.69488-0.72962-0.7259-0.38343-0.0348-1.046 0.46408-1.4282 0.4281-0.37846-0.0298-0.66137-0.26679-0.6986-0.8227-0.0261-0.56335 0-0.36729-0.13277-0.66013-0.13898-0.30153-0.69737-0.99393-0.1762-1.1552 0.52736-0.16627 1.6404 0.0968 1.7422-0.10051 0.10672-0.19729-0.59065-0.79167-1.0436-1.0237-0.45291-0.22832-1.1838-0.62663-0.80036-0.95422 0.38467-0.32883 0.76562-0.45912 0.97532-0.75692 0.20847-0.29781 0.45292-1.1205 0.90583-0.85868 0.45292 0.26306 1.0796 1.5536 1.4282 1.453 0.35117-0.10051 0.37722-1.0237 0.31394-1.4171-0.0695-0.39831 0-1.0895 0.34248-1.025 0.35116 0.0658 0.62787 0.52613 1.1875 0.56459 0.55343 0.031 1.3898-0.13029 1.3203 0.2581-0.0695 0.3946-0.38467 0.88474-0.76685 1.3178-0.3735 0.43306-0.5497 1.2868-0.30898 1.8464 0.24321 0.56459 0.87357 1.458 1.4282 1.8166 0.55343 0.36233 1.5982 0.63036 2.2633 1.0547 0.66013 0.43306 2.1951 1.6491 2.7175 1.7806 0.52116 0.13525 1.0436 0.39832 1.0436 0.39832s0.59065-0.26307 1.396-0.26307c0.79911 0 2.643 0.13154 3.3404-0.16627 0.69737-0.30153 1.6032-0.79167 1.3252-1.422-0.27547-0.62167-1.8104-1.1863-1.6714-1.6764 0.13898-0.49387 0.69737-0.52861 1.6342-0.56335 0.93933-0.031 2.2286 0.16627 2.4693-1.1552 0.24445-1.3178 0.31394-2.0797-1.0026-2.3725-1.3265-0.29781-2.303-0.32759-2.5413-1.2868-0.24693-0.95422-0.49014-1.185-0.21343-1.453 0.28292-0.25809 0.76686-0.39335 1.7422-0.45415 0.97532-0.0707 2.0884-0.0707 2.4036-0.30649 0.31394-0.22336 0.37847-0.85372 0.76189-1.1205 0.38219-0.2581 1.8849-0.4951 1.8849-0.4951s1.7893 0.87604 3.4521 2.1095c1.4878 1.1118 2.8329 2.7535 2.8329 2.7535"/>
+   <path id="path990" d="m297.16 232.96s0.005 0.88845 0.0918 1.7372c0.0831 0.81401-0.26306 1.5275-0.12905 1.9779 0.12905 0.45539 0.19357 0.814 0.36978 1.1416 0.16627 0.32883 0.25809 1.1602 0.25809 1.1602s-0.47525-0.33751-0.91575-0.6651c-0.43306-0.33255-0.74452-0.53853-0.74452-0.53853s0.0893 0.88845 0.13029 1.2694c0.0471 0.38094 0.26927 1.0982 0.62912 1.5225 0.35613 0.41568 1.0684 1.0982 1.288 1.6454 0.22832 0.55218 0.18241 1.7682 0.18241 1.7682s-0.57824-0.92321-1.0746-1.0895c-0.48765-0.17124-1.5598-0.76561-1.5598-0.76561s0.98276 0.97532 0.98276 1.9035c0 0.92692-0.4008 1.9817-0.4008 1.9817s-0.44422-0.84007-1.0212-1.391c-0.58197-0.54722-1.386-1.0982-1.386-1.0982s0.62788 1.4344 0.62788 2.4023c0 0.97532-0.17496 3.0451-0.17496 3.0451s-0.49014-0.80036-0.98028-1.19c-0.49387-0.37598-1.0709-0.71349-1.252-0.96291-0.17496-0.25313 0.5832 0.79664 0.6651 1.4307 0.0869 0.63532 0.38839 2.8974 2.3663 5.7861 1.1552 1.6888 2.9433 4.6421 6.7739 3.6705 3.8355-0.96663 2.4122-6.1212 1.6082-8.5284-0.80408-2.4023-1.2061-5.0677-1.159-5.9996 0.041-0.9232 0.71101-3.6668 0.62291-4.1792-0.0881-0.50255-0.29657-2.4631 0.17992-4.0427 0.49015-1.6454 0.89715-2.2844 1.1602-2.9632 0.26182-0.67379 0.48394-1.0547 0.57328-1.6454 0.0881-0.59065 0.0881-1.6938 0.0881-1.6938s0.71101 1.3128 0.89094 1.7769c0.1762 0.4678 0.1762 1.8551 0.1762 1.8551s0.13277-1.3873 1.2061-2.0611c1.0721-0.68247 2.3192-1.396 2.6319-1.7769 0.31145-0.38467 0.40328-0.63408 0.40328-0.63408s-0.0918 2.3676-0.75817 3.2994c-0.44299 0.6043-2.1889 2.5736-2.1889 2.5736s0.8959-0.34124 1.5188-0.37598c0.62416-0.0484 1.0684 0 1.0684 0s-0.75817 0.59065-1.7384 2.0251c-0.97904 1.432-0.58072 1.5585-1.293 2.7398-0.71722 1.1813-1.2942 1.2247-2.1864 1.9432-1.3401 1.0758-0.61795 5.3556-0.44298 5.9909 0.17992 0.63036 2.4954 5.8718 2.5413 7.1374 0.041 1.2682 0.26803 4.0961-1.9643 5.9115-1.4369 1.1776-3.7884 1.1863-4.3244 1.5225-0.53729 0.33255-1.5995 1.3873-1.5995 3.5848 0 2.2013 0.7954 2.5338 1.4196 3.0848 0.62787 0.55094 1.4282 0.25438 1.6069 0.67875 0.18117 0.41941 0.26803 0.67379 0.5373 0.92692 0.26802 0.24942 0.44795 0.54722 0.35612 1.0063-0.0881 0.46905-1.1143 1.5238-1.4704 2.2894-0.35985 0.75196-1.0721 2.7436-1.0721 3.0364 0 0.29781-0.0831 1.226 0.22211 1.6938 0 0 1.1143 1.3004 0.35489 1.5536-0.4889 0.16627-0.96911-0.3065-1.1999-0.25314-0.66635 0.17496-1.0138 0.58569-1.2061 0.55094-0.44423-0.0831-0.44423-0.30153-0.49014-0.92816-0.041-0.63036-0.0186-0.88846-0.21715-0.88846-0.26803 0-0.40328 0.21963-0.44795 0.55218-0.0484 0.33628-0.0484 1.0932-0.35613 1.0932-0.31394 0-0.75817-0.54722-1.0262-0.66882-0.26803-0.12781-1.025-0.25438-1.0684-0.59065-0.0447-0.33752 0.44547-1.0547 0.93436-1.1825 0.49014-0.12657 0.9381-0.37598 0.62416-0.62912-0.31394-0.25438-0.62416-0.25438-0.93313 0-0.31394 0.25314-0.98028 0.0385-0.93809-0.34124 0.0459-0.38094 0.13401-0.8413 0.0869-1.0547-0.0409-0.20598-0.577-0.63036 0.13029-1.0163 0.71598-0.37598 1.025 0.34247 1.7372 0.21467 0.71597-0.12161 1.0721-0.38467 1.3401-0.80036 0.26802-0.42065 0.22087-1.3091-0.26803-1.8551-0.49014-0.55218-0.97904-0.63904-1.1602-0.97656-0.17992-0.33627-0.44298-1.1379-0.44298-1.1379s0.12905 1.4754 0.041 1.6901c-0.0869 0.2097-0.041 1.0932-0.041 1.0932s-0.49014-0.54722-0.89218-0.96664c-0.39708-0.42437-0.79912-1.6888-0.79912-1.6888s-0.0422 1.1813-0.0422 1.6491c0 0.45912 0.53109 0.88349 0.35613 1.0547-0.17992 0.16628-1.025-0.88846-1.2471-1.0547-0.22707-0.17-0.93809-0.71722-1.252-1.3128-0.31022-0.59065-0.5373-1.4307-0.62416-1.7322-0.0893-0.29408-0.23576-1.6106-0.0893-1.9432 0.22211-0.50379 0.57948-1.3922 0.57948-1.3922h-1.7384c-0.93313 0-1.6032-0.29285-1.9593 0.33751-0.35489 0.63408-0.17993 1.9035 0.2643 3.5489 0.44795 1.6404 0.71101 2.4457 0.58196 2.7435-0.13029 0.29284-0.71101 0.9716-0.93313 1.0944-0.22707 0.13153-0.85123 0.0869-1.1192-0.0347-0.26306-0.12781-0.70605-0.34248-1.5573-0.34248-0.84503 0-1.3811 0.0397-1.6901-0.0348-0.31393-0.0869-1.0721-0.4678-1.4332-0.38466-0.35613 0.0869-0.9716 0.40204-0.80408 0.88845 0.27299 0.76065-0.26306 0.93189-0.62291 0.88846-0.35613-0.0447-0.66138-0.17124-1.1143-0.29408-0.44298-0.13029-1.1143 0-1.025-0.51124 0.0869-0.50751 0.26803-0.54722 0.4889-0.9232 0.22584-0.38591 0.30898-0.63036 0.0583-0.65641-0.31269-0.031-0.62663-0.0658-0.87108 0.13525-0.23577 0.1973-0.61919 0.62167-0.93437 0.46408-0.31518-0.16627-0.55839-0.52985-0.55839-1.3265 0-0.79167-0.83758-1.4828-0.0695-1.4481 0.76686 0.0347 1.7422 0.59561 1.9171 0.16627 0.17124-0.43306 0.0658-0.62539-0.34992-0.96291-0.41817-0.32759-0.93933-0.52488-0.38094-0.95422 0.5559-0.42438 0.69488-0.42438 0.90707-0.66014 0.20846-0.22832 0.50751-0.97159 0.89714-0.78795 0.76561 0.36358 0.036 0.89218 0.80284 1.7459 0.76809 0.85743 1.2533 1.1602 2.5425 1.0237 1.288-0.13029 1.6404-0.29657 1.6404-0.66014s-0.10795-1.02-0.14518-1.2868c-0.031-0.26307 0.17744-1.221 0.17744-1.221s-0.59189 0.36729-0.76685 0.7259c-0.16752 0.36357-0.51868 0.98525-0.51868 0.98525s-0.1427-0.73956-0.10175-1.3439c0.0236-0.35364 0.1489-0.97159 0.13525-1.0932-0.0335-0.32882-0.27795-1.1552-0.27795-1.1552s-0.2097 0.89218-0.3462 1.1552c-0.13898 0.26183-0.20846 1.3215-0.20846 1.3215s-0.81773-0.71349-0.59065-1.9122c0.16999-0.92444-0.14022-2.1442 0.13773-2.5425 0.27299-0.39832 0.93313-2.0139 2.5376-2.0834 1.6032-0.0608 2.8552 0.0695 3.4148 0.0397 0.55715-0.0397 2.5413-0.39832 2.5413-0.39832s-3.6568-1.8774-4.4919-2.442c-0.83634-0.55591-2.1256-2.009-2.5462-2.6691-0.41693-0.66137-0.79911-1.9432-0.79911-1.9432s-0.65642 0.0298-1.252 0.3586c-0.59189 0.32387-1.1825 0.82766-1.53 1.216-0.35241 0.39831-0.90583 1.2917-0.90583 1.2917s0.10175-1.1552 0.10175-1.5188c0-0.35489-0.0695-1.0584-0.0695-1.0584s-0.41569 1.5833-1.252 2.174c-0.83634 0.59933-1.8117 1.422-1.8117 1.422s0.10672-0.88349 0.10672-1.0845c0-0.1973 0.20846-1.221 0.20846-1.221s-0.59189 0.8835-1.4977 1.0585c-0.90583 0.16255-2.2323 0.12781-2.3378 0.6924-0.10175 0.55466 0.24445 1.3166 0.0372 1.7099-0.2097 0.39832-0.66138 0.66138-0.66138 0.66138s-0.52116-0.43306-0.97531-0.46408c-0.45292-0.0347-0.87233 0.20102-0.87233 0.20102s-0.38342-0.49883-0.24569-0.82641c0.1427-0.32883 0.83634-0.82269 0.6651-1.0237-0.17496-0.1973-0.73335 0.0695-1.0808 0.23204-0.3462 0.16627-1.0808 0.32759-1.0113-0.23204 0.0695-0.56087 0.24445-0.88846 0.0695-1.2868-0.17372-0.38963-0.0695-0.65641 0.21219-0.75692 0.27671-0.0918 1.391 0.0298 1.4965-0.22336 0.10176-0.26678-0.27671-0.59561-1.0113-0.76189-0.73086-0.16131-1.0808-0.59437-0.69736-0.95794 0.38342-0.36357 0.4889-0.45912 0.66262-0.79167s0.24197-0.92444 0.90707-0.62664c0.65641 0.29409 0.51744 1.02 1.221 1.252 0.68867 0.23577 2.3291-0.0968 2.674-0.29284 0.35241-0.20226 1.4655-1.025 1.8489-1.226 0.38466-0.19233 1.9829-1.3823 1.9829-1.3823s-0.93809-0.65269-1.2892-0.98897c-0.3462-0.32883-0.97036-1.1168-1.2793-1.283-0.31518-0.17-1.8489-0.75692-2.3713-0.79167-0.5224-0.0347-2.1256-0.59065-2.1256-0.59065s0.73086-0.23576 0.97531-0.43306 0.79416-0.69612 1.0808-0.66138c0.27298 0.036 0.34123 0.036 0.34123 0.036s-1.4915-0.0707-1.8067-0.16256c-0.3127-0.10547-1.2185-0.6651-1.5647-0.6651-0.3524 0-1.0448 0.13526-1.0448 0.13526s0.93809-0.59438 1.7049-0.72591c0.76685-0.12657 1.3587-0.10051 1.3587-0.10051s-1.1825-0.32883-1.4654-0.72218c-0.27672-0.39832-0.55343-0.98524-0.76686-1.252-0.20722-0.26182-0.3462-0.69488-0.72962-0.7259-0.38343-0.0348-1.046 0.46408-1.4282 0.4281-0.37846-0.0298-0.66137-0.26679-0.6986-0.8227-0.0261-0.56335 0-0.36729-0.13277-0.66013-0.13898-0.30153-0.69737-0.99393-0.1762-1.1552 0.52736-0.16627 1.6404 0.0968 1.7422-0.10051 0.10672-0.19729-0.59065-0.79167-1.0436-1.0237-0.45291-0.22832-1.1838-0.62663-0.80036-0.95422 0.38467-0.32883 0.76562-0.45912 0.97532-0.75692 0.20847-0.29781 0.45292-1.1205 0.90583-0.85868 0.45292 0.26306 1.0796 1.5536 1.4282 1.453 0.35117-0.10051 0.37722-1.0237 0.31394-1.4171-0.0695-0.39831 0-1.0895 0.34248-1.025 0.35116 0.0658 0.62787 0.52613 1.1875 0.56459 0.55343 0.031 1.3898-0.13029 1.3203 0.2581-0.0695 0.3946-0.38467 0.88474-0.76685 1.3178-0.3735 0.43306-0.5497 1.2868-0.30898 1.8464 0.24321 0.56459 0.87357 1.458 1.4282 1.8166 0.55343 0.36233 1.5982 0.63036 2.2633 1.0547 0.66013 0.43306 2.1951 1.6491 2.7175 1.7806 0.52116 0.13525 1.0436 0.39832 1.0436 0.39832s0.59065-0.26307 1.396-0.26307c0.79911 0 2.643 0.13154 3.3404-0.16627 0.69737-0.30153 1.6032-0.79167 1.3252-1.422-0.27547-0.62167-1.8104-1.1863-1.6714-1.6764 0.13898-0.49387 0.69737-0.52861 1.6342-0.56335 0.93933-0.031 2.2286 0.16627 2.4693-1.1552 0.24445-1.3178 0.31394-2.0797-1.0026-2.3725-1.3265-0.29781-2.303-0.32759-2.5413-1.2868-0.24693-0.95422-0.49014-1.185-0.21343-1.453 0.28292-0.25809 0.76686-0.39335 1.7422-0.45415 0.97532-0.0707 2.0884-0.0707 2.4036-0.30649 0.31394-0.22336 0.37847-0.85372 0.76189-1.1205 0.38219-0.2581 1.8849-0.4951 1.8849-0.4951s1.7893 0.87604 3.4521 2.1095c1.4878 1.1118 2.8329 2.7535 2.8329 2.7535v-0.0223z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path991" d="m284.32 232.03s-0.20846-0.59437-0.24445-0.76065c-0.0323-0.16255-0.14022-0.36357-0.14022-0.36357s1.082 0 1.046 0.32759c-0.0335 0.33255-0.34744 0.33255-0.41693 0.46036-0.0682 0.13525-0.24445 0.33627-0.24445 0.33627"/>
+   <path id="path992" d="m284.32 232.03s-0.20846-0.59437-0.24445-0.76065c-0.0323-0.16255-0.14022-0.36357-0.14022-0.36357s1.082 0 1.046 0.32759c-0.0335 0.33255-0.34744 0.33255-0.41693 0.46036-0.0682 0.13525-0.24445 0.33627-0.24445 0.33627z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path993" d="m289.27 230.31-0.0732-0.52861s0.94181 0.009 1.3947 0.32759c0.6986 0.4951 1.1466 1.2558 1.1143 1.2868-0.12161 0.11788-0.66138-0.32883-1.0448-0.45912 0 0-0.27795 0.0658-0.55838 0.0658-0.27796 0-0.41693-0.13153-0.45416-0.26306-0.031-0.13526 0.0372-0.36358 0.0372-0.36358l-0.41569-0.0608"/>
+   <path id="path994" d="m289.27 230.31-0.0732-0.52861s0.94181 0.009 1.3947 0.32759c0.6986 0.4951 1.1466 1.2558 1.1143 1.2868-0.12161 0.11788-0.66138-0.32883-1.0448-0.45912 0 0-0.27795 0.0658-0.55838 0.0658-0.27796 0-0.41693-0.13153-0.45416-0.26306-0.031-0.13526 0.0372-0.36358 0.0372-0.36358l-0.41569-0.0608v-0.005z" stroke="#000" stroke-width=".062954" fill="none"/>
+   <path id="path995" d="m296.06 237.77s-0.42065-0.59561-0.5224-0.79663c-0.10671-0.19233-0.28167-0.59065-0.28167-0.59065" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path996" fill="#db4446" d="m270.56 231.83s0.59189 0.42438 1.0448 0.49014c0.45292 0.0695 0.94306 0.0695 1.0126 0.0695 0.0682 0 0.21218-0.6651 0.13773-1.1193-0.24445-1.4878-1.6032-1.8166-1.6032-1.8166s0.40576 0.90211 0.20846 1.3178c-0.27795 0.59437-0.80035 1.0584-0.80035 1.0584"/>
+   <path id="path997" d="m270.56 231.83s0.59189 0.42438 1.0448 0.49014c0.45292 0.0695 0.94306 0.0695 1.0126 0.0695 0.0682 0 0.21218-0.6651 0.13773-1.1193-0.24445-1.4878-1.6032-1.8166-1.6032-1.8166s0.40576 0.90211 0.20846 1.3178c-0.27795 0.59437-0.80035 1.0584-0.80035 1.0584z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path998" fill="#db4446" d="m267.73 233.12s-0.5224-0.95795-1.6355-0.82766c-1.1143 0.13153-1.8489 0.99393-1.8489 0.99393s1.2297-0.0397 1.5337 0.16131c0.45416 0.29781 0.59189 1.0597 0.59189 1.0597s0.66635-0.39832 0.87357-0.66138c0.20723-0.26679 0.48518-0.7259 0.48518-0.7259"/>
+   <path id="path999" d="m267.73 233.12s-0.5224-0.95795-1.6355-0.82766c-1.1143 0.13153-1.8489 0.99393-1.8489 0.99393s1.2297-0.0397 1.5337 0.16131c0.45416 0.29781 0.59189 1.0597 0.59189 1.0597s0.66635-0.39832 0.87357-0.66138c0.20723-0.26679 0.48518-0.7259 0.48518-0.7259z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1000" fill="#db4446" d="m266.38 236.98s-0.93809 0.13526-1.4592 0.73087c-0.52736 0.59437-0.45291 1.7149-0.45291 1.7149s0.62291-0.65642 1.1825-0.65642c0.55963 0 1.4282 0.1973 1.4282 0.1973s-0.27795-0.69984-0.27795-0.99393c0-0.29656-0.42066-0.99269-0.42066-0.99269"/>
+   <path id="path1001" d="m266.38 236.98s-0.93809 0.13526-1.4592 0.73087c-0.52736 0.59437-0.45291 1.7149-0.45291 1.7149s0.62291-0.65642 1.1825-0.65642c0.55963 0 1.4282 0.1973 1.4282 0.1973s-0.27795-0.69984-0.27795-0.99393c0-0.29656-0.42066-0.99269-0.42066-0.99269z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1002" d="m284.36 236.84 0.41445-0.65642 0.41072 0.59562-0.82517 0.0608"/>
+   <path id="path1003" d="m284.36 236.84 0.41445-0.65642 0.41072 0.59562-0.82517 0.0608" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path1004" d="m285.36 236.81 0.4889-0.65642 0.52364 0.59065-1.0125 0.0658"/>
+   <path id="path1005" d="m285.36 236.81 0.4889-0.65642 0.52364 0.59065-1.0125 0.0658" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path1006" d="m284.91 232.76 1.0113 0.36358-0.90583 0.45911-0.10548-0.82269"/>
+   <path id="path1007" d="m284.91 232.76 1.0113 0.36358-0.90583 0.45911-0.10548-0.82269" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path1008" d="m286.13 233.09 0.90583 0.22832-0.72963 0.55963-0.1762-0.78795"/>
+   <path id="path1009" d="m286.13 233.09 0.90583 0.22832-0.72963 0.55963-0.1762-0.78795" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path1010" d="m279.34 240.84s-0.99145 0.28913-1.3575 0.8227c-0.45167 0.66013-0.41941 1.3215-0.41941 1.3215s0.83634-0.69116 1.9171-0.39831c1.082 0.2978 1.1825 0.39831 1.6404 0.36729 0.45291-0.0347 1.5672-0.43306 1.5672-0.43306s-0.90583 1.0547-0.80408 1.7856c0.10547 0.72218 0.23948 1.0498 0.21094 1.4183-0.0745 0.89217-0.73334 1.9816-0.73334 1.9816s0.38342-0.23576 1.2892-0.43306c0.90087-0.1973 1.6727-0.63036 2.1579-0.98897 0.48518-0.36729 1.113-1.2558 1.113-1.2558s-0.20226 1.221 0 1.7496c0.20847 0.52984 0.27795 2.0487 0.27795 2.0487s0.58197-0.5162 1.0436-0.76189c0.24445-0.13525 0.87357-0.46408 1.1193-0.85744 0.16999-0.28043 0.38342-1.3128 0.38342-1.3128s0.13774 1.1118 0.48394 1.6504c0.3524 0.51992 0.8686 2.1442 0.8686 2.1442s0.35241-1.0547 0.73583-1.4878c0.37846-0.42933 0.83634-0.98896 0.86861-1.3215 0.0323-0.32883-0.10176-1.051-0.10176-1.051l0.48518 1.051m-14.07 0.75692s0.59189-1.02 1.1503-1.3525c0.55963-0.33255 1.3265-0.9232 1.5337-0.98896 0.2035-0.0658 1.1143-0.56459 1.1143-0.56459m1.2198 6.3718s1.3401-0.68744 1.7409-0.92817c0.83758-0.49014 1.4282-1.3823 1.4282-1.3823" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1011" fill="#db4446" d="m269.54 249.45s-0.52116-0.55591-1.427-0.39459c-0.90582 0.16627-1.4977 1.1912-1.4977 1.1912s0.76686-0.20226 1.221-0.10175c0.45168 0.10175 0.76685 0.56087 0.76685 0.56087s0.41569-0.36357 0.55467-0.56087c0.13898-0.19605 0.37846-0.69488 0.37846-0.69488"/>
+   <path id="path1012" d="m269.54 249.45s-0.52116-0.55591-1.427-0.39459c-0.90582 0.16627-1.4977 1.1912-1.4977 1.1912s0.76686-0.20226 1.221-0.10175c0.45168 0.10175 0.76685 0.56087 0.76685 0.56087s0.41569-0.36357 0.55467-0.56087c0.13898-0.19605 0.37846-0.69488 0.37846-0.69488h0.004z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1013" fill="#db4446" d="m268.5 253.11s-0.76685-0.13029-1.427 0.39832c-0.66138 0.52985-0.69861 1.5498-0.69861 1.5498s0.62912-0.52985 1.1193-0.45912c0.48518 0.0608 1.0758 0.32758 1.0758 0.32758s0.10671-0.63035 0.13773-0.79167c0.10796-0.46035-0.20722-1.025-0.20722-1.025"/>
+   <path id="path1014" d="m268.5 253.11s-0.76685-0.13029-1.427 0.39832c-0.66138 0.52985-0.69861 1.5498-0.69861 1.5498s0.62912-0.52985 1.1193-0.45912c0.48518 0.0608 1.0758 0.32758 1.0758 0.32758s0.10671-0.63035 0.13773-0.79167c0.10796-0.46035-0.20722-1.025-0.20722-1.025z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1015" fill="#db4446" d="m270.28 256.48s-0.0509 0.98028 0.41568 1.5796c0.49014 0.63036 1.396 0.72714 1.396 0.72714s-0.30525-0.65641-0.35116-0.9902c-0.0695-0.49387 0.41569-0.9232 0.41569-0.9232s-0.44795-0.45912-0.90087-0.45912c-0.45415 0-0.97531 0.0658-0.97531 0.0658"/>
+   <path id="path1016" d="m270.28 256.48s-0.0509 0.98028 0.41568 1.5796c0.49014 0.63036 1.396 0.72714 1.396 0.72714s-0.30525-0.65641-0.35116-0.9902c-0.0695-0.49387 0.41569-0.9232 0.41569-0.9232s-0.44795-0.45912-0.90087-0.45912c-0.45415 0-0.97531 0.0658-0.97531 0.0658z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1017" d="m290.83 258.12s2.509 1.5536 2.4395 2.8403c-0.0744 1.2868-1.396 2.9706-1.396 2.9706" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1018" fill="#db4446" d="m279.34 265.16s-0.62663-0.79167-1.4952-0.76065c-0.87356 0.0347-1.7806 0.85247-1.7806 0.85247s1.0833-0.0918 1.3587 0.26679c0.28292 0.36853 0.55963 0.82269 0.55963 0.82269s0.48642-0.2581 0.6986-0.42438c0.20847-0.16131 0.6589-0.75692 0.6589-0.75692"/>
+   <path id="path1019" d="m279.34 265.16s-0.62663-0.79167-1.4952-0.76065c-0.87356 0.0347-1.7806 0.85247-1.7806 0.85247s1.0833-0.0918 1.3587 0.26679c0.28292 0.36853 0.55963 0.82269 0.55963 0.82269s0.48642-0.2581 0.6986-0.42438c0.20847-0.16131 0.6589-0.75692 0.6589-0.75692z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1020" fill="#db4446" d="m276.65 268.62s-1.1453-0.16627-1.7049 0.4281c-0.55963 0.59189-0.52241 1.6814-0.52241 1.6814s0.69861-0.75693 1.3215-0.69241c0.62912 0.0658 1.3265 0.39832 1.3265 0.39832s-0.10671-0.66014-0.1762-0.95794c-0.0695-0.29781-0.24445-0.85744-0.24445-0.85744"/>
+   <path id="path1021" d="m276.65 268.62s-1.1453-0.16627-1.7049 0.4281c-0.55963 0.59189-0.52241 1.6814-0.52241 1.6814s0.69861-0.75693 1.3215-0.69241c0.62912 0.0658 1.3265 0.39832 1.3265 0.39832s-0.10671-0.66014-0.1762-0.95794c-0.0695-0.29781-0.24445-0.85744-0.24445-0.85744z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1022" fill="#db4446" d="m279.13 272.28s-0.55963 0.79167-0.13898 1.4171c0.41569 0.63036 1.2855 0.92816 1.2855 0.92816s-0.31022-0.45912-0.17124-0.99393c0.11043-0.41941 0.83634-0.98896 0.83634-0.98896l-1.8117-0.35861"/>
+   <path id="path1023" d="m279.13 272.28s-0.55963 0.79167-0.13898 1.4171c0.41569 0.63036 1.2855 0.92816 1.2855 0.92816s-0.31022-0.45912-0.17124-0.99393c0.11043-0.41941 0.83634-0.98896 0.83634-0.98896l-1.8117-0.35861v-0.004z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1024" fill="#db4446" d="m294.42 273.77s-1.0063-0.23701-1.566 0.0955c-0.55467 0.32883-1.0076 1.7161-1.0076 1.7161s0.90583-0.75692 1.5672-0.6651c0.66013 0.10424 1.1503 0.3673 1.1503 0.3673s0.10051-0.56459 0.031-0.95422c-0.041-0.23577-0.17497-0.55963-0.17497-0.55963"/>
+   <path id="path1025" d="m294.42 273.77s-1.0063-0.23701-1.566 0.0955c-0.55467 0.32883-1.0076 1.7161-1.0076 1.7161s0.90583-0.75692 1.5672-0.6651c0.66013 0.10424 1.1503 0.3673 1.1503 0.3673s0.10051-0.56459 0.031-0.95422c-0.041-0.23577-0.17497-0.55963-0.17497-0.55963z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1026" fill="#db4446" d="m294.91 277.46s-0.76685 0.79167-0.49014 1.4518c0.28168 0.66138 0.76686 1.3525 0.76686 1.3525s-0.0273-0.98401 0.28291-1.2508c0.44795-0.3946 1.2843-0.46409 1.2843-0.46409s-0.66138-0.59065-0.87357-0.65641c-0.2035-0.0707-0.97036-0.43306-0.97036-0.43306"/>
+   <path id="path1027" d="m294.91 277.46s-0.76685 0.79167-0.49014 1.4518c0.28168 0.66138 0.76686 1.3525 0.76686 1.3525s-0.0273-0.98401 0.28291-1.2508c0.44795-0.3946 1.2843-0.46409 1.2843-0.46409s-0.66138-0.59065-0.87357-0.65641c-0.2035-0.0707-0.97036-0.43306-0.97036-0.43306z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1028" fill="#db4446" d="m298.74 278.62s-0.38342 0.95423 0.35117 1.5796c0.72962 0.63036 1.3587 0.69612 1.3587 0.69612s-0.55963-0.99393-0.38342-1.5188c0.17992-0.54722 0.66013-0.88846 0.66013-0.88846s-0.90583-0.30153-1.0448-0.26678c-0.13774 0.031-0.94182 0.39831-0.94182 0.39831"/>
+   <path id="path1029" d="m298.74 278.62s-0.38342 0.95423 0.35117 1.5796c0.72962 0.63036 1.3587 0.69612 1.3587 0.69612s-0.55963-0.99393-0.38342-1.5188c0.17992-0.54722 0.66013-0.88846 0.66013-0.88846s-0.90583-0.30153-1.0448-0.26678c-0.13774 0.031-0.94182 0.39831-0.94182 0.39831z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1030" fill="#fdeaab" d="m259.5 347.02c2.5785 0.77553 3.8851 2.6964 3.8851 4.9448 0 2.9284-2.8403 5.1508-6.5282 5.1508-3.6866 0-6.6771-2.2224-6.6771-5.1508 0-2.2137 1.2297-4.6867 3.7933-4.8654 0 0-0.0782-0.23204-0.29904-0.61298-0.26555-0.28416-0.79043-0.81401-0.79043-0.81401s0.97904-0.18365 1.5436 0.031c0.56831 0.21467 0.94181 0.57328 0.94181 0.57328s0.26803-0.52488 0.64277-0.93189c0.37846-0.40328 0.8686-0.65641 0.8686-0.65641s0.56708 0.47649 0.75321 0.79539c0.18488 0.32883 0.30525 0.71846 0.30525 0.71846s0.52116-0.42934 0.97407-0.6043c0.45168-0.17869 1.0349-0.3189 1.0349-0.3189s-0.16627 0.56459-0.27671 0.85247c-0.11168 0.2854-0.17124 0.88846-0.17124 0.88846"/>
+   <path id="path1031" d="m259.5 347.02c2.5785 0.77553 3.8851 2.6964 3.8851 4.9448 0 2.9284-2.8403 5.1508-6.5282 5.1508-3.6866 0-6.6771-2.2224-6.6771-5.1508 0-2.2137 1.2297-4.6867 3.7933-4.8654 0 0-0.0782-0.23204-0.29904-0.61298-0.26555-0.28416-0.79043-0.81401-0.79043-0.81401s0.97904-0.18365 1.5436 0.031c0.56831 0.21467 0.94181 0.57328 0.94181 0.57328s0.26803-0.52488 0.64277-0.93189c0.37846-0.40328 0.8686-0.65641 0.8686-0.65641s0.56708 0.47649 0.75321 0.79539c0.18488 0.32883 0.30525 0.71846 0.30525 0.71846s0.52116-0.42934 0.97407-0.6043c0.45168-0.17869 1.0349-0.3189 1.0349-0.3189s-0.16627 0.56459-0.27671 0.85247c-0.11168 0.2854-0.17124 0.88846-0.17124 0.88846z" stroke="#000" stroke-width=".63854" fill="none"/>
+   <path id="path1032" fill="#05906f" d="m256.31 360.3s-4.9026-3.3044-7.0282-3.7511c-2.7175-0.57328-5.7712-0.1092-7.0928-0.17869 0.0372 0.0385 1.5846 1.1416 2.2633 1.8241 0.67999 0.67875 2.9446 2.035 4.2239 2.3552 3.9782 0.99766 7.6338-0.24941 7.6338-0.24941"/>
+   <path id="path1033" d="m256.31 360.3s-4.9026-3.3044-7.0282-3.7511c-2.7175-0.57328-5.7712-0.1092-7.0928-0.17869 0.0372 0.0385 1.5846 1.1416 2.2633 1.8241 0.67999 0.67875 2.9446 2.035 4.2239 2.3552 3.9782 0.99766 7.6338-0.24941 7.6338-0.24941z" stroke="#000" stroke-width=".63854" fill="none"/>
+   <path id="path1034" fill="#05906f" d="m257.71 360.59s3.1406-3.2647 6.4277-3.7151c3.8851-0.53853 6.4277 0.32014 7.9366 0.7135 0.0347 0-1.2471 0.60802-1.9246 1.0721-0.68124 0.46408-2.4308 1.9295-5.1062 1.9606-2.6803 0.0397-5.6372-0.28043-6.1274-0.20598-0.49014 0.0658-1.2061 0.17496-1.2061 0.17496"/>
+   <path id="path1035" d="m257.71 360.59s3.1406-3.2647 6.4277-3.7151c3.8851-0.53853 6.4277 0.32014 7.9366 0.7135 0.0347 0-1.2471 0.60802-1.9246 1.0721-0.68124 0.46408-2.4308 1.9295-5.1062 1.9606-2.6803 0.0397-5.6372-0.28043-6.1274-0.20598-0.49014 0.0658-1.2061 0.17496-1.2061 0.17496z" stroke="#000" stroke-width=".63854" fill="none"/>
+   <path id="path1036" fill="#c00" d="m256.77 356.55c-1.2347-1.1466-2.0028-2.7746-2.0028-4.5813 0-1.803 0.77305-3.431 2.0065-4.5726 1.2297 1.1416 1.9916 2.7696 1.9916 4.5726 0 1.8067-0.76685 3.4347-1.9953 4.5813"/>
+   <path id="path1037" d="m256.77 356.55c-1.2347-1.1466-2.0028-2.7746-2.0028-4.5813 0-1.803 0.77305-3.431 2.0065-4.5726 1.2297 1.1416 1.9916 2.7696 1.9916 4.5726 0 1.8067-0.76685 3.4347-1.9953 4.5813z" stroke="#000" stroke-width=".63854" fill="none"/>
+   <path id="path1038" fill="#05906f" d="m255.52 363.24s0.75817-1.8725 0.83138-3.4831c0.0645-1.3476-0.18986-2.6778-0.18986-2.6778h0.64277 0.33752s0.49014 1.4307 0.49014 2.6778c0 1.2508-0.22708 2.9148-0.22708 2.9148s-0.67875 0.10423-0.90459 0.20971c-0.22211 0.10919-0.98028 0.35861-0.98028 0.35861"/>
+   <path id="path1039" d="m255.52 363.24s0.75817-1.8725 0.83138-3.4831c0.0645-1.3476-0.18986-2.6778-0.18986-2.6778h0.64277 0.33752s0.49014 1.4307 0.49014 2.6778c0 1.2508-0.22708 2.9148-0.22708 2.9148s-0.67875 0.10423-0.90459 0.20971c-0.22211 0.10919-0.98028 0.35861-0.98028 0.35861z" stroke="#000" stroke-width=".63854" fill="none"/>
+   <path id="path1040" fill="#fff" d="m317.54 185.74c0-0.70977 0.60554-1.2744 1.3501-1.2744 0.74823 0 1.3488 0.5646 1.3488 1.2744 0 0.70853-0.60058 1.2768-1.3488 1.2768-0.74452 0-1.3501-0.56831-1.3501-1.2768"/>
+   <path id="path1041" d="m317.54 185.74c0-0.70977 0.60554-1.2744 1.3501-1.2744 0.74823 0 1.3488 0.5646 1.3488 1.2744 0 0.70853-0.60058 1.2768-1.3488 1.2768-0.74452 0-1.3501-0.56831-1.3501-1.2768z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1042" fill="#fff" d="m319.39 182.46c0-0.70481 0.60182-1.2744 1.3501-1.2744 0.74327 0 1.3488 0.56956 1.3488 1.2744 0 0.71349-0.60554 1.2818-1.3488 1.2818-0.74824 0-1.3501-0.56832-1.3501-1.2818"/>
+   <path id="path1043" d="m319.39 182.46c0-0.70481 0.60182-1.2744 1.3501-1.2744 0.74327 0 1.3488 0.56956 1.3488 1.2744 0 0.71349-0.60554 1.2818-1.3488 1.2818-0.74824 0-1.3501-0.56832-1.3501-1.2818z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1044" fill="#fff" d="m320.62 178.67c0-0.70481 0.60678-1.2781 1.3563-1.2781 0.74327 0 1.3488 0.57327 1.3488 1.2781 0 0.70854-0.60554 1.2818-1.3488 1.2818-0.74949 0-1.3563-0.57327-1.3563-1.2818"/>
+   <path id="path1045" d="m320.62 178.67c0-0.70481 0.60678-1.2781 1.3563-1.2781 0.74327 0 1.3488 0.57327 1.3488 1.2781 0 0.70854-0.60554 1.2818-1.3488 1.2818-0.74949 0-1.3563-0.57327-1.3563-1.2818z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1046" fill="#fff" d="m320.78 174.61c0-0.70853 0.6043-1.2768 1.3476-1.2768 0.74452 0 1.3501 0.56832 1.3501 1.2768 0 0.70977-0.60554 1.2781-1.3501 1.2781-0.74328 0-1.3476-0.56832-1.3476-1.2781"/>
+   <path id="path1047" d="m320.78 174.61c0-0.70853 0.6043-1.2768 1.3476-1.2768 0.74452 0 1.3501 0.56832 1.3501 1.2768 0 0.70977-0.60554 1.2781-1.3501 1.2781-0.74328 0-1.3476-0.56832-1.3476-1.2781z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1048" fill="#fff" d="m319.77 170.6c0-0.70481 0.60554-1.2744 1.3476-1.2744 0.74948 0 1.355 0.56955 1.355 1.2744 0 0.71226-0.60554 1.2818-1.355 1.2818-0.74203 0-1.3476-0.56955-1.3476-1.2818"/>
+   <path id="path1049" d="m319.77 170.6c0-0.70481 0.60554-1.2744 1.3476-1.2744 0.74948 0 1.355 0.56955 1.355 1.2744 0 0.71226-0.60554 1.2818-1.355 1.2818-0.74203 0-1.3476-0.56955-1.3476-1.2818z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1050" fill="#fff" d="m317.69 166.97c0-0.70853 0.60554-1.2768 1.3501-1.2768 0.74824 0 1.3513 0.56832 1.3513 1.2768 0 0.70977-0.60306 1.283-1.3513 1.283-0.74452 0-1.3501-0.57328-1.3501-1.283"/>
+   <path id="path1051" d="m317.69 166.97c0-0.70853 0.60554-1.2768 1.3501-1.2768 0.74824 0 1.3513 0.56832 1.3513 1.2768 0 0.70977-0.60306 1.283-1.3513 1.283-0.74452 0-1.3501-0.57328-1.3501-1.283z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1052" fill="#fff" d="m314.92 163.99c0-0.70853 0.6043-1.2818 1.3488-1.2818 0.74948 0 1.3538 0.57328 1.3538 1.2818 0 0.70481-0.6043 1.2781-1.3538 1.2781-0.74452 0-1.3488-0.57327-1.3488-1.2781"/>
+   <path id="path1053" d="m314.92 163.99c0-0.70853 0.6043-1.2818 1.3488-1.2818 0.74948 0 1.3538 0.57328 1.3538 1.2818 0 0.70481-0.6043 1.2781-1.3538 1.2781-0.74452 0-1.3488-0.57327-1.3488-1.2781z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1054" fill="#fff" d="m311.7 161.51c0-0.70978 0.60554-1.2831 1.355-1.2831 0.74328 0 1.3488 0.57328 1.3488 1.2831 0 0.70356-0.60554 1.2768-1.3488 1.2768-0.74948 0-1.355-0.57328-1.355-1.2768"/>
+   <path id="path1055" d="m311.7 161.51c0-0.70978 0.60554-1.2831 1.355-1.2831 0.74328 0 1.3488 0.57328 1.3488 1.2831 0 0.70356-0.60554 1.2768-1.3488 1.2768-0.74948 0-1.355-0.57328-1.355-1.2768z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1056" fill="#fff" d="m307.85 159.48c0-0.70854 0.6043-1.2731 1.3488-1.2731 0.74824 0 1.3538 0.56459 1.3538 1.2731 0 0.70977-0.60554 1.283-1.3538 1.283-0.74452 0-1.3488-0.57328-1.3488-1.283"/>
+   <path id="path1057" d="m307.85 159.48c0-0.70854 0.6043-1.2731 1.3488-1.2731 0.74824 0 1.3538 0.56459 1.3538 1.2731 0 0.70977-0.60554 1.283-1.3538 1.283-0.74452 0-1.3488-0.57328-1.3488-1.283z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1058" fill="#fff" d="m303.86 158.03c0-0.70481 0.60554-1.2781 1.3538-1.2781 0.74327 0 1.3501 0.57328 1.3501 1.2781 0 0.70853-0.60679 1.2818-1.3501 1.2818-0.74824 0-1.3538-0.57328-1.3538-1.2818"/>
+   <path id="path1059" d="m303.86 158.03c0-0.70481 0.60554-1.2781 1.3538-1.2781 0.74327 0 1.3501 0.57328 1.3501 1.2781 0 0.70853-0.60679 1.2818-1.3501 1.2818-0.74824 0-1.3538-0.57328-1.3538-1.2818z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1060" fill="#fff" d="m299.4 157.23c0-0.70481 0.6043-1.2818 1.3488-1.2818 0.74948 0 1.3525 0.577 1.3525 1.2818 0 0.70481-0.60306 1.2781-1.3525 1.2781-0.74452 0-1.3488-0.57327-1.3488-1.2781"/>
+   <path id="path1061" d="m299.4 157.23c0-0.70481 0.6043-1.2818 1.3488-1.2818 0.74948 0 1.3525 0.577 1.3525 1.2818 0 0.70481-0.60306 1.2781-1.3525 1.2781-0.74452 0-1.3488-0.57327-1.3488-1.2781z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1062" fill="#fff" d="m295.16 157.01c0-0.70481 0.60554-1.2731 1.3538-1.2731 0.74451 0 1.3501 0.56831 1.3501 1.2731 0 0.70977-0.60555 1.283-1.3501 1.283-0.74824 0-1.3538-0.57328-1.3538-1.283"/>
+   <path id="path1063" d="m295.16 157.01c0-0.70481 0.60554-1.2731 1.3538-1.2731 0.74451 0 1.3501 0.56831 1.3501 1.2731 0 0.70977-0.60555 1.283-1.3501 1.283-0.74824 0-1.3538-0.57328-1.3538-1.283z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1064" fill="#fff" d="m291 157.15c0-0.70481 0.60678-1.2781 1.3538-1.2781 0.74948 0 1.3501 0.57327 1.3501 1.2781 0 0.70853-0.60058 1.2818-1.3501 1.2818-0.747 0-1.3538-0.57328-1.3538-1.2818"/>
+   <path id="path1065" d="m291 157.15c0-0.70481 0.60678-1.2781 1.3538-1.2781 0.74948 0 1.3501 0.57327 1.3501 1.2781 0 0.70853-0.60058 1.2818-1.3501 1.2818-0.747 0-1.3538-0.57328-1.3538-1.2818z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1066" fill="#fff" d="m286.85 157.15c0-0.70481 0.6043-1.2781 1.3488-1.2781 0.74328 0 1.3488 0.57327 1.3488 1.2781 0 0.70853-0.60554 1.2818-1.3488 1.2818-0.74451 0-1.3488-0.57328-1.3488-1.2818"/>
+   <path id="path1067" d="m286.85 157.15c0-0.70481 0.6043-1.2781 1.3488-1.2781 0.74328 0 1.3488 0.57327 1.3488 1.2781 0 0.70853-0.60554 1.2818-1.3488 1.2818-0.74451 0-1.3488-0.57328-1.3488-1.2818z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1068" fill="#fff" d="m288.93 160.72c0-0.70853 0.60554-1.2818 1.3488-1.2818 0.74824 0 1.3488 0.57328 1.3488 1.2818 0 0.70481-0.60057 1.2818-1.3488 1.2818-0.74328 0-1.3488-0.577-1.3488-1.2818"/>
+   <path id="path1069" d="m288.93 160.72c0-0.70853 0.60554-1.2818 1.3488-1.2818 0.74824 0 1.3488 0.57328 1.3488 1.2818 0 0.70481-0.60057 1.2818-1.3488 1.2818-0.74328 0-1.3488-0.577-1.3488-1.2818z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1070" fill="#fff" d="m289.77 164.66c0-0.70853 0.60554-1.283 1.35-1.283 0.74824 0 1.3538 0.57452 1.3538 1.283 0 0.69985-0.60554 1.2731-1.3538 1.2731-0.74451 0-1.35-0.57328-1.35-1.2731"/>
+   <path id="path1071" d="m289.77 164.66c0-0.70853 0.60554-1.283 1.35-1.283 0.74824 0 1.3538 0.57452 1.3538 1.283 0 0.69985-0.60554 1.2731-1.3538 1.2731-0.74451 0-1.35-0.57328-1.35-1.2731z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1072" fill="#fff" d="m289.92 168.58c0-0.7135 0.60554-1.2818 1.3538-1.2818 0.74452 0 1.3476 0.56831 1.3476 1.2818 0 0.70481-0.60306 1.2781-1.3476 1.2781-0.74824 0-1.3538-0.57328-1.3538-1.2781"/>
+   <path id="path1073" d="m289.92 168.58c0-0.7135 0.60554-1.2818 1.3538-1.2818 0.74452 0 1.3476 0.56831 1.3476 1.2818 0 0.70481-0.60306 1.2781-1.3476 1.2781-0.74824 0-1.3538-0.57328-1.3538-1.2781z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1074" fill="#fff" d="m288.69 172.15c0-0.70481 0.60554-1.2818 1.3488-1.2818 0.74948 0 1.35 0.577 1.35 1.2818 0 0.70853-0.60057 1.2781-1.35 1.2781-0.74328 0-1.3488-0.56955-1.3488-1.2781"/>
+   <path id="path1075" d="m288.69 172.15c0-0.70481 0.60554-1.2818 1.3488-1.2818 0.74948 0 1.35 0.577 1.35 1.2818 0 0.70853-0.60057 1.2781-1.35 1.2781-0.74328 0-1.3488-0.56955-1.3488-1.2781z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1076" fill="#fff" d="m286.4 175.44c0-0.70481 0.60679-1.2818 1.3501-1.2818 0.747 0 1.3488 0.577 1.3488 1.2818 0 0.70481-0.60182 1.2781-1.3488 1.2781-0.74327 0-1.3501-0.57327-1.3501-1.2781"/>
+   <path id="path1077" d="m286.4 175.44c0-0.70481 0.60679-1.2818 1.3501-1.2818 0.747 0 1.3488 0.577 1.3488 1.2818 0 0.70481-0.60182 1.2781-1.3488 1.2781-0.74327 0-1.3501-0.57327-1.3501-1.2781z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1078" fill="#fff" d="m283.7 154.68c0-0.70481 0.60554-1.2744 1.3538-1.2744 0.74452 0 1.3488 0.56955 1.3488 1.2744 0 0.70853-0.6043 1.2818-1.3488 1.2818-0.74824 0-1.3538-0.57328-1.3538-1.2818"/>
+   <path id="path1079" d="m283.7 154.68c0-0.70481 0.60554-1.2744 1.3538-1.2744 0.74452 0 1.3488 0.56955 1.3488 1.2744 0 0.70853-0.6043 1.2818-1.3488 1.2818-0.74824 0-1.3538-0.57328-1.3538-1.2818z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1080" fill="#fff" d="m280.01 152.64c0-0.70481 0.60182-1.2818 1.3501-1.2818 0.74451 0 1.3476 0.577 1.3476 1.2818 0 0.70481-0.60306 1.2781-1.3476 1.2781-0.74824 0-1.3501-0.57327-1.3501-1.2781"/>
+   <path id="path1081" d="m280.01 152.64c0-0.70481 0.60182-1.2818 1.3501-1.2818 0.74451 0 1.3476 0.577 1.3476 1.2818 0 0.70481-0.60306 1.2781-1.3476 1.2781-0.74824 0-1.3501-0.57327-1.3501-1.2781z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1082" fill="#fff" d="m275.94 151.41c0-0.70481 0.60554-1.2731 1.3525-1.2731 0.74452 0 1.3501 0.56831 1.3501 1.2731 0 0.70853-0.60554 1.283-1.3501 1.283-0.747 0-1.3525-0.57452-1.3525-1.283"/>
+   <path id="path1083" d="m275.94 151.41c0-0.70481 0.60554-1.2731 1.3525-1.2731 0.74452 0 1.3501 0.56831 1.3501 1.2731 0 0.70853-0.60554 1.283-1.3501 1.283-0.747 0-1.3525-0.57452-1.3525-1.283z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1084" fill="#fff" d="m271.7 150.68c0-0.70481 0.60554-1.2781 1.3488-1.2781 0.74824 0 1.3501 0.57328 1.3501 1.2781 0 0.70357-0.60182 1.2781-1.3501 1.2781-0.74328 0-1.3488-0.57452-1.3488-1.2781"/>
+   <path id="path1085" d="m271.7 150.68c0-0.70481 0.60554-1.2781 1.3488-1.2781 0.74824 0 1.3501 0.57328 1.3501 1.2781 0 0.70357-0.60182 1.2781-1.3501 1.2781-0.74328 0-1.3488-0.57452-1.3488-1.2781z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1086" fill="#fff" d="m267.56 150.75c0-0.70481 0.6043-1.2818 1.3488-1.2818 0.74824 0 1.3538 0.577 1.3538 1.2818 0 0.70977-0.60554 1.2781-1.3538 1.2781-0.74451 0-1.3488-0.56831-1.3488-1.2781"/>
+   <path id="path1087" d="m267.56 150.75c0-0.70481 0.6043-1.2818 1.3488-1.2818 0.74824 0 1.3538 0.577 1.3538 1.2818 0 0.70977-0.60554 1.2781-1.3538 1.2781-0.74451 0-1.3488-0.56831-1.3488-1.2781z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1088" fill="#fff" d="m263.25 151.48c0-0.70481 0.60554-1.2744 1.3501-1.2744 0.74824 0 1.3538 0.56955 1.3538 1.2744 0 0.71226-0.60554 1.2818-1.3538 1.2818-0.74452 0-1.3501-0.56955-1.3501-1.2818"/>
+   <path id="path1089" d="m263.25 151.48c0-0.70481 0.60554-1.2744 1.3501-1.2744 0.74824 0 1.3538 0.56955 1.3538 1.2744 0 0.71226-0.60554 1.2818-1.3538 1.2818-0.74452 0-1.3501-0.56955-1.3501-1.2818z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1090" fill="#fff" d="m259.26 152.86c0-0.70977 0.60554-1.283 1.3488-1.283 0.74824 0 1.3538 0.57328 1.3538 1.283 0 0.70357-0.60554 1.2818-1.3538 1.2818-0.74328 0-1.3488-0.57824-1.3488-1.2818"/>
+   <path id="path1091" d="m259.26 152.86c0-0.70977 0.60554-1.283 1.3488-1.283 0.74824 0 1.3538 0.57328 1.3538 1.283 0 0.70357-0.60554 1.2818-1.3538 1.2818-0.74328 0-1.3488-0.57824-1.3488-1.2818z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1092" fill="#fff" d="m191.64 185.74c0-0.70977 0.60554-1.2744 1.3488-1.2744 0.74948 0 1.3501 0.5646 1.3501 1.2744 0 0.70853-0.60058 1.2768-1.3501 1.2768-0.74327 0-1.3488-0.56831-1.3488-1.2768"/>
+   <path id="path1093" d="m191.64 185.74c0-0.70977 0.60554-1.2744 1.3488-1.2744 0.74948 0 1.3501 0.5646 1.3501 1.2744 0 0.70853-0.60058 1.2768-1.3501 1.2768-0.74327 0-1.3488-0.56831-1.3488-1.2768z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1094" fill="#fff" d="m189.79 182.46c0-0.70481 0.60554-1.2744 1.3501-1.2744 0.74824 0 1.3538 0.56956 1.3538 1.2744 0 0.71349-0.60554 1.2818-1.3538 1.2818-0.74452 0-1.3501-0.56832-1.3501-1.2818"/>
+   <path id="path1095" d="m189.79 182.46c0-0.70481 0.60554-1.2744 1.3501-1.2744 0.74824 0 1.3538 0.56956 1.3538 1.2744 0 0.71349-0.60554 1.2818-1.3538 1.2818-0.74452 0-1.3501-0.56832-1.3501-1.2818z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1096" fill="#fff" d="m188.56 178.67c0-0.70481 0.60554-1.2781 1.3538-1.2781 0.74451 0 1.35 0.57327 1.35 1.2781 0 0.70854-0.60554 1.2818-1.35 1.2818-0.74824 0-1.3538-0.57327-1.3538-1.2818"/>
+   <path id="path1097" d="m188.56 178.67c0-0.70481 0.60554-1.2781 1.3538-1.2781 0.74451 0 1.35 0.57327 1.35 1.2781 0 0.70854-0.60554 1.2818-1.35 1.2818-0.74824 0-1.3538-0.57327-1.3538-1.2818z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1098" fill="#fff" d="m188.4 174.61c0-0.70853 0.60554-1.2768 1.3501-1.2768 0.74824 0 1.3538 0.56832 1.3538 1.2768 0 0.70977-0.60554 1.2781-1.3538 1.2781-0.74452 0-1.3501-0.56832-1.3501-1.2781"/>
+   <path id="path1099" d="m188.4 174.61c0-0.70853 0.60554-1.2768 1.3501-1.2768 0.74824 0 1.3538 0.56832 1.3538 1.2768 0 0.70977-0.60554 1.2781-1.3538 1.2781-0.74452 0-1.3501-0.56832-1.3501-1.2781z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1100" fill="#fff" d="m189.41 170.6c0-0.70481 0.60554-1.2744 1.3488-1.2744 0.74452 0 1.3501 0.56955 1.3501 1.2744 0 0.71226-0.60554 1.2818-1.3501 1.2818-0.74327 0-1.3488-0.56955-1.3488-1.2818"/>
+   <path id="path1101" d="m189.41 170.6c0-0.70481 0.60554-1.2744 1.3488-1.2744 0.74452 0 1.3501 0.56955 1.3501 1.2744 0 0.71226-0.60554 1.2818-1.3501 1.2818-0.74327 0-1.3488-0.56955-1.3488-1.2818z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1102" fill="#fff" d="m191.48 166.97c0-0.70853 0.60554-1.2768 1.355-1.2768 0.74327 0 1.3488 0.56832 1.3488 1.2768 0 0.70977-0.60555 1.283-1.3488 1.283-0.74948 0-1.355-0.57328-1.355-1.283"/>
+   <path id="path1103" d="m191.48 166.97c0-0.70853 0.60554-1.2768 1.355-1.2768 0.74327 0 1.3488 0.56832 1.3488 1.2768 0 0.70977-0.60555 1.283-1.3488 1.283-0.74948 0-1.355-0.57328-1.355-1.283z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1104" fill="#fff" d="m194.26 163.99c0-0.70853 0.60554-1.2818 1.3538-1.2818 0.74328 0 1.3488 0.57328 1.3488 1.2818 0 0.70481-0.60554 1.2781-1.3488 1.2781-0.74824 0-1.3538-0.57327-1.3538-1.2781"/>
+   <path id="path1105" d="m194.26 163.99c0-0.70853 0.60554-1.2818 1.3538-1.2818 0.74328 0 1.3488 0.57328 1.3488 1.2818 0 0.70481-0.60554 1.2781-1.3488 1.2781-0.74824 0-1.3538-0.57327-1.3538-1.2781z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1106" fill="#fff" d="m197.48 161.51c0-0.70978 0.60554-1.2831 1.3538-1.2831 0.74452 0 1.3501 0.57328 1.3501 1.2831 0 0.70356-0.60554 1.2768-1.3501 1.2768-0.74824 0-1.3538-0.57328-1.3538-1.2768"/>
+   <path id="path1107" d="m197.48 161.51c0-0.70978 0.60554-1.2831 1.3538-1.2831 0.74452 0 1.3501 0.57328 1.3501 1.2831 0 0.70356-0.60554 1.2768-1.3501 1.2768-0.74824 0-1.3538-0.57328-1.3538-1.2768z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1108" fill="#fff" d="m201.32 159.48c0-0.70854 0.60554-1.2731 1.3538-1.2731 0.74452 0 1.3501 0.56459 1.3501 1.2731 0 0.70977-0.60554 1.283-1.3501 1.283-0.74824 0-1.3538-0.57328-1.3538-1.283"/>
+   <path id="path1109" d="m201.32 159.48c0-0.70854 0.60554-1.2731 1.3538-1.2731 0.74452 0 1.3501 0.56459 1.3501 1.2731 0 0.70977-0.60554 1.283-1.3501 1.283-0.74824 0-1.3538-0.57328-1.3538-1.283z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1110" fill="#fff" d="m205.32 158.03c0-0.70481 0.6043-1.2781 1.3488-1.2781 0.74824 0 1.3538 0.57328 1.3538 1.2781 0 0.70853-0.60554 1.2818-1.3538 1.2818-0.74452 0-1.3488-0.57328-1.3488-1.2818"/>
+   <path id="path1111" d="m205.32 158.03c0-0.70481 0.6043-1.2781 1.3488-1.2781 0.74824 0 1.3538 0.57328 1.3538 1.2781 0 0.70853-0.60554 1.2818-1.3538 1.2818-0.74452 0-1.3488-0.57328-1.3488-1.2818z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1112" fill="#fff" d="m209.79 157.23c0-0.70481 0.6043-1.2818 1.3488-1.2818 0.74328 0 1.3488 0.577 1.3488 1.2818 0 0.70481-0.60554 1.2781-1.3488 1.2781-0.74451 0-1.3488-0.57327-1.3488-1.2781"/>
+   <path id="path1113" d="m209.79 157.23c0-0.70481 0.6043-1.2818 1.3488-1.2818 0.74328 0 1.3488 0.577 1.3488 1.2818 0 0.70481-0.60554 1.2781-1.3488 1.2781-0.74451 0-1.3488-0.57327-1.3488-1.2781z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1114" fill="#fff" d="m214.02 157.01c0-0.70481 0.6043-1.2731 1.3538-1.2731 0.74328 0 1.3488 0.56831 1.3488 1.2731 0 0.70977-0.60554 1.283-1.3488 1.283-0.74948 0-1.3538-0.57328-1.3538-1.283"/>
+   <path id="path1115" d="m214.02 157.01c0-0.70481 0.6043-1.2731 1.3538-1.2731 0.74328 0 1.3488 0.56831 1.3488 1.2731 0 0.70977-0.60554 1.283-1.3488 1.283-0.74948 0-1.3538-0.57328-1.3538-1.283z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1116" fill="#fff" d="m218.18 157.15c0-0.70481 0.60678-1.2781 1.3501-1.2781 0.74948 0 1.3538 0.57327 1.3538 1.2781 0 0.70853-0.6043 1.2818-1.3538 1.2818-0.74328 0-1.3501-0.57328-1.3501-1.2818"/>
+   <path id="path1117" d="m218.18 157.15c0-0.70481 0.60678-1.2781 1.3501-1.2781 0.74948 0 1.3538 0.57327 1.3538 1.2781 0 0.70853-0.6043 1.2818-1.3538 1.2818-0.74328 0-1.3501-0.57328-1.3501-1.2818z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1118" fill="#fff" d="m222.33 157.15c0-0.70481 0.60554-1.2781 1.3501-1.2781 0.74824 0 1.3538 0.57327 1.3538 1.2781 0 0.70853-0.60554 1.2818-1.3538 1.2818-0.74452 0-1.3501-0.57328-1.3501-1.2818"/>
+   <path id="path1119" d="m222.33 157.15c0-0.70481 0.60554-1.2781 1.3501-1.2781 0.74824 0 1.3538 0.57327 1.3538 1.2781 0 0.70853-0.60554 1.2818-1.3538 1.2818-0.74452 0-1.3501-0.57328-1.3501-1.2818z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1120" fill="#fff" d="m220.26 160.72c0-0.70853 0.60429-1.2818 1.3488-1.2818 0.74824 0 1.3538 0.57328 1.3538 1.2818 0 0.70481-0.60554 1.2818-1.3538 1.2818-0.74452 0-1.3488-0.577-1.3488-1.2818"/>
+   <path id="path1121" d="m220.26 160.72c0-0.70853 0.60429-1.2818 1.3488-1.2818 0.74824 0 1.3538 0.57328 1.3538 1.2818 0 0.70481-0.60554 1.2818-1.3538 1.2818-0.74452 0-1.3488-0.577-1.3488-1.2818z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1122" fill="#fff" d="m219.41 164.66c0-0.70853 0.60057-1.283 1.3501-1.283 0.74327 0 1.3488 0.57452 1.3488 1.283 0 0.69985-0.60554 1.2731-1.3488 1.2731-0.74949 0-1.3501-0.57328-1.3501-1.2731"/>
+   <path id="path1123" d="m219.41 164.66c0-0.70853 0.60057-1.283 1.3501-1.283 0.74327 0 1.3488 0.57452 1.3488 1.283 0 0.69985-0.60554 1.2731-1.3488 1.2731-0.74949 0-1.3501-0.57328-1.3501-1.2731z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1124" fill="#fff" d="m219.25 168.58c0-0.7135 0.60554-1.2818 1.3538-1.2818 0.74328 0 1.3488 0.56831 1.3488 1.2818 0 0.70481-0.60554 1.2781-1.3488 1.2781-0.74824 0-1.3538-0.57328-1.3538-1.2781"/>
+   <path id="path1125" d="m219.25 168.58c0-0.7135 0.60554-1.2818 1.3538-1.2818 0.74328 0 1.3488 0.56831 1.3488 1.2818 0 0.70481-0.60554 1.2781-1.3488 1.2781-0.74824 0-1.3538-0.57328-1.3538-1.2781z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1126" fill="#fff" d="m220.49 172.15c0-0.70481 0.60554-1.2818 1.3488-1.2818 0.74948 0 1.3538 0.577 1.3538 1.2818 0 0.70853-0.6043 1.2781-1.3538 1.2781-0.74327 0-1.3488-0.56955-1.3488-1.2781"/>
+   <path id="path1127" d="m220.49 172.15c0-0.70481 0.60554-1.2818 1.3488-1.2818 0.74948 0 1.3538 0.577 1.3538 1.2818 0 0.70853-0.6043 1.2781-1.3538 1.2781-0.74327 0-1.3488-0.56955-1.3488-1.2781z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1128" fill="#fff" d="m222.78 175.44c0-0.70481 0.60678-1.2818 1.3488-1.2818 0.74948 0 1.355 0.577 1.355 1.2818 0 0.70481-0.60554 1.2781-1.355 1.2781-0.74204 0-1.3488-0.57327-1.3488-1.2781"/>
+   <path id="path1129" d="m222.78 175.44c0-0.70481 0.60678-1.2818 1.3488-1.2818 0.74948 0 1.355 0.577 1.355 1.2818 0 0.70481-0.60554 1.2781-1.355 1.2781-0.74204 0-1.3488-0.57327-1.3488-1.2781z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1130" fill="#fff" d="m225.48 154.68c0-0.70481 0.60554-1.2744 1.3488-1.2744 0.74824 0 1.3538 0.56955 1.3538 1.2744 0 0.70853-0.60554 1.2818-1.3538 1.2818-0.74328 0-1.3488-0.57328-1.3488-1.2818"/>
+   <path id="path1131" d="m225.48 154.68c0-0.70481 0.60554-1.2744 1.3488-1.2744 0.74824 0 1.3538 0.56955 1.3538 1.2744 0 0.70853-0.60554 1.2818-1.3538 1.2818-0.74328 0-1.3488-0.57328-1.3488-1.2818z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1132" fill="#fff" d="m229.17 152.64c0-0.70481 0.60554-1.2818 1.3488-1.2818 0.74824 0 1.3538 0.577 1.3538 1.2818 0 0.70481-0.60554 1.2781-1.3538 1.2781-0.74327 0-1.3488-0.57327-1.3488-1.2781"/>
+   <path id="path1133" d="m229.17 152.64c0-0.70481 0.60554-1.2818 1.3488-1.2818 0.74824 0 1.3538 0.577 1.3538 1.2818 0 0.70481-0.60554 1.2781-1.3538 1.2781-0.74327 0-1.3488-0.57327-1.3488-1.2781z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1134" fill="#fff" d="m233.24 151.41c0-0.70481 0.60678-1.2731 1.3538-1.2731 0.74452 0 1.3501 0.56831 1.3501 1.2731 0 0.70853-0.60554 1.283-1.3501 1.283-0.747 0-1.3538-0.57452-1.3538-1.283"/>
+   <path id="path1135" d="m233.24 151.41c0-0.70481 0.60678-1.2731 1.3538-1.2731 0.74452 0 1.3501 0.56831 1.3501 1.2731 0 0.70853-0.60554 1.283-1.3501 1.283-0.747 0-1.3538-0.57452-1.3538-1.283z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1136" fill="#fff" d="m237.48 150.68c0-0.70481 0.60678-1.2781 1.3501-1.2781 0.74948 0 1.355 0.57328 1.355 1.2781 0 0.70357-0.60554 1.2781-1.355 1.2781-0.74328 0-1.3501-0.57452-1.3501-1.2781"/>
+   <path id="path1137" d="m237.48 150.68c0-0.70481 0.60678-1.2781 1.3501-1.2781 0.74948 0 1.355 0.57328 1.355 1.2781 0 0.70357-0.60554 1.2781-1.355 1.2781-0.74328 0-1.3501-0.57452-1.3501-1.2781z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1138" fill="#fff" d="m241.62 150.75c0-0.70481 0.59934-1.2818 1.3488-1.2818 0.74327 0 1.3488 0.577 1.3488 1.2818 0 0.70977-0.60554 1.2781-1.3488 1.2781-0.74948 0-1.3488-0.56831-1.3488-1.2781"/>
+   <path id="path1139" d="m241.62 150.75c0-0.70481 0.59934-1.2818 1.3488-1.2818 0.74327 0 1.3488 0.577 1.3488 1.2818 0 0.70977-0.60554 1.2781-1.3488 1.2781-0.74948 0-1.3488-0.56831-1.3488-1.2781z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1140" fill="#fff" d="m245.93 151.48c0-0.70481 0.60554-1.2744 1.3488-1.2744 0.74948 0 1.3501 0.56955 1.3501 1.2744 0 0.71226-0.60058 1.2818-1.3501 1.2818-0.74328 0-1.3488-0.56955-1.3488-1.2818"/>
+   <path id="path1141" d="m245.93 151.48c0-0.70481 0.60554-1.2744 1.3488-1.2744 0.74948 0 1.3501 0.56955 1.3501 1.2744 0 0.71226-0.60058 1.2818-1.3501 1.2818-0.74328 0-1.3488-0.56955-1.3488-1.2818z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1142" fill="#fff" d="m249.92 152.86c0-0.70977 0.6043-1.283 1.3525-1.283 0.74452 0 1.3501 0.57328 1.3501 1.283 0 0.70357-0.60554 1.2818-1.3501 1.2818-0.74824 0-1.3525-0.57824-1.3525-1.2818"/>
+   <path id="path1143" d="m249.92 152.86c0-0.70977 0.6043-1.283 1.3525-1.283 0.74452 0 1.3501 0.57328 1.3501 1.283 0 0.70357-0.60554 1.2818-1.3501 1.2818-0.74824 0-1.3525-0.57824-1.3525-1.2818z" stroke="#000" stroke-width=".48115" fill="none"/>
+   <path id="path1144" fill="#c8b000" d="m242.97 277.96h-34.956v-8.7878h4.9957v-17.985h-2.3204v-8.0222h3.8305v-5.6571h-1.69v-4.0526h1.6032v1.1776h1.6938v-1.1776h1.8687v1.1776h1.695v-1.1776h1.6044v4.0526h-1.7844v5.6571h3.4794v-12.077h-2.0511v-4.647h1.5201v1.185h1.8662v-1.185h2.5003v1.185h1.9643v-1.185h1.5151v4.647h-2.3192v12.077h3.3851v-5.6571h-1.69v-4.0526h1.5114v1.1776h1.7782v-1.1776h1.8774v1.1776h1.695v-1.1776h1.602v4.0526h-1.7819v5.6571h4.1035v8.0222h-2.4085v17.985h4.9039v8.7878"/>
+   <path id="path1145" d="m242.97 277.96h-34.956v-8.7878h4.9957v-17.985h-2.3204v-8.0222h3.8305v-5.6571h-1.69v-4.0526h1.6032v1.1776h1.6938v-1.1776h1.8687v1.1776h1.695v-1.1776h1.6044v4.0526h-1.7844v5.6571h3.4794v-12.077h-2.0511v-4.647h1.5201v1.185h1.8662v-1.185h2.5003v1.185h1.9643v-1.185h1.5151v4.647h-2.3192v12.077h3.3851v-5.6571h-1.69v-4.0526h1.5114v1.1776h1.7782v-1.1776h1.8774v1.1776h1.695v-1.1776h1.602v4.0526h-1.7819v5.6571h4.1035v8.0222h-2.4085v17.985h4.9039v8.7878h0.009z" stroke="#000" stroke-width=".63854" fill="none"/>
+   <path id="path1146" fill="#0076bc" d="m216.52 257.16c0-0.84502 0.66014-1.5238 1.5101-1.5238 0.84999 0 1.5387 0.67875 1.5387 1.5238v3.5005h-3.0488v-3.5005"/>
+   <path id="path1147" d="m216.52 257.16c0-0.84502 0.66014-1.5238 1.5101-1.5238 0.84999 0 1.5387 0.67875 1.5387 1.5238v3.5005h-3.0488v-3.5005z" stroke="#000" stroke-width=".63854" fill="none"/>
+   <path id="path1148" fill="#0076bc" d="m231.52 257.16c0-0.84502 0.65765-1.5238 1.5076-1.5238 0.85496 0 1.5436 0.67875 1.5436 1.5238v3.5005h-3.055l0.004-3.5005"/>
+   <path id="path1149" d="m231.52 257.16c0-0.84502 0.65765-1.5238 1.5076-1.5238 0.85496 0 1.5436 0.67875 1.5436 1.5238v3.5005h-3.055l0.004-3.5005z" stroke="#000" stroke-width=".63854" fill="none"/>
+   <path id="path1150" fill="#0076bc" d="m222.21 272.53c0-1.7595 1.4369-3.1816 3.2908-3.1816 1.8551 0 3.359 1.422 3.359 3.1816v5.435h-6.6547l0.005-5.435"/>
+   <path id="path1151" d="m222.21 272.53c0-1.7595 1.4369-3.1816 3.2908-3.1816 1.8551 0 3.359 1.422 3.359 3.1816v5.435h-6.6547l0.005-5.435z" stroke="#000" stroke-width=".63854" fill="none"/>
+   <path id="path1152" fill="#c00" d="m236.41 287.2c0-12.45 8.969-22.541 20.031-22.541 11.066 0 20.035 10.092 20.035 22.541 0 12.45-8.969 22.541-20.035 22.541-11.062 0-20.031-10.092-20.031-22.541"/>
+   <path id="path1153" d="m236.41 287.2c0-12.45 8.969-22.541 20.031-22.541 11.066 0 20.035 10.092 20.035 22.541 0 12.45-8.969 22.541-20.035 22.541-11.062 0-20.031-10.092-20.031-22.541z" stroke="#000" stroke-width=".74646" fill="none"/>
+   <path id="path1154" fill="#0076bc" d="m242.36 287.16c0-9.129 6.3073-16.528 14.097-16.528 7.7852 0 14.094 7.3992 14.094 16.528 0 9.1327-6.3085 16.537-14.094 16.537-7.7901 0-14.097-7.4042-14.097-16.537"/>
+   <path id="path1155" d="m242.36 287.16c0-9.129 6.3073-16.528 14.097-16.528 7.7852 0 14.094 7.3992 14.094 16.528 0 9.1327-6.3085 16.537-14.094 16.537-7.7901 0-14.097-7.4042-14.097-16.537z" stroke="#000" stroke-width=".74646" fill="none"/>
+   <path id="path1156" fill="#c8b100" d="m249.8 275.78s-1.6739 1.834-1.6739 3.5315c0 1.7074 0.70729 3.1245 0.70729 3.1245-0.25313-0.67379-0.93685-1.159-1.7409-1.159-1.0163 0-1.8439 0.77926-1.8439 1.7459 0 0.28043 0.17124 0.71722 0.30029 0.95794l0.60058 1.2123c0.19854-0.44671 0.66634-0.69613 1.2111-0.69613 0.72839 0 1.3215 0.55591 1.3215 1.2483 0 0.10423-0.0136 0.20971-0.0409 0.30525l-1.5027 0.005v1.2781h1.3401l-0.99766 1.9779 1.3215-0.5162 0.99765 1.1242 1.0349-1.1242 1.3178 0.5162-0.99393-1.9779h1.3401v-1.2781l-1.5064-0.005c-0.0273-0.0955-0.0323-0.20102-0.0323-0.30525 0-0.6924 0.58196-1.2483 1.3116-1.2483 0.54474 0 1.0125 0.24942 1.2148 0.69613l0.59562-1.2123c0.13029-0.24072 0.30153-0.67751 0.30153-0.95794 0-0.96663-0.82269-1.7459-1.8439-1.7459-0.80408 0-1.4828 0.48517-1.7372 1.159 0 0 0.70233-1.4171 0.70233-3.1245 0-1.6975-1.7087-3.5315-1.7087-3.5315"/>
+   <path id="path1157" stroke-linejoin="round" d="m249.8 275.78s-1.6739 1.834-1.6739 3.5315c0 1.7074 0.70729 3.1245 0.70729 3.1245-0.25313-0.67379-0.93685-1.159-1.7409-1.159-1.0163 0-1.8439 0.77926-1.8439 1.7459 0 0.28043 0.17124 0.71722 0.30029 0.95794l0.60058 1.2123c0.19854-0.44671 0.66634-0.69613 1.2111-0.69613 0.72839 0 1.3215 0.55591 1.3215 1.2483 0 0.10423-0.0136 0.20971-0.0409 0.30525l-1.5027 0.005v1.2781h1.3401l-0.99766 1.9779 1.3215-0.5162 0.99765 1.1242 1.0349-1.1242 1.3178 0.5162-0.99393-1.9779h1.3401v-1.2781l-1.5064-0.005c-0.0273-0.0955-0.0323-0.20102-0.0323-0.30525 0-0.6924 0.58196-1.2483 1.3116-1.2483 0.54474 0 1.0125 0.24942 1.2148 0.69613l0.59562-1.2123c0.13029-0.24072 0.30153-0.67751 0.30153-0.95794 0-0.96663-0.82269-1.7459-1.8439-1.7459-0.80408 0-1.4828 0.48517-1.7372 1.159 0 0 0.70233-1.4171 0.70233-3.1245 0-1.6975-1.7087-3.5315-1.7087-3.5315h0.004z" stroke="#000" stroke-width=".41820" fill="none"/>
+   <path id="path1158" fill="#c8b100" d="m247.13 287.33h5.3642v-1.2781h-5.3642v1.2781z"/>
+   <path id="path1159" d="m247.13 287.33h5.3642v-1.2781h-5.3642v1.2781z" stroke="#000" stroke-width=".41820" fill="none"/>
+   <path id="path1160" fill="#c8b100" d="m262.9 275.78s-1.6727 1.834-1.6727 3.5315c0 1.7074 0.70233 3.1245 0.70233 3.1245-0.24942-0.67379-0.93313-1.159-1.7372-1.159-1.0212 0-1.8439 0.77926-1.8439 1.7459 0 0.28043 0.17124 0.71722 0.30029 0.95794l0.59561 1.2123c0.20474-0.44671 0.67131-0.69613 1.216-0.69613 0.72962 0 1.3166 0.55591 1.3166 1.2483 0 0.10423-0.009 0.20971-0.036 0.30525l-1.5027 0.005v1.2781h1.3401l-0.99765 1.9779 1.3166-0.5162 1.0026 1.1242 1.0312-1.1242 1.3215 0.5162-0.99889-1.9779h1.3401v-1.2781l-1.5014-0.005c-0.0285-0.0955-0.0372-0.20102-0.0372-0.30525 0-0.6924 0.58693-1.2483 1.3178-1.2483 0.54473 0 1.0113 0.24942 1.2098 0.69613l0.60057-1.2123c0.13029-0.24072 0.29905-0.67751 0.29905-0.95794 0-0.96663-0.82517-1.7459-1.8427-1.7459-0.80284 0-1.489 0.48517-1.7409 1.159 0 0 0.70605-1.4171 0.70605-3.1245 0-1.6975-1.7087-3.5315-1.7087-3.5315"/>
+   <path id="path1161" stroke-linejoin="round" d="m262.9 275.78s-1.6727 1.834-1.6727 3.5315c0 1.7074 0.70233 3.1245 0.70233 3.1245-0.24942-0.67379-0.93313-1.159-1.7372-1.159-1.0212 0-1.8439 0.77926-1.8439 1.7459 0 0.28043 0.17124 0.71722 0.30029 0.95794l0.59561 1.2123c0.20474-0.44671 0.67131-0.69613 1.216-0.69613 0.72962 0 1.3166 0.55591 1.3166 1.2483 0 0.10423-0.009 0.20971-0.036 0.30525l-1.5027 0.005v1.2781h1.3401l-0.99765 1.9779 1.3166-0.5162 1.0026 1.1242 1.0312-1.1242 1.3215 0.5162-0.99889-1.9779h1.3401v-1.2781l-1.5014-0.005c-0.0285-0.0955-0.0372-0.20102-0.0372-0.30525 0-0.6924 0.58693-1.2483 1.3178-1.2483 0.54473 0 1.0113 0.24942 1.2098 0.69613l0.60057-1.2123c0.13029-0.24072 0.29905-0.67751 0.29905-0.95794 0-0.96663-0.82517-1.7459-1.8427-1.7459-0.80284 0-1.489 0.48517-1.7409 1.159 0 0 0.70605-1.4171 0.70605-3.1245 0-1.6975-1.7087-3.5315-1.7087-3.5315h0.004z" stroke="#000" stroke-width=".41820" fill="none"/>
+   <path id="path1162" fill="#c8b100" d="m260.23 287.33h5.3605v-1.2781h-5.3605v1.2781z"/>
+   <path id="path1163" d="m260.23 287.33h5.3605v-1.2781h-5.3605v1.2781z" stroke="#000" stroke-width=".41820" fill="none"/>
+   <path id="path1164" fill="#c8b100" d="m256.34 287.05s-1.6727 1.834-1.6727 3.5365 0.70729 3.1195 0.70729 3.1195c-0.25438-0.67379-0.93437-1.159-1.7422-1.159-1.0163 0-1.8439 0.77926-1.8439 1.7459 0 0.28416 0.17124 0.71722 0.30029 0.95795l0.60058 1.2123c0.2035-0.44671 0.6651-0.69985 1.2098-0.69985 0.73086 0 1.3228 0.55963 1.3228 1.252 0 0.1092-0.0137 0.21343-0.0422 0.31022l-1.5014 0.004v1.2781h1.3451l-0.9989 1.9779 1.3178-0.51992 0.99765 1.1242 1.0349-1.1242 1.3215 0.51992-1.0026-1.9779h1.3438v-1.2781l-1.5014-0.004c-0.0273-0.0968-0.0372-0.20102-0.0372-0.31022 0-0.6924 0.58817-1.252 1.3178-1.252 0.5435 0 1.0063 0.25314 1.2111 0.69985l0.60058-1.2123c0.12781-0.24073 0.30029-0.67379 0.30029-0.95795 0-0.96663-0.82766-1.7459-1.8439-1.7459-0.80408 0-1.4828 0.48518-1.7422 1.159 0 0 0.70729-1.4171 0.70729-3.1195 0-1.7025-1.7149-3.5365-1.7149-3.5365"/>
+   <path id="path1165" stroke-linejoin="round" d="m256.34 287.05s-1.6727 1.834-1.6727 3.5365 0.70729 3.1195 0.70729 3.1195c-0.25438-0.67379-0.93437-1.159-1.7422-1.159-1.0163 0-1.8439 0.77926-1.8439 1.7459 0 0.28416 0.17124 0.71722 0.30029 0.95795l0.60058 1.2123c0.2035-0.44671 0.6651-0.69985 1.2098-0.69985 0.73086 0 1.3228 0.55963 1.3228 1.252 0 0.1092-0.0137 0.21343-0.0422 0.31022l-1.5014 0.004v1.2781h1.3451l-0.9989 1.9779 1.3178-0.51992 0.99765 1.1242 1.0349-1.1242 1.3215 0.51992-1.0026-1.9779h1.3438v-1.2781l-1.5014-0.004c-0.0273-0.0968-0.0372-0.20102-0.0372-0.31022 0-0.6924 0.58817-1.252 1.3178-1.252 0.5435 0 1.0063 0.25314 1.2111 0.69985l0.60058-1.2123c0.12781-0.24073 0.30029-0.67379 0.30029-0.95795 0-0.96663-0.82766-1.7459-1.8439-1.7459-0.80408 0-1.4828 0.48518-1.7422 1.159 0 0 0.70729-1.4171 0.70729-3.1195 0-1.7025-1.7149-3.5365-1.7149-3.5365h0.005z" stroke="#000" stroke-width=".41820" fill="none"/>
+   <path id="path1166" fill="#c8b100" d="m253.68 298.6h5.3642v-1.2781h-5.3642v1.2781z"/>
+   <path id="path1167" d="m253.68 298.6h5.3642v-1.2781h-5.3642v1.2781z" stroke="#000" stroke-width=".41820" fill="none"/>
+   <path id="path1168" fill="#c8b100" d="m296.44 227.68-0.35613 0.026c-0.0161 0.0434-0.1762 0.29781-0.32759 0.43803-0.31518 0.30153-0.79043 0.33627-1.0584 0.0831-0.13029-0.13154-0.19482-0.31518-0.17124-0.50379-0.20847 0.10547-0.42562 0.10547-0.62912-0.009-0.3189-0.18365-0.39831-0.62167-0.16627-0.98524 0.0372-0.0695 0.0745-0.16132 0.13029-0.21343l-0.0236-0.39832-0.43058 0.10051-0.12408 0.23576c-0.26803 0.30277-0.66511 0.38095-0.86364 0.20227-0.0968-0.0831-0.16752-0.31518-0.16132-0.32387 0.004 0.009-0.10299 0.10423-0.21342 0.13029-0.66014 0.16255-0.92321-1.2905-0.9381-1.6665l-0.21715 0.3065s0.19482 0.86984 0.0968 1.6057c-0.0968 0.73459-0.35613 1.4704-0.35613 1.4704 0.92072 0.23577 2.2981 0.98401 3.6643 2.0387 1.3687 1.046 2.4445 2.1839 2.8887 2.9806 0 0 0.70729-0.3946 1.4506-0.63036 0.73583-0.24073 1.6727-0.24569 1.6727-0.24569l0.26679-0.26182c-0.39212 0.0571-1.9482 0.12284-1.9171-0.52985 0.006-0.10423 0.0844-0.21839 0.098-0.21839-0.009 0.009-0.2581-0.0136-0.36977-0.0831-0.22584-0.1489-0.22088-0.52985 0.0285-0.84503l0.21715-0.15759 0.0136-0.41941-0.41693 0.0571c-0.0372 0.0521-0.13277 0.11292-0.18861 0.16628-0.32759 0.28415-0.79912 0.30525-1.0585 0.0385-0.15635-0.15262-0.20474-0.3586-0.13773-0.57327-0.18986 0.0571-0.38839 0.0397-0.55591-0.0571-0.31766-0.19234-0.37846-0.64277-0.13277-0.99269 0.11416-0.17124 0.34123-0.37226 0.38094-0.39336l-0.0856-0.36853"/>
+   <path id="path1169" d="m296.44 227.68-0.35613 0.026c-0.0161 0.0434-0.1762 0.29781-0.32759 0.43803-0.31518 0.30153-0.79043 0.33627-1.0584 0.0831-0.13029-0.13154-0.19482-0.31518-0.17124-0.50379-0.20847 0.10547-0.42562 0.10547-0.62912-0.009-0.3189-0.18365-0.39831-0.62167-0.16627-0.98524 0.0372-0.0695 0.0745-0.16132 0.13029-0.21343l-0.0236-0.39832-0.43058 0.10051-0.12408 0.23576c-0.26803 0.30277-0.66511 0.38095-0.86364 0.20227-0.0968-0.0831-0.16752-0.31518-0.16132-0.32387 0.004 0.009-0.10299 0.10423-0.21342 0.13029-0.66014 0.16255-0.92321-1.2905-0.9381-1.6665l-0.21715 0.3065s0.19482 0.86984 0.0968 1.6057c-0.0968 0.73459-0.35613 1.4704-0.35613 1.4704 0.92072 0.23577 2.2981 0.98401 3.6643 2.0387 1.3687 1.046 2.4445 2.1839 2.8887 2.9806 0 0 0.70729-0.3946 1.4506-0.63036 0.73583-0.24073 1.6727-0.24569 1.6727-0.24569l0.26679-0.26182c-0.39212 0.0571-1.9482 0.12284-1.9171-0.52985 0.006-0.10423 0.0844-0.21839 0.098-0.21839-0.009 0.009-0.2581-0.0136-0.36977-0.0831-0.22584-0.1489-0.22088-0.52985 0.0285-0.84503l0.21715-0.15759 0.0136-0.41941-0.41693 0.0571c-0.0372 0.0521-0.13277 0.11292-0.18861 0.16628-0.32759 0.28415-0.79912 0.30525-1.0585 0.0385-0.15635-0.15262-0.20474-0.3586-0.13773-0.57327-0.18986 0.0571-0.38839 0.0397-0.55591-0.0571-0.31766-0.19234-0.37846-0.64277-0.13277-0.99269 0.11416-0.17124 0.34123-0.37226 0.38094-0.39336l-0.0856-0.36853-0.009-0.004z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path1170" d="m293.67 228.53c0.0608-0.0745 0.18985-0.0707 0.28664 0.004 0.0968 0.0744 0.12409 0.19357 0.0645 0.26306-0.0596 0.0695-0.18489 0.0695-0.28664-0.009-0.0918-0.0695-0.12409-0.18861-0.0645-0.25809"/>
+   <path id="path1171" d="m293.67 228.53c0.0608-0.0745 0.18985-0.0707 0.28664 0.004 0.0968 0.0744 0.12409 0.19357 0.0645 0.26306-0.0596 0.0695-0.18489 0.0695-0.28664-0.009-0.0918-0.0695-0.12409-0.18861-0.0645-0.25809z" stroke="#000" stroke-width=".062954" fill="none"/>
+   <path id="path1172" d="m294.83 229.51-0.40204-0.31022c-0.0732-0.0571-0.0968-0.1489-0.0496-0.20102 0.0459-0.0484 0.1427-0.0484 0.21715 0.004l0.4008 0.31517 0.41196 0.31146c0.0695 0.0521 0.0956 0.14394 0.0509 0.20102-0.0509 0.0484-0.14766 0.0434-0.22211-0.009l-0.40701-0.31145"/>
+   <path id="path1173" d="m294.83 229.51-0.40204-0.31022c-0.0732-0.0571-0.0968-0.1489-0.0496-0.20102 0.0459-0.0484 0.1427-0.0484 0.21715 0.004l0.4008 0.31517 0.41196 0.31146c0.0695 0.0521 0.0956 0.14394 0.0509 0.20102-0.0509 0.0484-0.14766 0.0434-0.22211-0.009l-0.40701-0.31145" stroke="#000" stroke-width=".062954" fill="none"/>
+   <path id="path1174" d="m292.69 228.04-0.3189-0.18737c-0.0794-0.0484-0.12036-0.14022-0.0831-0.20102 0.0323-0.0658 0.12905-0.0744 0.20723-0.0273l0.31766 0.18861 0.3251 0.18861c0.0782 0.0434 0.1154 0.13525 0.0831 0.20102-0.0372 0.0571-0.12905 0.0695-0.21219 0.0223l-0.3189-0.18489"/>
+   <path id="path1175" d="m292.69 228.04-0.3189-0.18737c-0.0794-0.0484-0.12036-0.14022-0.0831-0.20102 0.0323-0.0658 0.12905-0.0744 0.20723-0.0273l0.31766 0.18861 0.3251 0.18861c0.0782 0.0434 0.1154 0.13525 0.0831 0.20102-0.0372 0.0571-0.12905 0.0695-0.21219 0.0223l-0.3189-0.18489" stroke="#000" stroke-width=".062954" fill="none"/>
+   <path id="path1176" d="m291.41 227.16c0.0608-0.0658 0.19109-0.0658 0.28788 0.009 0.0968 0.0745 0.12408 0.19234 0.0645 0.26183-0.0608 0.0707-0.18985 0.0658-0.28664-0.004-0.0968-0.0794-0.12532-0.19233-0.0658-0.26678"/>
+   <path id="path1177" d="m291.41 227.16c0.0608-0.0658 0.19109-0.0658 0.28788 0.009 0.0968 0.0745 0.12408 0.19234 0.0645 0.26183-0.0608 0.0707-0.18985 0.0658-0.28664-0.004-0.0968-0.0794-0.12532-0.19233-0.0658-0.26678z" stroke="#000" stroke-width=".062954" fill="none"/>
+   <path id="path1178" d="m296.13 230.41c0.0608-0.0707 0.031-0.18364-0.0645-0.26306-0.0968-0.0744-0.22584-0.0782-0.28664-0.004-0.0596 0.0695-0.0323 0.18737 0.0645 0.26182 0.0956 0.0744 0.2246 0.0744 0.28664 0.005"/>
+   <path id="path1179" d="m296.13 230.41c0.0608-0.0707 0.031-0.18364-0.0645-0.26306-0.0968-0.0744-0.22584-0.0782-0.28664-0.004-0.0596 0.0695-0.0323 0.18737 0.0645 0.26182 0.0956 0.0744 0.2246 0.0744 0.28664 0.005z" stroke="#000" stroke-width=".062954" fill="none"/>
+   <path id="path1180" d="m296.84 231.22 0.26307 0.25437c0.0645 0.0608 0.16627 0.0831 0.22211 0.0348 0.0558-0.0434 0.0484-0.13153-0.0137-0.19234l-0.25934-0.2581-0.26803-0.26306c-0.0645-0.0608-0.16627-0.0782-0.22211-0.0298-0.0596 0.0385-0.0509 0.13525 0.0186 0.19606l0.25934 0.2581"/>
+   <path id="path1181" d="m296.84 231.22 0.26307 0.25437c0.0645 0.0608 0.16627 0.0831 0.22211 0.0348 0.0558-0.0434 0.0484-0.13153-0.0137-0.19234l-0.25934-0.2581-0.26803-0.26306c-0.0645-0.0608-0.16627-0.0782-0.22211-0.0298-0.0596 0.0385-0.0509 0.13525 0.0186 0.19606l0.25934 0.2581" stroke="#000" stroke-width=".062954" fill="none"/>
+   <path id="path1182" d="m298 232.22c0.0608-0.0744 0.0335-0.18737-0.0633-0.26679-0.0968-0.0745-0.22708-0.0782-0.28664-0.004-0.0608 0.0745-0.0323 0.18737 0.0645 0.26679 0.0968 0.0695 0.22707 0.0744 0.28539 0.004"/>
+   <path id="path1183" d="m298 232.22c0.0608-0.0744 0.0335-0.18737-0.0633-0.26679-0.0968-0.0745-0.22708-0.0782-0.28664-0.004-0.0608 0.0745-0.0323 0.18737 0.0645 0.26679 0.0968 0.0695 0.22707 0.0744 0.28539 0.004z" stroke="#000" stroke-width=".062954" fill="none"/>
+   <path id="path1184" fill="#c8b100" d="m294.62 224.78-0.72838 0.0223-0.1427 1.0721 0.0782 0.17 0.18985-0.0124 0.93313-0.62663-0.33007-0.6254"/>
+   <path id="path1185" d="m294.62 224.78-0.72838 0.0223-0.1427 1.0721 0.0782 0.17 0.18985-0.0124 0.93313-0.62663-0.33007-0.6254" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path1186" fill="#c8b100" d="m292.64 225.37-0.0199 0.66882 1.1329 0.14022 0.17621-0.0744-0.0149-0.18365-0.66013-0.87977-0.61423 0.32883"/>
+   <path id="path1187" d="m292.64 225.37-0.0199 0.66882 1.1329 0.14022 0.17621-0.0744-0.0149-0.18365-0.66013-0.87977-0.61423 0.32883" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path1188" fill="#c8b100" d="m294.98 226.71-0.6043 0.33752-0.66138-0.8835-0.0136-0.17992 0.1762-0.0744 1.1366 0.13525-0.0335 0.6651"/>
+   <path id="path1189" d="m294.98 226.71-0.6043 0.33752-0.66138-0.8835-0.0136-0.17992 0.1762-0.0744 1.1366 0.13525-0.0335 0.6651" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path1190" fill="#c8b100" d="m293.52 225.88c0.10299-0.16255 0.32014-0.21467 0.48518-0.11416 0.16627 0.0918 0.22211 0.29781 0.1216 0.4554-0.10299 0.16131-0.3189 0.2097-0.48518 0.11788-0.16627-0.0955-0.22211-0.30153-0.1216-0.45912"/>
+   <path id="path1191" d="m293.52 225.88c0.10299-0.16255 0.32014-0.21467 0.48518-0.11416 0.16627 0.0918 0.22211 0.29781 0.1216 0.4554-0.10299 0.16131-0.3189 0.2097-0.48518 0.11788-0.16627-0.0955-0.22211-0.30153-0.1216-0.45912z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path1192" fill="#c8b100" d="m290.87 224.78c-0.0186 0.004-0.15883-0.56459-0.31518-0.87977-0.10547-0.22832-0.48021-0.52488-0.48021-0.52488 0.0372-0.0707 0.50875-0.24073 1.0721 0.11291 0.45664 0.37723-0.0372 1.0684-0.0372 1.0684s-0.12036 0.16627-0.23576 0.22335"/>
+   <path id="path1193" d="m290.87 224.78c-0.0186 0.004-0.15883-0.56459-0.31518-0.87977-0.10547-0.22832-0.48021-0.52488-0.48021-0.52488 0.0372-0.0707 0.50875-0.24073 1.0721 0.11291 0.45664 0.37723-0.0372 1.0684-0.0372 1.0684s-0.12036 0.16627-0.23576 0.22335h-0.004z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path1194" fill="#c8b100" d="m292.14 225.16-0.5162 0.44671-0.8413-0.73087 0.0732-0.10547 0.0298-0.17993 1.1404-0.0831 0.11416 0.65269"/>
+   <path id="path1195" d="m292.14 225.16-0.5162 0.44671-0.8413-0.73087 0.0732-0.10547 0.0298-0.17993 1.1404-0.0831 0.11416 0.65269" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path1196" fill="#c8b100" d="m290.71 224.7c0.0645-0.18365 0.22584-0.29284 0.35489-0.25313 0.12905 0.0472 0.18116 0.22707 0.12036 0.407-0.0645 0.18365-0.22583 0.28788-0.35488 0.25314-0.13526-0.0484-0.18489-0.22708-0.12037-0.40701"/>
+   <path id="path1197" d="m290.71 224.7c0.0645-0.18365 0.22584-0.29284 0.35489-0.25313 0.12905 0.0472 0.18116 0.22707 0.12036 0.407-0.0645 0.18365-0.22583 0.28788-0.35488 0.25314-0.13526-0.0484-0.18489-0.22708-0.12037-0.40701z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path1198" fill="#c8b100" d="m297.41 226.53-0.7259-0.0782-0.30402 1.046 0.0558 0.17868 0.18986 0.005 1.0163-0.49511-0.23204-0.65641"/>
+   <path id="path1199" d="m297.41 226.53-0.7259-0.0782-0.30402 1.046 0.0558 0.17868 0.18986 0.005 1.0163-0.49511-0.23204-0.65641" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path1200" fill="#c8b100" d="m295.36 226.85-0.11416 0.66138 1.0994 0.28788 0.18489-0.0521 0.0136-0.17868-0.5224-0.96787-0.66138 0.24941"/>
+   <path id="path1201" d="m295.36 226.85-0.11416 0.66138 1.0994 0.28788 0.18489-0.0521 0.0136-0.17868-0.5224-0.96787-0.66138 0.24941" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path1202" fill="#c8b100" d="m297.49 228.48-0.65146 0.2581-0.5224-0.96291 0.0136-0.18365 0.18489-0.0484 1.0994 0.28912-0.12408 0.64773"/>
+   <path id="path1203" d="m297.49 228.48-0.65146 0.2581-0.5224-0.96291 0.0136-0.18365 0.18489-0.0484 1.0994 0.28912-0.12408 0.64773" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path1204" fill="#c8b100" d="m296.16 227.47c0.12036-0.1489 0.34744-0.16131 0.4951-0.0484 0.15263 0.11416 0.17497 0.32386 0.0558 0.46904-0.12532 0.14394-0.34744 0.16132-0.50006 0.0472-0.14767-0.11292-0.17621-0.32387-0.0509-0.46781"/>
+   <path id="path1205" d="m296.16 227.47c0.12036-0.1489 0.34744-0.16131 0.4951-0.0484 0.15263 0.11416 0.17497 0.32386 0.0558 0.46904-0.12532 0.14394-0.34744 0.16132-0.50006 0.0472-0.14767-0.11292-0.17621-0.32387-0.0509-0.46781z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path1206" fill="#c8b100" d="m299.84 228.79 0.13277 0.68619-1.0758 0.35861-0.18986-0.0385-0.0223-0.17993 0.44795-0.99393 0.70729 0.16752"/>
+   <path id="path1207" d="m299.84 228.79 0.13277 0.68619-1.0758 0.35861-0.18986-0.0385-0.0223-0.17993 0.44795-0.99393 0.70729 0.16752" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path1208" fill="#c8b100" d="m299.65 230.75-0.68868 0.15263-0.38095-1.0237 0.0434-0.17496 0.18986-0.0261 1.0485 0.42934-0.21218 0.64276"/>
+   <path id="path1209" d="m299.65 230.75-0.68868 0.15263-0.38095-1.0237 0.0434-0.17496 0.18986-0.0261 1.0485 0.42934-0.21218 0.64276" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path1210" fill="#c8b100" d="m297.78 228.85-0.22211 0.63532 1.0498 0.42438 0.19234-0.0261 0.0372-0.17496-0.3735-1.02-0.68371 0.16131"/>
+   <path id="path1211" d="m297.78 228.85-0.22211 0.63532 1.0498 0.42438 0.19234-0.0261 0.0372-0.17496-0.3735-1.02-0.68371 0.16131" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path1212" fill="#c8b100" d="m298.94 230.04c0.14269-0.13153 0.14766-0.34124 0.0186-0.47773-0.13401-0.13153-0.36233-0.14022-0.50379-0.0174-0.13898 0.13153-0.14766 0.33751-0.0136 0.47773 0.12905 0.13525 0.35613 0.13897 0.49883 0.0174"/>
+   <path id="path1213" d="m298.94 230.04c0.14269-0.13153 0.14766-0.34124 0.0186-0.47773-0.13401-0.13153-0.36233-0.14022-0.50379-0.0174-0.13898 0.13153-0.14766 0.33751-0.0136 0.47773 0.12905 0.13525 0.35613 0.13897 0.49883 0.0174z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path1214" fill="#c8b100" d="m300.64 232.27c-0.004 0.0174 0.61547 0.031 0.9716 0.1092 0.25313 0.0534 0.64649 0.33751 0.64649 0.33751 0.0695-0.0521 0.13897-0.52116-0.3462-0.97159-0.48518-0.3462-1.092 0.26306-1.092 0.26306s-0.14642 0.14394-0.17993 0.26182"/>
+   <path id="path1215" d="m300.64 232.27c-0.004 0.0174 0.61547 0.031 0.9716 0.1092 0.25313 0.0534 0.64649 0.33751 0.64649 0.33751 0.0695-0.0521 0.13897-0.52116-0.3462-0.97159-0.48518-0.3462-1.092 0.26306-1.092 0.26306s-0.14642 0.14394-0.17993 0.26182z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path1216" fill="#c8b100" d="m299.97 231.16-0.35489 0.57327 0.93313 0.63036 0.11416-0.10051 0.15263-0.0521-0.1427-1.0771-0.70233 0.0261"/>
+   <path id="path1217" d="m299.97 231.16-0.35489 0.57327 0.93313 0.63036 0.11416-0.10051 0.15263-0.0521-0.1427-1.0771-0.70233 0.0261" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path1218" fill="#c8b100" d="m300.74 232.39c0.17124-0.0956 0.25438-0.27051 0.18489-0.3797-0.0745-0.11416-0.27175-0.12781-0.44299-0.031-0.17124 0.1005-0.25437 0.26678-0.17992 0.38466 0.0682 0.1092 0.26678 0.12285 0.43802 0.0261"/>
+   <path id="path1219" d="m300.74 232.39c0.17124-0.0956 0.25438-0.27051 0.18489-0.3797-0.0745-0.11416-0.27175-0.12781-0.44299-0.031-0.17124 0.1005-0.25437 0.26678-0.17992 0.38466 0.0682 0.1092 0.26678 0.12285 0.43802 0.0261z" stroke="#000" stroke-width=".31927" fill="none"/>
+   <path id="path779" d="m349.74 204.19v0.71349h-3.1232v-0.71349h1.1552v-1.6106h-0.76313v-0.71722h0.76313v-0.70481h0.7532v0.70481h0.75196v0.71722h-0.75196v1.6106h1.2148" stroke="#000" stroke-width=".36873" fill="none"/>
+   <g id="g2620" stroke="#000" fill="none" transform="matrix(.23950 0 0 .23950 117.71 164.62)">
+    <path id="path2602" d="m193.38 229.57v-6.522" stroke-width=".093012"/>
+    <path id="path2603" d="m191.61 229.57v-6.522" stroke-width=".13694"/>
+    <path id="path2604" d="m189.94 229.57v-6.522" stroke-width=".18344"/>
+    <path id="path2605" d="m188.28 229.57v-6.522" stroke-width=".22995"/>
+    <path id="path2606" d="m186.8 229.57v-6.522" stroke-width=".27645"/>
+    <path id="path2607" d="m183.99 229.22-0.039-5.937m1.375 6.015v-6.21" stroke-width=".32296"/>
+    <path id="path2608" d="m181.39 228.95v-5.47m1.318 5.626-0.039-5.821" stroke-width=".36688"/>
+    <path id="path2609" d="m177.9 228.64v-4.805m1.145 4.883v-5.039m1.179 5.196v-5.236" stroke-width=".41339"/>
+    <path id="path2610" d="m176.67 228.6v-4.649" stroke-width=".45990"/>
+    <path id="path2611" d="m175.53 228.37v-4.337" stroke-width=".50640"/>
+    <path id="path2612" d="m174.31 228.25v-4.024" stroke-width=".55291"/>
+    <path id="path2613" d="m171.81 227.9-0.039-3.204m1.322 3.36v-3.594" stroke-width=".59683"/>
+    <path id="path2614" d="m170.52 227.62v-2.814" stroke-width=".63042"/>
+    <path id="path2615" d="m169.35 227.4v-2.342" stroke-width=".67693"/>
+    <path id="path2616" d="m168.06 227.08v-1.835" stroke-width=".72085"/>
+    <path id="path2617" d="m166.74 226.93v-1.367" stroke-width=".76478"/>
+    <path id="path2618" d="m165.35 226.62v-0.664" stroke-width=".90171"/>
+    <path id="path2619" d="m200.43 229.22v-5.976m-3.001 6.171 0.039-6.327m-2.226 6.405v-6.444" stroke-width=".046506"/>
+   </g>
+   <g id="g2639" stroke="#000" fill="none" transform="matrix(.23950 0 0 .23950 301.74 164.64)">
+    <path id="path2640" d="m193.38 229.57v-6.522" stroke-width=".093012"/>
+    <path id="path2641" d="m191.61 229.57v-6.522" stroke-width=".13694"/>
+    <path id="path2642" d="m189.94 229.57v-6.522" stroke-width=".18344"/>
+    <path id="path2643" d="m188.28 229.57v-6.522" stroke-width=".22995"/>
+    <path id="path2644" d="m186.8 229.57v-6.522" stroke-width=".27645"/>
+    <path id="path2645" d="m183.99 229.22-0.039-5.937m1.375 6.015v-6.21" stroke-width=".32296"/>
+    <path id="path2646" d="m181.39 228.95v-5.47m1.318 5.626-0.039-5.821" stroke-width=".36688"/>
+    <path id="path2647" d="m177.9 228.64v-4.805m1.145 4.883v-5.039m1.179 5.196v-5.236" stroke-width=".41339"/>
+    <path id="path2648" d="m176.67 228.6v-4.649" stroke-width=".45990"/>
+    <path id="path2649" d="m175.53 228.37v-4.337" stroke-width=".50640"/>
+    <path id="path2650" d="m174.31 228.25v-4.024" stroke-width=".55291"/>
+    <path id="path2651" d="m171.81 227.9-0.039-3.204m1.322 3.36v-3.594" stroke-width=".59683"/>
+    <path id="path2652" d="m170.52 227.62v-2.814" stroke-width=".63042"/>
+    <path id="path2653" d="m169.35 227.4v-2.342" stroke-width=".67693"/>
+    <path id="path2654" d="m168.06 227.08v-1.835" stroke-width=".72085"/>
+    <path id="path2655" d="m166.74 226.93v-1.367" stroke-width=".76478"/>
+    <path id="path2656" d="m165.35 226.62v-0.664" stroke-width=".90171"/>
+    <path id="path2657" d="m200.43 229.22v-5.976m-3.001 6.171 0.039-6.327m-2.226 6.405v-6.444" stroke-width=".046506"/>
+   </g>
+  </g>
+ </g>
+</svg>
Index: branches/2.8.x/wb/modules/MultiLingual/flags/svg/fr.svg
===================================================================
--- branches/2.8.x/wb/modules/MultiLingual/flags/svg/fr.svg	(nonexistent)
+++ branches/2.8.x/wb/modules/MultiLingual/flags/svg/fr.svg	(revision 1945)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Sodipodi ("http://www.sodipodi.com/") -->
+<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
+ <metadata id="metadata3176">
+  <rdf:RDF>
+   <cc:Work rdf:about="">
+    <dc:format>image/svg+xml</dc:format>
+    <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
+   </cc:Work>
+  </rdf:RDF>
+ </metadata>
+ <g id="g3627" fill-rule="evenodd" stroke-width="1pt" transform="scale(1.25 .9375)">
+  <rect id="rect171" height="512" width="512" y="7.4219e-7" x="0" fill="#fff"/>
+  <rect id="rect403" height="512" width="170.67" y="7.4219e-7" x="0" fill="#00267f"/>
+  <rect id="rect135" height="512" width="170.67" y="7.4219e-7" x="341.33" fill="#f31830"/>
+ </g>
+</svg>
Index: branches/2.8.x/wb/modules/MultiLingual/flags/svg/et.svg
===================================================================
--- branches/2.8.x/wb/modules/MultiLingual/flags/svg/et.svg	(nonexistent)
+++ branches/2.8.x/wb/modules/MultiLingual/flags/svg/et.svg	(revision 1945)
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Sodipodi ("http://www.sodipodi.com/") -->
+<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
+ <metadata id="metadata3768">
+  <rdf:RDF>
+   <cc:Work rdf:about="">
+    <dc:format>image/svg+xml</dc:format>
+    <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
+   </cc:Work>
+  </rdf:RDF>
+ </metadata>
+ <defs id="defs380">
+  <clipPath id="clipPath4680" clipPathUnits="userSpaceOnUse">
+   <rect id="rect4682" fill-opacity="0.67" height="512" width="682.67" y=".000014384" x="-61.312"/>
+  </clipPath>
+ </defs>
+ <g id="flag" fill-rule="evenodd" clip-path="url(#clipPath4680)" transform="matrix(.9375 0 0 .9375 57.48 -.000013485)" stroke-width="1pt">
+  <rect id="rect171" height="498" width="1037.9" y="3.4988" x="-237.99" fill="#ffc621"/>
+  <rect id="rect289" height="169.5" width="1039.3" y="342.5" x="-240" fill="#ef2118"/>
+  <rect id="rect288" height="180" width="1038" y=".000013510" x="-237.99" fill="#298c08"/>
+  <ellipse id="path316" d="m 733.8736,352.9678 c 0,110.26463 -89.38716,199.65177 -199.6518,199.65177 -110.26464,0 -199.65179,-89.38714 -199.65179,-199.65177 0,-110.26462 89.38715,-199.65176 199.65179,-199.65176 110.26464,0 199.6518,89.38714 199.6518,199.65176 z" cx="534.22" rx="199.65" cy="352.97" transform="matrix(.53920 0 0 .53920 -25.807 73.951)" ry="199.65" fill="#006bc6"/>
+  <path id="path322" d="m214.25 188.2-6.4322 4.5218 23.494 33.021 6.2666-3.996-23.329-33.546zm29.41 77.942-9.6609-6.7363 3.9923-12.676-48.122 0.67185-13.929-10.664 65.691-0.70797 12.183-36.908 6.5443 14.924-16.699 52.098zm76.522-70.679-6.2542-4.7649-24.378 32.374 5.7032 4.766 24.929-32.375zm-65.412 51.587 3.5027-11.245 13.29-0.0243-15.182-45.67 5.9577-16.5 20.524 62.407 38.864 0.46047-12.248 10.748-54.709-0.17578zm90.672 51.165 2.6146-7.4151-38.295-13.262-2.785 6.8905 38.465 13.786zm-69.179-46.416 11.777-0.11916 4.1039 12.641 38.803-28.469 17.532 0.60391-53.092 38.693 11.493 37.128-13.989-8.3571-16.629-52.12zm-19.749 102.08 7.8616 0.11485 0.36342-40.524-7.4189-0.44323-0.80611 40.853zm21.944-80.365 3.8666 11.125-10.673 7.9182 39.353 27.705 5.0162 16.81-53.597-37.989-31.528 22.728 3.4622-15.923 44.101-32.375zm-103.27 12.986 2.325 7.5111 38.646-12.203-1.8764-7.1919-39.094 11.884zm83.21-4.0198-9.3805 7.1212-10.835-7.696-14.157 45.997-14.431 9.9747 19.525-62.727-31.375-22.94 16.213-1.6386 44.44 31.908z" fill="#ffc621"/>
+ </g>
+</svg>
Index: branches/2.8.x/wb/modules/MultiLingual/flags/svg/hr.svg
===================================================================
--- branches/2.8.x/wb/modules/MultiLingual/flags/svg/hr.svg	(nonexistent)
+++ branches/2.8.x/wb/modules/MultiLingual/flags/svg/hr.svg	(revision 1945)
@@ -0,0 +1,144 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Sodipodi ("http://www.sodipodi.com/") -->
+<svg id="svg557" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/">
+ <metadata id="metadata3779">
+  <rdf:RDF>
+   <cc:Work rdf:about="">
+    <dc:format>image/svg+xml</dc:format>
+    <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
+   </cc:Work>
+  </rdf:RDF>
+ </metadata>
+ <defs id="defs559">
+  <clipPath id="clipPath3868" clipPathUnits="userSpaceOnUse">
+   <rect id="rect3870" fill-opacity="0.67" height="480" width="640" y="0" x="0"/>
+  </clipPath>
+ </defs>
+ <g id="flag" clip-path="url(#clipPath3868)">
+  <rect id="rect675" fill-rule="evenodd" height="170.15" width="936.34" y="135.66" x="-148.86" stroke-width="1pt" fill="#fff"/>
+  <rect id="rect714" fill-rule="evenodd" height="190.24" width="938.16" y="289.76" x="-148.01" stroke-width="1pt" fill="#003e9f"/>
+  <rect id="rect713" fill-rule="evenodd" height="159.51" width="939.68" y="-.0000011293" x="-150.15" stroke-width="1pt" fill="#d61517"/>
+  <g id="g3353" transform="matrix(1.2446 0 0 1.2446 -78.769 -50.054)">
+   <path id="path683" d="m242.64 155.17c24.536-8.728 51.74-13.437 78.329-13.504 26.589-0.0671 53.705 4.1048 80.499 13.706l19.944-40.235-14.018-24.419s-25.011 10.273-25.216 10.273c-0.20533 0-17.635-19.182-17.635-19.182l-22.39 13.523-21.01-16.073-19.78 15.825-23.08-13.34-16.83 20.008-25.24-10.792-13.51 24.195 19.932 40.015z" fill-rule="evenodd" stroke="#e5141d" stroke-linecap="round" stroke-width="1.0662" fill="#fff"/>
+   <path id="path680" d="m370.5 144.01 11.42-40.371 24.457-9.9251 12.885 21.634-18.5 37.839c-10.634-4.2488-16.331-6.0691-30.263-9.1767z" fill-rule="evenodd" stroke="#0084fd" stroke-width=".26655pt" fill="#00a7bd"/>
+   <path id="path671" d="m273.69 144.11-10.675-39.69 16.061-19.712 22.854 13.194 3.8571 41.721c-11.167 0.82858-19.238 1.8891-32.098 4.4869z" stroke-opacity=".99608" stroke-width="1pt" fill="none"/>
+   <path id="path672" d="m306.1 139.64-3.8565-41.811 19.436-15.45 20.307 15.412-3.5884 41.886c-11.189-0.59169-19.18-0.57387-32.298-0.0376z" fill-rule="evenodd" stroke="#0084fd" stroke-width=".26655pt" fill="#00a7bd"/>
+   <path id="path670" d="m243.61 153.16-18.117-38.322 12.108-21.155 25.099 10.924 10.605 39.535c-11.46 2.3697-17.528 4.306-29.695 9.0166z" stroke-opacity=".99608" fill-rule="evenodd" stroke="#0084fd" stroke-width=".26655pt" fill="#00a7bd"/>
+   <path id="path561" d="m237.97 131.93c5.7045 1.155 9.7695 1.1965 14.885-0.20619 6.1113-2.5025 8.2699-5.8715 10.26-8.5802 0.92521 5.7202-0.042 10.904-7.022 14.562-6.2655 2.8877-14.717 1.0727-18.123-5.7751z" fill-rule="evenodd" stroke="#fff" stroke-width=".26655pt" fill="#fff"/>
+   <g id="g591" stroke-width="1pt" transform="matrix(.26911 0 0 .26401 215.86 72.486)">
+    <path id="path568" d="m410.94 120.56-4.063 1.016 0.156 7.5-5 1.094-3.497 6.614 2.159 2.044c0.111 0.221-1.703 4.892-1.625 4.892s1.323 1.762 1.323 1.762l1.328 4.063 3.359 0.468 0.86 4.766 5.312 0.859 4.922 3.516 0.312 2.188 5.625 0.156 3.829 1.25 13.359-1.563 1.797-2.812 0.156-3.828 7.188-0.235 0.657-6.105h3.809l-0.474-6.875 3.177 0.286-0.82-3.295-1.975-2.683-0.39-4.218-5.625-5.625-1.25-7.344s-3.594-1.641-3.594-1.719-0.234-4.922-0.234-4.922l4.062-5.703-0.39-2.265-3.75-0.079-2.813 2.344s-3.75 0.391-3.75 0.469v1.719s0.938 3.203 0.938 3.281-4.297 0-4.297 0l-0.157-5.078-6.093-3.047s-5.703 3.906-5.703 3.984-0.313 4.532-0.313 4.532l-2.734 0.781-2.813-4.219-4.922-1.875-2.656-0.156-0.078 3.281 5.156 6.797-0.468 3.984z" stroke-opacity=".99608" fill-rule="evenodd" fill-opacity=".99608" stroke="#544b20" fill="#faf703"/>
+    <path id="path570" d="m449.23 148.04-1.105-4.088" stroke="#544b20" fill="none"/>
+    <path id="path571" d="m452.33 141.3-1.878-2.762" stroke="#544b20" fill="none"/>
+    <path id="path576" d="m400.84 138.21 5.856-0.332 1.105 5.303 1.988 1.768 0.332 9.723 1.878 0.773 0.553-3.867 4.53-0.331 0.883 7.844-1.104 0.995 0.442 1.215 5.413-0.11s1.216-2.1 1.326-2.1c0.111 0 3.094-0.331 3.094-0.221 0 0.111 1.215 2.321 1.215 2.321l0.884-2.984s2.873-1.215 2.873-1.104c0 0.11 2.32 3.756 2.32 3.756l3.977-0.552-2.43-2.32-0.995-5.083 5.524-2.983 2.21 3.757s2.099 0.11 1.989 0c-0.111-0.111-2.431-4.309-2.431-4.309v-8.839l4.199-5.745 5.855-0.663v-2.431l-5.855-5.414-1.547-7.513-3.315-1.657-0.884 0.994-3.646 0.332 3.646 5.414v3.535l1.658 0.884-0.332 9.723s-4.088 0.552-4.088 0.663c0 0.11-0.331 5.413-0.331 5.413l-2.541 2.542s-1.437 5.082-1.547 5.082c-0.111 0-2.431 3.093-2.431 3.093l-4.53 0.111s-2.651-2.541-2.651-2.652c0-0.11-0.442-3.756-0.442-3.756s-1.768-0.553-1.879-0.553c-0.11 0-0.994-4.088-0.994-4.088l-3.094-1.767-0.22-2.431-2.984-1.326s-0.331-2.21-0.442-2.32c-0.11-0.111-1.436-0.994-1.546-0.994-0.111 0-0.111-6.077-0.111-6.077l2.652-0.442-1.485-1.94-0.504-1.706v-1.768l2.21-2.21s-3.978-0.552-3.978-0.442c0 0.111-3.866 1.768-3.866 1.658 0.11 0-0.111 7.181-0.111 7.181l-4.53 1.437-3.646 5.855 1.878 1.658z" stroke-opacity=".99999" fill-rule="evenodd" stroke="#544b21" fill="#544b20"/>
+    <path id="path577" d="m423.71 148.04 2.983-1.768-0.111-3.425-2.872-0.663-1.106-1.105 3.205 0.553 3.977-0.332 1.326-0.663c-0.552 1.437-0.994 1.326-1.105 1.326-0.11 0-2.209 1.105-2.209 1.105l0.11 3.315s6.85 0.883 6.74 0.883c-0.111 0 0 1.326-0.221 1.326s-7.071-1.547-7.071-1.547l-4.309 2.652 0.663-1.657z" fill-rule="evenodd" stroke="#544b20" fill="#544b20"/>
+    <path id="path578" d="m440.95 127.49-3.977 3.093-2.541 4.53-1.326 0.221-3.867-5.193-4.419 0.111s-2.431 6.076-2.431 6.187c0 0.11-1.768-0.221-1.768-0.221l-4.64-5.082s-1.437-2.542-1.216-2.542 11.601 0.111 11.601 0.111l-0.11-5.524s-1.768-0.553-2.652-1.105c0.663-0.221 6.298-0.221 6.298-0.221l-2.431 1.657v4.751l10.054 0.11 3.425-0.883z" fill-rule="evenodd" stroke="#544b20" fill="#544b20"/>
+    <rect id="rect579" fill-rule="evenodd" fill-opacity=".99608" ry="1.3258" height="2.6516" width="2.6516" y="130.14" x="419.51" fill="#796a3a"/>
+    <rect id="rect580" fill-rule="evenodd" ry="1.3258" height="2.6516" width="2.6516" y="129.59" x="432.11" fill="#7a6b3a"/>
+    <path id="path581" d="m413.55 121.3c4.198-1.694 7.181-3.056 12.374-3.535 4.898-0.516 8.692 0.184 13.037 0.994" stroke="#544b20" fill="none"/>
+    <path id="path584" d="m415.87 112.35h-3.425l-4.862-5.193 2.763 0.332 3.204 1.436 2.32 3.425z" fill-rule="evenodd" stroke="#544b20" fill="#544b20"/>
+    <path id="path585" d="m436.53 110.36 7.734-5.965-2.541-0.332-2.873 2.651-3.425 0.553 1.105 3.093z" fill-rule="evenodd" stroke="#544b20" fill="#544b20"/>
+    <path id="path586" d="m431.97 111.46-12.123 0.451 0.11-1.326 4.42-0.442 0.552-1.767s1.326-0.11 1.326 0c0 0.111 0.994 1.657 0.994 1.657l4.309 0.773 0.412 0.654z" fill-rule="evenodd" stroke="#544b20" fill="#544b20"/>
+    <path id="path587" d="m431.34 106.83-4.198 0.11-0.332-2.32 4.53 2.21z" fill-rule="evenodd" stroke="#544b20" fill="#544b20"/>
+    <path id="path588" d="m424.26 104.73-0.332 2.319-4.087 0.663 4.419-2.982z" fill-rule="evenodd" stroke="#544b20" fill="#544b20"/>
+    <path id="path589" d="m401.06 147.04 2.099-5.303-1.878-3.646-1.878 5.414 1.657 3.535z" fill-rule="evenodd" stroke="#544b20" fill="#544b20"/>
+    <path id="path590" d="m405.37 149.81 2.541-6.298-4.861 5.082 2.32 1.216z" fill-rule="evenodd" transform="translate(-.11047 .11044)" stroke="#544b20" fill="#544b20"/>
+   </g>
+   <g id="g576" stroke-width="1pt" transform="matrix(.26911 0 0 .26401 197.81 73.069)">
+    <path id="path579" d="m410.94 120.56-4.063 1.016 0.156 7.5-5 1.094-3.497 6.614 2.159 2.044c0.111 0.221-1.703 4.892-1.625 4.892s1.323 1.762 1.323 1.762l1.328 4.063 3.359 0.468 0.86 4.766 5.312 0.859 4.922 3.516 0.312 2.188 5.625 0.156 3.829 1.25 13.359-1.563 1.797-2.812 0.156-3.828 7.188-0.235 0.657-6.105h3.809l-0.474-6.875 3.177 0.286-0.82-3.295-1.975-2.683-0.39-4.218-5.625-5.625-1.25-7.344s-3.594-1.641-3.594-1.719-0.234-4.922-0.234-4.922l4.062-5.703-0.39-2.265-3.75-0.079-2.813 2.344s-3.75 0.391-3.75 0.469v1.719s0.938 3.203 0.938 3.281-4.297 0-4.297 0l-0.157-5.078-6.093-3.047s-5.703 3.906-5.703 3.984-0.313 4.532-0.313 4.532l-2.734 0.781-2.813-4.219-4.922-1.875-2.656-0.156-0.078 3.281 5.156 6.797-0.468 3.984z" stroke-opacity=".99608" fill-rule="evenodd" fill-opacity=".99608" stroke="#544b20" fill="#faf703"/>
+    <path id="path580" d="m449.23 148.04-1.105-4.088" stroke="#544b20" fill="none"/>
+    <path id="path591" d="m452.33 141.3-1.878-2.762" stroke="#544b20" fill="none"/>
+    <path id="path592" d="m400.84 138.21 5.856-0.332 1.105 5.303 1.988 1.768 0.332 9.723 1.878 0.773 0.553-3.867 4.53-0.331 0.883 7.844-1.104 0.995 0.442 1.215 5.413-0.11s1.216-2.1 1.326-2.1c0.111 0 3.094-0.331 3.094-0.221 0 0.111 1.215 2.321 1.215 2.321l0.884-2.984s2.873-1.215 2.873-1.104c0 0.11 2.32 3.756 2.32 3.756l3.977-0.552-2.43-2.32-0.995-5.083 5.524-2.983 2.21 3.757s2.099 0.11 1.989 0c-0.111-0.111-2.431-4.309-2.431-4.309v-8.839l4.199-5.745 5.855-0.663v-2.431l-5.855-5.414-1.547-7.513-3.315-1.657-0.884 0.994-3.646 0.332 3.646 5.414v3.535l1.658 0.884-0.332 9.723s-4.088 0.552-4.088 0.663c0 0.11-0.331 5.413-0.331 5.413l-2.541 2.542s-1.437 5.082-1.547 5.082c-0.111 0-2.431 3.093-2.431 3.093l-4.53 0.111s-2.651-2.541-2.651-2.652c0-0.11-0.442-3.756-0.442-3.756s-1.768-0.553-1.879-0.553c-0.11 0-0.994-4.088-0.994-4.088l-3.094-1.767-0.22-2.431-2.984-1.326s-0.331-2.21-0.442-2.32c-0.11-0.111-1.436-0.994-1.546-0.994-0.111 0-0.111-6.077-0.111-6.077l2.652-0.442-1.485-1.94-0.504-1.706v-1.768l2.21-2.21s-3.978-0.552-3.978-0.442c0 0.111-3.866 1.768-3.866 1.658 0.11 0-0.111 7.181-0.111 7.181l-4.53 1.437-3.646 5.855 1.878 1.658z" stroke-opacity=".99999" fill-rule="evenodd" stroke="#544b21" fill="#544b20"/>
+    <path id="path593" d="m423.71 148.04 2.983-1.768-0.111-3.425-2.872-0.663-1.106-1.105 3.205 0.553 3.977-0.332 1.326-0.663c-0.552 1.437-0.994 1.326-1.105 1.326-0.11 0-2.209 1.105-2.209 1.105l0.11 3.315s6.85 0.883 6.74 0.883c-0.111 0 0 1.326-0.221 1.326s-7.071-1.547-7.071-1.547l-4.309 2.652 0.663-1.657z" fill-rule="evenodd" stroke="#544b20" fill="#544b20"/>
+    <path id="path594" d="m440.95 127.49-3.977 3.093-2.541 4.53-1.326 0.221-3.867-5.193-4.419 0.111s-2.431 6.076-2.431 6.187c0 0.11-1.768-0.221-1.768-0.221l-4.64-5.082s-1.437-2.542-1.216-2.542 11.601 0.111 11.601 0.111l-0.11-5.524s-1.768-0.553-2.652-1.105c0.663-0.221 6.298-0.221 6.298-0.221l-2.431 1.657v4.751l10.054 0.11 3.425-0.883z" fill-rule="evenodd" stroke="#544b20" fill="#544b20"/>
+    <rect id="rect595" fill-rule="evenodd" fill-opacity=".99608" ry="1.3258" height="2.6516" width="2.6516" y="130.14" x="419.51" fill="#796a3a"/>
+    <rect id="rect596" fill-rule="evenodd" ry="1.3258" height="2.6516" width="2.6516" y="129.59" x="432.11" fill="#7a6b3a"/>
+    <path id="path597" d="m413.55 121.3c4.198-1.694 7.181-3.056 12.374-3.535 4.898-0.516 8.692 0.184 13.037 0.994" stroke="#544b20" fill="none"/>
+    <path id="path600" d="m415.87 112.35h-3.425l-4.862-5.193 2.763 0.332 3.204 1.436 2.32 3.425z" fill-rule="evenodd" stroke="#544b20" fill="#544b20"/>
+    <path id="path601" d="m436.53 110.36 7.734-5.965-2.541-0.332-2.873 2.651-3.425 0.553 1.105 3.093z" fill-rule="evenodd" stroke="#544b20" fill="#544b20"/>
+    <path id="path602" d="m431.97 111.46-12.123 0.451 0.11-1.326 4.42-0.442 0.552-1.767s1.326-0.11 1.326 0c0 0.111 0.994 1.657 0.994 1.657l4.309 0.773 0.412 0.654z" fill-rule="evenodd" stroke="#544b20" fill="#544b20"/>
+    <path id="path603" d="m431.34 106.83-4.198 0.11-0.332-2.32 4.53 2.21z" fill-rule="evenodd" stroke="#544b20" fill="#544b20"/>
+    <path id="path604" d="m424.26 104.73-0.332 2.319-4.087 0.663 4.419-2.982z" fill-rule="evenodd" stroke="#544b20" fill="#544b20"/>
+    <path id="path605" d="m401.06 147.04 2.099-5.303-1.878-3.646-1.878 5.414 1.657 3.535z" fill-rule="evenodd" stroke="#544b20" fill="#544b20"/>
+    <path id="path606" d="m405.37 149.81 2.541-6.298-4.861 5.082 2.32 1.216z" fill-rule="evenodd" transform="translate(-.11047 .11044)" stroke="#544b20" fill="#544b20"/>
+   </g>
+   <path id="path673" d="m338.69 139.62 3.6134-41.935 22.207-12.777 17.166 18.605-11.44 40.401c-11.089-2.2645-17.416-3.2348-31.546-4.2944z" stroke-opacity=".99608" fill-rule="evenodd" stroke="#001071" stroke-width=".26655pt" fill="#001070"/>
+   <g id="g607" stroke-width="1pt" transform="matrix(.26911 0 0 .26401 207.16 88.736)">
+    <path id="path608" d="m410.94 120.56-4.063 1.016 0.156 7.5-5 1.094-3.497 6.614 2.159 2.044c0.111 0.221-1.703 4.892-1.625 4.892s1.323 1.762 1.323 1.762l1.328 4.063 3.359 0.468 0.86 4.766 5.312 0.859 4.922 3.516 0.312 2.188 5.625 0.156 3.829 1.25 13.359-1.563 1.797-2.812 0.156-3.828 7.188-0.235 0.657-6.105h3.809l-0.474-6.875 3.177 0.286-0.82-3.295-1.975-2.683-0.39-4.218-5.625-5.625-1.25-7.344s-3.594-1.641-3.594-1.719-0.234-4.922-0.234-4.922l4.062-5.703-0.39-2.265-3.75-0.079-2.813 2.344s-3.75 0.391-3.75 0.469v1.719s0.938 3.203 0.938 3.281-4.297 0-4.297 0l-0.157-5.078-6.093-3.047s-5.703 3.906-5.703 3.984-0.313 4.532-0.313 4.532l-2.734 0.781-2.813-4.219-4.922-1.875-2.656-0.156-0.078 3.281 5.156 6.797-0.468 3.984z" stroke-opacity=".99608" fill-rule="evenodd" fill-opacity=".99608" stroke="#544b20" fill="#faf703"/>
+    <path id="path609" d="m449.23 148.04-1.105-4.088" stroke="#544b20" fill="none"/>
+    <path id="path610" d="m452.33 141.3-1.878-2.762" stroke="#544b20" fill="none"/>
+    <path id="path611" d="m400.84 138.21 5.856-0.332 1.105 5.303 1.988 1.768 0.332 9.723 1.878 0.773 0.553-3.867 4.53-0.331 0.883 7.844-1.104 0.995 0.442 1.215 5.413-0.11s1.216-2.1 1.326-2.1c0.111 0 3.094-0.331 3.094-0.221 0 0.111 1.215 2.321 1.215 2.321l0.884-2.984s2.873-1.215 2.873-1.104c0 0.11 2.32 3.756 2.32 3.756l3.977-0.552-2.43-2.32-0.995-5.083 5.524-2.983 2.21 3.757s2.099 0.11 1.989 0c-0.111-0.111-2.431-4.309-2.431-4.309v-8.839l4.199-5.745 5.855-0.663v-2.431l-5.855-5.414-1.547-7.513-3.315-1.657-0.884 0.994-3.646 0.332 3.646 5.414v3.535l1.658 0.884-0.332 9.723s-4.088 0.552-4.088 0.663c0 0.11-0.331 5.413-0.331 5.413l-2.541 2.542s-1.437 5.082-1.547 5.082c-0.111 0-2.431 3.093-2.431 3.093l-4.53 0.111s-2.651-2.541-2.651-2.652c0-0.11-0.442-3.756-0.442-3.756s-1.768-0.553-1.879-0.553c-0.11 0-0.994-4.088-0.994-4.088l-3.094-1.767-0.22-2.431-2.984-1.326s-0.331-2.21-0.442-2.32c-0.11-0.111-1.436-0.994-1.546-0.994-0.111 0-0.111-6.077-0.111-6.077l2.652-0.442-1.485-1.94-0.504-1.706v-1.768l2.21-2.21s-3.978-0.552-3.978-0.442c0 0.111-3.866 1.768-3.866 1.658 0.11 0-0.111 7.181-0.111 7.181l-4.53 1.437-3.646 5.855 1.878 1.658z" stroke-opacity=".99999" fill-rule="evenodd" stroke="#544b21" fill="#544b20"/>
+    <path id="path612" d="m423.71 148.04 2.983-1.768-0.111-3.425-2.872-0.663-1.106-1.105 3.205 0.553 3.977-0.332 1.326-0.663c-0.552 1.437-0.994 1.326-1.105 1.326-0.11 0-2.209 1.105-2.209 1.105l0.11 3.315s6.85 0.883 6.74 0.883c-0.111 0 0 1.326-0.221 1.326s-7.071-1.547-7.071-1.547l-4.309 2.652 0.663-1.657z" fill-rule="evenodd" stroke="#544b20" fill="#544b20"/>
+    <path id="path613" d="m440.95 127.49-3.977 3.093-2.541 4.53-1.326 0.221-3.867-5.193-4.419 0.111s-2.431 6.076-2.431 6.187c0 0.11-1.768-0.221-1.768-0.221l-4.64-5.082s-1.437-2.542-1.216-2.542 11.601 0.111 11.601 0.111l-0.11-5.524s-1.768-0.553-2.652-1.105c0.663-0.221 6.298-0.221 6.298-0.221l-2.431 1.657v4.751l10.054 0.11 3.425-0.883z" fill-rule="evenodd" stroke="#544b20" fill="#544b20"/>
+    <rect id="rect614" fill-rule="evenodd" fill-opacity=".99608" ry="1.3258" height="2.6516" width="2.6516" y="130.14" x="419.51" fill="#796a3a"/>
+    <rect id="rect615" fill-rule="evenodd" ry="1.3258" height="2.6516" width="2.6516" y="129.59" x="432.11" fill="#7a6b3a"/>
+    <path id="path616" d="m413.55 121.3c4.198-1.694 7.181-3.056 12.374-3.535 4.898-0.516 8.692 0.184 13.037 0.994" stroke="#544b20" fill="none"/>
+    <path id="path619" d="m415.87 112.35h-3.425l-4.862-5.193 2.763 0.332 3.204 1.436 2.32 3.425z" fill-rule="evenodd" stroke="#544b20" fill="#544b20"/>
+    <path id="path620" d="m436.53 110.36 7.734-5.965-2.541-0.332-2.873 2.651-3.425 0.553 1.105 3.093z" fill-rule="evenodd" stroke="#544b20" fill="#544b20"/>
+    <path id="path621" d="m431.97 111.46-12.123 0.451 0.11-1.326 4.42-0.442 0.552-1.767s1.326-0.11 1.326 0c0 0.111 0.994 1.657 0.994 1.657l4.309 0.773 0.412 0.654z" fill-rule="evenodd" stroke="#544b20" fill="#544b20"/>
+    <path id="path622" d="m431.34 106.83-4.198 0.11-0.332-2.32 4.53 2.21z" fill-rule="evenodd" stroke="#544b20" fill="#544b20"/>
+    <path id="path623" d="m424.26 104.73-0.332 2.319-4.087 0.663 4.419-2.982z" fill-rule="evenodd" stroke="#544b20" fill="#544b20"/>
+    <path id="path624" d="m401.06 147.04 2.099-5.303-1.878-3.646-1.878 5.414 1.657 3.535z" fill-rule="evenodd" stroke="#544b20" fill="#544b20"/>
+    <path id="path625" d="m405.37 149.81 2.541-6.298-4.861 5.082 2.32 1.216z" fill-rule="evenodd" transform="translate(-.11047 .11044)" stroke="#544b20" fill="#544b20"/>
+   </g>
+   <path id="path628" d="m344.2 132.11-1.1131 1.3018 0.0856 1.0919 2.3117-0.042c0.74195-0.17504 0.92737-0.43403 1.0703-0.73499 0.22821-0.37093 0.0713-0.57395 0.12836-1.0708l-2.4828-0.54597z" stroke-opacity=".99652" fill-rule="evenodd" stroke="#a0210c" stroke-width=".26655pt" fill="#a0210c"/>
+   <path id="path629" d="m349.76 135.38-0.9419 0.88178v1.008l2.055-0.042c0.74194-0.17504 0.84151-0.3081 0.98441-0.6088 0.22821-0.3712 0.15717-0.36407 0.21422-0.86093l-2.3117-0.37805z" stroke-opacity=".99652" fill-rule="evenodd" stroke="#a0210c" stroke-width=".26655pt" fill="#a0210c"/>
+   <path id="path630" d="m358.79 132.57-1.0703 1.0919 0.0428 0.8398 2.1833 0.084c0.74195-0.17504 0.62758-0.13993 0.85605-0.52485 0.22821-0.37093 0.15717-0.44802 0.21422-0.94488l-2.2261-0.54596z" stroke-opacity=".99652" fill-rule="evenodd" stroke="#a0210c" stroke-width=".26655pt" fill="#a0210c"/>
+   <path id="path631" d="m365.17 134.54-1.2414 1.0497v1.05l2.3117 0.21015c0.74195-0.17504 0.799-0.39205 0.98469-0.65104 0.22821-0.37093 0.1141-0.40604 0.17115-0.9029l-2.2261-0.75585z" stroke-opacity=".99652" fill-rule="evenodd" stroke="#a0210c" stroke-width=".26655pt" fill="#a0210c"/>
+   <path id="path632" d="m349.63 107.08 4.3664 2.8977c0.8208-0.68087 2.5283-0.26823 3.1971-0.0795 1.2008 0.31338 2.0472 1.0244 3.0959 1.2134 1.9182 0.48207 4.2165 0.81498 5.9571 0.62595 1.7409-0.18876 3.203-1.0985 4.488-1.7599v-0.41977h-0.85605c-1.3897 0.50003-3.337 0.52748-4.8282 0.33159s-1.893-0.86436-4.1188-1.5075l-0.17115-0.42003c2.7019 0.12831 3.2506 0.0584 4.3817-0.43482 1.1058-0.29357 1.6039-0.93537 2.2283-1.3786l-0.0175-0.49633-0.81353-0.042c-1.0479 0.69803-1.7159 0.82423-3.3214 0.67718-1.461-0.14785-2.777-0.97947-3.7571-0.99689-1.0396 0.008-0.9906-0.48868-1.996-0.53752-1.5983-0.13992-3.3257 0.0731-4.8381 0.4372-1.8122 0.54596-2.0835 1.0077-2.9966 1.8898z" fill-rule="evenodd" stroke="#000" stroke-width=".26655pt" fill="#a0210c"/>
+   <path id="path633" d="m350.48 106.43c0.41793 0.0951 0.88673 0.21543 1.2285 0.41001 0.34205 0.19457 0.25351 0.19061 0.62085 0.45963-0.0589-0.3477-0.0422-0.32288-0.27853-0.59613-0.23656-0.27351-0.62516-0.52194-0.93733-0.74581l-0.63349 0.4723z" fill-rule="evenodd" stroke="#000" stroke-width=".26655pt"/>
+   <path id="path634" d="m354.13 109.56c0.008-0.37673-0.18569-0.7041-0.3294-1.0312-0.14344-0.3271-0.26185-0.60483-0.53204-0.93194 0.33774 0.095 0.5237 0.23998 0.81084 0.58372 0.28688 0.344 0.27019 0.68774 0.32913 1.1804l-0.27853 0.19906z" fill-rule="evenodd" stroke="#000" stroke-width=".26655pt"/>
+   <path id="path635" d="m354.96 104.97c0.10146 0.2611 0.30034 0.44037 0.4688 0.99742 0.14559 0.5061 0.21502 1.2144 0.21502 1.2144-0.0549-0.377 0.0423-0.80364-0.0127-1.1806-0.0549-0.37674-0.26184-0.7041-0.31674-1.0811l-0.35443 0.0499z" fill-rule="evenodd" stroke="#000" stroke-width=".26655pt"/>
+   <path id="path636" d="m358.51 105.19 0.17735 2.0878 0.20291-1.9634-0.38026-0.12434z" fill-rule="evenodd" stroke="#000" stroke-width=".26655pt"/>
+   <path id="path637" d="m357.65 109.51c0.0845-0.33952 0.0676-0.67929 0.0253-1.0191-0.0423-0.33951-0.16066-0.62939-0.2788-1.0188 0.33773 0.28988 0.4731 0.65447 0.65879 1.0439 0 0.38915-0.10119 0.72866-0.40529 0.99399z" fill-rule="evenodd" stroke="#000" stroke-width=".26655pt"/>
+   <path id="path638" d="m361.32 108.6c0.0127 0 0.10792 0.70833-0.0536 1.2179-0.16147 0.50953-0.27557 0.54676-0.57967 0.82027 0.40528-0.29807 0.75998-0.3976 0.88673-0.72074 0.12675-0.49713-0.20291-1.2427-0.25351-1.3174z" fill-rule="evenodd" stroke="#000" stroke-width=".26655pt"/>
+   <path id="path639" d="m361.96 107.92c-0.25324 0.0414-0.30383-1.0109-0.45588-1.5162 0.1098-0.0581 0.21959-0.0414 0.32939 0.1988 0.11814 0.14098 0.0842 0.87835 0.12649 1.3174z" fill-rule="evenodd" stroke="#000" stroke-width=".26655pt"/>
+   <path id="path640" d="m364.46 107.5 0.10145-0.8699 0.27854-0.0248v0.74556c0 0.0251-0.35443 0.17398-0.37999 0.14916z" fill-rule="evenodd" stroke="#000" stroke-width=".26655pt"/>
+   <path id="path641" d="m364.26 109.84c0.16066 0.26506 0.44754 0.58002 0.48145 0.8699 0.0339 0.28988-0.0592 0.43086-0.27854 0.8699l0.40529 0.0248c0.21933-0.35192 0.28714-0.60457 0.25351-0.88204-0.0339-0.27774-0.16928-0.55521-0.45615-0.78305l-0.40556-0.0995z" fill-rule="evenodd" stroke="#000" stroke-width=".26655pt"/>
+   <path id="path642" d="m367.28 110.06 0.10119 1.2176 0.3294-0.17398-0.0759-1.0436h-0.3547z" fill-rule="evenodd" stroke="#000" stroke-width=".26655pt"/>
+   <path id="path643" d="m349.36 107.29c-0.98819 0.28592-1.3456 0.83188-1.8292 1.3037l-2.7842-1.4101c-0.45157 0.37463-0.62542 0.90977-0.40825 1.4576 0.21718 0.54755 1.0907 1.4048 1.7118 1.8285-0.15555 0.75638-0.38484 1.3272-0.65637 1.9906-0.30276 0.74581-0.95267 1.688-0.9715 1.9906-0.0371 0.34638-0.15017 1.0885 0.36788 1.2862 0.51831 0.19774 2.1847-0.13702 2.7406-0.10032-0.0904 0.29754-0.30679 0.81789-0.23305 1.0412 0.0737 0.22335 0.2231 0.2978 0.67548 0.31074-0.13026 0.27641-0.41148 0.62675-0.27665 0.79175 0.34931 0.26427 0.74948 0.2186 1.0861 0.19801-0.53096 0.61566-1.8574 1.8005-2.2877 2.3298-0.45534 0.61566-0.49436 1.2807 0.38807 1.2155-0.32832 0.3638-0.64399 0.71519-0.59367 1.0294 0.0759 0.37621 0.26508 0.6286 0.89588 0.41053-0.37326 0.84403-0.1281 1.6015 0.004 2.4824-0.31863 0.66661-0.18327 1.2839-0.26239 2.0495-0.6491 0.3675-0.72983 0.8464-1.1518 1.5854-0.38052 0.79994-1.0888 1.0183-1.4817 2.7346l2.5472 0.63519c0.0936-0.35297 0.42681-0.58213 0.52046-0.93484 0.0934-0.35298 0.0861-0.79255 0.0406-1.1828 0.5054-0.73183 1.528-2.2435 1.8566-3.0495 0.55626-0.297 0.96073-0.48286 1.3781-0.48286 0.4174 0 0.68301 0.24763 1.1257 0.48286-0.19591 0.67929-0.74517 1.4201-0.77693 2.3718v2.6261c-0.11087 0.65236-0.85282 0.66107-1.1658 2.6258l2.2883 0.59296c0.3886-0.66081 1.0041-0.75189 1.1655-1.0164l0.16524-2.7282c0.29118-1.2878 2.0969-2.3526 2.123-3.7518 0.64802-0.009 0.89265 0.0573 1.1496-0.0752 0.34527-0.12012 0.46368-0.31443 0.73334-0.55837 0.10387 0.42109 0.43515 0.45805 0.71584 0.45805 0.28042 0 0.83856-0.39601 1.0689-0.55706 0.16201 0.22837 0.24785 0.44433 0.5864 0.52406 0.33855 0.0797 1.2952-0.0634 1.6844-0.15709l-1.8803 3.0762c-0.0702 0.29648 0.0237 0.48155-0.12218 0.82766-0.13671 0.31074-0.41229 0.46043-0.53635 0.74661l2.1317 0.50927 0.34016-0.89762c0.45184-0.19035 0.81568-0.2941 1.053-0.58345 0.23736-0.28935 0.2352-0.83901 0.37165-1.1532 0.72822-0.52854 1.8728-1.6762 2.6766-2.6258 0.54577 0.0921 1.3187 0.54333 1.612 1.2176 0.0412 0.72338 0.0945 2.0537-0.23037 2.9754l-1.3816 2.1601-0.15662 0.3543 2.175 0.77485 1.3816-1.0589 0.0538-1.5104c0.69405-1.2255 1.6871-1.8953 2.6336-2.668 0-0.0425 0.10092-1.6221 0.063-1.6838-0.23387-0.17794-0.39183-0.071-0.47445-0.39759-0.0824-0.32631-0.0261-1.2224 0.0178-1.5735 0.13671-0.16949 0.42493-0.36406 0.41013-0.50874-0.37649-0.41317-0.26131-1.4827-0.14586-2.3166-0.0283-0.94963 1.2689-2.0724 1.4678-2.6258l0.081-0.99689c-0.13267-0.245-0.32805-0.39099-0.33451-0.59903-0.006-0.20777 0.25216-0.55203 0.41013-0.77248l0.27504-0.46914-0.0431-2.4566c-0.077-0.26532-0.30545-0.67902-0.52128-0.72153-0.2161-0.0422-0.53284 0.20038-0.77397 0.46729l-1.25 0.92271c-0.59932 0.18322-1.123 0.25529-2.1766-0.007l-1.6072 0.0319c-0.84394 0.23576-1.2842 0.27378-2.0778-0.0723l-0.95158 0.0153c-0.29657 0.16157-0.70697 0.42162-1.0288 0.48392-0.32159 0.062-0.75701 0.0747-1.0789-0.024-2.4565 0.16526-1.8464 0.34268-2.5485 0.49554-0.5638-0.10693-0.38295-0.38704-2.5744-0.40763l-0.8687-0.25424c-1.0961-0.72628-1.94-1.8858-2.6702-3.2188 2.2832-0.65395 3.2412-1.333 3.9339-2.8906l-3.2286 0.12065-4.5655-3.0337z" fill-rule="evenodd" stroke="#544b20" stroke-width=".26655pt" fill="#dc9103"/>
+   <path id="path644" d="m348.22 111.27 0.91418 0.3873c0.11168 0.13279 0.32805 0.28592 0.47122 0.29489 0.14289 0.009 0.2648-0.13702 0.38698-0.24156l0.84152-0.44063c-0.49867-0.0721-0.65072-0.38149-1.1809-0.38149-0.53016 0-0.90288 0.27826-1.433 0.38149z" fill-rule="evenodd" stroke="#000" stroke-width=".26655pt"/>
+   <path id="path645" d="m352.23 111.5c0.2971 0.1753 0.83614 0.5259 1.2804 0.5259 0.48629-0.0412 0.47848-0.38149 1.175-0.60827l1.0216-0.82581c-0.61628 0.007-1.9476 0.12751-2.6793 0.35113-0.61627 0.16157-0.75944 0.40578-0.79766 0.55705z" fill-rule="evenodd" stroke="#000" stroke-width=".26655pt"/>
+   <path id="path646" d="m349.9 122.06c-0.00026 0.0755-0.12675 0.13068-0.19026 0.0412-0.0783-1.0713-0.31432-1.823-0.6448-2.6572 0.373 0.63467 0.68275 1.6614 0.83506 2.616z" fill-rule="evenodd" stroke="#000" stroke-width=".26655pt"/>
+   <path id="path647" d="m352.51 126.45c-0.41551 0.0422-0.57913-0.019-0.99465 0.0232-0.0457-1.0779-0.0498-2.3106-0.043-3.0791 0.1585 0.0195 0.62192 0.5032 0.89614 1.2654 0.0716 0.56234 0.17493 1.197 0.14156 1.7905z" fill-rule="evenodd" stroke="#000" stroke-width=".26655pt"/>
+   <path id="path648" d="m355.27 122.17c0.18731 0.0515 0.44835 0.0517 0.50944-0.0721 0.0794-0.22968-0.1569-0.47996-0.24544-0.76113-0.30813-0.60378-0.47902-1.2588-0.60793-1.5426-0.13563-0.0855-0.28176-0.0779-0.24946 0.0636 0.1768 0.53699 0.47983 2.1052 0.59339 2.3122z" fill-rule="evenodd" stroke="#000" stroke-width=".26655pt"/>
+   <path id="path649" d="m358.21 121.85c0.0202 0.13016-0.42224-0.0591-0.49679-0.20724-0.006-0.2875-0.602-2.3903-0.50351-2.4716 0.12514-0.0613 0.5132 0.70279 0.63834 1.0544 0.0293 0.20804 0.29037 0.97287 0.36196 1.6244z" fill-rule="evenodd" stroke="#000" stroke-width=".26655pt"/>
+   <path id="path650" d="m357.79 126.18c-0.0105 0.14705 0.33639 0.0261 0.4731-0.0845 0.39641-0.61962 0.88754-1.2701 1.0318-1.5183 0.0869-0.26533 0.52073-1.9536 0.38698-1.9402-0.0474-0.0489-0.42466 0.83742-0.91175 1.7121-0.50675 0.89075-0.9855 1.7456-0.98012 1.8309z" fill-rule="evenodd" stroke="#000" stroke-width=".26655pt"/>
+   <path id="path651" d="m360.75 125.27c-0.14425 0.0694 0.28957-1.4597 0.32401-1.7306 0.0794-0.42822 0.19-1.1967 0.36384-2.192 0.21234 1.39-0.0382 2.8832-0.68785 3.9226z" fill-rule="evenodd" stroke="#000" stroke-width=".26655pt"/>
+   <path id="path652" d="m362.52 120.59c-0.0947 0.0826-1.3633-2.0144-1.2468-2.0247 0.0326-0.0929 1.0633 1.3124 1.2105 1.5598 0.0614 0.11721 0.12218 0.29621 0.0363 0.46491z" fill-rule="evenodd" stroke="#000" stroke-width=".26655pt"/>
+   <path id="path653" d="m365.49 122.15c-0.0947-0.0715-0.0568-0.74107-0.24462-1.4763-0.18757-0.73526-0.50674-1.4438-0.4435-1.645 0.0592-0.10587 0.26561-0.057 0.43004 0.0845 0.0783 0.39997 0.26158 1.9346 0.4766 2.9328-0.003 0.0966-0.1106 0.16236-0.21852 0.10402z" fill-rule="evenodd" stroke="#000" stroke-width=".26655pt"/>
+   <path id="path654" d="m367.56 120.29c-0.10145-0.10798 0.27558 0.71995 0.55007 1.7036 0.2745 0.98395 0.41498 2.7219 0.48172 2.5984 0.18864-0.12514 0.15662-0.28117 0.45049-0.34453 0.29361-0.0631 1.3865 0.0385 1.323-0.0349-0.67602-0.6022-1.2996-1.1014-1.7654-1.7551-0.46557-0.65368-0.7737-1.5138-1.0399-2.1675z" fill-rule="evenodd" stroke="#000" stroke-width=".26655pt"/>
+   <path id="path655" d="m370.12 129.26c-0.21206 0.15286-0.61331 0.27456-0.73065 0.21094-0.64452-1.3404-1.0054-2.2166-1.9024-3.6499-0.23117-0.3403-0.80654-0.28777-0.77397-0.42188 0.0215-0.15471 0.3232-0.0927 0.51831-0.31707 0.19511-0.22414 0.22067-0.50795 0.3415-0.61091-0.26373 0.61856 0.42897 1.5671 0.81703 2.3198 0.25808 0.0702 0.46342 0.0686 0.58479 0.22124 0.0288 0.0723-0.27907 0.12355-0.23978 0.38149l0.65448 1.3179c0.21314 0.15998 0.54173 0.24816 0.85982 0.29516 0.0832 0.0739-0.0651 0.17899-0.12917 0.25318z" fill-rule="evenodd" stroke="#000" stroke-width=".26655pt"/>
+   <path id="path674" d="m370.48 144 11.513-40.577 24.437-9.8439 12.96 21.913-18.55 37.669c-10.493-3.9653-16.493-6.0837-30.36-9.1602z" stroke-opacity=".99608" stroke-width="1pt" fill="none"/>
+   <path id="path656" d="m371.46 117.54c0.40448 0.0224 0.76993 0.0578 0.88996-0.14785 0.24731-0.50926 0.39075-0.92903 0.22417-1.2601-0.63403 0.051-1.1131 0.34295-1.3719 0.90185 0.008 0.19404 0.0552 0.3374 0.25781 0.5061z" fill-rule="evenodd" stroke="#000" stroke-width=".26655pt"/>
+   <path id="path681" d="m378.12 117.16c6.2685 1.3243 12.071 2.8312 17.874 4.7033 5.8026 1.8721 11.326 4.1095 16.943 6.5297l-9.4026 18.996c-5.2483-1.9972-10.43-3.6071-15.613-5.2812-5.1821-1.6743-10.233-3.1551-15.481-4.7648l5.6786-20.183z" fill-rule="evenodd" stroke="#fdfcfc" stroke-width=".26655pt" fill="#fdfcfc"/>
+   <path id="path682" d="m376.87 121.65s8.7548 1.9534 17.238 4.6819c8.4836 2.7282 16.761 6.2314 16.728 6.2314-0.0659 0-5.3322 10.849-5.3322 10.849-5.1124-2.0342-10.488-3.9395-15.798-5.6508-5.3102-1.7113-10.62-3.3579-16.062-4.6172l3.2256-11.495z" fill-rule="evenodd" stroke="#e6151e" stroke-width=".26655pt" fill="#e6151e"/>
+   <path id="path657" d="m377.6 126.95c0.86116-0.48102 1.4443-0.61091 1.908-1.4037l3.1002 0.00026 0.0401 1.1305c0.76186 0.36406 1.2056 0.7672 1.9675 1.131 0.76186 0.36407 1.8418 0.68879 2.6037 1.0529l6.6778 0.58504c0.89427 0.14282 2.1863 0.51983 2.9613 0.97471 0.77505 0.45514 1.2721 1.027 1.6895 1.7548 1.3711 0.48102 2.7428 0.76694 4.1538 0.97497 1.4112 0.20778 3.1799 0.29886 4.5513 0.35087 0.67575 0.23417 0.67575 0.58504 0.35765 0.9359 0 0-0.7554 1.0236-2.8174 1.0333-2.062 0.01-4.3973-1.1503-5.4108-0.99425 0.0398 0.62385 1.1131 1.9109 2.3453 2.4178l-0.0396 2.9632-0.5568 0.50716-0.59608-0.38994c0.47714-0.70173 0.31782-1.5209 0.11921-2.2227-0.45722-0.66292-0.51669-0.9359-1.3711-0.97471-1.0138-0.19537-1.7492-0.46835-3.041-1.3652l-0.47714 0.0781c-0.27826 0.49395-0.55653 0.83188-1.1924 1.1307l-1.3117-0.0779s-3.0211-0.66292-3.0211-0.70199c0-0.0388-0.0398-0.46782 0.0398-0.50689 0.0794-0.0391 1.0334-0.0388 1.1128-0.0388 0.63618 0.19484 1.9877 0.19484 1.9877 0.19484l-0.0398-1.131 2.0272-0.11695c-0.41067-1.4037-0.54334-2.3008-2.4247-2.6126l-5.8831 0.15603 0.0797 0.81895c-1.4707-0.1951-4.1339-0.22995-5.4942 0.22071-0.79497 0.0781-1.939 0.48102-2.4557 0.48102l-0.59636-0.15577c-0.39748-0.11695-0.39748-0.23391-0.23843-0.58503 2.5439-0.19511 2.9417-0.38994 3.6968-0.74081 0.0398-0.23391-0.27827-0.74106-0.39748-0.78014-1.5899-0.0779-2.862 0.0391-3.2991-0.0388-0.67575-0.1951-1.5902-0.54597-1.5902-0.58504 0-0.0391-0.11921-0.62385-0.0794-0.62385 0.0395 0 1.0337 0.27298 1.073 0.27298 1.0735 0.19484 2.9417 0.11696 3.379-0.11695l0.0398-0.85802c-0.0398-0.38994-0.3181-0.7408-0.39775-0.77988-0.0794-0.0391-1.749-0.23391-2.3453-0.23391-0.9672-0.16896-0.82134-0.64998-0.83452-1.131z" stroke-opacity=".99608" fill-rule="evenodd" stroke="#010001" stroke-width=".26655pt"/>
+   <path id="path658" d="m390.44 133.89c0.90099 0.28591 1.5636 0.37673 2.9018 0.46781l2.0272-0.11695c-0.41067-1.4037-0.54334-2.3008-2.4247-2.6126l-5.8831 0.15603 0.0797 0.81895c1.7888 0.66265 2.6632 1.0267 3.2991 1.2868z" stroke-opacity=".99608" fill-rule="evenodd" fill-opacity=".99608" stroke="#010001" stroke-width=".26655pt" fill="#fdfdfd"/>
+   <path id="path679" d="m273.6 143.99-10.632-39.621 16.223-19.652 22.748 12.986 3.856 41.985c-11.608 0.86022-19.128 1.9772-32.196 4.3025z" fill-rule="evenodd" fill-opacity=".99608" stroke="#011171" stroke-width=".26655pt" fill="#011171"/>
+   <path id="path563" d="m236.92 112.42 3.7003 3.2589-1.0512 5.2389 5.1301-1.7739 3.7843 3.2589 0.84099-4.8263 4.2049-1.3615-3.1957-3.4651 1.0512-4.7848s-5.0459 1.4848-5.0459 1.4436-3.3637-3.2174-3.4059-3.1763c-0.042 0.0412-1.0933 4.5375-1.0933 4.5375l-4.9197 1.65z" stroke-opacity=".99608" fill-rule="evenodd" fill-opacity=".99608" stroke="#fdc605" stroke-width=".26655pt" fill="#fbfd10"/>
+   <path id="path565" d="m237.01 112.46 16.483 3.713-4.2472 1.4436-3.8263-3.0939s3.1115 7.7552 3.0695 7.714-3.6161-3.0115-3.7423-3.1351l0.6308-4.5789s-5.7188 6.3528-5.7188 6.3116c0-0.0415 1.0933-5.1978 1.0933-5.1978l-3.7424-3.1765z" fill-rule="evenodd" stroke-width="1pt" fill="#ffc500"/>
+   <path id="path566" d="m241.8 110.77 3.6583 3.5065-2.5229-8.1264-1.1353 4.6198z" fill-rule="evenodd" stroke-width="1pt" fill="#ffc500"/>
+   <path id="path567" d="m246.3 109.45c0.042 0.0412-0.88323 4.7437-0.84125 4.7437 0.42036-0.49502 5.9288-6.229 5.8871-6.229-0.0422 0-4.9619 1.5265-5.0459 1.4853z" fill-rule="evenodd" stroke-width="1pt" fill="#ffc500"/>
+   <path id="path666" d="m396.21 104.41 0.7824 4.8175-4.1796 3.4202 5.1238 1.7914 0.84764 4.8694 3.7514-3.2295 4.1403 1.5402-0.2581-4.666 3.8881-3.0675s-4.8728-1.964-4.8463-1.996c0.0264-0.032-0.54751-4.5774-0.60677-4.5715-0.0591 0.006-3.762 2.8493-3.762 2.8493l-4.8808-1.7576z" stroke-opacity=".99608" fill-rule="evenodd" fill-opacity=".99608" stroke="#fdc605" stroke-width=".26655pt" fill="#fbfd10"/>
+   <path id="path667" d="m396.25 104.49 10.421 13.068-4.2259-1.5025-0.98618-4.7672s-2.5613 7.9465-2.5674 7.8886c-0.006-0.0579-0.87578-4.5734-0.89451-4.7473l3.4294-3.1672s-8.5204 1.4018-8.494 1.3698c0.0266-0.0322 4.1858-3.3622 4.1858-3.3622l-0.86796-4.7795z" fill-rule="evenodd" stroke-width="1pt" fill="#ffc500"/>
+   <path id="path668" d="m401.06 106.14 0.5908 4.9839 3.2567-7.8712-3.8475 2.8873z" fill-rule="evenodd" stroke-width="1pt" fill="#fdc605"/>
+   <path id="path669" d="m405.4 107.9c0.006 0.0579-3.7312 3.1392-3.6986 3.1652 0.64429-0.12483 8.6041-1.1758 8.5717-1.2016-0.0328-0.0261-4.8343-1.8797-4.8731-1.9636z" fill-rule="evenodd" stroke-width="1pt" fill="#fdc605"/>
+   <path id="path675" d="m263.05 104.52c5.7741-2.7599 12.255-4.9132 19.09-5.8521 6.5691-0.93939 13.144-1.0208 19.89-1.0063 0 0 0.88377 10.331 0.88377 10.418-5.3026 0.0433-9.2543-0.0552-18.608 1.1548-9.3016 1.2899-13.133 2.3953-18.79 4.5628l-2.4651-9.2772z" fill-rule="evenodd" stroke="#e6141d" stroke-width=".26655pt" fill="#e6141d"/>
+   <path id="path677" d="m267.99 122.81c-0.0885 0 2.9212 10.929 2.9212 10.929 5.5532-1.4016 11.195-2.4566 16.836-3.2512 5.6414-0.79466 11.641-1.2474 17.106-1.6086l-0.96-10.66c-5.7593-0.3469-12.323-0.3469-18.259 0.43323-5.9361 0.78041-11.7 2.163-17.636 4.157z" fill-rule="evenodd" fill-opacity=".99608" stroke="#e6141d" stroke-width=".26655pt" fill="#e6141d"/>
+   <path id="path688" d="m241.49 156.56h161.16v103.34c-4.0965 40.244-42.778 70.327-78.125 70.097-38.155 1.6646-80.349-29.566-83.391-70.442l0.35114-102.99z" fill-rule="evenodd" stroke="#e5141d" stroke-width="1.0662" fill="#fff"/>
+   <path id="path689" d="m244.84 160.17h154.45v99.03c-3.9257 38.567-40.995 67.395-74.868 67.176-36.565 1.5952-77-28.334-79.916-67.506l0.3365-98.7z" fill-rule="evenodd" stroke="#e5141d" stroke-width="1.0218" fill="#d61517"/>
+   <rect id="rect693" fill-rule="evenodd" ry="0" height="32.302" width="29.763" y="160.67" x="337.68" stroke-width="1pt" fill="#fff"/>
+   <rect id="rect694" fill-rule="evenodd" ry="0" height="32.302" width="29.763" y="160.67" x="276.27" stroke-width="1pt" fill="#fff"/>
+   <rect id="rect695" fill-rule="evenodd" ry="0" height="31.526" width="30.162" y="194.04" x="245.22" stroke-width="1pt" fill="#fff"/>
+   <rect id="rect696" fill-rule="evenodd" ry="0" height="31.526" width="29.467" y="194.04" x="307.22" stroke-width="1pt" fill="#fff"/>
+   <rect id="rect697" fill-rule="evenodd" ry="0" height="31.526" width="30.364" y="194.04" x="368.33" stroke-width="1pt" fill="#fff"/>
+   <rect id="rect698" fill-rule="evenodd" ry="0" height="32.011" width="29.763" y="226.54" x="337.68" stroke-width="1pt" fill="#fff"/>
+   <rect id="rect699" fill-rule="evenodd" ry="0" height="32.011" width="29.763" y="226.54" x="276.27" stroke-width="1pt" fill="#fff"/>
+   <rect id="rect700" fill-rule="evenodd" ry="0" height="32.011" width="29.467" y="259.52" x="307.22" stroke-width="1pt" fill="#fff"/>
+   <path id="path705" d="m368.52 259.8 0.008 31.447 18.122 0.0235c8.2675-12.078 11.099-23.843 11.876-31.464-0.13401 0-29.888-0.0143-30.006-0.007z" fill-rule="evenodd" stroke="#fff" stroke-width=".26655pt" fill="#fff"/>
+   <path id="path706" d="m337.86 292.78 0.005 31.559c12.891-2.6789 23.39-8.7867 29.4-13.27l0.002-18.302-29.407 0.0127z" fill-rule="evenodd" stroke="#fff" stroke-width=".26655pt" fill="#fff"/>
+   <path id="path708" d="m276.5 292.72-0.0425 17.832c10.125 7.3853 21.688 11.707 29.389 13.369l0.005-31.19-29.352-0.0116z" fill-rule="evenodd" stroke="#fff" stroke-width=".26655pt" fill="#fff"/>
+   <path id="path710" d="m245.28 259.76c0.96128 12.356 6.2249 23.816 11.88 31.567l18.046-0.0304 0.003-31.55-29.929 0.0135z" fill-rule="evenodd" stroke="#fff" stroke-width=".26655pt" fill="#fff"/>
+  </g>
+ </g>
+</svg>
Index: branches/2.8.x/wb/modules/MultiLingual/flags/svg/nl.svg
===================================================================
--- branches/2.8.x/wb/modules/MultiLingual/flags/svg/nl.svg	(nonexistent)
+++ branches/2.8.x/wb/modules/MultiLingual/flags/svg/nl.svg	(revision 1945)
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Sodipodi ("http://www.sodipodi.com/") -->
+<!-- /Creative Commons Public Domain -->
+<!--
+<rdf:RDF xmlns="http://web.resource.org/cc/"
+    xmlns:dc="http://purl.org/dc/elements/1.1/"
+    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
+<Work rdf:about="">
+   <dc:title>SVG Graphic of the Dutch flag</dc:title>
+   <dc:rights><Agent>
+      <dc:title>Marc Maurer</dc:title>
+   </Agent></dc:rights>
+   <license rdf:resource="http://web.resource.org/cc/PublicDomain" />
+</Work>
+
+<License rdf:about="http://web.resource.org/cc/PublicDomain">
+   <permits rdf:resource="http://web.resource.org/cc/Reproduction" />
+   <permits rdf:resource="http://web.resource.org/cc/Distribution" />
+   <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
+</License>
+</rdf:RDF>
+-->
+<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
+ <metadata id="metadata3151">
+  <rdf:RDF>
+   <cc:Work rdf:about="">
+    <dc:format>image/svg+xml</dc:format>
+    <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
+   </cc:Work>
+  </rdf:RDF>
+ </metadata>
+ <g id="flag" fill-rule="evenodd" stroke-width="1pt" transform="scale(1.25 .9375)">
+  <rect id="rect171" rx="0" ry="0" height="509.76" width="512" y="-.0000019907" x="0" fill="#fff"/>
+  <rect id="rect256" rx="0" ry="0" height="169.92" width="512" y="342.08" x="0" fill="#21468b"/>
+  <rect id="rect255" height="169.92" width="512" y="-.0000019907" x="0" fill="#ae1c28"/>
+ </g>
+</svg>
Index: branches/2.8.x/wb/modules/MultiLingual/flags/svg/pl.svg
===================================================================
--- branches/2.8.x/wb/modules/MultiLingual/flags/svg/pl.svg	(nonexistent)
+++ branches/2.8.x/wb/modules/MultiLingual/flags/svg/pl.svg	(revision 1945)
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Sodipodi ("http://www.sodipodi.com/") -->
+<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
+ <metadata id="metadata3683">
+  <rdf:RDF>
+   <cc:Work rdf:about="">
+    <dc:format>image/svg+xml</dc:format>
+    <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
+   </cc:Work>
+  </rdf:RDF>
+ </metadata>
+ <g id="flag" fill-rule="evenodd" transform="scale(1.25 .9375)">
+  <rect id="rect149" transform="scale(-1)" height="512" width="512" y="-512" x="-512" fill="#fff"/>
+  <rect id="rect148" transform="scale(-1)" height="256" width="512" y="-512" x="-512" stroke-width="1pt" fill="#df0000"/>
+ </g>
+</svg>
Index: branches/2.8.x/wb/modules/MultiLingual/flags/svg/no.svg
===================================================================
--- branches/2.8.x/wb/modules/MultiLingual/flags/svg/no.svg	(nonexistent)
+++ branches/2.8.x/wb/modules/MultiLingual/flags/svg/no.svg	(revision 1945)
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Sodipodi ("http://www.sodipodi.com/") -->
+<svg id="islenskifaninn" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
+ <metadata id="metadata3163">
+  <rdf:RDF>
+   <cc:Work rdf:about="">
+    <dc:format>image/svg+xml</dc:format>
+    <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
+   </cc:Work>
+  </rdf:RDF>
+ </metadata>
+ <defs id="defs380">
+  <clipPath id="clipPath3738" clipPathUnits="userSpaceOnUse">
+   <rect id="rect3740" fill-opacity="0.67" height="480" width="640" y="6" x="-32"/>
+  </clipPath>
+ </defs>
+ <g id="flag" clip-path="url(#clipPath3738)" transform="translate(32,-6)">
+  <rect id="rect8153" height="512" width="512" y="-20" x="0" fill="#fff"/>
+  <rect id="rect583" fill-rule="evenodd" height="511.84" width="699.74" y="-19.842" x="-70" stroke-width="1pt" fill="#fff"/>
+  <rect id="rect561" fill-rule="evenodd" height="221.47" width="222.94" y="-43.039" x="-99.213" stroke-width="1pt" fill="#d72828"/>
+  <rect id="rect562" fill-rule="evenodd" height="221.47" width="431.36" y="-43.039" x="247.42" stroke-width="1pt" fill="#d72828"/>
+  <rect id="rect563" fill-rule="evenodd" height="225.76" width="220" y="301.67" x="-99.213" stroke-width="1pt" fill="#d72828"/>
+  <rect id="rect564" fill-rule="evenodd" height="223.65" width="419.68" y="303.79" x="250" stroke-width="1pt" fill="#d72828"/>
+  <rect id="rect565" fill-rule="evenodd" height="545.67" width="64.425" y="-43.039" x="154.65" stroke-width="1pt" fill="#003897"/>
+  <rect id="rect566" fill-rule="evenodd" height="63.444" width="763.01" y="204.84" x="-99.213" stroke-width="1pt" fill="#003897"/>
+ </g>
+</svg>
Index: branches/2.8.x/wb/modules/MultiLingual/flags/svg/it.svg
===================================================================
--- branches/2.8.x/wb/modules/MultiLingual/flags/svg/it.svg	(nonexistent)
+++ branches/2.8.x/wb/modules/MultiLingual/flags/svg/it.svg	(revision 1945)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Sodipodi ("http://www.sodipodi.com/") -->
+<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
+ <metadata id="metadata4604">
+  <rdf:RDF>
+   <cc:Work rdf:about="">
+    <dc:format>image/svg+xml</dc:format>
+    <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
+   </cc:Work>
+  </rdf:RDF>
+ </metadata>
+ <g id="flag" fill-rule="evenodd" stroke-width="1pt" transform="scale(.60207 .67733)">
+  <rect id="rect171" height="708.66" width="1063" y="0" x="0" fill="#fff"/>
+  <rect id="rect403" height="708.66" width="354.33" y="0" x="0" fill="#005700"/>
+  <rect id="rect135" height="708.66" width="354.33" y="0" x="708.66" fill="#fc0000"/>
+ </g>
+</svg>
Index: branches/2.8.x/wb/modules/MultiLingual/flags/svg/hu.svg
===================================================================
--- branches/2.8.x/wb/modules/MultiLingual/flags/svg/hu.svg	(nonexistent)
+++ branches/2.8.x/wb/modules/MultiLingual/flags/svg/hu.svg	(revision 1945)
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Sodipodi ("http://www.sodipodi.com/") -->
+<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
+ <metadata id="metadata3800">
+  <rdf:RDF>
+   <cc:Work rdf:about="">
+    <dc:format>image/svg+xml</dc:format>
+    <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
+   </cc:Work>
+  </rdf:RDF>
+ </metadata>
+ <g id="flag" transform="scale(1.25 .93750)">
+  <g id="g554" fill-rule="evenodd" transform="matrix(.48166 0 0 .68808 .00035278 -.000041525)">
+   <rect id="rect149" transform="scale(-1)" height="744.09" width="1063" y="-744.09" x="-1063" fill="#fff"/>
+   <rect id="rect148" transform="scale(-1)" height="248.03" width="1063" y="-744.09" x="-1063" fill="#388d00"/>
+   <rect id="rect585" transform="scale(-1)" height="248.03" width="1063" y="-248.23" x="-1063" fill="#d43516"/>
+  </g>
+ </g>
+</svg>
Index: branches/2.8.x/wb/modules/MultiLingual/flags/svg/sk.svg
===================================================================
--- branches/2.8.x/wb/modules/MultiLingual/flags/svg/sk.svg	(nonexistent)
+++ branches/2.8.x/wb/modules/MultiLingual/flags/svg/sk.svg	(revision 1945)
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Sodipodi ("http://www.sodipodi.com/") -->
+<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
+ <metadata id="metadata3120">
+  <rdf:RDF>
+   <cc:Work rdf:about="">
+    <dc:format>image/svg+xml</dc:format>
+    <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
+   </cc:Work>
+  </rdf:RDF>
+ </metadata>
+ <defs id="defs380">
+  <clipPath id="clipPath9628" clipPathUnits="userSpaceOnUse">
+   <rect id="rect9630" fill-opacity="0.67" height="512" width="682.67" y=".0000033739" x="-26.334"/>
+  </clipPath>
+ </defs>
+ <g id="flag" fill-rule="evenodd" clip-path="url(#clipPath9628)" transform="matrix(.93750 0 0 .93750 24.688 -.0000031630)" stroke-width="1pt">
+  <rect id="rect171" height="512" width="768" y=".0000024116" x="-69" fill="#fff"/>
+  <rect id="rect403" height="341.33" width="768" y="170.67" x="-69" fill="#01017e"/>
+  <rect id="rect135" height="170.67" width="768" y="341.33" x="-69" fill="#fe0101"/>
+  <path id="path150" d="m64.736 116.2v143.57c9.8331 56.051 35.893 113.09 123.9 142.09 87.519-29.009 115.54-83.586 125.87-143.08v-142.59h-249.77z" fill="#fff"/>
+  <path id="path140" d="m74.569 127.51v125.38c8.8498 45.726 26.059 108.17 114.07 137.18 87.519-29.009 107.68-91.452 115.54-137.18v-125.38h-229.61z" fill="#fe0101"/>
+  <path id="path153" d="m202.41 203.23v20.159h40.318c5.4057 0 10.489-2.6226 15.734-3.934v37.859c-5.4086-1.1473-10.696-3.4412-16.226-3.4412h-39.334v46.218l-27.043-0.98331v-45.234h-38.35c-5.764 0-11.144 2.9499-16.717 4.4245v-40.317c5.2446 1.6386 10.239 4.9165 15.734 4.9165h39.334v-20.159h-29.009c-5.0834 0-9.5058 3.606-14.259 5.4086v-38.35c5.4086 2.2946 10.35 6.8832 16.226 6.8832h27.534v-17.209c0-8.0377-4.5892-15.406-6.8839-23.109h38.842c-1.9666 7.8672-5.8998 15.492-5.8998 23.601v16.717h26.059c6.7994 0 13.112-3.6052 19.668-5.4078v37.859c-5.9006-1.9666-11.482-5.9006-17.701-5.9006h-28.025z" fill="#fff"/>
+  <path id="path152" d="m152.75 305.5c-23.11-11.555-45.184-5.1022-55.744 13.398 16.41 31.344 47.632 56.666 91.637 71.17 43.76-14.505 75.596-39.826 93.05-69.695-13.597-25.94-39.457-22.495-56.174-14.381-11.8-29.009-59.985-27.534-72.768-0.49202z" fill="#01017e"/>
+ </g>
+</svg>
Index: branches/2.8.x/wb/modules/MultiLingual/flags/png/fi.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/png/fi.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/png/en.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/png/en.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/png/se.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/png/se.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/png/es.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/png/es.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/png/fr.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/png/fr.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/png/et.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/png/et.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/png/hr.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/png/hr.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/png/nl.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/png/nl.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/png/pl.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/png/pl.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/png/hu.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/png/hu.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/png/it.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/png/it.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/png/no.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/png/no.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/png/sk.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/png/sk.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/png/lv.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/png/lv.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/png/ca.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/png/ca.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/png/pt.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/png/pt.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/png/tr.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/png/tr.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/png/ru.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/png/ru.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/png/de.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/png/de.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/modules/MultiLingual/flags/png/bg.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/modules/MultiLingual/flags/png/bg.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
